mirror of
https://codeberg.org/mtxyz/nixconf.git
synced 2024-11-09 18:12:02 +00:00
11 lines
345 B
Nix
11 lines
345 B
Nix
{ channels, ... }:
|
|
|
|
final: prev: {
|
|
# Fallback to stable packages when build issues occur.
|
|
# * qemu 8.2.3 has a build failure. 8.2.4 should be coming soon. (2024-05-17)
|
|
qemu = channels.stable.qemu;
|
|
|
|
# Past issues:
|
|
# * Blender had a build failure. (2024-02-27)
|
|
# * Fractal build took 30m+ and 12GB+ of RAM when linking? (2024-02-27)
|
|
}
|