From 0e293f2ac917f6256c86ebe95155e6432197ed18 Mon Sep 17 00:00:00 2001 From: r0man Date: Sat, 3 Dec 2022 13:17:57 +0100 Subject: [PATCH 3/3] gnu: cdo: Update to 2.1.0. * gnu/packages/geo.scm (cdo): Update to 2.1.0. --- gnu/packages/geo.scm | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 63fbfccab9..abfa5963b9 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -186,22 +186,36 @@ (define-public eccodes (define-public cdo (package (name "cdo") - (version "2.0.5") + (version "2.1.0") (source (origin (method url-fetch) (uri (string-append - "https://code.mpimet.mpg.de/attachments/download/26823/cdo-" + "https://code.mpimet.mpg.de/attachments/download/27481/cdo-" version ".tar.gz")) (sha256 (base32 - "1khdbd5cmnn7qm6hcqg4md5wbq14fs6brrns8b3g18diqgqvpvpd")))) + "1k18llghpf3jnjn0xcnhmbg7arb1fiy854qqn9m5c1abjin38wdq")))) (build-system gnu-build-system) (arguments (list #:configure-flags - #~(list (string-append "--with-netcdf=" - #$(this-package-input "netcdf"))))) + #~(list (string-append "--with-curl=" + #$(this-package-input "curl")) + (string-append "--with-eccodes=" + #$(this-package-input "eccodes")) + (string-append "--with-fftw3=" + #$(this-package-input "fftw")) + (string-append "--with-hdf5=" + #$(this-package-input "hdf5")) + (string-append "--with-netcdf=" + #$(this-package-input "netcdf")) + (string-append "--with-proj=" + #$(this-package-input "proj")) + (string-append "--with-udunits2=" + #$(this-package-input "udunits")) + (string-append "--with-libxml2=" + #$(this-package-input "libxml2"))))) (inputs - (list netcdf)) + (list curl eccodes fftw hdf5 libxml2 netcdf proj udunits)) (native-inputs (list pkg-config)) (home-page "https://code.mpimet.mpg.de/projects/cdo") -- 2.38.1