nixpkgs/pkgs/applications/misc/electrum/default.nix

71 lines
1.8 KiB
Nix
Raw Normal View History

2016-11-08 14:20:33 +00:00
{ stdenv, fetchurl, python2Packages }:
2016-11-08 14:20:33 +00:00
python2Packages.buildPythonApplication rec {
name = "electrum-${version}";
2017-08-29 18:27:27 +00:00
version = "2.9.3";
src = fetchurl {
2015-11-18 21:06:21 +00:00
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
2017-08-29 18:27:27 +00:00
sha256 = "0d0fzb653g7b8ka3x90nl21md4g3n1fv11czdxpdq3s9yr6js6f2";
};
2016-11-08 14:20:33 +00:00
propagatedBuildInputs = with python2Packages; [
dns
ecdsa
2016-03-01 18:21:07 +00:00
jsonrpclib
pbkdf2
2017-09-05 15:11:41 +00:00
protobuf
pyaes
2015-07-26 13:37:50 +00:00
pycrypto
pyqt4
pysocks
qrcode
requests
tlslite
# plugins
keepkey
trezor
# TODO plugins
# amodem
# btchip
# matplotlib
];
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
# Recording the creation timestamps introduces indeterminism to the build
sed -i '/Created: .*/d' gui/qt/icons_rc.py
'';
postInstall = ''
# Despite setting usr_share above, these files are installed under
# $out/nix ...
mv $out/lib/python2.7/site-packages/nix/store"/"*/share $out
rm -rf $out/lib/python2.7/site-packages/nix
substituteInPlace $out/share/applications/electrum.desktop \
--replace "Exec=electrum %u" "Exec=$out/bin/electrum %u"
'';
2016-10-14 22:50:19 +00:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/electrum help >/dev/null
'';
meta = with stdenv.lib; {
2016-10-08 14:01:28 +00:00
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.
'';
2016-10-08 14:01:28 +00:00
homepage = https://electrum.org/;
2016-03-01 18:21:07 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ehmry joachifm np ];
};
}