me
/
guix
Archived
1
0
Fork 0

gnu: Add perl-file-listing.

* gnu/packages/web.scm (perl-file-listing): New variable.
master
Andreas Enge 2013-12-09 22:16:30 +01:00
parent 15974e6358
commit 56aa03b0c2
1 changed files with 22 additions and 0 deletions

View File

@ -342,3 +342,25 @@ Net::HTTP class represents a connection to an HTTP server. The HTTP protocol
is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and
HTTP/1.1.")
(home-page "http://search.cpan.org/~gaas/Net-HTTP/")))
(define-public perl-file-listing
(package
(name "perl-file-listing")
(version "6.04")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/G/GA/GAAS/File-Listing-"
version ".tar.gz"))
(sha256
(base32
"1xcwjlnxaiwwpn41a5yi6nz95ywh3szq5chdxiwj36kqsvy5000y"))))
(build-system perl-build-system)
(inputs
`(("perl-http-date" ,perl-http-date)))
(license (package-license perl))
(synopsis "Perl directory listing parser")
(description
"The File::Listing module exports a single function called parse_dir(),
which can be used to parse directory listings.")
(home-page "http://search.cpan.org/~gaas/File-Listing/")))