summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-04-13 13:30:22 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-04-13 13:54:58 +0100
commit8bc0362d250c42d7a594533b6ef8e582f9f0ee3a (patch)
tree6e0ae490e0195daaa23d6ac654ab88591dbfd947 /gnu
parent6b97d643890b79db511582e1b76dee70ca486920 (diff)
gnu: guile-charting: Sort alphabetically.
* gnu/packages/plotutils.scm (guile-charting): Sort alphabetically. Change-Id: I07b0506bb3557c49edf93fee4665c4967f2b9396
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/plotutils.scm58
1 files changed, 29 insertions, 29 deletions
diff --git a/gnu/packages/plotutils.scm b/gnu/packages/plotutils.scm
index a4d0f9156be..0b32b807066 100644
--- a/gnu/packages/plotutils.scm
+++ b/gnu/packages/plotutils.scm
@@ -212,6 +212,35 @@ LaTeX does for scientific text.")
212 ;; Lesser General Public License" 212 ;; Lesser General Public License"
213 (license license:lgpl3+))) 213 (license license:lgpl3+)))
214 214
215(define-public guile-charting
216 ;; This commit fixes a few things, including Guile 3 support, not available
217 ;; in the latest release.
218 (let ((commit "75f755b691a9f712f3b956657d01805d6a8a1b98")
219 (revision "1"))
220 (package
221 (name "guile-charting")
222 (version (git-version "0.2.0" revision commit))
223 (source (origin
224 (method git-fetch)
225 (uri (git-reference
226 (url "https://gitlab.com/wingo/guile-charting")
227 (commit commit)))
228 (file-name (git-file-name name version))
229 (sha256
230 (base32
231 "03049g7wnpyfi0r36ij4a46kc9l45jbanx02iklkjwav2n6jqnnk"))))
232 (build-system gnu-build-system)
233 (native-inputs
234 (list autoconf automake texinfo pkg-config))
235 (inputs (list guile-3.0))
236 (propagated-inputs (list guile-cairo))
237 (home-page "https://wingolog.org/projects/guile-charting/")
238 (synopsis "Create charts and graphs in Guile")
239 (description
240 "Guile-Charting is a Guile Scheme library to create bar charts and graphs
241using the Cairo drawing library.")
242 (license license:lgpl2.1+))))
243
215(define-public plotutils 244(define-public plotutils
216 (package 245 (package
217 (name "plotutils") 246 (name "plotutils")
@@ -327,35 +356,6 @@ plotting and graphing library. If you want to make graphs that look like you
327went to university in the 1990s, this is the library for you.") 356went to university in the 1990s, this is the library for you.")
328 (license license:gpl3+))) 357 (license license:gpl3+)))
329 358
330(define-public guile-charting
331 ;; This commit fixes a few things, including Guile 3 support, not available
332 ;; in the latest release.
333 (let ((commit "75f755b691a9f712f3b956657d01805d6a8a1b98")
334 (revision "1"))
335 (package
336 (name "guile-charting")
337 (version (git-version "0.2.0" revision commit))
338 (source (origin
339 (method git-fetch)
340 (uri (git-reference
341 (url "https://gitlab.com/wingo/guile-charting")
342 (commit commit)))
343 (file-name (git-file-name name version))
344 (sha256
345 (base32
346 "03049g7wnpyfi0r36ij4a46kc9l45jbanx02iklkjwav2n6jqnnk"))))
347 (build-system gnu-build-system)
348 (native-inputs
349 (list autoconf automake texinfo pkg-config))
350 (inputs (list guile-3.0))
351 (propagated-inputs (list guile-cairo))
352 (home-page "https://wingolog.org/projects/guile-charting/")
353 (synopsis "Create charts and graphs in Guile")
354 (description
355 "Guile-Charting is a Guile Scheme library to create bar charts and graphs
356using the Cairo drawing library.")
357 (license license:lgpl2.1+))))
358
359(define-public guile2.2-charting 359(define-public guile2.2-charting
360 (package 360 (package
361 (inherit guile-charting) 361 (inherit guile-charting)