This commit is contained in:
Sakooooo 2024-09-07 15:41:36 +04:00
parent a845876e3c
commit 83696cb933
Signed by: sako
GPG key ID: FE52FD65B76E4751

View file

@ -1,4 +1,4 @@
{inputs, pkgs, ...}: { {inputs, ...}: {
# 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;};
@ -39,7 +39,7 @@
withCyrusSaslXoauth2 = true; withCyrusSaslXoauth2 = true;
}); });
blender = prev.blender.override (old: { blender = prev.blender.override (old: {
nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ pkgs.pkg-config pkgs.wayland-scanner ]; nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ inputs.nixpkgs.legacyPackages.x86_64-linux.pkg-config inputs.nixpkgs.legacyPackages.x86_64-linux.wayland-scanner ];
}); });
}; };