summary refs log tree commit diff
path: root/pkgs/applications/misc/minergate-cli
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-08-13 00:44:54 +0200
committerFelix Buehler <account@buehler.rocks>2021-08-13 00:44:54 +0200
commit3cff074290c12bd2afdb8b755e09b1f8460449a4 (patch)
tree0ac4530a17ae133d92cf5db2443d6d19b3cb4c47 /pkgs/applications/misc/minergate-cli
parent7f57fd7da8ee18337011313c55ab8dd10a881432 (diff)
downloadnixpkgs-3cff074290c12bd2afdb8b755e09b1f8460449a4.tar
nixpkgs-3cff074290c12bd2afdb8b755e09b1f8460449a4.tar.gz
nixpkgs-3cff074290c12bd2afdb8b755e09b1f8460449a4.tar.bz2
nixpkgs-3cff074290c12bd2afdb8b755e09b1f8460449a4.tar.lz
nixpkgs-3cff074290c12bd2afdb8b755e09b1f8460449a4.tar.xz
nixpkgs-3cff074290c12bd2afdb8b755e09b1f8460449a4.tar.zst
nixpkgs-3cff074290c12bd2afdb8b755e09b1f8460449a4.zip
minergate{,-cli}: remove due to bad reputation
Diffstat (limited to 'pkgs/applications/misc/minergate-cli')
-rw-r--r--pkgs/applications/misc/minergate-cli/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/applications/misc/minergate-cli/default.nix b/pkgs/applications/misc/minergate-cli/default.nix
deleted file mode 100644
index 0fe4103f613..00000000000
--- a/pkgs/applications/misc/minergate-cli/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ fetchurl, lib, stdenv, dpkg, makeWrapper, openssl }:
-
-stdenv.mkDerivation {
-  version = "8.2";
-  pname = "minergate-cli";
-  src = fetchurl {
-    url = "https://minergate.com/download/ubuntu-cli";
-    sha256 = "393c5ba236f6f92c449496fcda9509f4bfd3887422df98ffa59b3072124a99d8";
-  };
-
-  nativeBuildInputs = [ dpkg makeWrapper ];
-
-  phases = [ "installPhase" ];
-
-  installPhase = ''
-    dpkg-deb -x $src $out
-    pgm=$out/opt/minergate-cli/minergate-cli
-
-    interpreter=${stdenv.glibc}/lib/ld-linux-x86-64.so.2
-    patchelf --set-interpreter "$interpreter" $pgm
-
-    wrapProgram $pgm --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ openssl stdenv.cc.cc ]}
-
-    rm $out/usr/bin/minergate-cli
-    mkdir -p $out/bin
-    ln -s $pgm $out/bin
-  '';
-
-  meta = with lib; {
-    description = "Minergate CPU/GPU console client mining software";
-    homepage = "https://www.minergate.com/";
-    license = licenses.unfree;
-    maintainers = with maintainers; [ bfortz ];
-    platforms = [ "x86_64-linux" ];
-};
-}