Merge pull request #216680 from tnias/love-fix-versions

love: fix versions
This commit is contained in:
7c6f434c 2023-02-20 06:45:07 +00:00 committed by GitHub
commit fbf9888d26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -6,13 +6,13 @@
stdenv.mkDerivation rec {
pname = "love";
version = "11.4";
version = "0.10.2";
src = fetchFromGitHub {
owner = "love2d";
repo = "love";
rev = version;
sha256 = "sha256-C/Ifd0KjmaM5Y2fxBiDNz1GQoT4GeH/vyUCiira57U4=";
sha256 = "19yfmlcx6w8yi4ndm5lni8lrsvnn77bxw5py0dc293nzzlaqa9ym";
};
nativeBuildInputs = [ pkg-config autoconf automake ];

View File

@ -38,7 +38,7 @@ stdenv.mkDerivation {
mkdir -p $out/bin
mkdir -p $out/share/games/lovegames
cp -v $src $out/share/${pname}.love
cp -v $src $out/share/games/lovegames/${pname}.love
makeWrapper ${love}/bin/love $out/bin/${pname} --add-flags $out/share/games/lovegames/${pname}.love

View File

@ -16457,7 +16457,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 { };
@ -35447,7 +35447,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;
@ -35558,7 +35558,7 @@ with pkgs;
openxray = callPackage ../games/openxray { };
orthorobot = callPackage ../games/orthorobot { };
orthorobot = callPackage ../games/orthorobot { love = love_0_10; };
pacvim = callPackage ../games/pacvim { };