2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchurl, python3Packages }:
|
2017-09-27 15:44:35 +00:00
|
|
|
|
2017-12-13 19:55:40 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
python = python3Packages.python;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-03-20 08:05:43 +00:00
|
|
|
version = "3.1.6";
|
2017-09-27 15:44:35 +00:00
|
|
|
name = "electron-cash-${version}";
|
|
|
|
|
2017-11-09 22:58:57 +00:00
|
|
|
src = fetchurl {
|
2017-12-13 19:55:40 +00:00
|
|
|
url = "https://electroncash.org/downloads/${version}/win-linux/ElectronCash-${version}.tar.gz";
|
2017-11-09 22:58:57 +00:00
|
|
|
# Verified using official SHA-1 and signature from
|
|
|
|
# https://github.com/fyookball/keys-n-hashes
|
2018-03-20 08:05:43 +00:00
|
|
|
sha256 = "062k5iw0jcp10zxrffvgiyfg51c5xzs7gmm638icx01yy67d58dm";
|
2017-09-27 15:44:35 +00:00
|
|
|
};
|
|
|
|
|
2017-12-13 19:55:40 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2017-12-10 14:27:06 +00:00
|
|
|
dnspython
|
2017-09-27 15:44:35 +00:00
|
|
|
ecdsa
|
2017-12-13 19:55:40 +00:00
|
|
|
jsonrpclib-pelix
|
|
|
|
matplotlib
|
2017-09-27 15:44:35 +00:00
|
|
|
pbkdf2
|
|
|
|
pyaes
|
|
|
|
pycrypto
|
2017-12-13 19:55:40 +00:00
|
|
|
pyqt5
|
2017-09-27 15:44:35 +00:00
|
|
|
pysocks
|
|
|
|
qrcode
|
|
|
|
requests
|
|
|
|
tlslite
|
|
|
|
|
|
|
|
# plugins
|
|
|
|
keepkey
|
|
|
|
trezor
|
|
|
|
];
|
|
|
|
|
2018-01-07 20:35:58 +00:00
|
|
|
postPatch = ''
|
|
|
|
# Remove pyqt5 check
|
|
|
|
sed -i '/pyqt5/d' setup.py
|
|
|
|
'';
|
|
|
|
|
2017-09-27 15:44:35 +00:00
|
|
|
preBuild = ''
|
|
|
|
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
|
2017-12-13 19:55:40 +00:00
|
|
|
pyrcc5 icons.qrc -o gui/qt/icons_rc.py
|
2017-09-27 15:44:35 +00:00
|
|
|
# Recording the creation timestamps introduces indeterminism to the build
|
|
|
|
sed -i '/Created: .*/d' gui/qt/icons_rc.py
|
|
|
|
'';
|
|
|
|
|
2017-12-13 19:55:40 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2017-09-27 15:44:35 +00:00
|
|
|
postInstall = ''
|
|
|
|
# Despite setting usr_share above, these files are installed under
|
|
|
|
# $out/nix ...
|
2017-12-13 19:55:40 +00:00
|
|
|
mv $out/${python.sitePackages}/nix/store"/"*/share $out
|
|
|
|
rm -rf $out/${python.sitePackages}/nix
|
2017-09-27 15:44:35 +00:00
|
|
|
|
2017-11-09 22:58:57 +00:00
|
|
|
substituteInPlace $out/share/applications/electron-cash.desktop \
|
|
|
|
--replace "Exec=electron-cash %u" "Exec=$out/bin/electron-cash %u"
|
2017-09-27 15:44:35 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
$out/bin/electrum help >/dev/null
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A lightweight Bitcoin wallet";
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
homepage = https://www.electroncash.org/;
|
2018-01-09 19:40:28 +00:00
|
|
|
platforms = platforms.linux;
|
2017-09-27 15:44:35 +00:00
|
|
|
maintainers = with maintainers; [ lassulus ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|