mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -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
|
||||
inherit (lib) mkIfIn;
|
||||
cfg = config.oizys.languages;
|
||||
zig = inputs.zig2nix.outputs.packages.${pkgs.system}.zig.master.bin;
|
||||
zls = inputs.zls.outputs.packages.${pkgs.system}.default;
|
||||
zig = inputs.zig2nix.outputs.packages.${pkgs.system}.zig.default.bin;
|
||||
zls = inputs.zls.outputs.packages.${pkgs.system}.default.overrideAttrs {
|
||||
nativeBuildInputs = [zig];
|
||||
};
|
||||
in
|
||||
{
|
||||
config = mkIfIn "zig" cfg {
|
||||
|
|
Loading…
Reference in a new issue