Remove "full" build flag

No longer used.
This commit is contained in:
Marien Zwart 2024-05-26 14:59:40 +10:00
parent 5dbe1874b1
commit 313b9ef400
No known key found for this signature in database
2 changed files with 3 additions and 8 deletions

View file

@ -32,9 +32,6 @@
doomSource,
/* Emacs package to build against. */
emacs,
/* Whether to enable all default dependencies. Primarily useful for CI /
testing. */
full ? false,
/* Name of doom profile to use. */
profileName ? "nix",
/* Disable profile early in startup, so "normal" cache/state dirs are used. */
@ -98,8 +95,7 @@ let
} ''
mkdir $out
export DOOMLOCALDIR=$(mktemp -d)
${runtimeShell} ${doomSource}/bin/doomscript ${./build-helpers/dump} \
${optionalString full "--full"} -o $out
${runtimeShell} ${doomSource}/bin/doomscript ${./build-helpers/dump} -o $out
'';
doomPackageSet = lib.importJSON "${doomIntermediates}/packages.json";