foundry: fix build due to gcc15

This commit is contained in:
beeb
2026-01-01 15:07:46 +01:00
parent 27de77f237
commit 24c2015177
+1 -2
View File
@@ -7,7 +7,6 @@
nix-update-script,
pkg-config,
rustPlatform,
solc,
versionCheckHook,
}:
@@ -29,7 +28,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
]
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.DarwinTools ];
buildInputs = [ solc ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libusb1 ];
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libusb1 ];
# Tests are run upstream, and many perform I/O
# incompatible with the nix build sandbox.