-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
woodpecker-pipeline-transform: init at 0.1.1
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
pkgs/development/tools/continuous-integration/woodpecker-pipeline-transform/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters