summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoksh <mysticmoksh@riseup.net>2026-08-20 13:27:53 +0530
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-26 21:53:14 +0100
commit2ece836312127bc15204c2bc26846d1afa47778e (patch)
tree7a690a18915fd4c7d1e6417a4264570640d9a4a1
parentda2b265f9589534fd6abb96854bae5feb39f1846 (diff)
gnu: Add go-github-com-joshdk-quantize.
* gnu/packages/golang-graphics.scm (go-github-com-joshdk-quantize): New variable. Relates-to: guix/guix!10673 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/golang-graphics.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-graphics.scm b/gnu/packages/golang-graphics.scm
index d7e1361ffbf..725ffad1b77 100644
--- a/gnu/packages/golang-graphics.scm
+++ b/gnu/packages/golang-graphics.scm
@@ -1,6 +1,7 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2026 Sughosha <sughosha@disroot.org> 2;;; Copyright © 2026 Sughosha <sughosha@disroot.org>
3;;; Copyright © 2026 orahcio <orahcio@gmail.com> 3;;; Copyright © 2026 orahcio <orahcio@gmail.com>
4;;; Copyright © 2026 moksh <mysticmoksh@riseup.net>
4;;; 5;;;
5;;; This file is part of GNU Guix. 6;;; This file is part of GNU Guix.
6;;; 7;;;
@@ -379,6 +380,31 @@ additional error is returned in the Go binding.")
379@code{.icns}.") 380@code{.icns}.")
380 (license license:expat))) 381 (license license:expat)))
381 382
383(define-public go-github-com-joshdk-quantize
384 (package
385 (name "go-github-com-joshdk-quantize")
386 (version "0.0.0-20171110221748-65999d3a4c76")
387 (source
388 (origin
389 (method git-fetch)
390 (uri (git-reference
391 (url "https://github.com/joshdk/quantize")
392 (commit (go-version->git-ref version))))
393 (file-name (git-file-name name version))
394 (sha256
395 (base32 "0bddsdflmxdprmpsmvfznal9z41kafs32i3mlf3crbl7i4wja3as"))))
396 (build-system go-build-system)
397 (arguments
398 (list
399 #:import-path "github.com/joshdk/quantize"))
400 (home-page "https://github.com/joshdk/quantize")
401 (synopsis "Color palette quantization library")
402 (description
403 "This package provides a color palette quantization library using
404@url{https://modern-colorthief.readthedocs.io/en/stable/mmcq.html, MMCQ}
405algorithm.")
406 (license license:expat)))
407
382(define-public go-github-com-makeworld-the-better-one-dither-v2 408(define-public go-github-com-makeworld-the-better-one-dither-v2
383 (package 409 (package
384 (name "go-github-com-makeworld-the-better-one-dither-v2") 410 (name "go-github-com-makeworld-the-better-one-dither-v2")