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
This commit is contained in:
Ruud van Asseldonk
2026-02-11 23:33:59 +01:00
committed by Ruud van Asseldonk
parent 3f3e7c7295
commit dd02ce20cc
+1 -1
View File
@@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-+ezCz3m6UFgPLfYpGO/EQAhMW/EQV9tEwZqpZDzUteg=";
};
nativeBuildInputs = lib.optionals withSystemd [
nativeBuildInputs = [
pkg-config
];