diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-03-05 15:36:28 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-03-06 08:13:26 -0600 |
commit | 76a6f27952633e9f102826896f477f8208718f09 (patch) | |
tree | 9efaf26cb9d378f3beb5dd4001001b9d81085074 | |
parent | f59d9fc282251297db7c4bd1536a3f00f807ebe9 (diff) | |
download | patches-76a6f27952633e9f102826896f477f8208718f09.tar patches-76a6f27952633e9f102826896f477f8208718f09.tar.gz |
gnu: Add Package-Anon.
* gnu/packages/perl.scm (perl-package-anon): New variable.
-rw-r--r-- | gnu/packages/perl.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 8ef4a3ab1b..dadc66acec 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -409,6 +409,29 @@ Perlish API and none of the bloat and rarely used features of IPC::Run.") handling of Perl modules, which are normally handled at compile time.") (license (package-license perl)))) +(define-public perl-package-anon + (package + (name "perl-package-anon") + (version "0.05") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/" + "Package-Anon-" version ".tar.gz")) + (sha256 + (base32 + "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m")))) + (build-system perl-build-system) + (propagated-inputs + `(("perl-sub-exporter" ,perl-sub-exporter) + ("perl-params-util" ,perl-params-util))) + (home-page "http://search.cpan.org/dist/Package-Anon") + (synopsis "Anonymous packages") + (description "This module allows for anonymous packages that are +independent of the main namespace and only available through an object +instance, not by name.") + (license (package-license perl)))) + (define-public perl-params-util (package (name "perl-params-util") |