diff options
author | David Thompson <dthompson2@worcester.edu> | 2016-02-16 14:59:43 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2016-02-16 14:59:43 -0500 |
commit | 1b969b7db38b0d5d14108848ef159d996772a764 (patch) | |
tree | febc50a91f91c6cb1658e7b9cc16c71810c71167 | |
parent | deaad79d55ce98b6b4c0f36b74c095199d7df9f9 (diff) |
Update Guix development snapshot.
-rw-r--r-- | guix.scm | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -33,7 +33,8 @@ (guix build-system gnu) (gnu packages) (gnu packages autotools) - (gnu packages guile)) + (gnu packages guile) + (gnu packages pkg-config)) (package (name "guile-syntax-highlight") @@ -42,10 +43,10 @@ (method git-fetch) (uri (git-reference (url "git://dthompson.us/guile-syntax-highlight.git") - (commit "84b6e91"))) + (commit "deaad79"))) (sha256 (base32 - "1nv2b5fxm06xb2xr5i81sc27sjlmxzpva1fxv471pbvyz0nxgcfz")))) + "00ppmg796mcahq8nnq081srf6iwx36biq7arvsi5azm7f6lmwkdc")))) (build-system gnu-build-system) (arguments '(#:phases @@ -54,7 +55,8 @@ (lambda _ (zero? (system* "sh" "bootstrap"))))))) (native-inputs `(("autoconf" ,autoconf) - ("automake" ,automake))) + ("automake" ,automake) + ("pkg-config" ,pkg-config))) (inputs `(("guile" ,guile-2.0))) (synopsis "General-purpose syntax highlighter for GNU Guile") |