Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #56056 from delroth/electrum-3.3.4

electrum: 3.3.2 -> 3.3.4

authored by

Joachim F and committed by
GitHub
5fc8559f 160abfe3

+2 -5
+2 -5
pkgs/applications/misc/electrum/default.nix
··· 14 14 15 15 python3Packages.buildPythonApplication rec { 16 16 pname = "electrum"; 17 - version = "3.3.2"; 17 + version = "3.3.4"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "spesmilo"; 21 21 repo = "electrum"; 22 22 rev = version; 23 - sha256 = "1jsn02azdydpq4plr2552s7ijyqgw6zqm2zx8skwsalgbwmhx12i"; 23 + sha256 = "0yxdpc602jnd14xz3px85ka0b6db98zwbgfi9a3vj8p1k3mmiwaj"; 24 24 }; 25 25 26 26 propagatedBuildInputs = with python3Packages; [ ··· 53 53 54 54 preBuild = '' 55 55 sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py 56 - pyrcc5 icons.qrc -o electrum/gui/qt/icons_rc.py 57 - # Recording the creation timestamps introduces indeterminism to the build 58 - sed -i '/Created: .*/d' electrum/gui/qt/icons_rc.py 59 56 sed -i "s|name = 'libzbar.*'|name='${zbar}/lib/libzbar.so'|" electrum/qrscanner.py 60 57 substituteInPlace ./electrum/ecc_fast.py --replace libsecp256k1.so.0 ${secp256k1}/lib/libsecp256k1.so.0 61 58 '';