gnu: Add r-flock.

* gnu/packages/cran.scm (r-flock): New variable.
This commit is contained in:
Ricardo Wurmus 2020-01-01 12:57:59 +01:00
parent 69442bd031
commit be9d0ab2a5
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -19062,3 +19062,25 @@ (define-public r-adapenetclass
(description (description
"This package provides methods for variable selection for AFT models.") "This package provides methods for variable selection for AFT models.")
(license license:gpl2))) (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)))