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:
Jörg Thalheim 2025-05-07 18:58:32 +02:00
parent 123777e9fd
commit bed71f2713

View file

@ -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