2013-09-17 10:53:27 +01:00
|
|
|
{ stdenv, fetchurl, SDL, SDL_ttf, SDL_image, mesa, libpng, lua5, automake, autoconf }:
|
2011-07-08 22:23:55 +01:00
|
|
|
|
2012-10-10 18:25:42 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-27 12:35:08 +00:00
|
|
|
name = "gravit-0.5.1";
|
2011-07-08 22:23:55 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-10-10 18:25:42 +01:00
|
|
|
url = "http://gravit.slowchop.com/media/downloads/${name}.tgz";
|
2015-01-27 12:35:08 +00:00
|
|
|
sha256 = "14vf7zj2bgrl96wsl3f1knsggc8h9624354ajzd72l46y09x5ky7";
|
2011-07-08 22:23:55 +01:00
|
|
|
};
|
|
|
|
|
2013-09-17 10:53:27 +01:00
|
|
|
buildInputs = [mesa SDL SDL_ttf SDL_image lua5 automake autoconf libpng];
|
2011-07-08 22:23:55 +01:00
|
|
|
|
2012-10-10 18:25:42 +01:00
|
|
|
preConfigure = "sh autogen.sh";
|
2011-07-08 22:23:55 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://gravit.slowchop.com";
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Beautiful OpenGL-based gravity simulator";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2011-07-08 22:23:55 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
2011-11-08 10:01:14 +00:00
|
|
|
Gravit is a gravity simulator which runs under Linux, Windows and
|
2011-07-08 22:23:55 +01:00
|
|
|
Mac OS X. It uses Newtonian physics using the Barnes-Hut N-body
|
|
|
|
algorithm. Although the main goal of Gravit is to be as accurate
|
|
|
|
as possible, it also creates beautiful looking gravity patterns.
|
|
|
|
It records the history of each particle so it can animate and
|
|
|
|
display a path of its travels. At any stage you can rotate your
|
|
|
|
view in 3D and zoom in and out.
|
|
|
|
'';
|
|
|
|
|
2011-07-14 21:53:30 +01:00
|
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
2011-07-08 22:23:55 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
|
|
};
|
|
|
|
}
|