guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: Add r-filelock.


From: guix-commits
Subject: 02/04: gnu: Add r-filelock.
Date: Thu, 4 Feb 2021 06:13:24 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 85780c0be5af0a28c059d1a840e54b07329d4701
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Feb 4 12:09:20 2021 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index df1df32..0d6ebf9 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -18722,6 +18722,26 @@ the align-and-count method.")
     ;; Any version of the GPL
     (license (list license:gpl2+ license:gpl3+))))
 
+(define-public r-filelock
+  (package
+    (name "r-filelock")
+    (version "1.0.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "filelock" version))
+       (sha256
+        (base32
+         "00ql5fw1hidpfnm0szaavf43ahmsnvdbi8i5lr1nrcc90yaiaadc"))))
+    (properties `((upstream-name . "filelock")))
+    (build-system r-build-system)
+    (home-page "https://github.com/r-lib/filelock";)
+    (synopsis "Portable file locking")
+    (description
+     "This library lets you place an exclusive or shared lock on a file using
+the appropriate system call provided by the underlying operating system.")
+    (license license:expat)))
+
 (define-public r-filematrix
   (package
     (name "r-filematrix")



reply via email to

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