{ lib, fetchFromGitHub, xorg, libsForQt5, wrapQtAppsHook, python3 }: python3.pkgs.buildPythonApplication rec { pname = "lenovo-legion-app"; version = "0.0.9"; src = fetchFromGitHub { owner = "johnfanv2"; repo = "LenovoLegionLinux"; rev = "v${version}-prerelease"; hash = "sha256-PQdxfDfW3sn0wWjmsPoAt3HZ43PS3Tyez3/0KEVVZQg="; }; sourceRoot = "${src.name}/python/legion_linux"; nativeBuildInputs = [ wrapQtAppsHook ]; propagatedBuildInputs = with python3.pkgs; [ pyqt5 argcomplete pyyaml darkdetect xorg.libxcb libsForQt5.qtbase ]; postPatch = '' substituteInPlace ./setup.cfg \ --replace "_VERSION" "${version}" substituteInPlace ../../extra/service/fancurve-set \ --replace "FOLDER=/etc/legion_linux/" "FOLDER=$out/share/legion_linux" substituteInPlace ./legion_linux/legion.py \ --replace "/etc/legion_linux" "$out/share/legion_linux" substituteInPlace ./legion_linux/legion_gui{,_user}.desktop \ --replace "Icon=/usr/share/pixmaps/legion_logo.png" "Icon=legion_logo" ''; dontWrapQtApps = true; preFixup = '' makeWrapperArgs+=("''${qtWrapperArgs[@]}") ''; meta = { description = "An utility to control Lenovo Legion laptop"; homepage = "https://github.com/johnfanv2/LenovoLegionLinux"; license = lib.licenses.gpl2Only; platforms = lib.platforms.linux; maintainers = [ lib.maintainers.ulrikstrid ]; mainProgram = "legion_gui"; }; }