summary refs log tree commit diff
path: root/pkgs/games/flightgear/default.nix
blob: fe90156d84cf2d968ac209d459900d3161510480 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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 ''
    mkdir -p "$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