diff --git a/pkgs/development/tools/continuous-integration/woodpecker-pipeline-transform/default.nix b/pkgs/development/tools/continuous-integration/woodpecker-pipeline-transform/default.nix index af05fafea40b..eee03a11d923 100644 --- a/pkgs/development/tools/continuous-integration/woodpecker-pipeline-transform/default.nix +++ b/pkgs/development/tools/continuous-integration/woodpecker-pipeline-transform/default.nix @@ -1,23 +1,31 @@ -{ lib, buildGoModule, fetchFromGitea }: +{ + lib, + buildGoModule, + fetchFromGitea, +}: buildGoModule rec { pname = "woodpecker-pipeline-transform"; - version = "0.1.1"; + version = "0.2.0"; src = fetchFromGitea { domain = "codeberg.org"; owner = "lafriks"; repo = "woodpecker-pipeline-transform"; rev = "v${version}"; - sha256 = "sha256-tWDMbOkajZ3BB32Vl630EZrY+Owm72MD2Z2JjMucVkI="; + sha256 = "sha256-ngtpWjbL/ccmKTNQdL3osduELYSxcOu5z5UtqclNNSY="; }; - vendorHash = "sha256-qKzGALMagf6QHeLdABfNGG4f/3K/F6CjVYjOJtyTNoM="; + vendorHash = "sha256-SZxFsn187UWZqaxwMDdzAmfpRLZSCIpbsAI1mAu7Z6w="; - meta = with lib; { + meta = { description = "Utility to convert different pipelines to Woodpecker CI pipelines"; + changelog = "https://codeberg.org/lafriks/woodpecker-pipeline-transform/src/tag/v${version}"; homepage = "https://codeberg.org/lafriks/woodpecker-pipeline-transform"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "pipeline-convert"; - maintainers = with maintainers; [ ambroisie ]; + maintainers = with lib.maintainers; [ + ambroisie + luftmensch-luftmensch + ]; }; }