about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/rust/cauwugo/default.nix
blob: 119e0f59841db2eb822f78f6d446aeb9b675cb5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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";
    homepage = "https://github.com/pacak/bpaf/tree/master/bpaf_cauwugo";
    license = with licenses; [ mit /* or */ asl20 ];
    maintainers = with maintainers; [ figsoda ];
  };
}