guix-commits
[Top][All Lists]
Advanced

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

54/72: gnu: Add Exception-Class.


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

bavier pushed a commit to branch master
in repository guix.

commit 3a8ee9d163651c02f48b324c20e63292b02c1cef
Author: Eric Bavier <address@hidden>
Date:   Thu Mar 5 16:44:58 2015 -0600

    gnu: Add Exception-Class.
    
    * gnu/packages/perl.scm (perl-exception-class): New variable.
---
 gnu/packages/perl.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 1f1ce34..dd9d483 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -581,6 +581,28 @@ environment, other than a fixed list of specified 
variables.  Compilation
 errors are rethrown automatically.")
     (license (package-license perl))))
 
+(define-public perl-exception-class
+  (package
+    (name "perl-exception-class")
+    (version "1.39")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
+                           "Exception-Class-" version ".tar.gz"))
+       (sha256
+        (base32
+         "10r06v6568s33p6h9f9ml0iabc07id86mjkf74gy7ld6d5m7b741"))))
+    (build-system perl-build-system)
+    (propagated-inputs
+     `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
+       ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
+    (home-page "http://search.cpan.org/dist/Exception-Class";)
+    (synopsis "Allows you to declare real exception classes in Perl")
+    (description "Exception::Class allows you to declare exception hierarchies
+in your modules in a \"Java-esque\" manner.")
+    (license (package-license perl))))
+
 (define-public perl-exporter-lite
   (package
     (name "perl-exporter-lite")



reply via email to

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