2021-11-19 12:43:28 +00:00
|
|
|
{ stdenv
|
|
|
|
, cmake
|
2022-08-14 12:47:29 +01:00
|
|
|
, curl
|
2021-11-19 12:43:28 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, gss
|
|
|
|
, hwloc
|
|
|
|
, lib
|
|
|
|
, libsodium
|
|
|
|
, libuv
|
2022-02-02 10:46:13 +00:00
|
|
|
, nix-update-script
|
2021-11-19 12:43:28 +00:00
|
|
|
, openssl
|
|
|
|
, pkg-config
|
|
|
|
, zeromq
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "p2pool";
|
2022-08-14 12:47:29 +01:00
|
|
|
version = "2.2.1";
|
2021-11-19 12:43:28 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SChernykh";
|
|
|
|
repo = "p2pool";
|
|
|
|
rev = "v${version}";
|
2022-08-14 12:47:29 +01:00
|
|
|
sha256 = "sha256-iDswjKDGii1OnMmdhiisbwuWjs7omNOF+tubJLs69qY=";
|
2021-11-19 12:43:28 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2022-08-14 12:47:29 +01:00
|
|
|
buildInputs = [ libuv zeromq libsodium gss hwloc openssl curl ];
|
2021-11-19 12:43:28 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -vD p2pool $out/bin/p2pool
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2022-02-02 10:46:13 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = nix-update-script {
|
|
|
|
attrPath = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-11-19 12:43:28 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Decentralized pool for Monero mining";
|
|
|
|
homepage = "https://github.com/SChernykh/p2pool";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ ratsclub ];
|
|
|
|
};
|
|
|
|
}
|