forked from foxora/nix
#1 hater of infinite recursion
This commit is contained in:
parent
43b04c3f8a
commit
a5bb1d1cc1
31 changed files with 946 additions and 851 deletions
|
|
@ -1,10 +1,14 @@
|
|||
{ 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 ];
|
||||
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];
|
||||
}))
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue