summary refs log tree commit diff
path: root/pkgs/development/libraries/netcdf-cxx4/default.nix
blob: 9b2364e7090e1c64045b582b30ac29c563d4a4f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
  };
}