update images to webp, update pre-commit hooks

This commit is contained in:
2026-03-04 01:37:18 -07:00
parent cfb55e0e51
commit bd73fcd39b
72 changed files with 1007 additions and 80 deletions
+12 -1
View File
@@ -11,6 +11,12 @@
let
pkgs = nixpkgs.legacyPackages.${system};
in
let
tagCheckPython = pkgs.python313.withPackages (ps: [
ps.spacy
ps.spacy-models.en_core_web_lg
]);
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
@@ -21,7 +27,12 @@
aspell
aspellDicts.en
fzf # Interactive spell check and tag selection
python3 # Tag similarity checker
tagCheckPython # Python + spaCy for semantic tag similarity checker
# Image optimization tools (used by scripts/optimize-images.sh)
perl538Packages.ImageExifTool # EXIF metadata reading/stripping
imagemagick # Resize, auto-orient, get dimensions
libwebp # cwebp for WebP conversion
];
shellHook = ''