biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / continuous-integration / woodpecker / agent.nix
blob5bbc4cf99ceaa7b3230ebb4a1a5231617d87d950
1 { buildGoModule, callPackage }:
2 let
3   common = callPackage ./common.nix { };
4 in
5 buildGoModule {
6   pname = "woodpecker-agent";
7   inherit (common) version src ldflags postInstall vendorHash;
9   subPackages = "cmd/agent";
11   CGO_ENABLED = 0;
13   meta = common.meta // {
14     description = "Woodpecker Continuous Integration agent";
15     mainProgram = "woodpecker-agent";
16   };