···114115- `lisp-modules` were brought in sync with the [June 2025 Quicklisp release](http://blog.quicklisp.org/2025/07/june-2025-quicklisp-dist-now-available.html).
11600117- `searx` was updated to use `envsubst` instead of `sed` for parsing secrets from environment variables.
118 If your previous configuration included a secret reference like `server.secret_key = "@SEARX_SECRET_KEY@"`, you must migrate to the new envsubst syntax: `server.secret_key = "$SEARX_SECRET_KEY"`.
119
···114115- `lisp-modules` were brought in sync with the [June 2025 Quicklisp release](http://blog.quicklisp.org/2025/07/june-2025-quicklisp-dist-now-available.html).
116117+- `ffmpeg_8`, `ffmpeg_8-headless`, and `ffmpeg_8-full` have been added. The default version of FFmpeg remains ffmpeg_7 for now, though this may change before release.
118+119- `searx` was updated to use `envsubst` instead of `sed` for parsing secrets from environment variables.
120 If your previous configuration included a secret reference like `server.secret_key = "@SEARX_SECRET_KEY@"`, you must migrate to the new envsubst syntax: `server.secret_key = "$SEARX_SECRET_KEY"`.
121
···29 version = "7.1.1";
30 hash = "sha256-GyS8imOqfOUPxXrzCiQtzCQIIH6bvWmQAB0fKUcRsW4=";
31 };
000032in
3334rec {
···46 ffmpeg_7 = mkFFmpeg v7 "small";
47 ffmpeg_7-headless = mkFFmpeg v7 "headless";
48 ffmpeg_7-full = mkFFmpeg v7 "full";
00004950 # Please make sure this is updated to new major versions once they
51 # build and work on all the major platforms. If absolutely necessary
···29 version = "7.1.1";
30 hash = "sha256-GyS8imOqfOUPxXrzCiQtzCQIIH6bvWmQAB0fKUcRsW4=";
31 };
32+ v8 = {
33+ version = "8.0";
34+ hash = "sha256-okNZ1/m/thFAY3jK/GSV0+WZFnjrMr8uBPsOdH6Wq9E=";
35+ };
36in
3738rec {
···50 ffmpeg_7 = mkFFmpeg v7 "small";
51 ffmpeg_7-headless = mkFFmpeg v7 "headless";
52 ffmpeg_7-full = mkFFmpeg v7 "full";
53+54+ ffmpeg_8 = mkFFmpeg v8 "small";
55+ ffmpeg_8-headless = mkFFmpeg v8 "headless";
56+ ffmpeg_8-full = mkFFmpeg v8 "full";
5758 # Please make sure this is updated to new major versions once they
59 # build and work on all the major platforms. If absolutely necessary