neon: enable strictDeps
This commit is contained in:
parent
390d78cc23
commit
44544e46a8
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user