133 lines
2.9 KiB
Nix
133 lines
2.9 KiB
Nix
|
{
|
||
|
copyDesktopItems,
|
||
|
fetchFromGitHub,
|
||
|
fetchPypi,
|
||
|
lib,
|
||
|
makeDesktopItem,
|
||
|
python3Packages,
|
||
|
qt6,
|
||
|
wrapGAppsHook3,
|
||
|
writeText,
|
||
|
xvfb-run,
|
||
|
}:
|
||
|
|
||
|
python3Packages.buildPythonApplication rec {
|
||
|
pname = "streamdeck-ui";
|
||
|
version = "4.1.3";
|
||
|
pyproject = true;
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
repo = "streamdeck-linux-gui";
|
||
|
owner = "streamdeck-linux-gui";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-KpsW3EycYRYU5YOg7NNGv5eeZbS9MAikj0Ke2ybPzAU=";
|
||
|
};
|
||
|
|
||
|
pythonRelaxDeps = [
|
||
|
"importlib-metadata"
|
||
|
"pillow"
|
||
|
];
|
||
|
|
||
|
build-system = [
|
||
|
python3Packages.poetry-core
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
copyDesktopItems
|
||
|
qt6.wrapQtAppsHook
|
||
|
wrapGAppsHook3
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs =
|
||
|
with python3Packages;
|
||
|
[
|
||
|
setuptools
|
||
|
filetype
|
||
|
cairosvg
|
||
|
pillow
|
||
|
pynput
|
||
|
pyside6
|
||
|
streamdeck
|
||
|
xlib
|
||
|
importlib-metadata
|
||
|
evdev
|
||
|
]
|
||
|
++ lib.optionals stdenv.hostPlatform.isLinux [ qt6.qtwayland ];
|
||
|
|
||
|
nativeCheckInputs =
|
||
|
[ xvfb-run ]
|
||
|
++ (with python3Packages; [
|
||
|
pytest
|
||
|
pytest-qt
|
||
|
pytest-mock
|
||
|
]);
|
||
|
|
||
|
checkPhase = ''
|
||
|
runHook preCheck
|
||
|
|
||
|
# The tests needs to find the log file
|
||
|
export STREAMDECK_UI_LOG_FILE=$(pwd)/.streamdeck_ui.log
|
||
|
xvfb-run pytest tests
|
||
|
|
||
|
runHook preCheck
|
||
|
'';
|
||
|
|
||
|
postInstall =
|
||
|
let
|
||
|
udevRules = ''
|
||
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", TAG+="uaccess"
|
||
|
'';
|
||
|
in
|
||
|
''
|
||
|
mkdir -p $out/lib/systemd/user
|
||
|
substitute scripts/streamdeck.service $out/lib/systemd/user/streamdeck.service \
|
||
|
--replace '<path to streamdeck>' $out/bin/streamdeck
|
||
|
|
||
|
mkdir -p "$out/etc/udev/rules.d"
|
||
|
cp ${writeText "70-streamdeck.rules" udevRules} $out/etc/udev/rules.d/70-streamdeck.rules
|
||
|
|
||
|
mkdir -p "$out/share/pixmaps"
|
||
|
cp streamdeck_ui/logo.png $out/share/pixmaps/streamdeck-ui.png
|
||
|
'';
|
||
|
|
||
|
desktopItems =
|
||
|
let
|
||
|
common = {
|
||
|
name = "streamdeck-ui";
|
||
|
desktopName = "Stream Deck UI";
|
||
|
icon = "streamdeck-ui";
|
||
|
exec = "streamdeck";
|
||
|
comment = "UI for the Elgato Stream Deck";
|
||
|
categories = [ "Utility" ];
|
||
|
};
|
||
|
in
|
||
|
builtins.map makeDesktopItem [
|
||
|
common
|
||
|
(
|
||
|
common
|
||
|
// {
|
||
|
name = "${common.name}-noui";
|
||
|
exec = "${common.exec} --no-ui";
|
||
|
noDisplay = true;
|
||
|
}
|
||
|
)
|
||
|
];
|
||
|
|
||
|
dontWrapQtApps = true;
|
||
|
dontWrapGApps = true;
|
||
|
makeWrapperArgs = [
|
||
|
"\${qtWrapperArgs[@]}"
|
||
|
"\${gappsWrapperArgs[@]}"
|
||
|
];
|
||
|
|
||
|
meta = {
|
||
|
changelog = "https://github.com/streamdeck-linux-gui/streamdeck-linux-gui/releases/tag/v${version}";
|
||
|
description = "Linux compatible UI for the Elgato Stream Deck";
|
||
|
downloadPage = "https://github.com/streamdeck-linux-gui/streamdeck-linux-gui/";
|
||
|
homepage = "https://streamdeck-linux-gui.github.io/streamdeck-linux-gui/";
|
||
|
license = lib.licenses.mit;
|
||
|
mainProgram = "streamdeck";
|
||
|
maintainers = with lib.maintainers; [ majiir ];
|
||
|
};
|
||
|
}
|