From 6a83951e8a77cab1db686a3c8a5b7836d1f46736 Mon Sep 17 00:00:00 2001 From: luftmensch-luftmensch Date: Tue, 11 Jun 2024 11:30:13 +0200 Subject: [PATCH] =?UTF-8?q?woodpecker-pipeline-transform:=200.1.1=20?= =?UTF-8?q?=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../woodpecker-pipeline-transform/default.nix | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) 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 + ]; }; }