From 2465ad1acd73ccba61030bfb61a7bff52dbf2d3f Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 31 Aug 2022 19:04:42 -0400 Subject: guix: Use new style input specification. --- guix.scm | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/guix.scm b/guix.scm index 15f9698..2aec180 100644 --- a/guix.scm +++ b/guix.scm @@ -56,16 +56,9 @@ (modify-phases %standard-phases (add-after 'unpack 'bootstrap (lambda _ (zero? (system* "sh" "bootstrap"))))))) - (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("pkg-config" ,pkg-config) - ("texinfo" ,texinfo))) - (inputs - `(("guile" ,guile-3.0))) - (propagated-inputs - `(("guile-commonmark" ,guile-commonmark) - ("guile-reader" ,guile-reader))) + (native-inputs (list autoconf automake pkg-config texinfo)) + (inputs (list guile-3.0)) + (propagated-inputs (list guile-commonmark guile-reader)) (synopsis "Functional static site generator") (description "Haunt is a static site generator written in Guile Scheme. Haunt features a functional build system and an extensible -- cgit v1.2.3