mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add Perl boolean.
* gnu/packages/perl.scm (perl-boolean): New variable.
This commit is contained in:
parent
e58a2fa16e
commit
85690ec144
1 changed files with 19 additions and 0 deletions
|
@ -254,6 +254,25 @@ (define-public perl-benchmark-timer
|
|||
"Benchmark-Timer-" version))
|
||||
(license gpl2)))
|
||||
|
||||
(define-public perl-boolean
|
||||
(package
|
||||
(name "perl-boolean")
|
||||
(version "0.45")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
|
||||
"boolean-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"18hrgldzwnhs0c0r8hxx6r05qvk9p7gwinjwcybixfs2h0n43ypj"))))
|
||||
(build-system perl-build-system)
|
||||
(home-page "http://search.cpan.org/dist/boolean")
|
||||
(synopsis "Boolean support for Perl")
|
||||
(description "This module provides basic Boolean support, by defining two
|
||||
special objects: true and false.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-cache-cache
|
||||
(package
|
||||
(name "perl-cache-cache")
|
||||
|
|
Loading…
Reference in a new issue