mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add PadWalker.
* gnu/packages/perl.scm (perl-padwalker): New variable.
This commit is contained in:
parent
42350bbe77
commit
54af5f5518
1 changed files with 21 additions and 0 deletions
|
@ -907,6 +907,27 @@ (define-public perl-package-stash-xs
|
|||
compiler.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-padwalker
|
||||
(package
|
||||
(name "perl-padwalker")
|
||||
(version "2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
|
||||
"PadWalker-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
|
||||
(build-system perl-build-system)
|
||||
(home-page "http://search.cpan.org/dist/PadWalker")
|
||||
(synopsis "Play with other peoples' lexical variables")
|
||||
(description "PadWalker is a module which allows you to inspect (and even
|
||||
change) lexical variables in any subroutine which called you. It will only
|
||||
show those variables which are in scope at the point of the call. PadWalker
|
||||
is particularly useful for debugging.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-params-util
|
||||
(package
|
||||
(name "perl-params-util")
|
||||
|
|
Loading…
Reference in a new issue