nco: fixed the pkg name (version missing)

Also fixed too long description

+3 -2
+3 -2
pkgs/development/libraries/nco/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "4.5.5"; 5 - name = "nco"; 5 + name = "nco-${version}"; 6 6 7 7 buildInputs = [ netcdf netcdfcxx4 gsl udunits antlr which curl ]; 8 8 ··· 12 12 }; 13 13 14 14 meta = { 15 - description = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5"; 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"; 16 17 homepage = http://nco.sourceforge.net/; 17 18 license = stdenv.lib.licenses.gpl3; 18 19 maintainers = [ stdenv.lib.maintainers.bzizou ];