summary refs log tree commit diff
path: root/pkgs/games/globulation/default.nix
blob: bd2a671afc908765090b47ccd4d2c279ff548042 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
x@{builderDefsPackage
  , mesa, SDL, scons, SDL_ttf, SDL_image, zlib, SDL_net, speex, libvorbis
  , libogg, boost, fribidi, bsdiff
  , ...}:
builderDefsPackage
(a :  
let 
  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 
    [];

  buildInputs = [ ]
    ++ map (n: builtins.getAttr n x)
     (builtins.attrNames (builtins.removeAttrs x helperArgNames));
  sourceInfo = rec {
   baseName="glob2";
    version="0.9.4";
    patchlevel="4";
    name="${baseName}-${version}.${patchlevel}";
    url="mirror://savannah/glob2/${version}/${name}.tar.gz";
    hash="1f0l2cqp2g3llhr9jl6jj15k0wb5q8n29vqj99xy4p5hqs78jk8g";
  };
in
rec {
  src = a.fetchurl {
    url = sourceInfo.url;
    sha256 = sourceInfo.hash;
  };

  tutorial4patch = a.fetchurl {
    url = "http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=34;filename=tutorial-part4.map.bspatch;att=1;bug=595448";
    name = "globulation2-tutorial4-map-patch-debian.bspatch";
    sha256 = "d3511ac0f822d512c42abd34b3122f2990862d3d0af6ce464ff372f5bd7f35e9";
  };

  inherit (sourceInfo) name version;
  inherit buildInputs;

  /* doConfigure should be removed if not needed */
  phaseNames = ["doUnpack" "doPatch" "doBspatch" "workaroundScons" "doScons"];

  patches = [./header-order.patch];

  doBspatch = a.fullDepEntry ''
    cp campaigns/tutorial-part4.map{,.orig}
    bspatch  campaigns/tutorial-part4.map{.orig,} ${tutorial4patch}
  '' ["minInit" "doUnpack" "addInputs"];

  # FIXME
  # I officially fail to understand what goes on, but that seems to work
  # too well not to use. Yes, it is ugly, I know...
  workaroundScons = a.fullDepEntry ''
    echo '#! ${a.stdenv.shell}' >> o
    echo 'g++ -o "$@"' >> o
    chmod a+x o
    export PATH="$PATH:$PWD"
  '' ["minInit"];

  sconsFlags = [
    "DATADIR=$out/share/globulation2/glob2"
    "BINDIR=$out/bin"
    "INSTALLDIR=$out/share/globulation2"
  ];
      
  meta = {
    description = "RTS without micromanagement";
    maintainers = with a.lib.maintainers;
    [
      raskin
    ];
    platforms = with a.lib.platforms;
      linux;
    license = a.lib.licenses.gpl3;
  };
  passthru = {
    updateInfo = {
      downloadPage = "http://globulation2.org/wiki/Download_and_Install";
    };
  };
}) x