mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add Climate Data Operators.
* gnu/packages/geo.scm (cdo): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
486251d440
commit
b4815e570d
1 changed files with 30 additions and 0 deletions
|
@ -46,6 +46,7 @@ (define-module (gnu packages geo)
|
|||
#:use-module (guix build-system qt)
|
||||
#:use-module (guix build-system scons)
|
||||
#:use-module (guix build-system r)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix svn-download)
|
||||
|
@ -121,6 +122,35 @@ (define-module (gnu packages geo)
|
|||
#:use-module (gnu packages xml)
|
||||
#:use-module (gnu packages xorg))
|
||||
|
||||
(define-public cdo
|
||||
(package
|
||||
(name "cdo")
|
||||
(version "2.0.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://code.mpimet.mpg.de/attachments/download/26823/cdo-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1khdbd5cmnn7qm6hcqg4md5wbq14fs6brrns8b3g18diqgqvpvpd"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:configure-flags
|
||||
#~(list (string-append "--with-netcdf="
|
||||
#$(this-package-input "netcdf")))))
|
||||
(inputs
|
||||
(list netcdf))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(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
|
||||
operators to manipulate and analyse climate and NWP model data. Supported
|
||||
data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and IEG. There are more
|
||||
than 600 operators available.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public memphis
|
||||
(package
|
||||
(name "memphis")
|
||||
|
|
Loading…
Reference in a new issue