2011-06-19 23:46:45 +02:00
|
|
|
{stdenv, fetchurl, libX11}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "icbm3d-0.4";
|
|
|
|
src = fetchurl {
|
2020-04-01 03:11:51 +02:00
|
|
|
url = "ftp://ftp.tuxpaint.org/unix/x/icbm3d/icbm3d.0.4.tar.gz";
|
2011-06-19 23:46:45 +02:00
|
|
|
sha256 = "1z9q01mj0v9qbwby5cajjc9wpvdw2ma5v1r639vraxpl9qairm4s";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libX11 ];
|
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/bin
|
2011-06-19 23:46:45 +02:00
|
|
|
cp icbm3d $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.newbreedsoftware.com/icbm3d/";
|
2011-06-19 23:46:45 +02:00
|
|
|
description = "3D vector-based clone of the atari game Missile Command";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-06-19 23:46:45 +02:00
|
|
|
};
|
|
|
|
}
|