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/skribilo.scm | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'gnu/packages/skribilo.scm') diff --git a/gnu/packages/skribilo.scm b/gnu/packages/skribilo.scm index 4d3d420973..1b000e0688 100644 --- a/gnu/packages/skribilo.scm +++ b/gnu/packages/skribilo.scm @@ -72,18 +72,17 @@ (define-public skribilo ;; no longer the case in Guile >= 3.0.6. This is fixed upstream. #:tests? #f)) - (native-inputs `(("pkg-config" ,pkg-config))) + (native-inputs (list pkg-config)) - (inputs `(("guile" ,guile-3.0) - ("imagemagick" ,imagemagick) - ("ghostscript" ,ghostscript) ; for 'convert' - ("ploticus" ,ploticus) - ("lout" ,lout))) + (inputs (list guile-3.0 + imagemagick + ghostscript ; for 'convert' + ploticus + lout)) ;; The 'skribilo' command needs them, and for people using Skribilo as a ;; library, these inputs are needed as well. - (propagated-inputs `(("guile-reader" ,guile-reader) - ("guile-lib" ,guile-lib))) + (propagated-inputs (list guile-reader guile-lib)) (home-page "https://www.nongnu.org/skribilo/") (synopsis "Document production tool written in Guile Scheme") -- cgit v1.2.3