nixpkgs/pkgs/games/armagetronad/default.nix

31 lines
901 B
Nix
Raw Normal View History

2019-11-10 17:44:34 +01:00
{ stdenv, fetchurl, SDL, libxml2, SDL_image, libjpeg, libpng, libGLU, libGL, zlib }:
let
versionMajor = "0.2.8";
2020-04-03 22:01:42 +02:00
versionMinor = "3.5";
version = "${versionMajor}.${versionMinor}";
in
stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "armagetron";
inherit version;
src = fetchurl {
2017-05-31 15:53:32 +02:00
url = "https://launchpad.net/armagetronad/${versionMajor}/${versionMajor}.${versionMinor}/+download/armagetronad-${version}.src.tar.bz2";
2020-04-03 22:01:42 +02:00
sha256 = "1vyja7mzivs3pacxb7kznndsgqhq4p0f7x2zg55dckvzqwprdhqx";
};
2019-10-30 01:40:49 +01:00
NIX_LDFLAGS = "-lSDL_image";
2017-05-31 15:56:29 +02:00
enableParallelBuilding = true;
2016-08-22 05:29:06 +02:00
configureFlags = [ "--disable-etc" ];
2019-11-10 17:44:34 +01:00
buildInputs = [ SDL SDL_image libxml2 libjpeg libpng libGLU libGL zlib ];
2015-11-02 15:33:32 +01:00
meta = with stdenv.lib; {
2020-04-03 22:01:42 +02:00
homepage = "http://armagetronad.org";
description = "An multiplayer networked arcade racing game in 3D similar to Tron";
2015-11-02 15:33:32 +01:00
license = licenses.gpl2;
2015-11-02 15:29:16 +01:00
platforms = platforms.linux;
};
}