2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv
|
2022-04-17 10:01:46 +01:00
|
|
|
, fetchurl, unzip
|
2016-05-26 14:27:04 +01:00
|
|
|
, hdf5
|
|
|
|
, m4
|
|
|
|
, curl # for DAP
|
2020-06-11 01:57:10 +01:00
|
|
|
, removeReferencesTo
|
2014-10-15 10:50:21 +01:00
|
|
|
}:
|
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 {
|
2022-02-22 11:48:53 +00:00
|
|
|
pname = "netcdf" + lib.optionalString mpiSupport "-mpi";
|
2022-04-17 10:01:46 +01:00
|
|
|
version = "4.8.1";
|
2014-10-15 10:50:21 +01:00
|
|
|
|
2018-01-28 16:52:39 +00:00
|
|
|
src = fetchurl {
|
2022-04-17 10:01:46 +01:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2020-06-11 01:57:10 +01:00
|
|
|
nativeBuildInputs = [ m4 removeReferencesTo ];
|
2018-01-28 16:52:39 +00:00
|
|
|
buildInputs = [ hdf5 curl mpi ];
|
2014-10-15 10:50:21 +01:00
|
|
|
|
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
|
|
|
};
|
2016-08-02 17:06:29 +01:00
|
|
|
|
2018-01-28 16:52:39 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-netcdf-4"
|
|
|
|
"--enable-dap"
|
|
|
|
"--enable-shared"
|
2019-12-19 18:26:58 +00:00
|
|
|
"--disable-dap-remote-tests"
|
2018-01-28 16:52:39 +00:00
|
|
|
]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ (lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
|
2018-01-28 16:52:39 +00:00
|
|
|
|
2020-06-11 01:57:10 +01:00
|
|
|
disallowedReferences = [ stdenv.cc ];
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
remove-references-to -t ${stdenv.cc} "$(readlink -f $out/lib/libnetcdf.settings)"
|
|
|
|
'';
|
|
|
|
|
2022-04-06 07:49:49 +01:00
|
|
|
doCheck = !(mpiSupport || (stdenv.isDarwin && stdenv.isAarch64));
|
2022-04-17 10:01:46 +01:00
|
|
|
checkInputs = [ unzip ];
|
2019-12-19 18:26:58 +00:00
|
|
|
|
2018-01-28 16:52:39 +00:00
|
|
|
meta = {
|
2019-11-17 08:43:55 +00:00
|
|
|
description = "Libraries for the Unidata network Common Data Format";
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.unidata.ucar.edu/software/netcdf/";
|
2018-10-25 20:41:35 +01:00
|
|
|
license = {
|
2020-04-01 02:11:51 +01:00
|
|
|
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
|
|
|
}
|