elven-forest/shell.nix
2023-10-15 20:24:23 +02:00

17 lines
287 B
Nix

{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustup
gcc
clang_16
nasm
gnumake
];
shellHook = ''
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
'';
packages = (with pkgs; [
binutils
gef
shellcheck
]);
}