particl-core: 23.0.3.0 -> 23.2.7.0

Without the change the build against `gcc-13` fails on `master` as
https://hydra.nixos.org/build/249150842:

    In file included from ./util/strencodings.h:14,
                     from util/strencodings.cpp:6:
    ./util/string.h💯50: error: 'uint8_t' was not declared in this scope
      100 |                                 const std::array<uint8_t, PREFIX_LEN>& prefix)
          |                                                  ^~~~~~~
This commit is contained in:
Sergei Trofimovich 2024-02-20 23:05:06 +00:00
parent e4af98e127
commit cd37349f82

View File

@ -16,13 +16,13 @@
stdenv.mkDerivation rec {
pname = "particl-core";
version = "23.0.3.0";
version = "23.2.7.0";
src = fetchFromGitHub {
owner = "particl";
repo = "particl-core";
rev = "v${version}";
sha256 = "sha256-jrIsErKeHP9CMUWsrD42RmfmApP7J091OLA5JNY0fe0=";
hash = "sha256-RxkLt+7u+r5jNwEWiArTUpZ8ykYwWtvIDFXTSKhGN/w=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];