Merge pull request #13367 from bzizou/nco

nco: init at 4.5.5
This commit is contained in:
Pascal Wittmann
2016-02-22 16:26:23 +01:00
3 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, fetchurl, netcdf, netcdfcxx4, gsl, udunits, antlr, which, curl }:
stdenv.mkDerivation rec {
version = "4.5.5";
name = "nco";
buildInputs = [ netcdf netcdfcxx4 gsl udunits antlr which curl ];
src = fetchurl {
url = "https://github.com/nco/nco/archive/${version}.tar.gz";
sha256 = "bc6f5b976fdfbdec51f2ebefa158fa54672442c2fd5f042ba884f9f32c2ad666";
};
meta = {
description = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5";
homepage = http://nco.sourceforge.net/;
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.bzizou ];
platforms = stdenv.lib.platforms.linux;
};
}