tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
freeorion: 0.5 -> 0.5.0.1
R. Ryantm
2 years ago
711e3cfb
b1d47989
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
games
freeorion
default.nix
+3
-3
pkgs/games/freeorion/default.nix
···
24
24
25
25
stdenv.mkDerivation rec {
26
26
pname = "freeorion";
27
27
-
version = "0.5";
27
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
33
-
sha256 = "sha256-uJRDU0Xd+sHL2IDvMiElUSOhvchVMW9wYMSLSN7pYtQ=";
33
33
+
sha256 = "sha256-VvTq6TcLc5BMvRTjVsZ2HA9ug3WAqFuTHIoFQ/9/zWc=";
34
34
};
35
35
36
36
buildInputs = [
···
57
57
makeWrapper
58
58
];
59
59
60
60
-
# as of 0.5 FreeOrion doesn't work with "-DOpenGL_GL_PREFERENCE=GLVND"
60
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 = ''