tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
freeorion: 0.4.10.2 -> 0.5
R. Ryantm
3 years ago
b784229e
02c3ec8b
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
games
freeorion
default.nix
+3
-3
pkgs/games/freeorion/default.nix
reviewed
···
24
24
25
25
stdenv.mkDerivation rec {
26
26
pname = "freeorion";
27
27
-
version = "0.4.10.2";
27
27
+
version = "0.5";
28
28
29
29
src = fetchFromGitHub {
30
30
owner = "freeorion";
31
31
repo = "freeorion";
32
32
rev = "v${version}";
33
33
-
sha256 = "sha256-k/YwTg0N2b70igfqRuFl/zwxMQhD2QjbapsazYbi0Ik=";
33
33
+
sha256 = "sha256-uJRDU0Xd+sHL2IDvMiElUSOhvchVMW9wYMSLSN7pYtQ=";
34
34
};
35
35
36
36
buildInputs = [
···
57
57
makeWrapper
58
58
];
59
59
60
60
-
# as of 0.4.10.2 FreeOrion doesn't work with "-DOpenGL_GL_PREFERENCE=GLVND"
60
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 = ''