mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add perl-encode-detect.
* gnu/packages/perl.scm (perl-encode-detect): Add variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
7ad2bd50f8
commit
22414177cd
1 changed files with 24 additions and 0 deletions
|
@ -7023,3 +7023,27 @@ (define-public perl-test-trailingspace
|
|||
(description "Test::TrailingSpace tests for trailing spaces
|
||||
in Perl source files.")
|
||||
(license x11)))
|
||||
|
||||
(define-public perl-encode-detect
|
||||
(package
|
||||
(name "perl-encode-detect")
|
||||
(version "1.01")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://cpan/authors/id/J/JG/JGMYERS/Encode-Detect-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
|
||||
(build-system perl-build-system)
|
||||
(inputs
|
||||
`(("perl-module-build" ,perl-module-build)))
|
||||
(home-page
|
||||
"http://search.cpan.org/dist/Encode-Detect")
|
||||
(synopsis
|
||||
"Perl Encode::Encoding subclass that detects the encoding of data")
|
||||
(description "Encode::Detect detects the encoding of data for Perl.")
|
||||
(license mpl1.1)))
|
||||
|
|
Loading…
Reference in a new issue