mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add perl-inline.
* gnu/packages/perl.scm (perl-inline): New variable.
This commit is contained in:
parent
9b3deccd60
commit
229241b1a4
1 changed files with 24 additions and 0 deletions
|
@ -3975,6 +3975,30 @@ (define-public perl-indirect
|
|||
"Indirect warns about using the indirect method call syntax.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-inline
|
||||
(package
|
||||
(name "perl-inline")
|
||||
(version "0.80")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://cpan/authors/id/I/IN/INGY/Inline-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1xnf5hykcr54271x5jsnr61bcv1c7x39cy4kdcrkxm7bn62djavy"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs
|
||||
`(("perl-test-warn" ,perl-test-warn)))
|
||||
(home-page "http://search.cpan.org/dist/Inline/")
|
||||
(synopsis "Write Perl subroutines in other programming languages")
|
||||
(description "The @code{Inline} module allows you to put source code
|
||||
from other programming languages directly (inline) in a Perl script or
|
||||
module. The code is automatically compiled as needed, and then loaded
|
||||
for immediate access from Perl.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-io-captureoutput
|
||||
(package
|
||||
(name "perl-io-captureoutput")
|
||||
|
|
Loading…
Reference in a new issue