>From fddfd4fa488f9e02ca2bfcafedbb1c068c9243fc Mon Sep 17 00:00:00 2001 From: John Soo Date: Fri, 13 Dec 2019 07:00:31 -0800 Subject: [PATCH 01/22] gnu: Add ghc-utf8-light. * gnu/packages/haskell-xyz.scm (ghc-utf8-light): New variable. --- gnu/packages/haskell-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index d22a08e7fb..0eb43b70e1 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -12671,6 +12671,27 @@ a style ready for qualification, that is, you should import them by parser that uses ByteStrings for parsing and representing the URI data.") (license license:bsd-3))) +(define-public ghc-utf8-light + (package + (name "ghc-utf8-light") + (version "0.4.2") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://hackage/package/utf8-light/utf8-light-" + version + ".tar.gz")) + (sha256 + (base32 + "0rwyc5z331yfnm4hpx0sph6i1zvkd1z10vvglhnp0vc9wy644k0q")))) + (build-system haskell-build-system) + (home-page + "http://hackage.haskell.org/package/utf8-light") + (synopsis "Lightweight unicode support for Haskell") + (description "Lightweight UTF8 handling.") + (license license:bsd-3))) + (define-public ghc-utf8-string (package (name "ghc-utf8-string") -- 2.26.0