mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 19:23:50 +00:00
43 lines
1006 B
Nix
43 lines
1006 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, woodpecker-plugin-git
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "woodpecker-plugin-git";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "woodpecker-ci";
|
|
repo = "plugin-git";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-BQG1+icfV21qZCwgNvLQm8+1f5WF8owKnQKTIF7O80A=";
|
|
};
|
|
|
|
vendorHash = "sha256-ol5k37gGFsyeEnGOVcJaerkIejShHyNCBu4RZ8WyHvU=";
|
|
|
|
CGO_ENABLED = "0";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=${version}"
|
|
];
|
|
|
|
# Checks fail because they require network access.
|
|
doCheck = false;
|
|
|
|
passthru.tests.version = testers.testVersion { package = woodpecker-plugin-git; };
|
|
|
|
meta = with lib; {
|
|
description = "Woodpecker plugin for cloning Git repositories.";
|
|
homepage = "https://woodpecker-ci.org/";
|
|
changelog = "https://github.com/woodpecker-ci/plugin-git/releases/tag/${version}";
|
|
license = licenses.asl20;
|
|
mainProgram = "plugin-git";
|
|
maintainers = with maintainers; [ ambroisie ];
|
|
};
|
|
}
|