summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-02-18 22:26:36 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-02-19 23:32:31 +0000
commit4bbca060daf59622d027c874c9e9a2d715c286a7 (patch)
tree5f4e7dffbaf0802eeb4e536cb56f643ddf675451
parentd1a5af5adb11faf8dc8ee03fb75ee289867516d0 (diff)
gnu: Add go-pixelmatch.
* gnu/packages/golang-xyz.scm (go-pixelmatch): New variable. Change-Id: Iaf1480d7ee938605644e27345c2e7a2b6cf8b9e0
-rw-r--r--gnu/packages/golang-xyz.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 9c741f6600..4e0c0e8a28 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -52,6 +52,10 @@
;;;
;;; Code:
+;;;
+;;; Libraries:
+;;;
+
(define-public go-github-com-a8m-envsubst
(package
(name "go-github-com-a8m-envsubst")
@@ -1048,6 +1052,24 @@ CPU quota.")
((#:import-path _) "gopkg.in/op/go-logging.v1")))))
;;;
+;;; Executables:
+;;;
+
+(define-public go-pixelmatch
+ (package
+ (inherit go-github-com-orisano-pixelmatch)
+ (name "go-pixelmatch")
+ (arguments
+ (list
+ #:import-path "github.com/orisano/pixelmatch/cmd/pixelmatch"
+ #:unpack-path "github.com/orisano/pixelmatch"
+ #:install-source? #f))
+ (synopsis "Pixel-level image comparison command")
+ (description
+ "This package provides a CLI build from the
+go-github-com-orisano-pixelmatch source.")))
+
+;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar
;;; functionality or similar names.