From 6f9507a16f3c2a8838827e6695fae2b31eb9fa9b Mon Sep 17 00:00:00 2001 From: Roland Coeurjoly Date: Wed, 8 May 2024 04:47:40 +0200 Subject: [PATCH] Add pkg-config --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 1143d538c25..d97be4ef671 100644 --- a/flake.nix +++ b/flake.nix @@ -15,7 +15,7 @@ customYosys = pkgs.clangStdenv.mkDerivation { name = "yosys"; src = ./. ; - buildInputs = with pkgs; [ clang bison flex libffi tcl readline python3 llvmPackages.libcxxClang zlib git ]; + buildInputs = with pkgs; [ clang bison flex libffi tcl readline python3 llvmPackages.libcxxClang zlib git pkg-configUpstream ]; checkInputs = with pkgs; [ gtest ]; propagatedBuildInputs = with pkgs; [ abc-verifier ]; preConfigure = "make config-clang";