about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/path-of-building/default.nix
blob: a6a51664b088c3e3165a6bc31fccf0d9a626a74e (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
{ stdenv, lib, fetchFromGitHub, runCommand, unzip, meson, ninja, pkg-config, qtbase, qttools, wrapQtAppsHook, luajit }:
let
  dataVersion = "2.30.1";
  frontendVersion = "unstable-2023-04-09";
in
stdenv.mkDerivation {
  pname = "path-of-building";
  version = "${dataVersion}-${frontendVersion}";

  src = fetchFromGitHub {
    owner = "ernstp";
    repo = "pobfrontend";
    rev = "9faa19aa362f975737169824c1578d5011487c18";
    hash = "sha256-zhw2PZ6ZNMgZ2hG+a6AcYBkeg7kbBHNc2eSt4if17Wk=";
  };

  data = runCommand "path-of-building-data" {
    src = fetchFromGitHub {
      owner = "PathOfBuildingCommunity";
      repo = "PathOfBuilding";
      rev = "v${dataVersion}";
      hash = "sha256-2itcALgl8eDkZylb/hmePDMILM4RxW2u5LYLbg+NNJ4=";
    };

    nativeBuildInputs = [ unzip ];
  }
  ''
    # I have absolutely no idea how this file is generated
    # and I don't think I want to know. The Flatpak also does this.
    unzip -j -d $out $src/runtime-win32.zip lua/sha1.lua

    # Install the actual data
    cp -r $src/src $src/runtime/lua/*.lua $src/manifest.xml $out

    # Pretend this is an official build so we don't get the ugly "dev mode" warning
    substituteInPlace $out/manifest.xml --replace '<Version' '<Version platform="nixos"'
    touch $out/installed.cfg

    # Completely stub out the update check
    chmod +w $out/src/UpdateCheck.lua
    echo 'return "none"' > $out/src/UpdateCheck.lua
  '';

  nativeBuildInputs = [ meson ninja pkg-config qttools wrapQtAppsHook ];
  buildInputs = [ qtbase luajit luajit.pkgs.lua-curl ];
  dontWrapQtApps = true;

  installPhase = ''
    runHook preInstall
    install -Dm555 pobfrontend $out/bin/pobfrontend
    runHook postInstall
  '';

  postFixup = ''
    wrapQtApp $out/bin/pobfrontend \
      --set LUA_PATH "$LUA_PATH" \
      --set LUA_CPATH "$LUA_CPATH" \
      --chdir "$data"
  '';

  meta = {
    description = "Offline build planner for Path of Exile";
    homepage = "https://pathofbuilding.community/";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.k900 ];
    mainProgram = "pobfrontend";
    broken = stdenv.isDarwin;  # doesn't find uic6 for some reason
  };
}