691 current 2024-05-26 22:12:48 24.11.20240524.bfb7a88 6.9.1-zen1 *

This commit is contained in:
zackartz 2024-05-26 22:12:57 -04:00
parent f723b9560e
commit 5e1a70ca49
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
7 changed files with 207 additions and 102 deletions

View file

@ -68,7 +68,6 @@ buildNpmPackage rec {
buildPhase = ''
export HOME=$TMPDIR
runHook preBuild
npm run build --no-update-notifier -- --jCmd=$NIX_BUILD_CORES --verbose=9 ttf::zed-mono
npm run build --no-update-notifier -- --jCmd=$NIX_BUILD_CORES --verbose=9 ttf::zed-sans
runHook postBuild
'';
@ -77,7 +76,7 @@ buildNpmPackage rec {
runHook preInstall
fontdir="$out/share/fonts/truetype"
install -d "$fontdir"
install "dist/$pname/ttf"/* "$fontdir"
install "dist/zed-sans/ttf"/* "$fontdir"
runHook postInstall
'';