Merge pull request #241936 from figsoda/complgen
complgen: init at unstable-2023-07-05
This commit is contained in:
commit
cc4859ab70
2 changed files with 27 additions and 0 deletions
25
pkgs/development/tools/misc/complgen/default.nix
Normal file
25
pkgs/development/tools/misc/complgen/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -18492,6 +18492,8 @@ with pkgs;
|
||||||
|
|
||||||
complexity = callPackage ../development/tools/misc/complexity { };
|
complexity = callPackage ../development/tools/misc/complexity { };
|
||||||
|
|
||||||
|
complgen = callPackage ../development/tools/misc/complgen { };
|
||||||
|
|
||||||
conan = callPackage ../development/tools/build-managers/conan { };
|
conan = callPackage ../development/tools/build-managers/conan { };
|
||||||
|
|
||||||
cookiecutter = with python3Packages; toPythonApplication cookiecutter;
|
cookiecutter = with python3Packages; toPythonApplication cookiecutter;
|
||||||
|
|
Loading…
Reference in a new issue