p2pool: 2.1 -> 2.2.1

This commit is contained in:
Nathan Ruiz 2022-08-14 11:47:29 +00:00
parent f374d2e577
commit 8261de6e5d

View File

@ -1,5 +1,6 @@
{ stdenv { stdenv
, cmake , cmake
, curl
, fetchFromGitHub , fetchFromGitHub
, gss , gss
, hwloc , hwloc
@ -14,18 +15,18 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "p2pool"; pname = "p2pool";
version = "2.1"; version = "2.2.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "SChernykh"; owner = "SChernykh";
repo = "p2pool"; repo = "p2pool";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-cpBMzYLcU93GXYkBhUdoRovjQ2hd1+pAt6d9aAOaZT8="; sha256 = "sha256-iDswjKDGii1OnMmdhiisbwuWjs7omNOF+tubJLs69qY=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
nativeBuildInputs = [ cmake pkg-config ]; nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libuv zeromq libsodium gss hwloc openssl ]; buildInputs = [ libuv zeromq libsodium gss hwloc openssl curl ];
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall