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

  subPackages = "cmd/cli";

  CGO_ENABLED = 0;

  meta = common.meta // {
    description = "Command line client for the Woodpecker Continuous Integration server";
  };
}