···4747 doCheck = false;
48484949 # provide the list of solc versions to the `svm-rs-builds` dependency
5050- SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system};
5050+ SVM_RELEASES_LIST_JSON =
5151+ solc-versions.${stdenv.hostPlatform.system}
5252+ or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
51535254 meta = {
5355 description = "Solidity test generator based on the Branching Tree Technique";
···279279 "--timeout=1024"
280280 ];
281281282282- disabledTestPaths = [
283283- # Require docker access
284284- "tests/system_tests"
282282+ disabledTestPaths =
283283+ [
284284+ # Require docker access
285285+ "tests/system_tests"
285286286286- # broke somewhere between sentry-sdk 2.15.0 and 2.22.0
287287- "tests/unit_tests/test_analytics/test_sentry.py"
287287+ # broke somewhere between sentry-sdk 2.15.0 and 2.22.0
288288+ "tests/unit_tests/test_analytics/test_sentry.py"
288289289289- # Server connection times out under load
290290- "tests/unit_tests/test_wandb_login.py"
290290+ # Server connection times out under load
291291+ "tests/unit_tests/test_wandb_login.py"
291292292292- # PermissionError: unable to write to .cache/wandb/artifacts
293293- "tests/unit_tests/test_artifacts/test_wandb_artifacts.py"
294294- ];
293293+ # PermissionError: unable to write to .cache/wandb/artifacts
294294+ "tests/unit_tests/test_artifacts/test_wandb_artifacts.py"
295295+ ]
296296+ ++ lib.optionals stdenv.hostPlatform.isDarwin [
297297+ # Breaks in sandbox: "Timed out waiting for wandb service to start"
298298+ "tests/unit_tests/test_job_builder.py"
299299+ ];
295300296301 disabledTests =
297302 [
···391396392397 # RuntimeError: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[1]
393398 "test_wandb_image_with_matplotlib_figure"
399399+400400+ # AssertionError: assert 'did you mean https://api.wandb.ai' in '1'
401401+ "test_login_bad_host"
402402+403403+ # Asserttion error: 1 != 0 (testing system exit code)
404404+ "test_login_host_trailing_slash_fix_invalid"
405405+406406+ # Breaks in sandbox: "Timed out waiting for wandb service to start"
407407+ "test_setup_offline"
394408 ];
395409396410 pythonImportsCheck = [ "wandb" ];
+1
pkgs/development/rocm-modules/6/llvm/default.nix
···170170 "aarch64" = "AArch64";
171171 }
172172 .${llvmStdenv.targetPlatform.parsed.cpu.name}
173173+ or (throw "Unsupported CPU architecture: ${llvmStdenv.targetPlatform.parsed.cpu.name}")
173174 }";
174175 # -ffat-lto-objects = emit LTO object files that are compatible with non-LTO-supporting builds too
175176 # FatLTO objects are a special type of fat object file that contain LTO compatible IR in addition to generated object code,
+1
pkgs/top-level/aliases.nix
···532532 deadpixi-sam = deadpixi-sam-unstable;
533533534534 debugedit-unstable = throw "'debugedit-unstable' has been renamed to/replaced by 'debugedit'"; # Converted to throw 2024-10-17
535535+ degit-rs = throw "'degit-rs' has been removed because it is unmaintained upstream and has vulnerable dependencies."; # Added 2025-07-11
535536 deltachat-cursed = arcanechat-tui; # added 2025-02-25
536537 deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2024-10-17
537538
+2
pkgs/top-level/all-packages.nix
···13871387 pkgsCross.gnu32.callPackage ../applications/emulators/box86 args
13881388 else if stdenv.hostPlatform.isAarch64 then
13891389 pkgsCross.armv7l-hf-multiplatform.callPackage ../applications/emulators/box86 args
13901390+ else if stdenv.hostPlatform.isRiscV64 then
13911391+ pkgsCross.riscv32.callPackage ../applications/emulators/box86 args
13901392 else
13911393 throw "Don't know 32-bit platform for cross from: ${stdenv.hostPlatform.stdenv}";
13921394