From 56cbf88a18c2a2afda056e047db3f63a3689e772 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 4 Sep 2015 23:45:04 +0300 Subject: [PATCH] Xpilot-NG: init @ 4.7.3 --- pkgs/games/xpilot/default.nix | 23 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/games/xpilot/default.nix 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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4d285230cf5..78d6e5514d6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10449,6 +10449,8 @@ let xorg_sys_opengl = callPackage ../os-specific/linux/opengl/xorg-sys { }; + xpilot-ng = callPackage ../games/xpilot { }; + zd1211fw = callPackage ../os-specific/linux/firmware/zd1211 { }; zfs = callPackage ../os-specific/linux/zfs {