summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorHerwig Hochleitner <herwig@bendlas.net>2018-02-15 23:36:21 +0100
committerHerwig Hochleitner <herwig@bendlas.net>2018-02-15 23:36:21 +0100
commite47e45c4cab3b281c8bce499a369b9f30ac5edcc (patch)
tree11b128b5ab54b067fe2b8d96db94907a5bc30152 /pkgs/applications/altcoins
parentd3ea26dc45d441ce5482477c6aee450048204c3a (diff)
downloadnixlib-e47e45c4cab3b281c8bce499a369b9f30ac5edcc.tar
nixlib-e47e45c4cab3b281c8bce499a369b9f30ac5edcc.tar.gz
nixlib-e47e45c4cab3b281c8bce499a369b9f30ac5edcc.tar.bz2
nixlib-e47e45c4cab3b281c8bce499a369b9f30ac5edcc.tar.lz
nixlib-e47e45c4cab3b281c8bce499a369b9f30ac5edcc.tar.xz
nixlib-e47e45c4cab3b281c8bce499a369b9f30ac5edcc.tar.zst
nixlib-e47e45c4cab3b281c8bce499a369b9f30ac5edcc.zip
Revert "zcashNh: init 0.4b"
This reverts commit d3ea26dc45d441ce5482477c6aee450048204c3a.

wrong commit, sorry
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/default.nix3
-rw-r--r--pkgs/applications/altcoins/zcash-nh.nix37
2 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/applications/altcoins/default.nix b/pkgs/applications/altcoins/default.nix
index 028bf2ffbce5..37df75ae110e 100644
--- a/pkgs/applications/altcoins/default.nix
+++ b/pkgs/applications/altcoins/default.nix
@@ -67,7 +67,4 @@ rec {
     withGui = false;
     openssl = openssl_1_1_0;
   };
-
-  zcashNh = callPackage ./zcash-nh.nix { };
-
 }
diff --git a/pkgs/applications/altcoins/zcash-nh.nix b/pkgs/applications/altcoins/zcash-nh.nix
deleted file mode 100644
index 3bf4645aa89c..000000000000
--- a/pkgs/applications/altcoins/zcash-nh.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ stdenv, fetchFromGitHub, cmake
-, cudatoolkit, boost }:
-let rev = "0.4b";
-    sha256 = "0825kspi1fjr5w4rpp7ay8fcsi7idl8abrgf2l51q6jwxippw49y";
-in stdenv.mkDerivation {
-  name = "nheqminer-${rev}";
-  src = fetchFromGitHub {
-    owner = "nicehash";
-    repo = "nheqminer";
-    inherit rev sha256;
-  };
-
-  nativeBuildInputs = [
-    cmake
-  ];
-
-  buildInputs = [
-    cudatoolkit boost
-  ];
-
-  buildCommand = ''
-    set -e
-    unpackPhase
-    echo "Building on $NIX_BUILD_CORES cores in"
-    (cd $sourceRoot/cpu_xenoncat/Linux/asm
-     ./assemble.sh)
-    (cd $sourceRoot/Linux_cmake/nheqminer_cpu_xenoncat
-     cmake .
-     make -j$NIX_BUILD_CORES)
-    (cd $sourceRoot/Linux_cmake/nheqminer_cuda_tromp
-     cmake .
-     make -j$NIX_BUILD_CORES)
-    mkdir -p $out/bin
-    cp $sourceRoot/Linux_cmake/nheqminer_cpu_xenoncat/nheqminer_cpu_xenoncat $sourceRoot/Linux_cmake/nheqminer_cuda_tromp/nheqminer_cuda_tromp $out/bin
-  '';
-
-}