gnu: Add r-filelock.

* gnu/packages/cran.scm (r-filelock): New variable.
This commit is contained in:
Ricardo Wurmus 2021-02-04 12:09:20 +01:00
parent c3984a1382
commit 85780c0be5
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -18722,6 +18722,26 @@ (define-public r-acm4r
;; 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")