[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55005] [PATCH 11/13] gnu: Add ghc-strict-list
From: |
Thomas Albers |
Subject: |
[bug#55005] [PATCH 11/13] gnu: Add ghc-strict-list |
Date: |
Mon, 18 Apr 2022 20:09:55 +0200 |
---
gnu/packages/haskell-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 35a3e7a078..cd6de908c6 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -16343,3 +16343,29 @@ (define-public ghc-fuzzy
"Fuzzy string search library for Haskell. Uses TextualMonoid from
monoid-subclasses to be able to run on different types of strings.")
(license license:expat)))
+
+(define-public ghc-strict-list
+ (package
+ (name "ghc-strict-list")
+ (version "0.1.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hackage-uri "strict-list" version))
+ (sha256
+ (base32 "0cbf3my7fghifplk7l2m77cc0x7xkh1pyv5k36h7dl6m2ddhmdc1"))))
+ (build-system haskell-build-system)
+ (outputs '("out" "static"))
+ (inputs (list ghc-hashable ghc-semigroupoids))
+ (native-inputs
+ (list ghc-quickcheck
+ ghc-quickcheck-instances
+ ghc-rerebase
+ ghc-tasty
+ ghc-tasty-hunit
+ ghc-tasty-quickcheck))
+ (home-page "https://github.com/nikita-volkov/strict-list")
+ (synopsis "Strict linked list")
+ (description
+ "Implementation of strict linked list with care taken about stack.")
+ (license license:expat)))
--
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