2018-02-22 11:43:00 +01:00
|
|
|
{ stdenv, fetchurl, python3, python3Packages, zbar, fetchpatch }:
|
2014-03-23 16:22:57 +01:00
|
|
|
|
2017-11-18 18:46:35 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2014-03-23 16:22:57 +01:00
|
|
|
name = "electrum-${version}";
|
2018-03-06 23:26:59 +01:00
|
|
|
version = "3.1.0";
|
2014-03-23 16:22:57 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-18 22:06:21 +01:00
|
|
|
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
|
2018-03-06 23:26:59 +01:00
|
|
|
sha256 = "1hc0ylkq89459wy3av42hp73p34pmh7grsa3qm8fb1k0qg17zy78";
|
2014-03-23 16:22:57 +01:00
|
|
|
};
|
|
|
|
|
2017-11-18 18:46:35 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2017-12-10 15:27:06 +01:00
|
|
|
dnspython
|
2014-03-23 16:22:57 +01:00
|
|
|
ecdsa
|
2017-11-18 18:46:35 +01:00
|
|
|
jsonrpclib-pelix
|
2017-10-19 21:19:58 +02:00
|
|
|
matplotlib
|
2015-03-17 23:29:35 +01:00
|
|
|
pbkdf2
|
2017-09-05 17:11:41 +02:00
|
|
|
protobuf
|
2017-03-11 14:00:59 +01:00
|
|
|
pyaes
|
2015-07-26 15:37:50 +02:00
|
|
|
pycrypto
|
2017-11-18 18:46:35 +01:00
|
|
|
pyqt5
|
2017-03-11 14:00:59 +01:00
|
|
|
pysocks
|
2015-03-17 23:29:35 +01:00
|
|
|
qrcode
|
|
|
|
requests
|
|
|
|
tlslite
|
2016-01-21 23:58:28 +01:00
|
|
|
|
|
|
|
# plugins
|
|
|
|
keepkey
|
2017-03-11 14:00:59 +01:00
|
|
|
trezor
|
|
|
|
|
2016-01-21 23:58:28 +01:00
|
|
|
# TODO plugins
|
|
|
|
# amodem
|
2017-03-11 14:00:59 +01:00
|
|
|
# btchip
|
2014-03-23 16:22:57 +01:00
|
|
|
];
|
|
|
|
|
2016-10-15 00:50:19 +02:00
|
|
|
preBuild = ''
|
|
|
|
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
|
2017-11-18 18:46:35 +01:00
|
|
|
pyrcc5 icons.qrc -o gui/qt/icons_rc.py
|
2016-12-18 21:51:36 +01:00
|
|
|
# Recording the creation timestamps introduces indeterminism to the build
|
|
|
|
sed -i '/Created: .*/d' gui/qt/icons_rc.py
|
2017-12-30 21:16:16 +01:00
|
|
|
sed -i "s|name = 'libzbar.*'|name='${zbar}/lib/libzbar.so'|" lib/qrscanner.py
|
2014-03-23 16:22:57 +01:00
|
|
|
'';
|
|
|
|
|
2016-12-18 21:56:43 +01:00
|
|
|
postInstall = ''
|
|
|
|
# Despite setting usr_share above, these files are installed under
|
|
|
|
# $out/nix ...
|
2017-11-18 18:46:35 +01:00
|
|
|
mv $out/${python3.sitePackages}/nix/store"/"*/share $out
|
|
|
|
rm -rf $out/${python3.sitePackages}/nix
|
2017-03-11 14:00:59 +01:00
|
|
|
|
|
|
|
substituteInPlace $out/share/applications/electrum.desktop \
|
|
|
|
--replace "Exec=electrum %u" "Exec=$out/bin/electrum %u"
|
2016-12-18 21:56:43 +01:00
|
|
|
'';
|
|
|
|
|
2017-11-18 18:46:35 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2016-10-15 00:50:19 +02:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
2016-03-11 08:26:43 +01:00
|
|
|
$out/bin/electrum help >/dev/null
|
|
|
|
'';
|
|
|
|
|
2015-03-28 15:34:22 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-10-08 16:01:28 +02:00
|
|
|
description = "A lightweight Bitcoin wallet";
|
2015-03-28 15:34:22 +01:00
|
|
|
longDescription = ''
|
|
|
|
An easy-to-use Bitcoin client featuring wallets generated from
|
|
|
|
mnemonic seeds (in addition to other, more advanced, wallet options)
|
|
|
|
and the ability to perform transactions without downloading a copy
|
|
|
|
of the blockchain.
|
|
|
|
'';
|
2016-10-08 16:01:28 +02:00
|
|
|
homepage = https://electrum.org/;
|
2016-03-01 19:21:07 +01:00
|
|
|
license = licenses.mit;
|
2016-01-21 23:58:28 +01:00
|
|
|
maintainers = with maintainers; [ ehmry joachifm np ];
|
2014-03-23 16:22:57 +01:00
|
|
|
};
|
2014-12-20 00:52:08 +01:00
|
|
|
}
|