Skip to content

Commit

Permalink
woodpecker-pipeline-transform: init at 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ambroisie committed Mar 18, 2023
1 parent 658070e commit e608077
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitea }:
buildGoModule rec {
pname = "woodpecker-pipeline-transform";
version = "0.1.1";

src = fetchFromGitea {
domain = "codeberg.org";
owner = "lafriks";
repo = "woodpecker-pipeline-transform";
rev = "v${version}";
sha256 = "sha256-tWDMbOkajZ3BB32Vl630EZrY+Owm72MD2Z2JjMucVkI=";
};

vendorHash = "sha256-qKzGALMagf6QHeLdABfNGG4f/3K/F6CjVYjOJtyTNoM=";

meta = with lib; {
description = "Utility to convert different pipelines to Woodpecker CI pipelines";
homepage = "https://codeberg.org/lafriks/woodpecker-pipeline-transform";
license = licenses.mit;
mainProgram = "pipeline-convert";
maintainers = with maintainers; [ ambroisie ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13393,6 +13393,8 @@ with pkgs;

woodpecker-cli = callPackage ../development/tools/continuous-integration/woodpecker/cli.nix { };

woodpecker-pipeline-transform = callPackage ../development/tools/continuous-integration/woodpecker-pipeline-transform { };

woodpecker-server = callPackage ../development/tools/continuous-integration/woodpecker/server.nix {
woodpecker-frontend = callPackage ../development/tools/continuous-integration/woodpecker/frontend.nix { };
};
Expand Down

0 comments on commit e608077

Please sign in to comment.