2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-04-09 09:51:59 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, installShellFiles
|
2022-04-26 15:13:35 +00:00
|
|
|
, pandoc
|
2022-04-20 14:40:48 +00:00
|
|
|
, testers
|
2022-01-16 10:52:47 +00:00
|
|
|
, lsd
|
2020-04-09 09:51:59 +00:00
|
|
|
}:
|
2019-03-08 18:59:12 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-03-17 19:20:03 +00:00
|
|
|
pname = "lsd";
|
2022-09-13 04:55:12 +00:00
|
|
|
version = "0.23.1";
|
2019-03-08 18:59:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Peltoche";
|
2019-05-23 12:13:52 +00:00
|
|
|
repo = pname;
|
2019-03-08 18:59:12 +00:00
|
|
|
rev = version;
|
2022-09-13 04:55:12 +00:00
|
|
|
sha256 = "sha256-FY1odcKBl7zJ+MxfohkmC1e45fPQK3MKB3orQdCRpA4=";
|
2019-03-08 18:59:12 +00:00
|
|
|
};
|
|
|
|
|
2022-09-13 04:55:12 +00:00
|
|
|
cargoSha256 = "sha256-t7J7hIbLlRq99Yd2/3Zn+PbHhJtaJRdDluDXN0Hp/Jc=";
|
2019-03-08 18:59:12 +00:00
|
|
|
|
2022-04-26 15:13:35 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles pandoc ];
|
2020-04-09 09:51:59 +00:00
|
|
|
postInstall = ''
|
2022-04-26 15:13:35 +00:00
|
|
|
pandoc --standalone --to man doc/lsd.md -o lsd.1
|
|
|
|
installManPage lsd.1
|
|
|
|
|
2020-03-20 06:46:58 +00:00
|
|
|
installShellCompletion $releaseDir/build/lsd-*/out/{_lsd,lsd.{bash,fish}}
|
2019-03-08 18:59:12 +00:00
|
|
|
'';
|
|
|
|
|
2020-12-13 06:14:18 +00:00
|
|
|
# Found argument '--test-threads' which wasn't expected, or isn't valid in this context
|
|
|
|
doCheck = false;
|
2020-10-21 11:49:30 +00:00
|
|
|
|
2022-04-20 14:40:48 +00:00
|
|
|
passthru.tests.version = testers.testVersion {
|
2022-01-16 10:52:47 +00:00
|
|
|
package = lsd;
|
|
|
|
};
|
2020-11-28 18:19:46 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/Peltoche/lsd";
|
2019-03-08 18:59:12 +00:00
|
|
|
description = "The next gen ls command";
|
|
|
|
license = licenses.asl20;
|
2021-03-08 02:26:00 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne marsam zowoq SuperSandro2000 ];
|
2019-03-08 18:59:12 +00:00
|
|
|
};
|
|
|
|
}
|