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

39 lines
1.2 KiB
Nix
Raw Normal View History

2017-06-13 13:27:51 +00:00
{ stdenv, fetchFromGitHub, rustPlatform, cmake, perl, pkgconfig, zlib }:
2016-02-15 20:43:31 +00:00
with rustPlatform;
2017-10-03 10:17:40 +00:00
buildRustPackage rec {
2017-06-13 13:27:51 +00:00
name = "exa-${version}";
2017-10-03 10:17:40 +00:00
version = "0.8.0";
2016-02-15 20:43:31 +00:00
cargoSha256 = "08zzn3a32xfjkmpawcjppn1mr26ws3iv40cckiz8ldz4qc8y9gdh";
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}";
2017-10-03 10:17:40 +00:00
sha256 = "0jy11a3xfnfnmyw1kjmv4ffavhijs8c940kw24vafklnacx5n88m";
2016-02-15 20:43:31 +00:00
};
nativeBuildInputs = [ cmake pkgconfig perl ];
2017-06-13 13:27:51 +00:00
buildInputs = [ zlib ];
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 = [ maintainers.ehegnes ];
2016-02-15 20:43:31 +00:00
};
}