summary refs log tree commit diff
path: root/pkgs/applications/misc/lutris
diff options
context:
space:
mode:
authorIlan Joselevich <personal@ilanjoselevich.com>2021-07-03 15:46:45 +0300
committerIlan Joselevich <personal@ilanjoselevich.com>2021-07-03 15:46:45 +0300
commitafe5bef405508c7efb2d0a9d30c9c84332be83cb (patch)
tree7c6434f9341bce90149025ed7727f237de1dd77a /pkgs/applications/misc/lutris
parentf091739337022031ebeb14a8f1bc2ecfc76d14fc (diff)
downloadnixpkgs-afe5bef405508c7efb2d0a9d30c9c84332be83cb.tar
nixpkgs-afe5bef405508c7efb2d0a9d30c9c84332be83cb.tar.gz
nixpkgs-afe5bef405508c7efb2d0a9d30c9c84332be83cb.tar.bz2
nixpkgs-afe5bef405508c7efb2d0a9d30c9c84332be83cb.tar.lz
nixpkgs-afe5bef405508c7efb2d0a9d30c9c84332be83cb.tar.xz
nixpkgs-afe5bef405508c7efb2d0a9d30c9c84332be83cb.tar.zst
nixpkgs-afe5bef405508c7efb2d0a9d30c9c84332be83cb.zip
lutris-unwrapped: 0.5.8.3 -> 0.5.8.4
Diffstat (limited to 'pkgs/applications/misc/lutris')
-rw-r--r--pkgs/applications/misc/lutris/default.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/applications/misc/lutris/default.nix b/pkgs/applications/misc/lutris/default.nix
index d294271ca25..2d70daa94ec 100644
--- a/pkgs/applications/misc/lutris/default.nix
+++ b/pkgs/applications/misc/lutris/default.nix
@@ -1,6 +1,8 @@
-{ buildPythonApplication, lib, fetchFromGitHub
+{ buildPythonApplication
+, lib
+, fetchFromGitHub
 
-# build inputs
+  # build inputs
 , atk
 , gdk-pixbuf
 , glib-networking
@@ -13,7 +15,7 @@
 , webkitgtk
 , wrapGAppsHook
 
-# python dependencies
+  # python dependencies
 , dbus-python
 , distro
 , evdev
@@ -25,7 +27,7 @@
 , keyring
 , python_magic
 
-# commands that lutris needs
+  # commands that lutris needs
 , xrandr
 , pciutils
 , psmisc
@@ -71,15 +73,16 @@ let
     gstreamer
   ];
 
-in buildPythonApplication rec {
+in
+buildPythonApplication rec {
   pname = "lutris-original";
-  version = "0.5.8.3";
+  version = "0.5.8.4";
 
   src = fetchFromGitHub {
     owner = "lutris";
     repo = "lutris";
     rev = "v${version}";
-    sha256 = "sha256-NnWIP9oEndk/hDo5Z33pkmZ61pxT/ScmZ4YpS2ajK/8=";
+    sha256 = "sha256-5ivXIgDyM9PRvuUhPFPgziXDvggcL+p65kI2yOaiS1M=";
   };
 
   nativeBuildInputs = [ wrapGAppsHook ];