Skip to content

Commit

Permalink
bitcoin-classic: 1.3.6 -> 1.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Lassulus committed Mar 8, 2018
1 parent daafd1d commit bbd8664
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/altcoins/bitcoin-classic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {

name = "bitcoin" + (toString (optional (!withGui) "d")) + "-classic-" + version;
version = "1.3.6";
version = "1.3.8";

src = fetchFromGitHub {
owner = "bitcoinclassic";
repo = "bitcoinclassic";
rev = "v${version}";
sha256 = "129gkg035gv7zmc463jl2spvdh0fl4q8v4jdaslfnp34hbwi1p07";
sha256 = "06ij9v7zbdnhxq9429nnxiw655cp8idldj18l7fmj94gqx07n5vh";
};

patches = [ ./fix-bitcoin-qt-build.patch ];
Expand Down
6 changes: 3 additions & 3 deletions pkgs/applications/altcoins/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ callPackage, boost155, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2, python3 }:
{ callPackage, boost155, boost165, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2, python3 }:

rec {

Expand All @@ -13,8 +13,8 @@ rec {
bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = true; };
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = false; };

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

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

0 comments on commit bbd8664

Please sign in to comment.