diff options
author | Andreas Enge <andreas@enge.fr> | 2013-12-07 22:52:29 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-12-07 22:52:29 +0100 |
commit | b3d18aff2fe0697acbdc5afd14358f435969106d (patch) | |
tree | 350914d721b8f9394f2deb1aac4ae740998e6f4a | |
parent | 91318a9e1974d12c55be39f7ea8d4388950e0997 (diff) | |
download | patches-b3d18aff2fe0697acbdc5afd14358f435969106d.tar patches-b3d18aff2fe0697acbdc5afd14358f435969106d.tar.gz |
gnu: Add perl-http-cookies.
* gnu/packages/web.scm (perl-http-cookies): New variable.
-rw-r--r-- | gnu/packages/web.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 3e1f76235d..f1db4ebc04 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -217,3 +217,28 @@ algorithm specified in section 8.2.2.1 of the draft standard.") (description "An HTTP::Message object contains some headers and a content body.") (home-page "http://search.cpan.org/~gaas/HTTP-Message/"))) + +(define-public perl-http-cookies + (package + (name "perl-http-cookies") + (version "6.01") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/G/GA/GAAS/HTTP-Cookies-" + version ".tar.gz")) + (sha256 + (base32 + "087bqmg22dg3vj7gssh3pcsh9y1scimkbl5h1kc8jqyfhgisvlzm")))) + (build-system perl-build-system) + (inputs + `(("perl-http-date" ,perl-http-date) + ("perl-http-message" ,perl-http-message) + ("perl-uri" ,perl-uri))) + (license (package-license perl)) + (synopsis "Perl HTTP cookie jars") + (description + "The HTTP::Cookies class is for objects that represent a cookie jar, +that is, a database of all the HTTP cookies that a given LWP::UserAgent +object knows about.") + (home-page "http://search.cpan.org/~gaas/HTTP-Cookies/"))) |