2016-05-26 06:27:04 -07:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, hdf5
|
|
|
|
, m4
|
|
|
|
, curl # for DAP
|
2014-10-15 02:50:21 -07:00
|
|
|
}:
|
2016-05-26 06:27:04 -07:00
|
|
|
|
|
|
|
let
|
|
|
|
mpiSupport = hdf5.mpiSupport;
|
|
|
|
mpi = hdf5.mpi;
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-12-19 10:26:58 -08:00
|
|
|
pname = "netcdf";
|
2020-03-29 23:27:57 -07:00
|
|
|
version = "4.7.4";
|
2014-10-15 02:50:21 -07:00
|
|
|
|
2018-01-28 08:52:39 -08:00
|
|
|
src = fetchurl {
|
2019-12-19 10:26:58 -08:00
|
|
|
url = "https://www.unidata.ucar.edu/downloads/netcdf/ftp/${pname}-c-${version}.tar.gz";
|
2020-03-29 23:27:57 -07:00
|
|
|
sha256 = "1a2fpp15a2rl1m50gcvvzd9y6bavl6vjf9zzf63sz5gdmq06yiqf";
|
2018-01-28 08:52:39 -08:00
|
|
|
};
|
2016-05-26 06:27:04 -07:00
|
|
|
|
2018-08-09 08:26:46 -07: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 08:52:39 -08:00
|
|
|
nativeBuildInputs = [ m4 ];
|
|
|
|
buildInputs = [ hdf5 curl mpi ];
|
2014-10-15 02:50:21 -07:00
|
|
|
|
2018-01-28 08:52:39 -08:00
|
|
|
passthru = {
|
|
|
|
mpiSupport = mpiSupport;
|
|
|
|
inherit mpi;
|
|
|
|
};
|
2016-08-02 09:06:29 -07:00
|
|
|
|
2018-01-28 08:52:39 -08:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-netcdf-4"
|
|
|
|
"--enable-dap"
|
|
|
|
"--enable-shared"
|
2019-12-19 10:26:58 -08:00
|
|
|
"--disable-dap-remote-tests"
|
2018-01-28 08:52:39 -08:00
|
|
|
]
|
|
|
|
++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
|
|
|
|
|
2019-12-19 10:26:58 -08:00
|
|
|
doCheck = !mpiSupport;
|
|
|
|
|
2018-01-28 08:52:39 -08:00
|
|
|
meta = {
|
2019-11-17 00:43:55 -08:00
|
|
|
description = "Libraries for the Unidata network Common Data Format";
|
2018-01-28 08:52:39 -08:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.unidata.ucar.edu/software/netcdf/";
|
2018-10-25 12:41:35 -07:00
|
|
|
license = {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "https://www.unidata.ucar.edu/software/netcdf/docs/copyright.html";
|
2018-10-25 12:41:35 -07:00
|
|
|
};
|
2018-01-28 08:52:39 -08:00
|
|
|
};
|
2014-11-10 06:54:37 -08:00
|
|
|
}
|