nixpkgs/pkgs/tools/misc/exa/default.nix

56 lines
1.9 KiB
Nix
Raw Normal View History

{ 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 11:41:23 +00:00
pname = "exa";
2021-04-13 01:06:52 +00: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 17:37:11 +00:00
rev = "v${version}";
2021-04-13 01:06:52 +00:00
sha256 = "sha256-vChsy/FrJEzTO5O+XFycPMP3jqOeea/hfsC0jJbqUVI=";
2016-02-15 20:43:31 +00:00
};
2021-04-13 01:06:52 +00:00
# Cargo.lock is outdated
cargoPatches = [ ./update-cargo-lock.diff ];
cargoSha256 = "sha256-ah8IjShmivS6IWL3ku/4/j+WNr/LdUnh1YJnPdaFdcM=";
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
outputs = [ "out" "man" ];
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
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
'';
2016-02-15 20:43:31 +00:00
# Some tests fail, but Travis ensures a proper build
doCheck = false;
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 its small, fast, and portable.
'';
2021-04-13 01:06:52 +00:00
changelog = "https://github.com/ogham/exa/releases/tag/v${version}";
homepage = "https://the.exa.website";
2016-02-15 20:43:31 +00:00
license = licenses.mit;
2021-04-03 17:37:11 +00:00
maintainers = with maintainers; [ ehegnes lilyball globin fortuneteller2k ];
2016-02-15 20:43:31 +00:00
};
}