1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

neovim: sort lists alphabetically

This commit is contained in:
Craig Hall 2019-08-01 12:52:11 +01:00 committed by Roman Volosatovs
parent 48af02a402
commit 6bdaca51e8
No known key found for this signature in database
GPG key ID: 2660C5FDCEBE6F87

View file

@ -13,7 +13,7 @@ with stdenv.lib;
let
neovimLuaEnv = lua.withPackages(ps:
(with ps; [ mpack lpeg luabitop ]
(with ps; [ lpeg luabitop mpack ]
++ optionals doCheck [
nvim-client luv coxpcall busted luafilesystem penlight inspect
]
@ -41,14 +41,14 @@ in
enableParallelBuilding = true;
buildInputs = [
gperf
libtermkey
libuv
libvterm-neovim
msgpack
ncurses
libvterm-neovim
unibilium
gperf
neovimLuaEnv
unibilium
] ++ optional withJemalloc jemalloc
++ optional stdenv.isDarwin libiconv
++ optionals doCheck [ glibcLocales procps ]
@ -77,8 +77,8 @@ in
disallowedReferences = [ stdenv.cc ];
cmakeFlags = [
"-DLUA_PRG=${neovimLuaEnv.interpreter}"
"-DGPERF_PRG=${gperf}/bin/gperf"
"-DLUA_PRG=${neovimLuaEnv.interpreter}"
]
++ optional doCheck "-DBUSTED_PRG=${neovimLuaEnv}/bin/busted"
++ optional (!lua.pkgs.isLuaJIT) "-DPREFER_LUA=ON"