From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH] gnu: Add haunt. Date: Sat, 08 Aug 2015 10:08:15 -0400 Message-ID: <87bneh7u0g.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48883) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZO4nN-0003UI-5C for guix-devel@gnu.org; Sat, 08 Aug 2015 10:08:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZO4nM-0002p1-0v for guix-devel@gnu.org; Sat, 08 Aug 2015 10:08:21 -0400 Received: from mail.fsf.org ([208.118.235.13]:37869) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZO4nL-0002ov-U2 for guix-devel@gnu.org; Sat, 08 Aug 2015 10:08:19 -0400 Received: from 209-6-40-86.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.40.86]:58460 helo=izanagi) by mail.fsf.org with esmtpsa (TLS-1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.69) (envelope-from ) id 1ZO4nI-00066l-Rf for guix-devel@gnu.org; Sat, 08 Aug 2015 10:08:18 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain This is a package for the first alpha release of my static site generator written in Guile: Haunt. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-haunt.patch >From 769c3fa2c8f1cf642ee20298a58c38c28d421086 Mon Sep 17 00:00:00 2001 From: David Thompson 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 --=-=-= Content-Type: text/plain -- David Thompson GPG Key: 0FF1D807 --=-=-=--