summaryrefslogtreecommitdiff
path: root/gnu/packages/aidc.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/aidc.scm')
-rw-r--r--gnu/packages/aidc.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/aidc.scm b/gnu/packages/aidc.scm
index 7affc917c82..9499527ced1 100644
--- a/gnu/packages/aidc.scm
+++ b/gnu/packages/aidc.scm
@@ -276,6 +276,32 @@ characters, and is highly robust.")
276 (license license:lgpl2.1+) 276 (license license:lgpl2.1+)
277 (home-page "https://fukuchi.org/works/qrencode"))) 277 (home-page "https://fukuchi.org/works/qrencode")))
278 278
279(define-public go-github-com-mdp-qrterminal
280 (package
281 (name "go-github-com-mdp-qrterminal")
282 (version "1.0.1")
283 (source
284 (origin
285 (method git-fetch)
286 (uri (git-reference
287 (url "https://github.com/mdp/qrterminal")
288 (commit (string-append "v" version))))
289 (file-name (git-file-name name version))
290 (sha256
291 (base32 "1f2zrdv9sw2a6ni1712d27cayr3f8whqagx6f0yglc5gdd9f3i2n"))))
292 (build-system go-build-system)
293 (arguments
294 (list
295 #:import-path "github.com/mdp/qrterminal"))
296 (propagated-inputs (list go-rsc-io-qr))
297 (home-page "https://github.com/mdp/qrterminal")
298 (synopsis "QR codes in your terminal")
299 (description
300 "Golang library for generating QR codes in the terminal. Originally this
301was a port of the NodeJS version. Recently it's been updated to allow for
302smaller code generation using ASCII 'half blocks'.")
303 (license license:expat)))
304
279(define-public go-rsc-io-qr 305(define-public go-rsc-io-qr
280 (package 306 (package
281 (name "go-rsc-io-qr") 307 (name "go-rsc-io-qr")