Merge pull request #182679 from RaghavSood/bitcoincash-unlimited/1.10.0

bitcoin-unlimited: 1.9.2.0 -> 1.10.0.0

authored by Raghav Sood and committed by GitHub 28e2fa05 1bbd6f92

+5 -5
+5 -5
pkgs/applications/blockchains/bitcoin-unlimited/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, openssl, db48, boost 1 + { lib, stdenv, fetchFromGitLab, pkg-config, autoreconfHook, openssl, db48, boost 2 2 , zlib, miniupnpc, util-linux, protobuf, qrencode, libevent, python3 3 3 , withGui, wrapQtAppsHook ? null, qtbase ? null, qttools ? null 4 4 , Foundation, ApplicationServices, AppKit }: ··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "bitcoin" + optionalString (!withGui) "d" + "-unlimited"; 10 - version = "1.9.2.0"; 10 + version = "1.10.0.0"; 11 11 12 - src = fetchFromGitHub { 12 + src = fetchFromGitLab { 13 13 owner = "bitcoinunlimited"; 14 - repo = "bitcoinunlimited"; 14 + repo = "BCHUnlimited"; 15 15 rev = "BCHunlimited${version}"; 16 - sha256 = "sha256-qUf/GWZHpI57ATTlvRhjDtAjRa8a4uvUb0G9Xcf0j7w="; 16 + sha256 = "sha256-d+giTXq/6HpysRAPT7yOl/B1x4zie9irs4O7cJsBqHg="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ pkg-config autoreconfHook python3 ]