Merge pull request #36 from swdunlop/patch-1

Make HELIX_RUNTIME depend on pwd, not speed's HOME
This commit is contained in:
Blaž Hrastnik 2021-06-02 09:26:04 +09:00 committed by GitHub
commit cc323f7665
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ pkgs.mkShell {
# https://github.com/rust-lang/rust/issues/55979
LD_LIBRARY_PATH="${stdenv.cc.cc.lib}/lib64:$LD_LIBRARY_PATH";
# HELIX_RUNTIME=./runtime;
HELIX_RUNTIME="/home/speed/src/helix/runtime";
shellHook = ''
export HELIX_RUNTIME=$PWD/runtime
'';
}