[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64840] [PATCH 06/12] gnu: Add ghc-text.
From: |
Distopico |
Subject: |
[bug#64840] [PATCH 06/12] gnu: Add ghc-text. |
Date: |
Mon, 24 Jul 2023 15:23:08 -0500 |
* gnu/packages/haskell-xyz.scm (ghc-text): New variable.
---
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 879d662da6..f25fb89950 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -12098,6 +12098,32 @@ (define-public ghc-tar-conduit
interface for extracting and creating tar files.")
(license license:expat)))
+(define-public ghc-text
+ (package
+ (name "ghc-text")
+ (version "2.0.2")
+ (source (origin
+ (method url-fetch)
+ (uri (hackage-uri "text" version))
+ (sha256
+ (base32
+ "1bggb4gq15r7z685w7c7hbm3w4n6day451ickz70d1l919jvwdf7"))))
+ (build-system haskell-build-system)
+ (properties '((upstream-name . "text")))
+ (arguments
+ ;; Disable otherwise crate a circular
+ ;; dependency with tasty
+ (list #:tests? #f))
+ (home-page "https://hackage.haskell.org/package/text")
+ (synopsis "Haskell library for immutable Unicode text type")
+ (description
+ "This package provides a library for immutable Unicode text type
+(both strict and lazy). The Text type represents Unicode character
+strings, in a time and space-efficient manner. Also provides text
+processing capabilities that are optimized for performance critical
+use, both in terms of large data quantities and high speed.")
+ (license license:bsd-2)))
+
(define-public ghc-temporary
(package
(name "ghc-temporary")
--
2.41.0
- [bug#64840] [PATCH 00/12] Add elm-format., Distopico, 2023/07/24
- [bug#64840] [PATCH 01/12] gnu: ghc-quickcheck-instances: Update to 0.3.29., Distopico, 2023/07/24
- [bug#64840] [PATCH 02/12] gnu: Add ghc-generically., Distopico, 2023/07/24
- [bug#64840] [PATCH 07/12] gnu: Add ghc-relude., Distopico, 2023/07/24
- [bug#64840] [PATCH 11/12] gnu: Fix missing required ghc-text dependency., Distopico, 2023/07/24
- [bug#64840] [PATCH 04/12] gnu: Add ghc-data-array-byte., Distopico, 2023/07/24
- [bug#64840] [PATCH 06/12] gnu: Add ghc-text.,
Distopico <=
- [bug#64840] [PATCH 09/12] gnu: Add ghc-hspec-golden., Distopico, 2023/07/24
- [bug#64840] [PATCH 03/12] gnu: Add ghc-aeson-2.1., Distopico, 2023/07/24
- [bug#64840] [PATCH 05/12] gnu: Add ghc-pooled-io., Distopico, 2023/07/24
- [bug#64840] [PATCH 10/12] gnu: Add ghc-bimap., Distopico, 2023/07/24
- [bug#64840] [PATCH 12/12] gnu: Add elm-format., Distopico, 2023/07/24
- [bug#64840] [PATCH 08/12] gnu: Add ghc-concurrent-split., Distopico, 2023/07/24