diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-03-05 15:46:07 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-03-06 08:13:27 -0600 |
commit | f9f64440f72a161ddb960eede101cd5a606922a2 (patch) | |
tree | 422e95efd1ad3be22ee2d5c3f0801b8f45f8e138 | |
parent | 3fa4c22abe5e07c1bbd109c48584fc74fabaa152 (diff) |
gnu: Add Package-Stash-XS.
* gnu/packages/perl.scm (perl-package-stash-xs): New variable.
-rw-r--r-- | 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 2431622ac0..76885d6a56 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") |