wownero: fix gcc-13 build

Without the change build fail on `master` as
https://hydra.nixos.org/build/248981684:

    /build/source/contrib/epee/include/storages/parserse_base_utils.h:46:28: error: 'uint8_t' does not name a type
       46 |     static const constexpr uint8_t lut[256]={
          |                            ^~~~~~~
This commit is contained in:
Sergei Trofimovich 2024-02-23 22:12:00 +00:00
parent 7f81b2dee0
commit 51bac09a7c

View file

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, boost
, libsodium
@ -45,6 +46,15 @@ stdenv.mkDerivation rec {
hash = "sha256-zmGsSbPpVwL0AhCQkdMKORruM5kYrrLe/BYfMphph8c=";
};
patches = [
# Fix gcc-13 build due to missing <cstdint> neaders
(fetchpatch {
name = "gcc-13.patch";
url = "https://git.wownero.com/wownero/wownero/commit/f983ac77805a494ea4a05a00398c553e1359aefd.patch";
hash = "sha256-9acQ4bHAKFR+lMgrpQyBmb+9YZYi1ywHoo1jBcIgmGs=";
})
];
nativeBuildInputs = [
cmake
];