about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/graphics/hdrmerge/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/graphics/hdrmerge/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/graphics/hdrmerge/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/graphics/hdrmerge/default.nix b/nixpkgs/pkgs/applications/graphics/hdrmerge/default.nix
index a8db24c35283..827ee15af60a 100644
--- a/nixpkgs/pkgs/applications/graphics/hdrmerge/default.nix
+++ b/nixpkgs/pkgs/applications/graphics/hdrmerge/default.nix
@@ -37,6 +37,11 @@ mkDerivation rec {
     "-DALGLIB_DIR:PATH=${alglib}"
   ];
 
+  CXXFLAGS = [
+    # GCC 13: error: 'uint32_t' does not name a type
+    "-include cstdint"
+  ];
+
   patches = [
     # https://github.com/jcelaya/hdrmerge/pull/222
     (fetchpatch {