Merge pull request #316995 from chewblacka/fix-ulauncher

ulauncher: fix deps
This commit is contained in:
Aleksana 2024-06-05 16:20:11 +08:00 committed by GitHub
commit 93b2651fa0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,7 +25,7 @@ python3Packages.buildPythonApplication rec {
src = fetchurl {
url = "https://github.com/Ulauncher/Ulauncher/releases/download/${version}/ulauncher_${version}.tar.gz";
sha256 = "sha256-YgOw3Gyy/o8qorWAnAlQrAZ2ZTnyP3PagLs2Qkdg788=";
hash = "sha256-YgOw3Gyy/o8qorWAnAlQrAZ2ZTnyP3PagLs2Qkdg788=";
};
nativeBuildInputs = with python3Packages; [
@ -57,6 +57,7 @@ python3Packages.buildPythonApplication rec {
pyxdg
pycairo
requests
semver
websocket-client
];
@ -76,7 +77,7 @@ python3Packages.buildPythonApplication rec {
substituteInPlace setup.py --subst-var out
patchShebangs bin/ulauncher-toggle
substituteInPlace bin/ulauncher-toggle \
--replace wmctrl ${wmctrl}/bin/wmctrl
--replace-fail wmctrl ${wmctrl}/bin/wmctrl
'';
# https://github.com/Ulauncher/Ulauncher/issues/390