gnu: Add perl-contextual-return.

* gnu/packages/perl.scm (perl-contextual-return): New variable.
This commit is contained in:
Ricardo Wurmus 2021-02-19 18:04:37 +01:00
parent 0d9c950269
commit fceda92f86
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -8912,6 +8912,28 @@ (define-public perl-want
its return value is going to be immediately used.")
(license license:perl-license)))
(define-public perl-contextual-return
(package
(name "perl-contextual-return")
(version "0.004014")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/D/DC/DCONWAY/Contextual-Return-"
version ".tar.gz"))
(sha256
(base32
"0y4zf5qkpayp4kkg7lw9ydbbin1z99m6xvy02fgacjbfw4ai9zh9"))))
(build-system perl-build-system)
(propagated-inputs
`(("perl-want" ,perl-want)))
(home-page "https://metacpan.org/release/Contextual-Return")
(synopsis "Create context-sensitive return values")
(description "This module provides a collection of named blocks that allow
a return statement to return different values depending on the context in
which it is called.")
(license license:perl-license)))
(define-public perl-statistics-basic
(package
(name "perl-statistics-basic")