ac9f3a50a2
svn path=/nixpkgs/trunk/; revision=32937
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ stdenv, fetchurl, cmake, wxGTK, openal, pkgconfig, curl, libtorrentRasterbar
|
|
, gettext, bash, gawk, boost}:
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "springlobby-${version}";
|
|
version = "0.141";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.springlobby.info/tarballs/springlobby-${version}.tar.bz2";
|
|
sha256 = "37cf3aa1ed78a0ded782cc5c692301619dbb2cf4749bccbf059c51707daaf734";
|
|
};
|
|
|
|
buildInputs = [ cmake wxGTK openal pkgconfig curl gettext libtorrentRasterbar boost];
|
|
|
|
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;
|
|
};
|
|
}
|