From c10a1a50b81d95a0851dba9730e2983c56eca7e9 Mon Sep 17 00:00:00 2001 From: Alexander Tsamutali Date: Sat, 22 Oct 2011 21:04:29 +0000 Subject: [PATCH] games/alienarena: New nixbuild. svn path=/nixpkgs/trunk/; revision=29975 --- pkgs/games/alienarena/default.nix | 32 +++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/games/alienarena/default.nix diff --git a/pkgs/games/alienarena/default.nix b/pkgs/games/alienarena/default.nix new file mode 100644 index 000000000000..aa7d2f1e9144 --- /dev/null +++ b/pkgs/games/alienarena/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, pkgconfig, libjpeg, libX11, libXxf86vm, curl, libogg +, libvorbis, freetype, openal, mesa }: +stdenv.mkDerivation rec { + name = "alienarena-7.52"; + src = fetchurl { + url = "http://icculus.org/alienarena/Files/alienarena-7_52-linux20110929.tar.gz"; + sha256 = "1s1l3apxsxnd8lyi568y38a1fcdr0gwmc3lkgq2nkc676k4gki3m"; + }; + buildInputs = [ pkgconfig libjpeg libX11 curl libogg libvorbis + freetype openal mesa libXxf86vm ]; + patchPhase = '' + substituteInPlace ./configure \ + --replace libopenal.so.1 ${openal}/lib/libopenal.so.1 + ''; + meta = { + description = "A free, stand-alone first-person shooter computer game"; + longDescription = '' + Do you like old school deathmatch with modern features? How + about rich, colorful, arcade-like atmospheres? How about retro + Sci-Fi? Then you're going to love what Alien Arena has in store + for you! This game combines some of the very best aspects of + such games as Quake III and Unreal Tournament and wraps them up + with a retro alien theme, while adding tons of original ideas to + make the game quite unique. + ''; + homepage = http://red.planetarena.org; + # Engine is under GPLv2, everything else is under + license = [ "unfree-redistributable" ]; + maintainers = with stdenv.lib.maintainers; [ astsmtl ]; + platforms = with stdenv.lib.platforms; linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 40e514b7693c..9735091c6915 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7681,6 +7681,8 @@ let ### GAMES + alienarena = callPackage ../games/alienarena { }; + asc = callPackage ../games/asc { lua = lua5; libsigcxx = libsigcxx12;