Skip to content

Commit

Permalink
povray: build with gcc12
Browse files Browse the repository at this point in the history
Building with gcc13 makes it fail to parse some scenes:
POV-Ray/povray#460
Fixes NixOS#311017
  • Loading branch information
fgaz committed May 28, 2024
1 parent a2ab4d5 commit dac4281
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };

Expand Down

0 comments on commit dac4281

Please sign in to comment.