gnu: Add go-github-com-logrusorgru-aurora-v4.

* gnu/packages/golang-xyz.scm (go-github-com-logrusorgru-aurora-v4): New variable.

Change-Id: I38956184e5b82865b8df0b8c7a7b6a434be1b8a4
This commit is contained in:
Sharlatan Hellseher 2024-03-28 23:41:03 +00:00
parent bcfbb05fdb
commit b39b38a8d8
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1405,6 +1405,28 @@ (define-public go-github-com-logrusorgru-aurora-v3
(list
#:import-path "github.com/logrusorgru/aurora/v3"))))
(define-public go-github-com-logrusorgru-aurora-v4
(package
(inherit go-github-com-logrusorgru-aurora)
(name "go-github-com-logrusorgru-aurora-v4")
(version "4.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/logrusorgru/aurora")
(commit (string-append "v" version))))
(sha256
(base32 "0a4w4p0sl5hwa9fridk7s023sjcis8qf1k8fm3g5qar58vxzlh9w"))
(file-name (git-file-name name version))))
(build-system go-build-system)
(arguments
(list
#:go go-1.19
#:import-path "github.com/logrusorgru/aurora/v3"))
(native-inputs
(list go-github-com-stretchr-testify))))
(define-public go-github-com-kballard-go-shellquote
;; No release, see <https://github.com/kballard/go-shellquote/issues/13>.
(let ((commit "95032a82bc518f77982ea72343cc1ade730072f0")