[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/12: gnu: Add ghc-listlike.
From: |
guix-commits |
Subject: |
07/12: gnu: Add ghc-listlike. |
Date: |
Mon, 2 Sep 2019 23:11:44 -0400 (EDT) |
samplet pushed a commit to branch master
in repository guix.
commit 1307e4c73d25cd89996b0841c2f84a84acbdb573
Author: John Soo <address@hidden>
Date: Sun Jul 7 17:52:53 2019 -0700
gnu: Add ghc-listlike.
* gnu/packages/haskell-xyz.scm (ghc-listlike): New variable.
Signed-off-by: Timothy Sample <address@hidden>
---
gnu/packages/haskell-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 72b9c25..fd4d464 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -5810,6 +5810,41 @@ Kaseorg.")
vector spaces.")
(license license:bsd-3)))
+(define-public ghc-listlike
+ (package
+ (name "ghc-listlike")
+ (version "4.6.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append
+ "https://hackage.haskell.org/package/ListLike/ListLike-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0m65x8yaq7q50gznln8mga2wrc8cvjx6gw9rim8s7xqcrx6y5zjh"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-vector" ,ghc-vector)
+ ("ghc-dlist" ,ghc-dlist)
+ ("ghc-fmlist" ,ghc-fmlist)
+ ("ghc-hunit" ,ghc-hunit)
+ ("ghc-quickcheck" ,ghc-quickcheck)
+ ("ghc-random" ,ghc-random)
+ ("ghc-utf8-string" ,ghc-utf8-string)))
+ (home-page "https://github.com/JohnLato/listlike")
+ (synopsis "Generic support for list-like structures")
+ (description "The ListLike module provides a common interface to the
+various Haskell types that are list-like. Predefined interfaces include
+standard Haskell lists, Arrays, ByteStrings, and lazy ByteStrings.
+Custom types can easily be made ListLike instances as well.
+
+ListLike also provides for String-like types, such as String and
+ByteString, for types that support input and output, and for types that
+can handle infinite lists.")
+ (license license:bsd-3)))
+
(define-public ghc-logging-facade
(package
(name "ghc-logging-facade")
- branch master updated (68668e9 -> 6ec2450), guix-commits, 2019/09/02
- 01/12: gnu: Add ghc-unsafe., guix-commits, 2019/09/02
- 02/12: gnu: Add ghc-non-negative., guix-commits, 2019/09/02
- 03/12: gnu: Add ghc-timeit., guix-commits, 2019/09/02
- 09/12: gnu: Add ghc-process-extras., guix-commits, 2019/09/02
- 04/12: gnu: Add ghc-storablevector., guix-commits, 2019/09/02
- 05/12: gnu: Add ghc-fmlist., guix-commits, 2019/09/02
- 06/12: gnu: Add ghc-storable-record., guix-commits, 2019/09/02
- 07/12: gnu: Add ghc-listlike.,
guix-commits <=
- 08/12: gnu: Add ghc-storable-tuple., guix-commits, 2019/09/02
- 11/12: gnu: Add ghc-js-flot., guix-commits, 2019/09/02
- 12/12: gnu: Add hoogle., guix-commits, 2019/09/02
- 10/12: gnu: Add ghc-js-jquery., guix-commits, 2019/09/02