about summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration/woodpecker/agent.nix
blob: 2865711d507c354c2cafc3ec865169e451cded40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, buildGoModule, callPackage, fetchFromGitHub }:
let
  common = callPackage ./common.nix { };
in
buildGoModule {
  pname = "woodpecker-agent";
  inherit (common) version src ldflags postBuild;
  vendorSha256 = null;

  subPackages = "cmd/agent";

  CGO_ENABLED = 0;

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