14 lines
326 B
Nix
14 lines
326 B
Nix
{
|
|
inputs,
|
|
upkgs,
|
|
system,
|
|
...
|
|
}: {
|
|
home.packages = [
|
|
(inputs.awww.packages.${system}.awww.overrideAttrs (old: {
|
|
cargoBuildFlags = ["--features=avif"];
|
|
buildInputs = (old.buildInputs or []) ++ [upkgs.dav1d];
|
|
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [upkgs.pkg-config];
|
|
}))
|
|
];
|
|
}
|