···47 doCheck = false;
4849 # provide the list of solc versions to the `svm-rs-builds` dependency
50- SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system};
005152 meta = {
53 description = "Solidity test generator based on the Branching Tree Technique";
···47 doCheck = false;
4849 # provide the list of solc versions to the `svm-rs-builds` dependency
50+ SVM_RELEASES_LIST_JSON =
51+ solc-versions.${stdenv.hostPlatform.system}
52+ or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
5354 meta = {
55 description = "Solidity test generator based on the Branching Tree Technique";
···10 fetchurl {
11 name = "librusty_v8-${args.version}";
12 url = "https://github.com/denoland/rusty_v8/releases/download/v${args.version}/librusty_v8_release_${stdenv.hostPlatform.rust.rustcTarget}.a.gz";
13+ sha256 =
14+ args.shas.${stdenv.hostPlatform.system}
15+ or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
16 meta = {
17 inherit (args) version;
18 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
+24-10
pkgs/development/python-modules/wandb/default.nix
···279 "--timeout=1024"
280 ];
281282- disabledTestPaths = [
283- # Require docker access
284- "tests/system_tests"
0285286- # broke somewhere between sentry-sdk 2.15.0 and 2.22.0
287- "tests/unit_tests/test_analytics/test_sentry.py"
288289- # Server connection times out under load
290- "tests/unit_tests/test_wandb_login.py"
291292- # PermissionError: unable to write to .cache/wandb/artifacts
293- "tests/unit_tests/test_artifacts/test_wandb_artifacts.py"
294- ];
0000295296 disabledTests =
297 [
···391392 # RuntimeError: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[1]
393 "test_wandb_image_with_matplotlib_figure"
000000000394 ];
395396 pythonImportsCheck = [ "wandb" ];
···279 "--timeout=1024"
280 ];
281282+ disabledTestPaths =
283+ [
284+ # Require docker access
285+ "tests/system_tests"
286287+ # broke somewhere between sentry-sdk 2.15.0 and 2.22.0
288+ "tests/unit_tests/test_analytics/test_sentry.py"
289290+ # Server connection times out under load
291+ "tests/unit_tests/test_wandb_login.py"
292293+ # PermissionError: unable to write to .cache/wandb/artifacts
294+ "tests/unit_tests/test_artifacts/test_wandb_artifacts.py"
295+ ]
296+ ++ lib.optionals stdenv.hostPlatform.isDarwin [
297+ # Breaks in sandbox: "Timed out waiting for wandb service to start"
298+ "tests/unit_tests/test_job_builder.py"
299+ ];
300301 disabledTests =
302 [
···396397 # RuntimeError: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[1]
398 "test_wandb_image_with_matplotlib_figure"
399+400+ # AssertionError: assert 'did you mean https://api.wandb.ai' in '1'
401+ "test_login_bad_host"
402+403+ # Asserttion error: 1 != 0 (testing system exit code)
404+ "test_login_host_trailing_slash_fix_invalid"
405+406+ # Breaks in sandbox: "Timed out waiting for wandb service to start"
407+ "test_setup_offline"
408 ];
409410 pythonImportsCheck = [ "wandb" ];
+1
pkgs/development/rocm-modules/6/llvm/default.nix
···170 "aarch64" = "AArch64";
171 }
172 .${llvmStdenv.targetPlatform.parsed.cpu.name}
0173 }";
174 # -ffat-lto-objects = emit LTO object files that are compatible with non-LTO-supporting builds too
175 # FatLTO objects are a special type of fat object file that contain LTO compatible IR in addition to generated object code,
···170 "aarch64" = "AArch64";
171 }
172 .${llvmStdenv.targetPlatform.parsed.cpu.name}
173+ or (throw "Unsupported CPU architecture: ${llvmStdenv.targetPlatform.parsed.cpu.name}")
174 }";
175 # -ffat-lto-objects = emit LTO object files that are compatible with non-LTO-supporting builds too
176 # 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
···532 deadpixi-sam = deadpixi-sam-unstable;
533534 debugedit-unstable = throw "'debugedit-unstable' has been renamed to/replaced by 'debugedit'"; # Converted to throw 2024-10-17
0535 deltachat-cursed = arcanechat-tui; # added 2025-02-25
536 deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2024-10-17
537
···532 deadpixi-sam = deadpixi-sam-unstable;
533534 debugedit-unstable = throw "'debugedit-unstable' has been renamed to/replaced by 'debugedit'"; # Converted to throw 2024-10-17
535+ degit-rs = throw "'degit-rs' has been removed because it is unmaintained upstream and has vulnerable dependencies."; # Added 2025-07-11
536 deltachat-cursed = arcanechat-tui; # added 2025-02-25
537 deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2024-10-17
538
+2
pkgs/top-level/all-packages.nix
···1387 pkgsCross.gnu32.callPackage ../applications/emulators/box86 args
1388 else if stdenv.hostPlatform.isAarch64 then
1389 pkgsCross.armv7l-hf-multiplatform.callPackage ../applications/emulators/box86 args
001390 else
1391 throw "Don't know 32-bit platform for cross from: ${stdenv.hostPlatform.stdenv}";
1392
···1387 pkgsCross.gnu32.callPackage ../applications/emulators/box86 args
1388 else if stdenv.hostPlatform.isAarch64 then
1389 pkgsCross.armv7l-hf-multiplatform.callPackage ../applications/emulators/box86 args
1390+ else if stdenv.hostPlatform.isRiscV64 then
1391+ pkgsCross.riscv32.callPackage ../applications/emulators/box86 args
1392 else
1393 throw "Don't know 32-bit platform for cross from: ${stdenv.hostPlatform.stdenv}";
1394