diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-08-28 10:09:28 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-08-28 10:09:28 +0200 |
commit | 12507a3ee66e409d521b0b9950dd088fa609aeee (patch) | |
tree | 1fcb5d678a26159328d88b1c7871fe9b63d40c14 /gnu/packages/guile.scm | |
parent | 49710cea4c71256815505a3af633235457839844 (diff) | |
download | guix-12507a3ee66e409d521b0b9950dd088fa609aeee.tar guix-12507a3ee66e409d521b0b9950dd088fa609aeee.tar.gz |
gnu: Add Guile-Charting.
* gnu/packages/guile.scm (guile-charting): New variable.
Diffstat (limited to 'gnu/packages/guile.scm')
-rw-r--r-- | gnu/packages/guile.scm | 32 |
1 files changed, 32 insertions, 0 deletions
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 |