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

36 lines
733 B
Nix
Raw Normal View History

2016-05-26 13:27:04 +00:00
{ stdenv
, fetchurl
, hdf5
, m4
, curl # for DAP
}:
2016-05-26 13:27:04 +00:00
let
mpiSupport = hdf5.mpiSupport;
mpi = hdf5.mpi;
in stdenv.mkDerivation rec {
2015-05-30 14:08:36 +00:00
name = "netcdf-4.3.3.1";
src = fetchurl {
2014-11-10 14:54:37 +00:00
url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz";
2015-05-30 14:08:36 +00:00
sha256 = "06ds8zm4qvjlqvv4qb637cqr0xgvbhnghrddisad5vj81s5kvpmx";
};
buildInputs = [ hdf5 m4 curl mpi];
2016-05-26 13:27:04 +00:00
passthru = {
mpiSupport = mpiSupport;
inherit mpi;
};
configureFlags = [
"--enable-netcdf-4"
"--enable-dap"
"--enable-shared"
2016-05-26 13:27:04 +00:00
]
++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
meta = {
platforms = stdenv.lib.platforms.unix;
};
2014-11-10 14:54:37 +00:00
}