overlay nixpkgs fix 340100 for blender
This commit is contained in:
parent
05f3f215e7
commit
a845876e3c
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue