Move kak-lsp and kakoune into flake inputs

This commit is contained in:
Natsu Kagami 2022-07-06 16:26:50 -04:00 committed by Natsu Kagami
parent 2a76dc2039
commit d0e5f73def
5 changed files with 48 additions and 41 deletions

View file

@ -1,15 +0,0 @@
final: prev: {
delta =
if (prev.delta.version == "0.10.0") then
# There is a bug where prev.delta on v0.10.0 does NOT have adequate dependencies on Darwin.
(prev.delta.overrideAttrs
(oldAttrs: {
version = "0.10.0-patched";
buildInputs = final.lib.optionals final.stdenv.isDarwin (with final; [
darwin.apple_sdk.frameworks.DiskArbitration
darwin.apple_sdk.frameworks.Foundation
darwin.apple_sdk.frameworks.Security
libiconv
]);
})) else prev.delta;
}