etlegacy: remove symlinks

This will facilitate the installation of both 32 and 64bits version of the game

+3 -3
+3 -3
pkgs/by-name/et/etlegacy/package.nix
··· 1 { 2 lib, 3 symlinkJoin, 4 etlegacy-assets, 5 etlegacy-unwrapped, ··· 9 symlinkJoin { 10 name = "etlegacy"; 11 version = "2.83.2"; 12 paths = [ 13 etlegacy-assets 14 etlegacy-unwrapped ··· 23 --add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy" 24 wrapProgram $out/bin/etlded.* \ 25 --add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy" 26 - makeWrapper $out/bin/etl.* $out/bin/etl 27 - makeWrapper $out/bin/etlded.* $out/bin/etlded 28 ''; 29 30 meta = { ··· 39 for the popular online FPS game Wolfenstein: Enemy Territory - whose 40 gameplay is still considered unmatched by many, despite its great age. 41 ''; 42 - mainProgram = "etl"; 43 maintainers = with lib.maintainers; [ 44 ashleyghooper 45 ];
··· 1 { 2 lib, 3 + stdenv, 4 symlinkJoin, 5 etlegacy-assets, 6 etlegacy-unwrapped, ··· 10 symlinkJoin { 11 name = "etlegacy"; 12 version = "2.83.2"; 13 + 14 paths = [ 15 etlegacy-assets 16 etlegacy-unwrapped ··· 25 --add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy" 26 wrapProgram $out/bin/etlded.* \ 27 --add-flags "+set fs_basepath ${placeholder "out"}/lib/etlegacy" 28 ''; 29 30 meta = { ··· 39 for the popular online FPS game Wolfenstein: Enemy Territory - whose 40 gameplay is still considered unmatched by many, despite its great age. 41 ''; 42 + mainProgram = "etl." + (if stdenv.hostPlatform.isi686 then "i386" else "x86_64"); 43 maintainers = with lib.maintainers; [ 44 ashleyghooper 45 ];