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

39 lines
926 B
Nix
Raw Normal View History

2020-04-09 12:51:59 +03:00
{ stdenv
2020-11-28 21:19:46 +03:00
, nixosTests
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";
2020-08-29 07:20:00 +03:00
version = "0.18.0";
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;
2020-08-29 07:20:00 +03:00
sha256 = "006fy87jrb77cpa6bywchcvq1p74vlpy151q1j4nsj8npbr02krj";
2019-03-08 21:59:12 +03:00
};
2020-08-29 07:20:00 +03:00
cargoSha256 = "0mrvcca9y0vylcrbfxxba45v05qxd8z91vb4in88px60xah0dy3q";
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-10-21 14:49:30 +03:00
checkFlags = stdenv.lib.optionals stdenv.isDarwin [
"--skip meta::filetype::test::test_socket_type"
];
2020-11-28 21:19:46 +03:00
passthru.tests = { inherit (nixosTests) lsd; };
2019-03-08 21:59:12 +03:00
meta = with stdenv.lib; {
homepage = "https://github.com/Peltoche/lsd";
2019-03-08 21:59:12 +03:00
description = "The next gen ls command";
license = licenses.asl20;
maintainers = with maintainers; [ Br1ght0ne marsam zowoq ];
2019-03-08 21:59:12 +03:00
};
}