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

76 lines
1.9 KiB
Nix
Raw Normal View History

2017-12-13 19:55:40 +00:00
{ stdenv, fetchurl, python3Packages, qtbase }:
2017-09-27 15:44:35 +00:00
2017-12-13 19:55:40 +00:00
let
python = python3Packages.python;
in
python3Packages.buildPythonApplication rec {
version = "3.0";
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
2017-12-13 19:55:40 +00:00
sha256 = "f0e2bf5c6d29da714eddd50b45761fea9fc905a0172c7b92df8fca7427439f1a";
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
];
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
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/;
maintainers = with maintainers; [ lassulus ];
license = licenses.mit;
};
}