Hello everyone, I do not know if this is the totally correct place to put this, but since ZLS does natively have a flake, I assume at least some people are familiar with this. I am making the switch to NixOS and am making dev shells for all of my programming environment and I have made it to zig now. I was able to make one for the stable version of zig and zls (0.13.0), but not master. I am using the zig-overlay to grab the latest master version of zig and then passing that as a native build input to the zls flake. Everything starts building fine, but in the end the build fails with a ‘warning: Encountered error: FileNotFound, falling back to default ABI and dynamic linker.’ I am not sure why this warning, which seems to be a problem elsewhere as well, would stop the build. Does anyone have any idea where I should go from here? Below is the devShell I made. (NOTE: zig-overlay is the zig-overlay, zls-overlay is the zls flake, and system is the current system type)
{
inputs,
system,
pkgs,
mkShell,
...
}:
# Create zig-master shell
let
zig = inputs.zig-overlay.packages.${system}.master;
zls = inputs.zls-overlay.packages.${system}.zls.overrideAttrs (old: {
nativeBuildInputs = [ zig ];
});
in mkShell {
packages = with pkgs; [
zig
zls
lldb
];
}