From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH 3/7] gnu: Add ghc-rfc5051. Date: Tue, 4 Oct 2016 15:40:04 +0200 Message-ID: <20161004134008.11821-4-rekado@elephly.net> References: <20161004134008.11821-1-rekado@elephly.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45244) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1brPxW-0008JA-2t for guix-devel@gnu.org; Tue, 04 Oct 2016 09:40:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1brPxP-00009W-Sf for guix-devel@gnu.org; Tue, 04 Oct 2016 09:40:37 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:21375) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1brPxP-00008b-JC for guix-devel@gnu.org; Tue, 04 Oct 2016 09:40:31 -0400 In-Reply-To: <20161004134008.11821-1-rekado@elephly.net> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/haskell.scm (ghc-rfc5051): New variable. --- gnu/packages/haskell.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 479d8f8..5e52dd9 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -6341,6 +6341,29 @@ that interconverts between various bibliography formats using a common MODS-format XML intermediate.") (license license:gpl2+))) +(define-public ghc-rfc5051 + (package + (name "ghc-rfc5051") + (version "0.1.0.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://hackage.haskell.org/package/rfc5051/" + "rfc5051-" version ".tar.gz")) + (sha256 + (base32 + "0av4c3qvwbkbzrjrrg601ay9pds7wscqqp2lc2z78mv2lllap3g3")))) + (build-system haskell-build-system) + (home-page "http://hackage.haskell.org/package/rfc5051") + (synopsis "Simple unicode collation as per RFC5051") + (description + "This library implements @code{unicode-casemap}, the simple, non +locale-sensitive unicode collation algorithm described in RFC 5051. Proper +unicode collation can be done using @code{text-icu}, but that is a big +dependency that depends on a large C library, and @code{rfc5051} might be +better for some purposes.") + (license license:bsd-3))) + (define-public ghc-union-find (package (name "ghc-union-find") -- 2.10.0