From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH 5/7] gnu: Add ghc-xml-types. Date: Tue, 4 Oct 2016 15:40:06 +0200 Message-ID: <20161004134008.11821-6-rekado@elephly.net> References: <20161004134008.11821-1-rekado@elephly.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45312) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1brPxb-0008OZ-1v for guix-devel@gnu.org; Tue, 04 Oct 2016 09:40:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1brPxW-0000I6-TK for guix-devel@gnu.org; Tue, 04 Oct 2016 09:40:43 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:21466) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1brPxW-0000HT-JS for guix-devel@gnu.org; Tue, 04 Oct 2016 09:40:38 -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-xml-types): New variable. --- gnu/packages/haskell.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 4a0c334..bdd8141 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -6407,6 +6407,26 @@ dependencies. The basic idea is that this package should only depend on @code{haskell-platform} packages and @code{conduit}.") (license license:expat))) +(define-public ghc-xml-types + (package + (name "ghc-xml-types") + (version "0.3.6") + (source + (origin + (method url-fetch) + (uri (string-append "https://hackage.haskell.org/package/xml-types/" + "xml-types-" version ".tar.gz")) + (sha256 + (base32 + "1jgqxsa9p2q3h6nymbfmvhldqrqlwrhrzmwadlyc0li50x0d8dwr")))) + (build-system haskell-build-system) + (inputs `(("ghc-text" ,ghc-text))) + (home-page "https://john-millikin.com/software/haskell-xml/") + (synopsis "Basic types for representing XML") + (description "This package provides basic types for representing XML +documents.") + (license license:expat))) + (define-public ghc-union-find (package (name "ghc-union-find") -- 2.10.0