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 clang = llvm.clang-unwrapped;
11 clang-host = llvm.clang;
12 inherit (llvm) lld;
13 inherit (pkgs)
14 bash
15 bc
16 bison
17 busybox
18 cmake
19 curl
20 esbuild
21 findutils
22 flex
23 gnumake
24 ninja
25 perl
26 python3
27 rsync
28 wabt
29 ;
30 llvm = llvm.libllvm;
31}