forked from foxora/nix
10 lines
362 B
Nix
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 ];
|
|
}))
|
|
];
|
|
}
|