2011-04-09 18:43:00 +02:00
|
|
|
x@{builderDefsPackage
|
|
|
|
, plib, freeglut, xproto, libX11, libXext, xextproto, libXi , inputproto
|
|
|
|
, libICE, libSM, libXt, libXmu, mesa, boost, zlib, libjpeg , freealut
|
2013-10-06 21:36:18 +02:00
|
|
|
, openscenegraph, openal, expat, cmake, apr
|
2011-04-09 18:43:00 +02:00
|
|
|
, ...}:
|
|
|
|
builderDefsPackage
|
2013-02-23 20:10:15 +01:00
|
|
|
(a :
|
|
|
|
let
|
|
|
|
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
2011-04-09 18:43:00 +02:00
|
|
|
[];
|
|
|
|
|
|
|
|
buildInputs = map (n: builtins.getAttr n x)
|
|
|
|
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
|
|
|
sourceInfo = rec {
|
2013-02-23 20:10:15 +01:00
|
|
|
baseName="simgear";
|
2013-10-06 21:36:18 +02:00
|
|
|
version="2.12.0";
|
2011-04-09 18:43:00 +02:00
|
|
|
name="${baseName}-${version}";
|
2013-02-23 20:10:15 +01:00
|
|
|
extension="tar.bz2";
|
|
|
|
url="http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/${name}.${extension}";
|
2013-10-06 21:36:18 +02:00
|
|
|
hash="0spl6afk8rm96ss4lh7zy5561m5m2qgwsnqjyp35jr1gyyrc944f";
|
2011-04-09 18:43:00 +02:00
|
|
|
};
|
|
|
|
in
|
|
|
|
rec {
|
|
|
|
src = a.fetchurl {
|
|
|
|
url = sourceInfo.url;
|
|
|
|
sha256 = sourceInfo.hash;
|
|
|
|
};
|
|
|
|
|
|
|
|
inherit (sourceInfo) name version;
|
|
|
|
inherit buildInputs;
|
|
|
|
|
|
|
|
/* doConfigure should be removed if not needed */
|
2013-02-23 20:10:15 +01:00
|
|
|
phaseNames = [ "doCmake" "doMakeInstall" ];
|
|
|
|
|
2011-04-09 18:43:00 +02:00
|
|
|
meta = {
|
|
|
|
description = "Simulation construction toolkit";
|
|
|
|
maintainers = with a.lib.maintainers;
|
|
|
|
[
|
|
|
|
raskin
|
|
|
|
];
|
|
|
|
platforms = with a.lib.platforms;
|
|
|
|
linux;
|
|
|
|
license = a.lib.licenses.lgpl2;
|
|
|
|
};
|
|
|
|
passthru = {
|
|
|
|
updateInfo = {
|
|
|
|
downloadPage = "ftp://ftp.goflyflightgear.com/simgear/Source/";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}) x
|
|
|
|
|