diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-08-31 19:04:42 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-08-31 19:04:42 -0400 |
commit | 2465ad1acd73ccba61030bfb61a7bff52dbf2d3f (patch) | |
tree | e8ecb09032af2f80763b5900a05c431d3fa9d8fa | |
parent | 63afd408c890aec7d62c754ae1399c901ff2a794 (diff) |
guix: Use new style input specification.
-rw-r--r-- | guix.scm | 13 |
1 files changed, 3 insertions, 10 deletions
@@ -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 |