From 5d0558932ebfa3212e88602140aebc666ecf5f59 Mon Sep 17 00:00:00 2001 From: Roland Coeurjoly Date: Mon, 22 Jul 2024 20:11:08 +0200 Subject: [PATCH] Add llvmPackages.bintools to buildInputs, otherwise we get a linkage error --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index bafdc7bc4..90fa5328c 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ yosys = pkgs.clangStdenv.mkDerivation { name = "yosys"; src = ./. ; - buildInputs = with pkgs; [ clang bison flex libffi tcl readline python3 llvmPackages.libcxxClang zlib git pkg-configUpstream ]; + buildInputs = with pkgs; [ clang bison flex libffi tcl readline python3 llvmPackages.libcxxClang zlib git pkg-configUpstream llvmPackages.bintools ]; checkInputs = with pkgs; [ gtest ]; propagatedBuildInputs = [ abc-verifier ]; preConfigure = "make config-clang";