gnu: Add perl-uri-nested.

* gnu/packages/perl-web.scm (perl-uri-nested): New variable.
This commit is contained in:
Christopher Baines 2019-03-24 18:10:13 +00:00
parent 9273ebfeab
commit ce6bea4439
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 29 additions and 1 deletions

View File

@ -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)))