df99f195e8
``` Traceback (most recent call last): File "/nix/store/v1mzyrrnmm9xm7mhqps6pdxdyvkgb154-lutris-original-0.5.6/lib/python3.8/site-packages/lutris/exceptions.py", line 36, in wrapper return function(*args, **kwargs) File "/nix/store/v1mzyrrnmm9xm7mhqps6pdxdyvkgb154-lutris-original-0.5.6/lib/python3.8/site-packages/lutris/game.py", line 430, in configure_game xkbcomp = subprocess.Popen(xkbcomp_command, stdin=subprocess.PIPE) File "/nix/store/f87w21b91cws0wbsvyfn5vnlyv491czi-python3-3.8.3/lib/python3.8/subprocess.py", line 854, in __init__ self._execute_child(args, executable, preexec_fn, close_fds, File "/nix/store/f87w21b91cws0wbsvyfn5vnlyv491czi-python3-3.8.3/lib/python3.8/subprocess.py", line 1702, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'xkbcomp' ```
121 lines
2.0 KiB
Nix
121 lines
2.0 KiB
Nix
{ buildPythonApplication, lib, fetchFromGitHub, fetchpatch
|
|
|
|
# build inputs
|
|
, atk
|
|
, gdk-pixbuf
|
|
, glib-networking
|
|
, gnome-desktop
|
|
, gobject-introspection
|
|
, gst_all_1
|
|
, gtk3
|
|
, libgnome-keyring
|
|
, libnotify
|
|
, pango
|
|
, webkitgtk
|
|
, wrapGAppsHook
|
|
|
|
# python dependencies
|
|
, dbus-python
|
|
, distro
|
|
, evdev
|
|
, pillow
|
|
, pygobject3
|
|
, pyyaml
|
|
, requests
|
|
|
|
# commands that lutris needs
|
|
, xrandr
|
|
, pciutils
|
|
, psmisc
|
|
, glxinfo
|
|
, vulkan-tools
|
|
, xboxdrv
|
|
, pulseaudio
|
|
, p7zip
|
|
, xgamma
|
|
, libstrangle
|
|
, wine
|
|
, fluidsynth
|
|
, xorgserver
|
|
, xorg
|
|
}:
|
|
|
|
let
|
|
# See lutris/util/linux.py
|
|
binPath = lib.makeBinPath [
|
|
xrandr
|
|
pciutils
|
|
psmisc
|
|
glxinfo
|
|
vulkan-tools
|
|
xboxdrv
|
|
pulseaudio
|
|
p7zip
|
|
xgamma
|
|
libstrangle
|
|
wine
|
|
fluidsynth
|
|
xorgserver
|
|
xorg.setxkbmap
|
|
xorg.xkbcomp
|
|
];
|
|
|
|
gstDeps = with gst_all_1; [
|
|
gst-libav
|
|
gst-plugins-bad
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
gst-plugins-ugly
|
|
gstreamer
|
|
];
|
|
|
|
in buildPythonApplication rec {
|
|
pname = "lutris-original";
|
|
version = "0.5.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lutris";
|
|
repo = "lutris";
|
|
rev = "v${version}";
|
|
sha256 = "1f78qhyy8xqdg0rhxcwkap1bmg5mfxhb8qw1vbpxr6g62ajpwksa";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
buildInputs = [
|
|
atk
|
|
gdk-pixbuf
|
|
glib-networking
|
|
gnome-desktop
|
|
gobject-introspection
|
|
gtk3
|
|
libgnome-keyring
|
|
libnotify
|
|
pango
|
|
webkitgtk
|
|
] ++ gstDeps;
|
|
|
|
propagatedBuildInputs = [
|
|
evdev distro pyyaml pygobject3 requests pillow dbus-python
|
|
];
|
|
|
|
# avoid double wrapping
|
|
dontWrapGApps = true;
|
|
makeWrapperArgs = [
|
|
"--prefix PATH : ${binPath}"
|
|
''''${gappsWrapperArgs[@]}''
|
|
];
|
|
# needed for glib-schemas to work correctly (will crash on dialogues otherwise)
|
|
# see https://github.com/NixOS/nixpkgs/issues/56943
|
|
strictDeps = false;
|
|
|
|
preCheck = "export HOME=$PWD";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://lutris.net";
|
|
description = "Open Source gaming platform for GNU/Linux";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ chiiruno ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|