5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
{ lib, fetchFromGitHub, xorg, libsForQt5, wrapQtAppsHook, python3 }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "lenovo-legion-app";
|
|
version = "0.0.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "johnfanv2";
|
|
repo = "LenovoLegionLinux";
|
|
rev = "v${version}-prerelease";
|
|
hash = "sha256-BNrRv9EBmNINQbAw+BzVxKl/XoDgH1tsNZHJxfSpNoU=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/python/legion_linux";
|
|
|
|
nativeBuildInputs = [ wrapQtAppsHook ];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
pyqt5
|
|
pyqt6
|
|
argcomplete
|
|
pyyaml
|
|
darkdetect
|
|
xorg.libxcb
|
|
libsForQt5.qtbase
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace ./setup.cfg \
|
|
--replace-fail "_VERSION" "${version}"
|
|
substituteInPlace ../../extra/service/fancurve-set \
|
|
--replace-fail "FOLDER=/etc/legion_linux/" "FOLDER=$out/share/legion_linux"
|
|
substituteInPlace ./legion_linux/legion.py \
|
|
--replace-fail "/etc/legion_linux" "$out/share/legion_linux"
|
|
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 = "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";
|
|
};
|
|
}
|
|
|