lytlang/nix/shells.nix

22 lines
289 B
Nix
Raw Normal View History

{
self,
pkgs,
...
2025-02-21 07:51:02 -06:00
}:
let
inherit (pkgs) system;
2025-02-21 07:51:02 -06:00
in
{
default = pkgs.mkShell {
inherit (self.checks.${system}.git-hooks) shellHook;
2025-02-21 07:51:02 -06:00
inputsFrom = [ self.packages.${system}.default ];
packages = with pkgs; [
2025-02-21 07:51:02 -06:00
rustup
gdb
gdbgui
nixd
];
};
}