overlay nixpkgs fix 340100 for blender

This commit is contained in:
Sakooooo 2024-09-07 15:39:56 +04:00
parent 05f3f215e7
commit a845876e3c
Signed by: sako
GPG key ID: FE52FD65B76E4751

View file

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