3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #38743 from r-ryantm/auto-update/bitcoin-abc

altcoins.bitcoin-abc: 0.16.2 -> 0.17.0
This commit is contained in:
Matthew Justin Bauer 2018-04-18 22:16:59 -05:00 committed by GitHub
commit d54078f046
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,13 +7,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-abc-" + version;
version = "0.16.2";
version = "0.17.0";
src = fetchFromGitHub {
owner = "bitcoin-ABC";
repo = "bitcoin-abc";
rev = "v${version}";
sha256 = "0d5npn4p321jqsbqjxkbv0ncvs2hp9vdp30np6n8n53f896cxl92";
sha256 = "1s2y29h2q4fnbrfg2ig1cd3h7g3kdcdyrfq7znq1ndnh8xj1j489";
};
patches = [ ./fix-bitcoin-qt-build.patch ];