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

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; {