mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
stubby: fix eval by removing darwin.Security
according to the eval warning this was removed and now is a noop
This commit is contained in:
parent
123777e9fd
commit
bed71f2713
1 changed files with 5 additions and 9 deletions
|
@ -5,7 +5,6 @@
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
cmake,
|
cmake,
|
||||||
darwin,
|
|
||||||
getdns,
|
getdns,
|
||||||
libyaml,
|
libyaml,
|
||||||
openssl,
|
openssl,
|
||||||
|
@ -31,14 +30,11 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
yq
|
yq
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs =
|
buildInputs = [
|
||||||
[
|
getdns
|
||||||
getdns
|
libyaml
|
||||||
libyaml
|
openssl
|
||||||
openssl
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ];
|
||||||
]
|
|
||||||
++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ]
|
|
||||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.Security ];
|
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
rm -r $out/share/doc
|
rm -r $out/share/doc
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue