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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
2.0 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchpatch
2016-05-26 14:27:04 +01:00
, fetchurl
, hdf5
, m4
, curl # for DAP
, removeReferencesTo
}:
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 {
pname = "netcdf" + lib.optionalString mpiSupport "-mpi";
version = "4.8.0"; # Remove patch mentioned below on upgrade
2018-01-28 16:52:39 +00:00
src = fetchurl {
url = "https://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-c-${version}.tar.gz";
sha256 = "1mfn8qi4k0b8pyar3wa8v0npj69c7rhgfdlppdwmq5jqk88kb5k7";
2018-01-28 16:52:39 +00:00
};
2016-05-26 14:27:04 +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
'';
nativeBuildInputs = [ m4 removeReferencesTo ];
2018-01-28 16:52:39 +00:00
buildInputs = [ hdf5 curl mpi ];
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
};
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
]
++ (lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
2018-01-28 16:52:39 +00:00
disallowedReferences = [ stdenv.cc ];
postFixup = ''
remove-references-to -t ${stdenv.cc} "$(readlink -f $out/lib/libnetcdf.settings)"
'';
doCheck = !mpiSupport;
2018-01-28 16:52:39 +00:00
meta = {
description = "Libraries for the Unidata network Common Data Format";
platforms = 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
}