uwuwind/shell.nix
2025-10-26 20:14:39 +01:00

12 lines
207 B
Nix

{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
buildInputs = with pkgs; [
gcc
clang_21
llvmPackages_21.bintools
];
packages = (with pkgs; [
gef
rust-bindgen
shellcheck
]);
}