nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge staging-next into staging

authored by

nixpkgs-ci[bot] and committed by
GitHub
0b7ec80e 43f7d330

+455 -444
+6
maintainers/maintainer-list.nix
··· 28704 28704 githubId = 10415894; 28705 28705 name = "Zahrun"; 28706 28706 }; 28707 + zainkergaye = { 28708 + email = "zain@zkergaye.me"; 28709 + github = "zainkergaye"; 28710 + githubId = 62440012; 28711 + name = "Zain Kergaye"; 28712 + }; 28707 28713 zakame = { 28708 28714 email = "zakame@zakame.net"; 28709 28715 github = "zakame";
-2
nixos/modules/installer/tools/tools.nix
··· 341 341 system.build = { 342 342 inherit nixos-generate-config nixos-install; 343 343 nixos-rebuild = if config.system.rebuild.enableNg then nixos-rebuild-ng else nixos-rebuild; 344 - nixos-option = lib.warn "Accessing nixos-option through `config.system.build` is deprecated, use `pkgs.nixos-option` instead." pkgs.nixos-option; 345 - nixos-enter = lib.warn "Accessing nixos-enter through `config.system.build` is deprecated, use `pkgs.nixos-enter` instead." pkgs.nixos-enter; 346 344 }; 347 345 }; 348 346 }
+6 -2
nixos/modules/services/continuous-integration/github-runner/options.nix
··· 26 26 default = { }; 27 27 type = lib.types.attrsOf ( 28 28 lib.types.submodule ( 29 - { name, ... }: 29 + { name, config, ... }: 30 30 { 31 31 options = { 32 32 enable = lib.mkOption { ··· 186 186 default = { }; 187 187 }; 188 188 189 - package = lib.mkPackageOption pkgs "github-runner" { }; 189 + package = lib.mkPackageOption pkgs "github-runner" { } // { 190 + apply = 191 + # Support old github-runner versions which don't have the `nodeRuntimes` arg yet. 192 + pkg: pkg.override (old: lib.optionalAttrs (old ? nodeRuntimes) { inherit (config) nodeRuntimes; }); 193 + }; 190 194 191 195 ephemeral = lib.mkOption { 192 196 type = lib.types.bool;
+2 -6
nixos/modules/services/continuous-integration/github-runner/service.nix
··· 41 41 currentConfigTokenFilename = ".current-token"; 42 42 43 43 workDir = if cfg.workDir == null then runtimeDir else cfg.workDir; 44 - # Support old github-runner versions which don't have the `nodeRuntimes` arg yet. 45 - package = cfg.package.override ( 46 - old: lib.optionalAttrs (lib.hasAttr "nodeRuntimes" old) { inherit (cfg) nodeRuntimes; } 47 - ); 48 44 in 49 45 lib.nameValuePair svcName { 50 46 description = "GitHub Actions runner"; ··· 73 77 74 78 serviceConfig = lib.mkMerge [ 75 79 { 76 - ExecStart = "${package}/bin/Runner.Listener run --startuptype service"; 80 + ExecStart = "${cfg.package}/bin/Runner.Listener run --startuptype service"; 77 81 78 82 # Does the following, sequentially: 79 83 # - If the module configuration or the token has changed, purge the state directory, ··· 192 196 else 193 197 args+=(--token "$token") 194 198 fi 195 - ${package}/bin/Runner.Listener configure "''${args[@]}" 199 + ${cfg.package}/bin/Runner.Listener configure "''${args[@]}" 196 200 # Move the automatically created _diag dir to the logs dir 197 201 mkdir -p "$STATE_DIRECTORY/_diag" 198 202 cp -r "$STATE_DIRECTORY/_diag/." "$LOGS_DIRECTORY/"
+1
nixos/modules/services/display-managers/sddm.nix
··· 257 257 theme = mkOption { 258 258 type = types.str; 259 259 default = ""; 260 + example = lib.literalExpression "\"\${pkgs.where-is-my-sddm-theme.override { variants = [ \"qt5\" ]; }}/share/sddm/themes/where_is_my_sddm_theme_qt5\""; 260 261 description = '' 261 262 Greeter theme to use. 262 263 '';
+4 -4
pkgs/applications/editors/vscode/extensions/default.nix
··· 1123 1123 mktplcRef = { 1124 1124 name = "vscode-database-client2"; 1125 1125 publisher = "cweijan"; 1126 - version = "8.4.0"; 1127 - hash = "sha256-ly54itCpVdirU6GmK2GM7A749wt2SbHR/TidutTwCUE="; 1126 + version = "8.4.2"; 1127 + hash = "sha256-SfvpR1ldrvo/q0nt0cLu55bzNXjwNNdqdSwBORN2Bjw="; 1128 1128 }; 1129 1129 meta = { 1130 1130 description = "Database Client For Visual Studio Code"; ··· 3782 3782 mktplcRef = { 3783 3783 name = "prisma"; 3784 3784 publisher = "Prisma"; 3785 - version = "6.16.2"; 3786 - hash = "sha256-woL6jWlrNb9lsQ6NqXx3YOo/eAinpAuz2bXw6mJw8Dc="; 3785 + version = "6.16.3"; 3786 + hash = "sha256-xJ2SQgXZfVXjn6JCsjBr2SkaCpkGS2Fk1mjcW6WPnS0="; 3787 3787 }; 3788 3788 meta = { 3789 3789 changelog = "https://marketplace.visualstudio.com/items/Prisma.prisma/changelog";
-1
pkgs/applications/networking/browsers/chromium/browser.nix
··· 10 10 name = "chromium-browser"; 11 11 packageName = "chromium"; 12 12 buildTargets = [ 13 - "run_mksnapshot_default" 14 13 "chrome_sandbox" 15 14 "chrome" 16 15 ];
+27 -43
pkgs/applications/networking/browsers/chromium/common.nix
··· 439 439 # Optional patch to use SOURCE_DATE_EPOCH in compute_build_timestamp.py (should be upstreamed): 440 440 ./patches/no-build-timestamps.patch 441 441 ] 442 - ++ lib.optionals (!chromiumVersionAtLeast "136") [ 443 - # Fix build with Pipewire 1.4 444 - # Submitted upstream: https://webrtc-review.googlesource.com/c/src/+/380500 445 - # Got merged, started shipping with M136+. 446 - ./patches/webrtc-pipewire-1.4.patch 447 - ] 448 442 ++ lib.optionals (packageName == "chromium") [ 449 443 # This patch is limited to chromium and ungoogled-chromium because electron-source sets 450 444 # enable_widevine to false. ··· 478 484 # allowing us to use our rustc and our clang. 479 485 ./patches/chromium-129-rust.patch 480 486 ] 481 - ++ lib.optionals (chromiumVersionAtLeast "140") [ 487 + ++ lib.optionals (versionRange "140" "141") [ 482 488 # Rebased variant of the patch above due to 483 489 # https://chromium-review.googlesource.com/c/chromium/src/+/6665907 484 490 ./patches/chromium-140-rust.patch 485 491 ] 486 - ++ lib.optionals (!ungoogled && !chromiumVersionAtLeast "136") [ 487 - # Note: We since use LLVM v19.1+ on unstable *and* release-24.11 for all version and as such 488 - # no longer need this patch. We opt to arbitrarily limit it to versions prior to M136 just 489 - # because that's when this revert stopped applying cleanly and defer fully dropping it for 490 - # the next cleanup to bundle rebuilding all of chromium and electron. 491 - # 492 - # Our rustc.llvmPackages is too old for std::hardware_destructive_interference_size 493 - # and std::hardware_constructive_interference_size. 494 - # So let's revert the change for now and hope that our rustc.llvmPackages and 495 - # nixpkgs-stable catch up sooner than later. 496 - # https://groups.google.com/a/chromium.org/g/cxx/c/cwktrFxxUY4 497 - # https://chromium-review.googlesource.com/c/chromium/src/+/5767325 498 - # Note: We exclude the changes made to the partition_allocator (PA), as the revert 499 - # would otherwise not apply because upstream reverted those changes to PA already 500 - # in https://chromium-review.googlesource.com/c/chromium/src/+/5841144 501 - # Note: ungoogled-chromium already reverts this as part of its patchset. 502 - (githubPatch { 503 - commit = "fc838e8cc887adbe95110045d146b9d5885bf2a9"; 504 - hash = "sha256-NNKzIp6NYdeZaqBLWDW/qNxiDB1VFRz7msjMXuMOrZ8="; 505 - excludes = [ "base/allocator/partition_allocator/src/partition_alloc/*" ]; 506 - revert = true; 507 - }) 492 + ++ lib.optionals (chromiumVersionAtLeast "141") [ 493 + # Rebased variant of the patch above due to 494 + # https://chromium-review.googlesource.com/c/chromium/src/+/6897026 495 + ./patches/chromium-141-rust.patch 508 496 ] 509 497 ++ lib.optionals stdenv.hostPlatform.isAarch64 [ 510 498 # Reverts decommit pooled pages which causes random crashes of tabs on systems ··· 504 528 hash = "sha256-PuinMLhJ2W4KPXI5K0ujw85ENTB1wG7Hv785SZ55xnY="; 505 529 }) 506 530 ] 507 - ++ lib.optionals (chromiumVersionAtLeast "136") [ 531 + ++ [ 508 532 # Modify the nodejs version check added in https://chromium-review.googlesource.com/c/chromium/src/+/6334038 509 533 # to look for the minimal version, not the exact version (major.minor.patch). The linked CL makes a case for 510 534 # preventing compilations of chromium with versions below their intended version, not about running the very ··· 528 552 # Rebased variant of the patch above for 529 553 # electron 35 (M134) and 36 (M136) 530 554 ./patches/chromium-134-rust-1.86-mismatched_lifetime_syntaxes.patch 555 + ] 556 + ++ lib.optionals (chromiumVersionAtLeast "141") [ 557 + (fetchpatch { 558 + # Fix "invalid application of 'sizeof' to an incomplete type 'blink::CSSStyleSheet'" 559 + # by reverting https://chromium-review.googlesource.com/c/chromium/src/+/6892157 560 + name = "chromium-141-Revert-Remove-unnecessary-include-in-tree_scope.h.patch"; 561 + url = "https://chromium.googlesource.com/chromium/src/+/0fc0e71aa1ca0419fae6d14255025543980d2cba^!?format=TEXT"; 562 + decode = "base64 -d"; 563 + revert = true; 564 + hash = "sha256-pnEus2NHpNWZ6ZSXLgdTn+it7oy1MPZPbD8SOAKLWbw="; 565 + }) 531 566 ]; 532 567 533 568 postPatch = ··· 549 562 chmod u+w build/config/gclient_args.gni 550 563 echo 'checkout_mutter = false' >> build/config/gclient_args.gni 551 564 echo 'checkout_glic_e2e_tests = false' >> build/config/gclient_args.gni 552 - '' 553 - + lib.optionalString (!isElectron && chromiumVersionAtLeast "140") '' 554 565 echo 'checkout_clusterfuzz_data = false' >> build/config/gclient_args.gni 555 566 '' 556 567 + lib.optionalString (!isElectron) '' ··· 752 767 # Disable PGO because the profile data requires a newer compiler version (LLVM 14 isn't sufficient): 753 768 chrome_pgo_phase = 0; 754 769 clang_base_path = "${llvmCcAndBintools}"; 755 - 756 - use_qt5 = false; 757 - use_qt6 = false; 758 770 } 759 - // lib.optionalAttrs (chromiumVersionAtLeast "136") { 760 - # LLVM < v21 does not support --warning-suppression-mappings yet: 761 - clang_warning_suppression_file = ""; 771 + // lib.optionalAttrs (chromiumVersionAtLeast "141") { 772 + # TODO: remove opt-out of https://chromium.googlesource.com/chromium/src/+/main/docs/modules.md 773 + use_clang_modules = false; 762 774 } 763 775 // { 776 + use_qt5 = false; 777 + use_qt6 = false; 778 + 779 + # LLVM < v21 does not support --warning-suppression-mappings yet: 780 + clang_warning_suppression_file = ""; 781 + 764 782 # To fix the build as we don't provide libffi_pic.a 765 783 # (ld.lld: error: unable to find library -l:libffi_pic.a): 766 784 use_system_libffi = true; 767 785 # Use nixpkgs Rust compiler instead of the one shipped by Chromium. 768 786 rust_sysroot_absolute = "${buildPackages.rustc}"; 769 787 rust_bindgen_root = "${buildPackages.rust-bindgen}"; 770 - } 771 - // { 772 788 enable_rust = true; 773 789 # While we technically don't need the cache-invalidation rustc_version provides, rustc_version 774 790 # is still used in some scripts (e.g. build/rust/std/find_std_rlibs.py). ··· 827 841 # Mute some warnings that are enabled by default. This is useful because 828 842 # our Clang is always older than Chromium's and the build logs have a size 829 843 # of approx. 25 MB without this option (and this saves e.g. 66 %). 830 - env.NIX_CFLAGS_COMPILE = 831 - "-Wno-unknown-warning-option" 832 - + lib.optionalString (chromiumVersionAtLeast "135") " -Wno-unused-command-line-argument -Wno-shadow"; 844 + env.NIX_CFLAGS_COMPILE = "-Wno-unknown-warning-option -Wno-unused-command-line-argument -Wno-shadow"; 833 845 env.BUILD_CC = "$CC_FOR_BUILD"; 834 846 env.BUILD_CXX = "$CXX_FOR_BUILD"; 835 847 env.BUILD_AR = "$AR_FOR_BUILD";
+142 -132
pkgs/applications/networking/browsers/chromium/info.json
··· 1 1 { 2 2 "chromium": { 3 - "version": "140.0.7339.207", 3 + "version": "141.0.7390.54", 4 4 "chromedriver": { 5 - "version": "140.0.7339.208", 6 - "hash_darwin": "sha256-sdBwwXl63vOkkGHsXG5BFWmXj2pbgA5bk2J5mNwEnGA=", 7 - "hash_darwin_aarch64": "sha256-pL/7kHVv0e4X7bSCcjqQdI/myzgKqU858WPVJ5XZmKw=" 5 + "version": "141.0.7390.55", 6 + "hash_darwin": "sha256-wo68N1aftGGyZR4rYI+96lXKJqPAYro3g4s/OL/CUco=", 7 + "hash_darwin_aarch64": "sha256-5uUklsYRFhpLIAKoPl5EU5dQJcxwXVpJp0lyQ4SkspY=" 8 8 }, 9 9 "deps": { 10 10 "depot_tools": { 11 - "rev": "7d1e2bdb9168718566caba63a170a67cdab2356b", 12 - "hash": "sha256-ZOzKQpo7Z/h1eeWQj20ghDq7pFZ9nch8lt60aoK/g2k=" 11 + "rev": "3f41e54ae17d53d4a39feecad64c3d3e6871b219", 12 + "hash": "sha256-ow0L+KQuUTsz29yfO1qvqPu4XVgdoUe+yexMPi7POoA=" 13 13 }, 14 14 "gn": { 15 - "version": "0-unstable-2025-07-29", 16 - "rev": "3a4f5cea73eca32e9586e8145f97b04cbd4a1aee", 17 - "hash": "sha256-Z7bTto8BHnJzjvmKmcVAZ0/BrXimcAETV6YGKNTorQw=" 15 + "version": "0-unstable-2025-08-29", 16 + "rev": "5d0a4153b0bcc86c5a23310d5b648a587be3c56d", 17 + "hash": "sha256-WERLGrReUATmn3RhxtmyZcJBxdIY/WZqBDranCLDYEg=" 18 18 }, 19 - "npmHash": "sha256-R2gOpfPOUAmnsnUTIvzDPHuHNzL/b2fwlyyfTrywEcI=" 19 + "npmHash": "sha256-i1eQ4YlrWSgY522OlFtGDDPmxE2zd1hDM03AzR8RafE=" 20 20 }, 21 21 "DEPS": { 22 22 "src": { 23 23 "url": "https://chromium.googlesource.com/chromium/src.git", 24 - "rev": "17230b545fd18b35aad49122e5af97a463bc7a9c", 25 - "hash": "sha256-TPO2tCz3pkYAlZW0u5xfyBEUjqZvu7n+2Pr7KD8MfMQ=", 24 + "rev": "b95610d5c4a562d9cd834bc0a098d3316e2f533f", 25 + "hash": "sha256-jraDPodJBdyFFHS30BcQTZOEUD+h9SFHQrO0GoMhtk8=", 26 26 "recompress": true 27 27 }, 28 28 "src/third_party/clang-format/script": { ··· 32 32 }, 33 33 "src/third_party/compiler-rt/src": { 34 34 "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt.git", 35 - "rev": "dc425afb37a69b60c8c02fef815af29e91b61773", 36 - "hash": "sha256-TANkUmIqP+MirWFmegENuJEFK+Ve/o0A0azuxTzeAo8=" 35 + "rev": "d1877a8622be9c5a692dc5ed9ea5a54a78c9360e", 36 + "hash": "sha256-Vtz6Xj4ktP/8q2QDVt2bQnwkz7eDKuPx9KswagxgqmY=" 37 37 }, 38 38 "src/third_party/libc++/src": { 39 39 "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git", 40 - "rev": "adbb4a5210ae2a8a4e27fa6199221156c02a9b1a", 41 - "hash": "sha256-34+xTZqWpm+1aks2b4nPD3WRJTkTxNj6ZjTuMveiQ+M=" 40 + "rev": "9ce37ed6b68eda96a67199e6564ceb958ad4b37e", 41 + "hash": "sha256-2URJyICEyBwIXJRDkJt1B27DXq6nLZTCbW7dD8MBQk0=" 42 42 }, 43 43 "src/third_party/libc++abi/src": { 44 44 "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git", 45 - "rev": "a6c815c69d55ec59d020abde636754d120b402ad", 46 - "hash": "sha256-wO64dyP1O3mCBh/iiRkSzaWMkiDkb7B98Avd4SpnY70=" 45 + "rev": "f7f5a32b3e9582092d8a4511acec036a09ae8524", 46 + "hash": "sha256-8hqb7ZtY3PAC8R9S0KTay79xlD8QBKjy0ZR5oUVr4p0=" 47 47 }, 48 48 "src/third_party/libunwind/src": { 49 49 "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git", 50 - "rev": "84c5262b57147e9934c0a8f2302d989b44ec7093", 51 - "hash": "sha256-GmLreEtoyHMXr6mZgZ7NS1ZaS9leB9eMbISeN7qmfqw=" 50 + "rev": "92fb77dfd4d86aa120730359f5e4d6bb47f1c129", 51 + "hash": "sha256-n7U+CKQ839Oa35JpygygPUhk9JqWIyafJRj0jYSMlwg=" 52 52 }, 53 53 "src/third_party/llvm-libc/src": { 54 54 "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libc.git", 55 - "rev": "6adc0aa946a413c124758a3a0ac12e5a536c7dd3", 56 - "hash": "sha256-C5ZmMzhGdRAd9tpad8hnqM6RoXsunKSuYUoUQdsYclI=" 55 + "rev": "46f8689c0b3999bd4b3a60adef01ceb3d8c0071f", 56 + "hash": "sha256-qItKSIS5p4iIN+iSXgXYbFXq1CFFgwQV5NCQxunl0Zg=" 57 57 }, 58 58 "src/chrome/test/data/perf/canvas_bench": { 59 59 "url": "https://chromium.googlesource.com/chromium/canvas_bench.git", ··· 72 72 }, 73 73 "src/docs/website": { 74 74 "url": "https://chromium.googlesource.com/website.git", 75 - "rev": "a89f6810f6a5b0e11e4ec00387e9f97e8f6c23ae", 76 - "hash": "sha256-LH4TlXPBULUamqTDitDEXiB37705BzEAqX1Lan87eoM=" 75 + "rev": "c6edf98e7fab2385c90caac6211f00b62e9b773d", 76 + "hash": "sha256-i08iEbbV+RAvSQKxWutCSjpZkfcbTQdRUZkgtPZfLck=" 77 77 }, 78 78 "src/media/cdm/api": { 79 79 "url": "https://chromium.googlesource.com/chromium/cdm.git", ··· 82 82 }, 83 83 "src/net/third_party/quiche/src": { 84 84 "url": "https://quiche.googlesource.com/quiche.git", 85 - "rev": "42832178b3b6ae20f0d1c9634c040c528614f45f", 86 - "hash": "sha256-ImjvS826eyo82TIDw6M/7h3lrwbCwxQ+oKJr8RaqDTc=" 85 + "rev": "62826931e84c49c94192065c896931576d8273c8", 86 + "hash": "sha256-YZFFKQKFyJUvrfG1bm84Hl3AGOkSgpqefwY5mHh1O0A=" 87 87 }, 88 88 "src/testing/libfuzzer/fuzzers/wasm_corpus": { 89 89 "url": "https://chromium.googlesource.com/v8/fuzzer_wasm_corpus.git", ··· 92 92 }, 93 93 "src/third_party/angle": { 94 94 "url": "https://chromium.googlesource.com/angle/angle.git", 95 - "rev": "a8c8a6febe630c6239a5e207530e9fac651ae373", 96 - "hash": "sha256-GxWTdzSf7/9WIqrECdAEkibXve/ZpKpxJcNS+KnfNc0=" 95 + "rev": "bb55ea10fcef3759e4db7ef8a473a9ceac2c6aa6", 96 + "hash": "sha256-NIy3fOwfheHeGo0MX8tmZbaGMBwqM5+k7cCypeoS6GI=" 97 97 }, 98 98 "src/third_party/angle/third_party/glmark2/src": { 99 99 "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2", ··· 107 107 }, 108 108 "src/third_party/angle/third_party/VK-GL-CTS/src": { 109 109 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS", 110 - "rev": "ad59a18f2ce08e60c9f4ab0aaf9b62679ab8c626", 111 - "hash": "sha256-42ShMIXq9CnOlmwXcUvupPpQSNggdlXEkR3mdthsGzg=" 110 + "rev": "15469c3d00394c8c365d1b1951fcf6255c589afb", 111 + "hash": "sha256-Bd/Q181NBMJkLwkEmttNvjNBQqtRRT7p+nbevqvt2HI=" 112 112 }, 113 113 "src/third_party/anonymous_tokens/src": { 114 114 "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git", ··· 117 117 }, 118 118 "src/third_party/readability/src": { 119 119 "url": "https://chromium.googlesource.com/external/github.com/mozilla/readability.git", 120 - "rev": "04fd32f72b448c12b02ba6c40928b67e510bac49", 121 - "hash": "sha256-yUf4UTwcJ7H0tuN+e6c92F4UUSXjmTNOIKqNZA4+zAo=" 120 + "rev": "1f0ec42686c89a4a1c71789849f7ffde349ab197", 121 + "hash": "sha256-liNoIZreSx/RgL5/oSKyzOuqChAgDwTtViNq0KiY0R0=" 122 122 }, 123 123 "src/third_party/content_analysis_sdk/src": { 124 124 "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git", ··· 127 127 }, 128 128 "src/third_party/dav1d/libdav1d": { 129 129 "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git", 130 - "rev": "716164239ad6e6b11c5dcdaa3fb540309d499833", 131 - "hash": "sha256-2J4M6EkfVtPLUpRWwzXdLkvJio4gskC0ihZnM5H3qYc=" 130 + "rev": "af5cf2b1e7f03d6f6de84477e1ca8eed1f3eb03d", 131 + "hash": "sha256-dPVDZ4SyrHWsRWERUl6UKbbdUG/5dC/UTte6sItMYxg=" 132 132 }, 133 133 "src/third_party/dawn": { 134 134 "url": "https://dawn.googlesource.com/dawn.git", 135 - "rev": "67be7fddacc4f4bcb21d0cf7bf8bb18752d8fb08", 136 - "hash": "sha256-ulw+gDGpUn8uWuNedlfQADwnSYYbPWpHN5Q+pJbwKGc=" 135 + "rev": "9caf49389e5e0564d18e0504c6cfa45c88b4e4fd", 136 + "hash": "sha256-d6WHeELxGtZ7nZzHIm18QaHY+2sc8KSRJgdH+vTuWN8=" 137 137 }, 138 138 "src/third_party/dawn/third_party/glfw": { 139 139 "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw", ··· 142 142 }, 143 143 "src/third_party/dawn/third_party/dxc": { 144 144 "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler", 145 - "rev": "50764bac3d4048144e9ada5f5a742c82cc97cc9a", 146 - "hash": "sha256-rs5cw/kpRq0Bcr2ov5kKsupwqkIQDvuvUMbZbAdOmGI=" 145 + "rev": "4e0f5364a3692f4122de0874ebb0f5550a27c867", 146 + "hash": "sha256-ocnWUgw3rBYTsKS7j+Zq6hTGhhB4VRgifASMqBO66Os=" 147 147 }, 148 148 "src/third_party/dawn/third_party/dxheaders": { 149 149 "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers", ··· 162 162 }, 163 163 "src/third_party/dawn/third_party/webgpu-cts": { 164 164 "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts", 165 - "rev": "5b477670f53e5fefcf4bd829a2952013ef9d1953", 166 - "hash": "sha256-os0yeQb6snDvUjYghrIYAy9nUi1j8Y2YoTfsiQ7SlpA=" 165 + "rev": "0558b1933531e6379ac5875129b92aac9d1ce035", 166 + "hash": "sha256-247bXbblup/bg+iWeIwlUxLinvvQK5hX+Jm0jKiaEbM=" 167 167 }, 168 168 "src/third_party/dawn/third_party/webgpu-headers/src": { 169 169 "url": "https://chromium.googlesource.com/external/github.com/webgpu-native/webgpu-headers", ··· 182 182 }, 183 183 "src/third_party/boringssl/src": { 184 184 "url": "https://boringssl.googlesource.com/boringssl.git", 185 - "rev": "0a0009998fa180695f3e2071805dc03c9a5f3124", 186 - "hash": "sha256-hYUbfUo00gHqYKac0vOpmBHtb5/FBsgXL+UQtrHxGaM=" 185 + "rev": "40e035a9e5d721b3b7c15c46259d782ffe7d9e96", 186 + "hash": "sha256-m2WNsjSwlg57ACftIDCcIWJ/jwbD7FU43lhGcpGDhCw=" 187 187 }, 188 188 "src/third_party/breakpad/breakpad": { 189 189 "url": "https://chromium.googlesource.com/breakpad/breakpad.git", 190 - "rev": "ff252ff6faf5e3a52dc4955aab0d84831697dc94", 191 - "hash": "sha256-8OfbSe+ly/5FFYk8NubAV39ACMr5S4wbLBVdiQHWeok=" 190 + "rev": "44ba5b579bf2f5c8548ad5016664fef8458c43b4", 191 + "hash": "sha256-b8+7NGE9SelVFFuDOVr/k/nrk3jr/r8zwuW7vpm4c74=" 192 192 }, 193 193 "src/third_party/cast_core/public/src": { 194 194 "url": "https://chromium.googlesource.com/cast_core/public", ··· 197 197 }, 198 198 "src/third_party/catapult": { 199 199 "url": "https://chromium.googlesource.com/catapult.git", 200 - "rev": "0fd1415f0cf3219ba097d37336141897fab7c5e9", 201 - "hash": "sha256-khxdFV6fxbTazz195MlxktLlihXytpNYCykLrI8nftM=" 200 + "rev": "3c5077921dbacc75db5768cf4fc0b1d9ca05d2e0", 201 + "hash": "sha256-w/tFeyek51/izvLSMkGP3RCW2j6KJdIa3l1PzxKjnaM=" 202 202 }, 203 203 "src/third_party/ced/src": { 204 204 "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git", ··· 222 222 }, 223 223 "src/third_party/cpuinfo/src": { 224 224 "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git", 225 - "rev": "33ed0be77d7767d0e2010e2c3cf972ef36c7c307", 226 - "hash": "sha256-0rZzbZkOo6DAt1YnH4rtx0FvmCuYH8M6X3DNJ0gURpU=" 225 + "rev": "e414c0446436ed34151de3158d18f8ae32e55d03", 226 + "hash": "sha256-748MwxVi7oONccrirjUWgtDNBWWijrXSXlZdHoowYz0=" 227 227 }, 228 228 "src/third_party/crc32c/src": { 229 229 "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git", ··· 232 232 }, 233 233 "src/third_party/cros_system_api": { 234 234 "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git", 235 - "rev": "07b9fafa3fff468afa2960789d2b28444c38db3e", 236 - "hash": "sha256-JpimNp8PmsROMiQLy8H39n8l+KDwaivZiIOgSjLF3U4=" 235 + "rev": "ed91ea4a3cd063cbace42360d769983fb08163b4", 236 + "hash": "sha256-vauYEQW9iTs8VZwyKAYeahLl9LTzkOR0krzcBR4VYus=" 237 237 }, 238 238 "src/third_party/crossbench": { 239 239 "url": "https://chromium.googlesource.com/crossbench.git", 240 - "rev": "69b7e2bb8e1d8d92d4efbb92bcddba3af2716577", 241 - "hash": "sha256-1cyXu5fSHWLWt3qdafWQu1WyeZ+fT/be7seiv/MDPdQ=" 240 + "rev": "b560604e8f2261a2c685c28359b69af74b92a196", 241 + "hash": "sha256-vgWATYq/7UXnFhfdJZ0JXvGpr4eI08sSU115MWpD1js=" 242 242 }, 243 243 "src/third_party/crossbench-web-tests": { 244 244 "url": "https://chromium.googlesource.com/chromium/web-tests.git", ··· 247 247 }, 248 248 "src/third_party/depot_tools": { 249 249 "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git", 250 - "rev": "7d1e2bdb9168718566caba63a170a67cdab2356b", 251 - "hash": "sha256-ZOzKQpo7Z/h1eeWQj20ghDq7pFZ9nch8lt60aoK/g2k=" 250 + "rev": "3f41e54ae17d53d4a39feecad64c3d3e6871b219", 251 + "hash": "sha256-ow0L+KQuUTsz29yfO1qvqPu4XVgdoUe+yexMPi7POoA=" 252 252 }, 253 253 "src/third_party/devtools-frontend/src": { 254 254 "url": "https://chromium.googlesource.com/devtools/devtools-frontend", 255 - "rev": "725edaaf06b966e670194d0376d50be0c25deb13", 256 - "hash": "sha256-7YwrN+MizCnfcwDHWsYkZaTbN2qmCHcixX6KHhCPrXs=" 255 + "rev": "65f160d43dc97a2e8eb5e1c2814179a519313884", 256 + "hash": "sha256-VLMJ/WWCIzk92mmuBdx+P6Gi0ouiXuMGkiR0KVK5GWI=" 257 257 }, 258 258 "src/third_party/dom_distiller_js/dist": { 259 259 "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git", ··· 280 280 "rev": "cb1d42aaa1e14b09e1452cfdef373d051b8c02a4", 281 281 "hash": "sha256-CG5je117WYyemTe5PTqznDP0bvY5TeXn8Vu1Xh5yUzQ=" 282 282 }, 283 + "src/third_party/federated_compute/src": { 284 + "url": "https://chromium.googlesource.com/external/github.com/google-parfait/federated-compute.git", 285 + "rev": "cf49f95f941eb872f596522890055878240c3a22", 286 + "hash": "sha256-R8KE0Whpb4qsZ6HxWG4/uFSsrT2nnpwNV2nQcNYHEXg=" 287 + }, 283 288 "src/third_party/ffmpeg": { 284 289 "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git", 285 - "rev": "d2d06b12c22d27af58114e779270521074ff1f85", 286 - "hash": "sha256-c5w8CuyE1J0g79lrNq1stdqc1JaAkMbtscdcywmAEMY=" 290 + "rev": "9e751092c9498b84bbb77e2e0689ef9f50fe608f", 291 + "hash": "sha256-ZeFzrCE9LkDcp3VTMJkm5ypX29RGZCyZkp3tEr7yFKU=" 287 292 }, 288 293 "src/third_party/flac": { 289 294 "url": "https://chromium.googlesource.com/chromium/deps/flac.git", 290 - "rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c", 291 - "hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=" 295 + "rev": "807e251d9f8c5dd6059e547931e9c6a4251967af", 296 + "hash": "sha256-Y5TXyJ8lVh8TaVC5S4BVxOmFxySBzPbJYEe8YJS6ZR4=" 292 297 }, 293 298 "src/third_party/flatbuffers/src": { 294 299 "url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git", ··· 307 302 }, 308 303 "src/third_party/fp16/src": { 309 304 "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git", 310 - "rev": "0a92994d729ff76a58f692d3028ca1b64b145d91", 311 - "hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=" 305 + "rev": "b3720617faf1a4581ed7e6787cc51722ec7751f0", 306 + "hash": "sha256-nDJH3Jmztrglr9hnwegfS7NNLAXklnwdeH9iWWwwZt4=" 312 307 }, 313 308 "src/third_party/gemmlowp/src": { 314 309 "url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git", ··· 317 312 }, 318 313 "src/third_party/freetype/src": { 319 314 "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git", 320 - "rev": "27c1cb10a52420515ce66729dfca897be21691b8", 321 - "hash": "sha256-2ialoA/hqlTwnbBkBlgz5CT2nzpUVXVMtEOxSxifiXQ=" 315 + "rev": "61a423426089e65c27699d824303f209026b2f05", 316 + "hash": "sha256-XaSl1YJk5TUR72PDbKwnn5IGT46VR7ip1wVxUMEkvu8=" 322 317 }, 323 318 "src/third_party/fxdiv/src": { 324 319 "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git", ··· 327 322 }, 328 323 "src/third_party/harfbuzz-ng/src": { 329 324 "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git", 330 - "rev": "9f83bbbe64654b45ba5bb06927ff36c2e7588495", 331 - "hash": "sha256-lNnCtgIegUy4DLhYaGZXcEaFw83KWAHoKpz69AEsWp4=" 325 + "rev": "7d936359a27abb2d7cb14ecc102463bb15c11843", 326 + "hash": "sha256-gUUXBd2/di6MYhUzo0QkGQvRY6KLcy7qdDlSClnmnL8=" 332 327 }, 333 328 "src/third_party/ink/src": { 334 329 "url": "https://chromium.googlesource.com/external/github.com/google/ink.git", ··· 350 345 "rev": "955936be8b391e00835257059607d7c5b72ce744", 351 346 "hash": "sha256-KdQdKBBipEBRT8UmNGao6yCB4m2CU8/SrMVvcXlb5qE=" 352 347 }, 348 + "src/third_party/oak/src": { 349 + "url": "https://chromium.googlesource.com/external/github.com/project-oak/oak.git", 350 + "rev": "bd9e19ed20525444be0882bd5848ec475ac8c040", 351 + "hash": "sha256-F/qSxLpbPPOBjY4/Gowq6HUINb1hH+ll9T+mDMGeJ7c=" 352 + }, 353 353 "src/third_party/ots/src": { 354 354 "url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git", 355 355 "rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33", ··· 367 357 }, 368 358 "src/third_party/googletest/src": { 369 359 "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git", 370 - "rev": "373af2e3df71599b87a40ce0e37164523849166b", 371 - "hash": "sha256-07pEo2gj3n/IOipqz7UpZkBOywZt7FkfZFCnVyp3xYw=" 360 + "rev": "244cec869d12e53378fa0efb610cd4c32a454ec8", 361 + "hash": "sha256-A3kDQbt9ITaxCjl/tJtwySsPUyH+NNb8erdjBzq81o8=" 372 362 }, 373 363 "src/third_party/hunspell_dictionaries": { 374 364 "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git", ··· 397 387 }, 398 388 "src/third_party/fuzztest/src": { 399 389 "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git", 400 - "rev": "7bab06ff5fbbf8b8cce05a8661369dc2e11cde66", 401 - "hash": "sha256-uWPhInzuidI4smFRjRF95aaVNTsehKd/1y4uRzr12mk=" 390 + "rev": "169baf17795850fd4b2c29e4d52136aa8d955b61", 391 + "hash": "sha256-jcpUwHKWV4aWJSOZ4AlFk5YXZoTuXrrSE4jmwrrvoKI=" 402 392 }, 403 393 "src/third_party/domato/src": { 404 394 "url": "https://chromium.googlesource.com/external/github.com/googleprojectzero/domato.git", ··· 412 402 }, 413 403 "src/third_party/libaom/source/libaom": { 414 404 "url": "https://aomedia.googlesource.com/aom.git", 415 - "rev": "e91b7aa26d6d0979bba2bee5e1c27a7a695e0226", 416 - "hash": "sha256-cER77Q9cM5rh+oeh1LDyKDZyQK5VbtE/ANNTN2cYzMo=" 405 + "rev": "4703185b29b381e5651eb1caed66630f623bf752", 406 + "hash": "sha256-f3IPUpLB0jYrBwwJCBzatJgzayGtUxV6NsCLU2TiIqs=" 417 407 }, 418 408 "src/third_party/crabbyavif/src": { 419 409 "url": "https://chromium.googlesource.com/external/github.com/webmproject/CrabbyAvif.git", 420 - "rev": "644c9d84c123ac811a611760a9adc807e3eb5be5", 421 - "hash": "sha256-snogXm3EMmDJoL2ikoaxeODYfmTaVEsAb5cMcRU7uC4=" 410 + "rev": "4c70b98d1ebc8a210f2919be7ccabbcf23061cb5", 411 + "hash": "sha256-PHtOD9HWxgwlfmcoDDHYyjhHpV/LclCVIk+ci9eUaIc=" 422 412 }, 423 413 "src/third_party/nearby/src": { 424 414 "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git", 425 - "rev": "a8889d12a27ef7006d1a47dfefc272e0815f5c41", 426 - "hash": "sha256-pFcusmbij3OsSAmaKhuI8/bo3AlfP7DuTo/W/6mAZs8=" 415 + "rev": "5f27145da57a32eb8db215c40fe867a20beea987", 416 + "hash": "sha256-ZbrbLnL/5LYu8cW06KnjNaUjMSlJCrzl0ywthOjNeX0=" 427 417 }, 428 418 "src/third_party/securemessage/src": { 429 419 "url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git", ··· 432 422 }, 433 423 "src/third_party/jetstream/main": { 434 424 "url": "https://chromium.googlesource.com/external/github.com/WebKit/JetStream.git", 435 - "rev": "fe1f348226d4b7c3447e606577960a606cc058e4", 436 - "hash": "sha256-kznek87yenGR9Ft3D06LGDOy7+VPRhSUFru340mvES4=" 425 + "rev": "f8e3d7e50ed5c7ac071a9d90d3ee36cb68a8678c", 426 + "hash": "sha256-7JF4A2ayMOAFOP3DH2Z2iBx9MHvMN9hogCY5unJZDbQ=" 437 427 }, 438 428 "src/third_party/jetstream/v2.2": { 439 429 "url": "https://chromium.googlesource.com/external/github.com/WebKit/JetStream.git", ··· 442 432 }, 443 433 "src/third_party/speedometer/main": { 444 434 "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git", 445 - "rev": "87f9ed88c8f8abe3a3bb19b9ec5ea49623d803ad", 446 - "hash": "sha256-eIrkM7UxuaZox3A8pqEgvgpQCkcBO3zJWFwK45fgWm0=" 435 + "rev": "06449bdc34789a7459393405dd777e02d78a3743", 436 + "hash": "sha256-3TlVewJ9C3MXvlIudzLHshQZOCAmUkMYsZzAazSbMLY=" 447 437 }, 448 438 "src/third_party/speedometer/v3.1": { 449 439 "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git", ··· 527 517 }, 528 518 "src/third_party/libvpx/source/libvpx": { 529 519 "url": "https://chromium.googlesource.com/webm/libvpx.git", 530 - "rev": "a985e5e847a2fe69bef3e547cf25088132194e39", 531 - "hash": "sha256-BbXiBbnGwdsbZCZIpurfTzYvDUCysdt+ocRh6xvuUI8=" 520 + "rev": "b122dc0932009e78f928386c5081bb69d3c2de5c", 521 + "hash": "sha256-y5yD3YwsQjWZn60VPUH4H2D1AwkBoGGmTNpyxGneciY=" 532 522 }, 533 523 "src/third_party/libwebm/source": { 534 524 "url": "https://chromium.googlesource.com/webm/libwebm.git", ··· 537 527 }, 538 528 "src/third_party/libwebp/src": { 539 529 "url": "https://chromium.googlesource.com/webm/libwebp.git", 540 - "rev": "4fa21912338357f89e4fd51cf2368325b59e9bd9", 541 - "hash": "sha256-eaGWMpF6ENrKxGxqXccQ0P1G0X+nQI0EoL0Y0R2VVZ0=" 530 + "rev": "b0e8039062eedbcb20ebb1bad62bfeaee2b94ec6", 531 + "hash": "sha256-yKVLUxzIK5ybYM/22fVaQlqSCG5Hx4Notxj+3kI2LCg=" 542 532 }, 543 533 "src/third_party/libyuv": { 544 534 "url": "https://chromium.googlesource.com/libyuv/libyuv.git", 545 - "rev": "cdd3bae84818e78466fec1ce954eead8f403d10c", 546 - "hash": "sha256-ievGlutmOuuEEhWS82vMqxwqXCq8PF3508N0MCMPQus=" 535 + "rev": "36edc5fa8b2da5aa00b8c2c68b25ffd64219d0ba", 536 + "hash": "sha256-RTgcspt8hOHN79ZD5jjwuX7XFrFkuAJemIXmjoBKVMk=" 547 537 }, 548 538 "src/third_party/lss": { 549 539 "url": "https://chromium.googlesource.com/linux-syscall-support.git", ··· 577 567 }, 578 568 "src/third_party/openscreen/src": { 579 569 "url": "https://chromium.googlesource.com/openscreen", 580 - "rev": "f51be2dd676c855bc588a439f002bc941b87db6b", 581 - "hash": "sha256-7AmfZjugPKty0lpinOR/Q22M7F34p57tl+gs6s2BJhY=" 570 + "rev": "9756d3a568a78213678eeb52e044b9658e195e15", 571 + "hash": "sha256-LK1b2O4pgLyGBViXLid2w6+DxtstK44msyOJUNFn1ek=" 582 572 }, 583 573 "src/third_party/openscreen/src/buildtools": { 584 574 "url": "https://chromium.googlesource.com/chromium/src/buildtools", ··· 592 582 }, 593 583 "src/third_party/pdfium": { 594 584 "url": "https://pdfium.googlesource.com/pdfium.git", 595 - "rev": "1afaa1a380fcd06cec420f3e5b6ec1d2ccb920dc", 596 - "hash": "sha256-kx2jF4kHeGECdf6WzcRKTmwhvmoKl+rIVQ2Ep8Y9rs8=" 585 + "rev": "0a74b90b9a53b2033de1a53ed8401730f906a453", 586 + "hash": "sha256-eTq4d9nE9J6ZbX2b7QK5gVacApSv6EQXUmvy1P641Eo=" 597 587 }, 598 588 "src/third_party/perfetto": { 599 589 "url": "https://chromium.googlesource.com/external/github.com/google/perfetto.git", 600 - "rev": "4ab725613a8ee64e9acd7930eceb8995e24df562", 601 - "hash": "sha256-V16Fm389yRNn0b13n70828c8xTdwxoQ6GW8iKLyy0qE=" 590 + "rev": "43afaf571d990c0f3275c6800cf3ed42138bdc26", 591 + "hash": "sha256-I5MrV4zYZjH0iSnc1aZ95xAg6e3OxQXX/rQoD8/OQIk=" 602 592 }, 603 593 "src/third_party/protobuf-javascript/src": { 604 594 "url": "https://chromium.googlesource.com/external/github.com/protocolbuffers/protobuf-javascript", 605 - "rev": "28bf5df73ef2f345a936d9cc95d64ba8ed426a53", 606 - "hash": "sha256-c/aC+LZQtedL5oouUXw2eTF6xD7LN3J3C0q3D0wl+W0=" 595 + "rev": "e6d763860001ba1a76a63adcff5efb12b1c96024", 596 + "hash": "sha256-1o6N9+1wsQSu1B4w5LlGlwzIUmuPCIYHPqwOyt234ZM=" 607 597 }, 608 598 "src/third_party/pthreadpool/src": { 609 599 "url": "https://chromium.googlesource.com/external/github.com/google/pthreadpool.git", ··· 627 617 }, 628 618 "src/third_party/re2/src": { 629 619 "url": "https://chromium.googlesource.com/external/github.com/google/re2.git", 630 - "rev": "8451125897dd7816a5c118925e8e42309d598ecc", 631 - "hash": "sha256-vjh4HI4JKCMAf5SZeqstb0M01w8ssaTwwrLAUsrFkkQ=" 620 + "rev": "6569a9a3df256f4c0c3813cb8ee2f8eef6e2c1fb", 621 + "hash": "sha256-e18aSNVEE42LNzCDMay/Fa3BNg36pBPeEtfNvWqlnWE=" 632 622 }, 633 623 "src/third_party/ruy/src": { 634 624 "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git", ··· 637 627 }, 638 628 "src/third_party/search_engines_data/resources": { 639 629 "url": "https://chromium.googlesource.com/external/search_engines_data.git", 640 - "rev": "5c5db51f8c13cb42379d8b333890971f1a1a1797", 641 - "hash": "sha256-Z4ykCZkUVatvkH3ytIdGOp0zEYLKIqr8fta0MnovZKw=" 630 + "rev": "629f034fd4473fca4ee8886ed886943672fc72fa", 631 + "hash": "sha256-iWtSJ8AL2rbjltg+FHO/w4mL1XHsemCc39lEFWKAVGA=" 642 632 }, 643 633 "src/third_party/skia": { 644 634 "url": "https://skia.googlesource.com/skia.git", 645 - "rev": "f3ff281f2330f2948888a9cc0ba921bbdc107da8", 646 - "hash": "sha256-88ezOArtEdPJZACmgyjJ2Jf5biSlyoDYMJBZ7wwPt7Q=" 635 + "rev": "5eefbe51d17d2e379fa2d7353827e0ccb1e1f601", 636 + "hash": "sha256-hjihCH6CykIfNcQ8TWCD8+buN0ZBYDwQr4I2Z2hUmxM=" 647 637 }, 648 638 "src/third_party/smhasher/src": { 649 639 "url": "https://chromium.googlesource.com/external/smhasher.git", ··· 657 647 }, 658 648 "src/third_party/sqlite/src": { 659 649 "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git", 660 - "rev": "cc08c79629643fdd5b592f1391e738815f5577b6", 661 - "hash": "sha256-1Q2+NyCJb0GIMC30YNbVqVYHnP62tmKqBRfr9Xw5Z4A=" 650 + "rev": "7d348fc79216a09b864ff881d8561a6222301666", 651 + "hash": "sha256-13HMEpzzcFx/UKqt4V68619R+0j4B/GOl6NYlhpBk0c=" 662 652 }, 663 653 "src/third_party/swiftshader": { 664 654 "url": "https://swiftshader.googlesource.com/SwiftShader.git", 665 - "rev": "fdb6700ecb04103b658d2e4623d6bc663ba80ea8", 666 - "hash": "sha256-jJT0hF1k5a6na+9aH1yHuUo6go/PzgKibP/k60m6+xM=" 655 + "rev": "7cd1022cdc50fa3ac4f0ca5d0cdd64ce20af3c4f", 656 + "hash": "sha256-YNQYUe3xgnPny6tYmlYOjC6/jszy896y+/u5aXjthvU=" 667 657 }, 668 658 "src/third_party/text-fragments-polyfill/src": { 669 659 "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git", ··· 677 667 }, 678 668 "src/third_party/vulkan-deps": { 679 669 "url": "https://chromium.googlesource.com/vulkan-deps", 680 - "rev": "c466059b72815c7fbce8bb3ab4832407aabc5dc5", 681 - "hash": "sha256-MEMOJBBMBeA0kBlU5ZhkPbfRpn1PSL1950IsU1rWaJ8=" 670 + "rev": "a493d027dfa1ebf220dea834757f5114494f0f92", 671 + "hash": "sha256-n52ZDzn4/SxcdUzCENBpUfjJk3+0IQSe+qj9FVgFn2w=" 682 672 }, 683 673 "src/third_party/glslang/src": { 684 674 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang", 685 - "rev": "38f6708b6b6f213010c51ffa8f577a7751e12ce7", 686 - "hash": "sha256-HeH7j7IsjeP2vFPhX9cKzZ2O54eIGSCoSnPT4pumA00=" 675 + "rev": "3289b1d61b69a6c66c4b7cd2c6d3ab2a6df031e5", 676 + "hash": "sha256-9xGshr6ts0TdER7Sy86XpKrUItukeM59ozCIwkFy26A=" 687 677 }, 688 678 "src/third_party/spirv-cross/src": { 689 679 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross", ··· 692 682 }, 693 683 "src/third_party/spirv-headers/src": { 694 684 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers", 695 - "rev": "97e96f9e9defeb4bba3cfbd034dec516671dd7a3", 696 - "hash": "sha256-/OT6//yu8VmQMXs3DSgwEx2lMDTPlUuXJDjboNdLjrI=" 685 + "rev": "3397e1e4fe0a9964e1837c2934b81835093494b8", 686 + "hash": "sha256-Yp+HE/XIPJD/Baj9Nvs3H7J5Bx816qkYFpL6zARyY/8=" 697 687 }, 698 688 "src/third_party/spirv-tools/src": { 699 689 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools", 700 - "rev": "3aeaaa088d37b86cff036eee1a9bf452abad7d9d", 701 - "hash": "sha256-bkoD3/4o/CjNBAp49vnRq4ZtY7TNgYkVPI5gESM8CUI=" 690 + "rev": "392b4893c4955125c1873c33a97f2a8ee8363bd3", 691 + "hash": "sha256-HMzQps2F9TAnHHPvBeqowADHPlTvfRWUekE37AKMcaw=" 702 692 }, 703 693 "src/third_party/vulkan-headers/src": { 704 694 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers", 705 - "rev": "a01329f307fa6067da824de9f587f292d761680b", 706 - "hash": "sha256-LCRK6UzqvcRoa3sr6nsfkDf3aILXj8zjb48lirsLTIw=" 695 + "rev": "d1cd37e925510a167d4abef39340dbdea47d8989", 696 + "hash": "sha256-WUj4nmr4SJFTDoaOuZBVfqOrJykzW9Kg2sqaplm8E1A=" 707 697 }, 708 698 "src/third_party/vulkan-loader/src": { 709 699 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader", 710 - "rev": "f2389e27734347c1d9f40e03be53f69f969976b1", 711 - "hash": "sha256-NIBn5HkAKzNaSruw742QBWPgCkrxQdmITvTASagYlKM=" 700 + "rev": "fe92c7d7e54664b1d3f3a0d734fd6f2ffd92e485", 701 + "hash": "sha256-9Oe3JIuOT/yc+pUgKptnex9gKQFsHo1uBb3zeTegL6Q=" 712 702 }, 713 703 "src/third_party/vulkan-tools/src": { 714 704 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools", 715 - "rev": "f766b30b2de3ffe2cf6b656d943720882617ec58", 716 - "hash": "sha256-9sF9syF7d28J5yzGsIHUcJ1QB2JmJZpAVqDt92ZZOY4=" 705 + "rev": "8ce6f121d1fcbdf60f0f4264e23fbcd247b9101d", 706 + "hash": "sha256-3OcmtPp8mhrVYrPoCe9qnisXllMhYLdZ4dEulDhlq8k=" 717 707 }, 718 708 "src/third_party/vulkan-utility-libraries/src": { 719 709 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries", 720 - "rev": "b0a40d2e50310e9f84327061290a390a061125a3", 721 - "hash": "sha256-bj9YCZfIFeaQ9TVpyyztRs3LOIaJkKpkGKbU5g9hEzg=" 710 + "rev": "a528f95dc2f92bdd83c0c32efe2d13c806428c9d", 711 + "hash": "sha256-7VEYvq1x+BYPuMGi47a7/R9ZrIR9CoIaV15wLpk97bg=" 722 712 }, 723 713 "src/third_party/vulkan-validation-layers/src": { 724 714 "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers", 725 - "rev": "6b1b8e3d259241a68c0944ca0a7bb5320d086191", 726 - "hash": "sha256-Do+6/v8Ysp1Wnnmdi5I+UKHpBcEG4xMeRROCWgLmJbY=" 715 + "rev": "88a897d5921f737c9826fdd4db1ae2010d23dbb3", 716 + "hash": "sha256-X5JFPq+4rqpfKLO7ImHOcR1nvO3+PCCglP0+hhUeiJ0=" 727 717 }, 728 718 "src/third_party/vulkan_memory_allocator": { 729 719 "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git", ··· 762 752 }, 763 753 "src/third_party/webgpu-cts/src": { 764 754 "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git", 765 - "rev": "07f4412e935c988d60fad2e373287d6450bcd231", 766 - "hash": "sha256-yb7NqciuvXi7crCqpN+7hgJ+JXfDF9x48gkYI2uSTtA=" 755 + "rev": "b500efdd5fdd62404322ab9ecd70b938ac59a47f", 756 + "hash": "sha256-gGyXYaHH0nk3rbJTtazNyj9vO4PqDPJ0OG1/CisrIq0=" 767 757 }, 768 758 "src/third_party/webpagereplay": { 769 759 "url": "https://chromium.googlesource.com/webpagereplay.git", ··· 772 762 }, 773 763 "src/third_party/webrtc": { 774 764 "url": "https://webrtc.googlesource.com/src.git", 775 - "rev": "36ea4535a500ac137dbf1f577ce40dc1aaa774ef", 776 - "hash": "sha256-/3V/V0IrhOKcMAgs/C1qraqq+1pfopW8HKvGRmqLE0Q=" 765 + "rev": "bc7452c444245f7999be5711b1802e900f25540b", 766 + "hash": "sha256-Bqsd8b14ORREk/J3Tfs7OJXny0FdwUHO/sfCSEMEUSE=" 777 767 }, 778 768 "src/third_party/wuffs/src": { 779 769 "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git", ··· 792 782 }, 793 783 "src/third_party/xnnpack/src": { 794 784 "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git", 795 - "rev": "ae40b1a2d93d5c516bc7657c6c3eea1470f917ae", 796 - "hash": "sha256-w+8aCRTlBWQcDh4EvAF87eiLmQWsIsxD9adPTnuA12E=" 785 + "rev": "63e7e89ddc0cf5671d2659cd34a3eb64a008dd63", 786 + "hash": "sha256-cqzSTeRziIZFdArk6Ty/1JyeSM8w/aH2buoNy5GOIdg=" 797 787 }, 798 788 "src/third_party/zstd/src": { 799 789 "url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git", 800 - "rev": "f9938c217da17ec3e9dcd2a2d99c5cf39536aeb9", 801 - "hash": "sha256-emmJF7XLq5CxXFd0KUrtUtw1YGOHDSiz39vtgVoEPd0=" 790 + "rev": "e128976193546dceb24249206a02ff8f444f7120", 791 + "hash": "sha256-09KBWIUdz53TOSGhi32BJ2/FIA/BXxRNvgZMZJYiWgw=" 802 792 }, 803 793 "src/v8": { 804 794 "url": "https://chromium.googlesource.com/v8/v8.git", 805 - "rev": "b7ed978e41b4bac7802b206404d0e2f3d09f31ac", 806 - "hash": "sha256-/XuTD8ENQutrbBt5sJYHuG/87q00J2fACSBBkeEHTYs=" 795 + "rev": "ad8af0fc661d278e87627fcaa3a7cf795ee80dd8", 796 + "hash": "sha256-NOhavmx5NYJx6MSDwRS6RXHcn3DB7kNlTjIFZr6rMMY=" 807 797 } 808 798 } 809 799 },
+21
pkgs/applications/networking/browsers/chromium/patches/chromium-141-rust.patch
··· 1 + diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn 2 + index 516f7d85fc5718a26707d988389081cd86da49bd..f4b5284ad90591a57cb803353bbe57fd4e213159 100644 3 + --- a/build/config/compiler/BUILD.gn 4 + +++ b/build/config/compiler/BUILD.gn 5 + @@ -1911,16 +1911,6 @@ config("runtime_library") { 6 + configs += [ "//build/config/c++:runtime_library" ] 7 + } 8 + 9 + - # Rust and C++ both provide intrinsics for LLVM to call for math operations. We 10 + - # want to use the C++ intrinsics, not the ones in the Rust compiler_builtins 11 + - # library. The Rust symbols are marked as weak, so that they can be replaced by 12 + - # the C++ symbols. This config ensures the C++ symbols exist and are strong in 13 + - # order to cause that replacement to occur by explicitly linking in clang's 14 + - # compiler-rt library. 15 + - if (is_clang && !(is_a_target_toolchain && is_cronet_build)) { 16 + - configs += [ "//build/config/clang:compiler_builtins" ] 17 + - } 18 + - 19 + # TODO(crbug.com/40570904): Come up with a better name for is POSIX + Fuchsia 20 + # configuration. 21 + if (is_posix || is_fuchsia) {
-20
pkgs/applications/networking/browsers/chromium/patches/webrtc-pipewire-1.4.patch
··· 1 - --- a/third_party/webrtc/modules/video_capture/linux/pipewire_session.cc 2 - +++ b/third_party/webrtc/modules/video_capture/linux/pipewire_session.cc 3 - @@ -87,7 +87,7 @@ PipeWireNode::PipeWireNode(PipeWireSession* session, 4 - .param = OnNodeParam, 5 - }; 6 - 7 - - pw_node_add_listener(proxy_, &node_listener_, &node_events, this); 8 - + pw_node_add_listener(reinterpret_cast<pw_node*>(proxy_), &node_listener_, &node_events, this); 9 - } 10 - 11 - // static 12 - @@ -119,7 +119,7 @@ void PipeWireNode::OnNodeInfo(void* data, const pw_node_info* info) { 13 - uint32_t id = info->params[i].id; 14 - if (id == SPA_PARAM_EnumFormat && 15 - info->params[i].flags & SPA_PARAM_INFO_READ) { 16 - - pw_node_enum_params(that->proxy_, 0, id, 0, UINT32_MAX, nullptr); 17 - + pw_node_enum_params(reinterpret_cast<pw_node*>(that->proxy_), 0, id, 0, UINT32_MAX, nullptr); 18 - break; 19 - } 20 - }
+2 -2
pkgs/by-name/ar/argocd/package.nix
··· 13 13 14 14 buildGoModule rec { 15 15 pname = "argocd"; 16 - version = "3.1.6"; 16 + version = "3.1.8"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "argoproj"; 20 20 repo = "argo-cd"; 21 21 rev = "v${version}"; 22 - hash = "sha256-RdqMkyQBJaAJv660bCe+C84BFQNu06t3AaYSz4aMlBA="; 22 + hash = "sha256-xySxnRw8MvMi4BJ/h8+4Lhf2ontC05hAliMG2e3xnQg="; 23 23 }; 24 24 25 25 ui = stdenv.mkDerivation {
+3 -3
pkgs/by-name/av/avbroot/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "avbroot"; 13 - version = "3.22.0"; 13 + version = "3.23.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "chenxiaolong"; 17 17 repo = "avbroot"; 18 18 tag = "v${version}"; 19 - hash = "sha256-Ijyw6fUf5jW5di7gvnV0Eh1kG4q/x8GbG4R0q74rWLs="; 19 + hash = "sha256-P7t1Tuux04D1tEaMjFPWhaYz4NP3hk5hoJ6kKiHM1S8="; 20 20 }; 21 21 22 - cargoHash = "sha256-eYnKxMwdk4nlDFvzoMoWSH4NO753IY68dN/Ok0BZf0Q="; 22 + cargoHash = "sha256-ahBzMU8R520EMUgdETr0+gz2fuxKcOV+6fuH4SiRz8U="; 23 23 24 24 nativeBuildInputs = [ 25 25 pkg-config
+2 -2
pkgs/by-name/bn/bngblaster/package.nix
··· 13 13 14 14 stdenv.mkDerivation (finalAttrs: { 15 15 pname = "bngblaster"; 16 - version = "0.9.24"; 16 + version = "0.9.25"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "rtbrick"; 20 20 repo = "bngblaster"; 21 21 rev = finalAttrs.version; 22 - hash = "sha256-flPMDpAEAICLR9TYz0vD62e26pJH2p/3u20sOEuKNx4="; 22 + hash = "sha256-imbTZLq7yFxh/qaigySNaBBLqkJS1zY/gwjLslj3Jv4="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/by-name/ca/cargo-shuttle/package.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "cargo-shuttle"; 12 - version = "0.57.1"; 12 + version = "0.57.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "shuttle-hq"; 16 16 repo = "shuttle"; 17 17 rev = "v${version}"; 18 - hash = "sha256-R+vThHlPVquwTTM4ZufQzgjKfdxGhavUN7f9ucTvWoQ="; 18 + hash = "sha256-qPevl75wmOYVhTgMiJOi+6j8LBWKzM7HPhd5mdf2B+8="; 19 19 }; 20 20 21 - cargoHash = "sha256-RYjRqpm1n45x2ccTjS1WeqfR7gRyOVLCilc/K4G63gM="; 21 + cargoHash = "sha256-H2fy2NQvLQEzbQik+nrUvoYZaWQRXX6PpO9LcYfiF2I="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24
-35
pkgs/by-name/ca/casadi/clang-19.diff
··· 1 - diff --git a/casadi/interfaces/clang/clang_compiler.hpp b/casadi/interfaces/clang/clang_compiler.hpp 2 - index 7f54853..9f8d4b1 100644 3 - --- a/casadi/interfaces/clang/clang_compiler.hpp 4 - +++ b/casadi/interfaces/clang/clang_compiler.hpp 5 - @@ -52,7 +52,7 @@ 6 - #include "llvm/IR/LLVMContext.h" 7 - //#include "llvm/IR/Verifier.h" 8 - #include <llvm/Support/FileSystem.h> 9 - -#include <llvm/Support/Host.h> 10 - +#include <llvm/TargetParser/Host.h> 11 - #include <llvm/Support/ManagedStatic.h> 12 - #include <llvm/Support/Path.h> 13 - #include <llvm/Support/TargetSelect.h> 14 - diff --git a/cmake/FindCLANG.cmake b/cmake/FindCLANG.cmake 15 - index 4edf60b..f23a348 100644 16 - --- a/cmake/FindCLANG.cmake 17 - +++ b/cmake/FindCLANG.cmake 18 - @@ -16,7 +16,7 @@ set(CLANG_CXX_FLAGS "-fPIC -fvisibility-inlines-hidden -ffunction-sections -fdat 19 - set(CLANG_INCLUDE_DIR ${LLVM_INSTALL_PREFIX}/include) 20 - 21 - # All clang libraries 22 - -set(CLANG_DEP clangFrontend clangDriver clangCodeGen clangRewriteFrontend clangSerialization clangParse clangSema clangAnalysis clangEdit clangAST clangLex clangBasic ${LLVM_DEP}) 23 - +set(CLANG_DEP clangFrontend clangDriver clangCodeGen clangRewriteFrontend clangSerialization clangParse clangSema clangAPINotes clangAnalysis clangEdit clangAST clangLex clangBasic ${LLVM_DEP}) 24 - 25 - # Get libraries 26 - set(CLANG_LIBRARIES) 27 - @@ -86,7 +86,7 @@ set(CLANG_INCLUDE_DIR ${CLANG_LLVM_INCLUDE_DIR}) 28 - 29 - # All clang libraries 30 - set(CLANG_DEP clangFrontend clangDriver clangCodeGen clangRewriteFrontend clangSerialization 31 - - clangParse clangSema clangAnalysis clangEdit clangAST clangLex clangBasic) 32 - + clangParse clangSema clangAPINotes clangAnalysis clangEdit clangAST clangLex clangBasic) 33 - 34 - # Get libraries 35 - foreach(D ${CLANG_DEP})
+6 -17
pkgs/by-name/ca/casadi/package.nix
··· 38 38 39 39 stdenv.mkDerivation (finalAttrs: { 40 40 pname = "casadi"; 41 - version = "3.7.1"; 41 + version = "3.7.2"; 42 42 43 43 src = fetchFromGitHub { 44 44 owner = "casadi"; 45 45 repo = "casadi"; 46 46 tag = finalAttrs.version; 47 - hash = "sha256-554ZN+GfkGHN0cthsb/fPWdo+U2IqLz4q+x60SxRAfk="; 47 + hash = "sha256-I6CYtKVvE67NSYH/JGJFP5wHhm1xACctz7uTwOFFihA="; 48 48 }; 49 49 50 50 patches = [ 51 - # update include file path and link with clangAPINotes 52 - # https://github.com/casadi/casadi/issues/3969 53 - ./clang-19.diff 54 - 55 51 # Add missing include 56 52 # ref. https://github.com/casadi/casadi/pull/4192 57 53 (fetchpatch { ··· 72 76 substituteInPlace CMakeLists.txt --replace-fail \ 73 77 "FATROP HPIPM" \ 74 78 "FATROP hpipm" 75 - 76 - # nix provide lib/clang headers in libclang, not in llvm. 77 - substituteInPlace casadi/interfaces/clang/CMakeLists.txt --replace-fail \ 78 - '$'{CLANG_LLVM_LIB_DIR} \ 79 - ${lib.getLib llvmPackages.libclang}/lib 80 79 81 80 # help casadi find its own libs 82 81 substituteInPlace casadi/core/casadi_os.cpp --replace-fail \ ··· 99 108 substituteInPlace casadi/interfaces/hpipm/hpipm_runtime.hpp --replace-fail \ 100 109 "d_print_exp_tran_mat" \ 101 110 "//d_print_exp_tran_mat" 102 - 103 - # fix missing symbols 104 - substituteInPlace cmake/FindCLANG.cmake --replace-fail \ 105 - "clangBasic)" \ 106 - "clangBasic clangASTMatchers clangSupport)" 107 111 ''; 108 112 109 113 nativeBuildInputs = [ ··· 175 189 (lib.cmakeBool "WITH_TINYXML" true) 176 190 (lib.cmakeBool "WITH_BUILD_DSDP" true) # not sure where this come from 177 191 (lib.cmakeBool "WITH_DSDP" true) 178 - (lib.cmakeBool "WITH_CLANG" true) 192 + # "clang_compiler.cpp has basically been abandonded for several years", ref. 193 + # https://github.com/casadi/casadi/issues/4225#issuecomment-3352552113 194 + (lib.cmakeBool "WITH_CLANG" false) 179 195 (lib.cmakeBool "WITH_LAPACK" true) 180 196 (lib.cmakeBool "WITH_QPOASES" true) 181 197 (lib.cmakeBool "WITH_BLOCKSQP" true) ··· 211 223 Python or Matlab/Octave 212 224 ''; 213 225 homepage = "https://github.com/casadi/casadi"; 226 + changelog = "https://github.com/casadi/casadi/releases/tag/${finalAttrs.version}"; 214 227 license = lib.licenses.lgpl3Only; 215 228 maintainers = with lib.maintainers; [ nim65s ]; 216 229 platforms = lib.platforms.all;
+2 -2
pkgs/by-name/da/dablin/package.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "dablin"; 16 - version = "1.16.0"; 16 + version = "1.16.1"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "Opendigitalradio"; 20 20 repo = "dablin"; 21 21 rev = version; 22 - sha256 = "sha256-1rjL0dSEgF7FF72KiT6Tyj7/wbRc24LzyzmM1IGdglc="; 22 + sha256 = "sha256-dx+KPPFCx78HtNvEb00URX/eu49Wtj7fksPjDtpkk5Q="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/by-name/dd/ddns-go/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "ddns-go"; 9 - version = "6.12.4"; 9 + version = "6.12.5"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "jeessy2"; 13 13 repo = "ddns-go"; 14 14 rev = "v${version}"; 15 - hash = "sha256-MtnX8/xrslpQYyj2/TIG6x6BNWSLw0dajTB/D02+sRY="; 15 + hash = "sha256-8k3WxNSt+DvfdmWH/V3rAlOSHeyf+g5mmXQZghCf7K4="; 16 16 }; 17 17 18 18 vendorHash = "sha256-f94Ox/8MQgy3yyLRTK0WFHebntSUAGlbr4/IY+wrz4w=";
+2 -2
pkgs/by-name/di/di-tui/package.nix
··· 6 6 }: 7 7 buildGoModule rec { 8 8 pname = "di-tui"; 9 - version = "1.11.2"; 9 + version = "1.11.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "acaloiaro"; 13 13 repo = "di-tui"; 14 14 rev = "v${version}"; 15 - hash = "sha256-YXTVJN8t58MS0Q4kKbasFNkmB/Jz4ctebBnbKqOP2is="; 15 + hash = "sha256-Qd+Rwyw0aC5RGucvl3v3mHbV6dB9VHvk9/nh/glWU90="; 16 16 }; 17 17 18 18 vendorHash = "sha256-b7dG0nSjPQpjWUbOlIxWudPZWKqtq96sQaJxKvsQT9I=";
+2 -2
pkgs/by-name/di/diffoscope/package.nix
··· 106 106 # Note: when upgrading this package, please run the list-missing-tools.sh script as described below! 107 107 python.pkgs.buildPythonApplication rec { 108 108 pname = "diffoscope"; 109 - version = "303"; 109 + version = "304"; 110 110 pyproject = true; 111 111 112 112 src = fetchurl { 113 113 url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2"; 114 - hash = "sha256-kalURmsdYl0HOnzAkJ6aGRvYcjnb8BeWimokmpqE+Ds="; 114 + hash = "sha256-lJdZRIyoVq1PsmiicsSxJ0Mgsy5IcAUar6l8QvJoxOw="; 115 115 }; 116 116 117 117 outputs = [
+3 -3
pkgs/by-name/do/dotenvx/package.nix
··· 8 8 9 9 buildNpmPackage rec { 10 10 pname = "dotenvx"; 11 - version = "1.50.1"; 11 + version = "1.51.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "dotenvx"; 15 15 repo = "dotenvx"; 16 16 tag = "v${version}"; 17 - hash = "sha256-fh819FxXugCUF9TMxCAIog0SP52YnPHL6gvVtoS6fN8="; 17 + hash = "sha256-vRvcsh4b/QlU+f7646t8O5F8VT/K6zBxbUpos+hh0fw="; 18 18 }; 19 19 20 - npmDepsHash = "sha256-P7BSVGoHBJrR5AUT70a10BqKNJxG+GW8FpkaKTEUA/c="; 20 + npmDepsHash = "sha256-AT9ZE7ip63t6vK/GBVM9JCmir68jrxMN54RoREmjSIk="; 21 21 22 22 dontNpmBuild = true; 23 23
+3 -3
pkgs/by-name/gn/gnmic/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "gnmic"; 12 - version = "0.41.0"; 12 + version = "0.42.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "openconfig"; 16 16 repo = "gnmic"; 17 17 tag = "v${version}"; 18 - hash = "sha256-tuEkpuUs245jj0/wzZjqTWeMZNJhiylZD7e0XOc/c14="; 18 + hash = "sha256-qN5EnZR1sXni2m1nyH61xLIX7c9sk5SGtAxrolfNHzs="; 19 19 }; 20 20 21 - vendorHash = "sha256-piHSVATQjHjKIWNIjm8p2A0ivQzDR2PQj0ovfYDk/FA="; 21 + vendorHash = "sha256-QHqsL2XMkIB+CN7uXdn3gpVoaxEfDjdf1ADhd/bYVis="; 22 22 23 23 ldflags = [ 24 24 "-s"
+2 -2
pkgs/by-name/ho/horizon-eda/base.nix
··· 24 24 # This base is used in horizon-eda and python3Packages.horizon-eda 25 25 rec { 26 26 pname = "horizon-eda"; 27 - version = "2.7.0"; 27 + version = "2.7.1"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "horizon-eda"; 31 31 repo = "horizon"; 32 32 rev = "v${version}"; 33 - hash = "sha256-Y2oopRycYSxtiKuQZSfTBVP7RmpZ0JA+QyZgnrpoAes="; 33 + hash = "sha256-gigfwam7+KvmGAxex7Bi7a8xAmiNZ+YBZ5iMXneD4cw="; 34 34 }; 35 35 36 36 nativeBuildInputs = [
+3 -3
pkgs/by-name/hp/hpipm/package.nix
··· 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "hpipm"; 12 12 #version = "0.1.3"; not building, use master instead 13 - version = "0.1.3-unstable-2025-09-25"; 13 + version = "0.1.3-unstable-2025-07-25"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "giaf"; 17 17 repo = "hpipm"; 18 - rev = "8f3a2d00f6d1bd7101fb651391fba79377915288"; 19 - hash = "sha256-XtnUs1RiB7zJOv7zdRzB31hnxDYaiH+Q4SLyE6/kuEg="; 18 + rev = "00c2a084e059e2e1b79877f668e282d0c4282110"; 19 + hash = "sha256-Lg7po7xTs9jc8FiYFMbNFJooTjOpzBFiyd5f+TPMWQA="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ cmake ];
+2 -9
pkgs/by-name/ki/kitty/package.nix
··· 51 51 with python3Packages; 52 52 buildPythonApplication rec { 53 53 pname = "kitty"; 54 - version = "0.43.0"; 54 + version = "0.43.1"; 55 55 format = "other"; 56 56 57 57 src = fetchFromGitHub { 58 58 owner = "kovidgoyal"; 59 59 repo = "kitty"; 60 60 tag = "v${version}"; 61 - hash = "sha256-wPLXuZWhaA51J7jGHffh/xnXzWDKCXV2G3Uvrg7G8Kg="; 61 + hash = "sha256-Wd61Q1sG55oDxPuHJpmvSWuptwJIuzgn2sB/dzNRc1c="; 62 62 }; 63 63 64 64 goModules = ··· 142 142 # Skip `test_ssh_bootstrap_with_different_launchers` when launcher is `zsh` since it causes: 143 143 # OSError: master_fd is in error condition 144 144 ./disable-test_ssh_bootstrap_with_different_launchers.patch 145 - 146 - # Fix test failure with fish >= 4.1 147 - # See: https://github.com/kovidgoyal/kitty/commit/2f991691f9dca291c52bd619c800d3c2f3eb0d66 148 - (fetchpatch { 149 - url = "https://github.com/kovidgoyal/kitty/commit/2f991691f9dca291c52bd619c800d3c2f3eb0d66.patch"; 150 - hash = "sha256-LIQz3e2qgiwpsMd5EbEcvd7ePEEPJvIH4NmNpxydQiU="; 151 - }) 152 145 ]; 153 146 154 147 hardeningDisable = [
+2 -2
pkgs/by-name/ku/kubeone/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "kubeone"; 13 - version = "1.11.2"; 13 + version = "1.11.3"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "kubermatic"; 17 17 repo = "kubeone"; 18 18 rev = "v${version}"; 19 - hash = "sha256-TDT7qAwd9wewnfICEX+ZI4z9jma0L+SZcZJeQOuv9dc="; 19 + hash = "sha256-afAyjBalBdWAnTAedAYh3GslLx//aAHQAsEbBIpiczg="; 20 20 }; 21 21 22 22 vendorHash = "sha256-Wnnwp1GRlE1q8MSc23pOmSn9fKu5uHVzkivfuF2lnEk=";
+21 -6
pkgs/by-name/li/libomemo-c/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 - cmake, 5 + meson, 6 + ninja, 7 + pkg-config, 6 8 openssl, 9 + protobuf_25, 10 + protobufc, 7 11 }: 8 12 9 13 stdenv.mkDerivation rec { 10 14 pname = "libomemo-c"; 11 - version = "0.5.0"; 15 + version = "0.5.1"; 12 16 13 17 src = fetchFromGitHub { 14 18 owner = "dino"; 15 19 repo = "libomemo-c"; 16 20 rev = "v${version}"; 17 - hash = "sha256-GvHMp0FWoApbYLMhKfNxSBel1xxWWF3TZ4lnkLvu2s4="; 21 + hash = "sha256-HoZykdGVDsj4L5yN3SHGF5tjMq5exJyC15zTLBlpX/c="; 18 22 }; 19 23 20 - nativeBuildInputs = [ cmake ]; 21 - buildsInputs = [ openssl ]; 22 - cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ]; 24 + nativeBuildInputs = [ 25 + meson 26 + ninja 27 + pkg-config 28 + protobuf_25 29 + protobufc 30 + ]; 31 + buildInputs = [ 32 + openssl 33 + protobufc 34 + ]; 35 + mesonFlags = [ 36 + "-Dtests=false" 37 + ]; 23 38 24 39 meta = with lib; { 25 40 description = "Fork of libsignal-protocol-c adding support for OMEMO XEP-0384 0.5.0+";
+3 -3
pkgs/by-name/li/libretro-shaders-slang/package.nix
··· 7 7 8 8 stdenvNoCC.mkDerivation { 9 9 pname = "libretro-shaders-slang"; 10 - version = "0-unstable-2025-09-14"; 10 + version = "0-unstable-2025-09-26"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "libretro"; 14 14 repo = "slang-shaders"; 15 - rev = "39ca959b131e75dcd0cb4016e545b4e91b7081ae"; 16 - hash = "sha256-8G54UuuuZpi/sqEWfK/XNXEjjL9LGmffNAnQ+g/XQPM="; 15 + rev = "7e3c2ccde32aaa327e109318d275dc16d44653b0"; 16 + hash = "sha256-MkA/pQQhQseoVEOrv/Nfv4gYfx/LmEMN2eFF6McvQnk="; 17 17 }; 18 18 19 19 dontConfigure = true;
+2 -2
pkgs/by-name/ma/mackerel-agent/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "mackerel-agent"; 13 - version = "0.85.1"; 13 + version = "0.85.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "mackerelio"; 17 17 repo = "mackerel-agent"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-ngBBpvDk5HsMNoZy45mlEBn3dgG8j1b98tShdR6QmQQ="; 19 + sha256 = "sha256-3A3x32JytJGXebgZeJcToHXNqRB+rbyziT5Zwgc9rEM="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ makeWrapper ];
+8 -8
pkgs/by-name/ml/mlocate/package.nix
··· 4 4 fetchurl, 5 5 }: 6 6 7 - stdenv.mkDerivation rec { 7 + stdenv.mkDerivation (finalAttrs: { 8 8 pname = "mlocate"; 9 9 version = "0.26"; 10 10 11 11 src = fetchurl { 12 - url = "https://releases.pagure.org/mlocate/mlocate-${version}.tar.xz"; 13 - sha256 = "0gi6y52gkakhhlnzy0p6izc36nqhyfx5830qirhvk3qrzrwxyqrh"; 12 + url = "https://releases.pagure.org/mlocate/mlocate-${finalAttrs.version}.tar.xz"; 13 + hash = "sha256-MGPfef4Zj7lhjhgMVLrzEFsz2I/mAv8thXCq+UTxJj4="; 14 14 }; 15 15 16 16 makeFlags = [ 17 17 "dbfile=/var/cache/locatedb" 18 18 ]; 19 19 20 - meta = with lib; { 21 - description = "Merging locate is an utility to index and quickly search for files"; 20 + meta = { 21 + description = "Utility to index and quickly search for files"; 22 22 homepage = "https://pagure.io/mlocate"; 23 - license = licenses.gpl2Only; 24 - platforms = platforms.linux; 23 + license = lib.licenses.gpl2Only; 24 + platforms = lib.platforms.linux; 25 25 maintainers = [ ]; 26 26 }; 27 - } 27 + })
+2 -2
pkgs/by-name/mt/mtail/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "mtail"; 11 - version = "3.2.16"; 11 + version = "3.2.18"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "jaqx0r"; 15 15 repo = "mtail"; 16 16 rev = "v${version}"; 17 - hash = "sha256-yugtprUVSy9+a7YGtgIffafE8hQrKku1RMHn2tq64KU="; 17 + hash = "sha256-Z3FPZNWGyXtY2KLRF/oJIuN+lXE14SQce72pTKBsZEk="; 18 18 }; 19 19 20 20 vendorHash = "sha256-SMdEowzg53uori/Ge+GE4542wswBU2kgdyAXxeKQiiU=";
+46
pkgs/by-name/op/openspeedrun/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + wayland, 6 + libxkbcommon, 7 + libGL, 8 + autoPatchelfHook, 9 + }: 10 + 11 + rustPlatform.buildRustPackage (finalAttrs: { 12 + pname = "openspeedrun"; 13 + version = "0.3.3"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "SrWither"; 17 + repo = "OpenSpeedRun"; 18 + tag = "v${finalAttrs.version}"; 19 + hash = "sha256-EZPApXUVhsaOYa6CnpR8IWeEoHEl89KJGGoBOYFqBV0="; 20 + }; 21 + 22 + cargoHash = "sha256-WzsLEfDZpjpUrbyPOr5QUkTMrlAJoC9Rej5BMOKF7OM="; 23 + 24 + nativeBuildInputs = [ 25 + autoPatchelfHook 26 + ]; 27 + 28 + runtimeDependencies = [ 29 + wayland 30 + libxkbcommon 31 + libGL 32 + ]; 33 + 34 + autoPatchelfIgnoreMissingDeps = [ 35 + "libgcc_s.so.1" 36 + ]; 37 + 38 + meta = { 39 + changelog = "https://github.com/SrWither/OpenSpeedRun/releases/tag/v${finalAttrs.version}"; 40 + description = "Modern and minimalistic open-source speedrun timer"; 41 + homepage = "https://github.com/SrWither/OpenSpeedRun"; 42 + license = lib.licenses.bsd3; 43 + maintainers = [ lib.maintainers.pyrox0 ]; 44 + mainProgram = "openspeedrun"; 45 + }; 46 + })
+3 -3
pkgs/by-name/os/osv-scanner/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "osv-scanner"; 11 - version = "2.2.2"; 11 + version = "2.2.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "google"; 15 15 repo = "osv-scanner"; 16 16 tag = "v${version}"; 17 - hash = "sha256-gleQ/Bh+oLYy3iP6FsqtihoLz4jerRnx14dB2cBbf60="; 17 + hash = "sha256-YdtTF1u5uyXERRZXidumBFoWq4yA5L7cwIaoYJ4ktSM="; 18 18 }; 19 19 20 - vendorHash = "sha256-F1QioqSFQvSJd7JByyUakjn9QSpF2hqEkyx10ei/sKk="; 20 + vendorHash = "sha256-/+VtmLnceOzcqWvpBnihtsAf9Q4x/56Zk6UjjejzWHQ="; 21 21 22 22 subPackages = [ 23 23 "cmd/osv-scanner"
+3 -3
pkgs/by-name/pi/pik/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "pik"; 11 - version = "0.26.0"; 11 + version = "0.26.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "jacek-kurlit"; 15 15 repo = "pik"; 16 16 rev = version; 17 - hash = "sha256-uvfCMXCbU0SGia1lLz9jkPnZ9Nmohd3sTgxHUbW6/Y8="; 17 + hash = "sha256-qpSQ920nAWqta3aPxl9dVHFRBtgETtUye+D2yU33ZFw="; 18 18 }; 19 19 20 - cargoHash = "sha256-IQX3lS8Fl6zNKTYlvoPXPzBx+J8bbyH9ZYMzyu2mF9o="; 20 + cargoHash = "sha256-5/ympn4z1R7dYG4jR+0zEgvaYr0AbcIbUIrMac5Tj7A="; 21 21 22 22 passthru.tests.version = testers.testVersion { package = pik; }; 23 23
+3 -3
pkgs/by-name/pk/pkarr/package.nix
··· 5 5 }: 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "pkarr"; 8 - version = "2.0.0"; 8 + version = "4.0.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "pubky"; 12 12 repo = "pkarr"; 13 13 rev = "v${version}"; 14 - hash = "sha256-zJe/hCdGVqs2TTwxnceGVXt0ZFRheSRYzjSRHytYXks="; 14 + hash = "sha256-9sTF5h2+vWcz5ohAoo95vldTJGQyz/ICkVpIgaxilwA="; 15 15 }; 16 16 17 - cargoHash = "sha256-y20vVO714WPcB2aYzo0LBuJhy224bsHA7O9Dj00ViWE="; 17 + cargoHash = "sha256-26OlV/Xnl1+VFOaCWUjb8LxuJWrCsfY7QTlPZ7VMBCs="; 18 18 19 19 meta = { 20 20 description = "Public Key Addressable Resource Records (sovereign TLDs) ";
+3 -3
pkgs/by-name/po/polarity/package.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "polarity"; 10 - version = "latest-unstable-2025-09-17"; 10 + version = "latest-unstable-2025-09-25"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "polarity-lang"; 14 14 repo = "polarity"; 15 - rev = "20a0394d99752947f78e152854efd19852616968"; 16 - hash = "sha256-Gu9PwRqMjFzubFkyRRbxcfG6mmID8HIJclkW7sDDWYo="; 15 + rev = "e582716daae20d534f7c7ecc58569bfd28d679f2"; 16 + hash = "sha256-L9eBD8rA8cBdd2FFeyFKSl8/lse1OlgogEOTkVYkxHo="; 17 17 }; 18 18 19 19 cargoHash = "sha256-EB6DlhD+0oneAGhLHi3bWnnFUIfNdKeW52umWHZEP7c=";
+10 -9
pkgs/by-name/qu/quartus-prime-lite/quartus.nix
··· 40 40 ) deviceIds; 41 41 42 42 componentHashes = { 43 - "arria_lite" = "sha256-PNoc15Y5h+2bxhYFIxkg1qVAsXIX3IMfEQSdPLVNUp4="; 44 - "cyclone" = "sha256-2huDuTkXt6jszwih0wzusoxRvECi6+tupvRcUvn6eIA="; 45 - "cyclone10lp" = "sha256-i8VJKqlIfQmK2GWhm0W0FujHcup4RjeXughL2VG5gkY="; 46 - "cyclonev" = "sha256-HoNJkcD96rPQEZtjbtmiRpoKh8oni7gOLVi80c1a3TM="; 47 - "max" = "sha256-qh920mvu0H+fUuSJBH7fDPywzll6sGdmEtfx32ApCSA="; 48 - "max10" = "sha256-XOyreAG3lYEV7Mnyh/UnFTuOwPQsd/t23Q8/P2p6U+0="; 43 + "arria_lite" = "sha256-ASvi9YX15b4XXabGjkuR5wl9wDwCijl8s750XTR/4XU="; 44 + "cyclone" = "sha256-iNA4S5mssffgn29NUhibJk6iKnmJ+vG9LYY3W+nnqcI="; 45 + "cyclone10lp" = "sha256-247yR2fm5A3LWRjePJU99z1NBYziV8WkPL05wHJ4Z1Q="; 46 + "cyclonev" = "sha256-Fa1PQ3pp9iTPYQljeKGyxHIXHaSolJZR8vXVb3gEN7g="; 47 + "max" = "sha256-lAA1CgSfAjfilLDhRzfU2OkzGAChk7TMFckeboMB4mI="; 48 + "max10" = "sha256-edycBj0P3qwLN2YS//QpCHQeGOW8WM0RqTIWdGAkEv8="; 49 49 }; 50 50 51 - version = "23.1std.1.993"; 51 + version = "24.1std.0.1077"; 52 52 53 53 download = 54 54 { name, sha256 }: ··· 62 62 [ 63 63 { 64 64 name = "QuartusLiteSetup-${version}-linux.run"; 65 - sha256 = "sha256-OCp2hZrfrfp1nASuVNWgg8/ODRrl67SJ+c6IWq5eWvY="; 65 + sha256 = "sha256-NFWT1VWcb3gun7GhpPbHzR3SIYBMpK40jESXS/vC5II="; 66 66 } 67 67 ] 68 68 ++ lib.optional withQuesta { 69 69 name = "QuestaSetup-${version}-linux.run"; 70 - sha256 = "sha256-Dne4MLFSGXUVLMd+JgiS/d5RX9t5gs6PEvexTssLdF4="; 70 + sha256 = "sha256-4+Y34UiJwenlIp/XKzMs+2aYZt/Y6XmNmiYyXVmOQkc="; 71 71 } 72 72 ); 73 73 components = map ( ··· 133 133 maintainers = with maintainers; [ 134 134 bjornfor 135 135 kwohlfahrt 136 + zainkergaye 136 137 ]; 137 138 }; 138 139 }
+2 -2
pkgs/by-name/sc/scip-go/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "scip-go"; 9 - version = "0.1.25"; 9 + version = "0.1.26"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "sourcegraph"; 13 13 repo = "scip-go"; 14 14 rev = "v${version}"; 15 - hash = "sha256-qzLDqHnZpJtdBZa/YOLZCiS+V52a1Lxc0TLsfSeRCG8="; 15 + hash = "sha256-4Xm/o4hl94vCAEpFbaKDMDhv6ZyANCg2HDC6EIwyzsI="; 16 16 }; 17 17 18 18 vendorHash = "sha256-J/97J/VXmQAYHu1qr9KiTUrB6/SVFcahihRatCKgaD8=";
+3 -3
pkgs/by-name/st/stalwart-mail/package.nix
··· 20 20 21 21 rustPlatform.buildRustPackage (finalAttrs: { 22 22 pname = "stalwart-mail" + (lib.optionalString stalwartEnterprise "-enterprise"); 23 - version = "0.13.2"; 23 + version = "0.13.4"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "stalwartlabs"; 27 27 repo = "stalwart"; 28 28 tag = "v${finalAttrs.version}"; 29 - hash = "sha256-VdeHb1HVGXA5RPenhhK4r/kkQiLG8/4qhdxoJ3xIqR4="; 29 + hash = "sha256-1WKmSgDZ3c6+fFKH9+kgrxFYthKQqE1455bFHlVCGhU="; 30 30 }; 31 31 32 - cargoHash = "sha256-Wu6skjs3Stux5nCX++yoQPeA33Qln67GoKcob++Ldng="; 32 + cargoHash = "sha256-i6AvyX4RObB9aa+TYvsOW8i9WTcYx8ddP/Jmyr8PWMY="; 33 33 34 34 nativeBuildInputs = [ 35 35 pkg-config
+3 -3
pkgs/by-name/tl/tlrc/package.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "tlrc"; 10 - version = "1.11.1"; 10 + version = "1.12.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "tldr-pages"; 14 14 repo = "tlrc"; 15 15 rev = "v${version}"; 16 - hash = "sha256-SPYLQ7o3sbrjy3MmBAB0YoVJI1rSmePbrZY0yb2SnFE="; 16 + hash = "sha256-Q0vRrCNpbG6LihCi9+uI25PnpFuPfoY2MZmyB/IN/SQ="; 17 17 }; 18 18 19 - cargoHash = "sha256-i2nSwsQnwhiMhG8QJb0z0zPuNxTLwuO1dgJxI4e4FqY="; 19 + cargoHash = "sha256-IrRhj3Tv8rLTJki+Wd4Xfmf74OnYInUytMnYuvre7mw="; 20 20 21 21 nativeBuildInputs = [ installShellFiles ]; 22 22
+15 -11
pkgs/by-name/to/tomb/package.nix
··· 13 13 lib, 14 14 libargon2, 15 15 lsof, 16 - makeWrapper, 16 + makeBinaryWrapper, 17 17 nix-update-script, 18 18 pinentry, 19 19 stdenvNoCC, 20 - testers, 21 - util-linux, 20 + util-linuxMinimal, 21 + versionCheckHook, 22 22 zsh, 23 23 }: 24 24 ··· 37 37 libargon2 38 38 lsof 39 39 pinentry 40 - util-linux 40 + util-linuxMinimal 41 41 ]; 42 42 43 43 in ··· 52 52 hash = "sha256-z7LkCes0wg+1bZrNXXy4Lh5VwMotCULJQy5DmCisu+Q="; 53 53 }; 54 54 55 - nativeBuildInputs = [ makeWrapper ]; 55 + nativeBuildInputs = [ makeBinaryWrapper ]; 56 56 57 57 buildInputs = [ 58 58 pinentry ··· 69 69 ''; 70 70 71 71 installPhase = '' 72 - install -Dm755 tomb $out/bin/tomb 73 - install -Dm644 doc/tomb.1 $out/share/man/man1/tomb.1 72 + runHook preInstall 73 + 74 + install -D -m755 -t $out/bin tomb 75 + install -D -m644 -t $out/share/man/man1/ doc/tomb.1 74 76 75 77 wrapProgram $out/bin/tomb \ 76 78 --prefix PATH : $out/bin:${lib.makeBinPath runtimeDependencies} 79 + 80 + runHook postInstall 77 81 ''; 78 82 83 + doInstallCheck = true; 84 + nativeInstallCheckInputs = [ versionCheckHook ]; 85 + versionCheckProgramArg = "-v"; 86 + 79 87 passthru = { 80 - tests.version = testers.testVersion { 81 - package = finalAttrs.finalPackage; 82 - command = "tomb -v"; 83 - }; 84 88 updateScript = nix-update-script { }; 85 89 }; 86 90
+3 -3
pkgs/by-name/wo/workshop-runner/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "workshop-runner"; 9 - version = "0.2.3"; 9 + version = "0.2.5"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mainmatter"; 13 13 repo = "rust-workshop-runner"; 14 14 rev = "v${version}"; 15 - hash = "sha256-PfQPRbOPK1Y/j8Xtg78oDzBFUx8eiM3ZwRul/ao0SgI="; 15 + hash = "sha256-vaCMnytN3GidEzn3r0zDyD2uBTLaLSnaho/j1Ti3yHE="; 16 16 }; 17 17 18 - cargoHash = "sha256-opV2IrqMIwdgrXY6V0jxFtrdP8NVmdlUdsLdfFNimt0="; 18 + cargoHash = "sha256-/Oj4B2W+fprOML1KdiU8fHkeGj1JXq8o0GlKxa46/64="; 19 19 20 20 meta = { 21 21 description = "CLI tool to drive test-driven Rust workshops";
+2 -2
pkgs/development/ocaml-modules/hxd/default.nix
··· 10 10 11 11 buildDunePackage rec { 12 12 pname = "hxd"; 13 - version = "0.3.4"; 13 + version = "0.3.5"; 14 14 15 15 minimalOCamlVersion = "4.08"; 16 16 17 17 src = fetchurl { 18 18 url = "https://github.com/dinosaure/hxd/releases/download/v${version}/hxd-${version}.tbz"; 19 - sha256 = "sha256-jor8KLUvHqgt37Dnh3JRB/eMIYSevVzGEBsvG4quDmI="; 19 + sha256 = "sha256-E1I198ErT9/Cpvdk/Qjpq360OIVuAsbmaNc7qJzndEM="; 20 20 }; 21 21 22 22 propagatedBuildInputs = lib.optional withLwt lwt;
+2 -2
pkgs/development/python-modules/apispec/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "apispec"; 18 - version = "6.8.3"; 18 + version = "6.8.4"; 19 19 pyproject = true; 20 20 21 21 disabled = pythonOlder "3.9"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - hash = "sha256-CCMjWqFxGH/A+x39KCEevPX+d2iyp+GSnQZnHhYkOa4="; 25 + hash = "sha256-/Q7RSvcaKUnZrrlrcs4VF8tKSKXFVmfNBIO37TMVaio="; 26 26 }; 27 27 28 28 build-system = [ flit-core ];
+22 -24
pkgs/development/python-modules/blake3/Cargo.lock
··· 1 1 # This file is automatically @generated by Cargo. 2 2 # It is not intended for manual editing. 3 - version = 3 3 + version = 4 4 4 5 5 [[package]] 6 6 name = "arrayref" ··· 22 22 23 23 [[package]] 24 24 name = "blake3" 25 - version = "1.0.6" 25 + version = "1.0.7" 26 26 dependencies = [ 27 27 "blake3 1.8.2", 28 28 "hex", 29 29 "pyo3", 30 30 "rayon", 31 - "rayon-core", 32 31 ] 33 32 34 33 [[package]] ··· 47 48 48 49 [[package]] 49 50 name = "cc" 50 - version = "1.2.38" 51 + version = "1.2.39" 51 52 source = "registry+https://github.com/rust-lang/crates.io-index" 52 - checksum = "80f41ae168f955c12fb8960b057d70d0ca153fb83182b57d86380443527be7e9" 53 + checksum = "e1354349954c6fc9cb0deab020f27f783cf0b604e8bb754dc4658ecf0d29c35f" 53 54 dependencies = [ 54 55 "find-msvc-tools", 55 56 "shlex", ··· 124 125 125 126 [[package]] 126 127 name = "libc" 127 - version = "0.2.175" 128 + version = "0.2.176" 128 129 source = "registry+https://github.com/rust-lang/crates.io-index" 129 - checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" 130 + checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" 130 131 131 132 [[package]] 132 133 name = "memmap2" ··· 169 170 170 171 [[package]] 171 172 name = "pyo3" 172 - version = "0.25.1" 173 + version = "0.26.0" 173 174 source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a" 175 + checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383" 175 176 dependencies = [ 176 177 "indoc", 177 178 "libc", ··· 186 187 187 188 [[package]] 188 189 name = "pyo3-build-config" 189 - version = "0.25.1" 190 + version = "0.26.0" 190 191 source = "registry+https://github.com/rust-lang/crates.io-index" 191 - checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598" 192 + checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f" 192 193 dependencies = [ 193 - "once_cell", 194 194 "target-lexicon", 195 195 ] 196 196 197 197 [[package]] 198 198 name = "pyo3-ffi" 199 - version = "0.25.1" 199 + version = "0.26.0" 200 200 source = "registry+https://github.com/rust-lang/crates.io-index" 201 - checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c" 201 + checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105" 202 202 dependencies = [ 203 203 "libc", 204 204 "pyo3-build-config", ··· 205 207 206 208 [[package]] 207 209 name = "pyo3-macros" 208 - version = "0.25.1" 210 + version = "0.26.0" 209 211 source = "registry+https://github.com/rust-lang/crates.io-index" 210 - checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50" 212 + checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded" 211 213 dependencies = [ 212 214 "proc-macro2", 213 215 "pyo3-macros-backend", ··· 217 219 218 220 [[package]] 219 221 name = "pyo3-macros-backend" 220 - version = "0.25.1" 222 + version = "0.26.0" 221 223 source = "registry+https://github.com/rust-lang/crates.io-index" 222 - checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc" 224 + checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf" 223 225 dependencies = [ 224 226 "heck", 225 227 "proc-macro2", ··· 230 232 231 233 [[package]] 232 234 name = "quote" 233 - version = "1.0.40" 235 + version = "1.0.41" 234 236 source = "registry+https://github.com/rust-lang/crates.io-index" 235 - checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 237 + checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" 236 238 dependencies = [ 237 239 "proc-macro2", 238 240 ] 239 241 240 242 [[package]] 241 243 name = "rayon" 242 - version = "1.10.0" 244 + version = "1.11.0" 243 245 source = "registry+https://github.com/rust-lang/crates.io-index" 244 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 246 + checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" 245 247 dependencies = [ 246 248 "either", 247 249 "rayon-core", ··· 249 251 250 252 [[package]] 251 253 name = "rayon-core" 252 - version = "1.12.1" 254 + version = "1.13.0" 253 255 source = "registry+https://github.com/rust-lang/crates.io-index" 254 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 256 + checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" 255 257 dependencies = [ 256 258 "crossbeam-deque", 257 259 "crossbeam-utils",
+2 -2
pkgs/development/python-modules/blake3/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "blake3"; 15 - version = "1.0.6"; 15 + version = "1.0.7"; 16 16 pyproject = true; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "oconnor663"; 20 20 repo = "blake3-py"; 21 21 tag = version; 22 - hash = "sha256-YeIRY/3S/onlc9ip7oCZ7FHln6MmHJ49STwORsX3nzs="; 22 + hash = "sha256-km4vN/xKvjNd/bdHEIsUR9+Hmi0K5ju+wlQ2kuuDzzI="; 23 23 }; 24 24 25 25 postPatch = ''
+2 -2
pkgs/development/python-modules/cantools/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "cantools"; 22 - version = "40.7.0"; 22 + version = "40.7.1"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.9"; 26 26 27 27 src = fetchPypi { 28 28 inherit pname version; 29 - hash = "sha256-V3kROwaKsEMUDqlEGtd9RK1NOC7tiN4WZ4+zIOMhRuw="; 29 + hash = "sha256-Rn4EzIbgdjBzda6bzYNwcQjpmOPqYBm/lodzWAuaqV8="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/cynthion/default.nix
··· 27 27 }: 28 28 buildPythonPackage rec { 29 29 pname = "cynthion"; 30 - version = "0.2.3"; 30 + version = "0.2.4"; 31 31 pyproject = true; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "greatscottgadgets"; 35 35 repo = "cynthion"; 36 36 tag = version; 37 - hash = "sha256-NAsELeOnWgMa6iWCJ0+hpbHIO3BsZBv0N/nK1XP+IpU="; 37 + hash = "sha256-ebd2L7o6GO57TpwJ7+MOhVSb+I/E8kD7d7DqPj4B3FM="; 38 38 }; 39 39 40 40 sourceRoot = "${src.name}/cynthion/python";
+2 -2
pkgs/development/python-modules/datamodel-code-generator/default.nix
··· 27 27 28 28 buildPythonPackage rec { 29 29 pname = "datamodel-code-generator"; 30 - version = "0.33.0"; 30 + version = "0.34.0"; 31 31 pyproject = true; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "koxudaxi"; 35 35 repo = "datamodel-code-generator"; 36 36 tag = version; 37 - hash = "sha256-SyRF4Rn9LdcMTEH0xphDNIfEABknwvUoN2BYlNJFbrA="; 37 + hash = "sha256-fJ7+TtWLJXBaTil0LGsCyu9njDuj1pOVUZYN2huoKao="; 38 38 }; 39 39 40 40 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/django-import-export/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "django-import-export"; 17 - version = "4.3.9"; 17 + version = "4.3.10"; 18 18 pyproject = true; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "django-import-export"; 22 22 repo = "django-import-export"; 23 23 tag = version; 24 - hash = "sha256-qcxvXq+pC2leDhaeor2hrWll8bQ+x6xN99pDlnmtUic="; 24 + hash = "sha256-amc5Qp3tdtqUGGN+DMT/r/CKMkMNnx5ryA+HlzQEejk="; 25 25 }; 26 26 27 27 pythonRelaxDeps = [ "tablib" ];
+2 -2
pkgs/development/python-modules/langsmith/default.nix
··· 31 31 32 32 buildPythonPackage rec { 33 33 pname = "langsmith"; 34 - version = "0.4.29"; 34 + version = "0.4.31"; 35 35 pyproject = true; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "langchain-ai"; 39 39 repo = "langsmith-sdk"; 40 40 tag = "v${version}"; 41 - hash = "sha256-/x8e9ZfHhAQYPtGpp4PRW92QAeLNCPs9p+TnviGg6bY="; 41 + hash = "sha256-lHehU+qJBl1pX7H0QmmmVuMYrcbopQZhmCiyQ6D3k2Q="; 42 42 }; 43 43 44 44 sourceRoot = "${src.name}/python";
+2 -2
pkgs/development/python-modules/pipx/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "pipx"; 20 - version = "1.7.1"; 20 + version = "1.8.0"; 21 21 pyproject = true; 22 22 23 23 disabled = pythonOlder "3.8"; ··· 26 26 owner = "pypa"; 27 27 repo = "pipx"; 28 28 tag = version; 29 - hash = "sha256-diHWzrSpXWbNosXKN5nj2FM09HicDhHWKxQDXc+AZ4o="; 29 + hash = "sha256-TEF5zBAB0tvfY0dsZOnu2r9P+pheMr/OOI6CCY8PItg="; 30 30 }; 31 31 32 32 build-system = [
+2 -2
pkgs/development/python-modules/pyinstaller-hooks-contrib/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pyinstaller-hooks-contrib"; 10 - version = "2025.8"; 10 + version = "2025.9"; 11 11 12 12 pyproject = true; 13 13 14 14 src = fetchPypi { 15 15 pname = "pyinstaller_hooks_contrib"; 16 16 inherit version; 17 - hash = "sha256-NAKtQd/ptREK8TRCLjf8XUIbo0LGy5gL1nyzC3QVZBw="; 17 + hash = "sha256-VulyvarU6a92ftR9EyNi0WIRImDL5IjJ2n/uAfIopaY="; 18 18 }; 19 19 20 20 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/streamdeck/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "streamdeck"; 12 - version = "0.9.7"; 12 + version = "0.9.8"; 13 13 format = "setuptools"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-jVhuZihvjuA5rwl55JAmtFq+h/f5M68Vo44jh8HjUI4="; 17 + hash = "sha256-rO5K0gekDUzCJW06TCK59ZHjw5DvvlFeQ5zlGLMdASU="; 18 18 }; 19 19 20 20 patches = [
+2 -2
pkgs/development/python-modules/textual/default.nix
··· 29 29 30 30 buildPythonPackage rec { 31 31 pname = "textual"; 32 - version = "6.2.0"; 32 + version = "6.2.1"; 33 33 pyproject = true; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "Textualize"; 37 37 repo = "textual"; 38 38 tag = "v${version}"; 39 - hash = "sha256-XvuKwQwaNwgwKScgHNQyxkPXzDQtOA690Dt+VndmZ6o="; 39 + hash = "sha256-2myMafLHxJNw3EWLvlvg0wWznY6m04BOQjhYtRvYTP8="; 40 40 }; 41 41 42 42 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/trimesh/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "trimesh"; 31 - version = "4.8.2"; 31 + version = "4.8.3"; 32 32 pyproject = true; 33 33 34 34 disabled = pythonOlder "3.8"; ··· 37 37 owner = "mikedh"; 38 38 repo = "trimesh"; 39 39 tag = version; 40 - hash = "sha256-9D3cuQ6parDq2pWSJmGlMzUyxUOs6Nn9T4l8Fpz50nw="; 40 + hash = "sha256-ywLbXOE3qO3+hrqy/+cVGZA4V202eHaMUnn3Wz1iNLI="; 41 41 }; 42 42 43 43 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/whisperx/default.nix
··· 35 35 in 36 36 buildPythonPackage rec { 37 37 pname = "whisperx"; 38 - version = "3.4.2"; 38 + version = "3.4.3"; 39 39 pyproject = true; 40 40 41 41 src = fetchFromGitHub { 42 42 owner = "m-bain"; 43 43 repo = "whisperX"; 44 44 tag = "v${version}"; 45 - hash = "sha256-7MjrtvZGWfgtdQNotzdVMjj0sYfab/6PLQcZCOoqoNM="; 45 + hash = "sha256-zx77Fx8KYTWCFcC6Uy6pbe8LJtXP3b6lkwuOSEEYJfU="; 46 46 }; 47 47 48 48 build-system = [ setuptools ];
+4 -2
pkgs/development/tools/kustomize/kustomize-sops.nix
··· 18 18 vendorHash = "sha256-ajXW6H1XBgVtMdK7/asfpy6e3rFAD2pz3Lg+QFnkVpo="; 19 19 20 20 installPhase = '' 21 + mkdir -p $out/bin 21 22 mkdir -p $out/lib/viaduct.ai/v1/ksops/ 22 23 mkdir -p $out/lib/viaduct.ai/v1/ksops-exec/ 23 - mv $GOPATH/bin/kustomize-sops $out/lib/viaduct.ai/v1/ksops/ksops 24 - ln -s $out/lib/viaduct.ai/v1/ksops/ksops $out/lib/viaduct.ai/v1/ksops-exec/ksops-exec 24 + mv $GOPATH/bin/kustomize-sops $out/bin/ksops 25 + ln -s $out/bin/ksops $out/lib/viaduct.ai/v1/ksops-exec/ksops-exec 26 + ln -s $ous/bin/ksops $out/lib/viaduct.ai/v1/ksops/ksops 25 27 ''; 26 28 27 29 # Tests are broken in a nix environment
+13 -2
pkgs/games/wesnoth/default.nix pkgs/by-name/we/wesnoth/package.nix
··· 12 12 SDL2_ttf, 13 13 pango, 14 14 gettext, 15 - boost, 15 + boost186, 16 16 libvorbis, 17 17 fribidi, 18 18 dbus, ··· 20 20 pcre, 21 21 openssl, 22 22 icu, 23 - lua, 23 + lua5_4, 24 24 curl, 25 25 nix-update-script, 26 26 }: 27 + 28 + let 29 + boost = boost186; 30 + # wesnoth requires lua built with c++, see https://github.com/wesnoth/wesnoth/pull/8234 31 + lua = lua5_4.override { 32 + postConfigure = '' 33 + makeFlagsArray+=("CC=$CXX") 34 + ''; 35 + }; 36 + in 27 37 28 38 stdenv.mkDerivation (finalAttrs: { 29 39 pname = "wesnoth"; ··· 128 118 license = lib.licenses.gpl2Plus; 129 119 maintainers = with lib.maintainers; [ 130 120 niklaskorz 121 + iedame 131 122 ]; 132 123 platforms = lib.platforms.unix; 133 124 mainProgram = "wesnoth";
+6 -6
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 72 72 stable = if stdenv.hostPlatform.system == "i686-linux" then legacy_390 else production; 73 73 74 74 production = generic { 75 - version = "580.82.09"; 76 - sha256_64bit = "sha256-Puz4MtouFeDgmsNMKdLHoDgDGC+QRXh6NVysvltWlbc="; 77 - sha256_aarch64 = "sha256-6tHiAci9iDTKqKrDIjObeFdtrlEwjxOHJpHfX4GMEGQ="; 78 - openSha256 = "sha256-YB+mQD+oEDIIDa+e8KX1/qOlQvZMNKFrI5z3CoVKUjs="; 79 - settingsSha256 = "sha256-um53cr2Xo90VhZM1bM2CH4q9b/1W2YOqUcvXPV6uw2s="; 80 - persistencedSha256 = "sha256-lbYSa97aZ+k0CISoSxOMLyyMX//Zg2Raym6BC4COipU="; 75 + version = "580.95.05"; 76 + sha256_64bit = "sha256-hJ7w746EK5gGss3p8RwTA9VPGpp2lGfk5dlhsv4Rgqc="; 77 + sha256_aarch64 = "sha256-zLRCbpiik2fGDa+d80wqV3ZV1U1b4lRjzNQJsLLlICk="; 78 + openSha256 = "sha256-RFwDGQOi9jVngVONCOB5m/IYKZIeGEle7h0+0yGnBEI="; 79 + settingsSha256 = "sha256-F2wmUEaRrpR1Vz0TQSwVK4Fv13f3J9NJLtBe4UP2f14="; 80 + persistencedSha256 = "sha256-QCwxXQfG/Pa7jSTBB0xD3lsIofcerAWWAHKvWjWGQtg="; 81 81 }; 82 82 83 83 latest = selectHighestVersion production (generic {
+1 -1
pkgs/tools/misc/qt6ct/default.nix
··· 35 35 ]; 36 36 37 37 cmakeFlags = [ 38 - (lib.cmakeFeature "PLUGINDIR" "$out/${qtbase.qtPluginPrefix}") 38 + (lib.cmakeFeature "PLUGINDIR" "${placeholder "out"}/${qtbase.qtPluginPrefix}") 39 39 ]; 40 40 41 41 meta = {
+3 -3
pkgs/tools/networking/flannel/plugin.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "cni-plugin-flannel"; 9 - version = "1.7.1-flannel2"; 9 + version = "1.8.0-flannel1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "flannel-io"; 13 13 repo = "cni-plugin"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-vKHkgdmfG7jf0avwcJsNNCYlERH71ULPBHI3ObtwrIM="; 15 + sha256 = "sha256-DaE8T/c1n5Mx/MvPXw+bXO+91Ux/bcWWAdbVmNhQXIo="; 16 16 }; 17 17 18 - vendorHash = "sha256-hDodGat/aZyDSRHN6K4J8Pq9LFlclbnEmYVwxCbraKk="; 18 + vendorHash = "sha256-x4QoAXrMhzEqSNBvWl3/9Lb4JjDgwcoV9a0xEYcwKFI="; 19 19 20 20 ldflags = [ 21 21 "-s"
-12
pkgs/top-level/all-packages.nix
··· 13881 13881 13882 13882 warsow = callPackage ../games/warsow { }; 13883 13883 13884 - wesnoth = callPackage ../games/wesnoth { 13885 - boost = boost186; 13886 - # wesnoth requires lua built with c++, see https://github.com/wesnoth/wesnoth/pull/8234 13887 - lua = lua5_4.override { 13888 - postConfigure = '' 13889 - makeFlagsArray+=("CC=$CXX") 13890 - ''; 13891 - }; 13892 - }; 13893 - 13894 - wesnoth-dev = wesnoth; 13895 - 13896 13884 inherit (callPackage ../games/xonotic { }) 13897 13885 xonotic-data 13898 13886 xonotic