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