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 bc
15 bison
16 busybox
17 esbuild
18 findutils
19 flex
20 gnumake
21 perl
22 rsync
23 wabt
24 ;
25 llvm = llvm.libllvm;
26}