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/exa.scm

22 lines
900 B
Scheme
Raw Normal View History

(use-modules (guix packages)
(guix download)
(guix build-system cargo-build-system)
(guix licenses))
(package
(name "exa")
(version "0.8.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/ogham/exa/archive/v" version
".tar.gz"))
(sha256
(base32
"UPDATE ME"))))
(build-system cargo-build-system)
(synopsis "A modern version of 'ls'")
(description
"exa is a modern replacement for the command-line program ls that ships with Unix and Linux operating systems, with more features and better defaults. It uses colours to distinguish file types and metadata. It knows about symlinks, extended attributes, and Git. And its small, fast, and just one single binary.")
(home-page "https://the.exa.website/")
(license expat))