guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add emacs-poly-r.


From: guix-commits
Subject: 02/02: gnu: Add emacs-poly-r.
Date: Sat, 22 May 2021 01:15:32 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 9f2b2c432b834c8057ce2f4119599d36197bc063
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat May 22 07:13:44 2021 +0200

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

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 331c2c3..00378db 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -36,6 +36,7 @@
   #:use-module (guix git-download)
   #:use-module (guix utils)
   #:use-module (guix build-system ant)
+  #:use-module (guix build-system emacs)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system r)
   #:use-module (guix build-system python)
@@ -5927,6 +5928,33 @@ is designed to support editing of scripts and 
interaction with various
 statistical analysis programs such as R, Julia, and JAGS.")
       (license license:gpl3+))))
 
+(define-public emacs-poly-r
+  (package
+    (name "emacs-poly-r")
+    (version "0.2.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/polymode/poly-R";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0a4wx73jkngw5nbq1fa4jfhba6bsmyn6vnsf887x3xhb5v3ykhsg"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-ess" ,emacs-ess)
+       ("emacs-poly-noweb" ,emacs-poly-noweb)
+       ("emacs-polymode-markdown" ,emacs-polymode-markdown)
+       ("emacs-polymode" ,emacs-polymode)))
+    (properties '((upstream-name . "poly-R")))
+    (home-page "https://github.com/polymode/poly-markdown";)
+    (synopsis "Polymodes for the R language")
+    (description
+     "This package provides a number of polymodes for working with mixed R
+files, including Rmarkdown files.")
+    (license license:gpl3+)))
+
 (define-public readstat
   (package
     (name "readstat")



reply via email to

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