summary refs log tree commit diff
path: root/pkgs/games/grapejuice
diff options
context:
space:
mode:
authorShardion <22127191+Shardion@users.noreply.github.com>2022-01-13 09:15:15 -0800
committerShardion <22127191+Shardion@users.noreply.github.com>2022-01-13 09:15:15 -0800
commit9f928fe96960cf19c9e93fc5abb6537b2029e77c (patch)
treea0515d51e12e8888d0256e54f994280929874332 /pkgs/games/grapejuice
parent4d78aaf34599ed3c88e26be1cdc77fdbc898857c (diff)
downloadnixpkgs-9f928fe96960cf19c9e93fc5abb6537b2029e77c.tar
nixpkgs-9f928fe96960cf19c9e93fc5abb6537b2029e77c.tar.gz
nixpkgs-9f928fe96960cf19c9e93fc5abb6537b2029e77c.tar.bz2
nixpkgs-9f928fe96960cf19c9e93fc5abb6537b2029e77c.tar.lz
nixpkgs-9f928fe96960cf19c9e93fc5abb6537b2029e77c.tar.xz
nixpkgs-9f928fe96960cf19c9e93fc5abb6537b2029e77c.tar.zst
nixpkgs-9f928fe96960cf19c9e93fc5abb6537b2029e77c.zip
grapejuice: 3.64.16 -> 4.10.2
Diffstat (limited to 'pkgs/games/grapejuice')
-rw-r--r--pkgs/games/grapejuice/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/games/grapejuice/default.nix b/pkgs/games/grapejuice/default.nix
index 931de10c18f..4ddb58c8148 100644
--- a/pkgs/games/grapejuice/default.nix
+++ b/pkgs/games/grapejuice/default.nix
@@ -11,17 +11,19 @@
 , xdg-user-dirs
 , wine
 , winetricks
+, pciutils
+, glxinfo
 }:
 
 python3Packages.buildPythonApplication rec  {
   pname = "grapejuice";
-  version = "3.64.16";
+  version = "4.10.2";
 
   src = fetchFromGitLab {
     owner = "BrinkerVII";
     repo = "grapejuice";
-    rev = "a5bc65e094bbfb86e6142ac1da59017ddccff69e";
-    sha256 = "sha256-3+5LWn+UBgLAX683MPHRHQMpW+gC5hGIwTtRVJHRWeE=";
+    rev = "9a7cf806d35b4d53b3d3762339eba7d861b5043d";
+    sha256 = "sha256-cKZv9qPCnl7i4kb6PG8RYx3HNLcwgI4d2zkw899MA6E=";
   };
 
   nativeBuildInputs = [
@@ -43,13 +45,14 @@ python3Packages.buildPythonApplication rec  {
     packaging
     psutil
     setuptools
+    unidecode
   ];
 
   dontWrapGApps = true;
 
   makeWrapperArgs = [
     "\${gappsWrapperArgs[@]}"
-    "--prefix PATH : ${lib.makeBinPath [ xdg-user-dirs xdg-utils wine winetricks ]}"
+    "--prefix PATH : ${lib.makeBinPath [ xdg-user-dirs xdg-utils wine winetricks pciutils glxinfo ]}"
   ];
 
   postPatch = ''
@@ -84,7 +87,7 @@ python3Packages.buildPythonApplication rec  {
 
   meta = with lib; {
     homepage = "https://gitlab.com/brinkervii/grapejuice";
-    description = "Simple Wine+Roblox management tool";
+    description = "A wine+Roblox management application";
     license = licenses.gpl3Plus;
     platforms = platforms.linux;
     maintainers = with maintainers; [ artturin ];