2013-03-30 20:04:31 +01:00
|
|
|
{ stdenv, fetchurl, cmake, wxGTK, openal, pkgconfig, curl, libtorrentRasterbar, libpng, libX11
|
2014-02-10 14:18:58 +01:00
|
|
|
, gettext, bash, gawk, boost, libnotify, gtk, doxygen, spring, makeWrapper }:
|
2010-11-13 08:47:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2012-03-08 16:32:20 +01:00
|
|
|
name = "springlobby-${version}";
|
2014-03-27 02:01:45 +01:00
|
|
|
version = "0.186";
|
2010-11-13 08:47:04 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.springlobby.info/tarballs/springlobby-${version}.tar.bz2";
|
2014-03-27 02:01:45 +01:00
|
|
|
sha256 = "0pj7v85gl76hxvfhcypxsayk8lnnhgjn2irawgx49p80wsivl64k";
|
2010-11-13 08:47:04 +01:00
|
|
|
};
|
|
|
|
|
2013-12-04 03:25:05 +01:00
|
|
|
buildInputs = [
|
|
|
|
cmake wxGTK openal pkgconfig curl gettext libtorrentRasterbar boost libpng libX11
|
2014-02-10 14:18:58 +01:00
|
|
|
libnotify gtk doxygen makeWrapper
|
2013-12-04 03:25:05 +01:00
|
|
|
];
|
2010-11-13 08:47:04 +01:00
|
|
|
|
|
|
|
prePatch = ''
|
2012-02-29 15:29:49 +01:00
|
|
|
substituteInPlace tools/regen_config_header.sh --replace "#!/usr/bin/env bash" "#!${bash}/bin/bash"
|
2010-11-13 08:47:04 +01:00
|
|
|
substituteInPlace tools/test-susynclib.awk --replace "#!/usr/bin/awk" "#!${gawk}/bin/awk"
|
|
|
|
substituteInPlace CMakeLists.txt --replace "boost_system-mt" "boost_system"
|
|
|
|
'';
|
|
|
|
|
2012-03-09 01:59:13 +01:00
|
|
|
# for now sound is disabled as it causes a linker error with alure i can't resolve (qknight)
|
|
|
|
cmakeFlags = "-DOPTION_SOUND:BOOL=OFF";
|
|
|
|
|
2010-11-13 08:47:04 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-02-10 14:18:58 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/springlobby \
|
|
|
|
--prefix PATH : "${spring}/bin" \
|
2014-03-22 11:49:20 +01:00
|
|
|
--set SPRING_BUNDLE_DIR "${spring}/lib"
|
2014-02-10 14:18:58 +01:00
|
|
|
'';
|
2012-03-09 01:59:13 +01:00
|
|
|
|
2010-11-13 08:47:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://springlobby.info/;
|
2014-03-22 11:49:20 +01:00
|
|
|
repositories.git = git://github.com/springlobby/springlobby.git;
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Cross-platform lobby client for the Spring RTS project";
|
2010-11-13 08:47:04 +01:00
|
|
|
license = licenses.gpl2;
|
2014-03-22 11:49:20 +01:00
|
|
|
maintainers = with maintainers; [ phreedom qknight iElectric ];
|
2012-03-08 16:32:20 +01:00
|
|
|
platforms = platforms.linux;
|
2010-11-13 08:47:04 +01:00
|
|
|
};
|
2012-03-08 16:32:20 +01:00
|
|
|
}
|