2018-09-12 18:03:36 +02:00
|
|
|
{ stdenv, fetchurl, python3Packages, qtbase, makeWrapper, lib }:
|
2017-09-27 17:44:35 +02:00
|
|
|
|
2017-12-13 20:55:40 +01:00
|
|
|
let
|
|
|
|
|
|
|
|
python = python3Packages.python;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-12-12 17:49:13 +01:00
|
|
|
version = "3.3.2";
|
2017-09-27 17:44:35 +02:00
|
|
|
name = "electron-cash-${version}";
|
|
|
|
|
2017-11-09 23:58:57 +01:00
|
|
|
src = fetchurl {
|
2017-12-13 20:55:40 +01:00
|
|
|
url = "https://electroncash.org/downloads/${version}/win-linux/ElectronCash-${version}.tar.gz";
|
2017-11-09 23:58:57 +01:00
|
|
|
# Verified using official SHA-1 and signature from
|
|
|
|
# https://github.com/fyookball/keys-n-hashes
|
2018-12-12 17:49:13 +01:00
|
|
|
sha256 = "4538044cfaa4f87a847635849e0733f32b183ac79abbd2797689c86dc3cb0d53";
|
2017-09-27 17:44:35 +02:00
|
|
|
};
|
|
|
|
|
2017-12-13 20:55:40 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2017-12-10 15:27:06 +01:00
|
|
|
dnspython
|
2017-09-27 17:44:35 +02:00
|
|
|
ecdsa
|
2017-12-13 20:55:40 +01:00
|
|
|
jsonrpclib-pelix
|
|
|
|
matplotlib
|
2017-09-27 17:44:35 +02:00
|
|
|
pbkdf2
|
|
|
|
pyaes
|
|
|
|
pycrypto
|
2017-12-13 20:55:40 +01:00
|
|
|
pyqt5
|
2017-09-27 17:44:35 +02:00
|
|
|
pysocks
|
|
|
|
qrcode
|
|
|
|
requests
|
2018-12-07 15:29:24 +01:00
|
|
|
tlslite-ng
|
2017-09-27 17:44:35 +02:00
|
|
|
|
|
|
|
# plugins
|
|
|
|
keepkey
|
|
|
|
trezor
|
2018-10-02 00:13:03 +02:00
|
|
|
btchip
|
2017-09-27 17:44:35 +02:00
|
|
|
];
|
|
|
|
|
2018-09-12 18:03:36 +02:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2018-01-07 21:35:58 +01:00
|
|
|
postPatch = ''
|
|
|
|
# Remove pyqt5 check
|
|
|
|
sed -i '/pyqt5/d' setup.py
|
|
|
|
'';
|
|
|
|
|
2017-09-27 17:44:35 +02:00
|
|
|
preBuild = ''
|
2017-12-13 20:55:40 +01:00
|
|
|
pyrcc5 icons.qrc -o gui/qt/icons_rc.py
|
2017-09-27 17:44:35 +02:00
|
|
|
# Recording the creation timestamps introduces indeterminism to the build
|
|
|
|
sed -i '/Created: .*/d' gui/qt/icons_rc.py
|
|
|
|
'';
|
|
|
|
|
2017-12-13 20:55:40 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2017-09-27 17:44:35 +02:00
|
|
|
postInstall = ''
|
2018-07-03 14:16:02 +02:00
|
|
|
# These files are installed under $out/homeless-shelter ...
|
|
|
|
mv $out/${python.sitePackages}/homeless-shelter/.local/share $out
|
|
|
|
rm -rf $out/${python.sitePackages}/homeless-shelter
|
2017-09-27 17:44:35 +02:00
|
|
|
|
2017-11-09 23:58:57 +01:00
|
|
|
substituteInPlace $out/share/applications/electron-cash.desktop \
|
|
|
|
--replace "Exec=electron-cash %u" "Exec=$out/bin/electron-cash %u"
|
2018-09-12 18:03:36 +02:00
|
|
|
|
2018-09-23 18:50:38 +02:00
|
|
|
# Please remove this when #44047 is fixed
|
2018-09-12 18:03:36 +02:00
|
|
|
wrapProgram $out/bin/electron-cash \
|
|
|
|
--prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-5.${lib.versions.minor qtbase.version}/plugins
|
2017-09-27 17:44:35 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
2018-09-12 18:03:36 +02:00
|
|
|
$out/bin/electron-cash help >/dev/null
|
2017-09-27 17:44:35 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
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 20:40:28 +01:00
|
|
|
platforms = platforms.linux;
|
2017-09-27 17:44:35 +02:00
|
|
|
maintainers = with maintainers; [ lassulus ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|