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

56 lines
1.2 KiB
Nix
Raw Normal View History

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