From 8394619baceb118df92e355377fd543bb1aa501a Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 13 Dec 2021 17:18:24 +0100 Subject: gnu: Simplify package inputs. This commit was obtained by running: ./pre-inst-env guix style without any additional argument. --- gnu/packages/gsasl.scm | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) (limited to 'gnu/packages/gsasl.scm') diff --git a/gnu/packages/gsasl.scm b/gnu/packages/gsasl.scm index d2aba5450d..787bbae2bb 100644 --- a/gnu/packages/gsasl.scm +++ b/gnu/packages/gsasl.scm @@ -62,9 +62,7 @@ (sha256 (base32 "1syyvh3k659xf1hdv9pilnnhbbhs6vfapayp4xgdcc8mfgf9v4gz")))) (build-system gnu-build-system) - (inputs `(("nettle" ,nettle) - ("shishi" ,shishi) - ("zlib" ,zlib))) + (inputs (list nettle shishi zlib)) (synopsis "Generic Security Service library") (description "The GNU Generic Security Service provides a free implementation of the @@ -92,18 +90,14 @@ the underlying security implementation.") `(#:configure-flags '("--with-gssapi-impl=mit" "--disable-static"))) (inputs - `(("libgcrypt" ,libgcrypt) - ("libidn" ,libidn) - ("libntlm" ,libntlm) - ("mit-krb5" ,mit-krb5) - ("zlib" ,zlib))) + (list libgcrypt libidn libntlm mit-krb5 zlib)) (native-inputs - `(;; Needed for cross compiling. - ("libgcrypt" ,libgcrypt))) + (list ;; Needed for cross compiling. + libgcrypt)) (propagated-inputs ;; Propagate GnuTLS because libgnutls.la reads `-lnettle', and Nettle is a ;; propagated input of GnuTLS. - `(("gnutls" ,gnutls))) + (list gnutls)) (synopsis "Simple Authentication and Security Layer library") (description "GNU SASL is an implementation of the Simple Authentication and -- cgit 1.4.1