elements: 0.18.1.12 -> 0.21.0

+3 -7
+3 -7
pkgs/applications/blockchains/elements/default.nix
··· 17 , qtbase ? null 18 , qttools ? null 19 , python3 20 - , openssl 21 , withGui 22 , withWallet ? true 23 }: ··· 25 with lib; 26 stdenv.mkDerivation rec { 27 pname = if withGui then "elements" else "elementsd"; 28 - version = "0.18.1.12"; 29 30 src = fetchurl { 31 url = "https://github.com/ElementsProject/elements/archive/elements-${version}.tar.gz"; 32 - sha256 = "84a51013596b09c62913649ac90373622185f779446ee7e65b4b258a2876609f"; 33 }; 34 35 nativeBuildInputs = ··· 38 ++ optionals stdenv.isDarwin [ hexdump ] 39 ++ optionals withGui [ wrapQtAppsHook ]; 40 41 - buildInputs = [ boost libevent miniupnpc zeromq zlib openssl ] 42 ++ optionals withWallet [ db48 sqlite ] 43 ++ optionals withGui [ qrencode qtbase qttools ]; 44 ··· 79 maintainers = with maintainers; [ prusnak ]; 80 license = licenses.mit; 81 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 }; 86 }
··· 17 , qtbase ? null 18 , qttools ? null 19 , python3 20 , withGui 21 , withWallet ? true 22 }: ··· 24 with lib; 25 stdenv.mkDerivation rec { 26 pname = if withGui then "elements" else "elementsd"; 27 + version = "0.21.0"; 28 29 src = fetchurl { 30 url = "https://github.com/ElementsProject/elements/archive/elements-${version}.tar.gz"; 31 + sha256 = "0d9mcb0nw9qqhv0jhpddi9i4iry3w7b5jifsl5kpcw82qrkvgfgj"; 32 }; 33 34 nativeBuildInputs = ··· 37 ++ optionals stdenv.isDarwin [ hexdump ] 38 ++ optionals withGui [ wrapQtAppsHook ]; 39 40 + buildInputs = [ boost libevent miniupnpc zeromq zlib ] 41 ++ optionals withWallet [ db48 sqlite ] 42 ++ optionals withGui [ qrencode qtbase qttools ]; 43 ··· 78 maintainers = with maintainers; [ prusnak ]; 79 license = licenses.mit; 80 platforms = platforms.unix; 81 }; 82 }