Commit 19561715 authored by Francesco Gazzetta's avatar Francesco Gazzetta Committed by github-actions[bot]
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

(cherry picked from commit dac42811)
parent 76b997c6
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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 { };