about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRick van Schijndel <rol3517@gmail.com>2022-06-09 23:16:19 +0200
committerRick van Schijndel <Mindavi@users.noreply.github.com>2022-10-19 20:38:28 +0200
commit44544e46a8b983f81b63b339a6c306cb830a7b71 (patch)
tree9391217c45149c1295e79225b7b0b49576a6dcde
parent390d78cc2396a5ae650426bb89757c9316b6d2b3 (diff)
neon: enable strictDeps
-rw-r--r--pkgs/development/libraries/neon/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/neon/default.nix b/pkgs/development/libraries/neon/default.nix
index 4a00044bb5577..827d7eb69799f 100644
--- a/pkgs/development/libraries/neon/default.nix
+++ b/pkgs/development/libraries/neon/default.nix
@@ -3,6 +3,7 @@
 , sslSupport ? true, openssl ? null
 , static ? stdenv.hostPlatform.isStatic
 , shared ? !stdenv.hostPlatform.isStatic
+, bash
 }:
 
 assert compressionSupport -> zlib != null;
@@ -25,9 +26,11 @@ stdenv.mkDerivation rec {
   patches = optionals stdenv.isDarwin [ ./darwin-fix-configure.patch ];
 
   nativeBuildInputs = [ pkg-config ];
-  buildInputs = [libxml2 openssl]
+  buildInputs = [libxml2 openssl bash]
     ++ lib.optional compressionSupport zlib;
 
+  strictDeps = true;
+
   configureFlags = [
     (lib.enableFeature shared "shared")
     (lib.enableFeature static "static")