ZLS on Nixos Fails to Build

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
  ];
}

The binary zig builds hardcode dynamic linker lookup to /usr/bin/env which fails inside a nix sandbox. Either use nix patched zig or use zig from zig2nix instead that runs the binary distributed zigs inside user namespace to expose /usr/bin/env to the zig process.

When building fully static binaries the dynamic linker error is not fatal however.

I just ran nix run github:Cloudef/zig2nix#master -- build in the zls repo and confirmed that it builds fine.

2 Likes

Thank you. I will look into adapting my personal development shell to use this.