13fbea4970
Diff: https://github.com/bluekeyes/patch2pr/compare/v0.21.0...v0.22.0 Changelog: https://github.com/bluekeyes/patch2pr/releases/tag/v0.22.0
40 lines
986 B
Nix
40 lines
986 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, patch2pr
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "patch2pr";
|
|
version = "0.22.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bluekeyes";
|
|
repo = "patch2pr";
|
|
rev = "v${version}";
|
|
hash = "sha256-tG0pSXmrWT5PCcR25XngbKAS3q9jKdDKqWdPqA62omE=";
|
|
};
|
|
|
|
vendorHash = "sha256-Z6BHUD7WrEpUmCaLvrFYCQCSbhPhee+gR5ep1oLzqbE=";
|
|
|
|
ldflags = [
|
|
"-X main.version=${version}"
|
|
"-X main.commit=${src.rev}"
|
|
];
|
|
|
|
passthru.tests.patch2pr-version = testers.testVersion {
|
|
package = patch2pr;
|
|
command = "${patch2pr.meta.mainProgram} --version";
|
|
version = version;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Create pull requests from patches without cloning the repository";
|
|
homepage = "https://github.com/bluekeyes/patch2pr";
|
|
changelog = "https://github.com/bluekeyes/patch2pr/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ katrinafyi ];
|
|
mainProgram = "patch2pr";
|
|
};
|
|
}
|