overlays: add 'woodpecker-2.0.0-rc.0'
The point was initially to quickly test the release candidate and wait for the official v2. Unfortunately I've encountered some issues trying to get the package working for the official version. So let's just roll with it for now...
This commit is contained in:
parent
49742deb18
commit
63314c9a4a
9 changed files with 3783 additions and 0 deletions
17
overlays/woodpecker-2.0.0-rc.0/agent.nix
Normal file
17
overlays/woodpecker-2.0.0-rc.0/agent.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ buildGoModule, callPackage }:
|
||||
let
|
||||
common = callPackage ./common.nix { };
|
||||
in
|
||||
buildGoModule {
|
||||
pname = "woodpecker-agent";
|
||||
inherit (common) version src ldflags postInstall vendorHash;
|
||||
|
||||
subPackages = "cmd/agent";
|
||||
|
||||
CGO_ENABLED = 0;
|
||||
|
||||
meta = common.meta // {
|
||||
description = "Woodpecker Continuous Integration agent";
|
||||
mainProgram = "woodpecker-agent";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue