mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02: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:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user