[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#44174] [PATCH v2 02/15] gnu: Add ghc-csv.
From: |
Carlo Holl |
Subject: |
[bug#44174] [PATCH v2 02/15] gnu: Add ghc-csv. |
Date: |
Sat, 31 Oct 2020 19:02:23 -0700 |
* gnu/packages/haskell-xyz.scm (ghc-csv): New variable.
---
gnu/packages/haskell-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 762435fa6b..46019d74c2 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -2665,6 +2665,30 @@ pure @code{Either} value. This means that you need not
remember which specific
function performs the conversion you desire.")
(license license:bsd-3)))
+(define-public ghc-csv
+ (package
+ (name "ghc-csv")
+ (version "0.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/csv/csv-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "00767ai09wm7f0yzmpqck3cpgxncpr9djnmmz5l17ajz69139x4c"))))
+ (build-system haskell-build-system)
+ (home-page "http://hackage.haskell.org/package/csv")
+ (synopsis "CSV loader and dumper")
+ (description "This library parses and dumps documents that are
+formatted according to RFC 4180, @cite{The common Format and MIME Type
+for Comma-Separated Values (CSV) Files}. This format is used, among
+many other things, as a lingua franca for spreadsheets, and for
+certain web services.")
+ (license license:expat)))
+
(define-public ghc-data-accessor
(package
(name "ghc-data-accessor")
--
2.28.0
- [bug#44174] [PATCH 14/16] gnu: Add ghc-hledger-lib., (continued)
- [bug#44174] [PATCH 00/16] Add hledger and its dependencies., Christopher Baines, 2020/10/24
- [bug#44174] [PATCH v2 00/15] Add hledger and its dependencies., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 01/15] gnu: Add ghc-control-monad-free., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 02/15] gnu: Add ghc-csv.,
Carlo Holl <=
- [bug#44174] [PATCH v2 03/15] gnu: Add ghc-decimal., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 04/15] gnu: ghc-doctest: Update to 0.16.3., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 05/15] gnu: Add ghc-hspec-megaparsec., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 07/15] gnu: Add ghc-only., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 08/15] gnu: Add ghc-text-short., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 06/15] gnu: Add ghc-lucid., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 10/15] gnu: Add ghc-uglymemo., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 09/15] gnu: Add ghc-tabular., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 11/15] gnu: Add ghc-wizards., Carlo Holl, 2020/10/31
- [bug#44174] [PATCH v2 12/15] gnu: Add ghc-cassava., Carlo Holl, 2020/10/31