diff options
author | Wilko Meyer <w@wmeyer.eu> | 2023-10-18 11:38:03 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-09 17:14:52 +0100 |
commit | fd38158d7ff8cf39760f994c3fe1111002af833a (patch) | |
tree | d0b4c384f1582a3930589ba6b6bdd882dc381953 /gnu | |
parent | 152b636f88d4867c8c3e62cdb37ece6a1375dc80 (diff) | |
download | guix-fd38158d7ff8cf39760f994c3fe1111002af833a.tar.gz guix-fd38158d7ff8cf39760f994c3fe1111002af833a.zip |
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>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index e469c0007d..bf177e9419 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1527,6 +1527,33 @@ and stop units of work, which may receive @code{Close} signals from many clients 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") |