2010-04-24 14:39:10 +02:00
|
|
|
{ stdenv, fetchurl, unzip, SDL, mesa, openal, curl }:
|
2010-02-03 01:46:43 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "urbanterror-${version}";
|
2013-02-16 18:43:34 +01:00
|
|
|
version = "4.2.009";
|
|
|
|
srcs =
|
|
|
|
[ (fetchurl {
|
|
|
|
url = "http://download.urbanterror.info/urt/42/zips/UrbanTerror42_full_009.zip";
|
|
|
|
sha256 = "0m423zy6l1z4kxz55knlh1ypnqq58ghh08i8ziv4lm00ygm6mx2i";
|
|
|
|
})
|
|
|
|
(fetchurl {
|
|
|
|
url = "https://github.com/Barbatos/ioq3-for-UrbanTerror-4/archive/release-4.2.007.tar.gz";
|
|
|
|
sha256 = "1299j0i94697m2bbcgraxfbb7q1g6nc43l1xqlgqvcsjp799mwwn";
|
|
|
|
})
|
|
|
|
];
|
2012-04-16 00:33:36 +02:00
|
|
|
buildInputs = [ unzip SDL mesa openal curl ];
|
2013-02-16 18:43:34 +01:00
|
|
|
sourceRoot = "ioq3-for-UrbanTerror-4-release-4.2.007";
|
2010-04-24 14:39:10 +02: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
|
2010-02-03 01:46:43 +01:00
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
destDir="$out/opt/urbanterror"
|
2013-02-16 18:52:36 +01:00
|
|
|
mkdir -p "$destDir"
|
|
|
|
mkdir -p "$out/bin"
|
2013-02-16 18:43:34 +01:00
|
|
|
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"
|
2010-02-03 01:46:43 +01:00
|
|
|
cat << EOF > "$out/bin/urbanterror"
|
2013-02-16 18:43:34 +01:00
|
|
|
#! ${stdenv.shell}
|
2010-04-24 14:39:10 +02:00
|
|
|
cd "$destDir"
|
2013-02-16 18:43:34 +01:00
|
|
|
exec ./Quake3-UrT "\$@"
|
2010-04-24 14:39:10 +02:00
|
|
|
EOF
|
2010-02-03 01:46:43 +01:00
|
|
|
chmod +x "$out/bin/urbanterror"
|
|
|
|
cat << EOF > "$out/bin/urbanterror-ded"
|
2013-02-16 18:43:34 +01:00
|
|
|
#! ${stdenv.shell}
|
2010-04-24 14:39:10 +02:00
|
|
|
cd "$destDir"
|
2013-02-16 18:43:34 +01:00
|
|
|
exec ./Quake3-UrT-Ded "\$@"
|
2010-04-24 14:39:10 +02:00
|
|
|
EOF
|
2010-02-03 01:46:43 +01:00
|
|
|
chmod +x "$out/bin/urbanterror-ded"
|
|
|
|
'';
|
2010-04-24 14:39:10 +02:00
|
|
|
postFixup = ''
|
2013-02-16 18:43:34 +01:00
|
|
|
p=$out/opt/urbanterror/Quake3-UrT
|
2010-04-24 14:39:10 +02:00
|
|
|
cur_rpath=$(patchelf --print-rpath $p)
|
|
|
|
patchelf --set-rpath $cur_rpath:${mesa}/lib $p
|
|
|
|
'';
|
2010-02-03 01:46:43 +01:00
|
|
|
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 ];
|
2013-01-17 22:34:08 +01:00
|
|
|
#platforms = stdenv.lib.platforms.linux;
|
2010-02-03 01:46:43 +01:00
|
|
|
};
|
|
|
|
}
|