diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-06 22:49:32 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-06 22:49:32 +0100 |
| commit | fa2ad6b8b965bf709ec244c044ba6e5171dd506c (patch) | |
| tree | 9fba64a3df830fc753aebad2f61b7e468d04a0b4 | |
| parent | 79c56dcadfd0cb9d187e089ab5f02005e29e94c4 (diff) | |
gnu: Add go-github-com-baozisoftware-qrcode-terminal-go.
* gnu/packages/golang-xyz.scm (go-github-com-baozisoftware-qrcode-terminal-go): New variable.
Change-Id: I9c3073a78982008040667de7f6a7e42af95ddf91
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index c29ca5f441e..a4f7a6ddea3 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -2850,6 +2850,32 @@ Unified Format}.") (description "Package list implements a doubly linked list.") (license license:bsd-3))) +(define-public go-github-com-baozisoftware-qrcode-terminal-go + (package + (name "go-github-com-baozisoftware-qrcode-terminal-go") + (version "0.0.0-20170407111555-c0650d8dff0f") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Baozisoftware/qrcode-terminal-go") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "166h9zy9y7ygayhybg7d080hpdcf1mvkf3rwnq5lqg8i3cg71s7b")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/Baozisoftware/qrcode-terminal-go")) + (propagated-inputs + (list go-github-com-mattn-go-colorable + go-github-com-skip2-go-qrcode)) + (home-page "https://github.com/Baozisoftware/qrcode-terminal-go") + (synopsis "QRCode terminal for Golang") + (description + "This package implments a QR code generator for terminal for Golang.") + (license license:bsd-3))) + (define-public go-github-com-baulk-chardet (package (name "go-github-com-baulk-chardet") |
