lutris: 0.5.7.1 -> 0.5.8.3

This commit is contained in:
fortuneteller2k 2021-04-03 15:24:37 +08:00
parent 470e4a9bbc
commit b9e4b2f679

View File

@ -17,11 +17,13 @@
, dbus-python , dbus-python
, distro , distro
, evdev , evdev
, lxml
, pillow , pillow
, pygobject3 , pygobject3
, pyyaml , pyyaml
, requests , requests
, keyring , keyring
, python_magic
# commands that lutris needs # commands that lutris needs
, xrandr , xrandr
@ -71,13 +73,13 @@ let
in buildPythonApplication rec { in buildPythonApplication rec {
pname = "lutris-original"; pname = "lutris-original";
version = "0.5.7.1"; version = "0.5.8.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lutris"; owner = "lutris";
repo = "lutris"; repo = "lutris";
rev = "v${version}"; rev = "v${version}";
sha256 = "12ispwkbbm5aq263n3bdjmjfkpwplizacnqs2c0wnag4zj4kpm29"; sha256 = "sha256-NnWIP9oEndk/hDo5Z33pkmZ61pxT/ScmZ4YpS2ajK/8=";
}; };
nativeBuildInputs = [ wrapGAppsHook ]; nativeBuildInputs = [ wrapGAppsHook ];
@ -94,7 +96,16 @@ in buildPythonApplication rec {
] ++ gstDeps; ] ++ gstDeps;
propagatedBuildInputs = [ propagatedBuildInputs = [
evdev distro pyyaml pygobject3 requests pillow dbus-python keyring evdev
distro
lxml
pyyaml
pygobject3
requests
pillow
dbus-python
keyring
python_magic
]; ];
# avoid double wrapping # avoid double wrapping
@ -112,7 +123,7 @@ in buildPythonApplication rec {
meta = with lib; { meta = with lib; {
homepage = "https://lutris.net"; homepage = "https://lutris.net";
description = "Open Source gaming platform for GNU/Linux"; description = "Open Source gaming platform for GNU/Linux";
license = licenses.gpl3; license = licenses.gpl3Plus;
maintainers = with maintainers; [ chiiruno ]; maintainers = with maintainers; [ chiiruno ];
platforms = platforms.linux; platforms = platforms.linux;
}; };