love: make love_11 the default

Use the latest love version by default, but hardcode the 0.10.2 legacy version
for games that are not yet compatible with love 11.

The following packages depend on love. They all seem to work.

love 0.10.2 users: duckmarines, mrrescue, 90secondportraits, orthorobot
love 11.4 users: sienna, mari0
This commit is contained in:
Philipp Bartsch
2023-02-16 20:05:52 +01:00
parent fe18efc37b
commit 5dc4dfb422
+3 -3
View File
@@ -16403,7 +16403,7 @@ with pkgs;
love_0_10 = callPackage ../development/interpreters/love/0.10.nix { };
love_11 = callPackage ../development/interpreters/love/11.nix { };
love = love_0_10;
love = love_11;
wabt = callPackage ../development/tools/wabt { };
@@ -35388,7 +35388,7 @@ with pkgs;
python = python3;
};
mrrescue = callPackage ../games/mrrescue { };
mrrescue = callPackage ../games/mrrescue { love = love_0_10; };
mudlet = libsForQt5.callPackage ../games/mudlet {
lua = lua5_1;
@@ -35499,7 +35499,7 @@ with pkgs;
openxray = callPackage ../games/openxray { };
orthorobot = callPackage ../games/orthorobot { };
orthorobot = callPackage ../games/orthorobot { love = love_0_10; };
pacvim = callPackage ../games/pacvim { };