guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gnu: Add haunt.


From: David Thompson
Subject: [PATCH] gnu: Add haunt.
Date: Sat, 08 Aug 2015 10:08:15 -0400
User-agent: Notmuch/0.19 (http://notmuchmail.org) Emacs/24.5.1 (x86_64-unknown-linux-gnu)

This is a package for the first alpha release of my static site
generator written in Guile: Haunt.

>From 769c3fa2c8f1cf642ee20298a58c38c28d421086 Mon Sep 17 00:00:00 2001
From: David Thompson <address@hidden>
Date: Sat, 8 Aug 2015 10:06:39 -0400
Subject: [PATCH] gnu: Add haunt.

* gnu/packages/guile.scm (haunt): New variable.
---
 gnu/packages/guile.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index d7b196a..2aa871e 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
-- 
2.4.3

-- 
David Thompson
GPG Key: 0FF1D807

reply via email to

[Prev in Thread] Current Thread [Next in Thread]