guix-commits
[Top][All Lists]
Advanced

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

12/28: gnu: Add ghc-readable.


From: guix-commits
Subject: 12/28: gnu: Add ghc-readable.
Date: Wed, 7 Aug 2019 23:28:32 -0400 (EDT)

samplet pushed a commit to branch master
in repository guix.

commit b57e99f574c9496cd40fba1e9a9f1e84885ad2d5
Author: Robert Vollmert <address@hidden>
Date:   Mon Jul 15 10:45:46 2019 +0200

    gnu: Add ghc-readable.
    
    * gnu/packages/haskell-xyz.scm (ghc-readable): New variable.
---
 gnu/packages/haskell-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index a03ea4c..8291c7f 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -120,3 +120,23 @@ to @code{Show}, based on the HughesPJ pretty printing 
library.  It
 provides the pretty printing class and instances for the Prelude
 types.")
     (license license:bsd-3)))
+
+(define-public ghc-readable
+  (package
+    (name "ghc-readable")
+    (version "0.3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://hackage.haskell.org/package/";
+                           "readable/readable-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1ja39cg26wy2fs00gi12x7iq5k8i366pbqi3p916skfa5jnkfc3h"))))
+    (build-system haskell-build-system)
+    (home-page "https://github.com/mightybyte/readable";)
+    (synopsis "Type class for reading from Text and ByteString")
+    (description "This package provides a @code{Readable} type class for
+reading data types from @code{ByteString} and @code{Text}.  It also
+includes efficient implementations for common data types.")
+    (license license:bsd-3)))



reply via email to

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