1
0
Fork 0
forked from foxora/nix
flake-foxora/homes/modules/de/awww.nix
2026-02-12 18:53:24 +00:00

10 lines
362 B
Nix

{ config, inputs, lib, pkgs, ... }:
{
home.packages = with pkgs; [
(inputs.awww.packages.${pkgs.stdenv.hostPlatform.system}.awww.overrideAttrs (old: {
cargoBuildFlags = [ "--features=avif" ];
buildInputs = (old.buildInputs or []) ++ [ pkgs.dav1d ];
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ pkgs.pkg-config ];
}))
];
}