sharlatan pushed a commit to branch go-team
in repository guix.
commit 2ea1602baefc8a8a6392c52c1ab8822807517245
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 15 20:41:19 2025 +0000
gnu: Add go-github-com-boombuler-barcode.
* gnu/packages/golang-xyz.scm (go-github-com-boombuler-barcode): New
variable.
Change-Id: I8dd1b72a8faac08d37bafd60ba02368b90fd680f
---
gnu/packages/golang-xyz.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 426ebc5583..f91009ba4d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2174,6 +2174,44 @@ project is to provide a simple, fast, and reliable
database for projects that
don't require a full database server such as Postgres or MySQL.")
(license license:expat)))
+(define-public go-github-com-boombuler-barcode
+ (package
+ (name "go-github-com-boombuler-barcode")
+ (version "1.0.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/boombuler/barcode")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1wpk7lkq3m9dq7wfkziinfzli78qpiwd15cxhibnnyl9lkifgp9s"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/boombuler/barcode"))
+ (home-page "https://github.com/boombuler/barcode")
+ (synopsis "Barcode creation library for golang")
+ (description
+ "This package implements a functionality to generate barcodes.
+
+Supported Barcode Types:
+@itemize
+@item 2 of 5
+@item Aztec Code
+@item Codabar
+@item Code 128
+@item Code 39
+@item Code 93
+@item Datamatrix
+@item EAN 13
+@item EAN 8
+@item PDF 417
+@item QR Code
+@end itemize")
+ (license license:expat)))
+
(define-public go-github-com-bradfitz-gomemcache
(package
(name "go-github-com-bradfitz-gomemcache")