summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorKJ Ørbekk <kj@orbekk.com>2017-05-27 11:46:21 -0400
committerKJ Ørbekk <kj@orbekk.com>2017-05-27 11:46:21 -0400
commit7cc5d5a4d748286753b2c11816dad0d2f32cb023 (patch)
tree3f60bf431ca130e5403a87748768ced00ca967c3 /pkgs
parentf1572fa60d91d1e08cbc947b1362c0a6e53f71cc (diff)
nheqminer: Working.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/nheqminer/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/nheqminer/default.nix b/pkgs/nheqminer/default.nix
index ad6b3d4..5e20846 100644
--- a/pkgs/nheqminer/default.nix
+++ b/pkgs/nheqminer/default.nix
@@ -34,9 +34,10 @@ stdenv.mkDerivation rec {
ln -sf $(pwd)/cpu_xenoncat/asm_linux/equihash_avx2.o nheqminer/cpu_xenoncat/asm_linux/equihash_avx2.o
'';
- installPhase = ''
- mkdir -p $out/bin
+ postInstall = ''
+ echo "Running postInstall phase"
pwd
+ mkdir -p $out/bin
cp nheqminer $out/bin/
'';
}