nixpkgs/pkgs/development/libraries/simgear/default.nix

32 lines
1 KiB
Nix
Raw Normal View History

2014-09-26 10:35:49 +00:00
{ stdenv, fetchurl, plib, freeglut, xproto, libX11, libXext, xextproto, libXi
, inputproto, libICE, libSM, libXt, libXmu, libGLU_combined, boost, zlib, libjpeg, freealut
2014-09-26 10:35:49 +00:00
, openscenegraph, openal, expat, cmake, apr
2016-12-24 21:57:25 +00:00
, curl
2014-09-26 10:35:49 +00:00
}:
2014-09-26 10:35:49 +00:00
stdenv.mkDerivation rec {
name = "simgear-${version}";
version = "2017.3.1";
shortVersion = "2017.3";
2014-09-26 10:35:49 +00:00
src = fetchurl {
2016-12-24 21:57:25 +00:00
url = "mirror://sourceforge/flightgear/release-${shortVersion}/${name}.tar.bz2";
sha256 = "1x71wvycs2bjgmmacswgk6091p65p46fr40mr7f4kcipnx88bq0f";
2014-09-26 10:35:49 +00:00
};
2014-09-26 10:35:49 +00:00
buildInputs = [ plib freeglut xproto libX11 libXext xextproto libXi inputproto
libICE libSM libXt libXmu libGLU_combined boost zlib libjpeg freealut
2016-12-24 21:57:25 +00:00
openscenegraph openal expat cmake apr curl ];
2013-02-23 19:10:15 +00:00
enableParallelBuilding = true;
2014-09-26 10:35:49 +00:00
meta = with stdenv.lib; {
description = "Simulation construction toolkit";
2014-09-26 10:35:49 +00:00
homepage = https://gitorious.org/fg/simgear;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = licenses.lgpl2;
};
2014-09-26 10:35:49 +00:00
}