mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 14:20:44 -06:00
use latest stable for zls/zig
This commit is contained in:
parent
442efbe2a4
commit
bfd738d942
1 changed files with 4 additions and 2 deletions
|
@ -8,8 +8,10 @@
|
||||||
let
|
let
|
||||||
inherit (lib) mkIfIn;
|
inherit (lib) mkIfIn;
|
||||||
cfg = config.oizys.languages;
|
cfg = config.oizys.languages;
|
||||||
zig = inputs.zig2nix.outputs.packages.${pkgs.system}.zig.master.bin;
|
zig = inputs.zig2nix.outputs.packages.${pkgs.system}.zig.default.bin;
|
||||||
zls = inputs.zls.outputs.packages.${pkgs.system}.default;
|
zls = inputs.zls.outputs.packages.${pkgs.system}.default.overrideAttrs {
|
||||||
|
nativeBuildInputs = [zig];
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIfIn "zig" cfg {
|
config = mkIfIn "zig" cfg {
|
||||||
|
|
Loading…
Reference in a new issue