From b357b3a8aa4d215f9f8b0c0eece8c5bf65ef7bfc Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 19 Oct 2022 22:54:07 -0400 Subject: [PATCH] cauwugo: init at 0.1.0 --- .../tools/rust/cauwugo/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/tools/rust/cauwugo/default.nix diff --git a/pkgs/development/tools/rust/cauwugo/default.nix b/pkgs/development/tools/rust/cauwugo/default.nix new file mode 100644 index 000000000000..119e0f59841d --- /dev/null +++ b/pkgs/development/tools/rust/cauwugo/default.nix @@ -0,0 +1,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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8e21d9b8cdd8..85017faa4aa2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14969,6 +14969,8 @@ with pkgs; cargo-zigbuild = callPackage ../development/tools/rust/cargo-zigbuild { }; + cauwugo = callPackage ../development/tools/rust/cauwugo { }; + crate2nix = callPackage ../development/tools/rust/crate2nix { }; convco = callPackage ../development/tools/convco {