Add ltex-ls to latex
This commit is contained in:
parent
27e1fcf99b
commit
c397c143e1
3 changed files with 31 additions and 16 deletions
13
overlay.nix
13
overlay.nix
|
@ -94,6 +94,19 @@ let
|
|||
|
||||
overlay-packages = final: prev: {
|
||||
kak-tree-sitter = final.callPackage ./packages/common/kak-tree-sitter.nix { rustPlatform = final.unstable.rustPlatform; };
|
||||
|
||||
|
||||
kak-lsp =
|
||||
let
|
||||
src = inputs.kak-lsp;
|
||||
cargoArtifacts = final.libs.crane.buildDepsOnly { inherit src; };
|
||||
in
|
||||
final.libs.crane.buildPackage {
|
||||
inherit src cargoArtifacts;
|
||||
buildInputs = (with final;
|
||||
lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security SystemConfiguration CoreServices ])
|
||||
) ++ (with final; [ libiconv ]);
|
||||
};
|
||||
};
|
||||
|
||||
overlay-aarch64-linux = final: prev:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue