diff options
author | Vinicius Monego <monego@posteo.net> | 2024-03-25 09:55:35 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2024-03-29 16:45:38 -0300 |
commit | 23acd17cc64ffcd16bdfb991dcd39c3d7dd8ea47 (patch) | |
tree | 21e0dc75f31ec6251dde80f67c50bd03c1470bc6 /gnu | |
parent | 73c5dee29b692d5c3ad2b4ec7d7508f782b6d870 (diff) | |
download | guix-23acd17cc64ffcd16bdfb991dcd39c3d7dd8ea47.tar.gz guix-23acd17cc64ffcd16bdfb991dcd39c3d7dd8ea47.zip |
gnu: cdo: Update to 2.4.0.
* gnu/packages/geo.scm (cdo): Update to 2.4.0.
[source]: Update URL.
[native-inputs]: Add python-wrapper.
Change-Id: Ic2dad47e04d99b2903b3d7f53862e1ffa6e4d220
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/geo.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 687effcace..e7a032640d 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -225,15 +225,15 @@ BUFR and WMO GTS abbreviated header formats.") (define-public cdo (package (name "cdo") - (version "2.1.0") + (version "2.4.0") (source (origin (method url-fetch) (uri (string-append - "https://code.mpimet.mpg.de/attachments/download/27481/cdo-" + "https://code.mpimet.mpg.de/attachments/download/29313/cdo-" version ".tar.gz")) (sha256 - (base32 "1k18llghpf3jnjn0xcnhmbg7arb1fiy854qqn9m5c1abjin38wdq")))) + (base32 "0b2d1d8r1lxs422dxajnmvjyhjwfichlkglv3yqm7wq7rjw0yyd4")))) (build-system gnu-build-system) (arguments (list #:configure-flags @@ -258,7 +258,7 @@ BUFR and WMO GTS abbreviated header formats.") (inputs (list curl eccodes fftw hdf5 libxml2 netcdf proj udunits)) (native-inputs - (list pkg-config)) + (list pkg-config python-wrapper)) (home-page "https://code.mpimet.mpg.de/projects/cdo") (synopsis "Climate data operators") (description "@acronym{CDO, Climate Data Operators} is a collection of command-line |