summary refs log tree commit diff
path: root/pkgs/games/supertux/default.nix
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2019-02-07 21:24:59 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2019-02-07 21:25:16 +0100
commit406426b320ab99f2cb1fff7771a96f3d7394c2f5 (patch)
tree461816390d5e535d669f2656939593b512489359 /pkgs/games/supertux/default.nix
parent77bacea5d52800fda4c5401e58c048aac02e61aa (diff)
downloadnixpkgs-406426b320ab99f2cb1fff7771a96f3d7394c2f5.tar
nixpkgs-406426b320ab99f2cb1fff7771a96f3d7394c2f5.tar.gz
nixpkgs-406426b320ab99f2cb1fff7771a96f3d7394c2f5.tar.bz2
nixpkgs-406426b320ab99f2cb1fff7771a96f3d7394c2f5.tar.lz
nixpkgs-406426b320ab99f2cb1fff7771a96f3d7394c2f5.tar.xz
nixpkgs-406426b320ab99f2cb1fff7771a96f3d7394c2f5.tar.zst
nixpkgs-406426b320ab99f2cb1fff7771a96f3d7394c2f5.zip
supertux: 0.5.1 -> 0.6.0
Diffstat (limited to 'pkgs/games/supertux/default.nix')
-rw-r--r--pkgs/games/supertux/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/games/supertux/default.nix b/pkgs/games/supertux/default.nix
index cf6ba464868..cee65bfa563 100644
--- a/pkgs/games/supertux/default.nix
+++ b/pkgs/games/supertux/default.nix
@@ -1,19 +1,22 @@
 { stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image , curl
 , libogg, libvorbis, libGLU_combined, openal, boost, glew
+, libpng, freetype
 }:
 
 stdenv.mkDerivation rec {
   name = "supertux-${version}";
-  version = "0.5.1";
+  version = "0.6.0";
 
   src = fetchurl {
     url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
-    sha256 = "1i8avad7w7ikj870z519j383ldy29r6f956bs38cbr8wk513pp69";
+    sha256 = "1h1s4abirkdv4ag22zvyk6zkk64skqbjmcnnba67ps4hdzxfbhy4";
   };
 
   nativeBuildInputs = [ pkgconfig cmake ];
 
-  buildInputs = [ SDL2 SDL2_image curl libogg libvorbis libGLU_combined openal boost glew ];
+  buildInputs = [ SDL2 SDL2_image curl libogg libvorbis libGLU_combined openal boost glew
+    libpng freetype
+  ];
 
   cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];