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/gnunet.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/gnunet.scm')
-rw-r--r-- | gnu/packages/gnunet.scm | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index c1ccf8d702..bc6b1435ec 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -113,7 +113,7 @@ ("libvorbis" ,libvorbis) ("zlib" ,zlib))) (native-inputs - `(("pkg-config" ,pkg-config))) + (list pkg-config)) (outputs '("out" "static")) ; 420 KiB .a files (arguments @@ -201,10 +201,7 @@ authentication and support for SSL3 and TLS.") ("libidn2" ,libidn2) ("zlib" ,zlib))) (native-inputs - `(("libtool" ,libtool) - ("perl" ,perl) - ("pkg-config" ,pkg-config) - ("python" ,python))) + (list libtool perl pkg-config python)) (arguments `(#:configure-flags ;; All of these produce errors during configure. @@ -290,11 +287,8 @@ supports HTTP, HTTPS and GnuTLS.") ("zbar" ,zbar) ("zlib" ,zlib))) (native-inputs - `(("curl" ,curl) - ("pkg-config" ,pkg-config) - ("python" ,python) - ("xxd" ,xxd) - ("which" ,(@ (gnu packages base) which)))) + (list curl pkg-config python xxd + (@ (gnu packages base) which))) (arguments '(#:parallel-tests? #f ; Parallel tests aren't supported. #:phases @@ -368,11 +362,8 @@ kinds of basic applications for the foundation of a GNU internet.") (base32 "0nqc18jh9j30y4l6yh6j35byfg6qalq7yr3frv9rk10qa041c2sv")))) (build-system gnu-build-system) - (native-inputs `(("pkg-config" ,pkg-config) - ("autoconf" ,autoconf) - ("automake" ,automake))) - (inputs `(("guile" ,guile-2.0) - ("gnunet" ,gnunet))) + (native-inputs (list pkg-config autoconf automake)) + (inputs (list guile-2.0 gnunet)) (synopsis "Guile bindings for GNUnet services") (description "This package provides Guile bindings to the client libraries of various @@ -411,8 +402,7 @@ services.") ("libunique" ,libunique) ("qrencode" ,qrencode))) (native-inputs - `(("pkg-config" ,pkg-config) - ("libglade" ,libglade))) + (list pkg-config libglade)) (synopsis "Graphical front-end tools for GNUnet") (properties '((ftp-server . "ftp.gnu.org") (ftp-directory . "/gnunet"))))) |