From f0ace12a5b135f92c7aa6e5971d04db620f2bd33 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 20 Dec 2024 10:10:54 -0800 Subject: [PATCH] nix: flatbuffers_23 is required newer nixpkgs have flatbuffers set to v24 which doesn't work --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 05c1c8f..f9c9e47 100644 --- a/shell.nix +++ b/shell.nix @@ -2,6 +2,6 @@ with pkgs; mkShell { buildInputs = [ - perl lmdb zstd secp256k1 flatbuffers zlib openssl libuv + perl lmdb zstd secp256k1 flatbuffers_23 zlib openssl libuv ]; }