From 08fa8b9c604d1127e2d02bf9846b86cb2c9bd12a Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 13 Feb 2019 19:13:10 +0100 Subject: games: Use "mono" instead of "mono50" The use of mono50 was just an old relic where I was debugging some issue with a game, but I used it as a template for packaging other games, so it spread throughout the code base. I've tested all these games just to make sure they still work with the latest version. Signed-off-by: aszlig --- pkgs/games/itch/towerfall-ascension.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/games/itch') diff --git a/pkgs/games/itch/towerfall-ascension.nix b/pkgs/games/itch/towerfall-ascension.nix index 21704211..5028bc98 100644 --- a/pkgs/games/itch/towerfall-ascension.nix +++ b/pkgs/games/itch/towerfall-ascension.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGame, fetchItch, makeWrapper, p7zip, unzip, mono50 +{ stdenv, lib, buildGame, fetchItch, makeWrapper, p7zip, unzip, mono , SDL2, SDL2_image, libGL, libvorbis, openal, monogamePatcher, writeScriptBin , coreutils @@ -34,7 +34,7 @@ buildGame rec { Texture IntroScene SFX SFXVaried ''; - nativeBuildInputs = [ makeWrapper mono50 monogamePatcher ]; + nativeBuildInputs = [ makeWrapper mono monogamePatcher ]; libdir = if stdenv.system == "x86_64-linux" then "lib64" else "lib"; @@ -78,7 +78,7 @@ buildGame rec { "TowerFall Dark World Expansion/DarkWorldContent" fi - makeWrapper ${lib.escapeShellArg mono50}/bin/mono \ + makeWrapper ${lib.escapeShellArg mono}/bin/mono \ "$out/bin/towerfall-ascension" \ --set SDL_OPENGL_LIBRARY ${lib.escapeShellArg "${libGL}/lib/libGL.so"} \ --set PATH "$dummyXdgOpen/bin" \ -- cgit 1.4.1