altcoins.bitcoin-abc: 0.18.2 -> 0.19.4
This commit is contained in:
parent
ef5a977a53
commit
ff5601a7d6
@ -7,13 +7,13 @@ with stdenv.lib;
|
|||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-abc-" + version;
|
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-abc-" + version;
|
||||||
version = "0.18.2";
|
version = "0.19.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "bitcoin-ABC";
|
owner = "bitcoin-ABC";
|
||||||
repo = "bitcoin-abc";
|
repo = "bitcoin-abc";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1ha219xnd61qicf7r3j0wbfrifh7blwp3lyk3ycgdn381q1qln29";
|
sha256 = "1z4x25ygcw1pqml2ww02vqrvmihlv4f5gnnn1iyfirrjxgpfaxd7";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./fix-bitcoin-qt-build.patch ];
|
patches = [ ./fix-bitcoin-qt-build.patch ];
|
||||||
|
@ -4,12 +4,12 @@
|
|||||||
dnl Output: $1 is set to the path of $2 if found. $2 are searched in order.
|
dnl Output: $1 is set to the path of $2 if found. $2 are searched in order.
|
||||||
AC_DEFUN([BITCOIN_QT_PATH_PROGS],[
|
AC_DEFUN([BITCOIN_QT_PATH_PROGS],[
|
||||||
BITCOIN_QT_CHECK([
|
BITCOIN_QT_CHECK([
|
||||||
- if test "x$3" != "x"; then
|
- if test "x$3" != x; then
|
||||||
- AC_PATH_PROGS($1,$2,,$3)
|
- AC_PATH_PROGS($1,$2,,$3)
|
||||||
- else
|
- else
|
||||||
- AC_PATH_PROGS($1,$2)
|
- AC_PATH_PROGS($1,$2)
|
||||||
- fi
|
- fi
|
||||||
+ AC_PATH_PROGS($1,$2)
|
+ AC_PATH_PROGS($1,$2)
|
||||||
if test "x$$1" = "x" && test "x$4" != "xyes"; then
|
if test "x$$1" = x && test "x$4" != xyes; then
|
||||||
BITCOIN_QT_FAIL([$1 not found])
|
BITCOIN_QT_FAIL([$1 not found])
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user