From 7bb3f8629379c4e8acff8d5c4ec05cdcd650d990 Mon Sep 17 00:00:00 2001 From: orahcio Date: Fri, 29 May 2026 00:14:11 -0300 Subject: [PATCH] gnu: Add go-github-com-sergeymakinen-go-bmp. * gnu/packages/golang-graphics.scm (go-github-com-sergeymakinen-go-bmp): New variable. Relates-to: guix/guix!8655 Change-Id: Icfd72c90bdf55258d39632cb39a76384c2887919 Modified-by: Sharlatan Hellseher Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-graphics.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/golang-graphics.scm b/gnu/packages/golang-graphics.scm index 781850b7a92..b5f9996e8ed 100644 --- a/gnu/packages/golang-graphics.scm +++ b/gnu/packages/golang-graphics.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2026 Sughosha +;;; Copyright © 2026 orahcio ;;; ;;; This file is part of GNU Guix. ;;; @@ -249,3 +250,31 @@ multiple return values, Go's native multiple return values are used instead. Whenever a native GTK call could return an unexpected NULL pointer, an additional error is returned in the Go binding.") (license license:isc))) + +(define-public go-github-com-sergeymakinen-go-bmp + (package + (name "go-github-com-sergeymakinen-go-bmp") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sergeymakinen/go-bmp") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0bglvxqmjvgclcfjpkznxyifj5r0bh837c2iw6x1vylc7lqcq07h")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/sergeymakinen/go-bmp")) + (home-page "https://github.com/sergeymakinen/go-bmp") + (synopsis "BMP image decoder and encoder") + (description "Package bmp implements a BMP image decoder and encoder.") + (license license:bsd-3))) + +;;; +;;; Avoid adding new packages to the end of this file. To reduce the chances +;;; of a merge conflict, place them above in alphabetic order: +;;; guix import --insert=gnu/packages/golang-graphics.scm pypi . +;;;