nixpkgs/pkgs/games/spring/springlobby.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.3 KiB
Nix
Raw Normal View History

2022-11-08 23:58:23 +00:00
{ lib
, stdenv
, fetchurl
, cmake
2022-12-01 11:44:34 +00:00
, wxGTK32
2022-11-08 23:58:23 +00:00
, openal
, pkg-config
, curl
, libtorrent-rasterbar
, libpng
, libX11
, gettext
, boost
, libnotify
2022-12-01 11:44:34 +00:00
, gtk3
2022-11-08 23:58:23 +00:00
, doxygen
, spring
, makeWrapper
, glib
, minizip
, alure
, pcre
, jsoncpp
}:
stdenv.mkDerivation rec {
pname = "springlobby";
2022-12-01 11:44:34 +00:00
version = "0.273";
src = fetchurl {
url = "https://springlobby.springrts.com/dl/stable/springlobby-${version}.tar.bz2";
2022-12-01 11:44:34 +00:00
sha256 = "sha256-XkU6i6ABCgw3H9vJu0xjHRO1BglueYM1LyJxcZdOrDk=";
};
nativeBuildInputs = [ cmake pkg-config gettext doxygen makeWrapper ];
2013-12-04 02:25:05 +00:00
buildInputs = [
2022-12-01 11:44:34 +00:00
wxGTK32
2022-11-08 23:58:23 +00:00
openal
curl
libtorrent-rasterbar
pcre
jsoncpp
boost
libpng
libX11
libnotify
2022-12-01 11:44:34 +00:00
gtk3
2022-11-08 23:58:23 +00:00
glib
minizip
alure
2013-12-04 02:25:05 +00:00
];
patches = [
./revert_58b423e.patch # Allows springLobby to continue using system installed spring until #707 is fixed
./fix-certs.patch
];
2016-08-25 01:20:32 +00:00
postInstall = ''
wrapProgram $out/bin/springlobby \
--prefix PATH : "${spring}/bin" \
--set SPRING_BUNDLE_DIR "${spring}/lib"
'';
meta = with lib; {
2022-11-08 23:58:23 +00:00
homepage = "https://springlobby.springrts.com";
description = "Cross-platform lobby client for the Spring RTS project";
2022-11-08 23:58:23 +00:00
license = licenses.gpl2Plus;
2021-12-18 09:25:46 +00:00
maintainers = with maintainers; [ qknight domenkozar ];
2022-11-08 23:58:23 +00:00
platforms = [ "i686-linux" "x86_64-linux" ];
};
}