about summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration/woodpecker/cli.nix
blob: b5eda9efb9173c430c792422ae675741bfaabe57 (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-cli";
  inherit (common) version src ldflags postBuild;
  vendorSha256 = null;

  subPackages = "cmd/cli";

  CGO_ENABLED = 0;

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