guix-patches
[Top][All Lists]
Advanced

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

[bug#36663] [PATCH 12/14] gnu: Add ghc-prettyclass


From: Robert Vollmert
Subject: [bug#36663] [PATCH 12/14] gnu: Add ghc-prettyclass
Date: Mon, 15 Jul 2019 13:14:10 +0200

* gnu/packages/haskell-xyz.scm (ghc-prettyclass): New field.
---
 gnu/packages/haskell-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 43d04b0563..7763b94ae4 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -195,3 +195,28 @@ primitives for I/O using streams.")
     (description
      "Low-level bindings to the zlib package.")
     (license license:bsd-3)))
+
+(define-public ghc-prettyclass
+  (package
+    (name "ghc-prettyclass")
+    (version "1.0.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://hackage.haskell.org/package/prettyclass/prettyclass-";
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "11l9ajci7nh1r547hx8hgxrhq8mh5gdq30pdf845wvilg9p48dz5"))))
+    (build-system haskell-build-system)
+    (home-page
+     "http://hackage.haskell.org/package/prettyclass";)
+    (synopsis
+     "Pretty printing class similar to Show")
+    (description
+     "Pretty printing class similar to Show, based on the HughesPJ
+pretty printing library.  Provides the pretty printing class and
+instances for the Prelude types.")
+    (license license:bsd-3)))
-- 
2.20.1 (Apple Git-117)






reply via email to

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