Merge pull request #252770 from figsoda/complgen

complgen: unstable-2023-08-22 -> 0.1.2
This commit is contained in:
Weijia Wang 2023-09-01 23:32:46 +02:00 committed by GitHub
commit cded842dbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,22 +3,23 @@
, fetchFromGitHub
}:
rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage rec {
pname = "complgen";
version = "unstable-2023-08-22";
version = "0.1.2";
src = fetchFromGitHub {
owner = "adaszko";
repo = "complgen";
rev = "8c9b9c51f3465c6d858e15f442b63e94b2f5ed1b";
hash = "sha256-oYRaH3FbAFY7QujgFpUDD8gVam4+Gm9qROxCTMYBg9I=";
rev = "v${version}";
hash = "sha256-x6r6sLdPIpf1mLRu8gT94fGoaCtnjpUIlEbMt6uSBR8=";
};
cargoHash = "sha256-LHnIIkQLuY+A09qhxSiyLmUpX/dES7xBE5m1uRPI0i0=";
cargoHash = "sha256-jljrT8OymXx8OKxWU3rE52Nw5Fw9XFmgXaOMxdzMTe4=";
meta = with lib; {
description = "Generate {bash,fish,zsh} completions from a single EBNF-like grammar";
homepage = "https://github.com/adaszko/complgen";
changelog = "https://github.com/adaszko/complgen/blob/${src.rev}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
};