about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2022-09-23 16:59:04 -0300
committerGitHub <noreply@github.com>2022-09-23 16:59:04 -0300
commit19a4cf250eb6c23259f52caded6046a7ab2cafaf (patch)
tree42c10f1f1d496bb94c3b087fbe7beb0ca8f72243 /pkgs/games
parent50237ca3b9d29c774d1df34fac552c11077663dd (diff)
parent47f3427ce424ff5485846ecb7be27ae11f7b36f5 (diff)
Merge pull request #192635 from mweinelt/openra-python3
openra: use python3
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/openra/common.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/openra/common.nix b/pkgs/games/openra/common.nix
index 67060f9ef3883..59c897ba37135 100644
--- a/pkgs/games/openra/common.nix
+++ b/pkgs/games/openra/common.nix
@@ -2,7 +2,7 @@
     and out-of-tree mod packages (mod.nix).
 */
 { lib, makeSetupHook, curl, unzip, dos2unix, pkg-config, makeWrapper
-, lua, mono, dotnetPackages, python2
+, lua, mono, dotnetPackages, python3
 , libGL, freetype, openal, SDL2
 , zenity
 }:
@@ -10,7 +10,7 @@
 with lib;
 
 let
-  path = makeBinPath ([ mono python2 ] ++ optional (zenity != null) zenity);
+  path = makeBinPath ([ mono python3 ] ++ optional (zenity != null) zenity);
   rpath = makeLibraryPath [ lua freetype openal SDL2 ];
   mkdirp = makeSetupHook { } ./mkdirp.sh;
 
@@ -66,7 +66,7 @@ in {
       makeWrapper
       mkdirp
       mono
-      python2
+      python3
     ];
 
     makeFlags = [ "prefix=$(out)" ];