diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-08-08 10:06:39 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-08-14 07:29:35 -0400 |
commit | 27f5e13e0a3a3b0df67698712ab592ad7c14f593 (patch) | |
tree | 653c98f044d480ea7e99e17e57c2215b04700b7d | |
parent | 8ff275687d76cfafe24c59349dfeb5f2bf9e236e (diff) | |
download | guix-27f5e13e0a3a3b0df67698712ab592ad7c14f593.tar guix-27f5e13e0a3a3b0df67698712ab592ad7c14f593.tar.gz |
gnu: Add haunt.
* gnu/packages/guile.scm (haunt): New variable.
-rw-r--r-- | gnu/packages/guile.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index d7b196a948..2aa871ebe4 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -535,4 +535,25 @@ See http://minikanren.org/ for more on miniKanren generally.") Guile's foreign function interface.") (license gpl3+))) +(define-public haunt + (package + (name "haunt") + (version "0.1") + (source (origin + (method url-fetch) + (uri (string-append "http://files.dthompson.us/haunt/haunt-" + version ".tar.gz")) + (sha256 + (base32 + "15q1qwjnay7k90ppqrzqsmikvwyj61mjvf1zahyd9gm4vi2fgb3x")))) + (build-system gnu-build-system) + (inputs + `(("guile" ,guile-2.0))) + (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 +interface for reading articles in any format.") + (home-page "http://haunt.dthompson.us") + (license gpl3+))) + ;;; guile.scm ends here |