summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2015-09-04 23:45:04 +0300
committerMichael Raskin <7c6f434c@mail.ru>2015-09-04 23:45:13 +0300
commit56cbf88a18c2a2afda056e047db3f63a3689e772 (patch)
tree0a82ff42dea31bda76dafdc44b278215680a5a2f /pkgs/games
parented140ff9272885b62dc896ae36e80c251b49917a (diff)
downloadnixpkgs-56cbf88a18c2a2afda056e047db3f63a3689e772.tar
nixpkgs-56cbf88a18c2a2afda056e047db3f63a3689e772.tar.gz
nixpkgs-56cbf88a18c2a2afda056e047db3f63a3689e772.tar.bz2
nixpkgs-56cbf88a18c2a2afda056e047db3f63a3689e772.tar.lz
nixpkgs-56cbf88a18c2a2afda056e047db3f63a3689e772.tar.xz
nixpkgs-56cbf88a18c2a2afda056e047db3f63a3689e772.tar.zst
nixpkgs-56cbf88a18c2a2afda056e047db3f63a3689e772.zip
Xpilot-NG: init @ 4.7.3
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/xpilot/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/games/xpilot/default.nix b/pkgs/games/xpilot/default.nix
new file mode 100644
index 00000000000..fdbfd0f1675
--- /dev/null
+++ b/pkgs/games/xpilot/default.nix
@@ -0,0 +1,23 @@
+{stdenv, fetchurl, libX11, SDL, mesa, expat, SDL_ttf, SDL_image}:
+let
+  buildInputs = [
+    libX11 SDL SDL_ttf SDL_image mesa expat
+  ];
+in
+stdenv.mkDerivation rec {
+  version = "4.7.3";
+  name = "xpilot-ng-${version}";
+  inherit buildInputs;
+  src = fetchurl {
+    url = "mirror://sourceforge/xpilot/xpilot_ng/${name}/${name}.tar.gz";
+    sha256 = "02a7pnp88kh88fzda5q8mzlckk6y9r5fw47j00h26wbsfly0k1zj";
+  };
+  meta = {
+    inherit version;
+    description = ''A multiplayer X11 space combat game'';
+    homepage = "http://xpilot.sf.net/";
+    license = stdenv.lib.licenses.gpl2Plus ;
+    maintainers = [stdenv.lib.maintainers.raskin];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}