diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:18:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:48:25 +0100 |
commit | 8394619baceb118df92e355377fd543bb1aa501a (patch) | |
tree | 504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/perl-web.scm | |
parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
download | guix-8394619baceb118df92e355377fd543bb1aa501a.tar.gz |
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
Diffstat (limited to 'gnu/packages/perl-web.scm')
-rw-r--r-- | gnu/packages/perl-web.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/perl-web.scm b/gnu/packages/perl-web.scm index 498d5bcc10..c3a3e17188 100644 --- a/gnu/packages/perl-web.scm +++ b/gnu/packages/perl-web.scm @@ -67,10 +67,9 @@ endeavor to implement this idea using modern technologies.") "0n56xxlw7c39pfar0dxckr9mbmp6yrzk53ic0cb24raiykm9v6f4")))) (build-system perl-build-system) (native-inputs - `(("perl-module-build" ,perl-module-build))) + (list perl-module-build)) (propagated-inputs - `(("perl-uri" ,perl-uri) - ("perl-uri-nested" ,perl-uri-nested))) + (list perl-uri perl-uri-nested)) (home-page "https://metacpan.org/release/URI-db") (synopsis "Handle database URIs") (description @@ -92,7 +91,7 @@ class to handle these.") "0gj1aj18k43kmzc3y1zhj5giinf8rksacf757r475xfna0fqxjdj")))) (build-system perl-build-system) (native-inputs - `(("perl-test-needs" ,perl-test-needs))) + (list perl-test-needs)) (home-page "https://github.com/libwww-perl/URI") (synopsis "Percent-encode and percent-decode unsafe characters") (description "This module provides functions to percent-encode and @@ -117,9 +116,9 @@ which predates the formalization of the terms by the RFC by several years.") "1bzg6f11m8wfnmycflvp858rs99xknsx8hkip0xcdfjzlqwi75z1")))) (build-system perl-build-system) (native-inputs - `(("perl-module-build" ,perl-module-build))) + (list perl-module-build)) (propagated-inputs - `(("perl-uri" ,perl-uri))) + (list perl-uri)) (home-page "https://metacpan.org/release/URI-Nested") (synopsis "Nested URIs") (description |