mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add Catalyst-Plugin-StackTrace.
* gnu/packages/web.scm (perl-catalyst-plugin-stacktrace): New variable.
This commit is contained in:
parent
47533b6f69
commit
996f41102f
1 changed files with 25 additions and 0 deletions
|
@ -925,6 +925,31 @@ (define-public perl-catalyst-plugin-session-store-fastmmap
|
|||
memory interprocess cache. It is based on Cache::FastMmap.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-catalyst-plugin-stacktrace
|
||||
(package
|
||||
(name "perl-catalyst-plugin-stacktrace")
|
||||
(version "0.12")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
|
||||
"Catalyst-Plugin-StackTrace-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1b2ksz74cpigxqzf63rddar3vfmnbpwpdcbs11v0ml89pb8ar79j"))))
|
||||
(build-system perl-build-system)
|
||||
(propagated-inputs
|
||||
`(("perl-catalyst-runtime" ,perl-catalyst-runtime)
|
||||
("perl-devel-stacktrace" ,perl-devel-stacktrace)
|
||||
("perl-mro-compat" ,perl-mro-compat)))
|
||||
(home-page "http://search.cpan.org/dist/Catalyst-Plugin-StackTrace")
|
||||
(synopsis "Stack trace on the Catalyst debug screen")
|
||||
(description "This plugin enhances the standard Catalyst debug screen by
|
||||
including a stack trace of your appliation up to the point where the error
|
||||
occurred. Each stack frame is displayed along with the package name, line
|
||||
number, file name, and code context surrounding the line number.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-catalyst-plugin-static-simple
|
||||
(package
|
||||
(name "perl-catalyst-plugin-static-simple")
|
||||
|
|
Loading…
Reference in a new issue