mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-23 18:56:43 +01:00
gnu: Add perl-exporter.
* gnu/packages/perl.scm (perl-exporter): New variable.
This commit is contained in:
parent
8d27e6a7cf
commit
158a64a702
1 changed files with 26 additions and 0 deletions
|
@ -30,6 +30,7 @@
|
|||
;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
|
||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -4204,6 +4205,31 @@ (define-public perl-exception-class
|
|||
in your modules in a \"Java-esque\" manner.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-exporter
|
||||
(package
|
||||
(name "perl-exporter")
|
||||
(version "5.74")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
|
||||
"Exporter-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1f25k5iaygiizlrkbbl6wxd647pwfmynykxalq6r9bbkysg8inza"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs
|
||||
`(("perl-test-pod" ,perl-test-pod)))
|
||||
(propagated-inputs
|
||||
`(("perl-carp" ,perl-carp)))
|
||||
(home-page "https://metacpan.org/dist/Exporter")
|
||||
(synopsis "Default import method for modules")
|
||||
(description "Exporter implements an import method which allows a module to
|
||||
export functions and variables to its users' namespaces. Many modules use
|
||||
Exporter rather than implementing their own import method because Exporter
|
||||
provides a highly flexible interface, with an implementation optimised for the
|
||||
common case.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-exporter-lite
|
||||
(package
|
||||
(name "perl-exporter-lite")
|
||||
|
|
Loading…
Reference in a new issue