mirror of
https://github.com/Noratrieb/uwuwind.git
synced 2026-01-14 08:35:09 +01:00
12 lines
207 B
Nix
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
|
|
]);
|
|
}
|