mirror of
https://codeberg.org/mtxyz/nixconf.git
synced 2024-11-09 10:01:57 +00:00
8 lines
262 B
Nix
8 lines
262 B
Nix
{ channels, ... }:
|
|
|
|
final: prev: {
|
|
# Fallback to stable packages when build issues occur.
|
|
# * Blender has a build failure. (2024-02-27)
|
|
# * Fractal build takes 30m+ and 12GB+ of RAM when linking? (2024-02-27)
|
|
inherit (channels.stable) blender fractal;
|
|
}
|