about summary refs log tree commit diff
path: root/pkgs/games/build-support/build-game.nix
blob: c3e19fb61970fe433298042c3305a67f8496cb05 (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
{ stdenv, lib, file, unzip, buildSandbox, autoPatchelfHook, gogUnpackHook

, withPulseAudio ? true, libpulseaudio ? null
, alsa-lib
}:

assert withPulseAudio -> libpulseaudio != null;

{ buildInputs ? []
, nativeBuildInputs ? []
, preUnpack ? ""
, setSourceRoot ? ""
, runtimeDependencies ? []
, sandbox ? {}
, ...
}@attrs:

buildSandbox (stdenv.mkDerivation ({
  buildInputs = [ stdenv.cc.cc ] ++ buildInputs;

  nativeBuildInputs = [
    unzip autoPatchelfHook gogUnpackHook
  ] ++ nativeBuildInputs;

  preUnpack = preUnpack + ''
    mkdir "$name"
    pushd "$name" &> /dev/null
  '';

  # Try to evade tarbombs
  setSourceRoot = ''
    popd &> /dev/null
  '' + lib.optionalString (setSourceRoot == "") ''
    sourceRoot="$(find "$name" -type d -exec sh -c '
      ndirs="$(find "$1" -mindepth 1 -maxdepth 1 -type d -printf x | wc -m)"
      nelse="$(find "$1" -mindepth 1 -maxdepth 1 ! -type d -printf x | wc -m)"
      ! [ "$ndirs" -eq 1 -a "$nelse" -eq 0 ]
    ' -- {} \; -print -quit)"
  '';

  runtimeDependencies = let
    deps = lib.singleton alsa-lib
        ++ lib.optional withPulseAudio libpulseaudio
        ++ runtimeDependencies;
  in map (dep: dep.lib or dep) deps;

  dontStrip = true;
  dontPatchELF = true;
} // removeAttrs attrs [
  "buildInputs" "nativeBuildInputs" "preUnpack" "setSourceRoot"
  "runtimeDependencies" "sandbox"
])) (sandbox // {
  paths = let
    paths = sandbox.paths or {};
  in paths // {
    required = paths.required or [ "$XDG_DATA_HOME" "$XDG_CONFIG_HOME" ];
    runtimeVars = [ "LD_LIBRARY_PATH" ] ++ paths.runtimeVars or [];
  };
})