nixpkgs/pkgs/applications/misc/minergate/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, dpkg, makeWrapper, fontconfig, freetype, openssl, xorg, xkeyboard_config }:
2018-04-21 17:33:13 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2018-04-21 17:33:13 +00:00
version = "8.1";
pname = "minergate";
2018-04-21 17:33:13 +00:00
src = fetchurl {
url = "https://minergate.com/download/ubuntu";
2018-04-21 17:33:13 +00:00
sha256 = "1dbbbb8e0735cde239fca9e82c096dcc882f6cecda20bba7c14720a614c16e13";
};
nativeBuildInputs = [ dpkg makeWrapper ];
phases = [ "installPhase" ];
installPhase = ''
dpkg-deb -x $src $out
2018-04-21 17:33:13 +00:00
pgm=$out/opt/minergate/minergate
interpreter=${stdenv.glibc}/lib/ld-linux-x86-64.so.2
patchelf --set-interpreter "$interpreter" $pgm
2021-01-15 05:42:41 +00:00
wrapProgram $pgm --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ fontconfig freetype openssl stdenv.cc.cc xorg.libX11 xorg.libxcb ]} --prefix "QT_XKB_CONFIG_ROOT" ":" "${xkeyboard_config}/share/X11/xkb"
2018-04-21 17:33:13 +00:00
rm $out/usr/bin/minergate
mkdir -p $out/bin
ln -s $out/opt/minergate/minergate $out/bin
'';
meta = with lib; {
2018-04-21 17:33:13 +00:00
description = "Minergate CPU/GPU mining software";
homepage = "https://www.minergate.com/";
2018-04-21 17:33:13 +00:00
license = licenses.unfree;
maintainers = with maintainers; [ bfortz ];
platforms = [ "x86_64-linux" ];
};
}