Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
xorg,
|
|
wrapQtAppsHook,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "lenovo-legion-app";
|
|
version = "0.0.21-unstable-2025-07-11";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "johnfanv2";
|
|
repo = "LenovoLegionLinux";
|
|
rev = "f559df04cc0705b2b181dfd0404110a4d1d6e2a9";
|
|
hash = "sha256-WXGDlykH6aBUVotmDcGZ8Y/zC8iBAv57u3hXRnfTaSo=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/python/legion_linux";
|
|
|
|
nativeBuildInputs = [ wrapQtAppsHook ];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
pyqt6
|
|
argcomplete
|
|
pillow
|
|
pyyaml
|
|
darkdetect
|
|
xorg.libxcb
|
|
];
|
|
|
|
postPatch = ''
|
|
# only fixup application (legion-linux-gui), service (legiond) currently not installed so do not fixup
|
|
# version
|
|
substituteInPlace ./setup.cfg \
|
|
--replace-fail "_VERSION" "${builtins.head (lib.splitString "-" version)}"
|
|
|
|
# /etc
|
|
substituteInPlace ./legion_linux/legion.py \
|
|
--replace-fail "/etc/legion_linux" "$out/share/legion_linux"
|
|
|
|
# /usr
|
|
substituteInPlace ./legion_linux/legion_gui.desktop \
|
|
--replace-fail "Icon=/usr/share/pixmaps/legion_logo.png" "Icon=legion_logo"
|
|
'';
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = {
|
|
description = "Utility to control Lenovo Legion laptop";
|
|
homepage = "https://github.com/johnfanv2/LenovoLegionLinux";
|
|
license = lib.licenses.gpl2Only;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [
|
|
ulrikstrid
|
|
logger
|
|
chn
|
|
];
|
|
mainProgram = "legion_gui";
|
|
};
|
|
}
|