guix-commits
[Top][All Lists]
Advanced

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

18/72: gnu: Add Package-Stash.


From: Eric Bavier
Subject: 18/72: gnu: Add Package-Stash.
Date: Fri, 06 Mar 2015 14:12:55 +0000

bavier pushed a commit to branch master
in repository guix.

commit d9e6af909043d331ba3200d878b7754f27fc5947
Author: Eric Bavier <address@hidden>
Date:   Thu Mar 5 15:47:50 2015 -0600

    gnu: Add Package-Stash.
    
    * gnu/packages/perl.scm (perl-package-stash): New variable.
---
 gnu/packages/perl.scm |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 76885d6..de3b77e 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -460,6 +460,35 @@ independent of the main namespace and only available 
through an object
 instance, not by name.")
     (license (package-license perl))))
 
+(define-public perl-package-stash
+  (package
+    (name "perl-package-stash")
+    (version "0.37")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
+                           "Package-Stash-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
+       ("perl-test-fatal" ,perl-test-fatal)
+       ("perl-test-requires" ,perl-test-requires)
+       ("perl-package-anon" ,perl-package-anon)))
+    (propagated-inputs
+     `(("perl-module-implementation" ,perl-module-implementation)
+       ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
+       ("perl-package-stash-xs" ,perl-package-stash-xs)))
+    (home-page "http://search.cpan.org/dist/Package-Stash";)
+    (synopsis "Routines for manipulating stashes")
+    (description "Manipulating stashes (Perl's symbol tables) is occasionally
+necessary, but incredibly messy, and easy to get wrong.  This module hides all
+of that behind a simple API.")
+    (license (package-license perl))))
+
 (define-public perl-package-stash-xs
   (package
     (name "perl-package-stash-xs")



reply via email to

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