airstrike: init at pre-6a

This commit is contained in:
Pascal Wittmann 2015-09-08 17:27:37 +02:00
parent 57c33c1c54
commit f0fc994369
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ stdenv, fetchurl, makeWrapper, SDL, SDL_image }:
stdenv.mkDerivation rec {
name = "airstrike-pre-${version}";
version = "6a";
src = fetchurl {
url = "http://icculus.org/airstrike/airstrike-pre${version}-src.tar.gz";
sha256 = "1h6rv2zcp84ycmd0kv1pbpqjgwx57dw42x7878d2c2vnpi5jn8qi";
};
buildInputs = [ makeWrapper SDL SDL_image ];
installPhase = ''
ls -l
mkdir -p $out/bin
cp airstrike $out/bin
mkdir -p $out/share
cp -r data airstrikerc $out/share
wrapProgram $out/bin/airstrike \
--run "cd $out/share"
'';
meta = with stdenv.lib; {
description = "A 2d dogfighting game";
homepage = https://icculus.org/airstrike/;
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}

View file

@ -13647,6 +13647,8 @@ let
### GAMES
airstrike = callPackage ../games/airstrike { };
alienarena = callPackage ../games/alienarena { };
andyetitmoves = if stdenv.isLinux then callPackage ../games/andyetitmoves {} else null;