nixpkgs/pkgs/by-name/ca/cauwugo/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate, installShellFiles, stdenv }:
2022-10-20 03:54:07 +01:00
rustPlatform.buildRustPackage rec {
pname = "cauwugo";
version = "0.1.0";
src = fetchCrate {
inherit version;
pname = "bpaf_cauwugo";
hash = "sha256-9gWUu2qbscKlbWZlRbOn+rrmizegkHxPnwnAmpaV1Ww=";
2022-10-20 03:54:07 +01:00
};
cargoHash = "sha256-dXlSBb3ey3dAiifrQ9Bbhscnm1QmcChiQbX1ic069V4=";
2022-10-20 03:54:07 +01:00
nativeBuildInputs = [ installShellFiles ];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
2022-10-20 03:54:07 +01:00
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";
2022-10-20 03:54:07 +01:00
homepage = "https://github.com/pacak/bpaf/tree/master/bpaf_cauwugo";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ];
};
}