diff --git a/overlays/default.nix b/overlays/default.nix index dfbbf0b5..77a634ab 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -1,4 +1,4 @@ -{inputs, ...}: { +{inputs, pkgs, ...}: { # This one brings our custom packages from the 'pkgs' directory additions = final: _prev: import ../packages {pkgs = final;}; @@ -38,6 +38,9 @@ isync = prev.isync.overrideAttrs (old: { withCyrusSaslXoauth2 = true; }); + blender = prev.blender.override (old: { + nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ pkgs.pkg-config pkgs.wayland-scanner ]; + }); }; # incase something breaks