Merge master into staging-next

authored by nixpkgs-ci[bot] and committed by GitHub f42d1e3e 5da2bc6c

+309 -1658
+2
doc/release-notes/rl-2511.section.md
··· 35 35 36 36 - `stalwart-mail` since `0.13.0` "introduces a significant redesign of the MTA’s delivery and queueing subsystem". See [the upgrading announcement for the `0.13.0` release](https://github.com/stalwartlabs/stalwart/blob/89b561b5ca1c5a11f2a768b4a2cfef0f473b7a01/UPGRADING.md#upgrading-from-v012x-and-v011x-to-v013x). 37 37 38 + - Greetd and its original greeters (`tuigreet`, `gtkgreet`, `qtgreet`, `regreet`, `wlgreet`) were moved from `greetd` namespace to top level (`greetd.tuigreet` -> `tuigreet`, `greetd.greetd` -> `greetd`, etc). The original attrs are available for compatibility as passthrus of `greetd`, but will emit a warning. They will be removed in future releases. 39 + 38 40 - The `archipelago-minecraft` package was removed, as upstream no longer provides support for the Minecraft APWorld. 39 41 40 42 - `navidrome` 0.58.0 introduces [multi-library support](https://www.navidrome.org/docs/usage/multi-library/)
+2 -2
nixos/modules/services/display-managers/greetd.nix
··· 21 21 options.services.greetd = { 22 22 enable = lib.mkEnableOption "greetd, a minimal and flexible login manager daemon"; 23 23 24 - package = lib.mkPackageOption pkgs [ "greetd" "greetd" ] { }; 24 + package = lib.mkPackageOption pkgs "greetd" { }; 25 25 26 26 settings = lib.mkOption { 27 27 type = settingsFormat.type; 28 28 example = lib.literalExpression '' 29 29 { 30 30 default_session = { 31 - command = "''${pkgs.greetd.greetd}/bin/agreety --cmd sway"; 31 + command = "''${pkgs.greetd}/bin/agreety --cmd sway"; 32 32 }; 33 33 } 34 34 '';
+10
nixos/modules/services/hardware/tuned.nix
··· 172 172 assertion = cfg.settings.dynamic_tuning -> cfg.settings.daemon; 173 173 message = "`services.tuned.settings.dynamic_tuning` requires `services.tuned.settings.daemon` to be `true`."; 174 174 } 175 + 176 + { 177 + assertion = cfg.ppdSupport -> config.services.upower.enable; 178 + message = "`services.tuned.ppdSupport` requires `services.upower` to be enabled."; 179 + } 175 180 ] 176 181 # Declare service conflicts, also sourced from `tuned.service` 177 182 ++ ··· 218 223 # Many DEs (like GNOME and KDE Plasma) enable PPD by default 219 224 # Let's try to make it easier to transition by only enabling this module 220 225 power-profiles-daemon.enable = false; 226 + 227 + # NOTE: Required by `tuned-ppd` for handling power supply changes 228 + # (i.e., `services.tuned.ppdSettings.main.battery_detection`) 229 + # https://github.com/NixOS/nixpkgs/issues/431105 230 + upower.enable = lib.mkIf cfg.ppdSupport true; 221 231 }; 222 232 223 233 systemd = {
+1 -1
nixos/modules/services/hardware/udev.nix
··· 60 60 # We only include the out output here to avoid needing to include all 61 61 # other outputs in the installer tests as well 62 62 # We only need the udevadm command anyway 63 - pkgs.systemdMinimal.out 63 + pkgs.buildPackages.systemdMinimal.out 64 64 ]; 65 65 } 66 66 ''
+16
nixos/modules/services/networking/i2pd.nix
··· 184 184 (boolOpt "enabled" cfg.ntcp2.enable) 185 185 (boolOpt "published" cfg.ntcp2.published) 186 186 (intOpt "port" cfg.ntcp2.port) 187 + (sec "ssu2") 188 + (boolOpt "enabled" cfg.ssu2.enable) 189 + (boolOpt "published" cfg.ssu2.published) 190 + (intOpt "port" cfg.ssu2.port) 187 191 (sec "addressbook") 188 192 (strOpt "defaulturl" cfg.addressbook.defaulturl) 189 193 ] ··· 538 542 description = '' 539 543 Port to listen for incoming NTCP2 connections (0=auto). 540 544 ''; 545 + }; 546 + 547 + ssu2 = { 548 + enable = mkEnableTrueOption "SSU2"; 549 + published = mkEnableOption "SSU2 publication"; 550 + port = mkOption { 551 + type = types.port; 552 + default = 0; 553 + description = '' 554 + Port to listen for incoming SSU2 connections (0=auto). 555 + ''; 556 + }; 541 557 }; 542 558 543 559 limits.transittunnels = mkOption {
+1 -1
nixos/tests/greetd-no-shadow.nix
··· 27 27 enable = true; 28 28 settings = { 29 29 default_session = { 30 - command = "${pkgs.greetd.greetd}/bin/agreety --cmd bash"; 30 + command = "${pkgs.greetd}/bin/agreety --cmd bash"; 31 31 }; 32 32 }; 33 33 };
-53
pkgs/applications/display-managers/greetd/default.nix
··· 1 - { 2 - rustPlatform, 3 - lib, 4 - fetchFromSourcehut, 5 - pam, 6 - scdoc, 7 - installShellFiles, 8 - }: 9 - 10 - rustPlatform.buildRustPackage rec { 11 - pname = "greetd"; 12 - version = "0.10.3"; 13 - 14 - src = fetchFromSourcehut { 15 - owner = "~kennylevinsen"; 16 - repo = pname; 17 - rev = version; 18 - sha256 = "sha256-jgvYnjt7j4uubpBxrYM3YiUfF1PWuHAN1kwnv6Y+bMg="; 19 - }; 20 - 21 - cargoHash = "sha256-JwTLZawY9+M09IDbMPoNUcNrnW1C2OVlEVn1n7ol6dY="; 22 - 23 - nativeBuildInputs = [ 24 - scdoc 25 - installShellFiles 26 - ]; 27 - 28 - buildInputs = [ 29 - pam 30 - ]; 31 - 32 - postInstall = '' 33 - for f in man/*; do 34 - scdoc < "$f" > "$(sed 's/-\([0-9]\)\.scd$/.\1/' <<< "$f")" 35 - rm "$f" 36 - done 37 - installManPage man/* 38 - ''; 39 - 40 - meta = with lib; { 41 - description = "Minimal and flexible login manager daemon"; 42 - longDescription = '' 43 - greetd is a minimal and flexible login manager daemon 44 - that makes no assumptions about what you want to launch. 45 - Comes with agreety, a simple, text-based greeter. 46 - ''; 47 - homepage = "https://sr.ht/~kennylevinsen/greetd/"; 48 - mainProgram = "greetd"; 49 - license = licenses.gpl3Plus; 50 - maintainers = with maintainers; [ ]; 51 - platforms = platforms.linux; 52 - }; 53 - }
+12 -9
pkgs/applications/display-managers/greetd/gtkgreet.nix pkgs/by-name/gt/gtkgreet/package.nix
··· 12 12 json_c, 13 13 librsvg, 14 14 scdoc, 15 + nix-update-script, 15 16 }: 16 17 17 - stdenv.mkDerivation rec { 18 + stdenv.mkDerivation (finalAttrs: { 18 19 pname = "gtkgreet"; 19 20 version = "0.8"; 20 21 21 22 src = fetchFromSourcehut { 22 23 owner = "~kennylevinsen"; 23 - repo = pname; 24 - rev = version; 25 - sha256 = "sha256-GKBYql0hzqB6uY87SsAqHwf3qLAr7xznMnAjRtP4HS8="; 24 + repo = "gtkgreet"; 25 + rev = finalAttrs.version; 26 + hash = "sha256-GKBYql0hzqB6uY87SsAqHwf3qLAr7xznMnAjRtP4HS8="; 26 27 }; 27 28 28 29 depsBuildBuild = [ pkg-config ]; ··· 54 55 # G_APPLICATION_FLAGS_NONE is deprecated in GLib 2.73.3+. 55 56 env.NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; 56 57 57 - meta = with lib; { 58 + passthru.updateScript = nix-update-script { }; 59 + 60 + meta = { 58 61 description = "GTK based greeter for greetd, to be run under cage or similar"; 59 62 homepage = "https://git.sr.ht/~kennylevinsen/gtkgreet"; 60 - license = licenses.gpl3Plus; 61 - maintainers = with maintainers; [ ]; 62 - platforms = platforms.linux; 63 + license = lib.licenses.gpl3Plus; 64 + maintainers = with lib.maintainers; [ ]; 65 + platforms = lib.platforms.linux; 63 66 mainProgram = "gtkgreet"; 64 67 }; 65 - } 68 + })
pkgs/applications/display-managers/greetd/qtgreet.nix pkgs/by-name/qt/qtgreet/package.nix
+10 -7
pkgs/applications/display-managers/greetd/regreet.nix pkgs/by-name/re/regreet/package.nix
··· 8 8 gtk4, 9 9 pango, 10 10 librsvg, 11 + nix-update-script, 11 12 }: 12 13 13 - rustPlatform.buildRustPackage rec { 14 + rustPlatform.buildRustPackage (finalAttrs: { 14 15 pname = "regreet"; 15 16 version = "0.2.0"; 16 17 17 18 src = fetchFromGitHub { 18 19 owner = "rharish101"; 19 20 repo = "ReGreet"; 20 - rev = version; 21 + rev = finalAttrs.version; 21 22 hash = "sha256-f8Xvno5QqmWz4SUiFYDvs8lFU1ZaqQ8gpTaVzWxW4T8="; 22 23 }; 23 24 ··· 36 37 librsvg 37 38 ]; 38 39 39 - meta = with lib; { 40 + passthru.updateScript = nix-update-script { }; 41 + 42 + meta = { 40 43 description = "Clean and customizable greeter for greetd"; 41 44 homepage = "https://github.com/rharish101/ReGreet"; 42 - license = licenses.gpl3Plus; 43 - maintainers = with maintainers; [ fufexan ]; 44 - platforms = platforms.linux; 45 + license = lib.licenses.gpl3Plus; 46 + maintainers = with lib.maintainers; [ fufexan ]; 47 + platforms = lib.platforms.linux; 45 48 mainProgram = "regreet"; 46 49 }; 47 - } 50 + })
+8 -6
pkgs/applications/display-managers/greetd/tuigreet.nix pkgs/by-name/tu/tuigreet/package.nix
··· 2 2 lib, 3 3 rustPlatform, 4 4 fetchFromGitHub, 5 - 6 5 installShellFiles, 7 6 scdoc, 7 + nix-update-script, 8 8 }: 9 - rustPlatform.buildRustPackage rec { 9 + rustPlatform.buildRustPackage (finalAttrs: { 10 10 pname = "tuigreet"; 11 11 version = "0.9.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "apognu"; 15 15 repo = "tuigreet"; 16 - rev = "refs/tags/${version}"; 17 - sha256 = "sha256-e0YtpakEaaWdgu+bMr2VFoUc6+SUMFk4hYtSyk5aApY="; 16 + tag = finalAttrs.version; 17 + hash = "sha256-e0YtpakEaaWdgu+bMr2VFoUc6+SUMFk4hYtSyk5aApY="; 18 18 }; 19 19 20 20 cargoHash = "sha256-w6ZOqpwogKoN4oqqI1gFqY8xAnfvhEBVaL8/6JXpKXs="; ··· 29 29 installManPage tuigreet.1 30 30 ''; 31 31 32 + passthru.updateScript = nix-update-script { }; 33 + 32 34 meta = { 33 35 description = "Graphical console greeter for greetd"; 34 36 homepage = "https://github.com/apognu/tuigreet"; 35 - changelog = "https://github.com/apognu/tuigreet/releases/tag/${version}"; 37 + changelog = "https://github.com/apognu/tuigreet/releases/tag/${finalAttrs.version}"; 36 38 license = lib.licenses.gpl3Plus; 37 39 maintainers = with lib.maintainers; [ ]; 38 40 platforms = lib.platforms.linux; 39 41 mainProgram = "tuigreet"; 40 42 }; 41 - } 43 + })
+11 -8
pkgs/applications/display-managers/greetd/wlgreet.nix pkgs/by-name/wl/wlgreet/package.nix
··· 6 6 gcc-unwrapped, 7 7 wayland, 8 8 libxkbcommon, 9 + nix-update-script, 9 10 }: 10 11 11 - rustPlatform.buildRustPackage rec { 12 + rustPlatform.buildRustPackage (finalAttrs: { 12 13 pname = "wlgreet"; 13 14 version = "0.5.0"; 14 15 15 16 src = fetchFromSourcehut { 16 17 owner = "~kennylevinsen"; 17 - repo = pname; 18 - rev = version; 18 + repo = "wlgreet"; 19 + rev = finalAttrs.version; 19 20 hash = "sha256-TQTHFBOTxtSuzrAG4cjZ9oirl80xc0rPdYeLJ0t39DQ="; 20 21 }; 21 22 ··· 30 31 libxkbcommon 31 32 ]; 32 33 33 - meta = with lib; { 34 + passthru.updateScript = nix-update-script { }; 35 + 36 + meta = { 34 37 description = "Raw wayland greeter for greetd, to be run under sway or similar"; 35 38 mainProgram = "wlgreet"; 36 39 homepage = "https://git.sr.ht/~kennylevinsen/wlgreet"; 37 - license = licenses.gpl3Plus; 38 - maintainers = with maintainers; [ ]; 39 - platforms = platforms.linux; 40 + license = lib.licenses.gpl3Plus; 41 + maintainers = with lib.maintainers; [ ]; 42 + platforms = lib.platforms.linux; 40 43 }; 41 - } 44 + })
+3 -3
pkgs/applications/editors/vim/plugins/non-generated/avante-nvim/default.nix
··· 12 12 pkgs, 13 13 }: 14 14 let 15 - version = "0.0.27-unstable-2025-07-28"; 15 + version = "0.0.27-unstable-2025-08-06"; 16 16 src = fetchFromGitHub { 17 17 owner = "yetone"; 18 18 repo = "avante.nvim"; 19 - rev = "5e4eb8652b4776f139282a343f04a3a8c7f23cb0"; 20 - hash = "sha256-rmpBI2j7zwU5tIUjK7fMhfle5LVksk/kuCnwN9WQkic="; 19 + rev = "2fc63d4128d2dc2fef0913c7480b4586959ebe4e"; 20 + hash = "sha256-hHa300Ldszsnp6AuYVJwOFc5FfuRTd3phyM6/qBUIQo="; 21 21 }; 22 22 avante-nvim-lib = rustPlatform.buildRustPackage { 23 23 pname = "avante-nvim-lib";
+3 -3
pkgs/applications/emulators/libretro/cores/flycast.nix
··· 8 8 }: 9 9 mkLibretroCore { 10 10 core = "flycast"; 11 - version = "0-unstable-2025-07-11"; 11 + version = "0-unstable-2025-08-01"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "flyinghead"; 15 15 repo = "flycast"; 16 - rev = "48c58dbd18501fae92e641b6ee6ca5ca9de0d5c3"; 17 - hash = "sha256-AlvNh+tDY7FEqUm5zgm7072Z1zIXn54tvLGzLbTjLXo="; 16 + rev = "40e400ab084175d3bd0f9e10cf8d6ac78c8b9544"; 17 + hash = "sha256-k/w1tmuGuRD98bR/kmc/9pLFGeobHMhKQapJOv8qVJo="; 18 18 fetchSubmodules = true; 19 19 }; 20 20
pkgs/applications/version-management/gitlab-triage/Gemfile pkgs/by-name/gi/gitlab-triage/Gemfile
pkgs/applications/version-management/gitlab-triage/Gemfile.lock pkgs/by-name/gi/gitlab-triage/Gemfile.lock
pkgs/applications/version-management/gitlab-triage/default.nix pkgs/by-name/gi/gitlab-triage/package.nix
pkgs/applications/version-management/gitlab-triage/gemset.nix pkgs/by-name/gi/gitlab-triage/gemset.nix
+6 -6
pkgs/by-name/bl/blackfire/package.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "blackfire"; 14 - version = "2.28.29"; 14 + version = "2.28.31"; 15 15 16 16 src = 17 17 passthru.sources.${stdenv.hostPlatform.system} ··· 60 60 sources = { 61 61 "x86_64-linux" = fetchurl { 62 62 url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_amd64.deb"; 63 - sha256 = "WIL8Y2pQq9vYuSI2fq2+T21HvjAd6PJPWKi4phKB5pw="; 63 + sha256 = "v2MkLqTNG9creNZBBshTuhrMxlF4OIDlzQOgrEyKmMY="; 64 64 }; 65 65 "i686-linux" = fetchurl { 66 66 url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_i386.deb"; 67 - sha256 = "hcTVPb1zGrR3C1b5F2bgIzwH/lZV0ujeERNx0qt00Pc="; 67 + sha256 = "hFJdO/YFxwCpWBmR8jZwmak2Fc9wgMwLax5puaLVEbs="; 68 68 }; 69 69 "aarch64-linux" = fetchurl { 70 70 url = "https://packages.blackfire.io/debian/pool/any/main/b/blackfire/blackfire_${version}_arm64.deb"; 71 - sha256 = "7Qs47SjAhsOAIcCCCJk7jjDD1ab7CyjbPHfXl25z9mE="; 71 + sha256 = "RDk4DE0x24m5yBBezlGuLQ/l7yugyd5SYvfYoDFfJuI="; 72 72 }; 73 73 "aarch64-darwin" = fetchurl { 74 74 url = "https://packages.blackfire.io/blackfire/${version}/blackfire-darwin_arm64.pkg.tar.gz"; 75 - sha256 = "v4ApyuA9kMfqZAGVXPSSJJS0fm9lP2zz0iD8lf9VGa0="; 75 + sha256 = "Xq0G0w2FJXEGVmXmyhbdzXY9OiZn4+5i8GypMOdeAhA="; 76 76 }; 77 77 "x86_64-darwin" = fetchurl { 78 78 url = "https://packages.blackfire.io/blackfire/${version}/blackfire-darwin_amd64.pkg.tar.gz"; 79 - sha256 = "t78kpafSfbCA/0Kzhn/+/wjAet2qne33CYqFvRT0XUM="; 79 + sha256 = "cHmh1JyPa2u2c6KGlZC1/hlDlxMSrDKY1jwaEcJVq0M="; 80 80 }; 81 81 }; 82 82
+2 -1
pkgs/by-name/ca/cargo-tauri/test-app.nix
··· 16 16 let 17 17 pnpm = pnpm_9; 18 18 in 19 + 19 20 stdenv.mkDerivation (finalAttrs: { 20 21 pname = "test-app"; 21 22 inherit (cargo-tauri) version src; ··· 35 36 ; 36 37 37 38 fetcherVersion = 1; 38 - hash = "sha256-I++iYwqSxACmXFvfPYAnY/0WSWSY6ElJYnylJDC03D8="; 39 + hash = "sha256-7F2vk6WUeXunTuXX9J0rVhl2I0ENYagRdqTy+WAXBB8="; 39 40 }; 40 41 41 42 nativeBuildInputs = [
+4 -4
pkgs/by-name/cl/claude-code/package-lock.json
··· 6 6 "packages": { 7 7 "": { 8 8 "dependencies": { 9 - "@anthropic-ai/claude-code": "^1.0.67" 9 + "@anthropic-ai/claude-code": "^1.0.69" 10 10 } 11 11 }, 12 12 "node_modules/@anthropic-ai/claude-code": { 13 - "version": "1.0.67", 14 - "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.67.tgz", 15 - "integrity": "sha512-r7CfhbKBXgaL5Wo0BIh08SOahFYQPcbHCNnMLtse7iDd2IVBWeOxqoiqQvzRQ0wTCiqLTshRbnmLWHyP4AbuyQ==", 13 + "version": "1.0.69", 14 + "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-1.0.69.tgz", 15 + "integrity": "sha512-kF86lNI9o6rt14cEDw16G89rHz4pL0lv/sASztV8XenEeQ/6VUZ5Jk+icYg6XTQKe33BsdtNKFS3IL3iLyzQyw==", 16 16 "license": "SEE LICENSE IN README.md", 17 17 "bin": { 18 18 "claude": "cli.js"
+3 -3
pkgs/by-name/cl/claude-code/package.nix
··· 7 7 8 8 buildNpmPackage rec { 9 9 pname = "claude-code"; 10 - version = "1.0.67"; 10 + version = "1.0.69"; 11 11 12 12 nodejs = nodejs_20; # required for sandboxed Nix builds on Darwin 13 13 14 14 src = fetchzip { 15 15 url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${version}.tgz"; 16 - hash = "sha256-NZgv0nGsq+RuPTJcX0GsE1NWs/PFge2A0ek3BL1fJeY="; 16 + hash = "sha256-uZbe7N3FSAVxNxL7npujJcBFH6ZjnwDz327bZWN2IEM="; 17 17 }; 18 18 19 - npmDepsHash = "sha256-v994F0x0LCh+QbIfCywk5agxn7tNhhi+uo/3ka5Iuww="; 19 + npmDepsHash = "sha256-a06NT96pVOiz06ZZ9r+1s+oF9U/I7SRJFFAw1e0NkMY="; 20 20 21 21 postPatch = '' 22 22 cp ${./package-lock.json} package-lock.json
+2 -2
pkgs/by-name/co/containerd/package.nix
··· 16 16 17 17 buildGoModule rec { 18 18 pname = "containerd"; 19 - version = "2.1.3"; 19 + version = "2.1.4"; 20 20 21 21 outputs = [ 22 22 "out" ··· 28 28 owner = "containerd"; 29 29 repo = "containerd"; 30 30 tag = "v${version}"; 31 - hash = "sha256-MqHcwomsVYbjziO0vIpGAcREChe5mbJVGsvM96bszLA="; 31 + hash = "sha256-eC9mfB/FWDxOGucNizHBiRkhkEFDdSxu9vRnXZp5Tug="; 32 32 }; 33 33 34 34 postPatch = "patchShebangs .";
+3 -2
pkgs/by-name/de/deja-dup/package.nix
··· 28 28 29 29 stdenv.mkDerivation (finalAttrs: { 30 30 pname = "deja-dup"; 31 - version = "48.2"; 31 + version = "48.3"; 32 32 33 33 src = fetchFromGitLab { 34 34 domain = "gitlab.gnome.org"; 35 35 owner = "World"; 36 36 repo = "deja-dup"; 37 37 rev = finalAttrs.version; 38 - hash = "sha256-g6bGOlpiEMJ9d+xe2GJyTBWAuGlY9EZTlJaYhB/5Ldw="; 38 + hash = "sha256-3tjJljCdugfjfysd0afUYY7Gc1UcaP4w4jgxVDr5tBM="; 39 39 }; 40 40 41 41 patches = [ ··· 92 92 and uses duplicity as the backend. 93 93 ''; 94 94 homepage = "https://apps.gnome.org/DejaDup/"; 95 + changelog = "https://gitlab.gnome.org/World/deja-dup/-/releases/${finalAttrs.version}"; 95 96 license = licenses.gpl3Plus; 96 97 maintainers = with maintainers; [ jtojnar ]; 97 98 teams = [ teams.gnome-circle ];
+3 -3
pkgs/by-name/do/dokieli/package.nix
··· 13 13 in 14 14 stdenv.mkDerivation (finalAttrs: { 15 15 pname = "dokieli"; 16 - version = "0-unstable-2025-07-11"; 16 + version = "0-unstable-2025-08-04"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "dokieli"; 20 20 repo = "dokieli"; 21 - rev = "13c0c2d2d307ab1f391aca9aec4efc4ac4ba43c5"; 22 - hash = "sha256-V9tKoSu1r8LZaIZUu1JSyZ0dM7/zblTDQZHu86/V3LE="; 21 + rev = "64374c6b9a53b68ae7921604a1fbe231d3e4f067"; 22 + hash = "sha256-5baBKXmOxS0BOKNedMSbmw21rDBONZwmim9hlXn5OzQ="; 23 23 }; 24 24 25 25 missingHashes = ./missing-hashes.json;
+3 -3
pkgs/by-name/fl/fluxcd-operator-mcp/package.nix
··· 9 9 }: 10 10 buildGoModule (finalAttrs: { 11 11 pname = "fluxcd-operator-mcp"; 12 - version = "0.24.1"; 12 + version = "0.26.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "controlplaneio-fluxcd"; 16 16 repo = "fluxcd-operator"; 17 17 tag = "v${finalAttrs.version}"; 18 - hash = "sha256-/a/k2q1Qu/0Zz7qxBtGB27CZ5vKhqAAIDUknRT8dK04="; 18 + hash = "sha256-OT2H2veijX5l0QCpecLsq1vBR8+912MR3kojMICfFAg="; 19 19 }; 20 20 21 - vendorHash = "sha256-tyYE/OdVUxqNP3Csukc2ctDchB9x2BdBYXYq9EsiFkg="; 21 + vendorHash = "sha256-w7WEckmoajsR4sKCrheq34T0XC2ubnZhz6cVQmzHzN0="; 22 22 23 23 ldflags = [ 24 24 "-s"
+2 -2
pkgs/by-name/ga/garnet/package.nix
··· 8 8 9 9 buildDotnetModule rec { 10 10 pname = "garnet"; 11 - version = "1.0.78"; 11 + version = "1.0.79"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "microsoft"; 15 15 repo = "garnet"; 16 16 tag = "v${version}"; 17 - hash = "sha256-V/h0X4CZ9FOcUetyyvo9umYS+VqJbYehg3QS/yp4OBM="; 17 + hash = "sha256-EXI/6yctbAX2tcUYsb9sHXed5pik/uttXoY0gCnH9H8="; 18 18 }; 19 19 20 20 projectFile = "main/GarnetServer/GarnetServer.csproj";
+79
pkgs/by-name/gr/greetd/package.nix
··· 1 + { 2 + rustPlatform, 3 + lib, 4 + fetchFromSourcehut, 5 + pam, 6 + scdoc, 7 + installShellFiles, 8 + nix-update-script, 9 + # legacy passthrus 10 + gtkgreet, 11 + qtgreet, 12 + regreet, 13 + tuigreet, 14 + wlgreet, 15 + }: 16 + 17 + rustPlatform.buildRustPackage (finalAttrs: { 18 + pname = "greetd"; 19 + version = "0.10.3"; 20 + 21 + src = fetchFromSourcehut { 22 + owner = "~kennylevinsen"; 23 + repo = "greetd"; 24 + rev = finalAttrs.version; 25 + hash = "sha256-jgvYnjt7j4uubpBxrYM3YiUfF1PWuHAN1kwnv6Y+bMg="; 26 + }; 27 + 28 + cargoHash = "sha256-JwTLZawY9+M09IDbMPoNUcNrnW1C2OVlEVn1n7ol6dY="; 29 + 30 + nativeBuildInputs = [ 31 + scdoc 32 + installShellFiles 33 + ]; 34 + 35 + buildInputs = [ 36 + pam 37 + ]; 38 + 39 + postInstall = '' 40 + for f in man/*; do 41 + scdoc < "$f" > "$(sed 's/-\([0-9]\)\.scd$/.\1/' <<< "$f")" 42 + rm "$f" 43 + done 44 + installManPage man/* 45 + ''; 46 + 47 + # Added 2025-07-23. To be deleted on 26.05 48 + passthru = 49 + let 50 + warnPassthru = name: lib.warnOnInstantiate "`greetd.${name}` was renamed to `${name}`"; 51 + in 52 + lib.mapAttrs warnPassthru { 53 + inherit 54 + gtkgreet 55 + qtgreet 56 + regreet 57 + tuigreet 58 + wlgreet 59 + ; 60 + } 61 + // { 62 + greetd = warnPassthru "greetd" finalAttrs.finalPackage; 63 + updateScript = nix-update-script { }; 64 + }; 65 + 66 + meta = { 67 + description = "Minimal and flexible login manager daemon"; 68 + longDescription = '' 69 + greetd is a minimal and flexible login manager daemon 70 + that makes no assumptions about what you want to launch. 71 + Comes with agreety, a simple, text-based greeter. 72 + ''; 73 + homepage = "https://sr.ht/~kennylevinsen/greetd/"; 74 + mainProgram = "greetd"; 75 + license = lib.licenses.gpl3Plus; 76 + maintainers = with lib.maintainers; [ ]; 77 + platforms = lib.platforms.linux; 78 + }; 79 + })
+3 -3
pkgs/by-name/h2/h2o/package.nix
··· 23 23 24 24 stdenv.mkDerivation (finalAttrs: { 25 25 pname = "h2o"; 26 - version = "2.3.0.20250519"; 26 + version = "2.3.0.20250717"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "h2o"; 30 30 repo = "h2o"; 31 - rev = "87e2aa634f2c0d9f3d9429f7a3cf273f98db0058"; 32 - sha256 = "sha256-/9YnaOqvYmFme4/mFq8Sx78FMDyGwnErEW45qPVELjU="; 31 + rev = "db98b59ba7abfcd1dc9b43ea4b9ad1052aba775e"; 32 + sha256 = "sha256-vBA5TWyvtaaBZV4RmfAAA7F34fXNkROS0rbZRpEJgrc="; 33 33 }; 34 34 35 35 outputs = [
+3 -3
pkgs/by-name/hy/hyprls/package.nix
··· 6 6 }: 7 7 buildGoModule rec { 8 8 pname = "hyprls"; 9 - version = "0.7.0"; 9 + version = "0.8.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "hyprland-community"; 13 13 repo = "hyprls"; 14 14 rev = "v${version}"; 15 - hash = "sha256-cJDDyF44nD/XvxtaGPYCk2MC574HDBHP1ByhVwqatvQ="; 15 + hash = "sha256-txJSqXIkIYmjg/k5enChHHwJaoAhJ2c6hMHjS/i4v5c="; 16 16 }; 17 17 18 - vendorHash = "sha256-WTdwIAC3gDWgCKlVuOtMyl0ZfdZ9RhlpqUl2S2d65HA="; 18 + vendorHash = "sha256-a2OdESOXrinALzC2AJ0cudMsDwzdi1Jl2kckI0OratA="; 19 19 20 20 checkFlags = [ 21 21 # Not yet implemented
+2 -2
pkgs/by-name/ko/komikku/package.nix
··· 23 23 24 24 python3.pkgs.buildPythonApplication rec { 25 25 pname = "komikku"; 26 - version = "1.83.0"; 26 + version = "1.84.0"; 27 27 pyproject = false; 28 28 29 29 src = fetchFromGitea { ··· 31 31 owner = "valos"; 32 32 repo = "Komikku"; 33 33 tag = "v${version}"; 34 - hash = "sha256-cwNSjzCy4lv71O3XAcDXVF+75MhQ6gMrMz/IuePCdak="; 34 + hash = "sha256-bzz49ILpqzOStBdRGMhBKkxI4RlVuDjCqhcIjQGGQmk="; 35 35 }; 36 36 37 37 nativeBuildInputs = [
+2 -2
pkgs/by-name/lo/lock/package.nix
··· 19 19 20 20 stdenv.mkDerivation (finalAttrs: { 21 21 pname = "lock"; 22 - version = "1.6.6"; 22 + version = "1.6.7"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "konstantintutsch"; 26 26 repo = "Lock"; 27 27 tag = "v${finalAttrs.version}"; 28 - hash = "sha256-JAtQxmcLFNj6epk3ipVaa/u7fQ4E2maHZN+7jk+ktmE="; 28 + hash = "sha256-5wbt+zZANWNbKJtcptovkPsGMUjGHmiX2vniLRqrQNc="; 29 29 }; 30 30 31 31 strictDeps = true;
+2 -2
pkgs/by-name/lu/lunatask/package.nix
··· 6 6 }: 7 7 8 8 let 9 - version = "2.1.3"; 9 + version = "2.1.5"; 10 10 pname = "lunatask"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/lunatask/lunatask/releases/download/v${version}/Lunatask-${version}.AppImage"; 14 - hash = "sha256-kVNuCtUyY8UkalXlIpfenjB4JApDZVabawLOhFxToyY="; 14 + hash = "sha256-kuf3NE7or7zCcefShhKzVoCX7WsnHwtleZRafKYhWrM="; 15 15 }; 16 16 17 17 appimageContents = appimageTools.extract {
+2 -2
pkgs/by-name/mk/mkvtoolnix/package.nix
··· 52 52 in 53 53 stdenv.mkDerivation (finalAttrs: { 54 54 pname = "mkvtoolnix"; 55 - version = "93.0"; 55 + version = "94.0"; 56 56 57 57 src = fetchFromGitea { 58 58 domain = "codeberg.org"; 59 59 owner = "mbunkus"; 60 60 repo = "mkvtoolnix"; 61 61 tag = "release-${finalAttrs.version}"; 62 - hash = "sha256-xCO5wKZO2fcO6+KhPO5+OpOvAFuqOuQ2A3V+LzFYLNY="; 62 + hash = "sha256-BEvb0+e1ugGPkj6MnX1uOvQ2k+zvlqLXFiBHFt3a5qw="; 63 63 }; 64 64 65 65 passthru = {
+3 -3
pkgs/by-name/ne/nest-cli/package.nix
··· 7 7 8 8 buildNpmPackage rec { 9 9 pname = "nest-cli"; 10 - version = "11.0.8"; 10 + version = "11.0.10"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "nestjs"; 14 14 repo = "nest-cli"; 15 15 tag = version; 16 - hash = "sha256-vqu5eUtr8oO2HgQhXIHel92qHhHJSqyAJmI2+Oc5VoY="; 16 + hash = "sha256-mNnEbZv6LG5YDYZj7kAiPcg2Se9wJidON+9Tp/TIpd4="; 17 17 }; 18 18 19 - npmDepsHash = "sha256-QLJBqVHEvOhRRGU9x/5hCvRSi0xKYMDXeqMi6yWNHbU="; 19 + npmDepsHash = "sha256-dEg0WmNNNLMQj+9bHkwf0uz9Vyx+QFSHrQv7fk1DxjQ="; 20 20 npmFlags = [ "--legacy-peer-deps" ]; 21 21 22 22 env = {
+3 -3
pkgs/by-name/ne/newsflash/package.nix
··· 27 27 28 28 stdenv.mkDerivation (finalAttrs: { 29 29 pname = "newsflash"; 30 - version = "4.1.2"; 30 + version = "4.1.3"; 31 31 32 32 src = fetchFromGitLab { 33 33 owner = "news-flash"; 34 34 repo = "news_flash_gtk"; 35 35 tag = "v.${finalAttrs.version}"; 36 - hash = "sha256-yNO9ju5AQzMeZlQN1f3FRiFA6hq89mSuQClrJkoM+xE="; 36 + hash = "sha256-Ll1w6gWwlGq7pG/S/PZYujG6SqhThg4gLkdBdu/8czI="; 37 37 }; 38 38 39 39 cargoDeps = rustPlatform.fetchCargoVendor { 40 40 inherit (finalAttrs) pname version src; 41 - hash = "sha256-gF1wHLM5t0jYm/nWQQeAbDlExsPYNV0/YYH0yfQuetM="; 41 + hash = "sha256-GJzBdJIa1KNZax4FSns/IfNLnAdpOfkEi/lFLuNmHVs="; 42 42 }; 43 43 44 44 postPatch = ''
+2 -3
pkgs/by-name/ol/ollama/package.nix
··· 116 116 goBuild (finalAttrs: { 117 117 pname = "ollama"; 118 118 # don't forget to invalidate all hashes each update 119 - version = "0.11.0"; 119 + version = "0.11.3"; 120 120 121 121 src = fetchFromGitHub { 122 122 owner = "ollama"; 123 123 repo = "ollama"; 124 124 tag = "v${finalAttrs.version}"; 125 - hash = "sha256-po7BxJAj9eOpOaXsLDmw6/1RyjXPtXza0YUv0pVojZ0="; 126 - fetchSubmodules = true; 125 + hash = "sha256-FghgCtVQIxc9qB5vZZlblugk6HLnxoT8xanZK+N8qEc="; 127 126 }; 128 127 129 128 vendorHash = "sha256-SlaDsu001TUW+t9WRp7LqxUSQSGDF1Lqu9M1bgILoX4=";
+8
pkgs/by-name/op/open-policy-agent/package.nix
··· 61 61 # Skip tests that require network, not available in the darwin sandbox 62 62 "TestHTTPSClient" 63 63 "TestHTTPSNoClientCerts" 64 + "TestSocketHTTPGetRequest" 65 + 66 + # Flaky 67 + "TestBenchMainWithBundleRegoVersion" 68 + "TestClientTLSWithCustomCACert" 69 + "TestECR" 70 + "TestManagerWithOPATelemetryUpdateLoop" 64 71 ] 65 72 ++ lib.optionals (!enableWasmEval) [ 66 73 "TestRegoTargetWasmAndTargetPluginDisablesIndexingTopdownStages" ··· 81 88 # remove tests that have "too many open files"/"no space left on device" issues on darwin in hydra 82 89 + lib.optionalString stdenv.hostPlatform.isDarwin '' 83 90 rm v1/server/server_test.go 91 + rm v1/server/server_bench_test.go 84 92 ''; 85 93 86 94 postInstall = ''
+3 -3
pkgs/by-name/re/renode-dts2repl/package.nix
··· 7 7 8 8 python3.pkgs.buildPythonApplication { 9 9 pname = "renode-dts2repl"; 10 - version = "0-unstable-2025-07-24"; 10 + version = "0-unstable-2025-08-01"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "antmicro"; 15 15 repo = "dts2repl"; 16 - rev = "b94aaad8ad6cd3252160a11ac37f2bde8280d1b0"; 17 - hash = "sha256-Cdg3uyZC55ajUlghHkqoGGN/kZnjuHVxIEvo2LDua1Q="; 16 + rev = "c281274af377459710de24eb44672bb9a37d10b1"; 17 + hash = "sha256-K2dlQHBKDNh5ndGvbRr35AMG/g1Bvmsumr9uBuRxHZ8="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+3 -3
pkgs/by-name/sh/shotman/package.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "shotman"; 13 - version = "0.4.7"; 13 + version = "0.4.10"; 14 14 15 15 src = fetchFromSourcehut { 16 16 owner = "~whynothugo"; 17 17 repo = "shotman"; 18 18 rev = "v${version}"; 19 - hash = "sha256-kf/qloCaptxPzPEgd8fkzTfgqsI/PC3KJfHpBQWadjQ="; 19 + hash = "sha256-j9HNqRJnGiy720uS0zC6Tt1WjF4b6+XqPEMTqTEOD6w="; 20 20 }; 21 21 22 - cargoHash = "sha256-ZL0dKvCX/cvMzJi05qPULlwWuUcXH/bY84sDH67UFHg="; 22 + cargoHash = "sha256-+PpNf79yz5e5Mr6HAqE9Wg/0S8JO4rWrMT7JtQYAWPs="; 23 23 24 24 nativeBuildInputs = [ 25 25 pkg-config
+3 -3
pkgs/by-name/sk/skim/package.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "skim"; 15 - version = "0.20.2"; 15 + version = "0.20.3"; 16 16 17 17 outputs = [ 18 18 "out" ··· 24 24 owner = "skim-rs"; 25 25 repo = "skim"; 26 26 tag = "v${version}"; 27 - hash = "sha256-fEd6t+adYI1jpRapZ/XHpxVWtX0nwUl9ZurIwywSFgk="; 27 + hash = "sha256-DyrndFT4gPLLdBtvS/QI0UDMtKKeK8oX2K2h4/6xvb0="; 28 28 }; 29 29 30 30 postPatch = '' 31 31 sed -i -e "s|expand('<sfile>:h:h')|'$out'|" plugin/skim.vim 32 32 ''; 33 33 34 - cargoHash = "sha256-oRcqaXWa/eh5QQtTk0NQr90aL/Q0zgxQbPIoMLMtHe8="; 34 + cargoHash = "sha256-BcWszU7S0imGlXgQ5e1L9yLfXzYzseK0z2BnqIqKkzg="; 35 35 36 36 nativeBuildInputs = [ installShellFiles ]; 37 37
+1
pkgs/by-name/sq/squid/package.nix
··· 88 88 cp src/squid $out/bin 89 89 cp src/unlinkd $out/libexec 90 90 cp src/mime.conf.default $out/etc/mime.conf 91 + cp src/log/file/log_file_daemon $out/libexec 91 92 cp -r icons $out/share 92 93 cp -r errors $out/share 93 94 runHook postInstall
+4
pkgs/by-name/wa/wayland-bongocat/package.nix
··· 6 6 wayland, 7 7 wayland-protocols, 8 8 wayland-scanner, 9 + versionCheckHook, 9 10 }: 10 11 stdenv.mkDerivation (finalAttrs: { 11 12 pname = "wayland-bongocat"; ··· 44 45 45 46 runHook postInstall 46 47 ''; 48 + 49 + doInstallCheck = true; 50 + nativeInstallCheckInputs = [ versionCheckHook ]; 47 51 48 52 # Package information 49 53 meta = {
+3 -3
pkgs/by-name/ze/zed-editor/package.nix
··· 99 99 in 100 100 rustPlatform.buildRustPackage (finalAttrs: { 101 101 pname = "zed-editor"; 102 - version = "0.197.5"; 102 + version = "0.197.6"; 103 103 104 104 outputs = [ 105 105 "out" ··· 112 112 owner = "zed-industries"; 113 113 repo = "zed"; 114 114 tag = "v${finalAttrs.version}"; 115 - hash = "sha256-IbyM7iM9ErzVSb07NgTpgRI2VH1y+DJeKKiFYLyOqpk="; 115 + hash = "sha256-+QynG2YvAxl3v6Rb89+wv4wSSrBKYKeYfmoQ6pGLa4w="; 116 116 }; 117 117 118 118 patches = [ ··· 138 138 --replace-fail "inner.redirect(policy)" "inner.redirect_policy(policy)" 139 139 ''; 140 140 141 - cargoHash = "sha256-ECtVsZiOEYsax8Zp4EFqbtCo/w6FfjJCnPWJ7YnmQ0U="; 141 + cargoHash = "sha256-O5HUOVtaxUdanh83JjauUskMnEv+y7BWY6S7T4WbgyE="; 142 142 143 143 nativeBuildInputs = [ 144 144 cmake
+4
pkgs/development/ada-modules/gnatprove/default.nix
··· 52 52 hash = "sha256-mZWP9yF1O4knCiXx8CqolnS+93bM+hTQy40cd0HZmwI="; 53 53 }; 54 54 commit_date = "2023-01-05"; 55 + patches = [ 56 + # Changes to the GNAT frontend: https://github.com/AdaCore/spark2014/issues/58 57 + ./0003-Adjust-after-category-change-for-N_Formal_Package_De.patch 58 + ]; 55 59 }; 56 60 "14" = { 57 61 src = fetchSpark2014 {
+2 -4
pkgs/development/compilers/gcc/patches/default.nix
··· 245 245 "13" = [ 246 246 (fetchpatch { 247 247 name = "gcc-13-darwin-aarch64-support.patch"; 248 - url = "https://raw.githubusercontent.com/Homebrew/formula-patches/bda0faddfbfb392e7b9c9101056b2c5ab2500508/gcc/gcc-13.3.0.diff"; 249 - sha256 = "sha256-RBTCBXIveGwuQGJLzMW/UexpUZdDgdXprp/G2NHkmQo="; 248 + url = "https://raw.githubusercontent.com/Homebrew/formula-patches/698885df7f624d0ce15bceb79a4d9760a473b502/gcc/gcc-13.4.0.diff"; 249 + hash = "sha256-xqkBDFYZ6fdowtqR3kV7bR8a4Cu11RDokSzGn1k3a1w="; 250 250 }) 251 - # Needed to build LLVM>18 252 - ./cfi_startproc-reorder-label-2.diff 253 251 ]; 254 252 # Patches from https://github.com/iains/gcc-12-branch/compare/2bada4bc59bed4be34fab463bdb3c3ebfd2b41bb..gcc-12-4-darwin 255 253 "12" = [
+2 -2
pkgs/development/compilers/gcc/versions.nix
··· 2 2 majorMinorToVersionMap = { 3 3 "15" = "15.1.0"; 4 4 "14" = "14.3.0"; 5 - "13" = "13.3.0"; 5 + "13" = "13.4.0"; 6 6 "12" = "12.4.0"; 7 7 "11" = "11.5.0"; 8 8 "10" = "10.5.0"; ··· 19 19 # 4 digits: snapshots (14.2.1.20250322) 20 20 "15.1.0" = "sha256-4rCewhZg8B/s/7cV4BICZSFpQ/A40OSKmGhxPlTwbOo="; 21 21 "14.3.0" = "sha256-4Nx3KXYlYxrI5Q+pL//v6Jmk63AlktpcMu8E4ik6yjo="; 22 - "13.3.0" = "sha256-CEXpYhyVQ6E/SE6UWEpJ/8ASmXDpkUYkI1/B0GGgwIM="; 22 + "13.4.0" = "sha256-nEzm27BAVo/cVFWIrAPFy8lajb8MeqSQFwhDr7WcqPU="; 23 23 "12.4.0" = "sha256-cE9lJgTMvMsUvavzR4yVEciXiLEss7v/3tNzQZFqkXU="; 24 24 "11.5.0" = "sha256-puIYaOrVRc+H8MAfhCduS1KB1nIJhZHByJYkHwk2NHg="; 25 25 "10.5.0" = "sha256-JRCVQ/30bzl8NHtdi3osflaUpaUczkucbh6opxyjB8E=";
-56
pkgs/development/libraries/science/math/magma/default.nix
··· 1 - args@{ 2 - callPackage, 3 - lib, 4 - ... 5 - }: 6 - 7 - # Type aliases 8 - # Release = { 9 - # version: String 10 - # hash: String 11 - # supportedGpuTargets: List String 12 - # } 13 - 14 - let 15 - inherit (lib) lists strings trivial; 16 - 17 - computeName = version: "magma_${strings.replaceStrings [ "." ] [ "_" ] version}"; 18 - 19 - # buildMagmaPackage :: Release -> Derivation 20 - buildMagmaPackage = 21 - magmaRelease: 22 - callPackage ./generic.nix ( 23 - (builtins.removeAttrs args [ "callPackage" ]) 24 - // { 25 - inherit magmaRelease; 26 - } 27 - ); 28 - 29 - # Reverse the list to have the latest release first 30 - # magmaReleases :: List Release 31 - magmaReleases = lists.reverseList (builtins.import ./releases.nix); 32 - 33 - # The latest release is the first element of the list and will be our default choice 34 - # latestReleaseName :: String 35 - latestReleaseName = computeName (builtins.head magmaReleases).version; 36 - 37 - # Function to transform our releases into build attributes 38 - # toBuildAttrs :: Release -> { name: String, value: Derivation } 39 - toBuildAttrs = release: { 40 - name = computeName release.version; 41 - value = buildMagmaPackage release; 42 - }; 43 - 44 - # Add all supported builds as attributes 45 - # allBuilds :: AttrSet String Derivation 46 - allBuilds = builtins.listToAttrs (lists.map toBuildAttrs magmaReleases); 47 - 48 - # The latest release will be our default build 49 - # defaultBuild :: AttrSet String Derivation 50 - defaultBuild.magma = allBuilds.${latestReleaseName}; 51 - 52 - # builds :: AttrSet String Derivation 53 - builds = allBuilds // defaultBuild; 54 - in 55 - 56 - builds
+36 -19
pkgs/development/libraries/science/math/magma/generic.nix pkgs/by-name/ma/magma/package.nix
··· 1 - # Type aliases 2 - # Release = { 3 - # version: String 4 - # hash: String 5 - # supportedGpuTargets: List String 6 - # } 7 - 8 1 { 9 2 autoPatchelfHook, 10 3 blas, ··· 13 6 cudaPackages, 14 7 cudaSupport ? config.cudaSupport, 15 8 fetchurl, 16 - fetchpatch, 17 9 gfortran, 18 10 gpuTargets ? [ ], # Non-CUDA targets, that is HIP 19 11 rocmPackages, 20 12 lapack, 21 13 lib, 22 14 libpthreadstubs, 23 - magmaRelease, 24 15 ninja, 25 16 python3, 26 17 config, ··· 40 31 strings 41 32 trivial 42 33 ; 43 - inherit (magmaRelease) version hash supportedGpuTargets; 44 34 45 35 inherit (cudaPackages) cudaAtLeast flags cudaOlder; 46 36 37 + supportedGpuTargets = [ 38 + "700" 39 + "701" 40 + "702" 41 + "703" 42 + "704" 43 + "705" 44 + "801" 45 + "802" 46 + "803" 47 + "805" 48 + "810" 49 + "900" 50 + "902" 51 + "904" 52 + "906" 53 + "908" 54 + "909" 55 + "90c" 56 + "1010" 57 + "1011" 58 + "1012" 59 + "1030" 60 + "1031" 61 + "1032" 62 + "1033" 63 + ]; 64 + 47 65 # NOTE: The lists.subtractLists function is perhaps a bit unintuitive. It subtracts the elements 48 66 # of the first list *from* the second list. That means: 49 67 # lists.subtractLists a b = b - a ··· 95 113 96 114 stdenv.mkDerivation (finalAttrs: { 97 115 pname = "magma"; 98 - inherit version; 116 + version = "2.9.0"; 99 117 100 118 src = fetchurl { 101 - name = "magma-${version}.tar.gz"; 102 - url = "https://icl.cs.utk.edu/projectsfiles/magma/downloads/magma-${version}.tar.gz"; 103 - inherit hash; 119 + url = "https://icl.cs.utk.edu/projectsfiles/magma/downloads/magma-${finalAttrs.version}.tar.gz"; 120 + hash = "sha256-/3f9Nyaz3+w7+1V5CwZICqXMOEOWwts1xW/a5KgsZBw="; 104 121 }; 105 122 106 123 # Magma doesn't have anything which could be run under doCheck, but it does build test suite executables. ··· 363 380 }; 364 381 }; 365 382 366 - meta = with lib; { 383 + meta = { 367 384 description = "Matrix Algebra on GPU and Multicore Architectures"; 368 - license = licenses.bsd3; 385 + license = lib.licenses.bsd3; 369 386 homepage = "https://icl.utk.edu/magma/"; 370 - changelog = "https://github.com/icl-utk-edu/magma/blob/v${version}/ReleaseNotes"; 371 - platforms = platforms.linux; 372 - maintainers = with maintainers; [ connorbaker ]; 387 + changelog = "https://github.com/icl-utk-edu/magma/blob/v${finalAttrs.version}/ReleaseNotes"; 388 + platforms = lib.platforms.linux; 389 + maintainers = with lib.maintainers; [ connorbaker ]; 373 390 374 391 # Cf. https://github.com/icl-utk-edu/magma/blob/v2.9.0/CMakeLists.txt#L24-L31 375 392 broken =
-38
pkgs/development/libraries/science/math/magma/releases.nix
··· 1 - # NOTE: Order matters! Put the oldest version first, and the newest version last. 2 - # NOTE: Make sure the supportedGpuTargets are in order of oldest to newest. 3 - # You can update the supportedGpuTargets by looking at the CMakeLists.txt file. 4 - # HIP is here: https://github.com/icl-utk-edu/magma/blob/v2.9.0/CMakeLists.txt#L290 5 - # CUDA works around magma's wrappers and uses FindCUDAToolkit directly 6 - [ 7 - { 8 - version = "2.9.0"; 9 - hash = "sha256-/3f9Nyaz3+w7+1V5CwZICqXMOEOWwts1xW/a5KgsZBw="; 10 - supportedGpuTargets = [ 11 - "700" 12 - "701" 13 - "702" 14 - "703" 15 - "704" 16 - "705" 17 - "801" 18 - "802" 19 - "803" 20 - "805" 21 - "810" 22 - "900" 23 - "902" 24 - "904" 25 - "906" 26 - "908" 27 - "909" 28 - "90c" 29 - "1010" 30 - "1011" 31 - "1012" 32 - "1030" 33 - "1031" 34 - "1032" 35 - "1033" 36 - ]; 37 - } 38 - ]
+1 -1
pkgs/development/ocaml-modules/ppx_deriving/default.nix
··· 47 47 nativeBuildInputs = [ cppo ]; 48 48 buildInputs = [ 49 49 findlib 50 - ppxlib 51 50 ]; 52 51 propagatedBuildInputs = 53 52 lib.optional (lib.versionOlder version "5.2") ocaml-migrate-parsetree 54 53 ++ [ 55 54 ppx_derivers 55 + ppxlib 56 56 ] 57 57 ++ lib.optional (lib.versionOlder version "6.0") result; 58 58
-1334
pkgs/development/python-modules/tokenizers/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 4 4 - 5 - [[package]] 6 - name = "ahash" 7 - version = "0.8.12" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 10 - dependencies = [ 11 - "cfg-if", 12 - "getrandom", 13 - "once_cell", 14 - "serde", 15 - "version_check", 16 - "zerocopy", 17 - ] 18 - 19 - [[package]] 20 - name = "aho-corasick" 21 - version = "1.1.3" 22 - source = "registry+https://github.com/rust-lang/crates.io-index" 23 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 24 - dependencies = [ 25 - "memchr", 26 - ] 27 - 28 - [[package]] 29 - name = "anstream" 30 - version = "0.6.19" 31 - source = "registry+https://github.com/rust-lang/crates.io-index" 32 - checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933" 33 - dependencies = [ 34 - "anstyle", 35 - "anstyle-parse", 36 - "anstyle-query", 37 - "anstyle-wincon", 38 - "colorchoice", 39 - "is_terminal_polyfill", 40 - "utf8parse", 41 - ] 42 - 43 - [[package]] 44 - name = "anstyle" 45 - version = "1.0.11" 46 - source = "registry+https://github.com/rust-lang/crates.io-index" 47 - checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" 48 - 49 - [[package]] 50 - name = "anstyle-parse" 51 - version = "0.2.7" 52 - source = "registry+https://github.com/rust-lang/crates.io-index" 53 - checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 54 - dependencies = [ 55 - "utf8parse", 56 - ] 57 - 58 - [[package]] 59 - name = "anstyle-query" 60 - version = "1.1.3" 61 - source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9" 63 - dependencies = [ 64 - "windows-sys 0.59.0", 65 - ] 66 - 67 - [[package]] 68 - name = "anstyle-wincon" 69 - version = "3.0.9" 70 - source = "registry+https://github.com/rust-lang/crates.io-index" 71 - checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882" 72 - dependencies = [ 73 - "anstyle", 74 - "once_cell_polyfill", 75 - "windows-sys 0.59.0", 76 - ] 77 - 78 - [[package]] 79 - name = "autocfg" 80 - version = "1.5.0" 81 - source = "registry+https://github.com/rust-lang/crates.io-index" 82 - checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 83 - 84 - [[package]] 85 - name = "base64" 86 - version = "0.13.1" 87 - source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 89 - 90 - [[package]] 91 - name = "bitflags" 92 - version = "2.9.1" 93 - source = "registry+https://github.com/rust-lang/crates.io-index" 94 - checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" 95 - 96 - [[package]] 97 - name = "bumpalo" 98 - version = "3.19.0" 99 - source = "registry+https://github.com/rust-lang/crates.io-index" 100 - checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 101 - 102 - [[package]] 103 - name = "castaway" 104 - version = "0.2.3" 105 - source = "registry+https://github.com/rust-lang/crates.io-index" 106 - checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5" 107 - dependencies = [ 108 - "rustversion", 109 - ] 110 - 111 - [[package]] 112 - name = "cc" 113 - version = "1.2.28" 114 - source = "registry+https://github.com/rust-lang/crates.io-index" 115 - checksum = "4ad45f4f74e4e20eaa392913b7b33a7091c87e59628f4dd27888205ad888843c" 116 - dependencies = [ 117 - "shlex", 118 - ] 119 - 120 - [[package]] 121 - name = "cfg-if" 122 - version = "1.0.1" 123 - source = "registry+https://github.com/rust-lang/crates.io-index" 124 - checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" 125 - 126 - [[package]] 127 - name = "colorchoice" 128 - version = "1.0.4" 129 - source = "registry+https://github.com/rust-lang/crates.io-index" 130 - checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 131 - 132 - [[package]] 133 - name = "compact_str" 134 - version = "0.9.0" 135 - source = "registry+https://github.com/rust-lang/crates.io-index" 136 - checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a" 137 - dependencies = [ 138 - "castaway", 139 - "cfg-if", 140 - "itoa", 141 - "rustversion", 142 - "ryu", 143 - "serde", 144 - "static_assertions", 145 - ] 146 - 147 - [[package]] 148 - name = "console" 149 - version = "0.15.11" 150 - source = "registry+https://github.com/rust-lang/crates.io-index" 151 - checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" 152 - dependencies = [ 153 - "encode_unicode", 154 - "libc", 155 - "once_cell", 156 - "unicode-width", 157 - "windows-sys 0.59.0", 158 - ] 159 - 160 - [[package]] 161 - name = "crossbeam-deque" 162 - version = "0.8.6" 163 - source = "registry+https://github.com/rust-lang/crates.io-index" 164 - checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 165 - dependencies = [ 166 - "crossbeam-epoch", 167 - "crossbeam-utils", 168 - ] 169 - 170 - [[package]] 171 - name = "crossbeam-epoch" 172 - version = "0.9.18" 173 - source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 175 - dependencies = [ 176 - "crossbeam-utils", 177 - ] 178 - 179 - [[package]] 180 - name = "crossbeam-utils" 181 - version = "0.8.21" 182 - source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 184 - 185 - [[package]] 186 - name = "darling" 187 - version = "0.20.11" 188 - source = "registry+https://github.com/rust-lang/crates.io-index" 189 - checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" 190 - dependencies = [ 191 - "darling_core", 192 - "darling_macro", 193 - ] 194 - 195 - [[package]] 196 - name = "darling_core" 197 - version = "0.20.11" 198 - source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" 200 - dependencies = [ 201 - "fnv", 202 - "ident_case", 203 - "proc-macro2", 204 - "quote", 205 - "strsim", 206 - "syn", 207 - ] 208 - 209 - [[package]] 210 - name = "darling_macro" 211 - version = "0.20.11" 212 - source = "registry+https://github.com/rust-lang/crates.io-index" 213 - checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" 214 - dependencies = [ 215 - "darling_core", 216 - "quote", 217 - "syn", 218 - ] 219 - 220 - [[package]] 221 - name = "dary_heap" 222 - version = "0.3.7" 223 - source = "registry+https://github.com/rust-lang/crates.io-index" 224 - checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728" 225 - dependencies = [ 226 - "serde", 227 - ] 228 - 229 - [[package]] 230 - name = "derive_builder" 231 - version = "0.20.2" 232 - source = "registry+https://github.com/rust-lang/crates.io-index" 233 - checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947" 234 - dependencies = [ 235 - "derive_builder_macro", 236 - ] 237 - 238 - [[package]] 239 - name = "derive_builder_core" 240 - version = "0.20.2" 241 - source = "registry+https://github.com/rust-lang/crates.io-index" 242 - checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8" 243 - dependencies = [ 244 - "darling", 245 - "proc-macro2", 246 - "quote", 247 - "syn", 248 - ] 249 - 250 - [[package]] 251 - name = "derive_builder_macro" 252 - version = "0.20.2" 253 - source = "registry+https://github.com/rust-lang/crates.io-index" 254 - checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" 255 - dependencies = [ 256 - "derive_builder_core", 257 - "syn", 258 - ] 259 - 260 - [[package]] 261 - name = "either" 262 - version = "1.15.0" 263 - source = "registry+https://github.com/rust-lang/crates.io-index" 264 - checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 265 - 266 - [[package]] 267 - name = "encode_unicode" 268 - version = "1.0.0" 269 - source = "registry+https://github.com/rust-lang/crates.io-index" 270 - checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" 271 - 272 - [[package]] 273 - name = "env_filter" 274 - version = "0.1.3" 275 - source = "registry+https://github.com/rust-lang/crates.io-index" 276 - checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" 277 - dependencies = [ 278 - "log", 279 - "regex", 280 - ] 281 - 282 - [[package]] 283 - name = "env_logger" 284 - version = "0.11.8" 285 - source = "registry+https://github.com/rust-lang/crates.io-index" 286 - checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" 287 - dependencies = [ 288 - "anstream", 289 - "anstyle", 290 - "env_filter", 291 - "jiff", 292 - "log", 293 - ] 294 - 295 - [[package]] 296 - name = "errno" 297 - version = "0.3.13" 298 - source = "registry+https://github.com/rust-lang/crates.io-index" 299 - checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" 300 - dependencies = [ 301 - "libc", 302 - "windows-sys 0.60.2", 303 - ] 304 - 305 - [[package]] 306 - name = "esaxx-rs" 307 - version = "0.1.10" 308 - source = "registry+https://github.com/rust-lang/crates.io-index" 309 - checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6" 310 - dependencies = [ 311 - "cc", 312 - ] 313 - 314 - [[package]] 315 - name = "fastrand" 316 - version = "2.3.0" 317 - source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 319 - 320 - [[package]] 321 - name = "fnv" 322 - version = "1.0.7" 323 - source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 325 - 326 - [[package]] 327 - name = "getrandom" 328 - version = "0.3.3" 329 - source = "registry+https://github.com/rust-lang/crates.io-index" 330 - checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 331 - dependencies = [ 332 - "cfg-if", 333 - "libc", 334 - "r-efi", 335 - "wasi", 336 - ] 337 - 338 - [[package]] 339 - name = "heck" 340 - version = "0.5.0" 341 - source = "registry+https://github.com/rust-lang/crates.io-index" 342 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 343 - 344 - [[package]] 345 - name = "ident_case" 346 - version = "1.0.1" 347 - source = "registry+https://github.com/rust-lang/crates.io-index" 348 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 349 - 350 - [[package]] 351 - name = "indicatif" 352 - version = "0.17.11" 353 - source = "registry+https://github.com/rust-lang/crates.io-index" 354 - checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" 355 - dependencies = [ 356 - "console", 357 - "number_prefix", 358 - "portable-atomic", 359 - "unicode-width", 360 - "web-time", 361 - ] 362 - 363 - [[package]] 364 - name = "indoc" 365 - version = "2.0.6" 366 - source = "registry+https://github.com/rust-lang/crates.io-index" 367 - checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" 368 - 369 - [[package]] 370 - name = "is_terminal_polyfill" 371 - version = "1.70.1" 372 - source = "registry+https://github.com/rust-lang/crates.io-index" 373 - checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 374 - 375 - [[package]] 376 - name = "itertools" 377 - version = "0.14.0" 378 - source = "registry+https://github.com/rust-lang/crates.io-index" 379 - checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 380 - dependencies = [ 381 - "either", 382 - ] 383 - 384 - [[package]] 385 - name = "itoa" 386 - version = "1.0.15" 387 - source = "registry+https://github.com/rust-lang/crates.io-index" 388 - checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 389 - 390 - [[package]] 391 - name = "jiff" 392 - version = "0.2.15" 393 - source = "registry+https://github.com/rust-lang/crates.io-index" 394 - checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49" 395 - dependencies = [ 396 - "jiff-static", 397 - "log", 398 - "portable-atomic", 399 - "portable-atomic-util", 400 - "serde", 401 - ] 402 - 403 - [[package]] 404 - name = "jiff-static" 405 - version = "0.2.15" 406 - source = "registry+https://github.com/rust-lang/crates.io-index" 407 - checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4" 408 - dependencies = [ 409 - "proc-macro2", 410 - "quote", 411 - "syn", 412 - ] 413 - 414 - [[package]] 415 - name = "js-sys" 416 - version = "0.3.77" 417 - source = "registry+https://github.com/rust-lang/crates.io-index" 418 - checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 419 - dependencies = [ 420 - "once_cell", 421 - "wasm-bindgen", 422 - ] 423 - 424 - [[package]] 425 - name = "libc" 426 - version = "0.2.174" 427 - source = "registry+https://github.com/rust-lang/crates.io-index" 428 - checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" 429 - 430 - [[package]] 431 - name = "linux-raw-sys" 432 - version = "0.9.4" 433 - source = "registry+https://github.com/rust-lang/crates.io-index" 434 - checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 435 - 436 - [[package]] 437 - name = "log" 438 - version = "0.4.27" 439 - source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 441 - 442 - [[package]] 443 - name = "macro_rules_attribute" 444 - version = "0.2.2" 445 - source = "registry+https://github.com/rust-lang/crates.io-index" 446 - checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520" 447 - dependencies = [ 448 - "macro_rules_attribute-proc_macro", 449 - "paste", 450 - ] 451 - 452 - [[package]] 453 - name = "macro_rules_attribute-proc_macro" 454 - version = "0.2.2" 455 - source = "registry+https://github.com/rust-lang/crates.io-index" 456 - checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30" 457 - 458 - [[package]] 459 - name = "matrixmultiply" 460 - version = "0.3.10" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08" 463 - dependencies = [ 464 - "autocfg", 465 - "rawpointer", 466 - ] 467 - 468 - [[package]] 469 - name = "memchr" 470 - version = "2.7.5" 471 - source = "registry+https://github.com/rust-lang/crates.io-index" 472 - checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 473 - 474 - [[package]] 475 - name = "memoffset" 476 - version = "0.9.1" 477 - source = "registry+https://github.com/rust-lang/crates.io-index" 478 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 479 - dependencies = [ 480 - "autocfg", 481 - ] 482 - 483 - [[package]] 484 - name = "minimal-lexical" 485 - version = "0.2.1" 486 - source = "registry+https://github.com/rust-lang/crates.io-index" 487 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 488 - 489 - [[package]] 490 - name = "monostate" 491 - version = "0.1.14" 492 - source = "registry+https://github.com/rust-lang/crates.io-index" 493 - checksum = "aafe1be9d0c75642e3e50fedc7ecadf1ef1cbce6eb66462153fc44245343fbee" 494 - dependencies = [ 495 - "monostate-impl", 496 - "serde", 497 - ] 498 - 499 - [[package]] 500 - name = "monostate-impl" 501 - version = "0.1.14" 502 - source = "registry+https://github.com/rust-lang/crates.io-index" 503 - checksum = "c402a4092d5e204f32c9e155431046831fa712637043c58cb73bc6bc6c9663b5" 504 - dependencies = [ 505 - "proc-macro2", 506 - "quote", 507 - "syn", 508 - ] 509 - 510 - [[package]] 511 - name = "ndarray" 512 - version = "0.16.1" 513 - source = "registry+https://github.com/rust-lang/crates.io-index" 514 - checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841" 515 - dependencies = [ 516 - "matrixmultiply", 517 - "num-complex", 518 - "num-integer", 519 - "num-traits", 520 - "portable-atomic", 521 - "portable-atomic-util", 522 - "rawpointer", 523 - ] 524 - 525 - [[package]] 526 - name = "nom" 527 - version = "7.1.3" 528 - source = "registry+https://github.com/rust-lang/crates.io-index" 529 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 530 - dependencies = [ 531 - "memchr", 532 - "minimal-lexical", 533 - ] 534 - 535 - [[package]] 536 - name = "num-complex" 537 - version = "0.4.6" 538 - source = "registry+https://github.com/rust-lang/crates.io-index" 539 - checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 540 - dependencies = [ 541 - "num-traits", 542 - ] 543 - 544 - [[package]] 545 - name = "num-integer" 546 - version = "0.1.46" 547 - source = "registry+https://github.com/rust-lang/crates.io-index" 548 - checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 549 - dependencies = [ 550 - "num-traits", 551 - ] 552 - 553 - [[package]] 554 - name = "num-traits" 555 - version = "0.2.19" 556 - source = "registry+https://github.com/rust-lang/crates.io-index" 557 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 558 - dependencies = [ 559 - "autocfg", 560 - ] 561 - 562 - [[package]] 563 - name = "number_prefix" 564 - version = "0.4.0" 565 - source = "registry+https://github.com/rust-lang/crates.io-index" 566 - checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 567 - 568 - [[package]] 569 - name = "numpy" 570 - version = "0.25.0" 571 - source = "registry+https://github.com/rust-lang/crates.io-index" 572 - checksum = "29f1dee9aa8d3f6f8e8b9af3803006101bb3653866ef056d530d53ae68587191" 573 - dependencies = [ 574 - "libc", 575 - "ndarray", 576 - "num-complex", 577 - "num-integer", 578 - "num-traits", 579 - "pyo3", 580 - "pyo3-build-config", 581 - "rustc-hash", 582 - ] 583 - 584 - [[package]] 585 - name = "once_cell" 586 - version = "1.21.3" 587 - source = "registry+https://github.com/rust-lang/crates.io-index" 588 - checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 589 - 590 - [[package]] 591 - name = "once_cell_polyfill" 592 - version = "1.70.1" 593 - source = "registry+https://github.com/rust-lang/crates.io-index" 594 - checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 595 - 596 - [[package]] 597 - name = "onig" 598 - version = "6.5.1" 599 - source = "registry+https://github.com/rust-lang/crates.io-index" 600 - checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0" 601 - dependencies = [ 602 - "bitflags", 603 - "libc", 604 - "once_cell", 605 - "onig_sys", 606 - ] 607 - 608 - [[package]] 609 - name = "onig_sys" 610 - version = "69.9.1" 611 - source = "registry+https://github.com/rust-lang/crates.io-index" 612 - checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc" 613 - dependencies = [ 614 - "cc", 615 - "pkg-config", 616 - ] 617 - 618 - [[package]] 619 - name = "paste" 620 - version = "1.0.15" 621 - source = "registry+https://github.com/rust-lang/crates.io-index" 622 - checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 623 - 624 - [[package]] 625 - name = "pkg-config" 626 - version = "0.3.32" 627 - source = "registry+https://github.com/rust-lang/crates.io-index" 628 - checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 629 - 630 - [[package]] 631 - name = "portable-atomic" 632 - version = "1.11.1" 633 - source = "registry+https://github.com/rust-lang/crates.io-index" 634 - checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 635 - 636 - [[package]] 637 - name = "portable-atomic-util" 638 - version = "0.2.4" 639 - source = "registry+https://github.com/rust-lang/crates.io-index" 640 - checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" 641 - dependencies = [ 642 - "portable-atomic", 643 - ] 644 - 645 - [[package]] 646 - name = "ppv-lite86" 647 - version = "0.2.21" 648 - source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 650 - dependencies = [ 651 - "zerocopy", 652 - ] 653 - 654 - [[package]] 655 - name = "proc-macro2" 656 - version = "1.0.95" 657 - source = "registry+https://github.com/rust-lang/crates.io-index" 658 - checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 659 - dependencies = [ 660 - "unicode-ident", 661 - ] 662 - 663 - [[package]] 664 - name = "pyo3" 665 - version = "0.25.1" 666 - source = "registry+https://github.com/rust-lang/crates.io-index" 667 - checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a" 668 - dependencies = [ 669 - "indoc", 670 - "libc", 671 - "memoffset", 672 - "once_cell", 673 - "portable-atomic", 674 - "pyo3-build-config", 675 - "pyo3-ffi", 676 - "pyo3-macros", 677 - "unindent", 678 - ] 679 - 680 - [[package]] 681 - name = "pyo3-build-config" 682 - version = "0.25.1" 683 - source = "registry+https://github.com/rust-lang/crates.io-index" 684 - checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598" 685 - dependencies = [ 686 - "once_cell", 687 - "target-lexicon", 688 - ] 689 - 690 - [[package]] 691 - name = "pyo3-ffi" 692 - version = "0.25.1" 693 - source = "registry+https://github.com/rust-lang/crates.io-index" 694 - checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c" 695 - dependencies = [ 696 - "libc", 697 - "pyo3-build-config", 698 - ] 699 - 700 - [[package]] 701 - name = "pyo3-macros" 702 - version = "0.25.1" 703 - source = "registry+https://github.com/rust-lang/crates.io-index" 704 - checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50" 705 - dependencies = [ 706 - "proc-macro2", 707 - "pyo3-macros-backend", 708 - "quote", 709 - "syn", 710 - ] 711 - 712 - [[package]] 713 - name = "pyo3-macros-backend" 714 - version = "0.25.1" 715 - source = "registry+https://github.com/rust-lang/crates.io-index" 716 - checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc" 717 - dependencies = [ 718 - "heck", 719 - "proc-macro2", 720 - "pyo3-build-config", 721 - "quote", 722 - "syn", 723 - ] 724 - 725 - [[package]] 726 - name = "quote" 727 - version = "1.0.40" 728 - source = "registry+https://github.com/rust-lang/crates.io-index" 729 - checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 730 - dependencies = [ 731 - "proc-macro2", 732 - ] 733 - 734 - [[package]] 735 - name = "r-efi" 736 - version = "5.3.0" 737 - source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 739 - 740 - [[package]] 741 - name = "rand" 742 - version = "0.9.1" 743 - source = "registry+https://github.com/rust-lang/crates.io-index" 744 - checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" 745 - dependencies = [ 746 - "rand_chacha", 747 - "rand_core", 748 - ] 749 - 750 - [[package]] 751 - name = "rand_chacha" 752 - version = "0.9.0" 753 - source = "registry+https://github.com/rust-lang/crates.io-index" 754 - checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 755 - dependencies = [ 756 - "ppv-lite86", 757 - "rand_core", 758 - ] 759 - 760 - [[package]] 761 - name = "rand_core" 762 - version = "0.9.3" 763 - source = "registry+https://github.com/rust-lang/crates.io-index" 764 - checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 765 - dependencies = [ 766 - "getrandom", 767 - ] 768 - 769 - [[package]] 770 - name = "rawpointer" 771 - version = "0.2.1" 772 - source = "registry+https://github.com/rust-lang/crates.io-index" 773 - checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" 774 - 775 - [[package]] 776 - name = "rayon" 777 - version = "1.10.0" 778 - source = "registry+https://github.com/rust-lang/crates.io-index" 779 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 780 - dependencies = [ 781 - "either", 782 - "rayon-core", 783 - ] 784 - 785 - [[package]] 786 - name = "rayon-cond" 787 - version = "0.4.0" 788 - source = "registry+https://github.com/rust-lang/crates.io-index" 789 - checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f" 790 - dependencies = [ 791 - "either", 792 - "itertools", 793 - "rayon", 794 - ] 795 - 796 - [[package]] 797 - name = "rayon-core" 798 - version = "1.12.1" 799 - source = "registry+https://github.com/rust-lang/crates.io-index" 800 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 801 - dependencies = [ 802 - "crossbeam-deque", 803 - "crossbeam-utils", 804 - ] 805 - 806 - [[package]] 807 - name = "regex" 808 - version = "1.11.1" 809 - source = "registry+https://github.com/rust-lang/crates.io-index" 810 - checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 811 - dependencies = [ 812 - "aho-corasick", 813 - "memchr", 814 - "regex-automata", 815 - "regex-syntax", 816 - ] 817 - 818 - [[package]] 819 - name = "regex-automata" 820 - version = "0.4.9" 821 - source = "registry+https://github.com/rust-lang/crates.io-index" 822 - checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 823 - dependencies = [ 824 - "aho-corasick", 825 - "memchr", 826 - "regex-syntax", 827 - ] 828 - 829 - [[package]] 830 - name = "regex-syntax" 831 - version = "0.8.5" 832 - source = "registry+https://github.com/rust-lang/crates.io-index" 833 - checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 834 - 835 - [[package]] 836 - name = "rustc-hash" 837 - version = "2.1.1" 838 - source = "registry+https://github.com/rust-lang/crates.io-index" 839 - checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 840 - 841 - [[package]] 842 - name = "rustix" 843 - version = "1.0.7" 844 - source = "registry+https://github.com/rust-lang/crates.io-index" 845 - checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" 846 - dependencies = [ 847 - "bitflags", 848 - "errno", 849 - "libc", 850 - "linux-raw-sys", 851 - "windows-sys 0.59.0", 852 - ] 853 - 854 - [[package]] 855 - name = "rustversion" 856 - version = "1.0.21" 857 - source = "registry+https://github.com/rust-lang/crates.io-index" 858 - checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" 859 - 860 - [[package]] 861 - name = "ryu" 862 - version = "1.0.20" 863 - source = "registry+https://github.com/rust-lang/crates.io-index" 864 - checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 865 - 866 - [[package]] 867 - name = "serde" 868 - version = "1.0.219" 869 - source = "registry+https://github.com/rust-lang/crates.io-index" 870 - checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 871 - dependencies = [ 872 - "serde_derive", 873 - ] 874 - 875 - [[package]] 876 - name = "serde_derive" 877 - version = "1.0.219" 878 - source = "registry+https://github.com/rust-lang/crates.io-index" 879 - checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 880 - dependencies = [ 881 - "proc-macro2", 882 - "quote", 883 - "syn", 884 - ] 885 - 886 - [[package]] 887 - name = "serde_json" 888 - version = "1.0.140" 889 - source = "registry+https://github.com/rust-lang/crates.io-index" 890 - checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" 891 - dependencies = [ 892 - "itoa", 893 - "memchr", 894 - "ryu", 895 - "serde", 896 - ] 897 - 898 - [[package]] 899 - name = "shlex" 900 - version = "1.3.0" 901 - source = "registry+https://github.com/rust-lang/crates.io-index" 902 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 903 - 904 - [[package]] 905 - name = "smallvec" 906 - version = "1.15.1" 907 - source = "registry+https://github.com/rust-lang/crates.io-index" 908 - checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 909 - 910 - [[package]] 911 - name = "spm_precompiled" 912 - version = "0.1.4" 913 - source = "registry+https://github.com/rust-lang/crates.io-index" 914 - checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326" 915 - dependencies = [ 916 - "base64", 917 - "nom", 918 - "serde", 919 - "unicode-segmentation", 920 - ] 921 - 922 - [[package]] 923 - name = "static_assertions" 924 - version = "1.1.0" 925 - source = "registry+https://github.com/rust-lang/crates.io-index" 926 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 927 - 928 - [[package]] 929 - name = "strsim" 930 - version = "0.11.1" 931 - source = "registry+https://github.com/rust-lang/crates.io-index" 932 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 933 - 934 - [[package]] 935 - name = "syn" 936 - version = "2.0.104" 937 - source = "registry+https://github.com/rust-lang/crates.io-index" 938 - checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" 939 - dependencies = [ 940 - "proc-macro2", 941 - "quote", 942 - "unicode-ident", 943 - ] 944 - 945 - [[package]] 946 - name = "target-lexicon" 947 - version = "0.13.2" 948 - source = "registry+https://github.com/rust-lang/crates.io-index" 949 - checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a" 950 - 951 - [[package]] 952 - name = "tempfile" 953 - version = "3.20.0" 954 - source = "registry+https://github.com/rust-lang/crates.io-index" 955 - checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" 956 - dependencies = [ 957 - "fastrand", 958 - "getrandom", 959 - "once_cell", 960 - "rustix", 961 - "windows-sys 0.59.0", 962 - ] 963 - 964 - [[package]] 965 - name = "thiserror" 966 - version = "2.0.12" 967 - source = "registry+https://github.com/rust-lang/crates.io-index" 968 - checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" 969 - dependencies = [ 970 - "thiserror-impl", 971 - ] 972 - 973 - [[package]] 974 - name = "thiserror-impl" 975 - version = "2.0.12" 976 - source = "registry+https://github.com/rust-lang/crates.io-index" 977 - checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" 978 - dependencies = [ 979 - "proc-macro2", 980 - "quote", 981 - "syn", 982 - ] 983 - 984 - [[package]] 985 - name = "tokenizers" 986 - version = "0.21.4-dev.0" 987 - dependencies = [ 988 - "ahash", 989 - "aho-corasick", 990 - "compact_str", 991 - "dary_heap", 992 - "derive_builder", 993 - "esaxx-rs", 994 - "getrandom", 995 - "indicatif", 996 - "itertools", 997 - "log", 998 - "macro_rules_attribute", 999 - "monostate", 1000 - "onig", 1001 - "paste", 1002 - "rand", 1003 - "rayon", 1004 - "rayon-cond", 1005 - "regex", 1006 - "regex-syntax", 1007 - "serde", 1008 - "serde_json", 1009 - "spm_precompiled", 1010 - "thiserror", 1011 - "unicode-normalization-alignments", 1012 - "unicode-segmentation", 1013 - "unicode_categories", 1014 - ] 1015 - 1016 - [[package]] 1017 - name = "tokenizers-python" 1018 - version = "0.21.4-dev.0" 1019 - dependencies = [ 1020 - "ahash", 1021 - "env_logger", 1022 - "itertools", 1023 - "libc", 1024 - "ndarray", 1025 - "numpy", 1026 - "pyo3", 1027 - "rayon", 1028 - "serde", 1029 - "serde_json", 1030 - "tempfile", 1031 - "tokenizers", 1032 - ] 1033 - 1034 - [[package]] 1035 - name = "unicode-ident" 1036 - version = "1.0.18" 1037 - source = "registry+https://github.com/rust-lang/crates.io-index" 1038 - checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 1039 - 1040 - [[package]] 1041 - name = "unicode-normalization-alignments" 1042 - version = "0.1.12" 1043 - source = "registry+https://github.com/rust-lang/crates.io-index" 1044 - checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de" 1045 - dependencies = [ 1046 - "smallvec", 1047 - ] 1048 - 1049 - [[package]] 1050 - name = "unicode-segmentation" 1051 - version = "1.12.0" 1052 - source = "registry+https://github.com/rust-lang/crates.io-index" 1053 - checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 1054 - 1055 - [[package]] 1056 - name = "unicode-width" 1057 - version = "0.2.1" 1058 - source = "registry+https://github.com/rust-lang/crates.io-index" 1059 - checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" 1060 - 1061 - [[package]] 1062 - name = "unicode_categories" 1063 - version = "0.1.1" 1064 - source = "registry+https://github.com/rust-lang/crates.io-index" 1065 - checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 1066 - 1067 - [[package]] 1068 - name = "unindent" 1069 - version = "0.2.4" 1070 - source = "registry+https://github.com/rust-lang/crates.io-index" 1071 - checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3" 1072 - 1073 - [[package]] 1074 - name = "utf8parse" 1075 - version = "0.2.2" 1076 - source = "registry+https://github.com/rust-lang/crates.io-index" 1077 - checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 1078 - 1079 - [[package]] 1080 - name = "version_check" 1081 - version = "0.9.5" 1082 - source = "registry+https://github.com/rust-lang/crates.io-index" 1083 - checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1084 - 1085 - [[package]] 1086 - name = "wasi" 1087 - version = "0.14.2+wasi-0.2.4" 1088 - source = "registry+https://github.com/rust-lang/crates.io-index" 1089 - checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 1090 - dependencies = [ 1091 - "wit-bindgen-rt", 1092 - ] 1093 - 1094 - [[package]] 1095 - name = "wasm-bindgen" 1096 - version = "0.2.100" 1097 - source = "registry+https://github.com/rust-lang/crates.io-index" 1098 - checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 1099 - dependencies = [ 1100 - "cfg-if", 1101 - "once_cell", 1102 - "wasm-bindgen-macro", 1103 - ] 1104 - 1105 - [[package]] 1106 - name = "wasm-bindgen-backend" 1107 - version = "0.2.100" 1108 - source = "registry+https://github.com/rust-lang/crates.io-index" 1109 - checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 1110 - dependencies = [ 1111 - "bumpalo", 1112 - "log", 1113 - "proc-macro2", 1114 - "quote", 1115 - "syn", 1116 - "wasm-bindgen-shared", 1117 - ] 1118 - 1119 - [[package]] 1120 - name = "wasm-bindgen-macro" 1121 - version = "0.2.100" 1122 - source = "registry+https://github.com/rust-lang/crates.io-index" 1123 - checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 1124 - dependencies = [ 1125 - "quote", 1126 - "wasm-bindgen-macro-support", 1127 - ] 1128 - 1129 - [[package]] 1130 - name = "wasm-bindgen-macro-support" 1131 - version = "0.2.100" 1132 - source = "registry+https://github.com/rust-lang/crates.io-index" 1133 - checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 1134 - dependencies = [ 1135 - "proc-macro2", 1136 - "quote", 1137 - "syn", 1138 - "wasm-bindgen-backend", 1139 - "wasm-bindgen-shared", 1140 - ] 1141 - 1142 - [[package]] 1143 - name = "wasm-bindgen-shared" 1144 - version = "0.2.100" 1145 - source = "registry+https://github.com/rust-lang/crates.io-index" 1146 - checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 1147 - dependencies = [ 1148 - "unicode-ident", 1149 - ] 1150 - 1151 - [[package]] 1152 - name = "web-time" 1153 - version = "1.1.0" 1154 - source = "registry+https://github.com/rust-lang/crates.io-index" 1155 - checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 1156 - dependencies = [ 1157 - "js-sys", 1158 - "wasm-bindgen", 1159 - ] 1160 - 1161 - [[package]] 1162 - name = "windows-sys" 1163 - version = "0.59.0" 1164 - source = "registry+https://github.com/rust-lang/crates.io-index" 1165 - checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1166 - dependencies = [ 1167 - "windows-targets 0.52.6", 1168 - ] 1169 - 1170 - [[package]] 1171 - name = "windows-sys" 1172 - version = "0.60.2" 1173 - source = "registry+https://github.com/rust-lang/crates.io-index" 1174 - checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 1175 - dependencies = [ 1176 - "windows-targets 0.53.2", 1177 - ] 1178 - 1179 - [[package]] 1180 - name = "windows-targets" 1181 - version = "0.52.6" 1182 - source = "registry+https://github.com/rust-lang/crates.io-index" 1183 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1184 - dependencies = [ 1185 - "windows_aarch64_gnullvm 0.52.6", 1186 - "windows_aarch64_msvc 0.52.6", 1187 - "windows_i686_gnu 0.52.6", 1188 - "windows_i686_gnullvm 0.52.6", 1189 - "windows_i686_msvc 0.52.6", 1190 - "windows_x86_64_gnu 0.52.6", 1191 - "windows_x86_64_gnullvm 0.52.6", 1192 - "windows_x86_64_msvc 0.52.6", 1193 - ] 1194 - 1195 - [[package]] 1196 - name = "windows-targets" 1197 - version = "0.53.2" 1198 - source = "registry+https://github.com/rust-lang/crates.io-index" 1199 - checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" 1200 - dependencies = [ 1201 - "windows_aarch64_gnullvm 0.53.0", 1202 - "windows_aarch64_msvc 0.53.0", 1203 - "windows_i686_gnu 0.53.0", 1204 - "windows_i686_gnullvm 0.53.0", 1205 - "windows_i686_msvc 0.53.0", 1206 - "windows_x86_64_gnu 0.53.0", 1207 - "windows_x86_64_gnullvm 0.53.0", 1208 - "windows_x86_64_msvc 0.53.0", 1209 - ] 1210 - 1211 - [[package]] 1212 - name = "windows_aarch64_gnullvm" 1213 - version = "0.52.6" 1214 - source = "registry+https://github.com/rust-lang/crates.io-index" 1215 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1216 - 1217 - [[package]] 1218 - name = "windows_aarch64_gnullvm" 1219 - version = "0.53.0" 1220 - source = "registry+https://github.com/rust-lang/crates.io-index" 1221 - checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 1222 - 1223 - [[package]] 1224 - name = "windows_aarch64_msvc" 1225 - version = "0.52.6" 1226 - source = "registry+https://github.com/rust-lang/crates.io-index" 1227 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1228 - 1229 - [[package]] 1230 - name = "windows_aarch64_msvc" 1231 - version = "0.53.0" 1232 - source = "registry+https://github.com/rust-lang/crates.io-index" 1233 - checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 1234 - 1235 - [[package]] 1236 - name = "windows_i686_gnu" 1237 - version = "0.52.6" 1238 - source = "registry+https://github.com/rust-lang/crates.io-index" 1239 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1240 - 1241 - [[package]] 1242 - name = "windows_i686_gnu" 1243 - version = "0.53.0" 1244 - source = "registry+https://github.com/rust-lang/crates.io-index" 1245 - checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 1246 - 1247 - [[package]] 1248 - name = "windows_i686_gnullvm" 1249 - version = "0.52.6" 1250 - source = "registry+https://github.com/rust-lang/crates.io-index" 1251 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1252 - 1253 - [[package]] 1254 - name = "windows_i686_gnullvm" 1255 - version = "0.53.0" 1256 - source = "registry+https://github.com/rust-lang/crates.io-index" 1257 - checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 1258 - 1259 - [[package]] 1260 - name = "windows_i686_msvc" 1261 - version = "0.52.6" 1262 - source = "registry+https://github.com/rust-lang/crates.io-index" 1263 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1264 - 1265 - [[package]] 1266 - name = "windows_i686_msvc" 1267 - version = "0.53.0" 1268 - source = "registry+https://github.com/rust-lang/crates.io-index" 1269 - checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 1270 - 1271 - [[package]] 1272 - name = "windows_x86_64_gnu" 1273 - version = "0.52.6" 1274 - source = "registry+https://github.com/rust-lang/crates.io-index" 1275 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1276 - 1277 - [[package]] 1278 - name = "windows_x86_64_gnu" 1279 - version = "0.53.0" 1280 - source = "registry+https://github.com/rust-lang/crates.io-index" 1281 - checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 1282 - 1283 - [[package]] 1284 - name = "windows_x86_64_gnullvm" 1285 - version = "0.52.6" 1286 - source = "registry+https://github.com/rust-lang/crates.io-index" 1287 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1288 - 1289 - [[package]] 1290 - name = "windows_x86_64_gnullvm" 1291 - version = "0.53.0" 1292 - source = "registry+https://github.com/rust-lang/crates.io-index" 1293 - checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 1294 - 1295 - [[package]] 1296 - name = "windows_x86_64_msvc" 1297 - version = "0.52.6" 1298 - source = "registry+https://github.com/rust-lang/crates.io-index" 1299 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1300 - 1301 - [[package]] 1302 - name = "windows_x86_64_msvc" 1303 - version = "0.53.0" 1304 - source = "registry+https://github.com/rust-lang/crates.io-index" 1305 - checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 1306 - 1307 - [[package]] 1308 - name = "wit-bindgen-rt" 1309 - version = "0.39.0" 1310 - source = "registry+https://github.com/rust-lang/crates.io-index" 1311 - checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 1312 - dependencies = [ 1313 - "bitflags", 1314 - ] 1315 - 1316 - [[package]] 1317 - name = "zerocopy" 1318 - version = "0.8.26" 1319 - source = "registry+https://github.com/rust-lang/crates.io-index" 1320 - checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" 1321 - dependencies = [ 1322 - "zerocopy-derive", 1323 - ] 1324 - 1325 - [[package]] 1326 - name = "zerocopy-derive" 1327 - version = "0.8.26" 1328 - source = "registry+https://github.com/rust-lang/crates.io-index" 1329 - checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" 1330 - dependencies = [ 1331 - "proc-macro2", 1332 - "quote", 1333 - "syn", 1334 - ]
+10 -7
pkgs/development/python-modules/tokenizers/default.nix
··· 75 75 in 76 76 buildPythonPackage rec { 77 77 pname = "tokenizers"; 78 - version = "0.21.3"; 78 + version = "0.21.4"; 79 79 pyproject = true; 80 80 81 81 src = fetchFromGitHub { 82 82 owner = "huggingface"; 83 83 repo = "tokenizers"; 84 84 tag = "v${version}"; 85 - hash = "sha256-8z1jgH0Nj7D+joN42AA2ORNSLvcfWiYHn4dpTq1HWB0="; 85 + hash = "sha256-HJUycrNDpy2FOYi6aZ76orLewZCuLC1MoJ57peYJqvI="; 86 86 }; 87 87 88 - postPatch = '' 89 - ln -s ${./Cargo.lock} Cargo.lock 90 - ''; 91 - cargoDeps = rustPlatform.importCargoLock { 92 - lockFile = ./Cargo.lock; 88 + cargoDeps = rustPlatform.fetchCargoVendor { 89 + inherit 90 + pname 91 + version 92 + src 93 + sourceRoot 94 + ; 95 + hash = "sha256-0olujhOOO/BAH4JvnmXd1kE7T/sp5Vr3Z3P2X2jhZKs="; 93 96 }; 94 97 95 98 sourceRoot = "${src.name}/bindings/python";
+2 -2
pkgs/games/sgt-puzzles/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "sgt-puzzles"; 21 - version = "20250722.dbe6378"; 21 + version = "20250730.a7c7826"; 22 22 23 23 src = fetchurl { 24 24 url = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/puzzles-${version}.tar.gz"; 25 - hash = "sha256-ayNBRAAIForVZgHQJ1fr3m1aZ3bG9YNQxHTeO0YcwTA="; 25 + hash = "sha256-oGk0HOXqXNxEVWixS6rptEF0bZYIkJeJzYhL3TSVhic="; 26 26 }; 27 27 28 28 sgt-puzzles-menu = fetchurl {
+1 -3
pkgs/os-specific/linux/kernel/perf/default.nix
··· 6 6 kernelModuleMakeFlags, 7 7 elfutils, 8 8 python3, 9 - perl, 10 9 newt, 11 10 slang, 12 11 asciidoc, ··· 137 136 openssl 138 137 numactl 139 138 python3 140 - perl 141 139 babeltrace 142 140 ] 143 141 ++ ( ··· 177 175 doCheck = false; # requires "sparse" 178 176 179 177 installTargets = [ 180 - "install" 178 + "install-tools" # don't install tests, as those depend on perl 181 179 "install-man" 182 180 ]; 183 181
+6 -6
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 159 159 # Last one without the bug reported here: 160 160 # https://bbs.archlinux.org/viewtopic.php?pid=2155426#p2155426 161 161 legacy_535 = generic { 162 - version = "535.216.01"; 163 - sha256_64bit = "sha256-Xd6hFHgQAS4zlnwxgTQbzWYkvT1lTGP4Rd+DO07Oavc="; 164 - sha256_aarch64 = "sha256-SGmuA0W1iSsqUK7VZsgibT4HgT0RkKpGb+ul6eIbM7k="; 165 - openSha256 = "sha256-ey96oMbY32ahcHSOj1+MykvJrep6mhHPVl+V8+B2ZDk="; 166 - settingsSha256 = "sha256-9PgaYJbP1s7hmKCYmkuLQ58nkTruhFdHAs4W84KQVME="; 167 - persistencedSha256 = "sha256-ckF/BgDA6xSFqFk07rn3HqXuR0iGfwA4PRxpP38QZgw="; 162 + version = "535.261.03"; 163 + sha256_64bit = "sha256-10th0R6cm5BS9AQtbsRDfxPR3vMOlk4jLUfl1lnRHWg="; 164 + sha256_aarch64 = "sha256-mkEtOsAcmdLKAhAKcTlZf86IBMUr9TPRG2BDcoaDSpM="; 165 + openSha256 = "sha256-qUn0Kk9t6TZA6ZmUSPzqclOsU6n4Tp4dXkgGa1ZF+OA="; 166 + settingsSha256 = "sha256-E05oCGuMdE3KhVrDl2ZQspaPqPHoVSwdaftoPKItYTE"; 167 + persistencedSha256 = "sha256-pnOq9+6l3BbIEKHboGeTwEcEcYhtESzmroUfCahqn0U="; 168 168 }; 169 169 170 170 # Last one supporting Kepler architecture
+8 -8
pkgs/servers/asterisk/versions.json
··· 1 1 { 2 2 "asterisk_18": { 3 - "sha256": "745689c84d63ae94dfa0b3d4bdde3c6907b72472018532f757d9c0d169705964", 4 - "version": "18.26.2" 3 + "sha256": "0df8be2f57779019895628363a11f74ea356068cca983462ec0feb72528fc8e9", 4 + "version": "18.26.3" 5 5 }, 6 6 "asterisk_20": { 7 - "sha256": "7c45cf254c7442748fa14ba4e31ae8f09cd2ad958168577de091c0bf0b0a2d2e", 8 - "version": "20.15.0" 7 + "sha256": "fa286ac7a024e685233af6fde54a68a21c8e9934b438da878fb3cff080a6346c", 8 + "version": "20.15.1" 9 9 }, 10 10 "asterisk_21": { 11 - "sha256": "16051efbcc6fb95c0408f0ecc9dcf2d78a9346323f5d1fcd9723faedcb0f3fd8", 12 - "version": "21.10.0" 11 + "sha256": "811c5b8c501004ee378e77efd009892b366a03a508cfc51eead52396cbf65b2c", 12 + "version": "21.10.1" 13 13 }, 14 14 "asterisk_22": { 15 - "sha256": "944967288ec01587feeef42869a97baa37ab635bea7d539df16f70d3af48c613", 16 - "version": "22.5.0" 15 + "sha256": "cbe67229f813ccf5e545fbda1fc05eb221897bf03393917390f8f6235cc62179", 16 + "version": "22.5.1" 17 17 } 18 18 }
+1 -1
pkgs/servers/nosql/apache-jena/binary.nix
··· 26 26 description = "RDF database"; 27 27 license = licenses.asl20; 28 28 maintainers = with maintainers; [ raskin ]; 29 - platforms = platforms.linux; 29 + platforms = platforms.unix; 30 30 homepage = "https://jena.apache.org"; 31 31 downloadPage = "https://archive.apache.org/dist/jena/binaries/"; 32 32 };
pkgs/tools/misc/inspec/Gemfile pkgs/by-name/in/inspec/Gemfile
pkgs/tools/misc/inspec/Gemfile.lock pkgs/by-name/in/inspec/Gemfile.lock
+3 -3
pkgs/tools/misc/inspec/default.nix pkgs/by-name/in/inspec/package.nix
··· 15 15 16 16 passthru.updateScript = bundlerUpdateScript "inspec"; 17 17 18 - meta = with lib; { 18 + meta = { 19 19 description = "Inspec is an open-source testing framework for infrastructure with a human- and machine-readable language for specifying compliance, security and policy requirements"; 20 20 homepage = "https://inspec.io/"; 21 - license = licenses.asl20; 22 - maintainers = with maintainers; [ dylanmtaylor ]; 21 + license = lib.licenses.asl20; 22 + maintainers = with lib.maintainers; [ dylanmtaylor ]; 23 23 mainProgram = "inspec"; 24 24 }; 25 25 }
pkgs/tools/misc/inspec/gemset.nix pkgs/by-name/in/inspec/gemset.nix
-20
pkgs/top-level/all-packages.nix
··· 383 383 384 384 inherit (gridlock) nyarr; 385 385 386 - inspec = callPackage ../tools/misc/inspec { }; 387 - 388 386 lshw-gui = lshw.override { withGUI = true; }; 389 387 390 388 kdePackages = callPackage ../kde { }; ··· 2995 2993 gitlab-ee = callPackage ../by-name/gi/gitlab/package.nix { 2996 2994 gitlabEnterprise = true; 2997 2995 }; 2998 - 2999 - gitlab-triage = callPackage ../applications/version-management/gitlab-triage { }; 3000 2996 3001 2997 gitlab-workhorse = callPackage ../by-name/gi/gitlab/gitlab-workhorse { }; 3002 2998 ··· 11958 11954 }; 11959 11955 gnuradioPackages = lib.recurseIntoAttrs gnuradio.pkgs; 11960 11956 11961 - greetd = recurseIntoAttrs ( 11962 - { 11963 - greetd = callPackage ../applications/display-managers/greetd { }; 11964 - gtkgreet = callPackage ../applications/display-managers/greetd/gtkgreet.nix { }; 11965 - qtgreet = callPackage ../applications/display-managers/greetd/qtgreet.nix { }; 11966 - regreet = callPackage ../applications/display-managers/greetd/regreet.nix { }; 11967 - tuigreet = callPackage ../applications/display-managers/greetd/tuigreet.nix { }; 11968 - wlgreet = callPackage ../applications/display-managers/greetd/wlgreet.nix { }; 11969 - } 11970 - // lib.optionalAttrs config.allowAliases { 11971 - dlm = throw "greetd.dlm has been removed as it is broken and abandoned upstream"; # Added 2024-07-15 11972 - } 11973 - ); 11974 - 11975 11957 goldendict = libsForQt5.callPackage ../applications/misc/goldendict { }; 11976 11958 goldendict-ng = qt6Packages.callPackage ../applications/misc/goldendict-ng { }; 11977 11959 ··· 15058 15040 # A version of OpenBLAS using 32-bit integers on all platforms for compatibility with 15059 15041 # standard BLAS and LAPACK. 15060 15042 openblasCompat = openblas.override { blas64 = false; }; 15061 - 15062 - inherit (callPackage ../development/libraries/science/math/magma { }) magma; 15063 15043 15064 15044 magma-cuda = magma.override { 15065 15045 cudaSupport = true;