2016-05-26 14:27:04 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, hdf5
|
|
|
|
, m4
|
|
|
|
, curl # for DAP
|
2014-10-15 10:50:21 +01:00
|
|
|
}:
|
2016-05-26 14:27:04 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
mpiSupport = hdf5.mpiSupport;
|
|
|
|
mpi = hdf5.mpi;
|
|
|
|
in stdenv.mkDerivation rec {
|
2018-03-21 01:58:18 +00:00
|
|
|
name = "netcdf-4.6.1";
|
2014-10-15 10:50:21 +01:00
|
|
|
|
2018-01-28 16:52:39 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz";
|
2018-03-21 01:58:18 +00:00
|
|
|
sha256 = "0hi61cdihwwvz5jz1l7yq712j7ca1cj4bhr8x0x7c2vlb1s9biw9";
|
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 ];
|
2014-10-15 10:50:21 +01:00
|
|
|
|
2018-01-28 16:52:39 +00:00
|
|
|
passthru = {
|
|
|
|
mpiSupport = mpiSupport;
|
|
|
|
inherit mpi;
|
|
|
|
};
|
2016-08-02 17:06:29 +01:00
|
|
|
|
2018-01-28 16:52:39 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-netcdf-4"
|
|
|
|
"--enable-dap"
|
|
|
|
"--enable-shared"
|
|
|
|
]
|
|
|
|
++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
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-01-28 16:52:39 +00:00
|
|
|
};
|
2014-11-10 14:54:37 +00:00
|
|
|
}
|