about summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-03-26 10:49:03 +0800
committerGitHub <noreply@github.com>2023-03-26 10:49:03 +0800
commiteb366bc0b693eb3a885b4b3b2bbbe6955ae08466 (patch)
treed9768103d89f4471cd8053d299558c23e54327f6 /pkgs/development/tools/continuous-integration
parent66c029de4c6d32d7a52e81df351ea060bd6d6a1d (diff)
parente608077c090e17ea8b3de13c81bc2a99470bd4e2 (diff)
Merge pull request #221873 from ambroisie/add-woodpecker-pipeline-transform
woodpecker-pipeline-transform: init at 0.1.1
Diffstat (limited to 'pkgs/development/tools/continuous-integration')
-rw-r--r--pkgs/development/tools/continuous-integration/woodpecker-pipeline-transform/default.nix23
1 files changed, 23 insertions, 0 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
new file mode 100644
index 0000000000000..af05fafea40b4
--- /dev/null
+++ b/pkgs/development/tools/continuous-integration/woodpecker-pipeline-transform/default.nix
@@ -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 ];
+  };
+}