tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
springLobby: 0.270 -> 0.273
Weijia Wang
3 years ago
16b75693
dfc8fe37
+6
-11
1 changed file
expand all
collapse all
unified
split
pkgs
games
spring
springlobby.nix
+6
-11
pkgs/games/spring/springlobby.nix
···
1
{ lib
2
, stdenv
3
, fetchurl
4
-
, fetchpatch
5
, cmake
6
-
, wxGTK30
7
, openal
8
, pkg-config
9
, curl
···
13
, gettext
14
, boost
15
, libnotify
16
-
, gtk2
17
, doxygen
18
, spring
19
, makeWrapper
···
26
27
stdenv.mkDerivation rec {
28
pname = "springlobby";
29
-
version = "0.270";
30
31
src = fetchurl {
32
url = "https://springlobby.springrts.com/dl/stable/springlobby-${version}.tar.bz2";
33
-
sha256 = "1r1g2hw9ipsmsmzbhsi7bxqra1za6x7j1kw12qzl5psqyq8rqbgs";
34
};
35
36
nativeBuildInputs = [ cmake pkg-config gettext doxygen makeWrapper ];
37
buildInputs = [
38
-
wxGTK30
39
openal
40
curl
41
libtorrent-rasterbar
···
45
libpng
46
libX11
47
libnotify
48
-
gtk2
49
glib
50
minizip
51
alure
···
54
patches = [
55
./revert_58b423e.patch # Allows springLobby to continue using system installed spring until #707 is fixed
56
./fix-certs.patch
57
-
(fetchpatch {
58
-
url = "https://github.com/springlobby/springlobby/commit/252c4cb156c1442ed9b4faec3f26265bc7c295ff.patch";
59
-
sha256 = "sha256-Nq1F5fRPnCkZwl9KgrfuUmpIMK3hUOyZQYIKElWpmzU=";
60
-
})
61
];
62
63
postInstall = ''
···
1
{ lib
2
, stdenv
3
, fetchurl
0
4
, cmake
5
+
, wxGTK32
6
, openal
7
, pkg-config
8
, curl
···
12
, gettext
13
, boost
14
, libnotify
15
+
, gtk3
16
, doxygen
17
, spring
18
, makeWrapper
···
25
26
stdenv.mkDerivation rec {
27
pname = "springlobby";
28
+
version = "0.273";
29
30
src = fetchurl {
31
url = "https://springlobby.springrts.com/dl/stable/springlobby-${version}.tar.bz2";
32
+
sha256 = "sha256-XkU6i6ABCgw3H9vJu0xjHRO1BglueYM1LyJxcZdOrDk=";
33
};
34
35
nativeBuildInputs = [ cmake pkg-config gettext doxygen makeWrapper ];
36
buildInputs = [
37
+
wxGTK32
38
openal
39
curl
40
libtorrent-rasterbar
···
44
libpng
45
libX11
46
libnotify
47
+
gtk3
48
glib
49
minizip
50
alure
···
53
patches = [
54
./revert_58b423e.patch # Allows springLobby to continue using system installed spring until #707 is fixed
55
./fix-certs.patch
0
0
0
0
56
];
57
58
postInstall = ''