about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorluftmensch-luftmensch <valentinobocchetti59@gmail.com>2024-06-11 11:34:11 +0200
committerluftmensch-luftmensch <valentinobocchetti59@gmail.com>2024-06-11 11:34:11 +0200
commitd488acce882e18b6e846797a252b0d11d0cc9597 (patch)
tree15b930b1d5d969eff6e76b41f846c6c9193bd886 /pkgs/development/tools
parent6a83951e8a77cab1db686a3c8a5b7836d1f46736 (diff)
woodpecker-pipeline-transform: move to pkgs/by-name
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/continuous-integration/woodpecker-pipeline-transform/default.nix31
1 files changed, 0 insertions, 31 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
deleted file mode 100644
index eee03a11d9231..0000000000000
--- a/pkgs/development/tools/continuous-integration/woodpecker-pipeline-transform/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{
-  lib,
-  buildGoModule,
-  fetchFromGitea,
-}:
-buildGoModule rec {
-  pname = "woodpecker-pipeline-transform";
-  version = "0.2.0";
-
-  src = fetchFromGitea {
-    domain = "codeberg.org";
-    owner = "lafriks";
-    repo = "woodpecker-pipeline-transform";
-    rev = "v${version}";
-    sha256 = "sha256-ngtpWjbL/ccmKTNQdL3osduELYSxcOu5z5UtqclNNSY=";
-  };
-
-  vendorHash = "sha256-SZxFsn187UWZqaxwMDdzAmfpRLZSCIpbsAI1mAu7Z6w=";
-
-  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 = lib.licenses.mit;
-    mainProgram = "pipeline-convert";
-    maintainers = with lib.maintainers; [
-      ambroisie
-      luftmensch-luftmensch
-    ];
-  };
-}