povray: build with gcc12

Building with gcc13 makes it fail to parse some scenes:
https://github.com/POV-Ray/povray/issues/460
Fixes #311017

(cherry picked from commit dac428114e)
This commit is contained in:
Francesco Gazzetta 2024-05-28 09:50:52 +02:00 committed by github-actions[bot]
parent 76b997c6a6
commit 1956171531

View File

@ -11958,7 +11958,11 @@ with pkgs;
postscript-lexmark = callPackage ../misc/drivers/postscript-lexmark { };
povray = callPackage ../tools/graphics/povray { };
povray = callPackage ../tools/graphics/povray {
# https://github.com/POV-Ray/povray/issues/460
# https://github.com/NixOS/nixpkgs/issues/311017
stdenv = gcc12Stdenv;
};
power-profiles-daemon = callPackage ../os-specific/linux/power-profiles-daemon { };