armagetronad: fix build

+5 -5
+5 -5
pkgs/games/armagetronad/default.nix
··· 1 - {stdenv, fetchurl, SDL, libxml2, SDL_image, libjpeg, mesa, zlib} : 2 3 let 4 versionMajor = "0.2.8"; ··· 13 sha256 = "1s55irhg60fpmhy8wwxpdq7c45r1mqch6zpicyb2wf9ln60xgwnx"; 14 }; 15 16 - NIX_LDFLAGS = "-lSDL_image"; 17 18 - configureFlags ="--disable-etc"; 19 - buildInputs = [SDL SDL_image libxml2 libjpeg mesa zlib]; 20 21 meta = with stdenv.lib; { 22 - homepage = http://armagetronad.org; 23 description = "An multiplayer networked arcade racing game in 3D similar to Tron"; 24 license = licenses.gpl2; 25 platforms = platforms.linux;
··· 1 + { stdenv, fetchurl, SDL, libxml2, SDL_image, libjpeg, libpng, mesa, zlib }: 2 3 let 4 versionMajor = "0.2.8"; ··· 13 sha256 = "1s55irhg60fpmhy8wwxpdq7c45r1mqch6zpicyb2wf9ln60xgwnx"; 14 }; 15 16 + NIX_LDFLAGS = [ "-lSDL_image" ]; 17 18 + configureFlags = [ "--disable-etc" ]; 19 + buildInputs = [ SDL SDL_image libxml2 libjpeg libpng mesa zlib ]; 20 21 meta = with stdenv.lib; { 22 + homepage = "http://armagetronad.org"; 23 description = "An multiplayer networked arcade racing game in 3D similar to Tron"; 24 license = licenses.gpl2; 25 platforms = platforms.linux;