mirror of
https://github.com/Noratrieb/elven-forest.git
synced 2026-01-14 10:45:03 +01:00
17 lines
287 B
Nix
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
|
|
]);
|
|
}
|