gnu: perl-encode-detect: Move to alphabetical position.
* gnu/packages/perl.scm (perl-encode-detect): Move variable definition.
This commit is contained in:
parent
7a146c2528
commit
49a3fcc13c
|
@ -2322,6 +2322,27 @@ SHA-1 message digest algorithm for use by Perl programs.")
|
||||||
modules separately and deal with them after the module is done installing.")
|
modules separately and deal with them after the module is done installing.")
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(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)
|
||||||
|
(native-inputs
|
||||||
|
`(("perl-module-build" ,perl-module-build)))
|
||||||
|
(home-page "http://search.cpan.org/dist/Encode-Detect")
|
||||||
|
(synopsis "Detect the encoding of data")
|
||||||
|
(description "This package provides a class @code{Encode::Detect} to detect
|
||||||
|
the encoding of data.")
|
||||||
|
(license mpl1.1)))
|
||||||
|
|
||||||
(define-public perl-env-path
|
(define-public perl-env-path
|
||||||
(package
|
(package
|
||||||
(name "perl-env-path")
|
(name "perl-env-path")
|
||||||
|
@ -7484,27 +7505,3 @@ interface to File::Find::Object.")
|
||||||
(description "Test::TrailingSpace tests for trailing spaces
|
(description "Test::TrailingSpace tests for trailing spaces
|
||||||
in Perl source files.")
|
in Perl source files.")
|
||||||
(license x11)))
|
(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 New Issue