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

58 lines
1.8 KiB
Nix
Raw Normal View History

2018-03-01 20:24:57 +03:00
{ stdenv, fetchFromGitHub, rustPlatform, cmake, perl, pkgconfig, zlib
, darwin, libiconv
}:
2016-02-15 23:43:31 +03:00
with rustPlatform;
2017-10-03 13:17:40 +03:00
buildRustPackage rec {
2017-06-13 16:27:51 +03:00
name = "exa-${version}";
2019-07-15 09:44:25 +03:00
version = "0.9.0";
2016-02-15 23:43:31 +03:00
2019-07-15 09:44:25 +03:00
cargoSha256 = "1hgjp23rjd90wyf0nq6d5akjxdfjlaps54dv23zgwjvkhw24fidf";
2016-02-15 23:43:31 +03:00
src = fetchFromGitHub {
owner = "ogham";
repo = "exa";
2017-06-13 16:27:51 +03:00
rev = "v${version}";
2019-07-15 09:44:25 +03:00
sha256 = "14qlm9zb9v22hxbbi833xaq2b7qsxnmh15s317200vz5f1305hhw";
2016-02-15 23:43:31 +03:00
};
nativeBuildInputs = [ cmake pkgconfig perl ];
2018-03-01 20:24:57 +03:00
buildInputs = [ zlib ]
++ stdenv.lib.optionals stdenv.isDarwin [
libiconv darwin.apple_sdk.frameworks.Security ]
;
2016-02-15 23:43:31 +03:00
postInstall = ''
mkdir -p $out/share/man/man1
cp contrib/man/exa.1 $out/share/man/man1/
mkdir -p $out/share/bash-completion/completions
cp contrib/completions.bash $out/share/bash-completion/completions/exa
mkdir -p $out/share/fish/vendor_completions.d
cp contrib/completions.fish $out/share/fish/vendor_completions.d/exa.fish
mkdir -p $out/share/zsh/site-functions
cp contrib/completions.zsh $out/share/zsh/site-functions/_exa
'';
2016-02-15 23:43:31 +03: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 13:17:40 +03:00
homepage = https://the.exa.website;
2016-02-15 23:43:31 +03:00
license = licenses.mit;
maintainers = with maintainers; [ ehegnes lilyball globin ];
2016-02-15 23:43:31 +03:00
};
}