netcdf: enabled HDF5, DAP, UDUNITS, and shared library
This commit is contained in:
parent
18e5582f6c
commit
e125997df6
@ -1,4 +1,7 @@
|
|||||||
{ stdenv, fetchurl, zlib, hdf5 }:
|
{ stdenv, fetchurl,
|
||||||
|
zlib, hdf5,
|
||||||
|
curl # for DAP
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "netcdf-4.3.2";
|
name = "netcdf-4.3.2";
|
||||||
@ -6,5 +9,15 @@ stdenv.mkDerivation rec {
|
|||||||
url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz";
|
url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz";
|
||||||
sha256 = "57086b4383ce9232f05aad70761c2a6034b1a0c040260577d369b3bbfe6d248e";
|
sha256 = "57086b4383ce9232f05aad70761c2a6034b1a0c040260577d369b3bbfe6d248e";
|
||||||
};
|
};
|
||||||
buildInputs = [zlib hdf5];
|
|
||||||
|
buildInputs = [
|
||||||
|
zlib hdf5 curl
|
||||||
|
];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--enable-netcdf-4"
|
||||||
|
"--enable-dap"
|
||||||
|
"--with-udunits"
|
||||||
|
"--enable-shared"
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user