forked from mirrors/nixpkgs
Adding FlightGear
svn path=/nixpkgs/trunk/; revision=26770
This commit is contained in:
parent
ab7bb9e148
commit
0526aaa8a2
59
pkgs/games/flightgear/default.nix
Normal file
59
pkgs/games/flightgear/default.nix
Normal file
|
@ -0,0 +1,59 @@
|
|||
x@{builderDefsPackage
|
||||
, freeglut, freealut, mesa, libICE, libjpeg, openal, openscenegraph, plib
|
||||
, libSM, libunwind, libX11, xproto, libXext, xextproto, libXi, inputproto
|
||||
, libXmu, libXt, simgear, zlib, boost
|
||||
, ...}:
|
||||
builderDefsPackage
|
||||
(a :
|
||||
let
|
||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||
[];
|
||||
|
||||
buildInputs = map (n: builtins.getAttr n x)
|
||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||
sourceInfo = rec {
|
||||
baseName="FlightGear";
|
||||
version="2.0.0";
|
||||
name="${baseName}-${version}";
|
||||
extension="tar.gz";
|
||||
url="http://ftp.linux.kiev.ua/pub/fgfs/Source/${name}.${extension}";
|
||||
hash="17h7ns955xkd0cakfk22aym0id65rd8kylcamkmycbgnnhs4b1wg";
|
||||
};
|
||||
in
|
||||
rec {
|
||||
src = a.fetchurl {
|
||||
url = sourceInfo.url;
|
||||
sha256 = sourceInfo.hash;
|
||||
};
|
||||
|
||||
datasrc = a.fetchurl {
|
||||
url = "http://ftp.igh.cnrs.fr/pub/flightgear/ftp/Shared/FlightGear-data-2.0.0.tar.bz2";
|
||||
sha256 = "0kvmvh5qycbpdjx12l20cbhljwimmcgww2dg4lkc2sky0kg14ic1";
|
||||
};
|
||||
|
||||
inherit (sourceInfo) name version;
|
||||
inherit buildInputs;
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["doConfigure" "doMakeInstall" "deployData"];
|
||||
|
||||
deployData = a.fullDepEntry ''
|
||||
ensureDir "$out/share/FlightGear"
|
||||
cd "$out/share/FlightGear"
|
||||
tar xvf ${datasrc}
|
||||
'' ["minInit" "defEnsureDir"];
|
||||
|
||||
meta = {
|
||||
description = "A flight simulator";
|
||||
maintainers = with a.lib.maintainers;
|
||||
[
|
||||
raskin
|
||||
];
|
||||
platforms = with a.lib.platforms;
|
||||
linux;
|
||||
license = a.lib.licenses.gpl2;
|
||||
};
|
||||
passthru = {
|
||||
};
|
||||
}) x
|
||||
|
|
@ -7111,6 +7111,8 @@ let
|
|||
});
|
||||
*/
|
||||
|
||||
flightgear = callPackage ../games/flightgear {};
|
||||
|
||||
freedink = callPackage ../games/freedink { };
|
||||
|
||||
fsg = callPackage ../games/fsg {
|
||||
|
|
Loading…
Reference in a new issue