Monorepo for Tangled tangled.org
1

Configure Feed

Select the types of activity you want to include in your feed.

core / nix / pkgs / web-static-files.nix
643 B 18 lines
1{ 2 runCommandLocal, 3 inter-fonts-src, 4 ibm-plex-mono-src, 5 dolly, 6}: 7runCommandLocal "web-static-files" {} '' 8 mkdir -p $out/{fonts,logos} 9 10 cp -f ${inter-fonts-src}/web/InterVariable*.woff2 $out/fonts/ 11 cp -f ${inter-fonts-src}/web/InterDisplay*.woff2 $out/fonts/ 12 cp -f ${ibm-plex-mono-src}/fonts/complete/woff2/IBMPlexMono*.woff2 $out/fonts/ 13 14 ${dolly}/bin/dolly -output $out/logos/dolly.png -size 180 15 ${dolly}/bin/dolly -output $out/logos/dolly.ico -size 48 16 ${dolly}/bin/dolly -output $out/logos/dolly.svg -color currentColor -favicon 17 ${dolly}/bin/dolly -output $out/logos/logotype.svg -kind logotype -color currentColor 18''