Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
991 B
Nix
42 lines
991 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
testers,
|
|
patch2pr,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "patch2pr";
|
|
version = "0.38.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bluekeyes";
|
|
repo = "patch2pr";
|
|
rev = "v${version}";
|
|
hash = "sha256-WkjO6FBeJ5E2bc4PT9lkfNq5CYL3Kh1Mgai+39YDzSU=";
|
|
};
|
|
|
|
vendorHash = "sha256-RiaFvvPwNxfQE6F93BdPT+LLmUkNC9sYOfHyFgG9/30=";
|
|
|
|
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 = {
|
|
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 = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ katrinafyi ];
|
|
mainProgram = "patch2pr";
|
|
};
|
|
}
|