diff options
author | David Thompson <dthompson2@worcester.edu> | 2016-04-24 14:01:15 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2016-04-24 18:01:33 -0400 |
commit | 4960beaa23965877b578c1e54e735bba639e96ee (patch) | |
tree | 16def331f1783d8927304a950302e6382e8bf448 /gnu/packages/guile.scm | |
parent | 76e6e663f5e96357b2928570b94f8f1bc3a26bb0 (diff) | |
download | patches-4960beaa23965877b578c1e54e735bba639e96ee.tar patches-4960beaa23965877b578c1e54e735bba639e96ee.tar.gz |
gnu: haunt: Update to 0.2.
* gnu/packages/guile.scm (haunt): Update to 0.2.
[native-inputs]: Add pkg-config and texinfo.
[propagated-inputs]: Add guile-reader.
Diffstat (limited to 'gnu/packages/guile.scm')
-rw-r--r-- | gnu/packages/guile.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index f978a42c84..53ea3e53bb 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -712,14 +712,14 @@ Guile's foreign function interface.") (define-public haunt (package (name "haunt") - (version "0.1") + (version "0.2") (source (origin (method url-fetch) - (uri (string-append "http://files.dthompson.us/haunt/haunt-" + (uri (string-append "https://files.dthompson.us/haunt/haunt-" version ".tar.gz")) (sha256 (base32 - "15q1qwjnay7k90ppqrzqsmikvwyj61mjvf1zahyd9gm4vi2fgb3x")))) + "1id83n8fs7jxys1d8jy70vylg8gzcvlw1y7hb41y3qxv5zi4671m")))) (build-system gnu-build-system) (arguments `(#:modules ((ice-9 match) (ice-9 ftw) @@ -743,8 +743,13 @@ Guile's foreign function interface.") `("GUILE_LOAD_COMPILED_PATH" ":" prefix (,modules))) #t))))))))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("texinfo" ,texinfo))) (inputs `(("guile" ,guile-2.0))) + (propagated-inputs + `(("guile-reader" ,guile-reader))) (synopsis "Functional static site generator") (description "Haunt is a static site generator written in Guile Scheme. Haunt features a functional build system and an extensible |