From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52518) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iaei0-0008Fa-SB for guix-patches@gnu.org; Fri, 29 Nov 2019 06:45:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iaehv-0002GH-LW for guix-patches@gnu.org; Fri, 29 Nov 2019 06:45:09 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:53665) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iaehv-0002FO-Gr for guix-patches@gnu.org; Fri, 29 Nov 2019 06:45:07 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iaeht-0006Tv-FL for guix-patches@gnu.org; Fri, 29 Nov 2019 06:45:05 -0500 Subject: [bug#38423] [PATCH 34/49] gnu: Add ghc-heredoc. Resent-Message-ID: From: Robert Vollmert Date: Fri, 29 Nov 2019 12:37:36 +0100 Message-Id: <20191129113751.82405-34-rob@vllmrt.net> In-Reply-To: <20191129113751.82405-1-rob@vllmrt.net> References: <20191129113751.82405-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: 38423@debbugs.gnu.org Cc: Robert Vollmert * gnu/packages/haskell-xyz.scm (ghc-heredoc): New variable. --- gnu/packages/haskell-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 8637f5c637..f876709648 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -13983,3 +13983,26 @@ encoders from the postgresql-binary library have shown a stable performance improvement by factors of up to 10 after the migration from the standard builder to bytestring-strict-builder.") (license license:expat))) + +(define-public ghc-heredoc + (package + (name "ghc-heredoc") + (version "0.2.0.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/heredoc/heredoc-" + version + ".tar.gz")) + (sha256 + (base32 + "0h0g2f7yscwl1ba1yn3jnz2drvd6ns9m910hwlmq3kdq3k39y3f9")))) + (build-system haskell-build-system) + (home-page + "http://hackage.haskell.org/package/heredoc") + (synopsis + "multi-line string / here document using QuasiQuotes") + (description + "multi-line string / here document using QuasiQuotes") + (license license:public-domain))) -- 2.21.0 (Apple Git-122.2)