14 lines
427 B
Nix
14 lines
427 B
Nix
final: prev: {
|
|
# FIXME: https://pr-tracker.nelim.org/?pr=351090
|
|
dmd = prev.dmd.overrideAttrs (o: {
|
|
postPatch = ''
|
|
${o.postPatch}
|
|
|
|
substituteInPlace dmd/compiler/test/fail_compilation/needspkgmod.d \
|
|
--replace-fail 'REQUIRED_ARGS: -Icompilable' 'REQUIRED_ARGS: -Icompilable -L--no-demangle'
|
|
'';
|
|
});
|
|
|
|
# FIXME: https://github.com/debug-js/debug/issues/975
|
|
nodejs_latest = prev.nodejs_22;
|
|
}
|