netcdf: update to 4.3.2

This commit is contained in:
Michel Kuhlmann 2014-11-10 15:54:37 +01:00
parent 9e3137ddf0
commit 3bff1c8fd3

View File

@ -1,9 +1,10 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, zlib, hdf5 }:
stdenv.mkDerivation {
name = "netcdf-4.1.1";
stdenv.mkDerivation rec {
name = "netcdf-4.3.2";
src = fetchurl {
url = http://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-4.1.1.tar.gz;
sha256 = "1c1g6ig24fn1fm5wwzv4w832li2jikblvbjv6wwg0mwc6yfxccvr";
url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz";
sha256 = "57086b4383ce9232f05aad70761c2a6034b1a0c040260577d369b3bbfe6d248e";
};
}
buildInputs = [zlib hdf5];
}