2021-04-02 22:26:03 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-06-25 13:49:27 +02:00
|
|
|
, fetchurl
|
|
|
|
, fetchFromGitHub
|
|
|
|
, wrapQtAppsHook
|
|
|
|
, python3
|
|
|
|
, zbar
|
|
|
|
, secp256k1
|
|
|
|
, enableQt ? true
|
2019-05-17 12:29:44 +02:00
|
|
|
# for updater.nix
|
|
|
|
, writeScript
|
|
|
|
, common-updater-scripts
|
|
|
|
, bash
|
|
|
|
, coreutils
|
|
|
|
, curl
|
|
|
|
, gnugrep
|
|
|
|
, gnupg
|
|
|
|
, gnused
|
|
|
|
, nix
|
|
|
|
}:
|
2014-03-23 16:22:57 +01:00
|
|
|
|
2018-09-12 21:05:49 +02:00
|
|
|
let
|
2021-07-20 15:44:02 +02:00
|
|
|
version = "4.1.5";
|
2020-08-29 19:45:36 +02:00
|
|
|
|
2019-07-11 16:08:57 +02:00
|
|
|
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}";
|
|
|
|
|
2019-05-09 22:30:05 +02:00
|
|
|
# Not provided in official source releases, which are what upstream signs.
|
|
|
|
tests = fetchFromGitHub {
|
|
|
|
owner = "spesmilo";
|
|
|
|
repo = "electrum";
|
|
|
|
rev = version;
|
2021-07-20 15:44:02 +02:00
|
|
|
sha256 = "1ps8yaps5kfd7yv7bpdvssbwm6f5qivxcvhwn17cpddc2760a7nk";
|
2019-05-09 22:30:05 +02:00
|
|
|
|
|
|
|
extraPostFetch = ''
|
|
|
|
mv $out ./all
|
|
|
|
mv ./all/electrum/tests $out
|
|
|
|
'';
|
|
|
|
};
|
2021-07-27 19:49:32 +02:00
|
|
|
|
|
|
|
py = python3.override {
|
|
|
|
packageOverrides = self: super: {
|
|
|
|
|
|
|
|
aiorpcx = super.aiorpcx.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.18.7";
|
|
|
|
src = oldAttrs.src.override {
|
|
|
|
inherit version;
|
|
|
|
sha256 = "1rswrspv27x33xa5bnhrkjqzhv0sknv5kd7pl1vidw9d2z4rx2l0";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-09-12 21:05:49 +02:00
|
|
|
in
|
|
|
|
|
2020-12-09 16:39:51 +01:00
|
|
|
python3.pkgs.buildPythonApplication {
|
2019-01-21 12:47:05 +01:00
|
|
|
pname = "electrum";
|
2019-05-09 22:30:05 +02:00
|
|
|
inherit version;
|
2014-03-23 16:22:57 +01:00
|
|
|
|
2019-05-09 22:12:50 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz";
|
2021-07-20 15:44:02 +02:00
|
|
|
sha256 = "188r4zji985z8pm9b942xhmvv174yndk6jxagxl7ljk03wl2wiwi";
|
2014-03-23 16:22:57 +01:00
|
|
|
};
|
|
|
|
|
2019-05-09 22:30:05 +02:00
|
|
|
postUnpack = ''
|
|
|
|
# can't symlink, tests get confused
|
|
|
|
cp -ar ${tests} $sourceRoot/electrum/tests
|
|
|
|
'';
|
|
|
|
|
2021-04-26 17:50:01 +02:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace contrib/requirements/requirements.txt \
|
|
|
|
--replace "dnspython>=2.0,<2.1" "dnspython>=2.0"
|
|
|
|
'';
|
|
|
|
|
2021-01-15 06:42:41 +01:00
|
|
|
nativeBuildInputs = lib.optionals enableQt [ wrapQtAppsHook ];
|
2019-08-29 23:30:30 +02:00
|
|
|
|
2021-07-27 19:49:32 +02:00
|
|
|
propagatedBuildInputs = with py.pkgs; [
|
2019-01-21 12:47:05 +01:00
|
|
|
aiohttp
|
|
|
|
aiohttp-socks
|
2020-06-25 13:49:27 +02:00
|
|
|
aiorpcx
|
|
|
|
attrs
|
|
|
|
bitstring
|
2020-12-09 16:39:51 +01:00
|
|
|
cryptography
|
2017-12-10 15:27:06 +01:00
|
|
|
dnspython
|
2017-11-18 18:46:35 +01:00
|
|
|
jsonrpclib-pelix
|
2017-10-19 21:19:58 +02:00
|
|
|
matplotlib
|
2015-03-17 23:29:35 +01:00
|
|
|
pbkdf2
|
2017-09-05 17:11:41 +02:00
|
|
|
protobuf
|
2017-03-11 14:00:59 +01:00
|
|
|
pysocks
|
2015-03-17 23:29:35 +01:00
|
|
|
qrcode
|
|
|
|
requests
|
2018-12-07 15:29:24 +01:00
|
|
|
tlslite-ng
|
2016-01-21 23:58:28 +01:00
|
|
|
# plugins
|
2021-04-02 22:26:03 +02:00
|
|
|
btchip
|
2019-08-12 00:09:17 +02:00
|
|
|
ckcc-protocol
|
2016-01-21 23:58:28 +01:00
|
|
|
keepkey
|
2017-03-11 14:00:59 +01:00
|
|
|
trezor
|
2021-07-27 19:49:32 +02:00
|
|
|
] ++ lib.optionals enableQt [
|
|
|
|
pyqt5
|
|
|
|
qdarkstyle
|
|
|
|
];
|
2014-03-23 16:22:57 +01:00
|
|
|
|
2016-10-15 00:50:19 +02:00
|
|
|
preBuild = ''
|
|
|
|
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
|
2019-07-11 16:08:57 +02:00
|
|
|
substituteInPlace ./electrum/ecc_fast.py \
|
|
|
|
--replace ${libsecp256k1_name} ${secp256k1}/lib/libsecp256k1${stdenv.hostPlatform.extensions.sharedLibrary}
|
|
|
|
'' + (if enableQt then ''
|
|
|
|
substituteInPlace ./electrum/qrscanner.py \
|
2019-06-23 13:39:01 +02:00
|
|
|
--replace ${libzbar_name} ${zbar.lib}/lib/libzbar${stdenv.hostPlatform.extensions.sharedLibrary}
|
2019-07-11 16:08:57 +02:00
|
|
|
'' else ''
|
|
|
|
sed -i '/qdarkstyle/d' contrib/requirements/requirements.txt
|
|
|
|
'');
|
|
|
|
|
2021-01-15 06:42:41 +01:00
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
2016-12-18 21:56:43 +01:00
|
|
|
# Despite setting usr_share above, these files are installed under
|
|
|
|
# $out/nix ...
|
2017-11-18 18:46:35 +01:00
|
|
|
mv $out/${python3.sitePackages}/nix/store"/"*/share $out
|
|
|
|
rm -rf $out/${python3.sitePackages}/nix
|
2017-03-11 14:00:59 +01:00
|
|
|
|
|
|
|
substituteInPlace $out/share/applications/electrum.desktop \
|
2019-05-09 22:24:21 +02:00
|
|
|
--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 23:30:30 +02:00
|
|
|
|
|
|
|
'';
|
|
|
|
|
2021-01-15 06:42:41 +01:00
|
|
|
postFixup = lib.optionalString enableQt ''
|
2019-08-29 23:30:30 +02:00
|
|
|
wrapQtApp $out/bin/electrum
|
2016-12-18 21:56:43 +01:00
|
|
|
'';
|
|
|
|
|
2021-04-02 22:26:03 +02:00
|
|
|
checkInputs = with python3.pkgs; [ pytestCheckHook pyaes pycryptodomex ];
|
2020-12-09 16:39:51 +01:00
|
|
|
|
|
|
|
pytestFlagsArray = [ "electrum/tests" ];
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
"test_loop" # test tries to bind 127.0.0.1 causing permission error
|
|
|
|
];
|
2017-11-18 18:46:35 +01:00
|
|
|
|
2020-12-09 16:39:51 +01:00
|
|
|
postCheck = ''
|
2016-03-11 08:26:43 +01:00
|
|
|
$out/bin/electrum help >/dev/null
|
|
|
|
'';
|
|
|
|
|
2019-05-17 12:29:44 +02:00
|
|
|
passthru.updateScript = import ./update.nix {
|
2021-01-27 06:44:43 +01:00
|
|
|
inherit lib;
|
2019-05-17 12:29:44 +02:00
|
|
|
inherit
|
|
|
|
writeScript
|
|
|
|
common-updater-scripts
|
|
|
|
bash
|
|
|
|
coreutils
|
|
|
|
curl
|
|
|
|
gnupg
|
|
|
|
gnugrep
|
|
|
|
gnused
|
|
|
|
nix
|
|
|
|
;
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-10-08 16:01:28 +02:00
|
|
|
description = "A lightweight Bitcoin wallet";
|
2015-03-28 15:34:22 +01:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://electrum.org/";
|
2021-07-20 15:44:02 +02:00
|
|
|
downloadPage = "https://electrum.org/#download";
|
|
|
|
changelog = "https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES";
|
2016-03-01 19:21:07 +01:00
|
|
|
license = licenses.mit;
|
2019-07-11 16:08:57 +02:00
|
|
|
platforms = platforms.all;
|
2021-03-23 10:20:20 +01:00
|
|
|
maintainers = with maintainers; [ joachifm np prusnak ];
|
2014-03-23 16:22:57 +01:00
|
|
|
};
|
2014-12-20 00:52:08 +01:00
|
|
|
}
|