[Backport release-25.05] p2pool: 4.4 -> 4.9 (#427339)

This commit is contained in:
Philip Taron
2025-07-23 07:48:28 -07:00
committed by GitHub
2 changed files with 14 additions and 3 deletions

View File

@@ -11021,6 +11021,13 @@
githubId = 45084216;
keys = [ { fingerprint = "1BF9 8D10 E0D0 0B41 5723 5836 4C13 3A84 E646 9228"; } ];
};
JacoMalan1 = {
name = "Jaco Malan";
email = "jacom@codelog.co.za";
github = "JacoMalan1";
githubId = 10290409;
keys = [ { fingerprint = "339C 9213 7F2D 5D6E 2B6A 6E98 240B B4C4 27BC 327A"; } ];
};
jaculabilis = {
name = "Tim Van Baak";
email = "tim.vanbaak@gmail.com";

View File

@@ -16,13 +16,13 @@
stdenv.mkDerivation rec {
pname = "p2pool";
version = "4.4";
version = "4.9";
src = fetchFromGitHub {
owner = "SChernykh";
repo = "p2pool";
rev = "v${version}";
hash = "sha256-+wkcTkHhGNanCznL5d9yUezi9wLIchxt6TPPpEUqgN8=";
hash = "sha256-nFoR5n6vm6Q1UBxX+3U6O6NExcrM1Mab+WjEOgRSKCE=";
fetchSubmodules = true;
};
@@ -58,8 +58,12 @@ stdenv.mkDerivation rec {
description = "Decentralized pool for Monero mining";
homepage = "https://github.com/SChernykh/p2pool";
license = licenses.gpl3Only;
maintainers = with maintainers; [ ratsclub ];
maintainers = with maintainers; [
ratsclub
JacoMalan1
];
mainProgram = "p2pool";
platforms = platforms.all;
broken = stdenv.hostPlatform.isDarwin;
};
}