supertux: 0.4.0 -> 0.5.0
This commit is contained in:
parent
26674a60b8
commit
dcde39d57a
@ -1,18 +1,21 @@
|
|||||||
{ stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image, SDL2_mixer
|
{ stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image , curl
|
||||||
, curl, gettext, libogg, libvorbis, mesa, openal, physfs, boost, glew
|
, libogg, libvorbis, mesa, openal, boost, glew
|
||||||
, libiconv }:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "supertux-${version}";
|
name = "supertux-${version}";
|
||||||
version = "0.4.0";
|
version = "0.5.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = https://github.com/SuperTux/supertux/releases/download/v0.4.0/supertux-0.4.0.tar.bz2;
|
url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
|
||||||
sha256 = "10ppmy6w77lxj8bdzjahc9bidgl4qgzr9rimn15rnqay84ydx3fi";
|
sha256 = "0fx7c7m6mfanqy7kln7yf6abb5l3r68picf32js2yls11jj0vbng";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig cmake SDL2 SDL2_image SDL2_mixer curl gettext
|
nativeBuildInputs = [ pkgconfig cmake ];
|
||||||
libogg libvorbis mesa openal physfs boost glew libiconv ];
|
|
||||||
|
buildInputs = [ SDL2 SDL2_image curl libogg libvorbis mesa openal boost glew ];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir $out/bin
|
mkdir $out/bin
|
||||||
|
Loading…
Reference in New Issue
Block a user