mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
59 lines
1.3 KiB
Nix
59 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
installShellFiles,
|
|
apple-sdk_11,
|
|
pandoc,
|
|
testers,
|
|
lsd,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "lsd";
|
|
version = "1.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lsd-rs";
|
|
repo = "lsd";
|
|
rev = "v${version}";
|
|
hash = "sha256-LlMcBMb40yN+rlvGVsh7JaC3j9sF60YxitQQXe1q/oI=";
|
|
};
|
|
|
|
cargoHash = "sha256-yyXFtMyiMq6TaN9/7+BaBERHgubeA8SJGOr08Mn3RnY=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
pandoc
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ];
|
|
|
|
postInstall = ''
|
|
pandoc --standalone --to man doc/lsd.md -o lsd.1
|
|
installManPage lsd.1
|
|
|
|
installShellCompletion --cmd lsd \
|
|
--bash $releaseDir/build/lsd-*/out/lsd.bash \
|
|
--fish $releaseDir/build/lsd-*/out/lsd.fish \
|
|
--zsh $releaseDir/build/lsd-*/out/_lsd
|
|
'';
|
|
|
|
# Found argument '--test-threads' which wasn't expected, or isn't valid in this context
|
|
doCheck = false;
|
|
|
|
passthru.tests.version = testers.testVersion { package = lsd; };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/lsd-rs/lsd";
|
|
description = "Next gen ls command";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
zowoq
|
|
SuperSandro2000
|
|
];
|
|
mainProgram = "lsd";
|
|
};
|
|
}
|