efficient-compression-tool: fixup build with gcc13

This commit is contained in:
Vladimír Čunát 2024-01-11 16:16:45 +01:00
parent 048da68103
commit c3a00e5a69
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -29,6 +29,11 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DECT_FOLDER_SUPPORT=ON" ];
CXXFLAGS = [
# GCC 13: error: 'uint32_t' does not name a type
"-include cstdint"
];
meta = with lib; {
description = "Fast and effective C++ file optimizer";
homepage = "https://github.com/fhanau/Efficient-Compression-Tool";