mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
Merge pull request #94244 from lourkeur/electrum-ltc
electrum-ltc: fix #94238
This commit is contained in:
commit
5fd9f0a283
@ -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; [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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 { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user