Merge pull request #261119 from wegank/guile-strict-deps-1

guile-disarchive, guile-quickcheck: set strictDeps
This commit is contained in:
Weijia Wang 2023-10-15 01:28:07 +02:00 committed by GitHub
commit a73be17175
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -19,9 +19,15 @@ stdenv.mkDerivation rec {
hash = "sha256-Agt7v5HTpaskXuYmMdGDRIolaqCHUpwd/CfbZCe9Ups=";
};
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
guile
pkg-config
];
buildInputs = [
guile
zlib
];

View File

@ -14,7 +14,8 @@ stdenv.mkDerivation rec {
hash = "sha256-y5msW+mbQ7YeucRS2VNUPokOKoP8g6ysKJ2UMWiIvA4=";
};
nativeBuildInputs = [ pkg-config ];
strictDeps = true;
nativeBuildInputs = [ guile pkg-config ];
buildInputs = [ guile ];
doCheck = !stdenv.isDarwin;