From 53ebe8d8b238b68f4bb4ceb3bf5ed4803d7e17af Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 24 Jul 2021 09:31:24 +0800 Subject: [PATCH] shell.nix: set LLVM_SYS_100_PREFIX. Closes #4 --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index 858e68b9..c091f175 100644 --- a/shell.nix +++ b/shell.nix @@ -6,4 +6,5 @@ in buildInputs = with pkgs; [ llvm_10 clang_10 cargo rustc libffi libxml2 clippy ]; + LLVM_SYS_100_PREFIX="${pkgs.llvm_10}"; }