1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 19:15:39 +00:00
nixpkgs/pkgs/applications/misc/xmrig/proxy.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

2019-02-11 22:26:47 +00:00
{ stdenv, lib, fetchFromGitHub, cmake, libuv, libmicrohttpd, libuuid, openssl
2018-04-09 13:00:42 +01:00
, donateLevel ? 0
}:
stdenv.mkDerivation rec {
name = "xmrig-proxy-${version}";
version = "2.14.1";
2018-04-09 13:00:42 +01:00
src = fetchFromGitHub {
owner = "xmrig";
repo = "xmrig-proxy";
rev = "v${version}";
sha256 = "1sw00qz4yg8cwmm3s64bqr3lki6bxmlsi4ankyy2l4dx1vs9kf6r";
2018-04-09 13:00:42 +01:00
};
nativeBuildInputs = [ cmake ];
2019-02-11 22:26:47 +00:00
buildInputs = [ libuv libmicrohttpd libuuid openssl ];
2018-04-09 13:00:42 +01:00
postPatch = ''
2019-02-11 22:26:47 +00:00
# Set default donation level to 0%. Can be increased at runtime via --donate-level option.
substituteInPlace src/donate.h \
--replace "kDefaultDonateLevel = 2;" "kDefaultDonateLevel = ${toString donateLevel};"
# Link dynamically against libuuid instead of statically
substituteInPlace CMakeLists.txt --replace uuid.a uuid
2018-04-09 13:00:42 +01:00
'';
installPhase = ''
install -vD xmrig-proxy $out/bin/xmrig-proxy
'';
meta = with lib; {
description = "Monero (XMR) Stratum protocol proxy";
homepage = "https://github.com/xmrig/xmrig-proxy";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ aij ];
};
}