From 920a2da470743ebfa59e8ee8aa8185ab57dbe14a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Wed, 15 May 2024 10:21:29 +0200 Subject: [PATCH] Fix nixpkgs `pkg-config` name in `shell.nix` (#14593) --- shell.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/shell.nix b/shell.nix index 961ed63cc47e..1d839dcf318f 100644 --- a/shell.nix +++ b/shell.nix @@ -68,8 +68,6 @@ let }; }.${pkgs.stdenv.system}); - pkgconfig = pkgs.pkgconfig; - boehmgc = pkgs.boehmgc.override { enableLargeConfig = true; }; @@ -86,7 +84,7 @@ pkgs.stdenv.mkDerivation rec { buildInputs = tools ++ stdLibDeps ++ [ latestCrystalBinary - pkgconfig + pkgs.pkg-config llvmPackages.libllvm pkgs.libffi ];