Unverified Commit d51f8579 authored by Bruno BELANYI's avatar Bruno BELANYI Committed by GitHub
Browse files

Merge pull request #319028 from luftmensch-luftmensch/woodpecker-pipeline-transform_0.2.0

woodpecker-pipeline-transform: 0.1.1 → 0.2.0
parents 15427ed7 d488acce
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ 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
    ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -14238,8 +14238,6 @@ with pkgs;
  woodpecker-cli = callPackage ../development/tools/continuous-integration/woodpecker/cli.nix { };
  woodpecker-pipeline-transform = callPackage ../development/tools/continuous-integration/woodpecker-pipeline-transform { };
  woodpecker-plugin-git = callPackage ../development/tools/continuous-integration/woodpecker-plugin-git { };
  woodpecker-server = callPackage ../development/tools/continuous-integration/woodpecker/server.nix { };