poetry2nix: fix LLVM_CONFIG reference

This commit is contained in:
Jonathan Ringer 2021-05-07 14:38:32 -07:00 committed by Jonathan Ringer
parent afaf4b64b3
commit 2b79244f89

View file

@ -512,7 +512,7 @@ self: super:
# Set directory containing llvm-config binary
preConfigure = ''
export LLVM_CONFIG=${pkgs.llvm}/bin/llvm-config
export LLVM_CONFIG=${pkgs.llvm.dev}/bin/llvm-config
'';
__impureHostDeps = lib.optionals pkgs.stdenv.isDarwin [ "/usr/lib/libm.dylib" ];