2024-07-19 16:24:30 +00:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
unzip,
|
|
|
|
meson,
|
|
|
|
ninja,
|
|
|
|
pkg-config,
|
|
|
|
qtbase,
|
|
|
|
qttools,
|
|
|
|
wrapQtAppsHook,
|
|
|
|
luajit,
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
data = stdenv.mkDerivation (finalAttrs: {
|
|
|
|
pname = "path-of-building-data";
|
|
|
|
version = "2.43.0-beta";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PathOfBuildingCommunity";
|
|
|
|
repo = "PathOfBuilding";
|
2024-07-19 16:38:31 +00:00
|
|
|
rev = "520e4aea9583ce33bf2c1494fc1b5dc128696797";
|
2024-07-19 16:24:30 +00:00
|
|
|
hash = "sha256-E7UgJpsC0YnqG2KbZYxbYRDPoZ2+NfyYCn4fK+QN5WM=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
|
|
|
|
buildCommand = ''
|
|
|
|
# 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
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "path-of-building";
|
|
|
|
version = "${data.version}-unstable-2023-04-09";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ernstp";
|
|
|
|
repo = "pobfrontend";
|
|
|
|
rev = "9faa19aa362f975737169824c1578d5011487c18";
|
|
|
|
hash = "sha256-zhw2PZ6ZNMgZ2hG+a6AcYBkeg7kbBHNc2eSt4if17Wk=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
qttools
|
|
|
|
wrapQtAppsHook
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
qtbase
|
|
|
|
luajit
|
|
|
|
luajit.pkgs.lua-curl
|
|
|
|
];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
install -Dm555 pobfrontend $out/bin/pobfrontend
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
qtWrapperArgs+=(
|
|
|
|
--set LUA_PATH "$LUA_PATH"
|
|
|
|
--set LUA_CPATH "$LUA_CPATH"
|
|
|
|
--chdir "${data}"
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.data = 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
|
|
|
|
};
|
|
|
|
}
|