about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/airstrike/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/airstrike/default.nix')
-rw-r--r--nixpkgs/pkgs/games/airstrike/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/airstrike/default.nix b/nixpkgs/pkgs/games/airstrike/default.nix
new file mode 100644
index 000000000000..02ea6f688069
--- /dev/null
+++ b/nixpkgs/pkgs/games/airstrike/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchurl, makeWrapper, SDL, SDL_image }:
+
+stdenv.mkDerivation rec {
+  name = "airstrike-pre-${version}";
+  version = "6a";
+
+  src = fetchurl {
+    url = "https://icculus.org/airstrike/airstrike-pre${version}-src.tar.gz";
+    sha256 = "1h6rv2zcp84ycmd0kv1pbpqjgwx57dw42x7878d2c2vnpi5jn8qi";
+  };
+
+  buildInputs = [ makeWrapper SDL SDL_image ];
+
+  NIX_LDFLAGS = [
+    "-lm"
+  ];
+
+  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;
+  };
+}