From fb8c4fafb96c4e5e78b148f0d9b4ecc33cf204d1 Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Tue, 23 Feb 2016 15:07:18 +0100 Subject: [PATCH] nco: fixed the pkg name (version missing) Also fixed too long description --- pkgs/development/libraries/nco/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/nco/default.nix b/pkgs/development/libraries/nco/default.nix index 0a284722e029..f801e25d91fb 100644 --- a/pkgs/development/libraries/nco/default.nix +++ b/pkgs/development/libraries/nco/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { version = "4.5.5"; - name = "nco"; + name = "nco-${version}"; buildInputs = [ netcdf netcdfcxx4 gsl udunits antlr which curl ]; @@ -12,7 +12,8 @@ stdenv.mkDerivation rec { }; meta = { - description = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5"; + description = "NetCDF Operator toolkit"; + longDescription = "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 ];