elements: 0.18.1.12 -> 0.21.0

+3 -7
+3 -7
pkgs/applications/blockchains/elements/default.nix
··· 17 17 , qtbase ? null 18 18 , qttools ? null 19 19 , python3 20 - , openssl 21 20 , withGui 22 21 , withWallet ? true 23 22 }: ··· 25 24 with lib; 26 25 stdenv.mkDerivation rec { 27 26 pname = if withGui then "elements" else "elementsd"; 28 - version = "0.18.1.12"; 27 + version = "0.21.0"; 29 28 30 29 src = fetchurl { 31 30 url = "https://github.com/ElementsProject/elements/archive/elements-${version}.tar.gz"; 32 - sha256 = "84a51013596b09c62913649ac90373622185f779446ee7e65b4b258a2876609f"; 31 + sha256 = "0d9mcb0nw9qqhv0jhpddi9i4iry3w7b5jifsl5kpcw82qrkvgfgj"; 33 32 }; 34 33 35 34 nativeBuildInputs = ··· 38 37 ++ optionals stdenv.isDarwin [ hexdump ] 39 38 ++ optionals withGui [ wrapQtAppsHook ]; 40 39 41 - buildInputs = [ boost libevent miniupnpc zeromq zlib openssl ] 40 + buildInputs = [ boost libevent miniupnpc zeromq zlib ] 42 41 ++ optionals withWallet [ db48 sqlite ] 43 42 ++ optionals withGui [ qrencode qtbase qttools ]; 44 43 ··· 79 78 maintainers = with maintainers; [ prusnak ]; 80 79 license = licenses.mit; 81 80 platforms = platforms.unix; 82 - # Qt GUI is currently broken in upstream 83 - # No rule to make target 'qt/res/rendered_icons/about.png', needed by 'qt/qrc_bitcoin.cpp'. 84 - broken = withGui; 85 81 }; 86 82 }