1 { lib, stdenv, fetchurl, netcdf, hdf5, curl }:
2 stdenv.mkDerivation rec {
7 url = "https://github.com/Unidata/netcdf-cxx4/archive/v${version}.tar.gz";
8 sha256 = "13zi8cbk18gggx1c12a580wdsbl714lw68a1wg7c86x0sybirni5";
11 buildInputs = [ netcdf hdf5 curl ];
15 description = "C++ API to manipulate netcdf files";
16 homepage = "https://www.unidata.ucar.edu/software/netcdf/";
17 license = lib.licenses.free;
18 platforms = lib.platforms.unix;