[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add r-synchronicity.
From: |
Roel Janssen |
Subject: |
01/01: gnu: Add r-synchronicity. |
Date: |
Fri, 4 Nov 2016 13:41:35 +0000 (UTC) |
roelj pushed a commit to branch master
in repository guix.
commit 4a838652862cc849b799cb7f7c3d302d5337483f
Author: Roel Janssen <address@hidden>
Date: Fri Nov 4 14:40:13 2016 +0100
gnu: Add r-synchronicity.
* gnu/packages/statistics.scm (r-synchronicity): New variable.
---
gnu/packages/statistics.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index b7f9b9a..29809ea 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2809,6 +2809,30 @@ bigmemory and synchronicity packages.")
;; Users can choose either LGPLv3 or ASL2.0.
(license (list license:lgpl3 license:asl2.0))))
+(define-public r-synchronicity
+ (package
+ (name "r-synchronicity")
+ (version "1.1.9.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "synchronicity" version))
+ (sha256
+ (base32
+ "0d9skpwmsnkn4xb3f2kgyyv8bhdi0r9p1kj3cvi0s92fjjnpi00c"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-bh" ,r-bh)
+ ("r-bigmemory-sri" ,r-bigmemory-sri)
+ ("r-rcpp" ,r-rcpp)))
+ (home-page "http://www.bigmemory.org")
+ (synopsis "Boost mutex functionality in R")
+ (description "This package provides support for synchronization
+via mutexes and may eventually support interprocess communication and
+message passing.")
+ ;; Users can choose either LGPLv3 or ASL2.0.
+ (license (list license:lgpl3 license:asl2.0))))
+
(define-public r-nmf
(package
(name "r-nmf")