diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-10-21 21:54:53 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-10-21 21:54:53 -0400 |
commit | 268fdfe6efbce76f316d96cc6efc9721766f9c22 (patch) | |
tree | 8fea837af3069b5031010e5b4701870e07dc02d2 | |
parent | 84b6e91a4e48dc1649ae9ef8b4eee39a6864555f (diff) |
guix: Add source field.
-rw-r--r-- | guix.scm | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -38,7 +38,14 @@ (package (name "guile-syntax-highlight") (version "0.1") - (source #f) + (source (origin + (method git-fetch) + (uri (git-reference + (url "git://dthompson.us/guile-syntax-highlight.git") + (commit "84b6e91"))) + (sha256 + (base32 + "1nv2b5fxm06xb2xr5i81sc27sjlmxzpva1fxv471pbvyz0nxgcfz")))) (build-system gnu-build-system) (arguments '(#:phases |