mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add HTTP-Tiny.
* gnu/packages/web.scm (perl-http-tiny): New variable.
This commit is contained in:
parent
2b63ebc1fe
commit
c3c03bebd1
1 changed files with 25 additions and 0 deletions
|
@ -759,6 +759,31 @@ (define-public perl-http-negotiate
|
|||
fields in the request.")
|
||||
(home-page "http://search.cpan.org/~gaas/HTTP-Negotiate/")))
|
||||
|
||||
(define-public perl-http-tiny
|
||||
(package
|
||||
(name "perl-http-tiny")
|
||||
(version "0.053")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
|
||||
"HTTP-Tiny-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1bwy31xrcz5zfx1n3vc50vj1aqvzn5ccr7lgacl8wmi03a6w2af2"))))
|
||||
(build-system perl-build-system)
|
||||
(inputs
|
||||
`(("perl-http-cookiejar" ,perl-http-cookiejar)
|
||||
("perl-io-socket-ip" ,perl-io-socket-ip)
|
||||
("perl-io-socket-ssl" ,perl-io-socket-ssl)
|
||||
("perl-net-ssleay" ,perl-net-ssleay)))
|
||||
(home-page "http://search.cpan.org/dist/HTTP-Tiny")
|
||||
(synopsis "HTTP/1.1 client")
|
||||
(description "This is a very simple HTTP/1.1 client, designed for doing
|
||||
simple requests without the overhead of a large framework like LWP::UserAgent.
|
||||
It supports proxies and redirection. It also correctly resumes after EINTR.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-io-html
|
||||
(package
|
||||
(name "perl-io-html")
|
||||
|
|
Loading…
Reference in a new issue