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,
|
||||
stdenv,
|
||||
cmake,
|
||||
darwin,
|
||||
getdns,
|
||||
libyaml,
|
||||
openssl,
|
||||
|
@ -31,14 +30,11 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
yq
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
[
|
||||
buildInputs = [
|
||||
getdns
|
||||
libyaml
|
||||
openssl
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.Security ];
|
||||
] ++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ];
|
||||
|
||||
postInstall = ''
|
||||
rm -r $out/share/doc
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue