nixpkgs/pkgs/by-name/p2/p2pool/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.3 KiB
Nix
Raw Normal View History

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
2023-01-23 04:38:09 +00:00
, darwin
2021-11-19 12:43:28 +00:00
}:
2023-01-23 04:38:09 +00:00
let
inherit (darwin.apple_sdk.frameworks) Foundation;
in
2021-11-19 12:43:28 +00:00
stdenv.mkDerivation rec {
pname = "p2pool";
2024-10-06 12:32:28 +01:00
version = "4.1.1";
2021-11-19 12:43:28 +00:00
src = fetchFromGitHub {
owner = "SChernykh";
repo = "p2pool";
rev = "v${version}";
2024-10-06 12:32:28 +01:00
hash = "sha256-rxsKbrgDdVtGEv63SHi3FbFpqU2j6ESksq0SDm78j+0=";
2021-11-19 12:43:28 +00:00
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake pkg-config ];
2023-01-23 04:38:09 +00:00
buildInputs = [ libuv zeromq libsodium gss hwloc openssl curl ]
++ lib.optionals stdenv.hostPlatform.isDarwin [ Foundation ];
2021-11-19 12:43:28 +00:00
2023-02-17 14:57:23 +00:00
cmakeFlags = ["-DWITH_LTO=OFF"];
2024-07-07 03:18:51 +01:00
env.NIX_CFLAGS_COMPILE = toString (lib.optionals (stdenv.hostPlatform.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "10.13") [
"-faligned-allocation"
]);
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 { };
2022-02-02 10:46:13 +00:00
};
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 ];
2024-02-11 02:19:15 +00:00
mainProgram = "p2pool";
2024-07-07 03:18:51 +01:00
platforms = platforms.all;
2021-11-19 12:43:28 +00:00
};
}