nixpkgs/pkgs/development/tools/rust/cauwugo/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

32 lines
997 B
Nix

{ lib, rustPlatform, fetchCrate, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "cauwugo";
version = "0.1.0";
src = fetchCrate {
inherit version;
pname = "bpaf_cauwugo";
sha256 = "sha256-9gWUu2qbscKlbWZlRbOn+rrmizegkHxPnwnAmpaV1Ww=";
};
cargoSha256 = "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 = "An 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 ];
};
}