mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add Package-Anon.
* gnu/packages/perl.scm (perl-package-anon): New variable.
This commit is contained in:
parent
f59d9fc282
commit
76a6f27952
1 changed files with 23 additions and 0 deletions
|
@ -409,6 +409,29 @@ (define-public perl-module-runtime
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue