depot/third_party/nixpkgs/pkgs/development/tools/continuous-integration/woodpecker/server.nix

22 lines
429 B
Nix
Raw Normal View History

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