make it work

This commit is contained in:
nora 2025-03-08 23:24:17 +01:00
parent 29bb73425b
commit ab8e4ebc13
10 changed files with 608 additions and 186 deletions

View file

@ -1,3 +1,8 @@
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
packages = with pkgs; [ llvmPackages_18.clang-unwrapped llvmPackages_18.lld ];
nativeBuildInputs = with pkgs; [ cmake ninja ];
packages = with pkgs; [
llvmPackages_18.clang-unwrapped
llvmPackages_18.lld
llvmPackages_18.bintools-unwrapped
];
}