From 60e9a86ecb3f4583939019d688514b872bce67b0 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 26 Aug 2024 20:23:12 +0200 Subject: [PATCH] gnu: Add r-sfheaders. * gnu/packages/cran.scm (r-sfheaders): New variable. Change-Id: Ia451593fb567ce9e88b5712a30f30ace2186edb2 --- gnu/packages/cran.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ea918d2367..c683be1911 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -24499,6 +24499,27 @@ to access designs described by Husslage et al (2011) and Wang and Fang (2005). The design types included are Audze-Eglais, MaxiMin, and uniform.") (license license:expat))) +(define-public r-sfheaders + (package + (name "r-sfheaders") + (version "0.4.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "sfheaders" version)) + (sha256 + (base32 "01xxp7lpf333djs0lifnnhk5akv8prk0r5mq0ilynyyhn5kzwpzn")))) + (properties `((upstream-name . "sfheaders"))) + (build-system r-build-system) + (propagated-inputs (list r-geometries r-rcpp)) + (home-page "https://dcooley.github.io/sfheaders/") + (synopsis "Converts between R objects and Simple Feature objects") + (description + "This package converts between R and Simple Feature @code{sf} objects, +without depending on the Simple Feature library. Conversion functions are +available at both the R level, and through Rcpp.") + (license license:expat))) + (define-public r-sftime (package (name "r-sftime")