21 lines
289 B
Nix
21 lines
289 B
Nix
{
|
|
self,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (pkgs) system;
|
|
in
|
|
{
|
|
default = pkgs.mkShell {
|
|
inherit (self.checks.${system}.git-hooks) shellHook;
|
|
inputsFrom = [ self.packages.${system}.default ];
|
|
packages = with pkgs; [
|
|
rustup
|
|
gdb
|
|
gdbgui
|
|
|
|
nixd
|
|
];
|
|
};
|
|
}
|