diff options
author | zimoun <zimon.toutoune@gmail.com> | 2022-09-08 16:56:55 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-09-10 09:36:58 +0200 |
commit | bcca8332ff778e115323a4d0b00928bfa20f7584 (patch) | |
tree | 4d3881a581df2bbf6ffe3b06397f6a0ef5989de2 /gnu/packages | |
parent | f760e628fb923a4e968bae6d38be870d6a4b668e (diff) | |
download | guix-bcca8332ff778e115323a4d0b00928bfa20f7584.tar.gz |
gnu: Add r-proj4.
* gnu/packages/cran.scm (r-proj4): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7aa3ebde97..471b5b1eb5 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -593,6 +593,29 @@ pronounceable identifiers.") can read and write both the metadata and the cell data in a Sheet.") (license license:expat))) +(define-public r-proj4 + (package + (name "r-proj4") + (version "1.0-11") + (source (origin + (method url-fetch) + (uri (cran-uri "proj4" version)) + (sha256 + (base32 + "07fil52jswbg2h807cd82m2wlm5j2fb891ifri9ms037099qdwf5")))) + (properties `((upstream-name . "proj4"))) + (build-system r-build-system) + (inputs (list proj.4 zlib)) + (native-inputs (list pkg-config)) + (home-page "http://www.rforge.net/proj4/") + (synopsis "Simple interface to the PROJ.4 cartographic projections library") + (description + "This package provides a simple interface to lat/long projection and +datum transformation of the PROJ.4 cartographic projections library. It +allows transformation of geographic coordinates from one projection and/or +datum to another.") + (license license:gpl2))) + (define-public r-waldo (package (name "r-waldo") |