nixpkgs/pkgs/applications/misc/xmrig/proxy.nix

35 lines
858 B
Nix
Raw Normal View History

2020-04-15 13:56:10 +03:00
{ stdenv, lib, fetchFromGitHub, cmake, libuv, libmicrohttpd, openssl
2018-04-09 15:00:42 +03:00
, donateLevel ? 0
}:
stdenv.mkDerivation rec {
pname = "xmrig-proxy";
2021-09-05 05:43:50 +03:00
version = "6.15.0";
2018-04-09 15:00:42 +03:00
src = fetchFromGitHub {
owner = "xmrig";
repo = "xmrig-proxy";
rev = "v${version}";
2021-09-05 05:43:50 +03:00
sha256 = "sha256-ZNyD0P1vuX/FBPW6tg4WRcNCJpz9/gY+Bhipqngv3jY=";
2018-04-09 15:00:42 +03:00
};
nativeBuildInputs = [ cmake ];
2020-04-15 13:56:10 +03:00
buildInputs = [ libuv libmicrohttpd openssl ];
2018-04-09 15:00:42 +03:00
postPatch = ''
2019-02-12 01:26:47 +03:00
# Link dynamically against libuuid instead of statically
substituteInPlace CMakeLists.txt --replace uuid.a uuid
2018-04-09 15:00:42 +03: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 ];
};
}