20 lines
314 B
Nix
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;
|
|
}
|