Merge pull request #172931 from alerque/sile-devel

sile: Note exta dependencies when built with older Luas
main
Mario Rodas 2 years ago committed by GitHub
commit a3b9a9d240
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      pkgs/tools/typesetting/sile/default.nix

@ -18,7 +18,6 @@ let
luaEnv = lua.withPackages(ps: with ps; [ luaEnv = lua.withPackages(ps: with ps; [
cassowary cassowary
cosmo cosmo
compat53
linenoise linenoise
lpeg lpeg
lua-zlib lua-zlib
@ -33,6 +32,10 @@ let
penlight penlight
stdlib stdlib
vstruct vstruct
] ++ lib.optionals (lib.versionOlder lua.luaversion "5.2") [
bit32
] ++ lib.optionals (lib.versionOlder lua.luaversion "5.3") [
compat53
]); ]);
in in

Loading…
Cancel
Save