Merge pull request #186642 from nathanruiz/p2pool

p2pool: 2.1 -> 2.2.1
This commit is contained in:
Jonas Heinrich
2022-08-16 15:46:57 +02:00
committed by GitHub
+4 -3
View File
@@ -1,5 +1,6 @@
{ stdenv
, cmake
, curl
, fetchFromGitHub
, gss
, hwloc
@@ -14,18 +15,18 @@
stdenv.mkDerivation rec {
pname = "p2pool";
version = "2.1";
version = "2.2.1";
src = fetchFromGitHub {
owner = "SChernykh";
repo = "p2pool";
rev = "v${version}";
sha256 = "sha256-cpBMzYLcU93GXYkBhUdoRovjQ2hd1+pAt6d9aAOaZT8=";
sha256 = "sha256-iDswjKDGii1OnMmdhiisbwuWjs7omNOF+tubJLs69qY=";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libuv zeromq libsodium gss hwloc openssl ];
buildInputs = [ libuv zeromq libsodium gss hwloc openssl curl ];
installPhase = ''
runHook preInstall