zitadel-tools: init at 0.4.0

This commit is contained in:
Janik H 2023-05-27 22:59:12 +02:00
parent 901f3e3cad
commit 9d519307e3
No known key found for this signature in database
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "zitadel-tools";
version = "0.4.0";
src = fetchFromGitHub {
owner = "zitadel";
repo = "zitadel-tools";
rev = "v${version}";
hash = "sha256-yKSpWvv/xW7ID0KhPIsrZOEWuuhEqpJuiswqO71ooEw=";
};
vendorHash = "sha256-ZS8m3zjLWvX3kFty2jpObw+rfyozJ3yDfZBcFCdD96U=";
ldflags = [
"-s" "-w"
"-X main.version=${version}"
];
meta = with lib; {
description = "Helper tools for zitadel";
homepage = "https://github.com/zitadel/zitadel-tools";
license = licenses.asl20;
maintainers = with maintainers; [ janik ];
};
}

View file

@ -24732,6 +24732,8 @@ with pkgs;
zita-resampler = callPackage ../development/libraries/audio/zita-resampler { };
zitadel-tools = callPackage ../tools/misc/zitadel-tools { };
zix = callPackage ../development/libraries/audio/zix { };
zz = callPackage ../development/compilers/zz { };