Adding the videogame icbm3d
svn path=/nixpkgs/trunk/; revision=27499
This commit is contained in:
parent
746da25d6b
commit
8571ea8fda
22
pkgs/games/icbm3d/default.nix
Normal file
22
pkgs/games/icbm3d/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{stdenv, fetchurl, libX11}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "icbm3d-0.4";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.tuxpaint.org/unix/x/icbm3d/icbm3d.0.4.tar.gz;
|
||||
sha256 = "1z9q01mj0v9qbwby5cajjc9wpvdw2ma5v1r639vraxpl9qairm4s";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 ];
|
||||
|
||||
installPhase = ''
|
||||
ensureDir $out/bin
|
||||
cp icbm3d $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://www.newbreedsoftware.com/icbm3d/;
|
||||
description = "3D vector-based clone of the atari game Missile Command";
|
||||
license = "GPLv2+";
|
||||
};
|
||||
}
|
@ -7373,6 +7373,8 @@ let
|
||||
|
||||
hexen = callPackage ../games/hexen { };
|
||||
|
||||
icbm3d = callPackage ../games/icbm3d { };
|
||||
|
||||
instead = callPackage ../games/instead {
|
||||
lua = lua5;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user