summary refs log tree commit diff
path: root/pkgs/games/quake3
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-01-04 15:26:32 +0300
committerNikolay Amiantov <ab@fmap.me>2016-01-14 14:41:33 +0300
commit2852696c2e6339c35e03c8629da15a8547e12368 (patch)
tree5b9afd884587b750aef83cb58fd38debbbfe9725 /pkgs/games/quake3
parent7fc7502db516a54d8104656401f0c2abf90cf781 (diff)
downloadnixpkgs-2852696c2e6339c35e03c8629da15a8547e12368.tar
nixpkgs-2852696c2e6339c35e03c8629da15a8547e12368.tar.gz
nixpkgs-2852696c2e6339c35e03c8629da15a8547e12368.tar.bz2
nixpkgs-2852696c2e6339c35e03c8629da15a8547e12368.tar.lz
nixpkgs-2852696c2e6339c35e03c8629da15a8547e12368.tar.xz
nixpkgs-2852696c2e6339c35e03c8629da15a8547e12368.tar.zst
nixpkgs-2852696c2e6339c35e03c8629da15a8547e12368.zip
quake3pointrelease: init at 1.32b-3
Diffstat (limited to 'pkgs/games/quake3')
-rw-r--r--pkgs/games/quake3/content/pointrelease.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/games/quake3/content/pointrelease.nix b/pkgs/games/quake3/content/pointrelease.nix
new file mode 100644
index 00000000000..04da5811d99
--- /dev/null
+++ b/pkgs/games/quake3/content/pointrelease.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl }:
+
+let
+  version = "1.32b-3";
+in stdenv.mkDerivation {
+  name = "quake3-pointrelease-${version}";
+
+  src = fetchurl {
+    url = "http://ftp.gwdg.de/pub/misc/ftp.idsoftware.com/idstuff/quake3/linux/linuxq3apoint-${version}.x86.run";
+    sha256 = "11piyksfqyxwl9mpgbc71w9sacsh4d3cdsgia0cy0dbbap2k4qf3";
+  };
+
+  buildCommand = ''
+    sh $src --tar xf
+
+    mkdir -p $out/baseq3
+    cp baseq3/*.pk3 $out/baseq3
+  '';
+
+  preferLocalBuild = true;
+
+  meta = with stdenv.lib; {
+    description = "Quake 3 Arena point release";
+    license = licenses.unfreeRedistributable;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ abbradar ];
+  };
+}