mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add Class-Data-Inheritable.
* gnu/packages/perl.scm (perl-class-data-inheritable): New variable.
This commit is contained in:
parent
c68b185842
commit
bc4899e3d9
1 changed files with 21 additions and 0 deletions
|
@ -195,6 +195,27 @@ (define-public perl-capture-tiny
|
||||||
is captured while being passed through to the original file handles.")
|
is captured while being passed through to the original file handles.")
|
||||||
(license asl2.0)))
|
(license asl2.0)))
|
||||||
|
|
||||||
|
(define-public perl-class-data-inheritable
|
||||||
|
(package
|
||||||
|
(name "perl-class-data-inheritable")
|
||||||
|
(version "0.08")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
|
||||||
|
"Class-Data-Inheritable-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(home-page "http://search.cpan.org/dist/Class-Data-Inheritable")
|
||||||
|
(synopsis "Inheritable, overridable class data")
|
||||||
|
(description "Class::Data::Inheritable is for creating accessor/mutators
|
||||||
|
to class data. That is, if you want to store something about your class as a
|
||||||
|
whole (instead of about a single object). This data is then inherited by your
|
||||||
|
subclasses and can be overriden.")
|
||||||
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public perl-class-load
|
(define-public perl-class-load
|
||||||
(package
|
(package
|
||||||
(name "perl-class-load")
|
(name "perl-class-load")
|
||||||
|
|
Loading…
Reference in a new issue