guix-commits
[Top][All Lists]
Advanced

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

06/08: gnu: Add ghc-wl-pprint.


From: Ludovic Courtès
Subject: 06/08: gnu: Add ghc-wl-pprint.
Date: Mon, 6 Jun 2016 16:15:12 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit febf7ef67570749067c2c2e9376fdbefed427023
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jun 6 17:00:43 2016 +0200

    gnu: Add ghc-wl-pprint.
    
    * gnu/packages/haskell.scm (ghc-wl-pprint): New variable.
---
 gnu/packages/haskell.scm |   21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index d31cf68..b043e03 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -3198,6 +3198,27 @@ to annotate the text with semantic information, which 
can later be rendered in
 a variety of ways.")
     (license license:bsd-3)))
 
+(define-public ghc-wl-pprint
+  (package
+    (name "ghc-wl-pprint")
+    (version "1.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "http://hackage.haskell.org/package/wl-pprint/wl-pprint-";
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "166zvk4zwn2zaa9kx66m1av38m34qp6h4i65bri2sfnxgvx0700r"))))
+    (build-system haskell-build-system)
+    (home-page "http://hackage.haskell.org/package/wl-pprint";)
+    (synopsis "Wadler/Leijen pretty printer")
+    (description
+     "This is a pretty printing library based on Wadler's paper @i{A Prettier
+Printer}.  This version allows the library user to declare overlapping
+instances of the @code{Pretty} class.")
+    (license license:bsd-3)))
+
 (define-public ghc-ansi-wl-pprint
   (package
     (name "ghc-ansi-wl-pprint")



reply via email to

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