mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
yquake2: 7.30 -> 7.43
This commit is contained in:
parent
1607e821ff
commit
7864354ac0
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, buildEnv, cmake, makeWrapper
|
{ stdenv, lib, fetchFromGitHub, buildEnv, cmake, makeWrapper
|
||||||
, SDL2, libGL
|
, SDL2, libGL, curl
|
||||||
, oggSupport ? true, libogg, libvorbis
|
, oggSupport ? true, libogg, libvorbis
|
||||||
, openalSupport ? true, openal
|
, openalSupport ? true, openal
|
||||||
, zipSupport ? true, zlib
|
, zipSupport ? true, zlib
|
||||||
@ -15,20 +15,20 @@ let
|
|||||||
|
|
||||||
yquake2 = stdenv.mkDerivation rec {
|
yquake2 = stdenv.mkDerivation rec {
|
||||||
pname = "yquake2";
|
pname = "yquake2";
|
||||||
version = "7.30";
|
version = "7.43";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "yquake2";
|
owner = "yquake2";
|
||||||
repo = "yquake2";
|
repo = "yquake2";
|
||||||
rev = "QUAKE2_${builtins.replaceStrings ["."] ["_"] version}";
|
rev = "QUAKE2_${builtins.replaceStrings ["."] ["_"] version}";
|
||||||
sha256 = "0xfr620k1hns70dckv6k0kc72jbiwyghcys904jpriv5x94lnrlc";
|
sha256 = "1dszbvxlh1npq4nv9s4wv4lcyfgb01k92ncxrrczsxy1dddg86pp";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
buildInputs = [ SDL2 libGL ]
|
buildInputs = [ SDL2 libGL curl ]
|
||||||
++ lib.optionals stdenv.isDarwin [ Cocoa OpenAL ]
|
++ lib.optionals stdenv.isDarwin [ Cocoa OpenAL ]
|
||||||
++ lib.optionals oggSupport [ libogg libvorbis ]
|
++ lib.optionals oggSupport [ libogg libvorbis ]
|
||||||
++ lib.optional openalSupport openal
|
++ lib.optional openalSupport openal
|
||||||
|
@ -4,23 +4,23 @@ let
|
|||||||
games = {
|
games = {
|
||||||
ctf = {
|
ctf = {
|
||||||
id = "ctf";
|
id = "ctf";
|
||||||
version = "1.05";
|
version = "1.07";
|
||||||
description = "'Capture The Flag' for Yamagi Quake II";
|
description = "'Capture The Flag' for Yamagi Quake II";
|
||||||
sha256 = "15ihspyshls645ig0gq6bwdzvghyyysqk60g6ad3n4idb2ms52md";
|
sha256 = "0i9bwhjvq6yhalrsbzjambh27fdzrzgswqz3jgfn9qw6k1kjvlin";
|
||||||
};
|
};
|
||||||
|
|
||||||
ground-zero = {
|
ground-zero = {
|
||||||
id = "rogue";
|
id = "rogue";
|
||||||
version = "2.04";
|
version = "2.07";
|
||||||
description = "'Ground Zero' for Yamagi Quake II";
|
description = "'Ground Zero' for Yamagi Quake II";
|
||||||
sha256 = "0x1maaycrxv7d3xvvk1ih2zymhvcd3jnab7g3by8qh6g5y33is5l";
|
sha256 = "1m2r4vgfdxpsi0lkf32liwf1433mdhhmjxiicjwzqjlkncjyfcb1";
|
||||||
};
|
};
|
||||||
|
|
||||||
the-reckoning = {
|
the-reckoning = {
|
||||||
id = "xatrix";
|
id = "xatrix";
|
||||||
version = "2.05";
|
version = "2.08";
|
||||||
description = "'The Reckoning' for Yamagi Quake II";
|
description = "'The Reckoning' for Yamagi Quake II";
|
||||||
sha256 = "0gf2ryhgz8nw1mb1arlbriihjsx09fa0wmkgcayc8ijignfi1qkh";
|
sha256 = "1wp9fg1q8nly2r9hh4394r1h4dxyni3lvdy7g419cz5s8hhn5msr";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user