guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 2ece836312127bc15204c2bc26846d1afa47778e
Author: moksh <[email protected]>
AuthorDate: Thu Aug 20 13:27:53 2026 +0530

    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 <[email protected]>
---
 gnu/packages/golang-graphics.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

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 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2026 Sughosha <[email protected]>
 ;;; Copyright © 2026 orahcio <[email protected]>
+;;; Copyright © 2026 moksh <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -379,6 +380,31 @@ additional error is returned in the Go binding.")
 @code{.icns}.")
     (license license:expat)))
 
+(define-public go-github-com-joshdk-quantize
+  (package
+    (name "go-github-com-joshdk-quantize")
+    (version "0.0.0-20171110221748-65999d3a4c76")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/joshdk/quantize";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0bddsdflmxdprmpsmvfznal9z41kafs32i3mlf3crbl7i4wja3as"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/joshdk/quantize"))
+    (home-page "https://github.com/joshdk/quantize";)
+    (synopsis "Color palette quantization library")
+    (description
+     "This package provides a color palette quantization library using
+@url{https://modern-colorthief.readthedocs.io/en/stable/mmcq.html, MMCQ}
+algorithm.")
+    (license license:expat)))
+
 (define-public go-github-com-makeworld-the-better-one-dither-v2
   (package
     (name "go-github-com-makeworld-the-better-one-dither-v2")

Reply via email to