gnu: Add Class-Method-Modifiers.

* gnu/packages/perl.scm (perl-class-method-modifiers): New variable.
This commit is contained in:
Eric Bavier 2015-03-13 11:19:26 -05:00
parent 6ebe790bce
commit 417e11bfaa

View file

@ -534,6 +534,31 @@ (define-public perl-class-load-xs
Class::Load")
(license artistic2.0)))
(define-public perl-class-method-modifiers
(package
(name "perl-class-method-modifiers")
(version "2.11")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
"Class-Method-Modifiers-" version ".tar.gz"))
(sha256
(base32
"14nk2gin9cjwpysakli7f0gs4q1w220sn73xzv35rhlspngrggyy"))))
(build-system perl-build-system)
(native-inputs
`(("perl-test-fatal" ,perl-test-fatal)
("perl-test-requires" ,perl-test-requires)))
(home-page "http://search.cpan.org/dist/Class-Method-Modifiers")
(synopsis "Moose-like method modifiers")
(description "Class::Method::Modifiers provides three modifiers: before,
around, and after. before and after are run just before and after the method
they modify, but can not really affect that original method. around is run in
place of the original method, with a hook to easily call that original
method.")
(license (package-license perl))))
(define-public perl-class-tiny
(package
(name "perl-class-tiny")