Merge pull request #241936 from figsoda/complgen

complgen: init at unstable-2023-07-05
This commit is contained in:
figsoda 2023-07-08 08:46:26 -04:00 committed by GitHub
commit cc4859ab70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage {
pname = "complgen";
version = "unstable-2023-07-05";
src = fetchFromGitHub {
owner = "adaszko";
repo = "complgen";
rev = "e23474c3bd4544a8e6f7b51947616dbdb18fe1dd";
hash = "sha256-Ura4/yMLVRlgTiNiXNPMtKu4cPWge0bLQp/n+tgeDiM=";
};
cargoHash = "sha256-P7wHKrRUVlrLAaLYhVH/p3oOc7UCGP3aQZotVxyeJTs=";
meta = with lib; {
description = "Generate {bash,fish,zsh} completions from a single EBNF-like grammar";
homepage = "https://github.com/adaszko/complgen";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -18492,6 +18492,8 @@ with pkgs;
complexity = callPackage ../development/tools/misc/complexity { };
complgen = callPackage ../development/tools/misc/complgen { };
conan = callPackage ../development/tools/build-managers/conan { };
cookiecutter = with python3Packages; toPythonApplication cookiecutter;