rekahsoft
/
guix-config
Archived
1
1
Fork 0
This repository has been archived on 2021-03-07. You can view files and clone it, but cannot push or open issues or pull requests.
guix-config/bat.scm

22 lines
656 B
Scheme
Raw Normal View History

(use-modules (guix packages)
(guix download)
(guix build-system cargo-build-system)
(guix licenses))
(package
(name "bat")
(version "0.9.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/sharkdp/bat/archive/v" version
".tar.gz"))
(sha256
(base32
"UPDATE ME"))))
(build-system cargo-build-system)
(synopsis "A cat(1) clone with wings")
(description
"A cat(1) clone with syntax highlighting and Git integration")
(home-page "https://github.com/sharkdp/bat")
(license expat))