summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration/woodpecker/server.nix
blob: d97412649b5dbac1dbedc89d5bfe37d734c20798 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildGoModule, callPackage, fetchFromGitHub, woodpecker-frontend }:
let
  common = callPackage ./common.nix { };
in
buildGoModule {
  pname = "woodpecker-server";
  inherit (common) version src ldflags postBuild;
  vendorSha256 = null;

  postPatch = ''
    cp -r ${woodpecker-frontend} web/dist
  '';

  subPackages = "cmd/server";

  CGO_ENABLED = 1;

  passthru = {
    inherit woodpecker-frontend;

    updateScript = ./update.sh;
  };

  meta = common.meta // {
    description = "Woodpecker Continuous Integration server";
  };
}