tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
supertux: 0.5.1 -> 0.6.0
Pascal Wittmann
7 years ago
406426b3
77bacea5
+6
-3
1 changed file
expand all
collapse all
unified
split
pkgs
games
supertux
default.nix
+6
-3
pkgs/games/supertux/default.nix
···
1
{ stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image , curl
2
, libogg, libvorbis, libGLU_combined, openal, boost, glew
0
3
}:
4
5
stdenv.mkDerivation rec {
6
name = "supertux-${version}";
7
-
version = "0.5.1";
8
9
src = fetchurl {
10
url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
11
-
sha256 = "1i8avad7w7ikj870z519j383ldy29r6f956bs38cbr8wk513pp69";
12
};
13
14
nativeBuildInputs = [ pkgconfig cmake ];
15
16
-
buildInputs = [ SDL2 SDL2_image curl libogg libvorbis libGLU_combined openal boost glew ];
0
0
17
18
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
19
···
1
{ stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image , curl
2
, libogg, libvorbis, libGLU_combined, openal, boost, glew
3
+
, libpng, freetype
4
}:
5
6
stdenv.mkDerivation rec {
7
name = "supertux-${version}";
8
+
version = "0.6.0";
9
10
src = fetchurl {
11
url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
12
+
sha256 = "1h1s4abirkdv4ag22zvyk6zkk64skqbjmcnnba67ps4hdzxfbhy4";
13
};
14
15
nativeBuildInputs = [ pkgconfig cmake ];
16
17
+
buildInputs = [ SDL2 SDL2_image curl libogg libvorbis libGLU_combined openal boost glew
18
+
libpng freetype
19
+
];
20
21
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
22