mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add perl-future.
* gnu/packages/perl.scm (perl-future): New variable. Change-Id: Idf22bd2ba31c01da6bee9756f5fba337e8f7aedb Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
parent
a2723f3c94
commit
be65fc39fb
1 changed files with 21 additions and 0 deletions
|
@ -5896,6 +5896,27 @@ defining functions and methods with parameter lists. At minimum this saves you
|
|||
from having to unpack @code{@@_} manually, but this module can do much more.")
|
||||
(license license:perl-license)))
|
||||
|
||||
(define-public perl-future
|
||||
(package
|
||||
(name "perl-future")
|
||||
(version "0.51")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/Future-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0dja5wf2c7rn548762syqjrb5bwz9c7xshkrdgyyq050hdry6g2n"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs (list perl-module-build perl-test2-suite))
|
||||
(home-page "https://metacpan.org/release/Future")
|
||||
(synopsis "Perl module for representing operations awaiting completions")
|
||||
(description "This Perl module implements @code{Future}, an object
|
||||
representing an operation that is currently in progress, or has recently
|
||||
completed. It can be used in a variety of ways to manage the flow of control,
|
||||
and data, through an asynchronous program.")
|
||||
(license license:perl-license)))
|
||||
|
||||
(define-public perl-getopt-argvfile
|
||||
(package
|
||||
(name "perl-getopt-argvfile")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue