nixpkgs/pkgs/development/libraries/netcdf/default.nix
Ben Darwin 2ea7b81750 netcdf: 4.6.1 -> 4.7.3
and enable tests as per unmerged #56830
2019-12-20 13:56:53 +01:00

56 lines
1.2 KiB
Nix

{ stdenv
, fetchurl
, hdf5
, m4
, curl # for DAP
}:
let
mpiSupport = hdf5.mpiSupport;
mpi = hdf5.mpi;
in stdenv.mkDerivation rec {
pname = "netcdf";
version = "4.7.3";
src = fetchurl {
url = "https://www.unidata.ucar.edu/downloads/netcdf/ftp/${pname}-c-${version}.tar.gz";
sha256 = "12s4w2s96p51hlsa81lw92w56rdx8i3mk21pz2ydwcamw579z34f";
};
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 ];
buildInputs = [ hdf5 curl mpi ];
passthru = {
mpiSupport = mpiSupport;
inherit mpi;
};
configureFlags = [
"--enable-netcdf-4"
"--enable-dap"
"--enable-shared"
"--disable-dap-remote-tests"
]
++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
doCheck = !mpiSupport;
meta = {
description = "Libraries for the Unidata network Common Data Format";
platforms = stdenv.lib.platforms.unix;
homepage = https://www.unidata.ucar.edu/software/netcdf/;
license = {
url = https://www.unidata.ucar.edu/software/netcdf/docs/copyright.html;
};
};
}