summaryrefslogtreecommitdiff
path: root/nixos/packages/the-long-dark/default.nix
blob: def570cac68532831d9ba74343e1c6d49be4ae5b (plain)
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
{stdenv, glibc, coreutils, patchelf, requireFile, unzip, xorg, libXrandr, makeWrapper, libpulseaudio, mesa_noglu, gcc, systemd, alsaLib, wayland, libxkbcommon }:

with stdenv.lib;

stdenv.mkDerivation rec {
  name = "the-long-dark-${version}";
  version = "2.9.0.11";
  src = requireFile {
    name = "gog_the_long_dark_${version}.sh";
    sha256 = "3bb5feaa921334dfca28ad42ff6c87980fa445dd4d2547fc97e9e3adbcea1725";
    url = "https://gog.com";
  };

  buildInputs = [ coreutils unzip makeWrapper ];

  unpackPhase = ''
    mkdir src
    cd src
    unzip $src || true
    # offset=$(${stdenv.shell} -c "$(grep -axm1 -e 'offset=.*' $src); echo \$offset" $src)
    # dd if="$src" ibs=$offset skip=1 | gzip -cd | tar xvf - || true
  '';

  libPath = stdenv.lib.makeLibraryPath [
    glibc mesa_noglu xorg.libX11 xorg.libXext xorg.libXcursor libXrandr
    xorg.libXinerama xorg.libXi xorg.libXScrnSaver
    libpulseaudio gcc.cc systemd.lib alsaLib wayland libxkbcommon ];

  buildPhase = ''
    patchelf \
      --set-rpath "${stdenv.lib.makeLibraryPath [ xorg.libX11 ]}" \
      --set-interpreter "$(cat ${stdenv.cc}/nix-support/dynamic-linker)" \
      ./data/noarch/game/tld.x86_64
    # patchelf \
    #   --set-rpath "${stdenv.lib.makeLibraryPath [ xorg.libX11 ]}" \
    #   --set-interpreter "$(cat ${stdenv.cc}/nix-support/dynamic-linker)" \
    #   ./data/noarch/game/StardewValley.bin.x86_64
  '';

  installPhase = ''
    mkdir $out
    cp -r * $out/
    makeWrapper "$out/data/noarch/start.sh" "$out/bin/the-long-dark" \
       --prefix LD_LIBRARY_PATH : "${libPath}"
    # makeWrapper \
    #   "$out/data/noarch/start.sh" \
    #   "$out/bin/stardew-valley" \
    #   --prefix LD_LIBRARY_PATH : "${libPath}"
  '';
}