diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2022-08-31 19:17:37 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2022-08-31 19:17:37 -0400 |
commit | 6334b88896378c02b10b042b8e1afd9fdadfea14 (patch) | |
tree | fa7eb49c67963888c548e9d234a926eb8eae959a | |
parent | 897fa5156ff41588e0d281eb00e4e94de63ccd8a (diff) |
guix: Update to new style input specification.
-rw-r--r-- | guix.scm | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -23,14 +23,13 @@ ;; ;; To use as the basis for a development environment, run: ;; -;; guix environment -l guix.scm +;; guix shell ;; ;;; Code: (use-modules (guix packages) (guix licenses) (guix git) - (guix git-download) (guix build-system gnu) (gnu packages) (gnu packages autotools) @@ -47,12 +46,8 @@ (modify-phases %standard-phases (add-after 'unpack 'bootstrap (lambda _ (zero? (system* "sh" "bootstrap"))))))) - (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("pkg-config" ,pkg-config))) - (inputs - `(("guile" ,guile-3.0))) + (native-inputs (list autoconf automake pkg-config)) + (inputs (list guile-3.0)) (synopsis "General-purpose syntax highlighter for GNU Guile") (description "Guile-syntax-highlight is a general-purpose syntax highlighting library for GNU Guile. It can parse code written in |