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

54 lines
1.6 KiB
Nix
Raw Normal View History

2018-03-01 17:24:57 +00:00
{ stdenv, fetchFromGitHub, rustPlatform, cmake, perl, pkgconfig, zlib
, darwin, libiconv, installShellFiles
2018-03-01 17:24:57 +00:00
}:
2016-02-15 20:43:31 +00:00
with rustPlatform;
2017-10-03 10:17:40 +00:00
buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "exa";
2019-07-15 06:44:25 +00:00
version = "0.9.0";
2016-02-15 20:43:31 +00:00
2019-07-15 06:44:25 +00:00
cargoSha256 = "1hgjp23rjd90wyf0nq6d5akjxdfjlaps54dv23zgwjvkhw24fidf";
2016-02-15 20:43:31 +00:00
src = fetchFromGitHub {
owner = "ogham";
repo = "exa";
2017-06-13 13:27:51 +00:00
rev = "v${version}";
2019-07-15 06:44:25 +00:00
sha256 = "14qlm9zb9v22hxbbi833xaq2b7qsxnmh15s317200vz5f1305hhw";
2016-02-15 20:43:31 +00:00
};
nativeBuildInputs = [ cmake pkgconfig perl installShellFiles ];
2018-03-01 17:24:57 +00:00
buildInputs = [ zlib ]
++ stdenv.lib.optionals stdenv.isDarwin [
libiconv darwin.apple_sdk.frameworks.Security ]
;
2016-02-15 20:43:31 +00:00
outputs = [ "out" "man" ];
postInstall = ''
installManPage contrib/man/exa.1
installShellCompletion \
--name exa contrib/completions.bash \
--name exa.fish contrib/completions.fish \
--name _exa contrib/completions.zsh
'';
2016-02-15 20:43:31 +00:00
# Some tests fail, but Travis ensures a proper build
doCheck = false;
meta = with stdenv.lib; {
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.
'';
2017-10-03 10:17:40 +00:00
homepage = https://the.exa.website;
2016-02-15 20:43:31 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ehegnes lilyball globin ];
2016-02-15 20:43:31 +00:00
};
}