mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
33 lines
655 B
Nix
33 lines
655 B
Nix
{ stdenv
|
|
, fetchurl
|
|
, zlib
|
|
, hdf5
|
|
, m4
|
|
, curl # for DAP
|
|
}:
|
|
|
|
let
|
|
mpiSupport = hdf5.mpiSupport;
|
|
mpi = hdf5.mpi;
|
|
in stdenv.mkDerivation rec {
|
|
name = "netcdf-4.3.3.1";
|
|
src = fetchurl {
|
|
url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz";
|
|
sha256 = "06ds8zm4qvjlqvv4qb637cqr0xgvbhnghrddisad5vj81s5kvpmx";
|
|
};
|
|
|
|
buildInputs = [ hdf5 zlib m4 curl mpi];
|
|
|
|
passthru = {
|
|
mpiSupport = mpiSupport;
|
|
inherit mpi;
|
|
};
|
|
|
|
configureFlags = [
|
|
"--enable-netcdf-4"
|
|
"--enable-dap"
|
|
"--enable-shared"
|
|
]
|
|
++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" ]);
|
|
}
|