From 24c201517738288584b4eeced5fb75aa61af92a3 Mon Sep 17 00:00:00 2001 From: beeb <703631+beeb@users.noreply.github.com> Date: Thu, 1 Jan 2026 15:07:46 +0100 Subject: [PATCH] foundry: fix build due to gcc15 --- pkgs/by-name/fo/foundry/package.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/by-name/fo/foundry/package.nix b/pkgs/by-name/fo/foundry/package.nix index 2f6b138fe16b..aad6d8bfde95 100644 --- a/pkgs/by-name/fo/foundry/package.nix +++ b/pkgs/by-name/fo/foundry/package.nix @@ -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.