about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2024-03-15 12:59:12 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2024-03-15 12:59:12 +0000
commit711e3cfb81fbbf6429f6e571cd93127015efbf54 (patch)
tree81bac49cb2d053f50301a8097765b8724d272114 /pkgs/games
parentb1d47989352fcb722a1f19295a9461ed1ef8435a (diff)
downloadnixlib-711e3cfb81fbbf6429f6e571cd93127015efbf54.tar
nixlib-711e3cfb81fbbf6429f6e571cd93127015efbf54.tar.gz
nixlib-711e3cfb81fbbf6429f6e571cd93127015efbf54.tar.bz2
nixlib-711e3cfb81fbbf6429f6e571cd93127015efbf54.tar.lz
nixlib-711e3cfb81fbbf6429f6e571cd93127015efbf54.tar.xz
nixlib-711e3cfb81fbbf6429f6e571cd93127015efbf54.tar.zst
nixlib-711e3cfb81fbbf6429f6e571cd93127015efbf54.zip
freeorion: 0.5 -> 0.5.0.1
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/freeorion/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/freeorion/default.nix b/pkgs/games/freeorion/default.nix
index 8c2c4ef86a08..204223e6094d 100644
--- a/pkgs/games/freeorion/default.nix
+++ b/pkgs/games/freeorion/default.nix
@@ -24,13 +24,13 @@
 
 stdenv.mkDerivation rec {
   pname = "freeorion";
-  version = "0.5";
+  version = "0.5.0.1";
 
   src = fetchFromGitHub {
     owner = "freeorion";
     repo = "freeorion";
     rev = "v${version}";
-    sha256 = "sha256-uJRDU0Xd+sHL2IDvMiElUSOhvchVMW9wYMSLSN7pYtQ=";
+    sha256 = "sha256-VvTq6TcLc5BMvRTjVsZ2HA9ug3WAqFuTHIoFQ/9/zWc=";
   };
 
   buildInputs = [
@@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
     makeWrapper
   ];
 
-  # as of 0.5 FreeOrion doesn't work with "-DOpenGL_GL_PREFERENCE=GLVND"
+  # as of 0.5.0.1 FreeOrion doesn't work with "-DOpenGL_GL_PREFERENCE=GLVND"
   cmakeFlags = [ "-DOpenGL_GL_PREFERENCE=LEGACY" ];
 
   postInstall = ''