summary refs log tree commit diff
path: root/pkgs/games/freeorion
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-08-17 05:02:22 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2021-08-17 05:02:22 +0000
commit682c2f2006caf90632b72017c5d078e5061c17ed (patch)
tree6fe70b1b9029d1ee1e608382a66e4d95f31f193b /pkgs/games/freeorion
parent739f0b22b74a35f65e5b862108db4d4380feecc8 (diff)
downloadnixpkgs-682c2f2006caf90632b72017c5d078e5061c17ed.tar
nixpkgs-682c2f2006caf90632b72017c5d078e5061c17ed.tar.gz
nixpkgs-682c2f2006caf90632b72017c5d078e5061c17ed.tar.bz2
nixpkgs-682c2f2006caf90632b72017c5d078e5061c17ed.tar.lz
nixpkgs-682c2f2006caf90632b72017c5d078e5061c17ed.tar.xz
nixpkgs-682c2f2006caf90632b72017c5d078e5061c17ed.tar.zst
nixpkgs-682c2f2006caf90632b72017c5d078e5061c17ed.zip
freeorion: 0.4.10.1 -> 0.4.10.2
Diffstat (limited to 'pkgs/games/freeorion')
-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 dea5190d976..5b440703801 100644
--- a/pkgs/games/freeorion/default.nix
+++ b/pkgs/games/freeorion/default.nix
@@ -24,14 +24,14 @@
 }:
 
 stdenv.mkDerivation rec {
-  version = "0.4.10.1";
+  version = "0.4.10.2";
   pname = "freeorion";
 
   src = fetchFromGitHub {
     owner = "freeorion";
     repo = "freeorion";
     rev = "v${version}";
-    sha256 = "sha256-Itt2JIStx+JsnMMBvbeJXSEJpaS/pd1UMvPGNd50k7I=";
+    sha256 = "sha256-k/YwTg0N2b70igfqRuFl/zwxMQhD2QjbapsazYbi0Ik=";
   };
 
   buildInputs = [
@@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
     makeWrapper
   ];
 
-  # as of 0.4.10.1 FreeOrion doesn't work with "-DOpenGL_GL_PREFERENCE=GLVND"
+  # as of 0.4.10.2 FreeOrion doesn't work with "-DOpenGL_GL_PREFERENCE=GLVND"
   cmakeFlags = [ "-DOpenGL_GL_PREFERENCE=LEGACY" ];
 
   postInstall = ''