mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add perl-any-moose.
* gnu/packages/perl.scm (perl-any-moose): New variable.
This commit is contained in:
parent
6578c56728
commit
68e31f81c1
1 changed files with 25 additions and 0 deletions
|
@ -208,6 +208,31 @@ (define-public perl-aliased
|
|||
implicitly.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-any-moose
|
||||
(package
|
||||
(name "perl-any-moose")
|
||||
(version "0.27")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
|
||||
"Any-Moose-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs
|
||||
`(("perl-mouse" ,perl-mouse)
|
||||
("perl-moose" ,perl-moose)))
|
||||
(home-page "http://search.cpan.org/dist/Any-Moose")
|
||||
(synopsis "Transparently use Moose or Mouse modules")
|
||||
(description
|
||||
"This module facilitates using @code{Moose} or @code{Mouse} modules
|
||||
without changing the code. By default, Mouse will be provided to libraries,
|
||||
unless Moose is already loaded, or explicitly requested by the end-user. End
|
||||
users can force the decision of which backend to use by setting the environment
|
||||
variable ANY_MOOSE to be Moose or Mouse.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-appconfig
|
||||
(package
|
||||
(name "perl-appconfig")
|
||||
|
|
Loading…
Reference in a new issue