nixpkgs/pkgs/games/supertux/default.nix

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

36 lines
980 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, pkg-config, SDL2, SDL2_image , curl
2019-11-10 19:44:34 +03:00
, libogg, libvorbis, libGLU, libGL, openal, boost, glew
2022-01-22 13:32:42 +03:00
, libpng, freetype, glm
2016-09-30 03:17:29 +03:00
}:
2015-05-28 18:22:56 +03:00
stdenv.mkDerivation rec {
pname = "supertux";
2022-01-22 13:32:42 +03:00
version = "0.6.3";
2015-12-30 02:40:43 +03:00
src = fetchurl {
2016-09-30 03:17:29 +03:00
url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
2022-01-22 13:32:42 +03:00
sha256 = "1xkr3ka2sxp5s0spp84iv294i29s1vxqzazb6kmjc0n415h0x57p";
};
nativeBuildInputs = [ pkg-config cmake ];
2016-09-30 03:17:29 +03:00
2019-11-10 19:44:34 +03:00
buildInputs = [ SDL2 SDL2_image curl libogg libvorbis libGLU libGL openal boost glew
2022-01-22 13:32:42 +03:00
libpng freetype glm
2019-02-07 23:24:59 +03:00
];
2016-09-30 03:17:29 +03:00
cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];
2015-05-28 18:22:56 +03:00
postInstall = ''
mkdir $out/bin
ln -s $out/games/supertux2 $out/bin
'';
meta = with lib; {
2015-05-28 18:22:56 +03:00
description = "Classic 2D jump'n run sidescroller game";
homepage = "http://supertux.github.io/";
2015-05-28 18:22:56 +03:00
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
};
}