forked from mirrors/nixpkgs
d968838c90
and use SPDX 3.0 license identifier
46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, SDL, SDL_ttf, SDL_image, libSM, libICE, libGLU, libGL, libpng, lua5, autoconf, automake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gravit";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gak";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-JuqnLLD5+Ec8kQI0SK98V1O6TTbGM6+yKn5KCHe85eM=";
|
|
};
|
|
|
|
buildInputs = [ libGLU libGL SDL SDL_ttf SDL_image lua5 libpng libSM libICE ];
|
|
|
|
nativeBuildInputs = [ autoconf automake ];
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
|
|
# Build fails on Linux with windres.
|
|
export ac_cv_prog_WINDRES=
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/gak/gravit";
|
|
description = "Beautiful OpenGL-based gravity simulator";
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
longDescription = ''
|
|
Gravit is a gravity simulator which runs under Linux, Windows and
|
|
macOS. 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.
|
|
'';
|
|
|
|
platforms = lib.platforms.mesaPlatforms;
|
|
hydraPlatforms = lib.platforms.linux; # darwin times out
|
|
};
|
|
}
|