ofono: load configuration from outside the nix store

This commit is contained in:
Jörg Thalheim 2021-01-05 16:29:55 +01:00
parent 5322c1f7d7
commit 65bf177b0b
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92

View File

@ -46,6 +46,14 @@ stdenv.mkDerivation rec {
"--enable-external-ell"
];
postInstall = ''
rm -r $out/etc/ofono
ln -s /etc/ofono $out/etc/ofono
'';
enableParallelBuilding = true;
enableParallelChecking = false;
doCheck = true;
meta = with lib; {