2021-03-04 09:28:31 +00:00
|
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, cmake, pandoc, pkg-config, zlib
|
2021-02-12 04:18:07 +00:00
|
|
|
|
, Security, libiconv, installShellFiles
|
2018-03-01 17:24:57 +00:00
|
|
|
|
}:
|
2016-02-15 20:43:31 +00:00
|
|
|
|
|
2021-02-27 10:25:04 +00:00
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
|
pname = "exa";
|
2021-04-13 02:06:52 +01:00
|
|
|
|
version = "0.10.1";
|
2016-02-15 20:43:31 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "ogham";
|
2021-02-27 10:25:04 +00:00
|
|
|
|
repo = pname;
|
2021-04-03 18:37:11 +01:00
|
|
|
|
rev = "v${version}";
|
2021-04-13 02:06:52 +01:00
|
|
|
|
sha256 = "sha256-vChsy/FrJEzTO5O+XFycPMP3jqOeea/hfsC0jJbqUVI=";
|
2016-02-15 20:43:31 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-04-13 02:06:52 +01:00
|
|
|
|
# Cargo.lock is outdated
|
|
|
|
|
cargoPatches = [ ./update-cargo-lock.diff ];
|
|
|
|
|
|
|
|
|
|
cargoSha256 = "sha256-ah8IjShmivS6IWL3ku/4/j+WNr/LdUnh1YJnPdaFdcM=";
|
|
|
|
|
|
2021-09-07 07:19:50 +01:00
|
|
|
|
nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ];
|
2018-03-01 17:24:57 +00:00
|
|
|
|
buildInputs = [ zlib ]
|
2021-02-12 04:18:07 +00:00
|
|
|
|
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
|
2016-02-15 20:43:31 +00:00
|
|
|
|
|
2021-09-07 07:19:50 +01:00
|
|
|
|
outputs = [ "out" "man" ];
|
2018-05-13 20:49:23 +01:00
|
|
|
|
|
2021-09-07 07:19:50 +01:00
|
|
|
|
postInstall = ''
|
2021-02-27 10:25:04 +00:00
|
|
|
|
pandoc --standalone -f markdown -t man man/exa.1.md > man/exa.1
|
|
|
|
|
pandoc --standalone -f markdown -t man man/exa_colors.5.md > man/exa_colors.5
|
|
|
|
|
installManPage man/exa.1 man/exa_colors.5
|
2019-09-08 22:59:09 +01:00
|
|
|
|
installShellCompletion \
|
2021-02-27 10:25:04 +00:00
|
|
|
|
--name exa completions/completions.bash \
|
|
|
|
|
--name exa.fish completions/completions.fish \
|
|
|
|
|
--name _exa completions/completions.zsh
|
2018-05-13 20:49:23 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2016-02-15 20:43:31 +00:00
|
|
|
|
# Some tests fail, but Travis ensures a proper build
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2016-02-15 20:43:31 +00:00
|
|
|
|
description = "Replacement for 'ls' written in Rust";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
exa is a modern replacement for ls. It uses colours for information by
|
|
|
|
|
default, helping you distinguish between many types of files, such as
|
|
|
|
|
whether you are the owner, or in the owning group. It also has extra
|
|
|
|
|
features not present in the original ls, such as viewing the Git status
|
|
|
|
|
for a directory, or recursing into directories with a tree view. exa is
|
|
|
|
|
written in Rust, so it’s small, fast, and portable.
|
|
|
|
|
'';
|
2021-04-13 02:06:52 +01:00
|
|
|
|
changelog = "https://github.com/ogham/exa/releases/tag/v${version}";
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://the.exa.website";
|
2016-02-15 20:43:31 +00:00
|
|
|
|
license = licenses.mit;
|
2021-04-03 18:37:11 +01:00
|
|
|
|
maintainers = with maintainers; [ ehegnes lilyball globin fortuneteller2k ];
|
2016-02-15 20:43:31 +00:00
|
|
|
|
};
|
|
|
|
|
}
|