nixpkgs/pkgs/development/tools/continuous-integration/woodpecker/server.nix
2024-01-26 22:00:25 +00:00

22 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";
};
}