librtti/nixSupport/default.nix
Rongsong Shen c8c1749347 Import source to librtti
Summary:

- Import initial source

Test Plan:
NA
2026-01-29 17:23:07 +08:00

20 lines
314 B
Nix

{
pkgs,
...
}:
let
librtti = pkgs.callPackage ./librtti.nix {
inherit pkgs;
withDebug = false;
withAsan = false;
};
librtti_debug = pkgs.callPackage ./librtti.nix {
inherit pkgs;
withDebug = true;
withAsan = true;
};
in
{
librtti = librtti;
librtti_debug = librtti_debug;
}