nixpkgs/pkgs/games/airstrike/default.nix

37 lines
842 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, SDL, SDL_image }:
2015-09-08 15:27:37 +00:00
stdenv.mkDerivation rec {
pname = "airstrike-pre";
2015-09-08 15:27:37 +00:00
version = "6a";
src = fetchurl {
url = "https://icculus.org/airstrike/airstrike-pre${version}-src.tar.gz";
2015-09-08 15:27:37 +00:00
sha256 = "1h6rv2zcp84ycmd0kv1pbpqjgwx57dw42x7878d2c2vnpi5jn8qi";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ SDL SDL_image ];
2015-09-08 15:27:37 +00:00
2019-10-30 00:40:49 +00:00
NIX_LDFLAGS = "-lm";
2019-01-04 19:33:50 +00:00
2015-09-08 15:27:37 +00:00
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 lib; {
2015-09-08 15:27:37 +00:00
description = "A 2d dogfighting game";
homepage = "https://icculus.org/airstrike/";
2015-09-08 15:27:37 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}