mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
netcdf-cxx4: init at 4.2.1
This commit is contained in:
parent
e62b38bee8
commit
49b7f613a7
2 changed files with 21 additions and 0 deletions
19
pkgs/development/libraries/netcdf-cxx4/default.nix
Normal file
19
pkgs/development/libraries/netcdf-cxx4/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, fetchurl, netcdf, hdf5, curl }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "netcdf-cxx4-${version}";
|
||||
version = "4.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Unidata/netcdf-cxx4/archive/v${version}.tar.gz";
|
||||
sha256 = "1g0fsmz59dnjib4a7r899lm99j3z6yxsw10c0wlihclzr6znmmds";
|
||||
};
|
||||
|
||||
buildInputs = [ netcdf hdf5 curl ];
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "C++ API to manipulate netcdf files";
|
||||
homepage = "http://www.unidata.ucar.edu/software/netcdf/";
|
||||
license = stdenv.lib.licenses.free;
|
||||
};
|
||||
}
|
|
@ -2349,6 +2349,8 @@ let
|
|||
|
||||
netcdf = callPackage ../development/libraries/netcdf { };
|
||||
|
||||
netcdfcxx4 = callPackage ../development/libraries/netcdf-cxx4 { };
|
||||
|
||||
nc6 = callPackage ../tools/networking/nc6 { };
|
||||
|
||||
ncat = callPackage ../tools/networking/ncat { };
|
||||
|
|
Loading…
Reference in a new issue