nixpkgs/pkgs/development/libraries/nco/default.nix

23 lines
782 B
Nix
Raw Normal View History

2019-07-17 09:52:01 +02:00
{ stdenv, fetchurl, netcdf, netcdfcxx4, gsl, udunits, antlr, which, curl, flex }:
2016-02-22 14:53:34 +01:00
stdenv.mkDerivation rec {
2019-07-17 09:52:01 +02:00
version = "4.8.1";
pname = "nco";
2016-02-22 14:53:34 +01:00
2019-07-17 09:52:01 +02:00
buildInputs = [ netcdf netcdfcxx4 gsl udunits antlr which curl flex ];
2016-02-22 14:53:34 +01:00
src = fetchurl {
url = "https://github.com/nco/nco/archive/${version}.tar.gz";
2019-07-17 09:52:01 +02:00
sha256 = "0s1ww78p4cb2d9qkr4zs439x4xk3ndq6lv8ps677jrn28vnkzbnx";
2016-02-22 14:53:34 +01:00
};
2019-07-17 09:52:01 +02:00
meta = {
description = "NetCDF Operator toolkit";
longDescription = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5";
2016-02-22 14:53:34 +01:00
homepage = http://nco.sourceforge.net/;
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.bzizou ];
platforms = stdenv.lib.platforms.linux;
};
}