From d018b8170764943454fa5d0643f9c342af5fd763 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Mon, 17 Jun 2024 22:34:39 +0200 Subject: [PATCH] fix haxe lsp build on old nix builders --- nix/cgnix/nvim-tools/haxe-language-server.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/cgnix/nvim-tools/haxe-language-server.nix b/nix/cgnix/nvim-tools/haxe-language-server.nix index ac51739..77aca24 100644 --- a/nix/cgnix/nvim-tools/haxe-language-server.nix +++ b/nix/cgnix/nvim-tools/haxe-language-server.nix @@ -193,8 +193,8 @@ pkgs.stdenvNoCC.mkDerivation { configurePhase = '' runHook preConfigure - export HOME=/build - echo '${deps}' > /build/.haxelib + export HOME="$(pwd)" + echo '${deps}' > .haxelib runHook postConfigure '';