nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

freeorion: 0.4.10.2 -> 0.5

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