[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55005] [PATCH 07/13] gnu: Add ghc-record-hasfield
From: |
Thomas Albers |
Subject: |
[bug#55005] [PATCH 07/13] gnu: Add ghc-record-hasfield |
Date: |
Mon, 18 Apr 2022 20:09:51 +0200 |
---
gnu/packages/haskell-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 5352e9f0b6..4d50437ed4 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -16252,3 +16252,26 @@ (define-public ghc-algebraic-graphs
"Library for algebraic construction and manipulation of graphs in
Haskell.")
(license license:expat)))
+
+(define-public ghc-record-hasfield
+ (package
+ (name "ghc-record-hasfield")
+ (version "1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+
"https://hackage.haskell.org/package/record-hasfield/record-hasfield-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32 "1jlyhj4nlj4hrypdcv7393nccjmfjnh1311incgqhm5wzigjygaj"))))
+ (build-system haskell-build-system)
+ (outputs '("out" "static"))
+ (home-page "https://github.com/ndmitchell/record-hasfield")
+ (synopsis "Implementation of @code{GHC.Records}")
+ (description
+ "This package provides a version of @code{GHC.Records} as it will be
+after the implementation of GHC proposal #42, plus some helper functions over
+it.")
+ (license license:bsd-3)))
--
2.35.1
- [bug#55005] [PATCH 00/13] gnu: Add multiple haskell packages, Thomas Albers Raviola, 2022/04/18
- [bug#55005] [PATCH 13/13] gnu: Add ghc-mod, Thomas Albers, 2022/04/18
- [bug#55005] [PATCH 10/13] gnu: Add ghc-fuzzy, Thomas Albers, 2022/04/18
- [bug#55005] [PATCH 08/13] gnu: Add ghc-record-dot-preprocessor, Thomas Albers, 2022/04/18
- [bug#55005] [PATCH 06/13] gnu: Add ghc-algebraic-graphs, Thomas Albers, 2022/04/18
- [bug#55005] [PATCH 05/13] gnu: Add ghc-optparse-simple, Thomas Albers, 2022/04/18