2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv
|
2021-08-17 19:15:45 +01:00
|
|
|
, fetchpatch
|
2016-05-26 14:27:04 +01:00
|
|
|
, fetchurl
|
|
|
|
, 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";
|
2021-08-17 19:15:45 +01:00
|
|
|
version = "4.8.0"; # Remove patch mentioned below on upgrade
|
2014-10-15 10:50:21 +01:00
|
|
|
|
2018-01-28 16:52:39 +00:00
|
|
|
src = fetchurl {
|
2022-02-22 11:48:53 +00:00
|
|
|
url = "https://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-c-${version}.tar.gz";
|
2021-08-17 19:15:45 +01:00
|
|
|
sha256 = "1mfn8qi4k0b8pyar3wa8v0npj69c7rhgfdlppdwmq5jqk88kb5k7";
|
2018-01-28 16:52:39 +00:00
|
|
|
};
|
2016-05-26 14:27:04 +01:00
|
|
|
|
2021-08-17 19:15:45 +01:00
|
|
|
patches = [
|
|
|
|
# Fixes:
|
|
|
|
# *** Checking vlen of compound file...Sorry! Unexpected result, tst_h_atts3.c, line: 289
|
|
|
|
# FAIL tst_h_atts3 (exit status: 2)
|
|
|
|
# TODO: Remove with next netcdf release (see https://github.com/Unidata/netcdf-c/pull/1980)
|
|
|
|
(fetchpatch {
|
|
|
|
name = "netcdf-Fix-tst_h_atts3-for-hdf5-1.12.patch";
|
|
|
|
url = "https://github.com/Unidata/netcdf-c/commit/9fc8ae62a8564e095ff17f4612874581db0e4db5.patch";
|
|
|
|
sha256 = "128kxz5jikq32x5qjmi0xdngi0k336rf6bvbcppvlk5gibg5nk7v";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
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)"
|
|
|
|
'';
|
|
|
|
|
2019-12-19 18:26:58 +00:00
|
|
|
doCheck = !mpiSupport;
|
|
|
|
|
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
|
|
|
}
|