mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
41 lines
986 B
Nix
41 lines
986 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, patch2pr
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "patch2pr";
|
|
version = "0.29.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bluekeyes";
|
|
repo = "patch2pr";
|
|
rev = "v${version}";
|
|
hash = "sha256-eWOzK08ZlNORaRRtDumxOhsQWNXxk48jxcanwhEOChY=";
|
|
};
|
|
|
|
vendorHash = "sha256-x2w1HYrJo0HqyGGlIaxKqy1XYj/akQm0ijbYuK7qg58=";
|
|
|
|
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";
|
|
};
|
|
}
|