guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#54335] [PATCH 13/14] gnu: Add go-github-com-skip2-go-qrcode.


From: Dominic Martinez
Subject: [bug#54335] [PATCH 13/14] gnu: Add go-github-com-skip2-go-qrcode.
Date: Thu, 10 Mar 2022 22:47:40 -0500

* gnu/packages/golang.scm (go-github-com-skip2-go-qrcode): New variable.
---
 gnu/packages/golang.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 7e316a2552..c964832e94 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -10083,3 +10083,26 @@ (define-public 
go-github-com-matttproud-golang-protobuf-extensions
 various Protocol Buffer extensions for the Go language, namely support for
 record length-delimited message streaming.")
     (license license:asl2.0)))
+
+(define-public go-github-com-skip2-go-qrcode
+  (package
+    (name "go-github-com-skip2-go-qrcode")
+    (version "0.0.0-20200617195104-da1b6568686e")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/skip2/go-qrcode";)
+               (commit (go-version->git-ref version))))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32 "0pghd6y2x8a5fqy4rjn4d8j5jcslb236naycdza5an7vyvinsgs9"))))
+    (build-system go-build-system)
+    (arguments '(#:import-path "github.com/skip2/go-qrcode"
+                 ;; Tests failing
+                 #:tests? #f))
+    (home-page "https://github.com/skip2/go-qrcode";)
+    (synopsis "QR code encoder")
+    (description "@code{go-github-com-skip2-go-qrcode} provides a QR code
+encoder for the Go language.")
+    (license license:expat)))
-- 
2.34.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]