smartdns: Fix systemd service

This commit is contained in:
Peng Mei Yu 2021-09-18 11:47:36 +08:00
parent 0e575a459e
commit 27873366b9

View file

@ -13,6 +13,14 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl ];
# Force the systemd service file to be regenerated from it's template. This
# file is erroneously added in version 35 and it has already been deleted from
# upstream's git repository. So this "postPatch" phase can be deleted in next
# release.
postPatch = ''
rm -f systemd/smartdns.service
'';
makeFlags = [
"PREFIX=${placeholder "out"}"
"SYSTEMDSYSTEMUNITDIR=${placeholder "out"}/lib/systemd/system"