2017-06-13 16:27:51 +03:00
|
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, cmake, perl, pkgconfig, zlib }:
|
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}";
|
2017-10-03 13:17:40 +03:00
|
|
|
|
version = "0.8.0";
|
2016-02-15 23:43:31 +03:00
|
|
|
|
|
2017-08-05 17:38:48 +03:00
|
|
|
|
cargoSha256 = "08zzn3a32xfjkmpawcjppn1mr26ws3iv40cckiz8ldz4qc8y9gdh";
|
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}";
|
2017-10-03 13:17:40 +03:00
|
|
|
|
sha256 = "0jy11a3xfnfnmyw1kjmv4ffavhijs8c940kw24vafklnacx5n88m";
|
2016-02-15 23:43:31 +03:00
|
|
|
|
};
|
|
|
|
|
|
2017-04-04 12:00:38 +03:00
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig perl ];
|
2017-06-13 16:27:51 +03:00
|
|
|
|
buildInputs = [ zlib ];
|
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 it’s 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;
|
2017-12-06 01:20:11 +03:00
|
|
|
|
maintainers = [ maintainers.ehegnes ];
|
2016-02-15 23:43:31 +03:00
|
|
|
|
};
|
|
|
|
|
}
|