From a845876e3c2f09caae38c687df997ffa3f61850e Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Sat, 7 Sep 2024 15:39:56 +0400 Subject: [PATCH] overlay nixpkgs fix 340100 for blender --- overlays/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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