2020-04-09 10:51:59 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
2019-03-08 18:59:12 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-03-17 19:20:03 +00:00
|
|
|
pname = "lsd";
|
2020-04-09 10:47:18 +01:00
|
|
|
version = "0.17.0";
|
2019-03-08 18:59:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Peltoche";
|
2019-05-23 13:13:52 +01:00
|
|
|
repo = pname;
|
2019-03-08 18:59:12 +00:00
|
|
|
rev = version;
|
2020-04-09 10:47:18 +01:00
|
|
|
sha256 = "1vyww54fl4yfvszr0dh8ym2jd9gilrccmwkvl7rbx70sfqzsgaai";
|
2019-03-08 18:59:12 +00:00
|
|
|
};
|
|
|
|
|
2020-04-09 10:47:18 +01:00
|
|
|
cargoSha256 = "13g0p6zh2b1z005lszll098d4lv62dzsxwhl76bianzrydif61lr";
|
2019-03-08 18:59:12 +00:00
|
|
|
|
2020-04-09 10:51:59 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion target/release/build/lsd-*/out/{_lsd,lsd.{bash,fish}}
|
2019-03-08 18:59:12 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Peltoche/lsd";
|
2019-03-08 18:59:12 +00:00
|
|
|
description = "The next gen ls command";
|
|
|
|
license = licenses.asl20;
|
2020-04-09 10:52:07 +01:00
|
|
|
maintainers = with maintainers; [ filalex77 marsam ];
|
2019-03-08 18:59:12 +00:00
|
|
|
};
|
|
|
|
}
|