quake3demodata: split from point release, cleanup

This commit is contained in:
Nikolay Amiantov
2016-01-14 14:41:33 +03:00
parent 2852696c2e
commit 6b447a3c9b
4 changed files with 30 additions and 35 deletions
+28
View File
@@ -0,0 +1,28 @@
{ stdenv, fetchurl }:
let
version = "1.11-6";
in stdenv.mkDerivation {
name = "quake3-demodata-${version}";
src = fetchurl {
url = "http://ftp.gwdg.de/pub/misc/ftp.idsoftware.com/idstuff/quake3/linux/linuxq3ademo-${version}.x86.gz.sh";
sha256 = "1v54a1hx1bczk9hgn9qhx8vixsy7xn7wj2pylhfjsybfkgvf7pk4";
};
buildCommand = ''
tail -n +165 $src | tar xfz -
mkdir -p $out/baseq3
cp demoq3/*.pk3 $out/baseq3
'';
preferLocalBuild = true;
meta = with stdenv.lib; {
description = "Quake 3 Arena demo content";
license = licenses.unfreeRedistributable;
platforms = platforms.all;
maintainers = with maintainers; [ abbradar ];
};
}