libuwuc/shell.nix
2023-10-08 11:25:39 +02:00

19 lines
304 B
Nix

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