Unverified Commit f6abbb7c authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #216816 from nathanruiz/p2pool

parents ab8f1821 d86c8974
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -19,13 +19,13 @@ let
in
stdenv.mkDerivation rec {
  pname = "p2pool";
  version = "2.7";
  version = "3.1";

  src = fetchFromGitHub {
    owner = "SChernykh";
    repo = "p2pool";
    rev = "v${version}";
    sha256 = "sha256-j3SVwat/LGw/iGcyNn8acR29Ob/WXDKyeCfDTsH+gxA=";
    sha256 = "sha256-yHxg/9QhaDNlUFzylftsJEk+pJoSoTfA0rJfcolBdTs=";
    fetchSubmodules = true;
  };

@@ -33,6 +33,8 @@ stdenv.mkDerivation rec {
  buildInputs = [ libuv zeromq libsodium gss hwloc openssl curl ]
    ++ lib.optionals stdenv.isDarwin [ Foundation ];

  cmakeFlags = ["-DWITH_LTO=OFF"];

  installPhase = ''
    runHook preInstall