Skip to content

Commit bed71f2

Browse files
committed
stubby: fix eval by removing darwin.Security
according to the eval warning this was removed and now is a noop
1 parent 123777e commit bed71f2

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

pkgs/by-name/st/stubby/package.nix

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
lib,
66
stdenv,
77
cmake,
8-
darwin,
98
getdns,
109
libyaml,
1110
openssl,
@@ -31,14 +30,11 @@ stdenv.mkDerivation (finalAttrs: {
3130
yq
3231
];
3332

34-
buildInputs =
35-
[
36-
getdns
37-
libyaml
38-
openssl
39-
]
40-
++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ]
41-
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.Security ];
33+
buildInputs = [
34+
getdns
35+
libyaml
36+
openssl
37+
] ++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ];
4238

4339
postInstall = ''
4440
rm -r $out/share/doc

0 commit comments

Comments
 (0)