pkgs: add woodpecker
This is just the same version as upstream, but following the `next` version.
This commit is contained in:
parent
281d98b295
commit
ea57ad3eb8
9 changed files with 3445 additions and 0 deletions
16
pkgs/woodpecker/cli.nix
Normal file
16
pkgs/woodpecker/cli.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ lib, buildGoModule, callPackage, fetchFromGitHub }:
|
||||
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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue