This commit is contained in:
nora 2023-10-15 20:24:23 +02:00
parent eb4d4b98f8
commit 5ef748c2c5
8 changed files with 265 additions and 196 deletions

17
shell.nix Normal file
View file

@ -0,0 +1,17 @@
{ 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
]);
}