mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
Merge pull request #196860 from figsoda/cauwugo
This commit is contained in:
commit
6d8a839e9e
30
pkgs/development/tools/rust/cauwugo/default.nix
Normal file
30
pkgs/development/tools/rust/cauwugo/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -14981,6 +14981,8 @@ with pkgs;
|
|||||||
|
|
||||||
cargo-zigbuild = callPackage ../development/tools/rust/cargo-zigbuild { };
|
cargo-zigbuild = callPackage ../development/tools/rust/cargo-zigbuild { };
|
||||||
|
|
||||||
|
cauwugo = callPackage ../development/tools/rust/cauwugo { };
|
||||||
|
|
||||||
crate2nix = callPackage ../development/tools/rust/crate2nix { };
|
crate2nix = callPackage ../development/tools/rust/crate2nix { };
|
||||||
|
|
||||||
convco = callPackage ../development/tools/convco {
|
convco = callPackage ../development/tools/convco {
|
||||||
|
Loading…
Reference in New Issue
Block a user