netcdf: 4.4.1.1 -> 4.6.0

This commit is contained in:
Franz Pletz 2018-01-28 17:52:39 +01:00
parent 024fb7e9b3
commit ef8f08dd4c
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -9,27 +9,30 @@ let
mpiSupport = hdf5.mpiSupport;
mpi = hdf5.mpi;
in stdenv.mkDerivation rec {
name = "netcdf-4.4.1.1";
src = fetchurl {
url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz";
sha256 = "1blc7ik5yin7i0ls2kag0a9xjk12m0dzx6v1x88az3ras3scci2d";
};
name = "netcdf-4.6.0";
buildInputs = [ hdf5 m4 curl mpi];
src = fetchurl {
url = "https://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz";
sha256 = "099qmdjj059wkj5za13zqnz0lcziqkcvyfdf894j4n6qq4c5iw2b";
};
passthru = {
mpiSupport = mpiSupport;
inherit mpi;
};
nativeBuildInputs = [ m4 ];
buildInputs = [ hdf5 curl mpi ];
configureFlags = [
"--enable-netcdf-4"
"--enable-dap"
"--enable-shared"
]
++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
passthru = {
mpiSupport = mpiSupport;
inherit mpi;
};
meta = {
platforms = stdenv.lib.platforms.unix;
};
configureFlags = [
"--enable-netcdf-4"
"--enable-dap"
"--enable-shared"
]
++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
meta = {
platforms = stdenv.lib.platforms.unix;
homepage = https://www.unidata.ucar.edu/software/netcdf/;
};
}