14 lines
390 B
Nix
14 lines
390 B
Nix
args@{ pkgs ? import <nixpkgs> { }, ... }:
|
|
|
|
import ./nix/base.nix ({
|
|
inherit pkgs;
|
|
enableUnitTests = true;
|
|
enableB2bua = true;
|
|
additionalInputs = ps: with ps; [
|
|
nixpkgs-fmt
|
|
ccache
|
|
clang-tools_16 # clangd, clang-format
|
|
llvmPackages_16.libllvm # Adds llvm-symbolizer which adds line numbers to AddressSanitizer traces when compiling with clang
|
|
gdb
|
|
];
|
|
} // args)
|