66 lines
2.3 KiB
Nix
66 lines
2.3 KiB
Nix
{ stdenv, fetchurl, unzip, SDL, mesa, openal, curl, libXxf86vm }:
|
|
stdenv.mkDerivation rec {
|
|
name = "urbanterror-${version}";
|
|
version = "4.2.023";
|
|
srcs =
|
|
[ (fetchurl {
|
|
url = "http://mirror.urtstats.net/urbanterror/UrbanTerror42_full023.zip";
|
|
sha256 = "e287e2a17432b81551f5c16e431d752484ce9be10508e756542f653757a29090";
|
|
})
|
|
(fetchurl {
|
|
url = "https://github.com/Barbatos/ioq3-for-UrbanTerror-4/archive/release-4.2.023.tar.gz";
|
|
sha256 = "03zrrx5b96c1srf2p24ca7zygq84byvrmcgh42d8bh5ds579ziqp";
|
|
})
|
|
];
|
|
buildInputs = [ unzip SDL mesa openal curl libXxf86vm];
|
|
sourceRoot = "ioq3-for-UrbanTerror-4-release-4.2.023";
|
|
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
|
|
'';
|
|
installPhase = ''
|
|
destDir="$out/opt/urbanterror"
|
|
mkdir -p "$destDir"
|
|
mkdir -p "$out/bin"
|
|
cp -v build/release-linux-*/Quake3-UrT.* \
|
|
"$destDir/Quake3-UrT"
|
|
cp -v build/release-linux-*/Quake3-UrT-Ded.* \
|
|
"$destDir/Quake3-UrT-Ded"
|
|
cp -rv ../UrbanTerror42/q3ut4 "$destDir"
|
|
cat << EOF > "$out/bin/urbanterror"
|
|
#! ${stdenv.shell}
|
|
cd "$destDir"
|
|
exec ./Quake3-UrT "\$@"
|
|
EOF
|
|
chmod +x "$out/bin/urbanterror"
|
|
cat << EOF > "$out/bin/urbanterror-ded"
|
|
#! ${stdenv.shell}
|
|
cd "$destDir"
|
|
exec ./Quake3-UrT-Ded "\$@"
|
|
EOF
|
|
chmod +x "$out/bin/urbanterror-ded"
|
|
'';
|
|
postFixup = ''
|
|
p=$out/opt/urbanterror/Quake3-UrT
|
|
cur_rpath=$(patchelf --print-rpath $p)
|
|
patchelf --set-rpath $cur_rpath:${mesa}/lib $p
|
|
'';
|
|
meta = {
|
|
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.net;
|
|
license = [ "unfree-redistributable" ];
|
|
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|