guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: Add r-sass.


From: guix-commits
Subject: 02/04: gnu: Add r-sass.
Date: Thu, 18 Feb 2021 11:52:59 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 281df0d225877bf784c562cbdec0400f7f4c4513
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Feb 18 17:48:15 2021 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 0daf67e..c385066 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -1403,6 +1403,36 @@ rmarkdown, etc.) depend on this package to avoid 
bundling redundant copies of
 jQuery.")
     (license license:expat)))
 
+(define-public r-sass
+  (package
+    (name "r-sass")
+    (version "0.3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "sass" version))
+       (sha256
+        (base32
+         "1cxqwsdyz71mgflqqa65mfr161jlv8q9mshs1y19pxp6pz5wnv0s"))))
+    (properties `((upstream-name . "sass")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-digest" ,r-digest)
+       ("r-fs" ,r-fs)
+       ("r-htmltools" ,r-htmltools)
+       ("r-r6" ,r-r6)
+       ("r-rappdirs" ,r-rappdirs)
+       ("r-rlang" ,r-rlang)))
+    (native-inputs `(("r-knitr" ,r-knitr)))
+    (home-page "https://github.com/rstudio/sass";)
+    (synopsis "Syntactically Awesome Style Sheets (SASS)")
+    (description
+     "This package provides an SCSS compiler, powered by the libsass library.
+With this, R developers can use variables, inheritance, and functions to
+generate dynamic style sheets.  The package uses the Sass CSS extension
+language, which is stable, powerful, and CSS compatible.")
+    (license license:expat)))
+
 (define-public r-shiny
   (package
     (name "r-shiny")



reply via email to

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