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

56 lines
1.2 KiB
Nix
Raw Normal View History

2016-05-26 14:27:04 +01:00
{ stdenv
, fetchurl
, hdf5
, m4
, curl # for DAP
}:
2016-05-26 14:27:04 +01:00
let
mpiSupport = hdf5.mpiSupport;
mpi = hdf5.mpi;
in stdenv.mkDerivation rec {
pname = "netcdf";
2020-03-30 07:27:57 +01:00
version = "4.7.4";
2018-01-28 16:52:39 +00:00
src = fetchurl {
url = "https://www.unidata.ucar.edu/downloads/netcdf/ftp/${pname}-c-${version}.tar.gz";
2020-03-30 07:27:57 +01:00
sha256 = "1a2fpp15a2rl1m50gcvvzd9y6bavl6vjf9zzf63sz5gdmq06yiqf";
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
'';
2018-01-28 16:52:39 +00:00
nativeBuildInputs = [ m4 ];
buildInputs = [ hdf5 curl mpi ];
2018-01-28 16:52:39 +00:00
passthru = {
mpiSupport = mpiSupport;
inherit mpi;
};
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
]
++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
doCheck = !mpiSupport;
2018-01-28 16:52:39 +00:00
meta = {
description = "Libraries for the Unidata network Common Data Format";
2018-01-28 16:52:39 +00:00
platforms = stdenv.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
}