diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-15 20:41:19 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:09 +0100 |
commit | 09a53173a483af8b140635acd1032b3d9c99418f (patch) | |
tree | 93c320aeaa1f4ea99b7403f0072fbbe108dff4ae /gnu/packages/golang-xyz.scm | |
parent | 75adda2b5a58078ccc24dd3f7984acbc7c8823d7 (diff) |
gnu: Add go-github-com-boombuler-barcode.
* gnu/packages/golang-xyz.scm (go-github-com-boombuler-barcode): New variable.
Change-Id: I8dd1b72a8faac08d37bafd60ba02368b90fd680f
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 83d89e3820..eb3ed9fb80 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -2177,6 +2177,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") |