From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:47174) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hmywu-0004pb-4Q for guix-patches@gnu.org; Mon, 15 Jul 2019 07:15:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hmywq-0002RP-2U for guix-patches@gnu.org; Mon, 15 Jul 2019 07:15:15 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:37849) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hmywp-0002Qr-UF for guix-patches@gnu.org; Mon, 15 Jul 2019 07:15:11 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hmywp-0003SH-NU for guix-patches@gnu.org; Mon, 15 Jul 2019 07:15:11 -0400 Subject: [bug#36663] [PATCH 12/14] gnu: Add ghc-prettyclass Resent-Message-ID: From: Robert Vollmert Date: Mon, 15 Jul 2019 13:14:10 +0200 Message-Id: <20190715111412.74324-12-rob@vllmrt.net> In-Reply-To: <20190715111412.74324-1-rob@vllmrt.net> References: <20190715111412.74324-1-rob@vllmrt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36663@debbugs.gnu.org Cc: Robert Vollmert * gnu/packages/haskell-xyz.scm (ghc-prettyclass): New field. --- gnu/packages/haskell-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 43d04b0563..7763b94ae4 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -195,3 +195,28 @@ primitives for I/O using streams.") (description "Low-level bindings to the zlib package.") (license license:bsd-3))) + +(define-public ghc-prettyclass + (package + (name "ghc-prettyclass") + (version "1.0.0.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/prettyclass/prettyclass-" + version + ".tar.gz")) + (sha256 + (base32 + "11l9ajci7nh1r547hx8hgxrhq8mh5gdq30pdf845wvilg9p48dz5")))) + (build-system haskell-build-system) + (home-page + "http://hackage.haskell.org/package/prettyclass") + (synopsis + "Pretty printing class similar to Show") + (description + "Pretty printing class similar to Show, based on the HughesPJ +pretty printing library. Provides the pretty printing class and +instances for the Prelude types.") + (license license:bsd-3))) -- 2.20.1 (Apple Git-117)