Commit dac42811 authored by Francesco Gazzetta's avatar Francesco Gazzetta
Browse files

povray: build with gcc12

Building with gcc13 makes it fail to parse some scenes:
https://github.com/POV-Ray/povray/issues/460
Fixes #311017
parent a2ab4d5a
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -11970,7 +11970,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 { };