nixpkgs/pkgs/games/urbanterror/default.nix

75 lines
2.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip, SDL, libGLU_combined, openal, curl, libXxf86vm }:
2017-01-30 08:22:50 +00:00
stdenv.mkDerivation rec {
name = "urbanterror-${version}";
version = "4.3.3";
2017-01-30 08:22:50 +00:00
2013-02-16 17:43:34 +00:00
srcs =
[ (fetchurl {
url = "http://cdn.fs1.urbanterror.info/urt/43/releases/zips/UrbanTerror433_full.zip";
sha256 = "0rrh08ypnw805gd2wrs6af34nvp02x7vggfp0ymcmbr44wcjfn63";
2013-02-16 17:43:34 +00:00
})
(fetchurl {
2017-04-05 18:20:01 +00:00
url = "https://github.com/Barbatos/ioq3-for-UrbanTerror-4/archive/release-${version}.zip";
sha256 = "1624zsnr02nhdksmwnwmvw129lw3afd8h0hvv2j8qmcyxa7jw68b";
2013-02-16 17:43:34 +00:00
})
];
2017-01-30 08:22:50 +00:00
buildInputs = [ unzip SDL libGLU_combined openal curl libXxf86vm ];
2017-04-05 18:20:01 +00:00
sourceRoot = "ioq3-for-UrbanTerror-4-release-${version}";
2017-01-30 08:22:50 +00:00
configurePhase = ''
echo "USE_OPENAL = 1" > Makefile.local
echo "USE_OPENAL_DLOPEN = 0" >> Makefile.local
echo "USE_CURL = 1" >> Makefile.local
echo "USE_CURL_DLOPEN = 0" >> Makefile.local
'';
2017-01-30 08:22:50 +00:00
installPhase = ''
destDir="$out/opt/urbanterror"
mkdir -p "$destDir"
mkdir -p "$out/bin"
2013-02-16 17:43:34 +00:00
cp -v build/release-linux-*/Quake3-UrT.* \
"$destDir/Quake3-UrT"
cp -v build/release-linux-*/Quake3-UrT-Ded.* \
"$destDir/Quake3-UrT-Ded"
2017-01-30 08:22:50 +00:00
cp -rv ../UrbanTerror43/q3ut4 "$destDir"
cat << EOF > "$out/bin/urbanterror"
2013-02-16 17:43:34 +00:00
#! ${stdenv.shell}
cd "$destDir"
2013-02-16 17:43:34 +00:00
exec ./Quake3-UrT "\$@"
EOF
chmod +x "$out/bin/urbanterror"
cat << EOF > "$out/bin/urbanterror-ded"
2013-02-16 17:43:34 +00:00
#! ${stdenv.shell}
cd "$destDir"
2013-02-16 17:43:34 +00:00
exec ./Quake3-UrT-Ded "\$@"
EOF
chmod +x "$out/bin/urbanterror-ded"
'';
2017-01-30 08:22:50 +00:00
postFixup = ''
2013-02-16 17:43:34 +00:00
p=$out/opt/urbanterror/Quake3-UrT
cur_rpath=$(patchelf --print-rpath $p)
patchelf --set-rpath $cur_rpath:${libGLU_combined}/lib $p
'';
2017-01-30 08:22:50 +00:00
hardeningDisable = [ "format" ];
meta = with stdenv.lib; {
description = "A multiplayer tactical FPS on top of Quake 3 engine";
longDescription = ''
Urban Terror is a free multiplayer first person shooter developed by
FrozenSand, that (thanks to the ioquake3-code) does not require
Quake III Arena anymore. Urban Terror can be described as a Hollywood
tactical shooter; somewhat realism based, but the motto is "fun over
realism". This results in a very unique, enjoyable and addictive game.
'';
2018-09-03 20:08:22 +00:00
homepage = http://www.urbanterror.info;
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ astsmtl fpletz ];
platforms = platforms.linux;
hydraPlatforms = [];
};
}