emacs: format genericBuild in preparation for adding more flags

This commit is contained in:
Lin Jian
2024-07-20 22:31:30 +08:00
parent 577f40b8a9
commit 2bc61ad2ba
@@ -83,7 +83,11 @@ stdenv.mkDerivation (finalAttrs: ({
find $out/share/emacs -type f -name '*.el' -print0 \
| xargs -0 -I {} -n 1 -P $NIX_BUILD_CORES sh -c \
"emacs --batch --eval '(setq large-file-warning-threshold nil)' -f batch-native-compile {} || true"
"emacs \
--batch \
--eval '(setq large-file-warning-threshold nil)' \
-f batch-native-compile {} \
|| true"
'';
}