From 29a02f22b1de378c9d2f15c25dc3c4685cd04b5b Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Fri, 1 Feb 2019 15:18:15 -0500 Subject: [PATCH] Add WIP exa and bat packages Signed-off-by: Collin J. Doering --- bat.scm | 21 +++++++++++++++++++++ exa.scm | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 bat.scm create mode 100644 exa.scm diff --git a/bat.scm b/bat.scm new file mode 100644 index 0000000..f940577 --- /dev/null +++ b/bat.scm @@ -0,0 +1,21 @@ +(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)) diff --git a/exa.scm b/exa.scm new file mode 100644 index 0000000..4b5142f --- /dev/null +++ b/exa.scm @@ -0,0 +1,21 @@ +(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 it’s small, fast, and just one single binary.") + (home-page "https://the.exa.website/") + (license expat))