Skip to content

Commit

Permalink
neovim: fix puc lua build
Browse files Browse the repository at this point in the history
Without this workaround, only the first cmake flag gets picked up, so puc-lua
builds fail.
Revert after NixOS#289037 is fixed.
  • Loading branch information
fgaz committed Feb 15, 2024
1 parent 971fbfd commit df7068b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/applications/editors/neovim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ in {
# check that the above patching actually works
disallowedReferences = [ stdenv.cc ] ++ lib.optional (lua != codegenLua) codegenLua;

cmakeFlags = [
# Workaround for #289037
cmakeFlagsArray = [
# Don't use downloaded dependencies. At the end of the configurePhase one
# can spot that cmake says this option was "not used by the project".
# That's because all dependencies were found and
Expand Down

0 comments on commit df7068b

Please sign in to comment.