[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38423] [PATCH 14/49] gnu: Add ghc-protolude.
From: |
Robert Vollmert |
Subject: |
[bug#38423] [PATCH 14/49] gnu: Add ghc-protolude. |
Date: |
Fri, 29 Nov 2019 12:37:16 +0100 |
* gnu/packages/haskell-xyz.scm (ghc-protolude): New variable.
---
gnu/packages/haskell-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index a9c25a8b16..dc124b37a1 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -13410,3 +13410,30 @@ respectively.")
"Associative containers retaining insertion order for traversals.
The implementation is based on `unordered-containers`.")
(license license:bsd-3)))
+
+(define-public ghc-protolude
+ (package
+ (name "ghc-protolude")
+ (version "0.2.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/protolude/protolude-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0zzkyxz0vmcbncpid7gp72fpjj0fla3gqhlfkij5c5lg12skjgfj"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-async" ,ghc-async)
+ ("ghc-hashable" ,ghc-hashable)
+ ("ghc-mtl-compat" ,ghc-mtl-compat)
+ ("ghc-transformers-compat"
+ ,ghc-transformers-compat)))
+ (home-page "https://github.com/sdiehl/protolude")
+ (synopsis "A small prelude.")
+ (description
+ "A sensible set of defaults for writing custom Preludes.")
+ (license license:expat)))
--
2.21.0 (Apple Git-122.2)
- [bug#38423] add postgrest, Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 01/49] gnu: Add ghc-text-printer., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 06/49] gnu: Add ghc-deferred-folds., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 14/49] gnu: Add ghc-protolude.,
Robert Vollmert <=
- [bug#38423] [PATCH 07/49] gnu: Add ghc-websockets., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 10/49] gnu: Add ghc-wai-middleware-static., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 12/49] gnu: Add ghc-expiring-cache-map., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 03/49] gnu: Add ghc-text-builder., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 21/49] gnu: Add ghc-data-endian., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 05/49] gnu: Add ghc-data-checked., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 18/49] gnu: Add ghc-only., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 11/49] gnu: Add ghc-wai-app-static., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 09/49] gnu: Add ghc-wai-cors., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 08/49] gnu: Add ghc-wai-websockets., Robert Vollmert, 2019/11/29