nixpkgs/pkgs/development/libraries/netcdf/default.nix

62 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchurl, unzip
2016-05-26 14:27:04 +01:00
, hdf5
, m4
, curl # for DAP
, removeReferencesTo
}:
2016-05-26 14:27:04 +01:00
let
2021-10-03 20:16:35 +01:00
inherit (hdf5) mpiSupport mpi;
2016-05-26 14:27:04 +01:00
in stdenv.mkDerivation rec {
pname = "netcdf" + lib.optionalString mpiSupport "-mpi";
version = "4.8.1";
2018-01-28 16:52:39 +00:00
src = fetchurl {
url = "https://downloads.unidata.ucar.edu/netcdf-c/${version}/netcdf-c-${version}.tar.gz";
sha256 = "1cbjwjmp9691clacw5v88hmpz46ngxs3bfpkf2xy1j7cvlkc72l0";
2018-01-28 16:52:39 +00:00
};
2016-05-26 14:27:04 +01:00
2018-08-09 16:26:46 +01:00
postPatch = ''
patchShebangs .
# this test requires the net
for a in ncdap_test/Makefile.am ncdap_test/Makefile.in; do
substituteInPlace $a --replace testurl.sh " "
done
'';
nativeBuildInputs = [ m4 removeReferencesTo ];
2018-01-28 16:52:39 +00:00
buildInputs = [ hdf5 curl mpi ];
2018-01-28 16:52:39 +00:00
passthru = {
2021-10-03 20:16:35 +01:00
inherit mpiSupport mpi;
2018-01-28 16:52:39 +00:00
};
2018-01-28 16:52:39 +00:00
configureFlags = [
"--enable-netcdf-4"
"--enable-dap"
"--enable-shared"
"--disable-dap-remote-tests"
2018-01-28 16:52:39 +00:00
]
++ (lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
2018-01-28 16:52:39 +00:00
disallowedReferences = [ stdenv.cc ];
postFixup = ''
remove-references-to -t ${stdenv.cc} "$(readlink -f $out/lib/libnetcdf.settings)"
'';
doCheck = !(mpiSupport || (stdenv.isDarwin && stdenv.isAarch64));
checkInputs = [ unzip ];
2018-01-28 16:52:39 +00:00
meta = {
description = "Libraries for the Unidata network Common Data Format";
platforms = lib.platforms.unix;
homepage = "https://www.unidata.ucar.edu/software/netcdf/";
2018-10-25 20:41:35 +01:00
license = {
url = "https://www.unidata.ucar.edu/software/netcdf/docs/copyright.html";
2018-10-25 20:41:35 +01:00
};
2018-01-28 16:52:39 +00:00
};
2014-11-10 14:54:37 +00:00
}