2016-11-08 14:20:33 +00:00
|
|
|
{ stdenv, fetchurl, python2Packages }:
|
2014-03-23 15:22:57 +00:00
|
|
|
|
2016-11-08 14:20:33 +00:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2014-03-23 15:22:57 +00:00
|
|
|
name = "electrum-${version}";
|
2017-03-11 13:00:59 +00:00
|
|
|
version = "2.8.1";
|
2014-03-23 15:22:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-18 21:06:21 +00:00
|
|
|
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
|
2017-03-11 13:00:59 +00:00
|
|
|
sha256 = "1398s9d8j04is24il2xjb6xkj666pj21bsr90xglpsmfa1js9z7g";
|
2014-03-23 15:22:57 +00:00
|
|
|
};
|
|
|
|
|
2016-11-08 14:20:33 +00:00
|
|
|
propagatedBuildInputs = with python2Packages; [
|
2015-03-17 22:29:35 +00:00
|
|
|
dns
|
2014-03-23 15:22:57 +00:00
|
|
|
ecdsa
|
2016-03-01 18:21:07 +00:00
|
|
|
jsonrpclib
|
2015-03-17 22:29:35 +00:00
|
|
|
pbkdf2
|
2016-10-04 14:22:15 +00:00
|
|
|
protobuf3_0
|
2017-03-11 13:00:59 +00:00
|
|
|
pyaes
|
2015-07-26 13:37:50 +00:00
|
|
|
pycrypto
|
2014-03-23 15:22:57 +00:00
|
|
|
pyqt4
|
2017-03-11 13:00:59 +00:00
|
|
|
pysocks
|
2015-03-17 22:29:35 +00:00
|
|
|
qrcode
|
|
|
|
requests
|
|
|
|
tlslite
|
2016-01-21 22:58:28 +00:00
|
|
|
|
|
|
|
# plugins
|
|
|
|
keepkey
|
2017-03-11 13:00:59 +00:00
|
|
|
trezor
|
|
|
|
|
2016-01-21 22:58:28 +00:00
|
|
|
# TODO plugins
|
|
|
|
# amodem
|
2017-03-11 13:00:59 +00:00
|
|
|
# btchip
|
|
|
|
# matplotlib
|
2014-03-23 15:22:57 +00:00
|
|
|
];
|
|
|
|
|
2016-10-14 22:50:19 +00:00
|
|
|
preBuild = ''
|
|
|
|
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
|
2015-08-26 23:44:41 +00:00
|
|
|
pyrcc4 icons.qrc -o gui/qt/icons_rc.py
|
2016-12-18 20:51:36 +00:00
|
|
|
# Recording the creation timestamps introduces indeterminism to the build
|
|
|
|
sed -i '/Created: .*/d' gui/qt/icons_rc.py
|
2014-03-23 15:22:57 +00:00
|
|
|
'';
|
|
|
|
|
2016-12-18 20:56:43 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Despite setting usr_share above, these files are installed under
|
|
|
|
# $out/nix ...
|
2017-03-11 13:00:59 +00:00
|
|
|
mv $out/lib/python2.7/site-packages/nix/store"/"*/share $out
|
2016-12-18 20:56:43 +00:00
|
|
|
rm -rf $out/lib/python2.7/site-packages/nix
|
2017-03-11 13:00:59 +00:00
|
|
|
|
|
|
|
substituteInPlace $out/share/applications/electrum.desktop \
|
|
|
|
--replace "Exec=electrum %u" "Exec=$out/bin/electrum %u"
|
2016-12-18 20:56:43 +00:00
|
|
|
'';
|
|
|
|
|
2016-10-14 22:50:19 +00:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
2016-03-11 07:26:43 +00:00
|
|
|
$out/bin/electrum help >/dev/null
|
|
|
|
'';
|
|
|
|
|
2015-03-28 14:34:22 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-10-08 14:01:28 +00:00
|
|
|
description = "A lightweight Bitcoin wallet";
|
2015-03-28 14:34:22 +00: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 14:01:28 +00:00
|
|
|
homepage = https://electrum.org/;
|
2016-03-01 18:21:07 +00:00
|
|
|
license = licenses.mit;
|
2016-01-21 22:58:28 +00:00
|
|
|
maintainers = with maintainers; [ ehmry joachifm np ];
|
2014-03-23 15:22:57 +00:00
|
|
|
};
|
2014-12-19 23:52:08 +00:00
|
|
|
}
|