guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/07: gnu: Add r-qs.


From: guix-commits
Subject: 04/07: gnu: Add r-qs.
Date: Tue, 3 Aug 2021 04:44:57 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 424515f9d04fed12cf525746ff039884ea9cd962
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Aug 3 10:39:58 2021 +0200

    gnu: Add r-qs.
    
    * gnu/packages/cran.scm (r-qs): New variable.
---
 gnu/packages/cran.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index bbedaa2..d022dfc 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -30036,3 +30036,31 @@ by using the registration of native function 
mechanism.  Client packages
 simply include a single header file RApiSerializeAPI.h provided by this
 package.")
     (license license:gpl2+)))
+
+(define-public r-qs
+  (package
+    (name "r-qs")
+    (version "0.25.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "qs" version))
+       (sha256
+        (base32
+         "0qzrhc5jsygj813k956b00h4b6haynz44rk6a4v34fv4ywq9ba7w"))))
+    (properties `((upstream-name . "qs")))
+    (build-system r-build-system)
+    (inputs `(("zlib" ,zlib)))
+    (propagated-inputs
+     `(("r-rapiserialize" ,r-rapiserialize)
+       ("r-rcpp" ,r-rcpp)
+       ("r-stringfish" ,r-stringfish)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("r-knitr" ,r-knitr)))
+    (home-page "https://github.com/traversc/qs";)
+    (synopsis "Quick serialization of R objects")
+    (description
+     "This package provides functions for quickly writing and reading any R
+object to and from disk.")
+    (license license:gpl3)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]