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