Merge pull request #109109 from Mic92/ofono

ofono: load configuration from outside the nix store
This commit is contained in:
Jörg Thalheim 2021-01-12 15:05:10 +00:00 committed by GitHub
commit 26787436b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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