diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-13 13:30:22 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-13 13:54:58 +0100 |
commit | 8bc0362d250c42d7a594533b6ef8e582f9f0ee3a (patch) | |
tree | 6e0ae490e0195daaa23d6ac654ab88591dbfd947 /gnu/packages | |
parent | 6b97d643890b79db511582e1b76dee70ca486920 (diff) | |
download | guix-8bc0362d250c42d7a594533b6ef8e582f9f0ee3a.tar.gz guix-8bc0362d250c42d7a594533b6ef8e582f9f0ee3a.zip |
gnu: guile-charting: Sort alphabetically.
* gnu/packages/plotutils.scm (guile-charting): Sort alphabetically.
Change-Id: I07b0506bb3557c49edf93fee4665c4967f2b9396
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/plotutils.scm | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/gnu/packages/plotutils.scm b/gnu/packages/plotutils.scm index a4d0f9156b..0b32b80706 100644 --- a/gnu/packages/plotutils.scm +++ b/gnu/packages/plotutils.scm @@ -212,6 +212,35 @@ LaTeX does for scientific text.") ;; Lesser General Public License" (license license:lgpl3+))) +(define-public guile-charting + ;; This commit fixes a few things, including Guile 3 support, not available + ;; in the latest release. + (let ((commit "75f755b691a9f712f3b956657d01805d6a8a1b98") + (revision "1")) + (package + (name "guile-charting") + (version (git-version "0.2.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/wingo/guile-charting") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "03049g7wnpyfi0r36ij4a46kc9l45jbanx02iklkjwav2n6jqnnk")))) + (build-system gnu-build-system) + (native-inputs + (list autoconf automake texinfo pkg-config)) + (inputs (list guile-3.0)) + (propagated-inputs (list guile-cairo)) + (home-page "https://wingolog.org/projects/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 license:lgpl2.1+)))) + (define-public plotutils (package (name "plotutils") @@ -327,35 +356,6 @@ plotting and graphing library. If you want to make graphs that look like you went to university in the 1990s, this is the library for you.") (license license:gpl3+))) -(define-public guile-charting - ;; This commit fixes a few things, including Guile 3 support, not available - ;; in the latest release. - (let ((commit "75f755b691a9f712f3b956657d01805d6a8a1b98") - (revision "1")) - (package - (name "guile-charting") - (version (git-version "0.2.0" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://gitlab.com/wingo/guile-charting") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "03049g7wnpyfi0r36ij4a46kc9l45jbanx02iklkjwav2n6jqnnk")))) - (build-system gnu-build-system) - (native-inputs - (list autoconf automake texinfo pkg-config)) - (inputs (list guile-3.0)) - (propagated-inputs (list guile-cairo)) - (home-page "https://wingolog.org/projects/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 license:lgpl2.1+)))) - (define-public guile2.2-charting (package (inherit guile-charting) |