From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52517) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iaehx-0008FZ-PI for guix-patches@gnu.org; Fri, 29 Nov 2019 06:45:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iaehu-0002AN-Fy for guix-patches@gnu.org; Fri, 29 Nov 2019 06:45:09 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:53663) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iaehu-00029i-Bt for guix-patches@gnu.org; Fri, 29 Nov 2019 06:45:06 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iaehu-0006U9-B0 for guix-patches@gnu.org; Fri, 29 Nov 2019 06:45:06 -0500 Subject: [bug#38423] [PATCH 44/49] gnu: Add ghc-configurator-pg. Resent-Message-ID: From: Robert Vollmert Date: Fri, 29 Nov 2019 12:37:46 +0100 Message-Id: <20191129113751.82405-44-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-configurator-pg): New variable. --- gnu/packages/haskell-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index b8fc8a8960..ac3fecc382 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -14264,3 +14264,39 @@ All error-reporting is explicit and is presented using the Either type.") "A composable abstraction over retryable transactions for Hasql") (description "A composable abstraction over retryable transactions for Hasql") (license license:expat))) + +(define-public ghc-configurator-pg + (package + (name "ghc-configurator-pg") + (version "0.1.0.3") + (source + (origin + (method url-fetch) + (uri (string-append + "https://hackage.haskell.org/package/configurator-pg/configurator-pg-" + version + ".tar.gz")) + (sha256 + (base32 + "0fc77ihnablff8v0kgr88pcc3rn41ca14bvfxr21jx807fn8g63p")))) + (build-system haskell-build-system) + (inputs + `(("ghc-attoparsec" ,ghc-attoparsec) + ("ghc-protolude" ,ghc-protolude) + ("ghc-scientific" ,ghc-scientific))) + (native-inputs + `(("ghc-hunit" ,ghc-hunit) + ("ghc-test-framework" ,ghc-test-framework) + ("ghc-test-framework-hunit" + ,ghc-test-framework-hunit))) + (home-page + "https://github.com/robx/configurator-pg") + (synopsis + "Reduced parser for configurator-ng config files") + (description + "This module provides a simplified and updated interface to the configuration file format +of and +. +Its aim is primarily to allow updating programs that depend on configurator-ng to new versions +of GHC without changing the configuration file format.") + (license license:bsd-3))) -- 2.21.0 (Apple Git-122.2)