gnu: Add perl-uri-template.
* gnu/packages/web.scm (perl-uri-template): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
ddfd10c884
commit
105d4ee2df
|
@ -2964,6 +2964,30 @@ URI::Find::Schemeless. For a command-line interface, urifind is provided.")
|
|||
methods for WebSocket URIs as it does for HTTP URIs.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-uri-template
|
||||
(package
|
||||
(name "perl-uri-template")
|
||||
(version "0.22")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/B/BR/BRICAS/URI-Template-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"08kjjb4c0v9gqfrfnj1wkivylxl05finn11ra64dj136fhmnyrbg"))))
|
||||
(build-system perl-build-system)
|
||||
(inputs
|
||||
`(("perl-uri" ,perl-uri)))
|
||||
(native-inputs
|
||||
`(("perl-test-pod-coverage" ,perl-test-pod-coverage)
|
||||
("perl-test-pod" ,perl-test-pod)
|
||||
("perl-json" ,perl-json)))
|
||||
(home-page "http://search.cpan.org/dist/URI-Template")
|
||||
(synopsis "Object for handling URI templates")
|
||||
(description "This perl module provides a wrapper around URI templates as described in
|
||||
RFC 6570.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-www-curl
|
||||
(package
|
||||
(name "perl-www-curl")
|
||||
|
|
Loading…
Reference in New Issue