Skip to content

Commit

Permalink
bitcoin-abc: 0.16.0 -> 0.16.2
Browse files Browse the repository at this point in the history
(cherry picked from commit d940c79)
  • Loading branch information
Lassulus authored and Mic92 committed Mar 9, 2018
1 parent 3c4c591 commit e6d0584
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/altcoins/bitcoin-abc.nix
Expand Up @@ -7,13 +7,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {

name = "bitcoin" + (toString (optional (!withGui) "d")) + "-abc-" + version;
version = "0.16.0";
version = "0.16.2";

src = fetchFromGitHub {
owner = "bitcoin-ABC";
repo = "bitcoin-abc";
rev = "v${version}";
sha256 = "0wwcgvd8zgl5qh6z1sa3kdv1lr9cwwbs9j2gaad5mqr9sfwbbxdh";
sha256 = "0d5npn4p321jqsbqjxkbv0ncvs2hp9vdp30np6n8n53f896cxl92";
};

patches = [ ./fix-bitcoin-qt-build.patch ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/altcoins/default.nix
Expand Up @@ -7,8 +7,8 @@ rec {
bitcoin = libsForQt5.callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = true; };
bitcoind = callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = false; };

bitcoin-abc = libsForQt5.callPackage ./bitcoin-abc.nix { withGui = true; };
bitcoind-abc = callPackage ./bitcoin-abc.nix { withGui = false; };
bitcoin-abc = libsForQt5.callPackage ./bitcoin-abc.nix { boost = boost165; withGui = true; };
bitcoind-abc = callPackage ./bitcoin-abc.nix { boost = boost165; withGui = false; };

bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = true; };
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = false; };
Expand Down

0 comments on commit e6d0584

Please sign in to comment.