nano-wallet: 18.0 -> 19.0

This commit is contained in:
Jaakko Luttinen 2019-09-08 16:01:03 +03:00
parent 4e60699fa7
commit e38a36094b
No known key found for this signature in database
GPG Key ID: 7B1CE13152E6B964

View File

@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
pname = "nano-wallet";
version = "18.0";
version = "19.0";
src = fetchFromGitHub {
owner = "nanocurrency";
repo = "raiblocks";
rev = "V${version}";
sha256 = "03f9g1x7rs7vic9yzsjxsh5ddx9ys78rssbfghbccfw9qrwylh3y";
sha256 = "1y5fc4cvfqh33imjkh91sqhy5bb9kh0icwyvdgm1cl564vnjax80";
fetchSubmodules = true;
};
@ -39,6 +39,12 @@ stdenv.mkDerivation rec {
make nano_wallet
'';
# Move executables under bin directory
postInstall = ''
mkdir -p $out/bin
mv $out/nano* $out/bin/
'';
checkPhase = ''
./core_test
'';