Merge pull request #90116 from purcell/netcdf-no-gcc-at-runtime

netcdf: prevent bogus runtime dependency on gcc
This commit is contained in:
Mario Rodas 2020-08-16 00:37:40 -05:00 committed by GitHub
commit 49dc0245c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@
, hdf5
, m4
, curl # for DAP
, removeReferencesTo
}:
let
@ -26,7 +27,7 @@ in stdenv.mkDerivation rec {
done
'';
nativeBuildInputs = [ m4 ];
nativeBuildInputs = [ m4 removeReferencesTo ];
buildInputs = [ hdf5 curl mpi ];
passthru = {
@ -42,6 +43,12 @@ in stdenv.mkDerivation rec {
]
++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
disallowedReferences = [ stdenv.cc ];
postFixup = ''
remove-references-to -t ${stdenv.cc} "$(readlink -f $out/lib/libnetcdf.settings)"
'';
doCheck = !mpiSupport;
meta = {