depot/third_party/nixpkgs/pkgs/development/tools/rust/cauwugo/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

31 lines
990 B
Nix

{ lib, rustPlatform, fetchCrate, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "cauwugo";
version = "0.1.0";
src = fetchCrate {
inherit version;
pname = "bpaf_cauwugo";
hash = "sha256-9gWUu2qbscKlbWZlRbOn+rrmizegkHxPnwnAmpaV1Ww=";
};
cargoHash = "sha256-dXlSBb3ey3dAiifrQ9Bbhscnm1QmcChiQbX1ic069V4=";
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd cauwugo \
--bash <($out/bin/cauwugo --bpaf-complete-style-bash) \
--fish <($out/bin/cauwugo --bpaf-complete-style-fish) \
--zsh <($out/bin/cauwugo --bpaf-complete-style-zsh)
'';
meta = with lib; {
description = "Alternative cargo frontend that implements dynamic shell completion for usual cargo commands";
mainProgram = "cauwugo";
homepage = "https://github.com/pacak/bpaf/tree/master/bpaf_cauwugo";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ];
};
}