summary refs log tree commit diff
path: root/pkgs/games/quake3
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-03-03 15:13:26 +0300
committerNikolay Amiantov <ab@fmap.me>2016-03-04 14:42:38 +0300
commite3d9bdf8f8c571510fce1733e8b5b885b1a42eb5 (patch)
tree0f99773397c33e36f582a5bceb87a6c1772713aa /pkgs/games/quake3
parent415c2edbbe30013607f2a886515891b05650a7d9 (diff)
downloadnixpkgs-e3d9bdf8f8c571510fce1733e8b5b885b1a42eb5.tar
nixpkgs-e3d9bdf8f8c571510fce1733e8b5b885b1a42eb5.tar.gz
nixpkgs-e3d9bdf8f8c571510fce1733e8b5b885b1a42eb5.tar.bz2
nixpkgs-e3d9bdf8f8c571510fce1733e8b5b885b1a42eb5.tar.lz
nixpkgs-e3d9bdf8f8c571510fce1733e8b5b885b1a42eb5.tar.xz
nixpkgs-e3d9bdf8f8c571510fce1733e8b5b885b1a42eb5.tar.zst
nixpkgs-e3d9bdf8f8c571510fce1733e8b5b885b1a42eb5.zip
ioquake3: 20151228 -> 2016-02-18
Diffstat (limited to 'pkgs/games/quake3')
-rw-r--r--pkgs/games/quake3/ioquake/default.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/pkgs/games/quake3/ioquake/default.nix b/pkgs/games/quake3/ioquake/default.nix
index f9f4b21546f..8988c391824 100644
--- a/pkgs/games/quake3/ioquake/default.nix
+++ b/pkgs/games/quake3/ioquake/default.nix
@@ -1,14 +1,16 @@
-{ lib, stdenv, fetchgit, xlibsWrapper, SDL2, mesa, openalSoft
+{ lib, stdenv, fetchFromGitHub, xlibsWrapper, SDL2, mesa, openalSoft
 , curl, speex, opusfile, libogg, libopus, libjpeg, mumble, freetype
 }:
 
-stdenv.mkDerivation {
-  name = "ioquake3-git-20151228";
+stdenv.mkDerivation rec {
+  name = "ioquake3-git-${version}";
+  version = "2016-02-18";
 
-  src = fetchgit {
-    url = "https://github.com/ioquake/ioq3";
-    rev = "fe619680f8fa9794906fc82a9c8c6113770696e6";
-    sha256 = "5462441df63eebee6f8ed19a8326de5f874dad31e124d37f73d3bab1cd656a87";
+  src = fetchFromGitHub {
+    owner = "ioquake";
+    repo = "ioq3";
+    rev = "a331637745fb82266f3627fb438f2d58d53e366c";
+    sha256 = "0l9ppv1msd73bhqmdiv5lsvkr5i6khqgi6gi322gbnndr20arn4n";
   };
 
   buildInputs = [ xlibsWrapper SDL2 mesa openalSoft curl speex opusfile libogg libopus libjpeg freetype mumble ];