mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add perl-eval-withlexicals.
* gnu/packages/perl.scm (perl-eval-withlexicals): New variable.
This commit is contained in:
parent
a8384752c3
commit
d38e410c6a
1 changed files with 36 additions and 0 deletions
|
@ -28,6 +28,7 @@
|
||||||
;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com>
|
;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com>
|
||||||
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
|
;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
|
||||||
|
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -4056,6 +4057,41 @@ environment, other than a fixed list of specified variables. Compilation
|
||||||
errors are rethrown automatically.")
|
errors are rethrown automatically.")
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(define-public perl-eval-withlexicals
|
||||||
|
(package
|
||||||
|
(name "perl-eval-withlexicals")
|
||||||
|
(version "1.003006")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://cpan/authors/id/H/HA/HAARG/Eval-WithLexicals-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0x09mq0q745cxkw3xgr0h7dil7p1pdq3l5299kj3mk2ijkk2gwb6"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'install 'wrap-tinyrepl
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let* ((out (assoc-ref outputs "out")))
|
||||||
|
(wrap-program (string-append out "/bin/tinyrepl")
|
||||||
|
`("PERL5LIB" ":" prefix
|
||||||
|
(,(getenv "PERL5LIB")
|
||||||
|
,(string-append out "/lib/perl5/site_perl"))))
|
||||||
|
#t))))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("perl-moo" ,perl-moo)
|
||||||
|
("perl-strictures" ,perl-strictures)))
|
||||||
|
(home-page "https://metacpan.org/release/Eval-WithLexicals")
|
||||||
|
(synopsis "Lexical scope evaluation library for Perl")
|
||||||
|
(description "The Eval::WithLexicals Perl library provides support for
|
||||||
|
lexical scope evaluation. This package also includes the @command{tinyrepl}
|
||||||
|
command, which can be used as a minimal Perl read-eval-print loop (REPL).")
|
||||||
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public perl-exception-class
|
(define-public perl-exception-class
|
||||||
(package
|
(package
|
||||||
(name "perl-exception-class")
|
(name "perl-exception-class")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue