guix-commits
[Top][All Lists]
Advanced

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

04/09: gnu: Add r-flock.


From: guix-commits
Subject: 04/09: gnu: Add r-flock.
Date: Wed, 1 Jan 2020 07:33:21 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit be9d0ab2a5300768f2bf8f1ac21110de0a152de2
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Jan 1 12:57:59 2020 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 64804e4..c8d9dad 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -19062,3 +19062,25 @@ AFT models.")
     (description
      "This package provides methods for variable selection for AFT models.")
     (license license:gpl2)))
+
+(define-public r-flock
+  (package
+    (name "r-flock")
+    (version "0.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "flock" version))
+       (sha256
+        (base32
+         "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
+    (properties `((upstream-name . "flock")))
+    (build-system r-build-system)
+    (propagated-inputs `(("r-rcpp" ,r-rcpp)))
+    (home-page "https://cran.r-project.org/web/packages/flock/";)
+    (synopsis "Process synchronization using file locks")
+    (description
+     "This package implements synchronization between R processes (spawned by
+using the @code{parallel} package for instance) using file locks.  It supports
+both exclusive and shared locking.")
+    (license license:asl2.0)))



reply via email to

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