mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add Class-Accessor.
* gnu/packages/perl.scm (perl-class-accessor): New variable.
This commit is contained in:
parent
f902e4bcc2
commit
8819f57bc1
1 changed files with 23 additions and 0 deletions
|
@ -216,6 +216,29 @@ code or from an external program. Optionally, output can be teed so that it
|
|||
is captured while being passed through to the original file handles.")
|
||||
(license asl2.0)))
|
||||
|
||||
(define-public perl-class-accessor
|
||||
(package
|
||||
(name "perl-class-accessor")
|
||||
(version "0.34")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
|
||||
"Class-Accessor-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1z6fqg0yz8gay15r1iasslv8f1n1mzjkrhs47fvbj3rqz36y1cfd"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs
|
||||
`(("perl-sub-name" ,perl-sub-name)))
|
||||
(propagated-inputs
|
||||
`(("perl-base" ,perl-base)))
|
||||
(home-page "http://search.cpan.org/dist/Class-Accessor")
|
||||
(synopsis "Automated accessor generation")
|
||||
(description "This module automagically generates accessors/mutators for
|
||||
your class.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-class-c3-adopt-next
|
||||
(package
|
||||
(name "perl-class-c3-adopt-next")
|
||||
|
|
Loading…
Reference in a new issue