nano-wallet: 18.0 -> 19.0
This commit is contained in:
parent
4e60699fa7
commit
e38a36094b
1 changed files with 8 additions and 2 deletions
|
@ -3,13 +3,13 @@
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
pname = "nano-wallet";
|
pname = "nano-wallet";
|
||||||
version = "18.0";
|
version = "19.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nanocurrency";
|
owner = "nanocurrency";
|
||||||
repo = "raiblocks";
|
repo = "raiblocks";
|
||||||
rev = "V${version}";
|
rev = "V${version}";
|
||||||
sha256 = "03f9g1x7rs7vic9yzsjxsh5ddx9ys78rssbfghbccfw9qrwylh3y";
|
sha256 = "1y5fc4cvfqh33imjkh91sqhy5bb9kh0icwyvdgm1cl564vnjax80";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -39,6 +39,12 @@ stdenv.mkDerivation rec {
|
||||||
make nano_wallet
|
make nano_wallet
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Move executables under bin directory
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
mv $out/nano* $out/bin/
|
||||||
|
'';
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
./core_test
|
./core_test
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue