mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
35 lines
859 B
Nix
35 lines
859 B
Nix
{ stdenv, lib, fetchFromGitHub, cmake, libuv, libmicrohttpd, openssl
|
|
, donateLevel ? 0
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xmrig-proxy";
|
|
version = "5.10.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xmrig";
|
|
repo = "xmrig-proxy";
|
|
rev = "v${version}";
|
|
sha256 = "1mkamkqhqj7nbvaxdim1rbc3f5sw410wzly4ln73ackzlvdwn319";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ libuv libmicrohttpd openssl ];
|
|
|
|
postPatch = ''
|
|
# Link dynamically against libuuid instead of statically
|
|
substituteInPlace CMakeLists.txt --replace uuid.a uuid
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|