1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

Merge pull request #19092 from romildo/upd.supertux

supertux: 0.4.0 -> 0.5.0
This commit is contained in:
Jörg Thalheim 2016-09-30 15:56:08 +02:00 committed by GitHub
commit 7466214fa3
3 changed files with 33 additions and 30 deletions

View file

@ -1,29 +0,0 @@
{ stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image, SDL2_mixer
, curl, gettext, libogg, libvorbis, mesa, openal, physfs, boost, glew
, libiconv }:
stdenv.mkDerivation rec {
name = "supertux-${version}";
version = "0.4.0";
src = fetchurl {
url = https://github.com/SuperTux/supertux/releases/download/v0.4.0/supertux-0.4.0.tar.bz2;
sha256 = "10ppmy6w77lxj8bdzjahc9bidgl4qgzr9rimn15rnqay84ydx3fi";
};
buildInputs = [ pkgconfig cmake SDL2 SDL2_image SDL2_mixer curl gettext
libogg libvorbis mesa openal physfs boost glew libiconv ];
postInstall = ''
mkdir $out/bin
ln -s $out/games/supertux2 $out/bin
'';
meta = with stdenv.lib; {
description = "Classic 2D jump'n run sidescroller game";
homepage = http://supertux.github.io/;
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
};
}

View file

@ -0,0 +1,32 @@
{ stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image , curl
, libogg, libvorbis, mesa, openal, boost, glew
}:
stdenv.mkDerivation rec {
name = "supertux-${version}";
version = "0.5.0";
src = fetchurl {
url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
sha256 = "0fx7c7m6mfanqy7kln7yf6abb5l3r68picf32js2yls11jj0vbng";
};
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ SDL2 SDL2_image curl libogg libvorbis mesa openal boost glew ];
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
postInstall = ''
mkdir $out/bin
ln -s $out/games/supertux2 $out/bin
'';
meta = with stdenv.lib; {
description = "Classic 2D jump'n run sidescroller game";
homepage = http://supertux.github.io/;
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
};
}

View file

@ -15583,7 +15583,7 @@ in
};
};
superTux = callPackage ../games/super-tux { };
superTux = callPackage ../games/supertux { };
superTuxKart = callPackage ../games/super-tux-kart { };