cdo: 1.7.2 -> 1.9.0

+4 -4
+4 -4
pkgs/development/libraries/cdo/default.nix
··· 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { 8 - version = "1.7.2"; 8 + version = "1.9.0"; 9 9 name = "cdo-${version}"; 10 10 11 11 # Dependencies 12 12 buildInputs = [ curl netcdf hdf5 ]; 13 13 14 14 src = fetchurl { 15 - url = "https://code.zmaw.de/attachments/download/12760/${name}.tar.gz"; 16 - sha256 = "4c43eba7a95f77457bfe0d30fb82382b3b5f2b0cf90aca6f0f0a008f6cc7e697"; 15 + url = "https://code.mpimet.mpg.de/attachments/download/15187/${name}.tar.gz"; 16 + sha256 = "024hsr6qfg2dicwvm0vvkg3fr998bchf0qgwpj2v0jmz7a67ydnz"; 17 17 }; 18 18 19 19 # Configure phase ··· 29 29 Supported data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and IEG. 30 30 There are more than 600 operators available. 31 31 ''; 32 - homepage = https://code.zmaw.de/projects/cdo/; 32 + homepage = https://code.mpimet.mpg.de/projects/cdo/; 33 33 license = stdenv.lib.licenses.gpl2; 34 34 maintainers = [ stdenv.lib.maintainers.ltavard ]; 35 35 platforms = with stdenv.lib.platforms; linux ++ darwin;