From e057187c5b9931ab97672f690ff102cad848c761 Mon Sep 17 00:00:00 2001 From: Ed Cragg Date: Mon, 2 Dec 2024 15:22:13 +0000 Subject: [PATCH] Fix nix shell dependency name change error: 'pkgconfig' has been renamed to/replaced by 'pkg-config' --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index ef22023..73305a0 100644 --- a/default.nix +++ b/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { buildInputs = [ rustc cargo - pkgconfig + pkg-config openssl sqlite ];