forked from mirror/codesnap.nvim
Compare commits
No commits in common. "temp-nix" and "main" have entirely different histories.
1 changed files with 0 additions and 17 deletions
17
shell.nix
17
shell.nix
|
@ -1,17 +0,0 @@
|
|||
{ pkgs ? import <nixpkgs> { }, additionalBuildInputs ? [ ] }:
|
||||
|
||||
with pkgs;
|
||||
|
||||
mkShell rec {
|
||||
nativeBuildInputs = [
|
||||
libclang
|
||||
glibc
|
||||
gcc
|
||||
libuv
|
||||
];
|
||||
buildInputs = additionalBuildInputs ++ nativeBuildInputs;
|
||||
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
|
||||
shellHook = ''
|
||||
export LIBCLANG_PATH=${llvmPackages.libclang.lib}/lib
|
||||
'';
|
||||
}
|
Loading…
Reference in a new issue