[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] Add perl-uri.
From: |
Ricardo Wurmus |
Subject: |
[PATCH] Add perl-uri. |
Date: |
Fri, 20 Mar 2015 12:37:19 +0100 |
>From b50b37a9abcf049b310b613eed29a121b7b8b3b9 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <address@hidden>
Date: Fri, 20 Mar 2015 12:36:18 +0100
Subject: [PATCH] gnu: Add perl-uri.
* gnu/packages/perl.scm (perl-uri): New variable.
---
gnu/packages/perl.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index e31dd7d..dff221e 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -3834,6 +3834,28 @@ that are designed to minimize common mistakes with eval
blocks, and nothing
else.")
(license x11)))
+(define-public perl-uri
+ (package
+ (name "perl-uri")
+ (version "1.67")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://cpan.metacpan.org/authors/id/E/ET/ETHER/URI-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0ki7i830gs0cwwwjsyv3s6yy1l76ym8pfqp0lp7vw0j9bwyx923h"))))
+ (build-system perl-build-system)
+ (home-page "http://search.cpan.org/dist/URI")
+ (synopsis "Uniform Resource Identifiers (absolute and relative)")
+ (description
+ "The module implements the URI class. Objects of this class represent
+Uniform Resource Identifier references as specified in RFC 2396 and updated by
+RFC 2732.")
+ (license (package-license perl))))
+
(define-public perl-variable-magic
(package
(name "perl-variable-magic")
--
2.1.0
- [PATCH] Add perl-uri.,
Ricardo Wurmus <=