From bed71f2713d935e2d07ae1759d01e2ece7b5cddc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 7 May 2025 18:58:32 +0200 Subject: [PATCH] stubby: fix eval by removing darwin.Security according to the eval warning this was removed and now is a noop --- pkgs/by-name/st/stubby/package.nix | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/pkgs/by-name/st/stubby/package.nix b/pkgs/by-name/st/stubby/package.nix index 42aab6d58a49..585edede4df9 100644 --- a/pkgs/by-name/st/stubby/package.nix +++ b/pkgs/by-name/st/stubby/package.nix @@ -5,7 +5,6 @@ lib, stdenv, cmake, - darwin, getdns, libyaml, openssl, @@ -31,14 +30,11 @@ stdenv.mkDerivation (finalAttrs: { yq ]; - buildInputs = - [ - getdns - libyaml - openssl - ] - ++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ] - ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.Security ]; + buildInputs = [ + getdns + libyaml + openssl + ] ++ lib.optionals stdenv.hostPlatform.isLinux [ systemd ]; postInstall = '' rm -r $out/share/doc