2021-01-25 11:26:54 +03:00
|
|
|
{ lib
|
2020-04-09 12:51:59 +03:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
2019-03-08 21:59:12 +03:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-03-17 22:20:03 +03:00
|
|
|
pname = "lsd";
|
2021-03-08 05:26:00 +03:00
|
|
|
version = "0.20.1";
|
2019-03-08 21:59:12 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Peltoche";
|
2019-05-23 15:13:52 +03:00
|
|
|
repo = pname;
|
2019-03-08 21:59:12 +03:00
|
|
|
rev = version;
|
2021-03-08 05:26:00 +03:00
|
|
|
sha256 = "sha256-r/Rllu+tgKqz+vkxA8BSN+3V0lUUd6dEATfickQp4+s=";
|
2019-03-08 21:59:12 +03:00
|
|
|
};
|
|
|
|
|
2021-05-07 14:00:49 +03:00
|
|
|
cargoSha256 = "sha256-O8P29eYlHgmmAADZ/DgTBmj0ZOa+4u/Oee+TMF+/4Ro=";
|
2019-03-08 21:59:12 +03:00
|
|
|
|
2020-04-09 12:51:59 +03:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
2020-03-20 09:46:58 +03:00
|
|
|
installShellCompletion $releaseDir/build/lsd-*/out/{_lsd,lsd.{bash,fish}}
|
2019-03-08 21:59:12 +03:00
|
|
|
'';
|
|
|
|
|
2020-12-13 09:14:18 +03:00
|
|
|
# Found argument '--test-threads' which wasn't expected, or isn't valid in this context
|
|
|
|
doCheck = false;
|
2020-10-21 14:49:30 +03:00
|
|
|
|
2021-10-30 11:00:23 +03:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
runHook preInstallCheck
|
|
|
|
|
|
|
|
testFile=$(mktemp /tmp/lsd-test.XXXX)
|
|
|
|
echo 'abc' > $testFile
|
|
|
|
$out/bin/lsd --classic --blocks "size,name" -l $testFile | grep "4 B $testFile"
|
|
|
|
$out/bin/lsd --version | grep "${version}"
|
|
|
|
rm $testFile
|
|
|
|
|
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
2020-11-28 21:19:46 +03:00
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://github.com/Peltoche/lsd";
|
2019-03-08 21:59:12 +03:00
|
|
|
description = "The next gen ls command";
|
|
|
|
license = licenses.asl20;
|
2021-03-08 05:26:00 +03:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne marsam zowoq SuperSandro2000 ];
|
2019-03-08 21:59:12 +03:00
|
|
|
};
|
|
|
|
}
|