1{ stdenv, fetchurl, netcdf, netcdfcxx4, gsl, udunits, antlr, which, curl }:
2
3stdenv.mkDerivation rec {
4 version = "4.5.5";
5 name = "nco-${version}";
6
7 buildInputs = [ netcdf netcdfcxx4 gsl udunits antlr which curl ];
8
9 src = fetchurl {
10 url = "https://github.com/nco/nco/archive/${version}.tar.gz";
11 sha256 = "bc6f5b976fdfbdec51f2ebefa158fa54672442c2fd5f042ba884f9f32c2ad666";
12 };
13
14 meta = {
15 description = "NetCDF Operator toolkit";
16 longDescription = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5";
17 homepage = http://nco.sourceforge.net/;
18 license = stdenv.lib.licenses.gpl3;
19 maintainers = [ stdenv.lib.maintainers.bzizou ];
20 platforms = stdenv.lib.platforms.linux;
21 };
22}