luaPackages.luasnip: fix build

This commit is contained in:
Gaetan Lepage 2024-03-09 18:30:17 +01:00
parent 13fc1a9154
commit 1bb142edc7

View File

@ -377,6 +377,14 @@ in
];
});
luasnip = prev.luasnip.overrideAttrs (_: {
# Until https://github.com/L3MON4D3/LuaSnip/issues/1139 is solved
postConfigure = ''
substituteInPlace ''${rockspecFilename} \
--replace "'jsregexp >= 0.0.5, <= 0.0.6'" "'jsregexp >= 0.0.5'"
'';
});
luaossl = prev.luaossl.overrideAttrs (_: {
externalDeps = [
{ name = "CRYPTO"; dep = openssl; }