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

35 lines
859 B
Nix
Raw Normal View History

2020-04-15 12:56:10 +02:00
{ stdenv, lib, fetchFromGitHub, cmake, libuv, libmicrohttpd, openssl
2018-04-09 14:00:42 +02:00
, donateLevel ? 0
}:
stdenv.mkDerivation rec {
pname = "xmrig-proxy";
2020-06-15 08:20:33 +02:00
version = "5.11.0";
2018-04-09 14:00:42 +02:00
src = fetchFromGitHub {
owner = "xmrig";
repo = "xmrig-proxy";
rev = "v${version}";
2020-06-15 08:20:33 +02:00
sha256 = "0wwvsmanvcn0kbb5zqrj8786yg9rmdbink6rsnsm7ifak1iwvls9";
2018-04-09 14:00:42 +02:00
};
nativeBuildInputs = [ cmake ];
2020-04-15 12:56:10 +02:00
buildInputs = [ libuv libmicrohttpd openssl ];
2018-04-09 14:00:42 +02:00
postPatch = ''
2019-02-11 23:26:47 +01:00
# Link dynamically against libuuid instead of statically
substituteInPlace CMakeLists.txt --replace uuid.a uuid
2018-04-09 14:00:42 +02: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 ];
};
}