From mboxrd@z Thu Jan 1 00:00:00 1970 From: ericbavier@openmailbox.org Subject: Re: [PATCH] gnu: Add ghc-cereal. Date: Wed, 21 Oct 2015 22:25:06 -0500 Message-ID: <1445484334-25558-1-git-send-email-ericbavier@openmailbox.org> References: <1445483479-19104-1-git-send-email-ericbavier@openmailbox.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37263) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpB65-0000BX-8M for guix-devel@gnu.org; Thu, 22 Oct 2015 04:19:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZpB61-0002I4-9E for guix-devel@gnu.org; Thu, 22 Oct 2015 04:19:41 -0400 Received: from smtp19.openmailbox.org ([62.4.1.53]:52865) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpB61-0002Ht-3m for guix-devel@gnu.org; Thu, 22 Oct 2015 04:19:37 -0400 In-Reply-To: <1445483479-19104-1-git-send-email-ericbavier@openmailbox.org> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org, Paul van der Walt From: Eric Bavier > * gnu/packages/haskell.scm (ghc-cereal): New variable. > --- > gnu/packages/haskell.scm | 24 ++++++++++++++++++++++++ > 1 file changed, 24 insertions(+) > > diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm > index 35952ed..9e97757 100644 > --- a/gnu/packages/haskell.scm > +++ b/gnu/packages/haskell.scm > @@ -1248,6 +1248,30 @@ Haskell.") > modifying, and extracting files from zip archives.") > (license bsd-3))) > > +(define-public ghc-cereal > + (package > + (name "ghc-cereal") > + (version "0.4.1.1") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "http://hackage.haskell.org/package/cereal/cereal-" > + version > + ".tar.gz")) > + (sha256 > + (base32 > + "15rhfn9hrjm01ksh9xpz9syxsp9vkvpp6b736iqq38wv2wb7416z")))) > + (build-system haskell-build-system) > + (home-page > + "http://hackage.haskell.org/package/cereal") > + (synopsis "Binary serialization library") > + (description > + "This package provides a binary serialization library, similar to binary, It may not be apparent that the "binary" being referred to here is a haskell library. It should maybe be written as "similar to the @code{binary} library, ...". `~Eric > +that introduces an isolate primitive for parser isolation, and labeled blocks > +for better error messages.") > + (license bsd-3))) > + > (define-public ghc-appar > (package > (name "ghc-appar") > -- > 2.5.0 >