nix: handle versions past 2.9 (#4394)

This commit is contained in:
Antonio Gurgel
2022-12-25 02:02:01 -08:00
committed by GitHub
parent 87b4ab4e20
commit 4c5c47b593
2 changed files with 11 additions and 1 deletions

View File

@@ -5,7 +5,7 @@
function! ale_linters#nix#nix#Command(buffer, output, meta) abort
let l:version = a:output[0][22:]
if l:version =~# '^\(2.[4-9]\|3\).*'
if l:version =~# '^\(2.[4-9]\|2.[1-9][0-9]\+\|3\).*'
return 'nix-instantiate --log-format internal-json --parse -'
else
return 'nix-instantiate --parse -'