36 lines
1.3 KiB
Nix
36 lines
1.3 KiB
Nix
{ stdenv, fetchurl, cmake, wxGTK, openal, pkgconfig, curl, libtorrentRasterbar, libpng, libX11
|
|
, gettext, bash, gawk, boost}:
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "springlobby-${version}";
|
|
version = "0.169";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.springlobby.info/tarballs/springlobby-${version}.tar.bz2";
|
|
sha256 = "1wr8q2ha3wh718rr5rg7l6v404nf1rgkg4wkja77rfqy7r18zn7g";
|
|
};
|
|
|
|
buildInputs = [ cmake wxGTK openal pkgconfig curl gettext libtorrentRasterbar boost libpng libX11 ];
|
|
|
|
prePatch = ''
|
|
substituteInPlace tools/regen_config_header.sh --replace "#!/usr/bin/env bash" "#!${bash}/bin/bash"
|
|
substituteInPlace tools/test-susynclib.awk --replace "#!/usr/bin/awk" "#!${gawk}/bin/awk"
|
|
substituteInPlace CMakeLists.txt --replace "boost_system-mt" "boost_system"
|
|
'';
|
|
|
|
# for now sound is disabled as it causes a linker error with alure i can't resolve (qknight)
|
|
cmakeFlags = "-DOPTION_SOUND:BOOL=OFF";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
#buildPhase = "make VERBOSE=1";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://springlobby.info/;
|
|
description = "A free cross-platform lobby client for the Spring RTS project.";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.phreedom maintainers.qknight];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|