gnu: Add go-github-com-johnkerl-lumin.

* gnu/packages/golang-xyz.scm (go-github-com-johnkerl-lumin): New variable.

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Wilko Meyer 2023-10-18 11:38:03 +02:00 committed by Sharlatan Hellseher
parent 152b636f88
commit fd38158d7f
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1527,6 +1527,33 @@ (define-public go-github-com-jinzhu-copier
struct to another.")
(license license:expat)))
(define-public go-github-com-johnkerl-lumin
(package
(name "go-github-com-johnkerl-lumin")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/johnkerl/lumin")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1liv27pxi79q4yr1bd0wgsx31ixw53ipsgs2kp0asxj2d6z4hpiz"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/johnkerl/lumin"))
(home-page "https://github.com/johnkerl/lumin")
(synopsis "Command-line tool to highlight matches in files")
(description
"@command{lumin} is a simple command-line program which highlights matches
to a specified pattern (string or regex) in the specified files. This is like
@code{grep} with @code{--color}, except that @code{lumin} shows all lines, not
just matching lines. This package proviedes a CLI tool and @code{colors}
library.")
(license license:bsd-2)))
(define-public go-github-com-josharian-intern
(package
(name "go-github-com-josharian-intern")