2014-01-01 16:47:32 +00:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, # required for both
|
2017-05-25 15:13:32 +01:00
|
|
|
unzip, libjpeg, zlib, libvorbis, curl, patchelf
|
2014-01-01 16:47:32 +00:00
|
|
|
, # glx
|
|
|
|
libX11, mesa, libXpm, libXext, libXxf86vm, alsaLib
|
|
|
|
, # sdl
|
|
|
|
SDL
|
|
|
|
}:
|
2013-05-02 12:13:11 +01:00
|
|
|
|
2011-11-06 13:54:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-10-16 00:42:45 +01:00
|
|
|
name = "xonotic-0.8.1";
|
2013-05-02 12:13:11 +01:00
|
|
|
|
2011-11-06 13:54:03 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://dl.xonotic.org/${name}.zip";
|
2015-10-16 00:42:45 +01:00
|
|
|
sha256 = "0vy4hkrbpz9g91gb84cbv4xl845qxaknak6hshk2yflrw90wr2xy";
|
2011-11-06 13:54:03 +00:00
|
|
|
};
|
2013-05-02 12:13:11 +01:00
|
|
|
|
2014-01-01 16:47:32 +00:00
|
|
|
buildInputs = [
|
|
|
|
# required for both
|
|
|
|
unzip libjpeg
|
|
|
|
# glx
|
|
|
|
libX11 mesa libXpm libXext libXxf86vm alsaLib
|
|
|
|
# sdl
|
|
|
|
SDL
|
2016-10-03 14:14:16 +01:00
|
|
|
zlib libvorbis curl
|
2014-01-01 16:47:32 +00:00
|
|
|
];
|
2013-05-02 12:13:11 +01:00
|
|
|
|
2011-11-06 13:54:03 +00:00
|
|
|
sourceRoot = "Xonotic/source/darkplaces";
|
2013-05-02 12:13:11 +01:00
|
|
|
|
2011-11-06 13:54:03 +00:00
|
|
|
buildPhase = ''
|
|
|
|
DP_FS_BASEDIR="$out/share/xonotic"
|
2014-01-01 16:47:32 +00:00
|
|
|
make DP_FS_BASEDIR=$DP_FS_BASEDIR cl-release
|
2011-11-06 13:54:03 +00:00
|
|
|
make DP_FS_BASEDIR=$DP_FS_BASEDIR sdl-release
|
|
|
|
make DP_FS_BASEDIR=$DP_FS_BASEDIR sv-release
|
|
|
|
'';
|
2016-10-03 14:14:16 +01:00
|
|
|
enableParallelBuilding = true;
|
2013-05-02 12:13:11 +01:00
|
|
|
|
2011-11-06 13:54:03 +00:00
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p "$out/bin"
|
2011-11-06 13:54:03 +00:00
|
|
|
cp darkplaces-dedicated "$out/bin/xonotic-dedicated"
|
|
|
|
cp darkplaces-sdl "$out/bin/xonotic-sdl"
|
2014-01-01 16:47:32 +00:00
|
|
|
cp darkplaces-glx "$out/bin/xonotic-glx"
|
2011-11-06 13:54:03 +00:00
|
|
|
cd ../..
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p "$out/share/xonotic"
|
2011-11-06 13:54:03 +00:00
|
|
|
mv data "$out/share/xonotic"
|
2014-01-01 16:47:32 +00:00
|
|
|
|
|
|
|
# default to sdl
|
|
|
|
ln -s "$out/bin/xonotic-sdl" "$out/bin/xonotic"
|
2011-11-06 13:54:03 +00:00
|
|
|
'';
|
2013-05-02 12:13:11 +01:00
|
|
|
|
2017-05-25 15:13:32 +01:00
|
|
|
# Xonotic needs to find libcurl.so at runtime for map downloads
|
2011-11-06 13:54:03 +00:00
|
|
|
dontPatchELF = true;
|
2017-05-25 15:13:32 +01:00
|
|
|
postFixup = ''
|
|
|
|
patchelf --add-needed ${curl.out}/lib/libcurl.so $out/bin/xonotic-dedicated
|
|
|
|
patchelf --add-needed ${curl.out}/lib/libcurl.so $out/bin/xonotic-sdl
|
|
|
|
patchelf --add-needed ${curl.out}/lib/libcurl.so $out/bin/xonotic-glx
|
|
|
|
'';
|
2013-05-02 12:13:11 +01:00
|
|
|
|
2011-11-06 13:54:03 +00:00
|
|
|
meta = {
|
|
|
|
description = "A free fast-paced first-person shooter";
|
|
|
|
longDescription = ''
|
|
|
|
Xonotic is a free, fast-paced first-person shooter that works on
|
|
|
|
Windows, OS X and Linux. The project is geared towards providing
|
|
|
|
addictive arena shooter gameplay which is all spawned and driven
|
|
|
|
by the community itself. Xonotic is a direct successor of the
|
|
|
|
Nexuiz project with years of development between them, and it
|
|
|
|
aims to become the best possible open-source FPS of its kind.
|
|
|
|
'';
|
|
|
|
homepage = http://www.xonotic.org;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2011-11-06 13:54:03 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
2013-11-04 23:04:36 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
hydraPlatforms = [];
|
2011-11-06 13:54:03 +00:00
|
|
|
};
|
|
|
|
}
|