refactor: doerg는 publisher와 결합
All checks were successful
build / build (push) Successful in 5s

This commit is contained in:
2026-04-03 11:20:36 -06:00
parent 5ca59fdb5e
commit dcaac98252
88 changed files with 158 additions and 622 deletions

21
ibm-plex-web.nix Normal file
View File

@@ -0,0 +1,21 @@
# Differs from the Nixpkgs distribution in that we distribute WOFFs
# and CSS rather than just OTF.
{ ibm-plex
, families ? []
}@args:
(ibm-plex.overrideAttrs (_prev: {
installPhase = ''
runHook preInstall
for i in $srcs; do
# cp $i/css/*.css $out/css
for j in css fonts/{complete,split}/{woff,woff2}; do
if [ -d $i/$j ]; then
find $i/$j -type f -regex '.*\.\(woff2?\|css\)' \
-exec install -Dm644 -t $out/share/ibm-plex-web/$j {} \;
fi
done
done
runHook postInstall
'';
})).override { inherit families; }