nixpkgs/pkgs/development/libraries/netcdf-cxx4/default.nix

21 lines
566 B
Nix
Raw Normal View History

2015-09-11 13:34:34 +01:00
{ stdenv, fetchurl, netcdf, hdf5, curl }:
stdenv.mkDerivation rec {
pname = "netcdf-cxx4";
2018-01-28 16:51:45 +00:00
version = "4.3.0";
2015-09-11 13:34:34 +01:00
src = fetchurl {
url = "https://github.com/Unidata/netcdf-cxx4/archive/v${version}.tar.gz";
2018-01-28 16:51:45 +00:00
sha256 = "13zi8cbk18gggx1c12a580wdsbl714lw68a1wg7c86x0sybirni5";
2015-09-11 13:34:34 +01:00
};
buildInputs = [ netcdf hdf5 curl ];
doCheck = true;
meta = {
description = "C++ API to manipulate netcdf files";
homepage = "https://www.unidata.ucar.edu/software/netcdf/";
2015-09-11 13:34:34 +01:00
license = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.unix;
2015-09-11 13:34:34 +01:00
};
}