textlint: fix build on aarch64-linux

This commit is contained in:
natsukium 2024-08-18 23:22:15 +09:00
parent 2b82213a27
commit 8e98705b81
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -1,10 +1,12 @@
{
lib,
stdenv,
buildNpmPackage,
fetchFromGitHub,
autoconf,
automake,
makeWrapper,
python311,
runCommand,
textlint,
textlint-plugin-latex2e,
@ -44,10 +46,16 @@ buildNpmPackage rec {
npmDepsHash = "sha256-FnDKPLhf9OxwRrrBJgejp4X13FGEI317yTgI3tA5cX8=";
nativeBuildInputs = [
autoconf
automake
];
nativeBuildInputs =
[
autoconf
automake
]
++ lib.optionals (stdenv.hostPlatform.system == "aarch64-linux") [
# File "/build/source/node_modules/node-gyp/gyp/gyp_main.py", line 42, in <module>
# npm error ModuleNotFoundError: No module named 'distutils'
python311
];
installPhase = ''
runHook preInstall