guix-commits
[Top][All Lists]
Advanced

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

59/154: gnu: Add ghc-blaze-html.


From: Paul
Subject: 59/154: gnu: Add ghc-blaze-html.
Date: Fri, 23 Oct 2015 07:13:53 +0000

toothbrush pushed a commit to branch master
in repository guix.

commit a195cd795f2d09f167ce68f3a75e9dee6845ae35
Author: Paul van der Walt <address@hidden>
Date:   Thu Oct 15 14:01:15 2015 +0200

    gnu: Add ghc-blaze-html.
    
    * gnu/packages/haskell.scm (ghc-blaze-html): New variable.
---
 gnu/packages/haskell.scm |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 4c52f02..c43bbdc 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -2030,6 +2030,31 @@ interoperate with code that uses the new 
implementation.")
 library for Haskell.")
     (license bsd-3)))
 
+(define-public ghc-blaze-html
+  (package
+    (name "ghc-blaze-html")
+    (version "0.8.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://hackage.haskell.org/package/blaze-html/blaze-html-";
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "1dnw50kh0s405cg9i2y4a8awanhj3bqzk21jwgfza65kcjby7lpq"))))
+    (build-system haskell-build-system)
+    (arguments `(#:tests? #f)) ; FIXME: testing libraries are missing.
+    (propagated-inputs
+     `(("ghc-blaze-builder" ,ghc-blaze-builder)
+       ("ghc-text" ,ghc-text)
+       ("ghc-blaze-markup" ,ghc-blaze-markup)))
+    (home-page "http://jaspervdj.be/blaze";)
+    (synopsis "Fast HTML combinator library")
+    (description "This library provides HTML combinators for Haskell.")
+    (license bsd-3)))
+
 (define-public ghc-easy-file
   (package
     (name "ghc-easy-file")



reply via email to

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