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:
parent
7f81b2dee0
commit
51bac09a7c
1 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue