summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2016-02-16 14:59:43 -0500
committerDavid Thompson <dthompson2@worcester.edu>2016-02-16 14:59:43 -0500
commit1b969b7db38b0d5d14108848ef159d996772a764 (patch)
treefebc50a91f91c6cb1658e7b9cc16c71810c71167
parentdeaad79d55ce98b6b4c0f36b74c095199d7df9f9 (diff)
Update Guix development snapshot.
-rw-r--r--guix.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/guix.scm b/guix.scm
index 23dcbd2..22b03fd 100644
--- a/guix.scm
+++ b/guix.scm
@@ -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")