summary refs log tree commit diff
path: root/pkgs/games/supertux
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2022-01-22 11:32:42 +0100
committerLinus Heckemann <git@sphalerite.org>2022-01-22 11:32:42 +0100
commitc7af30ec5256ab003404f6393421e0c6ae236cec (patch)
treec9ae805dc699a99cee030bc585ef986240646356 /pkgs/games/supertux
parent1291b293cc404dc170adfb135b040e84018b6918 (diff)
downloadnixpkgs-c7af30ec5256ab003404f6393421e0c6ae236cec.tar
nixpkgs-c7af30ec5256ab003404f6393421e0c6ae236cec.tar.gz
nixpkgs-c7af30ec5256ab003404f6393421e0c6ae236cec.tar.bz2
nixpkgs-c7af30ec5256ab003404f6393421e0c6ae236cec.tar.lz
nixpkgs-c7af30ec5256ab003404f6393421e0c6ae236cec.tar.xz
nixpkgs-c7af30ec5256ab003404f6393421e0c6ae236cec.tar.zst
nixpkgs-c7af30ec5256ab003404f6393421e0c6ae236cec.zip
supertux: 0.6.2 -> 0.6.3
Diffstat (limited to 'pkgs/games/supertux')
-rw-r--r--pkgs/games/supertux/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/supertux/default.nix b/pkgs/games/supertux/default.nix
index 31b36efc490..067ce78fae9 100644
--- a/pkgs/games/supertux/default.nix
+++ b/pkgs/games/supertux/default.nix
@@ -1,21 +1,21 @@
 { lib, stdenv, fetchurl, cmake, pkg-config, SDL2, SDL2_image , curl
 , libogg, libvorbis, libGLU, libGL, openal, boost, glew
-, libpng, freetype
+, libpng, freetype, glm
 }:
 
 stdenv.mkDerivation rec {
   pname = "supertux";
-  version = "0.6.2";
+  version = "0.6.3";
 
   src = fetchurl {
     url = "https://github.com/SuperTux/supertux/releases/download/v${version}/SuperTux-v${version}-Source.tar.gz";
-    sha256 = "167m3z4m8n76dvbv42m1fnvabpbpsxvr28zk9641916jl9pfba96";
+    sha256 = "1xkr3ka2sxp5s0spp84iv294i29s1vxqzazb6kmjc0n415h0x57p";
   };
 
   nativeBuildInputs = [ pkg-config cmake ];
 
   buildInputs = [ SDL2 SDL2_image curl libogg libvorbis libGLU libGL openal boost glew
-    libpng freetype
+    libpng freetype glm
   ];
 
   cmakeFlags = [ "-DENABLE_BOOST_STATIC_LIBS=OFF" ];