linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / netcdf-cxx4 / default.nix
blobb594a672140f38b05da5abf3594bd7eece359e61
1 { lib, stdenv, fetchurl, netcdf, hdf5, curl }:
2 stdenv.mkDerivation rec {
3   pname = "netcdf-cxx4";
4   version = "4.3.0";
6   src = fetchurl {
7     url = "https://github.com/Unidata/netcdf-cxx4/archive/v${version}.tar.gz";
8     sha256 = "13zi8cbk18gggx1c12a580wdsbl714lw68a1wg7c86x0sybirni5";
9   };
11   buildInputs = [ netcdf hdf5 curl ];
12   doCheck = true;
14   meta = {
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;
19   };