Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.7 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildNpmPackage,
fetchFromGitHub,
vips,
lib,
pkg-config,
jq,
makeWrapper,
nix-update-script,
}:
buildNpmPackage rec {
pname = "factoriolab";
version = "3.17.5";
src = fetchFromGitHub {
owner = "factoriolab";
repo = "factoriolab";
tag = "v${version}";
hash = "sha256-Ra3xnOCIzx5oCeMU8kARcup+wsxknePBO/w1xGbwgT8=";
fetchLFS = true;
};
buildInputs = [ vips ];
nativeBuildInputs = [
pkg-config
makeWrapper
];
npmDepsHash = "sha256-FX9zxq3kIQ5nxEPW57X53novtCFBPV5w9jg882EC2Lo=";
# By default angular tries to optimize fonts by inlining them
# which needs internet access during building to download said fonts.
# Internet access during build would necessitate turning this into a fixed output derivation
# which is difficult as said fonts are not actually stable.
# This disables font inlining completely in which case the fonts will be loaded on demand by your browser
postPatch = ''
${lib.getExe jq} '.projects.factoriolab.architect.build.options += { "optimization": {"fonts": false } }' ./angular.json > angular.json.new
mv -f angular.json.new angular.json
'';
installPhase = ''
runHook preInstall
mkdir -p $out/share
cp -r dist/browser $out/share/factoriolab
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/factoriolab/factoriolab";
changelog = "https://github.com/factoriolab/factoriolab/releases/tag/${version}";
description = "Angular-based calculator for factory games like Factorio and Dyson Sphere Program";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ patrickdag ];
};
}