mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add perl-file-fcntllock.
* gnu/packages/perl.scm (perl-file-fcntllock): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
31f0e46bea
commit
fa3ba0143f
1 changed files with 22 additions and 0 deletions
|
@ -11641,6 +11641,28 @@ (define-public perl-file-finder
|
|||
used as the head of many different sequences.")
|
||||
(license license:perl-license)))
|
||||
|
||||
(define-public perl-file-fcntllock
|
||||
(package
|
||||
(name "perl-file-fcntllock")
|
||||
(version "0.22")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://cpan/authors/id/J/JT/JTT/File-FcntlLock-" version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1pxwknq4lw0wqpkh8pf18qsjf9g503vx6a5184vvffprzwpbp6ls"))))
|
||||
(build-system perl-build-system)
|
||||
(home-page "https://metacpan.org/release/File-FcntlLock")
|
||||
(synopsis "File locking with fcntl(2)")
|
||||
(description "File locking in Perl is usually done using the @code{flock}
|
||||
function. Unfortunately, this only allows locks on whole files and is often
|
||||
implemented in terms of the @code{flock(2)} system function which has some
|
||||
shortcomings (especially concerning locks on remotely mounted file systems)
|
||||
and slightly different behaviour than @code{fcntl(2)}.")
|
||||
(license license:perl-license)))
|
||||
|
||||
(define-public perl-font-ttf
|
||||
(package
|
||||
(name "perl-font-ttf")
|
||||
|
|
Loading…
Reference in a new issue