nixpkgs/pkgs/games/urbanterror/default.nix

76 lines
2.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, unzip, SDL, libGLU, libGL, openal, curl, libXxf86vm }:
2017-01-30 08:22:50 +00:00
stdenv.mkDerivation rec {
pname = "urbanterror";
2018-10-02 19:57:54 +00:00
version = "4.3.4";
2017-01-30 08:22:50 +00:00
2013-02-16 17:43:34 +00:00
srcs =
[ (fetchurl {
2018-10-02 19:57:54 +00:00
url = "http://cdn.urbanterror.info/urt/43/releases/zips/UrbanTerror434_full.zip";
sha256 = "1rx4nnndsk88nvd7k4p35cw6znclkkzm2bl5j6vn6mjjdk66jrki";
2013-02-16 17:43:34 +00:00
})
(fetchurl {
2018-10-02 19:57:54 +00:00
url = "https://github.com/FrozenSand/ioq3-for-UrbanTerror-4/archive/release-${version}.zip";
sha256 = "1s9pmw7rbnzwzl1llcs0kr2krf4daf8hhnz1j89qk4bq9a9qfp71";
2013-02-16 17:43:34 +00:00
})
];
2017-01-30 08:22:50 +00:00
nativeBuildInputs = [ unzip ];
buildInputs = [ SDL libGL libGLU 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)
2019-11-10 16:44:34 +00:00
patchelf --set-rpath $cur_rpath:${libGL}/lib:${libGLU}/lib $p
'';
2017-01-30 08:22:50 +00:00
hardeningDisable = [ "format" ];
meta = with 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.
'';
homepage = "http://www.urbanterror.info";
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ astsmtl fpletz ];
platforms = platforms.linux;
hydraPlatforms = [];
};
}