nixpkgs/pkgs/games/armagetronad/default.nix

28 lines
788 B
Nix
Raw Normal View History

{stdenv, fetchurl, SDL, libxml2, SDL_image, libjpeg, mesa, zlib} :
let
versionMajor = "0.2.8";
versionMinor = "3.3";
version = "${versionMajor}.${versionMinor}";
in
stdenv.mkDerivation {
name = "armagetron-${version}";
src = fetchurl {
url = "https://launchpad.net/armagetronad/${versionMajor}/0.2.8.3.x/+download/armagetronad-${version}.src.tar.bz2";
sha256 = "1s55irhg60fpmhy8wwxpdq7c45r1mqch6zpicyb2wf9ln60xgwnx";
};
NIX_LDFLAGS = "-lSDL_image";
configureFlags ="--disable-etc";
buildInputs = [SDL SDL_image libxml2 libjpeg mesa zlib];
meta = {
homepage = http://armagetronad.org;
description = "An multiplayer networked arcade racing game in 3D similar to Tron";
license = stdenv.lib.licenses.gpl2;
2015-11-02 17:29:16 +03:00
platforms = platforms.linux;
};
}