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
109 lines
2.1 KiB
Nix
109 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
wrapGAppsHook3,
|
|
gtk3,
|
|
gobject-introspection,
|
|
libappindicator-gtk3,
|
|
librsvg,
|
|
bluez,
|
|
linuxHeaders,
|
|
libX11,
|
|
libXext,
|
|
libXfixes,
|
|
libusb1,
|
|
udev,
|
|
udevCheckHook,
|
|
gtk-layer-shell,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "sc-controller";
|
|
version = "0.5.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "C0rn3j";
|
|
repo = "sc-controller";
|
|
tag = "v${version}";
|
|
hash = "sha256-7rSsRoxFCXSHSIIoBrIPPY+4/+M99Hdop8+EeryJues=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook3
|
|
gobject-introspection
|
|
udevCheckHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libappindicator-gtk3
|
|
librsvg
|
|
];
|
|
|
|
dependencies =
|
|
with python3Packages;
|
|
[
|
|
evdev
|
|
pygobject3
|
|
pylibacl
|
|
vdf
|
|
ioctl-opt
|
|
]
|
|
++ [
|
|
gtk-layer-shell
|
|
python3Packages.libusb1
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
python3Packages.pytestCheckHook
|
|
python3Packages.libusb1
|
|
python3Packages.toml
|
|
];
|
|
|
|
patches = [ ./scc_osd_keyboard.patch ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace scc/paths.py --replace sys.prefix "'$out'"
|
|
substituteInPlace scc/uinput.py --replace /usr/include ${linuxHeaders}/include
|
|
substituteInPlace scc/device_monitor.py --replace "find_library('bluetooth')" "'libbluetooth.so.3'"
|
|
'';
|
|
|
|
LD_LIBRARY_PATH = lib.makeLibraryPath [
|
|
libX11
|
|
libXext
|
|
libXfixes
|
|
libusb1
|
|
udev
|
|
bluez
|
|
];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "$LD_LIBRARY_PATH")
|
|
'';
|
|
|
|
postFixup = ''
|
|
(
|
|
# scc runs these scripts as programs. (See find_binary() in scc/tools.py.)
|
|
cd $out/lib/python*/site-packages/scc/x11
|
|
patchPythonScript scc-autoswitch-daemon.py
|
|
patchPythonScript scc-osd-daemon.py
|
|
)
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/C0rn3j/sc-controller";
|
|
# donations: https://www.patreon.com/kozec
|
|
description = "User-mode driver and GUI for Steam Controller and other controllers";
|
|
license = lib.licenses.gpl2Only;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [
|
|
orivej
|
|
rnhmjoj
|
|
];
|
|
};
|
|
}
|