bavier pushed a commit to branch master
in repository guix.
commit f9f64440f72a161ddb960eede101cd5a606922a2
Author: Eric Bavier <[email protected]>
Date: Thu Mar 5 15:46:07 2015 -0600
gnu: Add Package-Stash-XS.
* gnu/packages/perl.scm (perl-package-stash-xs): New variable.
---
gnu/packages/perl.scm | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 2431622..76885d6 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -460,6 +460,31 @@ independent of the main namespace and only available
through an object
instance, not by name.")
(license (package-license perl))))
+(define-public perl-package-stash-xs
+ (package
+ (name "perl-package-stash-xs")
+ (version "0.28")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
+ "Package-Stash-XS-" version ".tar.gz"))
+ (sha256
+ (base32
+ "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
+ (build-system perl-build-system)
+ (native-inputs
+ `(("perl-test-fatal" ,perl-test-fatal)
+ ("perl-test-requires" ,perl-test-requires)
+ ("perl-package-anon" ,perl-package-anon)))
+ (home-page "http://search.cpan.org/dist/Package-Stash-XS")
+ (synopsis "Faster implementation of the Package::Stash API")
+ (description "This is a backend for Package::Stash, which provides the
+functionality in a way that's less buggy and much faster. It will be used by
+default if it's installed, and should be preferred in all environments with a
+compiler.")
+ (license (package-license perl))))
+
(define-public perl-params-util
(package
(name "perl-params-util")