mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 20:14:37 +00:00
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:
parent
76b997c6a6
commit
1956171531
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user