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

150 lines
3.8 KiB
Nix
Raw Normal View History

2019-08-29 21:30:30 +00:00
{ stdenv, fetchurl, fetchFromGitHub, wrapQtAppsHook, python3, python3Packages, zbar, secp256k1
, enableQt ? !stdenv.isDarwin
# for updater.nix
, writeScript
, common-updater-scripts
, bash
, coreutils
, curl
, gnugrep
, gnupg
, gnused
, nix
}:
2018-09-12 19:05:49 +00:00
let
2019-07-11 15:20:27 +00:00
version = "3.3.8";
libsecp256k1_name =
if stdenv.isLinux then "libsecp256k1.so.0"
else if stdenv.isDarwin then "libsecp256k1.0.dylib"
else "libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}";
libzbar_name =
if stdenv.isLinux then "libzbar.so.0"
else "libzbar${stdenv.hostPlatform.extensions.sharedLibrary}";
# Not provided in official source releases, which are what upstream signs.
tests = fetchFromGitHub {
owner = "spesmilo";
repo = "electrum";
rev = version;
2019-07-11 15:20:27 +00:00
sha256 = "1di8ba77kgapcys0d7h5nx1qqakv3s60c6sp8skw8p69ramsl73c";
extraPostFetch = ''
mv $out ./all
mv ./all/electrum/tests $out
'';
};
2018-09-12 19:05:49 +00:00
in
2019-08-13 21:52:01 +00:00
python3Packages.buildPythonApplication {
pname = "electrum";
inherit version;
src = fetchurl {
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
2019-07-11 15:20:27 +00:00
sha256 = "1g00cj1pmckd4xis8r032wmraiv3vd3zc803hnyxa2bnhj8z3bg2";
};
postUnpack = ''
# can't symlink, tests get confused
cp -ar ${tests} $sourceRoot/electrum/tests
'';
2019-08-29 21:30:30 +00:00
nativeBuildInputs = stdenv.lib.optionals enableQt [ wrapQtAppsHook ];
2017-11-18 17:46:35 +00:00
propagatedBuildInputs = with python3Packages; [
aiorpcx
aiohttp
aiohttp-socks
dnspython
ecdsa
2017-11-18 17:46:35 +00:00
jsonrpclib-pelix
matplotlib
pbkdf2
2017-09-05 15:11:41 +00:00
protobuf
pyaes
2018-09-12 19:05:49 +00:00
pycryptodomex
pysocks
qrcode
requests
tlslite-ng
# plugins
keepkey
trezor
btchip
# TODO plugins
# amodem
] ++ stdenv.lib.optionals enableQt [ pyqt5 qdarkstyle ];
2016-10-14 22:50:19 +00:00
preBuild = ''
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
substituteInPlace ./electrum/ecc_fast.py \
--replace ${libsecp256k1_name} ${secp256k1}/lib/libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}
'' + (if enableQt then ''
substituteInPlace ./electrum/qrscanner.py \
--replace ${libzbar_name} ${zbar.lib}/lib/libzbar${stdenv.hostPlatform.extensions.sharedLibrary}
'' else ''
sed -i '/qdarkstyle/d' contrib/requirements/requirements.txt
'');
postInstall = stdenv.lib.optionalString stdenv.isLinux ''
# Despite setting usr_share above, these files are installed under
# $out/nix ...
2017-11-18 17:46:35 +00:00
mv $out/${python3.sitePackages}/nix/store"/"*/share $out
rm -rf $out/${python3.sitePackages}/nix
substituteInPlace $out/share/applications/electrum.desktop \
--replace 'Exec=sh -c "PATH=\"\\$HOME/.local/bin:\\$PATH\"; electrum %u"' \
"Exec=$out/bin/electrum %u" \
--replace 'Exec=sh -c "PATH=\"\\$HOME/.local/bin:\\$PATH\"; electrum --testnet %u"' \
"Exec=$out/bin/electrum --testnet %u"
2019-08-29 21:30:30 +00:00
'';
postFixup = stdenv.lib.optionalString enableQt ''
wrapQtApp $out/bin/electrum
'';
2019-01-22 14:36:08 +00:00
checkInputs = with python3Packages; [ pytest ];
2017-11-18 17:46:35 +00:00
2019-01-22 14:36:08 +00:00
checkPhase = ''
py.test electrum/tests
$out/bin/electrum help >/dev/null
'';
passthru.updateScript = import ./update.nix {
inherit (stdenv) lib;
inherit
writeScript
common-updater-scripts
bash
coreutils
curl
gnupg
gnugrep
gnused
nix
;
};
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;
platforms = platforms.all;
maintainers = with maintainers; [ ehmry joachifm np ];
};
}