uwuwind/shell.nix
2023-11-08 20:56:14 +01:00

16 lines
293 B
Nix

{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
buildInputs = with pkgs; [
rustup
gcc
clang_16
llvmPackages_16.bintools
];
shellHook = ''
export PATH=$PATH:''${CARGO_HOME:-~/.cargo}/bin
'';
packages = (with pkgs; [
gef
rust-bindgen
shellcheck
]);
}