From 12507a3ee66e409d521b0b9950dd088fa609aeee Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 28 Aug 2014 10:09:28 +0200 Subject: gnu: Add Guile-Charting. * gnu/packages/guile.scm (guile-charting): New variable. --- gnu/packages/guile.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'gnu/packages/guile.scm') diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 0b1cc34335..cb14f0e6c7 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -34,6 +34,7 @@ #:use-module (gnu packages ncurses) #:use-module (gnu packages ed) #:use-module (gnu packages which) + #:use-module (gnu packages gtk) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) @@ -359,4 +360,35 @@ http:://json.org specification. These are the main features: - Allows JSON pretty printing.") (license lgpl3+))) +(define-public guile-charting + (package + (name "guile-charting") + (version "0.1.1") + (source (origin + (method url-fetch) + (uri (string-append "http://wingolog.org/pub/guile-charting/" + "guile-charting-" version ".tar.gz")) + (sha256 + (base32 + "1l8xcqq4cp67jzxnmf07ivsgq23mfmi00zz1s8bnv2zkb0ab9475")) + (modules '((guix build utils))) + (snippet + ;; Remove dependency from guile-charting.texi to + ;; guile-chartingscmfiles to avoid rebuild the doc (which is + ;; unnecessary and fails with "failed to match any pattern in + ;; form define-macro-with-docs" as of Guile 2.0.11.) + '(substitute* "doc/Makefile.in" + (("^(.+):(.*) \\$\\(doc\\)scmfiles(.*$)" _ target dep1 dep2) + (string-append target ":" dep1 " " dep2 "\n")))))) + (build-system gnu-build-system) + (native-inputs `(("pkg-config" ,pkg-config))) + (inputs `(("guile" ,guile-2.0) + ("guile-cairo" ,guile-cairo))) + (home-page "http://wingolog.org/software/guile-charting/") + (synopsis "Create charts and graphs in Guile") + (description + "Guile-Charting is a Guile Scheme library to create bar charts and graphs +using the Cairo drawing library.") + (license lgpl2.1+))) + ;;; guile.scm ends here -- cgit v1.2.3