bitcoin: 0.15.1 -> 0.16.0

Bitcoin 0.16.0 now builds against the lastest Boost.

+5 -5
+2 -2
pkgs/applications/altcoins/bitcoin.nix
··· 5 5 with stdenv.lib; 6 6 stdenv.mkDerivation rec{ 7 7 name = "bitcoin" + (toString (optional (!withGui) "d")) + "-" + version; 8 - version = "0.15.1"; 8 + version = "0.16.0"; 9 9 10 10 src = fetchurl { 11 11 urls = [ "https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz" 12 12 "https://bitcoin.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz" 13 13 ]; 14 - sha256 = "1d22fgwdcn343kd95lh389hj417zwbmnhi29cij8n7wc0nz2vpil"; 14 + sha256 = "0h7flgsfjzbqajwv8ih686yyxxljhf8krhm8jxranb4kglww1glc"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ pkgconfig autoreconfHook ];
+3 -3
pkgs/applications/altcoins/default.nix
··· 1 - { callPackage, boost155, boost164, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2, python3 }: 1 + { callPackage, boost155, openssl_1_1_0, haskellPackages, darwin, libsForQt5, miniupnpc_2, python3 }: 2 2 3 3 rec { 4 4 5 5 aeon = callPackage ./aeon { }; 6 6 7 - bitcoin = libsForQt5.callPackage ./bitcoin.nix { boost = boost164; miniupnpc = miniupnpc_2; withGui = true; }; 8 - bitcoind = callPackage ./bitcoin.nix { boost = boost164; miniupnpc = miniupnpc_2; withGui = false; }; 7 + bitcoin = libsForQt5.callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = true; }; 8 + bitcoind = callPackage ./bitcoin.nix { miniupnpc = miniupnpc_2; withGui = false; }; 9 9 10 10 bitcoin-abc = libsForQt5.callPackage ./bitcoin-abc.nix { withGui = true; }; 11 11 bitcoind-abc = callPackage ./bitcoin-abc.nix { withGui = false; };