mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 02:48:17 +00:00
netcdf: fix and enable strictDeps = true (#360690)
This commit is contained in:
commit
510184797b
@ -36,7 +36,11 @@ in stdenv.mkDerivation rec {
|
||||
--replace '#!/bin/bash' '${stdenv.shell}'
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ m4 removeReferencesTo ];
|
||||
nativeBuildInputs = [
|
||||
m4
|
||||
removeReferencesTo
|
||||
libxml2 # xml2-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
curl
|
||||
@ -48,6 +52,8 @@ in stdenv.mkDerivation rec {
|
||||
zstd
|
||||
] ++ lib.optional szipSupport szip;
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
passthru = {
|
||||
inherit mpiSupport mpi;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user