Unverified Commit 19a4cf25 authored by superherointj's avatar superherointj Committed by GitHub
Browse files

Merge pull request #192635 from mweinelt/openra-python3

openra: use python3
parents 50237ca3 47f3427c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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)" ];