guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

53/72: gnu: Add Class-Data-Inheritable.


From: Eric Bavier
Subject: 53/72: gnu: Add Class-Data-Inheritable.
Date: Fri, 06 Mar 2015 14:13:09 +0000

bavier pushed a commit to branch master
in repository guix.

commit bc4899e3d9eb4b975705029f997d1a73d84f845e
Author: Eric Bavier <address@hidden>
Date:   Thu Mar 5 16:43:19 2015 -0600

    gnu: Add Class-Data-Inheritable.
    
    * gnu/packages/perl.scm (perl-class-data-inheritable): New variable.
---
 gnu/packages/perl.scm |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 1d98692..1f1ce34 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -195,6 +195,27 @@ 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-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
   (package
     (name "perl-class-load")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]