guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add r-config.


From: guix-commits
Subject: 02/02: gnu: Add r-config.
Date: Fri, 11 Sep 2020 05:24:07 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 1c87536287837c19b6a7d0b5df43fdcab7e5a26e
Author: Peter Lo <peterloleungyau@gmail.com>
AuthorDate: Sun Jun 28 16:57:44 2020 +0800

    gnu: Add r-config.
    
    * gnu/packages/cran.scm (r-config): New variable.
    
    Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
---
 gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 305f8e9..de42738 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -23581,3 +23581,29 @@ assumptions.")
      "This package provides helper functions with a consistent interface to
 coerce and verify the types and shapes of values for input checking.")
     (license license:asl2.0)))
+
+(define-public r-config
+  (package
+    (name "r-config")
+    (version "0.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "config" version))
+       (sha256
+        (base32
+         "0l67nfpm42ssnk0bl4jmq6bibz8hawgfgh2s14s5c8mnimv6mpjs"))))
+    (properties `((upstream-name . "config")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-yaml" ,r-yaml)))
+    (native-inputs
+     `(("r-knitr" ,r-knitr)))
+    (home-page "https://github.com/rstudio/config";)
+    (synopsis "Manage environment specific configuration values")
+    (description
+     "This package lets you manage configuration values across multiple
+environments (e.g.  development, test, production).  It reads values using a
+function that determines the current environment and returns the appropriate
+value.")
+    (license license:gpl3)))



reply via email to

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