mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -05:00
gnu: Add r-filelock.
* gnu/packages/cran.scm (r-filelock): New variable.
This commit is contained in:
parent
c3984a1382
commit
85780c0be5
1 changed files with 20 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue