From dd02ce20cc42124751e5e1a88d71dfa35416698e Mon Sep 17 00:00:00 2001 From: Ruud van Asseldonk Date: Wed, 11 Feb 2026 23:33:59 +0100 Subject: [PATCH] nsd: fix withSystemd = false config Without this, when setting 'withSystemd = false' on x86_64-linux, the configure step fails: > checking for SSL_CTX_set_security_level... yes > checking for ERR_load_SSL_strings... yes > checking if ERR_load_SSL_strings is deprecated... no > checking for pkg-config... no > configure: error: pkg-config not found --- pkgs/by-name/ns/nsd/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ns/nsd/package.nix b/pkgs/by-name/ns/nsd/package.nix index 46f17f508721..b6cf8db8ed3c 100644 --- a/pkgs/by-name/ns/nsd/package.nix +++ b/pkgs/by-name/ns/nsd/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { hash = "sha256-+ezCz3m6UFgPLfYpGO/EQAhMW/EQV9tEwZqpZDzUteg="; }; - nativeBuildInputs = lib.optionals withSystemd [ + nativeBuildInputs = [ pkg-config ];