60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
21 lines
429 B
Nix
21 lines
429 B
Nix
{ buildGoModule, callPackage }:
|
|
let
|
|
common = callPackage ./common.nix { };
|
|
in
|
|
buildGoModule {
|
|
pname = "woodpecker-server";
|
|
inherit (common) version src ldflags postInstall vendorHash;
|
|
|
|
subPackages = "cmd/server";
|
|
|
|
CGO_ENABLED = 1;
|
|
|
|
passthru = {
|
|
updateScript = ./update.sh;
|
|
};
|
|
|
|
meta = common.meta // {
|
|
description = "Woodpecker Continuous Integration server";
|
|
mainProgram = "woodpecker-server";
|
|
};
|
|
}
|