83 lines
2.2 KiB
Nix
83 lines
2.2 KiB
Nix
{ stdenv, fetchurl, python3, python3Packages, zbar, fetchpatch }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
name = "electrum-${version}";
|
|
version = "3.0.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
|
|
sha256 = "01dnqiazjl2avrmdiq68absjvcfv24446y759z2s9dwk8ywzjkrg";
|
|
};
|
|
|
|
patches = [
|
|
# Trezor compat patch should be included in electrum > 3.0.6
|
|
(fetchpatch {
|
|
name = "trezor-compat.patch";
|
|
url = "https://patch-diff.githubusercontent.com/raw/spesmilo/electrum/pull/3621.patch";
|
|
sha256 = "1bk1r2ikhnvw1fpfh71y4za2lnskcbkv50k8ynjxi5slx2wrfpl0";
|
|
})
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
dnspython
|
|
ecdsa
|
|
jsonrpclib-pelix
|
|
matplotlib
|
|
pbkdf2
|
|
protobuf
|
|
pyaes
|
|
pycrypto
|
|
pyqt5
|
|
pysocks
|
|
qrcode
|
|
requests
|
|
tlslite
|
|
|
|
# plugins
|
|
keepkey
|
|
trezor
|
|
|
|
# TODO plugins
|
|
# amodem
|
|
# btchip
|
|
];
|
|
|
|
preBuild = ''
|
|
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
|
|
pyrcc5 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
|
|
sed -i "s|name = 'libzbar.*'|name='${zbar}/lib/libzbar.so'|" lib/qrscanner.py
|
|
'';
|
|
|
|
postInstall = ''
|
|
# Despite setting usr_share above, these files are installed under
|
|
# $out/nix ...
|
|
mv $out/${python3.sitePackages}/nix/store"/"*/share $out
|
|
rm -rf $out/${python3.sitePackages}/nix
|
|
|
|
substituteInPlace $out/share/applications/electrum.desktop \
|
|
--replace "Exec=electrum %u" "Exec=$out/bin/electrum %u"
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
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://electrum.org/;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ehmry joachifm np ];
|
|
};
|
|
}
|