Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add command :NixShell #48

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions plugin/nix.vim
Original file line number Diff line number Diff line change
@@ -1 +1,50 @@
function! nix#find_drv_position()
let line = search("description")
if line == 0
let line = search("name")
endif
if line == 0
echo "error: could not find derivation"
return
endif

return expand("%") . ":" . line
endfunction

function! nix#edit(attr)
let output = system("nix-instantiate --eval ./. -A " . a:attr . ".meta.position")
if match(output, "^error:") == -1
let position = split(split(output, '"')[0], ":")
execute "edit " . position[0]
execute position[1]
" Update default command to nix-build.
let b:dispatch = 'nix-build --no-out-link -A ' . a:attr
endif
endfunction

" Takes a list of lines of the form 'key=val'.
function! nix#set_env(lines)
for l in a:lines
let [ key; val ] = split(l, "=", 1)
call setenv(key, join(val, "="))
endfor
endfunction

" See command :NixShell
function! nix#add_pkg_to_env(args)
let l:displaycmd = "nix-shell " . a:args
echo l:displaycmd
let l:env = systemlist("nix-shell --run env " . a:args)
if v:shell_error
echo "Command failed: " . l:displaycmd
return
endif
call nix#set_env(l:env)
echo "Environment updated"
endfunction

command! -bang -nargs=* NixEdit call nix#edit(<q-args>)

" Call 'nix-shell' with the given arguments and update the environment as if
" we were inside the spawned shell.
command! -nargs=* NixShell call nix#add_pkg_to_env(<q-args>)