sharlatan pushed a commit to branch go-team in repository guix. commit c4a85ee167164a754a4a8471fa1e88462b58fccb Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 8ebf88fc4a..4de3ef7966 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")