diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2025-04-02 14:28:23 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2025-04-02 14:28:23 -0400 |
commit | e78a2a1184697e5956a0ba6b8882ec8364eaa7a7 (patch) | |
tree | d312326eb677f55c4ab7181f355115fbde24a90a /org/dlang-nix-flakes.org | |
parent | overlay updates (dub-1.39.0, dtools-2.110.0) (diff) |
Diffstat (limited to 'org/dlang-nix-flakes.org')
-rw-r--r-- | org/dlang-nix-flakes.org | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/org/dlang-nix-flakes.org b/org/dlang-nix-flakes.org index 8318729..aeb87ea 100644 --- a/org/dlang-nix-flakes.org +++ b/org/dlang-nix-flakes.org @@ -1043,7 +1043,9 @@ stdenv.mkDerivation (finalAttrs: { rm dmd/compiler/test/runnable/gdb4149.d rm dmd/compiler/test/runnable/gdb4181.d rm dmd/compiler/test/compilable/ddocYear.d - rm dmd/compiler/test/fail_compilation/needspkgmod.d + rm dmd/compiler/test/compilable/sarif_success_test.d + rm dmd/compiler/test/fail_compilation/sarif_test.d + rm dmd/compiler/test/fail_compilation/sarifmultiple_test.d # Disable tests that rely on objdump whitespace until fixed upstream: # https://issues.dlang.org/show_bug.cgi?id=23317 @@ -1055,9 +1057,9 @@ stdenv.mkDerivation (finalAttrs: { substituteInPlace dmd/compiler/test/dshell/test6952.d --replace-fail "/usr/bin/env bash" "${bash}/bin/bash" '' + lib.optionalString stdenv.hostPlatform.isLinux '' substituteInPlace phobos/std/socket.d --replace-fail "assert(ih.addrList[0] == 0x7F_00_00_01);" "" - '' + lib.optionalString stdenv.hostPlatform.isDarwin '' - substituteInPlace phobos/std/socket.d --replace-fail "foreach (name; names)" "names = []; foreach (name; names)" - ''; + ''; # + lib.optionalString stdenv.hostPlatform.isDarwin '' + # substituteInPlace phobos/std/socket.d --replace-fail "foreach (name; names)" "names = []; foreach (name; names)" + #''; nativeBuildInputs = [ makeWrapper |