3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #94244 from lourkeur/electrum-ltc

electrum-ltc: fix #94238
This commit is contained in:
Lassulus 2020-08-21 09:13:52 +02:00 committed by GitHub
commit 5fd9f0a283
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View file

@ -1,6 +1,7 @@
{ stdenv { stdenv
, fetchurl , fetchurl
, python3Packages , python3Packages
, wrapQtAppsHook
}: }:
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
@ -12,7 +13,7 @@ python3Packages.buildPythonApplication rec {
sha256 = "0kxcx1xf6h9z8x0k483d6ykpnmfr30n6z3r6lgqxvbl42pq75li7"; sha256 = "0kxcx1xf6h9z8x0k483d6ykpnmfr30n6z3r6lgqxvbl42pq75li7";
}; };
nativeBuildInputs = with python3Packages; [ pyqt5 ]; nativeBuildInputs = with python3Packages; [ pyqt5 wrapQtAppsHook ];
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3Packages; [
pyaes pyaes
@ -35,6 +36,10 @@ python3Packages.buildPythonApplication rec {
sed -i '/Created: .*/d' gui/qt/icons_rc.py sed -i '/Created: .*/d' gui/qt/icons_rc.py
''; '';
postFixup = ''
wrapQtApp $out/bin/electrum-ltc
'';
checkPhase = '' checkPhase = ''
$out/bin/electrum-ltc help >/dev/null $out/bin/electrum-ltc help >/dev/null
''; '';
@ -54,4 +59,3 @@ python3Packages.buildPythonApplication rec {
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };
} }

View file

@ -19872,7 +19872,7 @@ in
electrum-dash = callPackage ../applications/misc/electrum/dash.nix { }; electrum-dash = callPackage ../applications/misc/electrum/dash.nix { };
electrum-ltc = callPackage ../applications/misc/electrum/ltc.nix { }; electrum-ltc = libsForQt5.callPackage ../applications/misc/electrum/ltc.nix { };
elementary-planner = callPackage ../applications/office/elementary-planner { }; elementary-planner = callPackage ../applications/office/elementary-planner { };