me
/
guix
Archived
1
0
Fork 0

gnu: Add go-pixelmatch.

* gnu/packages/golang-xyz.scm (go-pixelmatch): New variable.

Change-Id: Iaf1480d7ee938605644e27345c2e7a2b6cf8b9e0
master
Sharlatan Hellseher 2024-02-18 22:26:36 +00:00
parent d1a5af5adb
commit 4bbca060da
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 22 additions and 0 deletions

View File

@ -52,6 +52,10 @@
;;;
;;; Code:
;;;
;;; Libraries:
;;;
(define-public go-github-com-a8m-envsubst
(package
(name "go-github-com-a8m-envsubst")
@ -1047,6 +1051,24 @@ CPU quota.")
(package-arguments go-github-com-op-go-logging)
((#: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