libuwuc/shell.nix
2023-10-04 21:52:07 +02:00

15 lines
264 B
Nix

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