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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1 KiB
Nix
Raw Normal View History

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