2016-05-03 09:19:19 +00:00
|
|
|
{ stdenv, fetchurl, cmake, wxGTK30, openal, pkgconfig, curl, libtorrentRasterbar
|
|
|
|
, libpng, libX11, gettext, bash, gawk, boost, libnotify, gtk, doxygen, spring
|
|
|
|
, makeWrapper, glib, minizip, alure, pcre, jsoncpp }:
|
2010-11-13 07:47:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2012-03-08 15:32:20 +00:00
|
|
|
name = "springlobby-${version}";
|
2016-05-03 09:19:19 +00:00
|
|
|
version = "0.247";
|
2010-11-13 07:47:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.springlobby.info/tarballs/springlobby-${version}.tar.bz2";
|
2016-05-03 09:19:19 +00:00
|
|
|
sha256 = "0sx14k4xsyjkmphhxfn9q341lv32c53g6wl1cbdx2sknzs3qasxs";
|
2010-11-13 07:47:04 +00:00
|
|
|
};
|
|
|
|
|
2013-12-04 02:25:05 +00:00
|
|
|
buildInputs = [
|
2016-05-03 09:19:19 +00:00
|
|
|
cmake wxGTK30 openal pkgconfig curl gettext libtorrentRasterbar pcre jsoncpp
|
|
|
|
boost libpng libX11 libnotify gtk doxygen makeWrapper glib minizip alure
|
2013-12-04 02:25:05 +00:00
|
|
|
];
|
2010-11-13 07:47:04 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
2012-02-29 14:29:49 +00:00
|
|
|
substituteInPlace tools/regen_config_header.sh --replace "#!/usr/bin/env bash" "#!${bash}/bin/bash"
|
2010-11-13 07:47:04 +00:00
|
|
|
substituteInPlace tools/test-susynclib.awk --replace "#!/usr/bin/awk" "#!${gawk}/bin/awk"
|
|
|
|
substituteInPlace CMakeLists.txt --replace "boost_system-mt" "boost_system"
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-02-10 13:18:58 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/springlobby \
|
|
|
|
--prefix PATH : "${spring}/bin" \
|
2014-03-22 10:49:20 +00:00
|
|
|
--set SPRING_BUNDLE_DIR "${spring}/lib"
|
2014-02-10 13:18:58 +00:00
|
|
|
'';
|
2012-03-09 00:59:13 +00:00
|
|
|
|
2010-11-13 07:47:04 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://springlobby.info/;
|
2014-03-22 10:49:20 +00:00
|
|
|
repositories.git = git://github.com/springlobby/springlobby.git;
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Cross-platform lobby client for the Spring RTS project";
|
2010-11-13 07:47:04 +00:00
|
|
|
license = licenses.gpl2;
|
2016-05-17 11:57:28 +00:00
|
|
|
maintainers = with maintainers; [ phreedom qknight domenkozar ];
|
2012-03-08 15:32:20 +00:00
|
|
|
platforms = platforms.linux;
|
2010-11-13 07:47:04 +00:00
|
|
|
};
|
2012-03-08 15:32:20 +00:00
|
|
|
}
|