From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60241) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g7NYn-00037J-GK for guix-patches@gnu.org; Tue, 02 Oct 2018 12:30:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g7NYj-0001qI-Cq for guix-patches@gnu.org; Tue, 02 Oct 2018 12:30:09 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:58456) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1g7NYj-0001q9-6b for guix-patches@gnu.org; Tue, 02 Oct 2018 12:30:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1g7NYj-0004Ex-1g for guix-patches@gnu.org; Tue, 02 Oct 2018 12:30:05 -0400 Subject: [bug#32912] [PATCH 04/24] gnu: Add ghc-chart-cairo. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60062) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g7NYI-00034K-Bu for guix-patches@gnu.org; Tue, 02 Oct 2018 12:29:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g7NYE-0001eb-H7 for guix-patches@gnu.org; Tue, 02 Oct 2018 12:29:38 -0400 Received: from sinope02.bbbm.mdc-berlin.de ([141.80.25.24]:50700) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g7NYE-0001eD-6l for guix-patches@gnu.org; Tue, 02 Oct 2018 12:29:34 -0400 From: Ricardo Wurmus Date: Tue, 2 Oct 2018 18:28:52 +0200 Message-ID: <20181002162912.5037-4-ricardo.wurmus@mdc-berlin.de> In-Reply-To: <20181002162912.5037-1-ricardo.wurmus@mdc-berlin.de> References: <20181002162912.5037-1-ricardo.wurmus@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable 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: 32908@debbugs.gnu.org, 32912@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/haskell.scm (ghc-chart-cairo): New variable. --- gnu/packages/haskell.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 964b14749..c040965e9 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -10664,6 +10664,33 @@ various backends that allows rendering to Gtk wi= ndows, PDF, PS, PNG and SVG documents, amongst others.") (license license:bsd-3))) =20 +(define-public ghc-chart-cairo + (package + (name "ghc-chart-cairo") + (version "1.9") + (source + (origin + (method url-fetch) + (uri (string-append "https://hackage.haskell.org/package/Chart-ca= iro/" + "Chart-cairo-" version ".tar.gz")) + (sha256 + (base32 + "0iany6lfyfb1cw0pxfs5aw5k0a6x41m6ql9ad9w59biwdckbsyqr")))) + (build-system haskell-build-system) + (inputs + `(("ghc-old-locale" ,ghc-old-locale) + ("ghc-cairo" ,ghc-cairo) + ("ghc-colour" ,ghc-colour) + ("ghc-data-default-class" ,ghc-data-default-class) + ("ghc-operational" ,ghc-operational) + ("ghc-lens" ,ghc-lens) + ("ghc-chart" ,ghc-chart))) + (home-page "https://github.com/timbod7/haskell-chart/wiki") + (synopsis "Cairo backend for Charts") + (description "This package provides a Cairo vector graphics renderin= g +backend for the Charts library.") + (license license:bsd-3))) + (define-public ghc-weigh (package (name "ghc-weigh") --=20 2.19.0