[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/17: gnu: Add perl-uri-nested.
From: |
guix-commits |
Subject: |
08/17: gnu: Add perl-uri-nested. |
Date: |
Sun, 14 Apr 2019 05:47:56 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit ce6bea4439cd886de5709c6b1a5cebb11c4724a8
Author: Christopher Baines <address@hidden>
Date: Sun Mar 24 18:10:13 2019 +0000
gnu: Add perl-uri-nested.
* gnu/packages/perl-web.scm (perl-uri-nested): New variable.
---
gnu/packages/perl-web.scm | 30 +++++++++++++++++++++++++++++-
1 file changed, 29 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/perl-web.scm b/gnu/packages/perl-web.scm
index 6ced2d1..70294f9 100644
--- a/gnu/packages/perl-web.scm
+++ b/gnu/packages/perl-web.scm
@@ -21,9 +21,11 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages)
#:use-module (guix packages)
+ #:use-module (gnu packages perl)
#:use-module (gnu packages perl-check)
#:use-module (guix download)
- #:use-module (guix build-system perl))
+ #:use-module (guix build-system perl)
+ #:use-module (gnu packages web))
(define-public perl-mojolicious
(package
@@ -70,3 +72,29 @@ percent-decode URI strings as defined by RFC 3986.
Percent-encoding URI's is
informally called URI escaping. This is the terminology used by this module,
which predates the formalization of the terms by the RFC by several years.")
(license license:perl-license)))
+
+(define-public perl-uri-nested
+ (package
+ (name "perl-uri-nested")
+ (version "0.10")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://cpan/authors/id/D/DW/DWHEELER/URI-Nested-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1bzg6f11m8wfnmycflvp858rs99xknsx8hkip0xcdfjzlqwi75z1"))))
+ (build-system perl-build-system)
+ (native-inputs
+ `(("perl-module-build" ,perl-module-build)))
+ (propagated-inputs
+ `(("perl-uri" ,perl-uri)))
+ (home-page "https://metacpan.org/release/URI-Nested")
+ (synopsis "Nested URIs")
+ (description
+ "@code{URI::Nested} provides support for nested URIs, where the scheme is
+a prefix, and the remainder of the URI is another URI.")
+ (license license:perl-license)))
- branch master updated (1b7436a -> cabe8f1), guix-commits, 2019/04/14
- 16/17: gnu: Add perl-string-shellquote., guix-commits, 2019/04/14
- 17/17: gnu: Add sqitch., guix-commits, 2019/04/14
- 14/17: gnu: Add perl-test-version., guix-commits, 2019/04/14
- 15/17: gnu: Add perl-mysql-config., guix-commits, 2019/04/14
- 07/17: gnu: Add perl-template-tiny., guix-commits, 2019/04/14
- 10/17: gnu: Add perl-test-checkdeps., guix-commits, 2019/04/14
- 09/17: gnu: Add perl-uri-db., guix-commits, 2019/04/14
- 12/17: gnu: Add perl-test-file., guix-commits, 2019/04/14
- 11/17: gnu: Add perl-test-dir., guix-commits, 2019/04/14
- 08/17: gnu: Add perl-uri-nested.,
guix-commits <=
- 13/17: gnu: Add perl-test-file-contents., guix-commits, 2019/04/14
- 06/17: gnu: Add perl-string-formatter., guix-commits, 2019/04/14
- 03/17: gnu: Add perl-cpan-distnameinfo., guix-commits, 2019/04/14
- 05/17: gnu: Add perl-io-pager., guix-commits, 2019/04/14
- 02/17: gnu: Add perl-config-gitlike., guix-commits, 2019/04/14
- 04/17: gnu: Add perl-tie-handle-offset., guix-commits, 2019/04/14
- 01/17: gnu: Add perl-http-tinyish., guix-commits, 2019/04/14