31 lines
1.0 KiB
Nix
31 lines
1.0 KiB
Nix
{ stdenv, fetchurl, plib, freeglut, xproto, libX11, libXext, xextproto, libXi
|
|
, inputproto, libICE, libSM, libXt, libXmu, libGLU_combined, boost, zlib, libjpeg, freealut
|
|
, openscenegraph, openal, expat, cmake, apr
|
|
, curl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "simgear-${version}";
|
|
version = "2018.2.2";
|
|
shortVersion = "2018.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/flightgear/release-${shortVersion}/${name}.tar.bz2";
|
|
sha256 = "f61576bc36aae36f350154749df1cee396763604c06b8a71c4b50452d9151ce5";
|
|
};
|
|
|
|
buildInputs = [ plib freeglut xproto libX11 libXext xextproto libXi inputproto
|
|
libICE libSM libXt libXmu libGLU_combined boost zlib libjpeg freealut
|
|
openscenegraph openal expat cmake apr curl ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Simulation construction toolkit";
|
|
homepage = https://gitorious.org/fg/simgear;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl2;
|
|
};
|
|
}
|