freeorion: 0.5 -> 0.5.0.1

+3 -3
+3 -3
pkgs/games/freeorion/default.nix
··· 24 24 25 25 stdenv.mkDerivation rec { 26 26 pname = "freeorion"; 27 - version = "0.5"; 27 + version = "0.5.0.1"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "freeorion"; 31 31 repo = "freeorion"; 32 32 rev = "v${version}"; 33 - sha256 = "sha256-uJRDU0Xd+sHL2IDvMiElUSOhvchVMW9wYMSLSN7pYtQ="; 33 + sha256 = "sha256-VvTq6TcLc5BMvRTjVsZ2HA9ug3WAqFuTHIoFQ/9/zWc="; 34 34 }; 35 35 36 36 buildInputs = [ ··· 57 57 makeWrapper 58 58 ]; 59 59 60 - # as of 0.5 FreeOrion doesn't work with "-DOpenGL_GL_PREFERENCE=GLVND" 60 + # as of 0.5.0.1 FreeOrion doesn't work with "-DOpenGL_GL_PREFERENCE=GLVND" 61 61 cmakeFlags = [ "-DOpenGL_GL_PREFERENCE=LEGACY" ]; 62 62 63 63 postInstall = ''