litecoin: migrate to boost177

+10 -2
+9 -1
pkgs/applications/blockchains/litecoin/default.nix
··· 1 - { lib, stdenv, mkDerivation, fetchFromGitHub 2 , pkg-config, autoreconfHook 3 , openssl, db48, boost, zlib, miniupnpc 4 , glib, protobuf, util-linux, qrencode ··· 19 rev = "v${version}"; 20 sha256 = "sha256-TuDc47TZOEQA5Lr4DQkEhnO/Szp9h71xPjaBL3jFWuM="; 21 }; 22 23 nativeBuildInputs = [ pkg-config autoreconfHook ]; 24 buildInputs = [ openssl db48 boost zlib zeromq fmt
··· 1 + { lib, stdenv, mkDerivation, fetchFromGitHub, fetchpatch 2 , pkg-config, autoreconfHook 3 , openssl, db48, boost, zlib, miniupnpc 4 , glib, protobuf, util-linux, qrencode ··· 19 rev = "v${version}"; 20 sha256 = "sha256-TuDc47TZOEQA5Lr4DQkEhnO/Szp9h71xPjaBL3jFWuM="; 21 }; 22 + 23 + patches = [ 24 + (fetchpatch { 25 + name = "boost1770.patch"; 26 + url = "https://aur.archlinux.org/cgit/aur.git/plain/boost1770.patch?h=litecoin-qt&id=dc75ad854af123f375b5b683be64aa14573170d7"; 27 + hash = "sha256-PTkYQRA8n5a9yR2AvpzH5natsXT2W6Xjo0ONCPJx78k="; 28 + }) 29 + ]; 30 31 nativeBuildInputs = [ pkg-config autoreconfHook ]; 32 buildInputs = [ openssl db48 boost zlib zeromq fmt
+1 -1
pkgs/top-level/all-packages.nix
··· 35988 35989 litecoin = libsForQt5.callPackage ../applications/blockchains/litecoin { 35990 inherit (darwin.apple_sdk.frameworks) AppKit; 35991 - boost = pkgs.boost174; 35992 }; 35993 litecoind = litecoin.override { withGui = false; }; 35994
··· 35988 35989 litecoin = libsForQt5.callPackage ../applications/blockchains/litecoin { 35990 inherit (darwin.apple_sdk.frameworks) AppKit; 35991 + boost = pkgs.boost177; 35992 }; 35993 litecoind = litecoin.override { withGui = false; }; 35994