depot/third_party/nixpkgs/pkgs/development/libraries/netcdf-cxx4/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
557 B
Nix

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