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

38 lines
924 B
Nix
Raw Normal View History

2020-04-09 10:51:59 +01:00
{ stdenv
2020-11-28 18:19:46 +00:00
, nixosTests
2020-04-09 10:51:59 +01:00
, fetchFromGitHub
, rustPlatform
, installShellFiles
}:
2019-03-08 18:59:12 +00:00
rustPlatform.buildRustPackage rec {
2019-03-17 19:20:03 +00:00
pname = "lsd";
version = "0.19.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;
sha256 = "1iiczdsqw0i6cz492177z6lr8s7fikn151j8p76fmr77zk0bm6q2";
2019-03-08 18:59:12 +00:00
};
cargoSha256 = "1r2mkpicsyihlrim3bnmscgg5rnaijpvgq8c846zqj7ly8v8qqvg";
2019-03-08 18:59:12 +00:00
2020-04-09 10:51:59 +01:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
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
'';
# Found argument '--test-threads' which wasn't expected, or isn't valid in this context
doCheck = false;
2020-10-21 12:49:30 +01:00
2020-11-28 18:19:46 +00:00
passthru.tests = { inherit (nixosTests) lsd; };
2019-03-08 18:59:12 +00:00
meta = with stdenv.lib; {
homepage = "https://github.com/Peltoche/lsd";
2019-03-08 18:59:12 +00:00
description = "The next gen ls command";
license = licenses.asl20;
maintainers = with maintainers; [ Br1ght0ne marsam zowoq ];
2019-03-08 18:59:12 +00:00
};
}