tvl-depot/users/emery/eaglemode/default.nix
Emery Hemingway 1c898f7ddc feat(tools/eaglemode/plugins/avif): AVIF image plugin
Animation not implemented.
https: //en.wikipedia.org/wiki/AVIF

Change-Id: I80f8c4132c4335b2e60ce7b70eb424457e50c73f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12428
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
2024-09-03 19:44:05 +00:00

13 lines
319 B
Nix

# Derivation for my fully configured Eagle Mode.
{ depot, ... }:
let
config = depot.tools.eaglemode.etcDir {
extraPaths = [
depot.tools.eaglemode.commands.B
depot.tools.eaglemode.plugins.avif
depot.tools.eaglemode.plugins.qoi
];
};
in
depot.tools.eaglemode.withConfig { inherit config; }