mirror of
https://github.com/Noratrieb/rustv32i.git
synced 2026-01-14 13:25:01 +01:00
8 lines
230 B
Nix
8 lines
230 B
Nix
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [ cmake ninja ];
|
|
packages = with pkgs; [
|
|
llvmPackages_18.clang-unwrapped
|
|
llvmPackages_18.lld
|
|
llvmPackages_18.bintools-unwrapped
|
|
];
|
|
}
|