Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / alienarena / default.nix
blob39b232b267c341386e9a6ef83211d00eca504c3a
1 { lib, stdenv, fetchsvn, pkg-config, libjpeg, libX11, libXxf86vm, curl, libogg
2 , libvorbis, freetype, openal, libGL }:
4 stdenv.mkDerivation rec {
5   pname = "alienarena";
6   version = "7.71.2";
8   src = fetchsvn {
9     url = "svn://svn.icculus.org/alienarena/trunk";
10     rev = "5673";
11     sha256 = "1qfrgrp7nznk5n1jqvjba6l1w8y2ixzyx9swkpvd02rdwlwrp9kw";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ libjpeg libX11 curl libogg libvorbis
16                   freetype openal libGL libXxf86vm ];
18   patchPhase = ''
19     substituteInPlace ./configure \
20       --replace libopenal.so.1 ${openal}/lib/libopenal.so.1 \
21       --replace libGL.so.1 ${libGL}/lib/libGL.so.1
22   '';
24   meta = with lib; {
25     description = "A free, stand-alone first-person shooter computer game";
26     longDescription = ''
27       Do you like old school deathmatch with modern features? How
28       about rich, colorful, arcade-like atmospheres? How about retro
29       Sci-Fi? Then you're going to love what Alien Arena has in store
30       for you! This game combines some of the very best aspects of
31       such games as Quake III and Unreal Tournament and wraps them up
32       with a retro alien theme, while adding tons of original ideas to
33       make the game quite unique.
34     '';
35     homepage = "http://red.planetarena.org";
36     # Engine is under GPLv2, everything else is under
37     license = licenses.unfreeRedistributable;
38     maintainers = with maintainers; [ astsmtl ];
39     platforms = platforms.linux;
40     hydraPlatforms = [];
41   };