2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2017-05-05 20:44:28 +01:00
|
|
|
, fetchurl
|
2018-01-09 15:59:05 +00:00
|
|
|
, python3Packages
|
2020-07-30 16:40:47 +01:00
|
|
|
, wrapQtAppsHook
|
2017-05-05 20:44:28 +01:00
|
|
|
}:
|
|
|
|
|
2018-01-09 15:59:05 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2019-02-15 09:08:27 +00:00
|
|
|
pname = "electrum-ltc";
|
2019-09-11 18:27:11 +01:00
|
|
|
version = "3.3.8.1";
|
2017-05-05 20:44:28 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://electrum-ltc.org/download/Electrum-LTC-${version}.tar.gz";
|
2018-05-03 17:27:21 +01:00
|
|
|
sha256 = "0kxcx1xf6h9z8x0k483d6ykpnmfr30n6z3r6lgqxvbl42pq75li7";
|
2017-05-05 20:44:28 +01:00
|
|
|
};
|
|
|
|
|
2020-07-30 16:40:47 +01:00
|
|
|
nativeBuildInputs = with python3Packages; [ pyqt5 wrapQtAppsHook ];
|
2019-02-15 09:08:27 +00:00
|
|
|
|
2018-01-09 15:59:05 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
pyaes
|
2017-05-05 20:44:28 +01:00
|
|
|
ecdsa
|
|
|
|
pbkdf2
|
|
|
|
requests
|
|
|
|
qrcode
|
2018-01-09 15:59:05 +00:00
|
|
|
py_scrypt
|
|
|
|
pyqt5
|
2017-09-05 16:11:41 +01:00
|
|
|
protobuf
|
2017-12-10 14:27:06 +00:00
|
|
|
dnspython
|
2018-01-09 15:59:05 +00:00
|
|
|
jsonrpclib-pelix
|
2017-12-27 11:48:11 +00:00
|
|
|
pysocks
|
2020-10-29 07:38:47 +00:00
|
|
|
trezor
|
|
|
|
btchip
|
2017-05-05 20:44:28 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
sed -i 's,usr_share = .*,usr_share = "'$out'/share",g' setup.py
|
2018-01-09 15:59:05 +00:00
|
|
|
pyrcc5 icons.qrc -o gui/qt/icons_rc.py
|
2017-05-05 20:44:28 +01:00
|
|
|
# Recording the creation timestamps introduces indeterminism to the build
|
|
|
|
sed -i '/Created: .*/d' gui/qt/icons_rc.py
|
|
|
|
'';
|
|
|
|
|
2020-10-08 12:57:08 +01:00
|
|
|
preFixup = ''
|
|
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
2020-07-30 16:40:47 +01:00
|
|
|
'';
|
|
|
|
|
2017-05-05 20:44:28 +01:00
|
|
|
checkPhase = ''
|
|
|
|
$out/bin/electrum-ltc help >/dev/null
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-05-05 20:44:28 +01:00
|
|
|
description = "Litecoin thin client";
|
|
|
|
longDescription = ''
|
|
|
|
Electrum-LTC is a simple, but powerful Litecoin wallet. A twelve-word
|
|
|
|
security passphrase (or “seed”) leaves intruders stranded and your peace
|
|
|
|
of mind intact. Keep it on paper, or in your head... and never worry
|
|
|
|
about losing your litecoins to theft or hardware failure. No waiting, no
|
|
|
|
lengthy blockchain downloads and no syncing to the network.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://electrum-ltc.org/";
|
2017-05-05 20:44:28 +01:00
|
|
|
license = licenses.mit;
|
2018-01-09 17:27:09 +00:00
|
|
|
platforms = platforms.linux;
|
2019-09-16 16:43:19 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-05-05 20:44:28 +01:00
|
|
|
};
|
|
|
|
}
|