This repository has no description
1# basic build dependencies from nixpkgs for cross compilation
2
3{ pkgs }:
4
5let
6 llvm = pkgs.llvmPackages_19;
7in
8
9{
10 busybox-host = pkgs.busybox;
11 clang = llvm.clang-unwrapped;
12 clang-host = llvm.clang;
13 inherit (llvm) lld;
14 inherit (pkgs)
15 bash
16 bc
17 bison
18 cmake
19 curl
20 esbuild
21 findutils
22 flex
23 gnumake
24 ninja
25 perl
26 python3
27 rsync
28 typescript
29 wabt
30 ;
31 llvm = llvm.libllvm;
32}