mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
Use upstream jsonrpc again
This commit is contained in:
parent
8d6fad4cac
commit
d5de9183ef
3 changed files with 13 additions and 12 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, pkgs }:
|
||||
{ lib, stdenv, pkgs }:
|
||||
|
||||
pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
|
@ -12,7 +12,9 @@ pkgs.mkShell {
|
|||
RUSTFLAGS = "-C link-arg=-fuse-ld=lld -C target-cpu=native";
|
||||
RUST_BACKTRACE = "1";
|
||||
# https://github.com/rust-lang/rust/issues/55979
|
||||
LD_LIBRARY_PATH="${stdenv.cc.cc.lib}/lib64:$LD_LIBRARY_PATH";
|
||||
LD_LIBRARY_PATH = lib.makeLibraryPath (with pkgs; [
|
||||
stdenv.cc.cc.lib
|
||||
]);
|
||||
|
||||
shellHook = ''
|
||||
export HELIX_RUNTIME=$PWD/runtime
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue