Add link handling

This commit is contained in:
bluepython508
2025-11-08 14:18:34 +00:00
parent 03353f9796
commit 81c62481c8
4 changed files with 193 additions and 35 deletions

View File

@@ -51,7 +51,7 @@
devShells = eachSystem ({ pkgs, ownPkgs, ... }: {
default = pkgs.mkShell {
inputsFrom = [ownPkgs.default];
packages = [pkgs.rust-analyzer pkgs.clippy pkgs.rustfmt];
packages = [pkgs.rust-analyzer pkgs.clippy pkgs.rustfmt pkgs.gdb];
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
shellHook = ''
# From: https://github.com/NixOS/nixpkgs/blob/1fab95f5190d087e66a3502481e34e15d62090aa/pkgs/applications/networking/browsers/firefox/common.nix#L247-L253