summary refs log tree commit diff
path: root/pkgs/games/supertux
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-09-29 21:26:55 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2016-09-29 21:26:55 -0300
commit055c435dd081211b788d6897e5d997d700d9a8a0 (patch)
tree87e23e69cfcad654d8619fff74eefb463ee3f560 /pkgs/games/supertux
parentdcde39d57a94f99a89faca33bfcb4af4cc4a4735 (diff)
downloadnixpkgs-055c435dd081211b788d6897e5d997d700d9a8a0.tar
nixpkgs-055c435dd081211b788d6897e5d997d700d9a8a0.tar.gz
nixpkgs-055c435dd081211b788d6897e5d997d700d9a8a0.tar.bz2
nixpkgs-055c435dd081211b788d6897e5d997d700d9a8a0.tar.lz
nixpkgs-055c435dd081211b788d6897e5d997d700d9a8a0.tar.xz
nixpkgs-055c435dd081211b788d6897e5d997d700d9a8a0.tar.zst
nixpkgs-055c435dd081211b788d6897e5d997d700d9a8a0.zip
supertux: rename directory like upstream
Diffstat (limited to 'pkgs/games/supertux')
-rw-r--r--pkgs/games/supertux/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/games/supertux/default.nix b/pkgs/games/supertux/default.nix
new file mode 100644
index 00000000000..043861b6166
--- /dev/null
+++ b/pkgs/games/supertux/default.nix
@@ -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;
+  };
+}