From 48bea7891cdc0ffea5fc3d3395e7c58696fa02da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 25 Oct 2022 22:44:32 +0200 Subject: [PATCH] nix: add pcre required for nim/nre MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://nim-lang.org/docs/nre.html Signed-off-by: Jakub SokoĊ‚owski --- shell.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shell.nix b/shell.nix index b1cb182810..ae2426a78b 100644 --- a/shell.nix +++ b/shell.nix @@ -15,4 +15,8 @@ pkgs.mkShell { libiconv darwin.apple_sdk.frameworks.Security ]; + + LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ + pkgs.pcre + ]; }