This commit is contained in:
nora 2025-05-29 22:57:34 +02:00
parent 850f324c7b
commit 3319d701a3
7 changed files with 803 additions and 0 deletions

5
shell.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
packages = with pkgs; [
llvmPackages_20.clang-unwrapped
];
}