diff options
| author | Andreas Enge <andreas@enge.fr> | 2013-12-07 22:36:02 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2013-12-07 22:36:02 +0100 |
| commit | fea5ebb106e72b003dc66dfd77779dc09dd80e67 (patch) | |
| tree | 357d3ad22d9ea8acdc3f91963d4323430208c8e3 /gnu | |
| parent | ae2aa18dba62afbe911fb0f6b7ffdd52fa1b5d26 (diff) | |
gnu: Add perl-uri.
* gnu/packages/web.scm (perl-uri): New variable.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/web.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index e18d49e99ef..0bfa7847175 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm | |||
| @@ -129,3 +129,24 @@ are invoked.") | |||
| 129 | "The HTTP::Date module provides functions that deal with date formats | 129 | "The HTTP::Date module provides functions that deal with date formats |
| 130 | used by the HTTP protocol (and then some more).") | 130 | used by the HTTP protocol (and then some more).") |
| 131 | (home-page "http://search.cpan.org/~gaas/HTTP-Date/"))) | 131 | (home-page "http://search.cpan.org/~gaas/HTTP-Date/"))) |
| 132 | |||
| 133 | (define-public perl-uri | ||
| 134 | (package | ||
| 135 | (name "perl-uri") | ||
| 136 | (version "1.60") | ||
| 137 | (source (origin | ||
| 138 | (method url-fetch) | ||
| 139 | (uri (string-append | ||
| 140 | "mirror://cpan/authors/id/G/GA/GAAS/URI-" | ||
| 141 | version ".tar.gz")) | ||
| 142 | (sha256 | ||
| 143 | (base32 | ||
| 144 | "0xr31mf7lfrwhyvlx4pzp6p7alls5gi4bj8pk5g89f5cckfd74hz")))) | ||
| 145 | (build-system perl-build-system) | ||
| 146 | (license (package-license perl)) | ||
| 147 | (synopsis "Perl Uniform Resource Identifiers (absolute and relative)") | ||
| 148 | (description | ||
| 149 | "The URI module implements the URI class. Objects of this class | ||
| 150 | represent \"Uniform Resource Identifier references\" as specified in RFC 2396 | ||
| 151 | (and updated by RFC 2732).") | ||
| 152 | (home-page "http://search.cpan.org/~gaas/URI/"))) | ||
