From 6334b88896378c02b10b042b8e1afd9fdadfea14 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 31 Aug 2022 19:17:37 -0400 Subject: guix: Update to new style input specification. --- guix.scm | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'guix.scm') diff --git a/guix.scm b/guix.scm index e458b86..7f37574 100644 --- a/guix.scm +++ b/guix.scm @@ -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 -- cgit v1.2.3