guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 46038c785da30de1ccac2828abd5222cc2ebc7e1
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 14 22:25:26 2026 +0000
gnu: Add go-github-com-bodgit-windows.
* gnu/packages/golang-xyz.scm (go-github-com-bodgit-windows): New variable.
Change-Id: Ib98fdb907242a5dd5c26b87f8ee5ec95b4e4b3f4
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 952b415681..da61ad8738 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3005,6 +3005,30 @@ quantiles over an unbounded data stream within low
memory and CPU bounds.")
(description "Package plumbing is a collection of assorted I/O helpers.")
(license license:bsd-3)))
+(define-public go-github-com-bodgit-windows
+ (package
+ (name "go-github-com-bodgit-windows")
+ (version "1.0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/bodgit/windows")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1iklb2w7yj1icwfwyrimkbkj2dk43lqs9k00ww09x2r5p8cl0ahr"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/bodgit/windows"))
+ (home-page "https://github.com/bodgit/windows")
+ (synopsis "Golang library for working with Windows primitives")
+ (description
+ "Package windows is a collection of types native to Windows platforms but
+are useful on non-Windows platforms.")
+ (license license:bsd-3)))
+
;; XXX: This repository has been archived by the owner on Mar 9, 2019. It is
;; now read-only.
(define-public go-github-com-boltdb-bolt