nixpkgs/pkgs/applications/misc/electron-cash/default.nix

86 lines
2.2 KiB
Nix
Raw Normal View History

2018-09-12 16:03:36 +00:00
{ stdenv, fetchurl, python3Packages, qtbase, makeWrapper, lib }:
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-09-12 15:37:38 +00:00
version = "3.3.1";
2017-09-27 15:44:35 +00:00
name = "electron-cash-${version}";
src = fetchurl {
2017-12-13 19:55:40 +00:00
url = "https://electroncash.org/downloads/${version}/win-linux/ElectronCash-${version}.tar.gz";
# Verified using official SHA-1 and signature from
# https://github.com/fyookball/keys-n-hashes
2018-09-12 15:37:38 +00:00
sha256 = "1jdy89rfdwc2jadx3rqj5yvynpcn90cx6482ax9f1cj9gfxp9j2b";
2017-09-27 15:44:35 +00:00
};
2017-12-13 19:55:40 +00:00
propagatedBuildInputs = with python3Packages; [
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-09-12 16:03:36 +00:00
nativeBuildInputs = [ makeWrapper ];
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 = ''
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 = ''
2018-07-03 12:16:02 +00: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 15:44:35 +00:00
substituteInPlace $out/share/applications/electron-cash.desktop \
--replace "Exec=electron-cash %u" "Exec=$out/bin/electron-cash %u"
2018-09-12 16:03:36 +00:00
# Please remove this when #44047 is fixed
2018-09-12 16:03:36 +00:00
wrapProgram $out/bin/electron-cash \
--prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-5.${lib.versions.minor qtbase.version}/plugins
2017-09-27 15:44:35 +00:00
'';
doInstallCheck = true;
installCheckPhase = ''
2018-09-12 16:03:36 +00:00
$out/bin/electron-cash help >/dev/null
2017-09-27 15:44:35 +00: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/;
platforms = platforms.linux;
2017-09-27 15:44:35 +00:00
maintainers = with maintainers; [ lassulus ];
license = licenses.mit;
};
}