Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchCrate,
|
|
installShellFiles,
|
|
stdenv,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cauwugo";
|
|
version = "0.1.0";
|
|
|
|
src = fetchCrate {
|
|
inherit version;
|
|
pname = "bpaf_cauwugo";
|
|
hash = "sha256-9gWUu2qbscKlbWZlRbOn+rrmizegkHxPnwnAmpaV1Ww=";
|
|
};
|
|
|
|
cargoHash = "sha256-05wx0lqgMIVTe6OQTCUQXmaPeGPw43wuEuuGUsGV4VM=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
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 ];
|
|
};
|
|
}
|