Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub c91a43b5 a3e8b3ee

+1543 -845
+6
maintainers/maintainer-list.nix
··· 25076 25076 githubId = 6162814; 25077 25077 keys = [ { fingerprint = "21E1 6B8D 2EE8 7530 6A6C 9968 D830 77B9 9F8C 6643"; } ]; 25078 25078 }; 25079 + wrvsrx = { 25080 + name = "wrvsrx"; 25081 + email = "wrvsrx@outlook.com"; 25082 + github = "wrvsrx"; 25083 + githubId = 42770726; 25084 + }; 25079 25085 wscott = { 25080 25086 email = "wsc9tt@gmail.com"; 25081 25087 github = "wscott";
+2
nixos/doc/manual/release-notes/rl-2505.section.md
··· 430 430 431 431 - `services.avahi.ipv6` now defaults to true. 432 432 433 + - The Home Assistant module has new options {option}`services.home-assistant.blueprints.automation`, `services.home-assistant.blueprints.script`, and {option}`services.home-assistant.blueprints.template` that allow for the declarative installation of [blueprints](https://www.home-assistant.io/docs/blueprint/) into the appropriate configuration directories. 434 + 433 435 - For matrix homeserver Synapse we are now following the upstream recommendation to enable jemalloc as the memory allocator by default. 434 436 435 437 - `services.kmonad` now creates a determinate symlink (in `/dev/input/by-id/`) to each of KMonad virtual devices.
+97 -85
nixos/modules/profiles/hardened.nix
··· 12 12 pkgs, 13 13 ... 14 14 }: 15 - 16 - with lib; 17 - 15 + let 16 + inherit (lib) 17 + mkDefault 18 + mkOverride 19 + mkEnableOption 20 + mkIf 21 + maintainers 22 + ; 23 + in 18 24 { 19 - meta = { 20 - maintainers = [ 21 - maintainers.joachifm 22 - maintainers.emily 23 - ]; 25 + options.profiles.hardened = mkEnableOption "hardened" // { 26 + default = true; 27 + example = false; 24 28 }; 29 + config = mkIf config.profiles.hardened { 30 + meta = { 31 + maintainers = [ 32 + maintainers.joachifm 33 + maintainers.emily 34 + ]; 35 + }; 25 36 26 - boot.kernelPackages = mkDefault pkgs.linuxPackages_hardened; 37 + boot.kernelPackages = mkDefault pkgs.linuxPackages_hardened; 27 38 28 - nix.settings.allowed-users = mkDefault [ "@users" ]; 39 + nix.settings.allowed-users = mkDefault [ "@users" ]; 29 40 30 - environment.memoryAllocator.provider = mkDefault "scudo"; 31 - environment.variables.SCUDO_OPTIONS = mkDefault "ZeroContents=1"; 41 + environment.memoryAllocator.provider = mkDefault "scudo"; 42 + environment.variables.SCUDO_OPTIONS = mkDefault "ZeroContents=1"; 32 43 33 - security.lockKernelModules = mkDefault true; 44 + security.lockKernelModules = mkDefault true; 34 45 35 - security.protectKernelImage = mkDefault true; 46 + security.protectKernelImage = mkDefault true; 36 47 37 - security.allowSimultaneousMultithreading = mkDefault false; 48 + security.allowSimultaneousMultithreading = mkDefault false; 38 49 39 - security.forcePageTableIsolation = mkDefault true; 50 + security.forcePageTableIsolation = mkDefault true; 40 51 41 - # This is required by podman to run containers in rootless mode. 42 - security.unprivilegedUsernsClone = mkDefault config.virtualisation.containers.enable; 52 + # This is required by podman to run containers in rootless mode. 53 + security.unprivilegedUsernsClone = mkDefault config.virtualisation.containers.enable; 43 54 44 - security.virtualisation.flushL1DataCache = mkDefault "always"; 55 + security.virtualisation.flushL1DataCache = mkDefault "always"; 45 56 46 - security.apparmor.enable = mkDefault true; 47 - security.apparmor.killUnconfinedConfinables = mkDefault true; 57 + security.apparmor.enable = mkDefault true; 58 + security.apparmor.killUnconfinedConfinables = mkDefault true; 48 59 49 - boot.kernelParams = [ 50 - # Don't merge slabs 51 - "slab_nomerge" 60 + boot.kernelParams = [ 61 + # Don't merge slabs 62 + "slab_nomerge" 52 63 53 - # Overwrite free'd pages 54 - "page_poison=1" 64 + # Overwrite free'd pages 65 + "page_poison=1" 55 66 56 - # Enable page allocator randomization 57 - "page_alloc.shuffle=1" 67 + # Enable page allocator randomization 68 + "page_alloc.shuffle=1" 58 69 59 - # Disable debugfs 60 - "debugfs=off" 61 - ]; 70 + # Disable debugfs 71 + "debugfs=off" 72 + ]; 62 73 63 - boot.blacklistedKernelModules = [ 64 - # Obscure network protocols 65 - "ax25" 66 - "netrom" 67 - "rose" 74 + boot.blacklistedKernelModules = [ 75 + # Obscure network protocols 76 + "ax25" 77 + "netrom" 78 + "rose" 68 79 69 - # Old or rare or insufficiently audited filesystems 70 - "adfs" 71 - "affs" 72 - "bfs" 73 - "befs" 74 - "cramfs" 75 - "efs" 76 - "erofs" 77 - "exofs" 78 - "freevxfs" 79 - "f2fs" 80 - "hfs" 81 - "hpfs" 82 - "jfs" 83 - "minix" 84 - "nilfs2" 85 - "ntfs" 86 - "omfs" 87 - "qnx4" 88 - "qnx6" 89 - "sysv" 90 - "ufs" 91 - ]; 80 + # Old or rare or insufficiently audited filesystems 81 + "adfs" 82 + "affs" 83 + "bfs" 84 + "befs" 85 + "cramfs" 86 + "efs" 87 + "erofs" 88 + "exofs" 89 + "freevxfs" 90 + "f2fs" 91 + "hfs" 92 + "hpfs" 93 + "jfs" 94 + "minix" 95 + "nilfs2" 96 + "ntfs" 97 + "omfs" 98 + "qnx4" 99 + "qnx6" 100 + "sysv" 101 + "ufs" 102 + ]; 92 103 93 - # Hide kptrs even for processes with CAP_SYSLOG 94 - boot.kernel.sysctl."kernel.kptr_restrict" = mkOverride 500 2; 104 + # Hide kptrs even for processes with CAP_SYSLOG 105 + boot.kernel.sysctl."kernel.kptr_restrict" = mkOverride 500 2; 95 106 96 - # Disable bpf() JIT (to eliminate spray attacks) 97 - boot.kernel.sysctl."net.core.bpf_jit_enable" = mkDefault false; 107 + # Disable bpf() JIT (to eliminate spray attacks) 108 + boot.kernel.sysctl."net.core.bpf_jit_enable" = mkDefault false; 98 109 99 - # Disable ftrace debugging 100 - boot.kernel.sysctl."kernel.ftrace_enabled" = mkDefault false; 110 + # Disable ftrace debugging 111 + boot.kernel.sysctl."kernel.ftrace_enabled" = mkDefault false; 101 112 102 - # Enable strict reverse path filtering (that is, do not attempt to route 103 - # packets that "obviously" do not belong to the iface's network; dropped 104 - # packets are logged as martians). 105 - boot.kernel.sysctl."net.ipv4.conf.all.log_martians" = mkDefault true; 106 - boot.kernel.sysctl."net.ipv4.conf.all.rp_filter" = mkDefault "1"; 107 - boot.kernel.sysctl."net.ipv4.conf.default.log_martians" = mkDefault true; 108 - boot.kernel.sysctl."net.ipv4.conf.default.rp_filter" = mkDefault "1"; 113 + # Enable strict reverse path filtering (that is, do not attempt to route 114 + # packets that "obviously" do not belong to the iface's network; dropped 115 + # packets are logged as martians). 116 + boot.kernel.sysctl."net.ipv4.conf.all.log_martians" = mkDefault true; 117 + boot.kernel.sysctl."net.ipv4.conf.all.rp_filter" = mkDefault "1"; 118 + boot.kernel.sysctl."net.ipv4.conf.default.log_martians" = mkDefault true; 119 + boot.kernel.sysctl."net.ipv4.conf.default.rp_filter" = mkDefault "1"; 109 120 110 - # Ignore broadcast ICMP (mitigate SMURF) 111 - boot.kernel.sysctl."net.ipv4.icmp_echo_ignore_broadcasts" = mkDefault true; 121 + # Ignore broadcast ICMP (mitigate SMURF) 122 + boot.kernel.sysctl."net.ipv4.icmp_echo_ignore_broadcasts" = mkDefault true; 112 123 113 - # Ignore incoming ICMP redirects (note: default is needed to ensure that the 114 - # setting is applied to interfaces added after the sysctls are set) 115 - boot.kernel.sysctl."net.ipv4.conf.all.accept_redirects" = mkDefault false; 116 - boot.kernel.sysctl."net.ipv4.conf.all.secure_redirects" = mkDefault false; 117 - boot.kernel.sysctl."net.ipv4.conf.default.accept_redirects" = mkDefault false; 118 - boot.kernel.sysctl."net.ipv4.conf.default.secure_redirects" = mkDefault false; 119 - boot.kernel.sysctl."net.ipv6.conf.all.accept_redirects" = mkDefault false; 120 - boot.kernel.sysctl."net.ipv6.conf.default.accept_redirects" = mkDefault false; 124 + # Ignore incoming ICMP redirects (note: default is needed to ensure that the 125 + # setting is applied to interfaces added after the sysctls are set) 126 + boot.kernel.sysctl."net.ipv4.conf.all.accept_redirects" = mkDefault false; 127 + boot.kernel.sysctl."net.ipv4.conf.all.secure_redirects" = mkDefault false; 128 + boot.kernel.sysctl."net.ipv4.conf.default.accept_redirects" = mkDefault false; 129 + boot.kernel.sysctl."net.ipv4.conf.default.secure_redirects" = mkDefault false; 130 + boot.kernel.sysctl."net.ipv6.conf.all.accept_redirects" = mkDefault false; 131 + boot.kernel.sysctl."net.ipv6.conf.default.accept_redirects" = mkDefault false; 121 132 122 - # Ignore outgoing ICMP redirects (this is ipv4 only) 123 - boot.kernel.sysctl."net.ipv4.conf.all.send_redirects" = mkDefault false; 124 - boot.kernel.sysctl."net.ipv4.conf.default.send_redirects" = mkDefault false; 133 + # Ignore outgoing ICMP redirects (this is ipv4 only) 134 + boot.kernel.sysctl."net.ipv4.conf.all.send_redirects" = mkDefault false; 135 + boot.kernel.sysctl."net.ipv4.conf.default.send_redirects" = mkDefault false; 136 + }; 125 137 }
+67 -1
nixos/modules/services/home-automation/home-assistant.nix
··· 6 6 attrByPath 7 7 attrValues 8 8 concatMap 9 + concatStrings 9 10 converge 10 11 elem 11 12 escapeShellArg 12 13 escapeShellArgs 13 14 filter 14 15 filterAttrsRecursive 16 + flatten 15 17 hasAttrByPath 16 18 isAttrs 17 19 isDerivation 18 20 isList 21 + isStorePath 19 22 literalExpression 23 + mapAttrsToList 24 + mergeAttrsList 20 25 mkEnableOption 21 26 mkIf 22 27 mkMerge ··· 28 33 recursiveUpdate 29 34 singleton 30 35 splitString 36 + substring 31 37 types 32 38 unique 33 39 ; ··· 502 508 type = types.bool; 503 509 description = "Whether to open the firewall for the specified port."; 504 510 }; 511 + 512 + blueprints = mergeAttrsList ( 513 + map 514 + (domain: { 515 + ${domain} = mkOption { 516 + default = [ ]; 517 + description = '' 518 + List of ${domain} 519 + [blueprints](https://www.home-assistant.io/docs/blueprint/) to 520 + install into {file}`''${configDir}/blueprints/${domain}`. 521 + ''; 522 + example = 523 + if domain == "automation" then 524 + literalExpression '' 525 + [ 526 + (pkgs.fetchurl { 527 + url = "https://github.com/home-assistant/core/raw/2025.1.4/homeassistant/components/automation/blueprints/motion_light.yaml"; 528 + hash = "sha256-4HrDX65ycBMfEY2nZ7A25/d3ZnIHdpHZ+80Cblp+P5w="; 529 + }) 530 + ] 531 + '' 532 + else if domain == "template" then 533 + literalExpression "[ \"\${pkgs.home-assistant.src}/homeassistant/components/template/blueprints/inverted_binary_sensor.yaml\" ]" 534 + else 535 + literalExpression "[ ./blueprint.yaml ]"; 536 + type = types.listOf (types.coercedTo types.path (x: "${x}") types.pathInStore); 537 + }; 538 + }) 539 + # https://www.home-assistant.io/docs/blueprint/schema/#domain 540 + [ 541 + "automation" 542 + "script" 543 + "template" 544 + ] 545 + ); 505 546 }; 506 547 507 548 config = mkIf cfg.enable { ··· 576 617 ln -fns "''${paths[@]}" "${cfg.configDir}/custom_components/" 577 618 done 578 619 ''; 620 + removeBlueprints = '' 621 + # remove blueprints symlinked in from below the /nix/store 622 + readarray -d "" blueprints < <(find "${cfg.configDir}/blueprints" -maxdepth 2 -type l -print0) 623 + for blueprint in "''${blueprints[@]}"; do 624 + if [[ "$(readlink "$blueprint")" =~ ^${escapeShellArg builtins.storeDir} ]]; then 625 + rm "$blueprint" 626 + fi 627 + done 628 + ''; 629 + copyBlueprint = 630 + domain: blueprint: 631 + let 632 + filename = 633 + if isStorePath blueprint then substring 33 (-1) (baseNameOf blueprint) else baseNameOf blueprint; 634 + path = "${cfg.configDir}/blueprints/${domain}"; 635 + in 636 + '' 637 + mkdir -p ${escapeShellArg path} 638 + ln -s ${escapeShellArg blueprint} ${escapeShellArg "${path}/${filename}"} 639 + ''; 640 + copyBlueprints = concatStrings ( 641 + flatten (mapAttrsToList (domain: map (copyBlueprint domain)) cfg.blueprints) 642 + ); 579 643 in 580 644 (optionalString (cfg.config != null) copyConfig) + 581 645 (optionalString (cfg.lovelaceConfig != null) copyLovelaceConfig) + 582 646 copyCustomLovelaceModules + 583 - copyCustomComponents 647 + copyCustomComponents + 648 + removeBlueprints + 649 + copyBlueprints 584 650 ; 585 651 environment.PYTHONPATH = package.pythonPath; 586 652 serviceConfig = let
+2
nixos/modules/services/monitoring/prometheus/exporters/restic.nix
··· 140 140 ${concatStringsSep " \\\n " cfg.extraFlags} 141 141 ''; 142 142 serviceConfig = { 143 + CacheDirectory = "restic-exporter"; 143 144 EnvironmentFile = mkIf (cfg.environmentFile != null) cfg.environmentFile; 144 145 LoadCredential = [ 145 146 "RESTIC_PASSWORD_FILE:${cfg.passwordFile}" ··· 156 157 LISTEN_ADDRESS = cfg.listenAddress; 157 158 LISTEN_PORT = toString cfg.port; 158 159 REFRESH_INTERVAL = toString cfg.refreshInterval; 160 + RESTIC_CACHE_DIR = "$CACHE_DIRECTORY"; 159 161 } 160 162 // (mapAttrs' ( 161 163 name: value: nameValuePair (rcloneAttrToOpt name) (toRcloneVal value)
+19 -1
nixos/tests/home-assistant.nix
··· 129 129 ]; 130 130 }; 131 131 lovelaceConfigWritable = true; 132 + 133 + blueprints.automation = [ 134 + (pkgs.fetchurl { 135 + url = "https://github.com/home-assistant/core/raw/2025.1.4/homeassistant/components/automation/blueprints/motion_light.yaml"; 136 + hash = "sha256-4HrDX65ycBMfEY2nZ7A25/d3ZnIHdpHZ+80Cblp+P5w="; 137 + }) 138 + ]; 139 + blueprints.template = [ 140 + "${pkgs.home-assistant.src}/homeassistant/components/template/blueprints/inverted_binary_sensor.yaml" 141 + ]; 132 142 }; 133 143 134 144 # Cause a configuration change inside `configuration.yml` and verify that the process is being reloaded. ··· 148 158 configuration.services.home-assistant = { 149 159 customComponents = lib.mkForce [ ]; 150 160 customLovelaceModules = lib.mkForce [ ]; 161 + blueprints.automation = lib.mkForce [ ]; 162 + blueprints.template = lib.mkForce [ ]; 151 163 }; 152 164 }; 153 165 }; ··· 226 238 with subtest("Check extra components are considered in systemd unit hardening"): 227 239 hass.succeed("systemctl show -p DeviceAllow home-assistant.service | grep -q char-ttyUSB") 228 240 241 + with subtest("Check that blueprints are installed"): 242 + hass.succeed("test -L '${configDir}/blueprints/automation/motion_light.yaml'") 243 + hass.succeed("test -L '${configDir}/blueprints/template/inverted_binary_sensor.yaml'") 244 + 229 245 with subtest("Check service restart from SIGHUP"): 230 246 pid = hass.succeed("systemctl show --property=MainPID home-assistant.service") 231 247 cursor = get_journal_cursor() ··· 247 263 for domain in ["prometheus"]: 248 264 assert f"Setup of domain {domain} took" in journal, f"{domain} setup missing" 249 265 250 - with subtest("Check custom components and custom lovelace modules get removed"): 266 + with subtest("Check custom components, custom lovelace modules, and blueprints get removed"): 251 267 cursor = get_journal_cursor() 252 268 hass.succeed("${system}/specialisation/removeCustomThings/bin/switch-to-configuration test") 253 269 hass.fail("grep -q 'mini-graph-card-bundle.js' '${configDir}/ui-lovelace.yaml'") 254 270 for integration in ("prometheus_sensor", "spook", "spook_inverse"): 255 271 hass.fail(f"test -f ${configDir}/custom_components/{integration}/manifest.json") 272 + hass.fail("test -e '${configDir}/blueprints/automation/motion_light.yaml'") 273 + hass.fail("test -e '${configDir}/blueprints/template/inverted_binary_sensor.yaml'") 256 274 wait_for_homeassistant(cursor) 257 275 258 276 with subtest("Check that no errors were logged"):
+6 -6
pkgs/applications/editors/sublime/4/packages.nix
··· 5 5 in 6 6 { 7 7 sublime4 = common { 8 - buildVersion = "4189"; 9 - x64sha256 = "0vEG2FfLK+93UtpYV9iWl187iN79Tozm38Vh6lbzW7A="; 10 - aarch64sha256 = "ZyLnbvpyxvJfyfu663ED0Yn5M37As+jy6TREZMgSHgI="; 8 + buildVersion = "4192"; 9 + x64sha256 = "3CMorzQj+JFPTXp6PPhX6Mlcz/kJb2FM2iwUsvrhy+s="; 10 + aarch64sha256 = "gVhDBac3kyDU1qIiXoN7Xf5Jvbdnif2QGuFUy2C34Mo="; 11 11 } { }; 12 12 13 13 sublime4-dev = common { 14 - buildVersion = "4188"; 14 + buildVersion = "4191"; 15 15 dev = true; 16 - x64sha256 = "b7JyJ9cPxb/Yjy9fvcz/m6OLETxMd8rwkmrEyMGAjjc="; 17 - aarch64sha256 = "oGL0UtQge21oH6p6BNsRkxqgvdi9PkT/uwZTYygu+ng="; 16 + x64sha256 = "fJy0BNToM8beMv5jYdFiecyjudzTG+r0mEpi9erZs4A="; 17 + aarch64sha256 = "KgqZ9+rEGM9wcgqk+CenFInmDc3jPMdnRBpTREHBpjE="; 18 18 } { }; 19 19 }
+24
pkgs/applications/editors/vim/plugins/generated.nix
··· 1302 1302 meta.homepage = "https://github.com/giuxtaposition/blink-cmp-copilot/"; 1303 1303 }; 1304 1304 1305 + blink-cmp-dictionary = buildVimPlugin { 1306 + pname = "blink-cmp-dictionary"; 1307 + version = "2025-01-12"; 1308 + src = fetchFromGitHub { 1309 + owner = "Kaiser-Yang"; 1310 + repo = "blink-cmp-dictionary"; 1311 + rev = "07cc2e49bb52ebff4e8b83d1801ad6441edf90a2"; 1312 + sha256 = "17c41flnjp25c5gry4lq8ik8mk3pbh1qwj86rby57jr4f4wvfykk"; 1313 + }; 1314 + meta.homepage = "https://github.com/Kaiser-Yang/blink-cmp-dictionary/"; 1315 + }; 1316 + 1305 1317 blink-cmp-spell = buildVimPlugin { 1306 1318 pname = "blink-cmp-spell"; 1307 1319 version = "2025-02-01"; ··· 7422 7434 sha256 = "05k4cgcrz0gj92xy685bd4p6nh2jmaywc2f5sw1lap0v685h7n79"; 7423 7435 }; 7424 7436 meta.homepage = "https://github.com/wfxr/minimap.vim/"; 7437 + }; 7438 + 7439 + minuet-ai-nvim = buildVimPlugin { 7440 + pname = "minuet-ai.nvim"; 7441 + version = "2025-02-03"; 7442 + src = fetchFromGitHub { 7443 + owner = "milanglacier"; 7444 + repo = "minuet-ai.nvim"; 7445 + rev = "9a264284573b837dc0202049166a0564a70deaed"; 7446 + sha256 = "06d7s9949aylda4vq36h4s9hnnp3lycwm2nrjid5vxb98gy3d3xn"; 7447 + }; 7448 + meta.homepage = "https://github.com/milanglacier/minuet-ai.nvim/"; 7425 7449 }; 7426 7450 7427 7451 mkdir-nvim = buildVimPlugin {
+22
pkgs/applications/editors/vim/plugins/overrides.nix
··· 292 292 dependencies = [ self.copilot-lua ]; 293 293 }; 294 294 295 + blink-cmp-dictionary = super.blink-cmp-dictionary.overrideAttrs { 296 + dependencies = [ self.plenary-nvim ]; 297 + }; 298 + 295 299 blink-emoji-nvim = super.blink-emoji-nvim.overrideAttrs { 296 300 dependencies = [ self.blink-cmp ]; 297 301 }; ··· 1807 1811 sha256 = "1db5az5civ2bnqg7v3g937mn150ys52258c3glpvdvyyasxb4iih"; 1808 1812 }; 1809 1813 meta.homepage = "https://github.com/jose-elias-alvarez/minsnip.nvim/"; 1814 + }; 1815 + 1816 + minuet-ai-nvim = super.minuet-ai-nvim.overrideAttrs { 1817 + checkInputs = [ 1818 + # optional cmp integration 1819 + self.nvim-cmp 1820 + ]; 1821 + dependencies = with self; [ plenary-nvim ]; 1822 + nvimSkipModule = [ 1823 + # Backends require configuration 1824 + "minuet.backends.claude" 1825 + "minuet.backends.codestral" 1826 + "minuet.backends.gemini" 1827 + "minuet.backends.huggingface" 1828 + "minuet.backends.openai" 1829 + "minuet.backends.openai_compatible" 1830 + "minuet.backends.openai_fim_compatible" 1831 + ]; 1810 1832 }; 1811 1833 1812 1834 mkdnflow-nvim = super.mkdnflow-nvim.overrideAttrs {
+2
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 106 106 https://github.com/LunarVim/bigfile.nvim/,, 107 107 https://github.com/APZelos/blamer.nvim/,HEAD, 108 108 https://github.com/giuxtaposition/blink-cmp-copilot/,HEAD, 109 + https://github.com/Kaiser-Yang/blink-cmp-dictionary/,HEAD, 109 110 https://github.com/Kaiser-Yang/blink-cmp-git/,HEAD, 110 111 https://github.com/ribru17/blink-cmp-spell/,HEAD, 111 112 https://github.com/fang2hou/blink-copilot/,HEAD, ··· 615 616 https://github.com/echasnovski/mini.trailspace/,HEAD, 616 617 https://github.com/echasnovski/mini.visits/,HEAD, 617 618 https://github.com/wfxr/minimap.vim/,, 619 + https://github.com/milanglacier/minuet-ai.nvim/,HEAD, 618 620 https://github.com/jghauser/mkdir.nvim/,main, 619 621 https://github.com/jakewvincent/mkdnflow.nvim/,HEAD, 620 622 https://github.com/SidOfc/mkdx/,,
+3 -3
pkgs/applications/emulators/libretro/cores/vice.nix
··· 6 6 }: 7 7 mkLibretroCore { 8 8 core = "vice-${type}"; 9 - version = "0-unstable-2025-01-11"; 9 + version = "0-unstable-2025-01-28"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "libretro"; 13 13 repo = "vice-libretro"; 14 - rev = "5afa33f347306f168ff0b4c54a7825895dd07b50"; 15 - hash = "sha256-D0DSKgqZV8EluRry2qSm7qnWnvwwDWz91G66W4nF2Kk="; 14 + rev = "cdef1f9f8d5cbe4ba3e9b9106e117bdd35f599b9"; 15 + hash = "sha256-02ZH5ax49uWnvYe+hpL7a94Bf8knja1YADxyI2irYms="; 16 16 }; 17 17 18 18 makefile = "Makefile";
+3 -3
pkgs/applications/networking/cluster/helm/plugins/helm-s3.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "helm-s3"; 9 - version = "0.16.2"; 9 + version = "0.16.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "hypnoglow"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-hQuZd0VI+JspIjR7Dax/LXUZ9Rqflc6RQG9X80BkfeY="; 15 + hash = "sha256-WiK2kZWik81HYZVVmzdqdqIE+jnAcYyu536NbdYWYxk="; 16 16 }; 17 17 18 - vendorHash = "sha256-CXlZazpsHasjHPNHzXIsrbtWgQs/lVRqGsoqRvl2MHw="; 18 + vendorHash = "sha256-AXr+2+iv3oNTHEckK7DXEA5PMgFgT5iAGRttvGoCpQQ="; 19 19 20 20 # NOTE: Remove the install and upgrade hooks. 21 21 postPatch = ''
+45 -45
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 90 90 "vendorHash": "sha256-V2CublY/9xSosrgxMYwHpnHtTucjiSuyzm+W4AY3pz0=" 91 91 }, 92 92 "auth0": { 93 - "hash": "sha256-4ZHTy4mBQ+ZgiUOZQEku8n+AfMmA9azioyAPeWUUae0=", 93 + "hash": "sha256-hfmJWtfHwDKtc9nsKZUbibf6VIQb02a/fXWkhqDgiFQ=", 94 94 "homepage": "https://registry.terraform.io/providers/auth0/auth0", 95 95 "owner": "auth0", 96 96 "repo": "terraform-provider-auth0", 97 - "rev": "v1.10.0", 97 + "rev": "v1.11.0", 98 98 "spdx": "MPL-2.0", 99 - "vendorHash": "sha256-mvudiybfS6eLemCTXUJSIV4mD+GzR7Ed2H+lfA0de8E=" 99 + "vendorHash": "sha256-NynPovzkVRNU0EGxbIcvO4AOxnmG10mWfk8520arU5c=" 100 100 }, 101 101 "avi": { 102 102 "hash": "sha256-ErZE6MA8Pn8KDDZLX2/yoeqck78vDAcFYdMhYMbcYuI=", ··· 225 225 "vendorHash": "sha256-OqbnkuEy9w6F1DxmlYhRNYhBaYhWV0FtMK4wdwSybh8=" 226 226 }, 227 227 "checkly": { 228 - "hash": "sha256-4J7pwtlAa920RXF6ZoSoi03qA15NBzUlXQCZRErI2Co=", 228 + "hash": "sha256-1V6EybAmIWEcd0gMc9vNLJVIZOHHW6AtYNmPshhkqN4=", 229 229 "homepage": "https://registry.terraform.io/providers/checkly/checkly", 230 230 "owner": "checkly", 231 231 "repo": "terraform-provider-checkly", 232 - "rev": "v1.8.2", 232 + "rev": "v1.9.1", 233 233 "spdx": null, 234 - "vendorHash": "sha256-DcRe3nBzKn8fC0Q8Dx/p0PXuUccX+4kmOMdZa3HuXNI=" 234 + "vendorHash": "sha256-JN+vZQGrpdVExHVMxCiBNavKxbIo1qjBU59AJbphlv4=" 235 235 }, 236 236 "ciscoasa": { 237 237 "hash": "sha256-xzc44FEy2MPo51Faq/VFwg411JK9e0kQucpt0vdN8yg=", ··· 444 444 "vendorHash": "sha256-xlcOCdgRTQbJCsL39hs3dUVjssGpyNij0ickjSn8EX0=" 445 445 }, 446 446 "fastly": { 447 - "hash": "sha256-PtmJISWgOXM2og0LaxLqBq9gB0AVegNaIFGbdckDcKc=", 447 + "hash": "sha256-C5kdhSfOUCinfFd6SwWQwsbnwAhNWBF50fj2fGIohZc=", 448 448 "homepage": "https://registry.terraform.io/providers/fastly/fastly", 449 449 "owner": "fastly", 450 450 "repo": "terraform-provider-fastly", 451 - "rev": "v5.15.0", 451 + "rev": "v5.16.0", 452 452 "spdx": "MPL-2.0", 453 453 "vendorHash": null 454 454 }, ··· 543 543 "vendorHash": "sha256-s2Ee9wB0smWx4mDPf/mUkCrmWfBrRzYlriWKB/I9Ax8=" 544 544 }, 545 545 "gridscale": { 546 - "hash": "sha256-kgpEPbQLqiu8X0lOs6dCUqWpYTDxQX8fMgWoP0wWtBw=", 546 + "hash": "sha256-uI05BO/c00RNr52rbvY7SZwcn64NRfBpR44/xXWmjqw=", 547 547 "homepage": "https://registry.terraform.io/providers/gridscale/gridscale", 548 548 "owner": "gridscale", 549 549 "repo": "terraform-provider-gridscale", 550 - "rev": "v2.0.2", 550 + "rev": "v2.0.3", 551 551 "spdx": "MPL-2.0", 552 552 "vendorHash": null 553 553 }, 554 554 "harbor": { 555 - "hash": "sha256-NDOFrW7VeunxAJPkcJ4DFrjrt0fL5B5+gT9H19L1Cos=", 555 + "hash": "sha256-FSuJ8upRnDny9Rjf+hS+Kd6e3YcuqYRMfwMwseHNlfo=", 556 556 "homepage": "https://registry.terraform.io/providers/goharbor/harbor", 557 557 "owner": "goharbor", 558 558 "repo": "terraform-provider-harbor", 559 - "rev": "v3.10.17", 559 + "rev": "v3.10.18", 560 560 "spdx": "MIT", 561 561 "vendorHash": "sha256-YkTXwx3RjIbzJnagfcYgb5IRnF0sHEDBDzdHf+GS8xI=" 562 562 }, ··· 669 669 "vendorHash": "sha256-xr54yCVGOJbj0612wiljUkx1wEOSuXB1qrGbF/vCwN8=" 670 670 }, 671 671 "infoblox": { 672 - "hash": "sha256-r++9Fagi5hULK0IDEUjHzYS2cNpyB5gvaUwmoPOnExQ=", 672 + "hash": "sha256-iz/Khne3wggjkZFWZOK9DVZsB8HW6nsNBCfEbsBdhzk=", 673 673 "homepage": "https://registry.terraform.io/providers/infobloxopen/infoblox", 674 674 "owner": "infobloxopen", 675 675 "repo": "terraform-provider-infoblox", 676 - "rev": "v2.8.0", 676 + "rev": "v2.9.0", 677 677 "spdx": "MPL-2.0", 678 678 "vendorHash": null 679 679 }, ··· 696 696 "vendorHash": "sha256-DnE9tA8VYgtzJWN8j3IOsQs1SiA3NX1mDQzp/Fpqh/U=" 697 697 }, 698 698 "kafka-connect": { 699 - "hash": "sha256-3EUTte3txaDRz3jh0h23+Bf1tdLeCvPN9x8mYWY5VjI=", 699 + "hash": "sha256-XMGpK22Ww8swvfrnbClxjErVmkBKX3dxdlkjgNJHlCE=", 700 700 "homepage": "https://registry.terraform.io/providers/Mongey/kafka-connect", 701 701 "owner": "Mongey", 702 702 "repo": "terraform-provider-kafka-connect", 703 - "rev": "v0.4.1", 703 + "rev": "v0.4.3", 704 704 "spdx": "MIT", 705 - "vendorHash": "sha256-rGujp6FsQnkznRfjrSSB+4lLC3wAv6yvL/jAoWOiST0=" 705 + "vendorHash": "sha256-5cqj1O57snU+NoVqmWc/KIGnowQNMww+rJxYfIPvHWU=" 706 706 }, 707 707 "keycloak": { 708 - "hash": "sha256-hdTZ+UEpmv4T8Kxk8cf1QACUKyOoRbD1X3OxwhmrRiI=", 708 + "hash": "sha256-mlPq3sOaGN/fFAxMmK9ahcupwWd/4gYdNTLGRqDjPLc=", 709 709 "homepage": "https://registry.terraform.io/providers/keycloak/keycloak", 710 710 "owner": "keycloak", 711 711 "repo": "terraform-provider-keycloak", 712 - "rev": "v5.0.0", 712 + "rev": "v5.1.1", 713 713 "spdx": "Apache-2.0", 714 714 "vendorHash": "sha256-51sFU6P4Ynyu9NpQxlbSV7EoB/Lk1da4O0bOuoeMujI=" 715 715 }, ··· 732 732 "vendorHash": "sha256-PfvIzUugDsnMKW7mSM2GyJZpXi3wJsEhYLKzlKq1U6A=" 733 733 }, 734 734 "launchdarkly": { 735 - "hash": "sha256-ONASsswVYyugvSpACCmWIcuhnbueW++/s8F7c91PkeQ=", 735 + "hash": "sha256-nneVn/q6p1FbFSZDjL5aEmp1U1xtjGox/mf48e140Qs=", 736 736 "homepage": "https://registry.terraform.io/providers/launchdarkly/launchdarkly", 737 737 "owner": "launchdarkly", 738 738 "repo": "terraform-provider-launchdarkly", 739 - "rev": "v2.21.2", 739 + "rev": "v2.21.5", 740 740 "spdx": "MPL-2.0", 741 - "vendorHash": "sha256-v9N7lj7bEgR5HZm1SO0+DSCmQFVnsRvHPMycYMfpYwo=" 741 + "vendorHash": "sha256-mdVTcbfJ06o8LTfFMnpmoYSbLVSjZxxhpFFsL54tbUA=" 742 742 }, 743 743 "libvirt": { 744 744 "hash": "sha256-B99pSnnI+GoMX4uleDqBoAKPe15l/+C5mIUGp6KsE54=", ··· 750 750 "vendorHash": "sha256-Q9LdhokZol1jhSfQVIRvPe1XrE8nVvc22aWHt7wkcHY=" 751 751 }, 752 752 "linode": { 753 - "hash": "sha256-qyHRGkhwq9YS/mYLFMXEkEdNtH3yfCrXIP4q/QdOzcY=", 753 + "hash": "sha256-dJkyhLAYwmohDqLwfmp9ScgfXGpix21md6Aqf+mQeFI=", 754 754 "homepage": "https://registry.terraform.io/providers/linode/linode", 755 755 "owner": "linode", 756 756 "repo": "terraform-provider-linode", 757 - "rev": "v2.32.0", 757 + "rev": "v2.33.0", 758 758 "spdx": "MPL-2.0", 759 - "vendorHash": "sha256-1wwePyqy6ZLc3ZN0M2zZ6sxhVGZl7gWATv1xvcHBqB4=" 759 + "vendorHash": "sha256-J2qbC4I8hd99VVyH8tGDBz53MDPNMM1IMA2Gc1oUwvQ=" 760 760 }, 761 761 "linuxbox": { 762 762 "hash": "sha256-svQRz1/PdVLpHoxOam1sfRTwHqgqs4ohJQs3IPMMAM4=", ··· 813 813 "vendorHash": "sha256-QxbZv6YMa5/I4bTeQBNdmG3EKtLEmstnH7HMiZzFJrI=" 814 814 }, 815 815 "migadu": { 816 - "hash": "sha256-ZKlxt/qTccHlNSTwTFKroK/JmKLTcQ8MIeCKx+iRJm0=", 816 + "hash": "sha256-27NVXEPBaSGMP8zbnXG/0KEbvXMybvJq4XmudRbvrjg=", 817 817 "homepage": "https://registry.terraform.io/providers/metio/migadu", 818 818 "owner": "metio", 819 819 "repo": "terraform-provider-migadu", 820 - "rev": "2025.1.16", 820 + "rev": "2025.1.23", 821 821 "spdx": "0BSD", 822 - "vendorHash": "sha256-03pGB+biwTfJdGADhBSJn1BNhuowTrO8nwQm2eCCpaI=" 822 + "vendorHash": "sha256-6jl3KEJsoyGH7lhMBJpkxkE1ZkkAdF3puSoo39PKR2s=" 823 823 }, 824 824 "minio": { 825 - "hash": "sha256-GJU70N/8EocLNxTG/psIsRYVHkg5fALhA9/ewErNML0=", 825 + "hash": "sha256-Y34cCOQqJslDU4LcCou1QxIFfyUP2PRt3ExoCUNl8so=", 826 826 "homepage": "https://registry.terraform.io/providers/aminueza/minio", 827 827 "owner": "aminueza", 828 828 "repo": "terraform-provider-minio", 829 - "rev": "v3.2.2", 829 + "rev": "v3.2.3", 830 830 "spdx": "AGPL-3.0", 831 831 "vendorHash": "sha256-a9v1nVG3NiuyHwJGhIKKKXFDp4/Cb533EJxrfqK9h/A=" 832 832 }, ··· 858 858 "vendorHash": null 859 859 }, 860 860 "newrelic": { 861 - "hash": "sha256-kyfNlLVzrNMLKGCahpbzeyqvFYPug6RyPPxCnxwP/W4=", 861 + "hash": "sha256-P3T+9Ma5OzNdEXs3EbkyiJBkaEYeBUpIyduQTOt9TXY=", 862 862 "homepage": "https://registry.terraform.io/providers/newrelic/newrelic", 863 863 "owner": "newrelic", 864 864 "repo": "terraform-provider-newrelic", 865 - "rev": "v3.54.0", 865 + "rev": "v3.54.1", 866 866 "spdx": "MPL-2.0", 867 - "vendorHash": "sha256-hxDLJrv7a8JZ6etYS7u+kiIcudJJeB47PKQTE3NzCvI=" 867 + "vendorHash": "sha256-RI0ukPxV+At0dNGPuKc5jkI2k/JL6LnxHH07dl3LMVE=" 868 868 }, 869 869 "nomad": { 870 870 "hash": "sha256-k61iQ9FQG3nscBp5CE/fFCbHpeLawbUAtGPM+IZtfVc=", ··· 976 976 "vendorHash": null 977 977 }, 978 978 "ovh": { 979 - "hash": "sha256-qF2Wfgse2hcQ6TCbwfk+taUNwEKnNWZh2929VlgCrb4=", 979 + "hash": "sha256-aGg3zvGWBVU8dv852nG1u3gRKD6I9ra77D2foDmjUEE=", 980 980 "homepage": "https://registry.terraform.io/providers/ovh/ovh", 981 981 "owner": "ovh", 982 982 "repo": "terraform-provider-ovh", 983 - "rev": "v1.4.0", 983 + "rev": "v1.5.0", 984 984 "spdx": "MPL-2.0", 985 985 "vendorHash": null 986 986 }, 987 987 "pagerduty": { 988 - "hash": "sha256-r0F+WSEY7j2AesQ0sDixOe9uKD0hOIdSzDYEhC8yEDA=", 988 + "hash": "sha256-6n+FPTuoK5eoaNxa+E8NAWglMBMH/1eJAu6BmiaKhAs=", 989 989 "homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty", 990 990 "owner": "PagerDuty", 991 991 "repo": "terraform-provider-pagerduty", 992 - "rev": "v3.19.2", 992 + "rev": "v3.19.4", 993 993 "spdx": "MPL-2.0", 994 994 "vendorHash": null 995 995 }, ··· 1111 1111 "vendorHash": null 1112 1112 }, 1113 1113 "selectel": { 1114 - "hash": "sha256-bXPH/1fEuGehOOSTXsR/yi0BiR8zneIc2KUqOEoG5Qw=", 1114 + "hash": "sha256-CVGMFepwfNKlqlAoFY2Uc8w3ZC6RbD9hOhsYnTFNmJM=", 1115 1115 "homepage": "https://registry.terraform.io/providers/selectel/selectel", 1116 1116 "owner": "selectel", 1117 1117 "repo": "terraform-provider-selectel", 1118 - "rev": "v6.1.0", 1118 + "rev": "v6.1.1", 1119 1119 "spdx": "MPL-2.0", 1120 1120 "vendorHash": "sha256-LRs2zI5L5qdWiM8VexQPkP8SjrO/sVEj/MOX+n4NKSc=" 1121 1121 }, ··· 1138 1138 "vendorHash": "sha256-MIO0VHofPtKPtynbvjvEukMNr5NXHgk7BqwIhbc9+u0=" 1139 1139 }, 1140 1140 "signalfx": { 1141 - "hash": "sha256-C8LyILuqT15NqqzBrj09N+Nx9KMhE/oBPfXtc8gPfns=", 1141 + "hash": "sha256-m+dclQs0oGwXci/SDfaNSwuzTCV3hDskyiD0VbTmryQ=", 1142 1142 "homepage": "https://registry.terraform.io/providers/splunk-terraform/signalfx", 1143 1143 "owner": "splunk-terraform", 1144 1144 "repo": "terraform-provider-signalfx", 1145 - "rev": "v9.6.1", 1145 + "rev": "v9.7.1", 1146 1146 "spdx": "MPL-2.0", 1147 - "vendorHash": "sha256-ijq03YXHiSKOgjG9gbyNHPUsYlYHi9nY4pmhMxM5CrI=" 1147 + "vendorHash": "sha256-Eh/8EDdnxKBbq0E3KXFtO4liJ6ruytfyCyM5DVwk9jo=" 1148 1148 }, 1149 1149 "skytap": { 1150 1150 "hash": "sha256-JII4czazo6Di2sad1uFHMKDO2gWgZlQE8l/+IRYHQHU=", ··· 1264 1264 "vendorHash": "sha256-iEi3zkr4kIZ1FTAft/Fy//v7xtlX/8uSrnbuxgFTDyA=" 1265 1265 }, 1266 1266 "temporalcloud": { 1267 - "hash": "sha256-nAOHdok/nK33zyEYmyB2nA+y2/mpkigZk4WTyl2F7XA=", 1267 + "hash": "sha256-cHhrNEHzOWp1wrbWZkoAjFyyhmHfvFZtM8g/u9RI+F0=", 1268 1268 "homepage": "https://registry.terraform.io/providers/temporalio/temporalcloud", 1269 1269 "owner": "temporalio", 1270 1270 "repo": "terraform-provider-temporalcloud", 1271 - "rev": "v0.5.0", 1271 + "rev": "v0.6.0", 1272 1272 "spdx": "MPL-2.0", 1273 - "vendorHash": "sha256-VMEL2dQ1+kMRWjJP6Obc3N1OytpAkRVW/9596WhwkE4=" 1273 + "vendorHash": "sha256-Cqo7aq0uBISrnpQPrmJBNACSt2mAt12I4xpf8yDd0AU=" 1274 1274 }, 1275 1275 "tencentcloud": { 1276 1276 "hash": "sha256-g4UQs7GdU5GFkrC9eeFLMYGLR2Wt2UbSSX5yP1CExT0=",
+2 -2
pkgs/by-name/al/aldente/package.nix
··· 8 8 9 9 stdenvNoCC.mkDerivation (finalAttrs: { 10 10 pname = "aldente"; 11 - version = "1.29"; 11 + version = "1.30"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/davidwernhart/aldente-charge-limiter/releases/download/${finalAttrs.version}/AlDente.dmg"; 15 - hash = "sha256-F19DZnjnlZ7ydgNhPNUa7FqPp5/MzDcQRtksIkXgIis="; 15 + hash = "sha256-O3t8Vm1y/OcPzz9MgKA5TcaK43HhPrURvPeWeXvjsjo="; 16 16 }; 17 17 18 18 dontBuild = true;
+2 -2
pkgs/by-name/al/allure/package.nix
··· 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "allure"; 11 - version = "2.32.0"; 11 + version = "2.32.1"; 12 12 13 13 src = fetchurl { 14 14 url = "https://github.com/allure-framework/allure2/releases/download/${finalAttrs.version}/allure-${finalAttrs.version}.tgz"; 15 - hash = "sha256-zfqXiz6rnPn1JInqkoTkMdiw0thZvNVqeRwyDoA85lw="; 15 + hash = "sha256-EpTcdF1v6Os7FL/stqRR6OtZoPGuWp8qoC6U7NtBtaY="; 16 16 }; 17 17 18 18 dontConfigure = true;
+291 -230
pkgs/by-name/am/amdgpu_top/Cargo.lock
··· 41 41 checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 42 42 dependencies = [ 43 43 "cfg-if", 44 - "getrandom", 44 + "getrandom 0.2.15", 45 45 "once_cell", 46 46 "serde", 47 47 "version_check", ··· 58 58 ] 59 59 60 60 [[package]] 61 - name = "allocator-api2" 62 - version = "0.2.21" 63 - source = "registry+https://github.com/rust-lang/crates.io-index" 64 - checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 65 - 66 - [[package]] 67 61 name = "amdgpu_top" 68 - version = "0.10.1" 62 + version = "0.10.2" 69 63 dependencies = [ 70 64 "amdgpu_top_gui", 71 65 "amdgpu_top_json", ··· 77 71 78 72 [[package]] 79 73 name = "amdgpu_top_gui" 80 - version = "0.10.1" 74 + version = "0.10.2" 81 75 dependencies = [ 82 76 "eframe", 83 77 "egui_plot", ··· 89 83 90 84 [[package]] 91 85 name = "amdgpu_top_json" 92 - version = "0.10.1" 86 + version = "0.10.2" 93 87 dependencies = [ 94 88 "libamdgpu_top", 95 89 "serde_json", ··· 97 91 98 92 [[package]] 99 93 name = "amdgpu_top_tui" 100 - version = "0.10.1" 94 + version = "0.10.2" 101 95 dependencies = [ 102 96 "cursive", 103 97 "libamdgpu_top", ··· 111 105 checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046" 112 106 dependencies = [ 113 107 "android-properties", 114 - "bitflags 2.6.0", 108 + "bitflags 2.8.0", 115 109 "cc", 116 110 "cesu8", 117 111 "jni", ··· 142 136 143 137 [[package]] 144 138 name = "anyhow" 145 - version = "1.0.94" 139 + version = "1.0.95" 146 140 source = "registry+https://github.com/rust-lang/crates.io-index" 147 - checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" 141 + checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" 148 142 149 143 [[package]] 150 144 name = "arboard" ··· 238 232 239 233 [[package]] 240 234 name = "bitflags" 241 - version = "2.6.0" 235 + version = "2.8.0" 242 236 source = "registry+https://github.com/rust-lang/crates.io-index" 243 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 237 + checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" 244 238 dependencies = [ 245 239 "serde", 246 240 ] ··· 271 265 272 266 [[package]] 273 267 name = "bstr" 274 - version = "1.11.1" 268 + version = "1.11.3" 275 269 source = "registry+https://github.com/rust-lang/crates.io-index" 276 - checksum = "786a307d683a5bf92e6fd5fd69a7eb613751668d1d8d67d802846dfe367c62c8" 270 + checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0" 277 271 dependencies = [ 278 272 "memchr", 279 273 "regex-automata", ··· 282 276 283 277 [[package]] 284 278 name = "bumpalo" 285 - version = "3.16.0" 279 + version = "3.17.0" 286 280 source = "registry+https://github.com/rust-lang/crates.io-index" 287 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 281 + checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" 288 282 289 283 [[package]] 290 284 name = "bytemuck" 291 - version = "1.20.0" 285 + version = "1.21.0" 292 286 source = "registry+https://github.com/rust-lang/crates.io-index" 293 - checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a" 287 + checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" 294 288 dependencies = [ 295 289 "bytemuck_derive", 296 290 ] 297 291 298 292 [[package]] 299 293 name = "bytemuck_derive" 300 - version = "1.8.0" 294 + version = "1.8.1" 301 295 source = "registry+https://github.com/rust-lang/crates.io-index" 302 - checksum = "bcfcc3cd946cb52f0bbfdbbcfa2f4e24f75ebb6c0e1002f7c25904fada18b9ec" 296 + checksum = "3fa76293b4f7bb636ab88fd78228235b5248b4d05cc589aed610f954af5d7c7a" 303 297 dependencies = [ 304 298 "proc-macro2", 305 299 "quote", 306 - "syn 2.0.90", 300 + "syn 2.0.98", 307 301 ] 308 302 309 303 [[package]] ··· 324 318 source = "registry+https://github.com/rust-lang/crates.io-index" 325 319 checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec" 326 320 dependencies = [ 327 - "bitflags 2.6.0", 321 + "bitflags 2.8.0", 328 322 "log", 329 323 "polling", 330 324 "rustix", ··· 346 340 347 341 [[package]] 348 342 name = "cc" 349 - version = "1.2.4" 343 + version = "1.2.11" 350 344 source = "registry+https://github.com/rust-lang/crates.io-index" 351 - checksum = "9157bbaa6b165880c27a4293a474c91cdcf265cc68cc829bf10be0964a391caf" 345 + checksum = "e4730490333d58093109dc02c23174c3f4d490998c3fed3cc8e82d57afedb9cf" 352 346 dependencies = [ 353 347 "jobserver", 354 348 "libc", ··· 506 500 507 501 [[package]] 508 502 name = "cpufeatures" 509 - version = "0.2.16" 503 + version = "0.2.17" 510 504 source = "registry+https://github.com/rust-lang/crates.io-index" 511 - checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" 505 + checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 512 506 dependencies = [ 513 507 "libc", 514 508 ] ··· 524 518 525 519 [[package]] 526 520 name = "crossbeam-channel" 527 - version = "0.5.13" 521 + version = "0.5.14" 528 522 source = "registry+https://github.com/rust-lang/crates.io-index" 529 - checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2" 523 + checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" 530 524 dependencies = [ 531 525 "crossbeam-utils", 532 526 ] 533 527 534 528 [[package]] 535 529 name = "crossbeam-utils" 536 - version = "0.8.20" 530 + version = "0.8.21" 537 531 source = "registry+https://github.com/rust-lang/crates.io-index" 538 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 532 + checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 539 533 540 534 [[package]] 541 535 name = "crossterm" ··· 637 631 "ident_case", 638 632 "proc-macro2", 639 633 "quote", 640 - "syn 2.0.90", 634 + "syn 2.0.98", 641 635 ] 642 636 643 637 [[package]] ··· 648 642 dependencies = [ 649 643 "darling_core", 650 644 "quote", 651 - "syn 2.0.90", 645 + "syn 2.0.98", 652 646 ] 653 647 654 648 [[package]] ··· 698 692 dependencies = [ 699 693 "proc-macro2", 700 694 "quote", 701 - "syn 2.0.90", 695 + "syn 2.0.98", 702 696 ] 703 697 704 698 [[package]] ··· 893 887 dependencies = [ 894 888 "proc-macro2", 895 889 "quote", 896 - "syn 2.0.90", 890 + "syn 2.0.98", 897 891 ] 898 892 899 893 [[package]] ··· 904 898 dependencies = [ 905 899 "proc-macro2", 906 900 "quote", 907 - "syn 2.0.90", 901 + "syn 2.0.98", 908 902 ] 909 903 910 904 [[package]] ··· 925 919 "darling", 926 920 "proc-macro2", 927 921 "quote", 928 - "syn 2.0.90", 922 + "syn 2.0.98", 929 923 ] 930 924 931 925 [[package]] ··· 1065 1059 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1066 1060 1067 1061 [[package]] 1062 + name = "foldhash" 1063 + version = "0.1.4" 1064 + source = "registry+https://github.com/rust-lang/crates.io-index" 1065 + checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f" 1066 + 1067 + [[package]] 1068 1068 name = "foreign-types" 1069 1069 version = "0.5.0" 1070 1070 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1082 1082 dependencies = [ 1083 1083 "proc-macro2", 1084 1084 "quote", 1085 - "syn 2.0.90", 1085 + "syn 2.0.98", 1086 1086 ] 1087 1087 1088 1088 [[package]] ··· 1128 1128 dependencies = [ 1129 1129 "cfg-if", 1130 1130 "libc", 1131 - "wasi", 1131 + "wasi 0.11.0+wasi-snapshot-preview1", 1132 + ] 1133 + 1134 + [[package]] 1135 + name = "getrandom" 1136 + version = "0.3.1" 1137 + source = "registry+https://github.com/rust-lang/crates.io-index" 1138 + checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8" 1139 + dependencies = [ 1140 + "cfg-if", 1141 + "libc", 1142 + "wasi 0.13.3+wasi-0.2.2", 1143 + "windows-targets 0.52.6", 1132 1144 ] 1133 1145 1134 1146 [[package]] ··· 1181 1193 "gix-utils", 1182 1194 "itoa", 1183 1195 "thiserror 1.0.69", 1184 - "winnow", 1196 + "winnow 0.6.26", 1185 1197 ] 1186 1198 1187 1199 [[package]] 1188 1200 name = "gix-chunk" 1189 - version = "0.4.10" 1201 + version = "0.4.11" 1190 1202 source = "registry+https://github.com/rust-lang/crates.io-index" 1191 - checksum = "c6ffbeb3a5c0b8b84c3fe4133a6f8c82fa962f4caefe8d0762eced025d3eb4f7" 1203 + checksum = "0b1f1d8764958699dc764e3f727cef280ff4d1bd92c107bbf8acd85b30c1bd6f" 1192 1204 dependencies = [ 1193 - "thiserror 2.0.7", 1205 + "thiserror 2.0.11", 1194 1206 ] 1195 1207 1196 1208 [[package]] ··· 1225 1237 "smallvec", 1226 1238 "thiserror 1.0.69", 1227 1239 "unicode-bom", 1228 - "winnow", 1240 + "winnow 0.6.26", 1229 1241 ] 1230 1242 1231 1243 [[package]] 1232 1244 name = "gix-config-value" 1233 - version = "0.14.10" 1245 + version = "0.14.11" 1234 1246 source = "registry+https://github.com/rust-lang/crates.io-index" 1235 - checksum = "49aaeef5d98390a3bcf9dbc6440b520b793d1bf3ed99317dc407b02be995b28e" 1247 + checksum = "11365144ef93082f3403471dbaa94cfe4b5e72743bdb9560719a251d439f4cee" 1236 1248 dependencies = [ 1237 - "bitflags 2.6.0", 1249 + "bitflags 2.8.0", 1238 1250 "bstr", 1239 1251 "gix-path", 1240 1252 "libc", 1241 - "thiserror 2.0.7", 1253 + "thiserror 2.0.11", 1242 1254 ] 1243 1255 1244 1256 [[package]] ··· 1317 1329 source = "registry+https://github.com/rust-lang/crates.io-index" 1318 1330 checksum = "74908b4bbc0a0a40852737e5d7889f676f081e340d5451a16e5b4c50d592f111" 1319 1331 dependencies = [ 1320 - "bitflags 2.6.0", 1332 + "bitflags 2.8.0", 1321 1333 "bstr", 1322 1334 "gix-features", 1323 1335 "gix-path", ··· 1363 1375 dependencies = [ 1364 1376 "proc-macro2", 1365 1377 "quote", 1366 - "syn 2.0.90", 1378 + "syn 2.0.98", 1367 1379 ] 1368 1380 1369 1381 [[package]] ··· 1382 1394 "itoa", 1383 1395 "smallvec", 1384 1396 "thiserror 1.0.69", 1385 - "winnow", 1397 + "winnow 0.6.26", 1386 1398 ] 1387 1399 1388 1400 [[package]] ··· 1425 1437 1426 1438 [[package]] 1427 1439 name = "gix-path" 1428 - version = "0.10.13" 1440 + version = "0.10.14" 1429 1441 source = "registry+https://github.com/rust-lang/crates.io-index" 1430 - checksum = "afc292ef1a51e340aeb0e720800338c805975724c1dfbd243185452efd8645b7" 1442 + checksum = "c40f12bb65a8299be0cfb90fe718e3be236b7a94b434877012980863a883a99f" 1431 1443 dependencies = [ 1432 1444 "bstr", 1433 1445 "gix-trace", 1434 1446 "home", 1435 1447 "once_cell", 1436 - "thiserror 2.0.7", 1448 + "thiserror 2.0.11", 1437 1449 ] 1438 1450 1439 1451 [[package]] 1440 1452 name = "gix-quote" 1441 - version = "0.4.14" 1453 + version = "0.4.15" 1442 1454 source = "registry+https://github.com/rust-lang/crates.io-index" 1443 - checksum = "64a1e282216ec2ab2816cd57e6ed88f8009e634aec47562883c05ac8a7009a63" 1455 + checksum = "e49357fccdb0c85c0d3a3292a9f6db32d9b3535959b5471bb9624908f4a066c6" 1444 1456 dependencies = [ 1445 1457 "bstr", 1446 1458 "gix-utils", 1447 - "thiserror 2.0.7", 1459 + "thiserror 2.0.11", 1448 1460 ] 1449 1461 1450 1462 [[package]] ··· 1465 1477 "gix-validate", 1466 1478 "memmap2", 1467 1479 "thiserror 1.0.69", 1468 - "winnow", 1480 + "winnow 0.6.26", 1469 1481 ] 1470 1482 1471 1483 [[package]] ··· 1513 1525 1514 1526 [[package]] 1515 1527 name = "gix-sec" 1516 - version = "0.10.10" 1528 + version = "0.10.11" 1517 1529 source = "registry+https://github.com/rust-lang/crates.io-index" 1518 - checksum = "a8b876ef997a955397809a2ec398d6a45b7a55b4918f2446344330f778d14fd6" 1530 + checksum = "d84dae13271f4313f8d60a166bf27e54c968c7c33e2ffd31c48cafe5da649875" 1519 1531 dependencies = [ 1520 - "bitflags 2.6.0", 1532 + "bitflags 2.8.0", 1521 1533 "gix-path", 1522 1534 "libc", 1523 1535 "windows-sys 0.52.0", ··· 1538 1550 1539 1551 [[package]] 1540 1552 name = "gix-trace" 1541 - version = "0.1.11" 1553 + version = "0.1.12" 1542 1554 source = "registry+https://github.com/rust-lang/crates.io-index" 1543 - checksum = "04bdde120c29f1fc23a24d3e115aeeea3d60d8e65bab92cc5f9d90d9302eb952" 1555 + checksum = "7c396a2036920c69695f760a65e7f2677267ccf483f25046977d87e4cb2665f7" 1544 1556 1545 1557 [[package]] 1546 1558 name = "gix-traverse" ··· 1548 1560 source = "registry+https://github.com/rust-lang/crates.io-index" 1549 1561 checksum = "e499a18c511e71cf4a20413b743b9f5bcf64b3d9e81e9c3c6cd399eae55a8840" 1550 1562 dependencies = [ 1551 - "bitflags 2.6.0", 1563 + "bitflags 2.8.0", 1552 1564 "gix-commitgraph", 1553 1565 "gix-date", 1554 1566 "gix-hash", ··· 1575 1587 1576 1588 [[package]] 1577 1589 name = "gix-utils" 1578 - version = "0.1.13" 1590 + version = "0.1.14" 1579 1591 source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "ba427e3e9599508ed98a6ddf8ed05493db114564e338e41f6a996d2e4790335f" 1592 + checksum = "ff08f24e03ac8916c478c8419d7d3c33393da9bb41fa4c24455d5406aeefd35f" 1581 1593 dependencies = [ 1582 1594 "fastrand", 1583 1595 "unicode-normalization", ··· 1630 1642 1631 1643 [[package]] 1632 1644 name = "glutin_wgl_sys" 1633 - version = "0.6.0" 1645 + version = "0.6.1" 1634 1646 source = "registry+https://github.com/rust-lang/crates.io-index" 1635 - checksum = "0a4e1951bbd9434a81aa496fe59ccc2235af3820d27b85f9314e279609211e2c" 1647 + checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e" 1636 1648 dependencies = [ 1637 1649 "gl_generator", 1638 1650 ] ··· 1643 1655 source = "registry+https://github.com/rust-lang/crates.io-index" 1644 1656 checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171" 1645 1657 dependencies = [ 1646 - "bitflags 2.6.0", 1658 + "bitflags 2.8.0", 1647 1659 "gpu-alloc-types", 1648 1660 ] 1649 1661 ··· 1653 1665 source = "registry+https://github.com/rust-lang/crates.io-index" 1654 1666 checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4" 1655 1667 dependencies = [ 1656 - "bitflags 2.6.0", 1668 + "bitflags 2.8.0", 1657 1669 ] 1658 1670 1659 1671 [[package]] ··· 1671 1683 1672 1684 [[package]] 1673 1685 name = "gpu-descriptor" 1674 - version = "0.3.0" 1686 + version = "0.3.1" 1675 1687 source = "registry+https://github.com/rust-lang/crates.io-index" 1676 - checksum = "9c08c1f623a8d0b722b8b99f821eb0ba672a1618f0d3b16ddbee1cedd2dd8557" 1688 + checksum = "dcf29e94d6d243368b7a56caa16bc213e4f9f8ed38c4d9557069527b5d5281ca" 1677 1689 dependencies = [ 1678 - "bitflags 2.6.0", 1690 + "bitflags 2.8.0", 1679 1691 "gpu-descriptor-types", 1680 - "hashbrown 0.14.5", 1692 + "hashbrown 0.15.2", 1681 1693 ] 1682 1694 1683 1695 [[package]] ··· 1686 1698 source = "registry+https://github.com/rust-lang/crates.io-index" 1687 1699 checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91" 1688 1700 dependencies = [ 1689 - "bitflags 2.6.0", 1701 + "bitflags 2.8.0", 1690 1702 ] 1691 1703 1692 1704 [[package]] ··· 1694 1706 version = "0.14.5" 1695 1707 source = "registry+https://github.com/rust-lang/crates.io-index" 1696 1708 checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1697 - dependencies = [ 1698 - "ahash", 1699 - "allocator-api2", 1700 - ] 1701 1709 1702 1710 [[package]] 1703 1711 name = "hashbrown" 1704 1712 version = "0.15.2" 1705 1713 source = "registry+https://github.com/rust-lang/crates.io-index" 1706 1714 checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" 1715 + dependencies = [ 1716 + "foldhash", 1717 + ] 1707 1718 1708 1719 [[package]] 1709 1720 name = "hassle-rs" ··· 1711 1722 source = "registry+https://github.com/rust-lang/crates.io-index" 1712 1723 checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890" 1713 1724 dependencies = [ 1714 - "bitflags 2.6.0", 1725 + "bitflags 2.8.0", 1715 1726 "com", 1716 1727 "libc", 1717 1728 "libloading", ··· 1734 1745 1735 1746 [[package]] 1736 1747 name = "home" 1737 - version = "0.5.9" 1748 + version = "0.5.11" 1738 1749 source = "registry+https://github.com/rust-lang/crates.io-index" 1739 - checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 1750 + checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" 1740 1751 dependencies = [ 1741 - "windows-sys 0.52.0", 1752 + "windows-sys 0.59.0", 1742 1753 ] 1743 1754 1744 1755 [[package]] ··· 1757 1768 1758 1769 [[package]] 1759 1770 name = "i18n-embed" 1760 - version = "0.15.2" 1771 + version = "0.15.3" 1761 1772 source = "registry+https://github.com/rust-lang/crates.io-index" 1762 - checksum = "a7839d8c7bb8da7bd58c1112d3a1aeb7f178ff3df4ae87783e758ca3bfb750b7" 1773 + checksum = "d0454970a5853f498e686cbd7bf9391aac2244928194780cb7a0af0f41937db6" 1763 1774 dependencies = [ 1764 1775 "arc-swap", 1765 1776 "fluent", ··· 1767 1778 "fluent-syntax", 1768 1779 "i18n-embed-impl", 1769 1780 "intl-memoizer", 1770 - "lazy_static", 1771 1781 "locale_config", 1772 1782 "log", 1773 1783 "parking_lot", ··· 1779 1789 1780 1790 [[package]] 1781 1791 name = "i18n-embed-fl" 1782 - version = "0.9.2" 1792 + version = "0.9.3" 1783 1793 source = "registry+https://github.com/rust-lang/crates.io-index" 1784 - checksum = "f6e9571c3cba9eba538eaa5ee40031b26debe76f0c7e17bafc97ea57a76cd82e" 1794 + checksum = "0b7578cee2940492a648bd60fb49ca85ee8c821a63790e0ef5b604cfed353b2a" 1785 1795 dependencies = [ 1786 1796 "dashmap", 1787 1797 "find-crate", ··· 1789 1799 "fluent-syntax", 1790 1800 "i18n-config", 1791 1801 "i18n-embed", 1792 - "lazy_static", 1793 1802 "proc-macro-error2", 1794 1803 "proc-macro2", 1795 1804 "quote", 1796 1805 "strsim", 1797 - "syn 2.0.90", 1806 + "syn 2.0.98", 1798 1807 "unic-langid", 1799 1808 ] 1800 1809 ··· 1808 1817 "i18n-config", 1809 1818 "proc-macro2", 1810 1819 "quote", 1811 - "syn 2.0.90", 1820 + "syn 2.0.98", 1812 1821 ] 1813 1822 1814 1823 [[package]] ··· 1926 1935 dependencies = [ 1927 1936 "proc-macro2", 1928 1937 "quote", 1929 - "syn 2.0.90", 1938 + "syn 2.0.98", 1930 1939 ] 1931 1940 1932 1941 [[package]] ··· 1970 1979 1971 1980 [[package]] 1972 1981 name = "indexmap" 1973 - version = "2.7.0" 1982 + version = "2.7.1" 1974 1983 source = "registry+https://github.com/rust-lang/crates.io-index" 1975 - checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" 1984 + checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652" 1976 1985 dependencies = [ 1977 1986 "equivalent", 1978 1987 "hashbrown 0.15.2", ··· 2036 2045 2037 2046 [[package]] 2038 2047 name = "js-sys" 2039 - version = "0.3.76" 2048 + version = "0.3.77" 2040 2049 source = "registry+https://github.com/rust-lang/crates.io-index" 2041 - checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7" 2050 + checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 2042 2051 dependencies = [ 2043 2052 "once_cell", 2044 2053 "wasm-bindgen", ··· 2069 2078 2070 2079 [[package]] 2071 2080 name = "libamdgpu_top" 2072 - version = "0.10.1" 2081 + version = "0.10.2" 2073 2082 dependencies = [ 2074 2083 "anyhow", 2075 2084 "libdrm_amdgpu_sys", 2085 + "nix", 2076 2086 ] 2077 2087 2078 2088 [[package]] 2079 2089 name = "libc" 2080 - version = "0.2.168" 2090 + version = "0.2.169" 2081 2091 source = "registry+https://github.com/rust-lang/crates.io-index" 2082 - checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d" 2092 + checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" 2083 2093 2084 2094 [[package]] 2085 2095 name = "libdrm_amdgpu_sys" 2086 - version = "0.7.7" 2087 - source = "git+https://github.com/Umio-Yasuno/libdrm-amdgpu-sys-rs#b5e3441c39ea680871a255c702addbf24c90118a" 2096 + version = "0.8.3" 2097 + source = "git+https://github.com/Umio-Yasuno/libdrm-amdgpu-sys-rs?rev=bbe45fbfd1924b96684fc76683e4c61a93449c49#bbe45fbfd1924b96684fc76683e4c61a93449c49" 2088 2098 dependencies = [ 2089 2099 "libc", 2100 + "libloading", 2090 2101 ] 2091 2102 2092 2103 [[package]] ··· 2105 2116 source = "registry+https://github.com/rust-lang/crates.io-index" 2106 2117 checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 2107 2118 dependencies = [ 2108 - "bitflags 2.6.0", 2119 + "bitflags 2.8.0", 2109 2120 "libc", 2110 2121 "redox_syscall 0.5.8", 2111 2122 ] 2112 2123 2113 2124 [[package]] 2114 2125 name = "linux-raw-sys" 2115 - version = "0.4.14" 2126 + version = "0.4.15" 2116 2127 source = "registry+https://github.com/rust-lang/crates.io-index" 2117 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 2128 + checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 2118 2129 2119 2130 [[package]] 2120 2131 name = "litemap" ··· 2153 2164 2154 2165 [[package]] 2155 2166 name = "log" 2156 - version = "0.4.22" 2167 + version = "0.4.25" 2157 2168 source = "registry+https://github.com/rust-lang/crates.io-index" 2158 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 2169 + checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" 2159 2170 2160 2171 [[package]] 2161 2172 name = "malloc_buf" ··· 2196 2207 source = "registry+https://github.com/rust-lang/crates.io-index" 2197 2208 checksum = "7ecfd3296f8c56b7c1f6fbac3c71cefa9d78ce009850c45000015f206dc7fa21" 2198 2209 dependencies = [ 2199 - "bitflags 2.6.0", 2210 + "bitflags 2.8.0", 2200 2211 "block", 2201 2212 "core-graphics-types", 2202 2213 "foreign-types", ··· 2207 2218 2208 2219 [[package]] 2209 2220 name = "miniz_oxide" 2210 - version = "0.8.0" 2221 + version = "0.8.3" 2211 2222 source = "registry+https://github.com/rust-lang/crates.io-index" 2212 - checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 2223 + checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" 2213 2224 dependencies = [ 2214 2225 "adler2", 2215 2226 "simd-adler32", ··· 2223 2234 dependencies = [ 2224 2235 "libc", 2225 2236 "log", 2226 - "wasi", 2237 + "wasi 0.11.0+wasi-snapshot-preview1", 2227 2238 "windows-sys 0.48.0", 2228 2239 ] 2229 2240 ··· 2235 2246 dependencies = [ 2236 2247 "arrayvec", 2237 2248 "bit-set", 2238 - "bitflags 2.6.0", 2249 + "bitflags 2.8.0", 2239 2250 "cfg_aliases 0.1.1", 2240 2251 "codespan-reporting", 2241 2252 "hexf-parse", ··· 2254 2265 source = "registry+https://github.com/rust-lang/crates.io-index" 2255 2266 checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" 2256 2267 dependencies = [ 2257 - "bitflags 2.6.0", 2268 + "bitflags 2.8.0", 2258 2269 "jni-sys", 2259 2270 "log", 2260 2271 "ndk-sys 0.6.0+11769913", ··· 2288 2299 ] 2289 2300 2290 2301 [[package]] 2302 + name = "nix" 2303 + version = "0.29.0" 2304 + source = "registry+https://github.com/rust-lang/crates.io-index" 2305 + checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 2306 + dependencies = [ 2307 + "bitflags 2.8.0", 2308 + "cfg-if", 2309 + "cfg_aliases 0.2.1", 2310 + "libc", 2311 + ] 2312 + 2313 + [[package]] 2291 2314 name = "nohash-hasher" 2292 2315 version = "0.2.0" 2293 2316 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2378 2401 "proc-macro-crate", 2379 2402 "proc-macro2", 2380 2403 "quote", 2381 - "syn 2.0.90", 2404 + "syn 2.0.98", 2382 2405 ] 2383 2406 2384 2407 [[package]] ··· 2432 2455 source = "registry+https://github.com/rust-lang/crates.io-index" 2433 2456 checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" 2434 2457 dependencies = [ 2435 - "bitflags 2.6.0", 2458 + "bitflags 2.8.0", 2436 2459 "block2", 2437 2460 "libc", 2438 2461 "objc2", ··· 2448 2471 source = "registry+https://github.com/rust-lang/crates.io-index" 2449 2472 checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009" 2450 2473 dependencies = [ 2451 - "bitflags 2.6.0", 2474 + "bitflags 2.8.0", 2452 2475 "block2", 2453 2476 "objc2", 2454 2477 "objc2-core-location", ··· 2472 2495 source = "registry+https://github.com/rust-lang/crates.io-index" 2473 2496 checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" 2474 2497 dependencies = [ 2475 - "bitflags 2.6.0", 2498 + "bitflags 2.8.0", 2476 2499 "block2", 2477 2500 "objc2", 2478 2501 "objc2-foundation", ··· 2504 2527 2505 2528 [[package]] 2506 2529 name = "objc2-encode" 2507 - version = "4.0.3" 2530 + version = "4.1.0" 2508 2531 source = "registry+https://github.com/rust-lang/crates.io-index" 2509 - checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8" 2532 + checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 2510 2533 2511 2534 [[package]] 2512 2535 name = "objc2-foundation" ··· 2514 2537 source = "registry+https://github.com/rust-lang/crates.io-index" 2515 2538 checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 2516 2539 dependencies = [ 2517 - "bitflags 2.6.0", 2540 + "bitflags 2.8.0", 2518 2541 "block2", 2519 2542 "dispatch", 2520 2543 "libc", ··· 2539 2562 source = "registry+https://github.com/rust-lang/crates.io-index" 2540 2563 checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" 2541 2564 dependencies = [ 2542 - "bitflags 2.6.0", 2565 + "bitflags 2.8.0", 2543 2566 "block2", 2544 2567 "objc2", 2545 2568 "objc2-foundation", ··· 2551 2574 source = "registry+https://github.com/rust-lang/crates.io-index" 2552 2575 checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" 2553 2576 dependencies = [ 2554 - "bitflags 2.6.0", 2577 + "bitflags 2.8.0", 2555 2578 "block2", 2556 2579 "objc2", 2557 2580 "objc2-foundation", ··· 2574 2597 source = "registry+https://github.com/rust-lang/crates.io-index" 2575 2598 checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f" 2576 2599 dependencies = [ 2577 - "bitflags 2.6.0", 2600 + "bitflags 2.8.0", 2578 2601 "block2", 2579 2602 "objc2", 2580 2603 "objc2-cloud-kit", ··· 2606 2629 source = "registry+https://github.com/rust-lang/crates.io-index" 2607 2630 checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3" 2608 2631 dependencies = [ 2609 - "bitflags 2.6.0", 2632 + "bitflags 2.8.0", 2610 2633 "block2", 2611 2634 "objc2", 2612 2635 "objc2-core-location", ··· 2692 2715 2693 2716 [[package]] 2694 2717 name = "pin-project" 2695 - version = "1.1.7" 2718 + version = "1.1.8" 2696 2719 source = "registry+https://github.com/rust-lang/crates.io-index" 2697 - checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95" 2720 + checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916" 2698 2721 dependencies = [ 2699 2722 "pin-project-internal", 2700 2723 ] 2701 2724 2702 2725 [[package]] 2703 2726 name = "pin-project-internal" 2704 - version = "1.1.7" 2727 + version = "1.1.8" 2705 2728 source = "registry+https://github.com/rust-lang/crates.io-index" 2706 - checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" 2729 + checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb" 2707 2730 dependencies = [ 2708 2731 "proc-macro2", 2709 2732 "quote", 2710 - "syn 2.0.90", 2733 + "syn 2.0.98", 2711 2734 ] 2712 2735 2713 2736 [[package]] 2714 2737 name = "pin-project-lite" 2715 - version = "0.2.15" 2738 + version = "0.2.16" 2716 2739 source = "registry+https://github.com/rust-lang/crates.io-index" 2717 - checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff" 2740 + checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 2718 2741 2719 2742 [[package]] 2720 2743 name = "pkg-config" ··· 2724 2747 2725 2748 [[package]] 2726 2749 name = "png" 2727 - version = "0.17.15" 2750 + version = "0.17.16" 2728 2751 source = "registry+https://github.com/rust-lang/crates.io-index" 2729 - checksum = "b67582bd5b65bdff614270e2ea89a1cf15bef71245cc1e5f7ea126977144211d" 2752 + checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" 2730 2753 dependencies = [ 2731 2754 "bitflags 1.3.2", 2732 2755 "crc32fast", ··· 2796 2819 "proc-macro-error-attr2", 2797 2820 "proc-macro2", 2798 2821 "quote", 2799 - "syn 2.0.90", 2822 + "syn 2.0.98", 2800 2823 ] 2801 2824 2802 2825 [[package]] 2803 2826 name = "proc-macro2" 2804 - version = "1.0.92" 2827 + version = "1.0.93" 2805 2828 source = "registry+https://github.com/rust-lang/crates.io-index" 2806 - checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" 2829 + checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" 2807 2830 dependencies = [ 2808 2831 "unicode-ident", 2809 2832 ] ··· 2822 2845 2823 2846 [[package]] 2824 2847 name = "quick-xml" 2825 - version = "0.36.2" 2848 + version = "0.37.2" 2826 2849 source = "registry+https://github.com/rust-lang/crates.io-index" 2827 - checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" 2850 + checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003" 2828 2851 dependencies = [ 2829 2852 "memchr", 2830 2853 ] 2831 2854 2832 2855 [[package]] 2833 2856 name = "quote" 2834 - version = "1.0.37" 2857 + version = "1.0.38" 2835 2858 source = "registry+https://github.com/rust-lang/crates.io-index" 2836 - checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 2859 + checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" 2837 2860 dependencies = [ 2838 2861 "proc-macro2", 2839 2862 ] ··· 2859 2882 source = "registry+https://github.com/rust-lang/crates.io-index" 2860 2883 checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" 2861 2884 dependencies = [ 2862 - "bitflags 2.6.0", 2885 + "bitflags 2.8.0", 2863 2886 ] 2864 2887 2865 2888 [[package]] ··· 2904 2927 checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94" 2905 2928 dependencies = [ 2906 2929 "base64", 2907 - "bitflags 2.6.0", 2930 + "bitflags 2.8.0", 2908 2931 "serde", 2909 2932 "serde_derive", 2910 2933 ] ··· 2929 2952 "proc-macro2", 2930 2953 "quote", 2931 2954 "rust-embed-utils", 2932 - "syn 2.0.90", 2955 + "syn 2.0.98", 2933 2956 "walkdir", 2934 2957 ] 2935 2958 ··· 2951 2974 2952 2975 [[package]] 2953 2976 name = "rustix" 2954 - version = "0.38.42" 2977 + version = "0.38.44" 2955 2978 source = "registry+https://github.com/rust-lang/crates.io-index" 2956 - checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85" 2979 + checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 2957 2980 dependencies = [ 2958 - "bitflags 2.6.0", 2981 + "bitflags 2.8.0", 2959 2982 "errno", 2960 2983 "libc", 2961 2984 "linux-raw-sys", ··· 2963 2986 ] 2964 2987 2965 2988 [[package]] 2989 + name = "rustversion" 2990 + version = "1.0.19" 2991 + source = "registry+https://github.com/rust-lang/crates.io-index" 2992 + checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" 2993 + 2994 + [[package]] 2966 2995 name = "ryu" 2967 - version = "1.0.18" 2996 + version = "1.0.19" 2968 2997 source = "registry+https://github.com/rust-lang/crates.io-index" 2969 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 2998 + checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd" 2970 2999 2971 3000 [[package]] 2972 3001 name = "same-file" ··· 3006 3035 3007 3036 [[package]] 3008 3037 name = "serde" 3009 - version = "1.0.216" 3038 + version = "1.0.217" 3010 3039 source = "registry+https://github.com/rust-lang/crates.io-index" 3011 - checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" 3040 + checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" 3012 3041 dependencies = [ 3013 3042 "serde_derive", 3014 3043 ] 3015 3044 3016 3045 [[package]] 3017 3046 name = "serde_derive" 3018 - version = "1.0.216" 3047 + version = "1.0.217" 3019 3048 source = "registry+https://github.com/rust-lang/crates.io-index" 3020 - checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" 3049 + checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" 3021 3050 dependencies = [ 3022 3051 "proc-macro2", 3023 3052 "quote", 3024 - "syn 2.0.90", 3053 + "syn 2.0.98", 3025 3054 ] 3026 3055 3027 3056 [[package]] 3028 3057 name = "serde_json" 3029 - version = "1.0.133" 3058 + version = "1.0.138" 3030 3059 source = "registry+https://github.com/rust-lang/crates.io-index" 3031 - checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" 3060 + checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949" 3032 3061 dependencies = [ 3033 3062 "itoa", 3034 3063 "memchr", ··· 3125 3154 source = "registry+https://github.com/rust-lang/crates.io-index" 3126 3155 checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016" 3127 3156 dependencies = [ 3128 - "bitflags 2.6.0", 3157 + "bitflags 2.8.0", 3129 3158 "calloop", 3130 3159 "calloop-wayland-source", 3131 3160 "cursor-icon", ··· 3170 3199 source = "registry+https://github.com/rust-lang/crates.io-index" 3171 3200 checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844" 3172 3201 dependencies = [ 3173 - "bitflags 2.6.0", 3202 + "bitflags 2.8.0", 3174 3203 ] 3175 3204 3176 3205 [[package]] ··· 3204 3233 3205 3234 [[package]] 3206 3235 name = "syn" 3207 - version = "2.0.90" 3236 + version = "2.0.98" 3208 3237 source = "registry+https://github.com/rust-lang/crates.io-index" 3209 - checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" 3238 + checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1" 3210 3239 dependencies = [ 3211 3240 "proc-macro2", 3212 3241 "quote", ··· 3221 3250 dependencies = [ 3222 3251 "proc-macro2", 3223 3252 "quote", 3224 - "syn 2.0.90", 3253 + "syn 2.0.98", 3225 3254 ] 3226 3255 3227 3256 [[package]] 3228 3257 name = "tempfile" 3229 - version = "3.14.0" 3258 + version = "3.16.0" 3230 3259 source = "registry+https://github.com/rust-lang/crates.io-index" 3231 - checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" 3260 + checksum = "38c246215d7d24f48ae091a2902398798e05d978b24315d6efbc00ede9a8bb91" 3232 3261 dependencies = [ 3233 3262 "cfg-if", 3234 3263 "fastrand", 3264 + "getrandom 0.3.1", 3235 3265 "once_cell", 3236 3266 "rustix", 3237 3267 "windows-sys 0.59.0", ··· 3267 3297 3268 3298 [[package]] 3269 3299 name = "thiserror" 3270 - version = "2.0.7" 3300 + version = "2.0.11" 3271 3301 source = "registry+https://github.com/rust-lang/crates.io-index" 3272 - checksum = "93605438cbd668185516ab499d589afb7ee1859ea3d5fc8f6b0755e1c7443767" 3302 + checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" 3273 3303 dependencies = [ 3274 - "thiserror-impl 2.0.7", 3304 + "thiserror-impl 2.0.11", 3275 3305 ] 3276 3306 3277 3307 [[package]] ··· 3282 3312 dependencies = [ 3283 3313 "proc-macro2", 3284 3314 "quote", 3285 - "syn 2.0.90", 3315 + "syn 2.0.98", 3286 3316 ] 3287 3317 3288 3318 [[package]] 3289 3319 name = "thiserror-impl" 3290 - version = "2.0.7" 3320 + version = "2.0.11" 3291 3321 source = "registry+https://github.com/rust-lang/crates.io-index" 3292 - checksum = "e1d8749b4531af2117677a5fcd12b1348a3fe2b81e36e61ffeac5c4aa3273e36" 3322 + checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" 3293 3323 dependencies = [ 3294 3324 "proc-macro2", 3295 3325 "quote", 3296 - "syn 2.0.90", 3326 + "syn 2.0.98", 3297 3327 ] 3298 3328 3299 3329 [[package]] ··· 3341 3371 3342 3372 [[package]] 3343 3373 name = "tinyvec" 3344 - version = "1.8.0" 3374 + version = "1.8.1" 3345 3375 source = "registry+https://github.com/rust-lang/crates.io-index" 3346 - checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 3376 + checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" 3347 3377 dependencies = [ 3348 3378 "tinyvec_macros", 3349 3379 ] ··· 3371 3401 3372 3402 [[package]] 3373 3403 name = "toml_edit" 3374 - version = "0.22.22" 3404 + version = "0.22.23" 3375 3405 source = "registry+https://github.com/rust-lang/crates.io-index" 3376 - checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" 3406 + checksum = "02a8b472d1a3d7c18e2d61a489aee3453fd9031c33e4f55bd533f4a7adca1bee" 3377 3407 dependencies = [ 3378 3408 "indexmap", 3379 3409 "toml_datetime", 3380 - "winnow", 3410 + "winnow 0.7.0", 3381 3411 ] 3382 3412 3383 3413 [[package]] ··· 3444 3474 3445 3475 [[package]] 3446 3476 name = "unicode-ident" 3447 - version = "1.0.14" 3477 + version = "1.0.16" 3448 3478 source = "registry+https://github.com/rust-lang/crates.io-index" 3449 - checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" 3479 + checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034" 3450 3480 3451 3481 [[package]] 3452 3482 name = "unicode-normalization" ··· 3521 3551 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3522 3552 3523 3553 [[package]] 3554 + name = "wasi" 3555 + version = "0.13.3+wasi-0.2.2" 3556 + source = "registry+https://github.com/rust-lang/crates.io-index" 3557 + checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2" 3558 + dependencies = [ 3559 + "wit-bindgen-rt", 3560 + ] 3561 + 3562 + [[package]] 3524 3563 name = "wasm-bindgen" 3525 - version = "0.2.99" 3564 + version = "0.2.100" 3526 3565 source = "registry+https://github.com/rust-lang/crates.io-index" 3527 - checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396" 3566 + checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 3528 3567 dependencies = [ 3529 3568 "cfg-if", 3530 3569 "once_cell", 3570 + "rustversion", 3531 3571 "wasm-bindgen-macro", 3532 3572 ] 3533 3573 3534 3574 [[package]] 3535 3575 name = "wasm-bindgen-backend" 3536 - version = "0.2.99" 3576 + version = "0.2.100" 3537 3577 source = "registry+https://github.com/rust-lang/crates.io-index" 3538 - checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79" 3578 + checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 3539 3579 dependencies = [ 3540 3580 "bumpalo", 3541 3581 "log", 3542 3582 "proc-macro2", 3543 3583 "quote", 3544 - "syn 2.0.90", 3584 + "syn 2.0.98", 3545 3585 "wasm-bindgen-shared", 3546 3586 ] 3547 3587 3548 3588 [[package]] 3549 3589 name = "wasm-bindgen-futures" 3550 - version = "0.4.49" 3590 + version = "0.4.50" 3551 3591 source = "registry+https://github.com/rust-lang/crates.io-index" 3552 - checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2" 3592 + checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 3553 3593 dependencies = [ 3554 3594 "cfg-if", 3555 3595 "js-sys", ··· 3560 3600 3561 3601 [[package]] 3562 3602 name = "wasm-bindgen-macro" 3563 - version = "0.2.99" 3603 + version = "0.2.100" 3564 3604 source = "registry+https://github.com/rust-lang/crates.io-index" 3565 - checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe" 3605 + checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 3566 3606 dependencies = [ 3567 3607 "quote", 3568 3608 "wasm-bindgen-macro-support", ··· 3570 3610 3571 3611 [[package]] 3572 3612 name = "wasm-bindgen-macro-support" 3573 - version = "0.2.99" 3613 + version = "0.2.100" 3574 3614 source = "registry+https://github.com/rust-lang/crates.io-index" 3575 - checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" 3615 + checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 3576 3616 dependencies = [ 3577 3617 "proc-macro2", 3578 3618 "quote", 3579 - "syn 2.0.90", 3619 + "syn 2.0.98", 3580 3620 "wasm-bindgen-backend", 3581 3621 "wasm-bindgen-shared", 3582 3622 ] 3583 3623 3584 3624 [[package]] 3585 3625 name = "wasm-bindgen-shared" 3586 - version = "0.2.99" 3626 + version = "0.2.100" 3587 3627 source = "registry+https://github.com/rust-lang/crates.io-index" 3588 - checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" 3628 + checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 3629 + dependencies = [ 3630 + "unicode-ident", 3631 + ] 3589 3632 3590 3633 [[package]] 3591 3634 name = "wayland-backend" 3592 - version = "0.3.7" 3635 + version = "0.3.8" 3593 3636 source = "registry+https://github.com/rust-lang/crates.io-index" 3594 - checksum = "056535ced7a150d45159d3a8dc30f91a2e2d588ca0b23f70e56033622b8016f6" 3637 + checksum = "b7208998eaa3870dad37ec8836979581506e0c5c64c20c9e79e9d2a10d6f47bf" 3595 3638 dependencies = [ 3596 3639 "cc", 3597 3640 "downcast-rs", ··· 3603 3646 3604 3647 [[package]] 3605 3648 name = "wayland-client" 3606 - version = "0.31.7" 3649 + version = "0.31.8" 3607 3650 source = "registry+https://github.com/rust-lang/crates.io-index" 3608 - checksum = "b66249d3fc69f76fd74c82cc319300faa554e9d865dab1f7cd66cc20db10b280" 3651 + checksum = "c2120de3d33638aaef5b9f4472bff75f07c56379cf76ea320bd3a3d65ecaf73f" 3609 3652 dependencies = [ 3610 - "bitflags 2.6.0", 3653 + "bitflags 2.8.0", 3611 3654 "rustix", 3612 3655 "wayland-backend", 3613 3656 "wayland-scanner", ··· 3619 3662 source = "registry+https://github.com/rust-lang/crates.io-index" 3620 3663 checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e" 3621 3664 dependencies = [ 3622 - "bitflags 2.6.0", 3665 + "bitflags 2.8.0", 3623 3666 "cursor-icon", 3624 3667 "wayland-backend", 3625 3668 ] 3626 3669 3627 3670 [[package]] 3628 3671 name = "wayland-cursor" 3629 - version = "0.31.7" 3672 + version = "0.31.8" 3630 3673 source = "registry+https://github.com/rust-lang/crates.io-index" 3631 - checksum = "32b08bc3aafdb0035e7fe0fdf17ba0c09c268732707dca4ae098f60cb28c9e4c" 3674 + checksum = "a93029cbb6650748881a00e4922b076092a6a08c11e7fbdb923f064b23968c5d" 3632 3675 dependencies = [ 3633 3676 "rustix", 3634 3677 "wayland-client", ··· 3637 3680 3638 3681 [[package]] 3639 3682 name = "wayland-protocols" 3640 - version = "0.32.5" 3683 + version = "0.32.6" 3641 3684 source = "registry+https://github.com/rust-lang/crates.io-index" 3642 - checksum = "7cd0ade57c4e6e9a8952741325c30bf82f4246885dca8bf561898b86d0c1f58e" 3685 + checksum = "0781cf46869b37e36928f7b432273c0995aa8aed9552c556fb18754420541efc" 3643 3686 dependencies = [ 3644 - "bitflags 2.6.0", 3687 + "bitflags 2.8.0", 3645 3688 "wayland-backend", 3646 3689 "wayland-client", 3647 3690 "wayland-scanner", ··· 3649 3692 3650 3693 [[package]] 3651 3694 name = "wayland-protocols-plasma" 3652 - version = "0.3.5" 3695 + version = "0.3.6" 3653 3696 source = "registry+https://github.com/rust-lang/crates.io-index" 3654 - checksum = "9b31cab548ee68c7eb155517f2212049dc151f7cd7910c2b66abfd31c3ee12bd" 3697 + checksum = "7ccaacc76703fefd6763022ac565b590fcade92202492381c95b2edfdf7d46b3" 3655 3698 dependencies = [ 3656 - "bitflags 2.6.0", 3699 + "bitflags 2.8.0", 3657 3700 "wayland-backend", 3658 3701 "wayland-client", 3659 3702 "wayland-protocols", ··· 3662 3705 3663 3706 [[package]] 3664 3707 name = "wayland-protocols-wlr" 3665 - version = "0.3.5" 3708 + version = "0.3.6" 3666 3709 source = "registry+https://github.com/rust-lang/crates.io-index" 3667 - checksum = "782e12f6cd923c3c316130d56205ebab53f55d6666b7faddfad36cecaeeb4022" 3710 + checksum = "248a02e6f595aad796561fa82d25601bd2c8c3b145b1c7453fc8f94c1a58f8b2" 3668 3711 dependencies = [ 3669 - "bitflags 2.6.0", 3712 + "bitflags 2.8.0", 3670 3713 "wayland-backend", 3671 3714 "wayland-client", 3672 3715 "wayland-protocols", ··· 3675 3718 3676 3719 [[package]] 3677 3720 name = "wayland-scanner" 3678 - version = "0.31.5" 3721 + version = "0.31.6" 3679 3722 source = "registry+https://github.com/rust-lang/crates.io-index" 3680 - checksum = "597f2001b2e5fc1121e3d5b9791d3e78f05ba6bfa4641053846248e3a13661c3" 3723 + checksum = "896fdafd5d28145fce7958917d69f2fd44469b1d4e861cb5961bcbeebc6d1484" 3681 3724 dependencies = [ 3682 3725 "proc-macro2", 3683 3726 "quick-xml", ··· 3686 3729 3687 3730 [[package]] 3688 3731 name = "wayland-sys" 3689 - version = "0.31.5" 3732 + version = "0.31.6" 3690 3733 source = "registry+https://github.com/rust-lang/crates.io-index" 3691 - checksum = "efa8ac0d8e8ed3e3b5c9fc92c7881406a268e11555abe36493efabe649a29e09" 3734 + checksum = "dbcebb399c77d5aa9fa5db874806ee7b4eba4e73650948e8f93963f128896615" 3692 3735 dependencies = [ 3693 3736 "dlib", 3694 3737 "log", ··· 3698 3741 3699 3742 [[package]] 3700 3743 name = "web-sys" 3701 - version = "0.3.76" 3744 + version = "0.3.77" 3702 3745 source = "registry+https://github.com/rust-lang/crates.io-index" 3703 - checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc" 3746 + checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 3704 3747 dependencies = [ 3705 3748 "js-sys", 3706 3749 "wasm-bindgen", ··· 3767 3810 dependencies = [ 3768 3811 "arrayvec", 3769 3812 "bit-vec", 3770 - "bitflags 2.6.0", 3813 + "bitflags 2.8.0", 3771 3814 "cfg_aliases 0.1.1", 3772 3815 "document-features", 3773 3816 "indexmap", ··· 3793 3836 "android_system_properties", 3794 3837 "arrayvec", 3795 3838 "ash", 3796 - "bitflags 2.6.0", 3839 + "bitflags 2.8.0", 3797 3840 "block", 3798 3841 "cfg_aliases 0.1.1", 3799 3842 "core-graphics-types", ··· 3832 3875 source = "registry+https://github.com/rust-lang/crates.io-index" 3833 3876 checksum = "bc9d91f0e2c4b51434dfa6db77846f2793149d8e73f800fa2e41f52b8eac3c5d" 3834 3877 dependencies = [ 3835 - "bitflags 2.6.0", 3878 + "bitflags 2.8.0", 3836 3879 "js-sys", 3837 3880 "web-sys", 3838 3881 ] ··· 4109 4152 4110 4153 [[package]] 4111 4154 name = "winit" 4112 - version = "0.30.5" 4155 + version = "0.30.8" 4113 4156 source = "registry+https://github.com/rust-lang/crates.io-index" 4114 - checksum = "0be9e76a1f1077e04a411f0b989cbd3c93339e1771cb41e71ac4aee95bfd2c67" 4157 + checksum = "f5d74280aabb958072864bff6cfbcf9025cf8bfacdde5e32b5e12920ef703b0f" 4115 4158 dependencies = [ 4116 4159 "ahash", 4117 4160 "android-activity", 4118 4161 "atomic-waker", 4119 - "bitflags 2.6.0", 4162 + "bitflags 2.8.0", 4120 4163 "block2", 4121 4164 "bytemuck", 4122 4165 "calloop", ··· 4160 4203 4161 4204 [[package]] 4162 4205 name = "winnow" 4163 - version = "0.6.20" 4206 + version = "0.6.26" 4207 + source = "registry+https://github.com/rust-lang/crates.io-index" 4208 + checksum = "1e90edd2ac1aa278a5c4599b1d89cf03074b610800f866d4026dc199d7929a28" 4209 + dependencies = [ 4210 + "memchr", 4211 + ] 4212 + 4213 + [[package]] 4214 + name = "winnow" 4215 + version = "0.7.0" 4164 4216 source = "registry+https://github.com/rust-lang/crates.io-index" 4165 - checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" 4217 + checksum = "7e49d2d35d3fad69b39b94139037ecfb4f359f08958b9c11e7315ce770462419" 4166 4218 dependencies = [ 4167 4219 "memchr", 4168 4220 ] 4169 4221 4170 4222 [[package]] 4223 + name = "wit-bindgen-rt" 4224 + version = "0.33.0" 4225 + source = "registry+https://github.com/rust-lang/crates.io-index" 4226 + checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c" 4227 + dependencies = [ 4228 + "bitflags 2.8.0", 4229 + ] 4230 + 4231 + [[package]] 4171 4232 name = "write16" 4172 4233 version = "1.0.0" 4173 4234 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4229 4290 source = "registry+https://github.com/rust-lang/crates.io-index" 4230 4291 checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5" 4231 4292 dependencies = [ 4232 - "bitflags 2.6.0", 4293 + "bitflags 2.8.0", 4233 4294 "dlib", 4234 4295 "log", 4235 4296 "once_cell", ··· 4244 4305 4245 4306 [[package]] 4246 4307 name = "xml-rs" 4247 - version = "0.8.24" 4308 + version = "0.8.25" 4248 4309 source = "registry+https://github.com/rust-lang/crates.io-index" 4249 - checksum = "ea8b391c9a790b496184c29f7f93b9ed5b16abb306c05415b68bcc16e4d06432" 4310 + checksum = "c5b940ebc25896e71dd073bad2dbaa2abfe97b0a391415e22ad1326d9c54e3c4" 4250 4311 4251 4312 [[package]] 4252 4313 name = "yoke" ··· 4268 4329 dependencies = [ 4269 4330 "proc-macro2", 4270 4331 "quote", 4271 - "syn 2.0.90", 4332 + "syn 2.0.98", 4272 4333 "synstructure", 4273 4334 ] 4274 4335 ··· 4289 4350 dependencies = [ 4290 4351 "proc-macro2", 4291 4352 "quote", 4292 - "syn 2.0.90", 4353 + "syn 2.0.98", 4293 4354 ] 4294 4355 4295 4356 [[package]] ··· 4309 4370 dependencies = [ 4310 4371 "proc-macro2", 4311 4372 "quote", 4312 - "syn 2.0.90", 4373 + "syn 2.0.98", 4313 4374 "synstructure", 4314 4375 ] 4315 4376 ··· 4332 4393 dependencies = [ 4333 4394 "proc-macro2", 4334 4395 "quote", 4335 - "syn 2.0.90", 4396 + "syn 2.0.98", 4336 4397 ]
+3 -3
pkgs/by-name/am/amdgpu_top/package.nix
··· 16 16 17 17 rustPlatform.buildRustPackage rec { 18 18 pname = "amdgpu_top"; 19 - version = "0.10.1"; 19 + version = "0.10.2"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "Umio-Yasuno"; 23 23 repo = pname; 24 24 rev = "v${version}"; 25 - hash = "sha256-1OPaQcjrUaYTvMrOPcTemGs8DPn3NuuIbaIObxLiCt0="; 25 + hash = "sha256-sXVUtqPnVYSJ+/RF4/FuXEZOA3DgHMv5Yd8ew/tJJeY="; 26 26 }; 27 27 28 28 cargoLock = { 29 29 lockFile = ./Cargo.lock; 30 30 outputHashes = { 31 - "libdrm_amdgpu_sys-0.7.7" = "sha256-gPK3BrW2oTCQDRvHJGY28EFmkKrVexY2bGXG2QwHZL0="; 31 + "libdrm_amdgpu_sys-0.8.3" = "sha256-unjsJqQ6e9Xo522ETTpy6bxXYW/NzNOnVV+w1ord87U="; 32 32 }; 33 33 }; 34 34
+2 -2
pkgs/by-name/am/amule/package.nix
··· 13 13 perl, 14 14 cryptopp, 15 15 libupnp, 16 - boost, # Not using boost leads to crashes with gtk3 16 + boost186, # Not using boost leads to crashes with gtk3 17 17 gettext, 18 18 libpng, 19 19 pkg-config, ··· 60 60 perl 61 61 cryptopp.dev 62 62 libupnp 63 - boost 63 + boost186 64 64 ] 65 65 ++ lib.optional httpServer libpng 66 66 ++ lib.optional client libX11;
+3 -3
pkgs/by-name/ar/argon/package.nix
··· 9 9 }: 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "argon"; 12 - version = "2.0.21"; 12 + version = "2.0.22"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "argon-rbx"; 16 16 repo = "argon"; 17 17 tag = version; 18 - hash = "sha256-msKrPLB+38PU7LEw92xEqFy6JxwMjttBaobIOhU7eWw="; 18 + hash = "sha256-Nno6uZIlD4tA3opzhzO4ylPPGq3RDDrhAIQnt/rTXdA="; 19 19 }; 20 20 21 21 useFetchCargoVendor = true; 22 - cargoHash = "sha256-HOgwN/LwnHq+BxiniTFbBwCw0Qc6kxcH8GrAy/JggXo="; 22 + cargoHash = "sha256-W3Z/WVGP+RBbnqgcgIcrfkmgfmdKdH8kG/LBfvtArqo="; 23 23 24 24 nativeBuildInputs = [ pkg-config ]; 25 25
+5 -4
pkgs/by-name/aw/awscli2/package.nix
··· 64 64 in 65 65 py.pkgs.buildPythonApplication rec { 66 66 pname = "awscli2"; 67 - version = "2.23.5"; # N.B: if you change this, check if overrides are still up-to-date 67 + version = "2.23.11"; # N.B: if you change this, check if overrides are still up-to-date 68 68 pyproject = true; 69 69 70 70 src = fetchFromGitHub { 71 71 owner = "aws"; 72 72 repo = "aws-cli"; 73 73 tag = version; 74 - hash = "sha256-uDKiTw1UCcbfitoJzSPzVT1qM4Gm4bQaryRz7VTeEzg="; 74 + hash = "sha256-ID0hQiR0qOTJMOvRAgEJLheblkY77yIgu1Ofa/6r7nk="; 75 75 }; 76 76 77 77 postPatch = '' 78 78 substituteInPlace pyproject.toml \ 79 79 --replace-fail 'flit_core>=3.7.1,<3.9.1' 'flit_core>=3.7.1' \ 80 - --replace-fail 'awscrt==0.23.4' 'awscrt>=0.23.4' \ 80 + --replace-fail 'awscrt==0.23.8' 'awscrt>=0.23.6' \ 81 81 --replace-fail 'cryptography>=40.0.0,<43.0.2' 'cryptography>=43.0.0' \ 82 82 --replace-fail 'distro>=1.5.0,<1.9.0' 'distro>=1.5.0' \ 83 83 --replace-fail 'docutils>=0.10,<0.20' 'docutils>=0.10' \ 84 - --replace-fail 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24' 84 + --replace-fail 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24' \ 85 + --replace-fail 'zipp<3.21.0' 'zipp>=3.21.0' 85 86 86 87 substituteInPlace requirements-base.txt \ 87 88 --replace-fail "wheel==0.43.0" "wheel>=0.43.0"
+2 -2
pkgs/by-name/cg/cgreen/package.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "cgreen"; 10 - version = "1.6.3"; 10 + version = "1.6.4"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "cgreen-devs"; 14 14 repo = "cgreen"; 15 15 rev = finalAttrs.version; 16 - sha256 = "sha256-qcOj+NlgbHCYuNsM6ngNI2fNhkCwLL6mIVkNSv9hRE8="; 16 + sha256 = "sha256-W4MdB3acZcxavjRupJa4eXAv9g4QgYXFAQWOLoHrQZ8="; 17 17 }; 18 18 19 19 postPatch = ''
+2 -2
pkgs/by-name/ci/cilium-cli/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "cilium-cli"; 12 - version = "0.16.23"; 12 + version = "0.16.24"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "cilium"; 16 16 repo = "cilium-cli"; 17 17 tag = "v${version}"; 18 - hash = "sha256-8GD3VjYInPaxOFoPeJGWIDfOIUQ7+g3GgfVq/IS18Bw="; 18 + hash = "sha256-sUPyMAyLrQn4lLtoE9aVtOYvpjOg3I/QXD+x4Rs/2/s="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ installShellFiles ];
+104 -51
pkgs/by-name/co/code-cursor/package.nix
··· 5 5 appimageTools, 6 6 makeWrapper, 7 7 writeScript, 8 + undmg, 8 9 }: 9 10 let 10 11 pname = "cursor"; 11 - version = "0.44.11"; 12 + version = "0.45.8"; 13 + 14 + inherit (stdenvNoCC) hostPlatform; 12 15 13 16 sources = { 14 17 x86_64-linux = fetchurl { 15 - url = "https://download.todesktop.com/230313mzl4w4u92/cursor-0.44.11-build-250103fqxdt5u9z-x86_64.AppImage"; 16 - hash = "sha256-eOZuofnpED9F6wic0S9m933Tb7Gq7cb/v0kRDltvFVg="; 18 + url = "https://download.todesktop.com/230313mzl4w4u92/cursor-0.45.8-build-250201b44xw1x2k-x86_64.AppImage"; 19 + hash = "sha256-H+9cisa1LWJleqzwaB0WIzJpioYZyfLghelcZthCOvg="; 17 20 }; 18 21 aarch64-linux = fetchurl { 19 - url = "https://download.todesktop.com/230313mzl4w4u92/cursor-0.44.11-build-250103fqxdt5u9z-arm64.AppImage"; 20 - hash = "sha256-mxq7tQJfDccE0QsZDZbaFUKO0Xc141N00ntX3oEYRcc="; 22 + url = "https://download.todesktop.com/230313mzl4w4u92/cursor-0.45.8-build-250201b44xw1x2k-arm64.AppImage"; 23 + hash = "sha256-GgPt9SvuCA9Hxm7nxm7mz0AvPKaLWCkYXO225taXnLA="; 24 + }; 25 + x86_64-darwin = fetchurl { 26 + url = "https://download.todesktop.com/230313mzl4w4u92/Cursor%200.45.8%20-%20Build%20250201b44xw1x2k-x64.dmg"; 27 + hash = "sha256-UqwzgxBSZR0itCknKzBClEX3w9aFKFhGIiVUQNYDVEM="; 28 + }; 29 + aarch64-darwin = fetchurl { 30 + url = "https://download.todesktop.com/230313mzl4w4u92/Cursor%200.45.8%20-%20Build%20250201b44xw1x2k-arm64.dmg"; 31 + hash = "sha256-AUW19xJFsrDGSUNE/bwkC2aN2QyaS+JKCjuxx//kbiI="; 21 32 }; 22 33 }; 23 34 24 - supportedPlatforms = [ 25 - "x86_64-linux" 26 - "aarch64-linux" 27 - ]; 35 + source = sources.${hostPlatform.system}; 28 36 29 - src = sources.${stdenvNoCC.hostPlatform.system}; 30 - 37 + # Linux -- build from AppImage 31 38 appimageContents = appimageTools.extractType2 { 32 - inherit version pname src; 39 + inherit version pname; 40 + src = source; 33 41 }; 34 42 35 - wrappedAppImage = appimageTools.wrapType2 { inherit version pname src; }; 43 + wrappedAppimage = appimageTools.wrapType2 { 44 + inherit version pname; 45 + src = source; 46 + }; 36 47 37 - appimageInstall = '' 38 - runHook preInstall 48 + in 49 + stdenvNoCC.mkDerivation { 50 + inherit pname version; 39 51 40 - mkdir -p $out/ 41 - cp -r bin $out/bin 52 + src = if hostPlatform.isLinux then wrappedAppimage else source; 42 53 43 - mkdir -p $out/share/cursor 44 - cp -a ${appimageContents}/locales $out/share/cursor 45 - cp -a ${appimageContents}/resources $out/share/cursor 46 - cp -a ${appimageContents}/usr/share/icons $out/share/ 47 - install -Dm 644 ${appimageContents}/cursor.desktop -t $out/share/applications/ 54 + nativeBuildInputs = 55 + lib.optionals hostPlatform.isLinux [ makeWrapper ] 56 + ++ lib.optionals hostPlatform.isDarwin [ undmg ]; 48 57 49 - substituteInPlace $out/share/applications/cursor.desktop --replace-fail "AppRun" "cursor" 58 + sourceRoot = lib.optionalString hostPlatform.isDarwin "."; 59 + 60 + # Don't break code signing 61 + dontUpdateAutotoolsGnuConfigScripts = hostPlatform.isDarwin; 62 + dontConfigure = hostPlatform.isDarwin; 63 + dontFixup = hostPlatform.isDarwin; 50 64 51 - wrapProgram $out/bin/cursor \ 52 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}} --no-update" 65 + installPhase = '' 66 + runHook preInstall 67 + mkdir -p $out/ 53 68 54 - runHook postInstall 55 - ''; 69 + ${lib.optionalString hostPlatform.isLinux '' 70 + cp -r bin $out/bin 71 + mkdir -p $out/share/cursor 72 + cp -a ${appimageContents}/locales $out/share/cursor 73 + cp -a ${appimageContents}/resources $out/share/cursor 74 + cp -a ${appimageContents}/usr/share/icons $out/share/ 75 + install -Dm 644 ${appimageContents}/cursor.desktop -t $out/share/applications/ 56 76 57 - in 58 - stdenvNoCC.mkDerivation { 59 - inherit pname version; 77 + substituteInPlace $out/share/applications/cursor.desktop --replace-fail "AppRun" "cursor" 60 78 61 - src = wrappedAppImage; 79 + wrapProgram $out/bin/cursor \ 80 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}} --no-update" 81 + ''} 62 82 63 - nativeBuildInputs = [ makeWrapper ]; 83 + ${lib.optionalString hostPlatform.isDarwin '' 84 + APP_DIR="$out/Applications" 85 + CURSOR_APP="$APP_DIR/Cursor.app" 86 + mkdir -p "$APP_DIR" 87 + cp -Rp Cursor.app "$APP_DIR" 88 + mkdir -p "$out/bin" 89 + cat << EOF > "$out/bin/cursor" 90 + #!${stdenvNoCC.shell} 91 + open -na "$CURSOR_APP" --args "\$@" 92 + EOF 93 + chmod +x "$out/bin/cursor" 94 + ''} 64 95 65 - installPhase = appimageInstall; 96 + runHook postInstall 97 + ''; 66 98 67 99 passthru = { 68 100 inherit sources; 69 101 updateScript = writeScript "update.sh" '' 70 102 #!/usr/bin/env nix-shell 71 - #!nix-shell -i bash -p curl yq coreutils gnused common-updater-scripts 103 + #!nix-shell -i bash -p curl yq coreutils gnused trurl common-updater-scripts 72 104 set -eu -o pipefail 105 + 73 106 baseUrl="https://download.todesktop.com/230313mzl4w4u92" 74 107 latestLinux="$(curl -s $baseUrl/latest-linux.yml)" 75 - version="$(echo "$latestLinux" | yq -r .version)" 76 - filename="$(echo "$latestLinux" | yq -r '.files[] | .url | select(. | endswith(".AppImage"))')" 77 - linuxStem="$(echo "$filename" | sed -E s/^\(cursor-.+-build-.*\)-.+$/\\1/)" 108 + latestDarwin="$(curl -s $baseUrl/latest-mac.yml)" 109 + linuxVersion="$(echo "$latestLinux" | yq -r .version)" 78 110 79 111 currentVersion=$(nix-instantiate --eval -E "with import ./. {}; code-cursor.version or (lib.getVersion code-cursor)" | tr -d '"') 80 112 81 - if [[ "$version" != "$currentVersion" ]]; then 82 - for platform in ${lib.escapeShellArgs supportedPlatforms}; do 83 - if [ $platform = "x86_64-linux" ]; then 84 - url="$baseUrl/$linuxStem-x86_64.AppImage" 85 - elif [ $platform = "aarch64-linux" ]; then 86 - url="$baseUrl/$linuxStem-arm64.AppImage" 87 - else 88 - echo "Unsupported platform: $platform" 89 - exit 1 113 + if [[ "$linuxVersion" != "$currentVersion" ]]; then 114 + darwinVersion="$(echo "$latestDarwin" | yq -r .version)" 115 + if [ "$linuxVersion" != "$darwinVersion" ]; then 116 + echo "Linux version ($linuxVersion) and Darwin version ($darwinVersion) do not match" 117 + exit 1 90 118 fi 119 + version="$linuxVersion" 120 + 121 + linuxFilename="$(echo "$latestLinux" | yq -r '.files[] | .url | select(. | endswith(".AppImage"))' | head -n 1)" 122 + linuxStem="$(echo "$linuxFilename" | sed -E s/^\(.+build.+\)-[^-]+AppImage$/\\1/)" 123 + 124 + darwinFilename="$(echo "$latestDarwin" | yq -r '.files[] | .url | select(. | endswith(".dmg"))' | head -n 1)" 125 + darwinStem="$(echo "$darwinFilename" | sed -E s/^\(.+Build[^-]+\)-.+dmg$/\\1/)" 91 126 92 - hash=$(nix-hash --to-sri --type sha256 "$(nix-prefetch-url "$url")") 93 - update-source-version code-cursor $version $hash $url --system=$platform --ignore-same-version --source-key="sources.$platform" 94 - done 127 + for platform in "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"; do 128 + if [ $platform = "x86_64-linux" ]; then 129 + url="$baseUrl/$linuxStem-x86_64.AppImage" 130 + elif [ $platform = "aarch64-linux" ]; then 131 + url="$baseUrl/$linuxStem-arm64.AppImage" 132 + elif [ $platform = "x86_64-darwin" ]; then 133 + url="$baseUrl/$darwinStem-x64.dmg" 134 + elif [ $platform = "aarch64-darwin" ]; then 135 + url="$baseUrl/$darwinStem-arm64.dmg" 136 + else 137 + echo "Unsupported platform: $platform" 138 + exit 1 139 + fi 140 + 141 + url=$(trurl --accept-space "$url") 142 + hash=$(nix-hash --to-sri --type sha256 "$(nix-prefetch-url "$url" --name "cursor-$version")") 143 + update-source-version code-cursor $version $hash $url --system=$platform --ignore-same-version --source-key="sources.$platform" 144 + done 95 145 fi 96 146 ''; 97 147 }; ··· 102 152 changelog = "https://cursor.com/changelog"; 103 153 license = lib.licenses.unfree; 104 154 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 105 - maintainers = with lib.maintainers; [ sarahec ]; 106 - platforms = lib.platforms.linux; 155 + maintainers = with lib.maintainers; [ 156 + sarahec 157 + aspauldingcode 158 + ]; 159 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 107 160 mainProgram = "cursor"; 108 161 }; 109 162 }
+3 -3
pkgs/by-name/do/dotenvx/package.nix
··· 8 8 9 9 buildNpmPackage rec { 10 10 pname = "dotenvx"; 11 - version = "1.33.0"; 11 + version = "1.34.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "dotenvx"; 15 15 repo = "dotenvx"; 16 16 tag = "v${version}"; 17 - hash = "sha256-/0bxY4D3jq6shXEHf13CkGdEGRS8cVQOSaLiIaehq5g="; 17 + hash = "sha256-zRdE79UzbiyFKCu+5yAI+JHlt+sxF0C0XaaZRNqciCM="; 18 18 }; 19 19 20 - npmDepsHash = "sha256-JtoOXDS44fG4ctzN1ZSi+WOXye2p5mjKczSXbvGPIEw="; 20 + npmDepsHash = "sha256-Rtb9/hwUVQAmDleSg7iIEgVznREqx5VNqufSxiWa1Zw="; 21 21 22 22 dontNpmBuild = true; 23 23
+3 -3
pkgs/by-name/ek/eksctl/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "eksctl"; 10 - version = "0.201.0"; 10 + version = "0.203.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "weaveworks"; 14 14 repo = pname; 15 15 rev = version; 16 - hash = "sha256-mvIidkr3fUs8TbD8voqE8NAA14XPPuXC9u/2pc2ShK4="; 16 + hash = "sha256-hBHWj1Brn4qbtOLZjxlr6tBuipItCFwbL9bm2wlfL80="; 17 17 }; 18 18 19 - vendorHash = "sha256-qOV6mAKwLrF5+/q/PS2qVJcQx84CjNinv/e8KG+lxfI="; 19 + vendorHash = "sha256-IFi9FhsiWWg9joPAGnEnZfq4PzBjR6bJ5MWvFIPyfJo="; 20 20 21 21 doCheck = false; 22 22
+3 -3
pkgs/by-name/fi/fission/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "fission"; 5 - version = "1.20.5"; 5 + version = "1.21.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "fission"; 9 9 repo = "fission"; 10 10 rev = "v${version}"; 11 - hash = "sha256-JYe5CWHcqQwbldimX2/pkF+gUvCplIuNg/kTvyT2I0c="; 11 + hash = "sha256-Tl7aKibVbNAKOa1tycKtEzdJ8rJHBMa8PTUm0i7DKA4="; 12 12 }; 13 13 14 - vendorHash = "sha256-3Wuvi7st9y+Pyv12HyxcSoaUjYA3xooYH+zHZ+xbngo="; 14 + vendorHash = "sha256-PhB6zR/dXnOCHJiJ/EjVOD26SubaAITRm61XOvULerU="; 15 15 16 16 ldflags = [ "-s" "-w" "-X info.Version=${version}" ]; 17 17
+23 -1
pkgs/by-name/gi/gitlab-container-registry/package.nix
··· 2 2 lib, 3 3 buildGoModule, 4 4 fetchFromGitLab, 5 + fetchpatch, 5 6 }: 6 7 7 8 buildGoModule rec { ··· 19 20 20 21 vendorHash = "sha256-aKE/yr2Sh+4yw4TmpaVF84rJOI6cjs0DKY326+aXO1o="; 21 22 23 + env = { 24 + # required for multiple azure tests 25 + # https://gitlab.com/gitlab-org/container-registry/-/issues/1494 26 + AZURE_DRIVER_VERSION = "azure_v2"; 27 + }; 28 + 29 + patches = [ 30 + # remove with >= 4.15.3 31 + (fetchpatch { 32 + url = "https://gitlab.com/gitlab-org/container-registry/-/commit/268689a2f30880b7d122469a4260ca46cbc55ccd.patch"; 33 + hash = "sha256-RslK4qvcqCaG7ju2LgN/tI9cImrTj3Nry+mCv3zoWiA="; 34 + }) 35 + ]; 36 + 22 37 postPatch = '' 23 38 # Disable flaky inmemory storage driver test 24 39 rm registry/storage/driver/inmemory/driver_test.go 25 40 26 41 substituteInPlace health/checks/checks_test.go \ 27 - --replace \ 42 + --replace-fail \ 28 43 'func TestHTTPChecker(t *testing.T) {' \ 29 44 'func TestHTTPChecker(t *testing.T) { t.Skip("Test requires network connection")' 45 + 46 + # Add workaround for failing test due to function type mismatch (args vs return) by upstream 47 + # https://gitlab.com/gitlab-org/container-registry/-/issues/1495 48 + substituteInPlace registry/storage/driver/base/regulator_test.go \ 49 + --replace-fail \ 50 + 'require.Equal(t, limit, r.available, "r.available")' \ 51 + 'require.Equal(t, limit, int(r.available), "r.available")' 30 52 ''; 31 53 32 54 meta = with lib; {
+3 -3
pkgs/by-name/go/go-mockery/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "go-mockery"; 5 - version = "2.51.1"; 5 + version = "2.52.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vektra"; 9 9 repo = "mockery"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-+KbO2Ch0SB+TP7/So2bCsHOS7ousAl5mD/w2EXj4jzg="; 11 + sha256 = "sha256-algCErKmB43r/t7wo8BJSM0MHRxvxVWZ2u0n1xuLLdw="; 12 12 }; 13 13 14 14 preCheck = '' ··· 24 24 env.CGO_ENABLED = false; 25 25 26 26 proxyVendor = true; 27 - vendorHash = "sha256-z1ceS+LO6d7T264pw2BLadw804aGRISyrKW/dr4fZHA="; 27 + vendorHash = "sha256-nL6dDGifhtmDHfz1ae+wnmVPPQDLrRgI7v8c5cQzo8Q="; 28 28 29 29 subPackages = [ "." ]; 30 30
+2 -2
pkgs/by-name/gr/grpc_cli/package.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "grpc_cli"; 14 - version = "1.70.0"; 14 + version = "1.70.1"; 15 15 src = fetchFromGitHub { 16 16 owner = "grpc"; 17 17 repo = "grpc"; 18 18 rev = "v${version}"; 19 - hash = "sha256-kJhGAhqu25Q2g6BWkVGp6nGYrWdBnMhoMu6e7ifNbgk="; 19 + hash = "sha256-/Mg999SA/19iypjacXrEnX1B08hajyq7sC7yab+eTCk="; 20 20 fetchSubmodules = true; 21 21 }; 22 22 nativeBuildInputs = [
+2 -2
pkgs/by-name/hi/hishtory/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "hishtory"; 9 - version = "0.327"; 9 + version = "0.328"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ddworken"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-bt+k3JWkuxpY2ZSHFvKxOyUwcBtQrsTH/uf1Lw0r+uo="; 15 + hash = "sha256-XEhhRs0yt6VvE9Lw4ikY3nb2frCWm15fxcvRDAWfifY="; 16 16 }; 17 17 18 18 vendorHash = "sha256-A975ensuezz75I4KrFcl8wi9HjZqlfEHeJVAyA69V9k=";
+3 -3
pkgs/by-name/ht/httm/package.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "httm"; 10 - version = "0.45.0"; 10 + version = "0.45.6"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "kimono-koans"; 14 14 repo = pname; 15 15 rev = version; 16 - hash = "sha256-g+UUiFgOTuSNymg3OcIsoTqWA/OOZzwFCUQ7YxW1AzE="; 16 + hash = "sha256-dNiF1MbDhQKETQf3O+5joFR82cQsQezSayEwY2YJeNs="; 17 17 }; 18 18 19 19 useFetchCargoVendor = true; 20 - cargoHash = "sha256-IUcuVeyoCsaQHg/08CTqEySmIh7v2fr7LDJCiYiq+FQ="; 20 + cargoHash = "sha256-YnJoJ3npiURcmV36kgyhAcXla/tBTK7Hkqxrq6D/XRk="; 21 21 22 22 nativeBuildInputs = [ installShellFiles ]; 23 23
+3
pkgs/by-name/hu/humanity-icon-theme/package.nix
··· 27 27 28 28 dontDropIconThemeCache = true; 29 29 30 + # Upstream ships a bunch of those, and is very dead 31 + dontCheckForBrokenSymlinks = true; 32 + 30 33 installPhase = '' 31 34 runHook preInstall 32 35
+2 -2
pkgs/by-name/ko/komikku/package.nix
··· 23 23 24 24 python3.pkgs.buildPythonApplication rec { 25 25 pname = "komikku"; 26 - version = "1.68.0"; 26 + version = "1.69.0"; 27 27 pyproject = false; 28 28 29 29 src = fetchFromGitea { ··· 31 31 owner = "valos"; 32 32 repo = "Komikku"; 33 33 rev = "v${version}"; 34 - hash = "sha256-pfhGMeXVSgsQApFXXhQA6pzOqhiuDuNzmarOtO0Gm90="; 34 + hash = "sha256-YrqoUU2BYM6AMD5s6FJn8GV+UmyeKV2mFQyfJjLI8HA="; 35 35 }; 36 36 37 37 nativeBuildInputs = [
+3 -3
pkgs/by-name/ku/kubelogin/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "kubelogin"; 13 - version = "0.1.6"; 13 + version = "0.1.7"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "Azure"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-VmCJoyr42tbQhe8o54D/t9+Gfz40Oe6NzqqJWknNP70="; 19 + sha256 = "sha256-yU9RDzUjN8Ona5Xa7+90qDmc4HFbec3tEzumaPmG6es="; 20 20 }; 21 21 22 - vendorHash = "sha256-8L5OzEJvHBOHPkZyIitIW8hBzmOytTDUUTGlAmY5zBg="; 22 + vendorHash = "sha256-pAhBUREzancX0cbLm5rgZwJn8N0fLX57wONNypADQLE="; 23 23 24 24 ldflags = [ 25 25 "-X main.gitTag=v${version}"
+2 -2
pkgs/by-name/ku/kubescape/package.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "kubescape"; 12 - version = "3.0.24"; 12 + version = "3.0.25"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "kubescape"; 16 16 repo = "kubescape"; 17 17 tag = "v${version}"; 18 - hash = "sha256-gzwdDUYOHZnd9mMHmuW9q1xhxWjpk5u/yoxdJkSNrVA="; 18 + hash = "sha256-1KwFa0FixlzgRd2hSUj/ODf0SJKxZ496/xg374uV4fI="; 19 19 fetchSubmodules = true; 20 20 }; 21 21
+3
pkgs/by-name/li/lirc/package.nix
··· 112 112 "localstatedir=$TMPDIR" 113 113 ]; 114 114 115 + # Upstream ships broken symlinks in docs 116 + dontCheckForBrokenSymlinks = true; 117 + 115 118 meta = with lib; { 116 119 description = "Allows to receive and send infrared signals"; 117 120 homepage = "https://www.lirc.org/";
+3 -3
pkgs/by-name/np/npm-check-updates/package.nix
··· 5 5 6 6 buildNpmPackage rec { 7 7 pname = "npm-check-updates"; 8 - version = "17.1.11"; 8 + version = "17.1.14"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "raineorshine"; 12 12 repo = "npm-check-updates"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-l23+Gmv6395QSWdGOVgHH2mvQND02/PQyBvwvEeawCI="; 14 + hash = "sha256-PIaT5Wg+jEd4NPlLVQKnJ429489ZSQPagCc/+h2EFrI="; 15 15 }; 16 16 17 - npmDepsHash = "sha256-/J38+j4f5G54ejfzZIqQ9JL7BCD8UTa5dkwYgIu2Xo0="; 17 + npmDepsHash = "sha256-k/TBMdOyTjVBir5wIujMPHa+2FRvzORX7dXpLrMhTqY="; 18 18 19 19 postPatch = '' 20 20 sed -i '/"prepare"/d' package.json
+2 -2
pkgs/by-name/nz/nzbhydra2/package.nix
··· 10 10 }: 11 11 stdenv.mkDerivation rec { 12 12 pname = "nzbhydra2"; 13 - version = "7.12.1"; 13 + version = "7.12.3"; 14 14 15 15 src = fetchzip { 16 16 url = "https://github.com/theotherp/nzbhydra2/releases/download/v${version}/nzbhydra2-${version}-generic.zip"; 17 - hash = "sha256-QCMsAFRU6THmKiIFvnfUHzmv91gcC1pAztNYg9RymzU="; 17 + hash = "sha256-uTtkMusIhDbD+CojOSJ59Kqo6iSuIqWLqd6T5tYuX4k="; 18 18 stripRoot = false; 19 19 }; 20 20
+2 -2
pkgs/by-name/op/opengamepadui/package.nix
··· 25 25 26 26 stdenv.mkDerivation (finalAttrs: { 27 27 pname = "opengamepadui"; 28 - version = "0.35.7"; 28 + version = "0.35.8"; 29 29 30 30 buildType = if withDebug then "debug" else "release"; 31 31 ··· 33 33 owner = "ShadowBlip"; 34 34 repo = "OpenGamepadUI"; 35 35 tag = "v${finalAttrs.version}"; 36 - hash = "sha256-yOFxtDDYdxCtN8L8RtXgxebjRwK1Blsp/RG1E+UfUEI="; 36 + hash = "sha256-vMb08Wqjt5j6IgMnXuZr6MGNk1CprVn2GTNDdOxnFG0="; 37 37 }; 38 38 39 39 cargoDeps = rustPlatform.fetchCargoVendor {
+2 -2
pkgs/by-name/pi/pipenv-poetry-migrate/package.nix
··· 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "pipenv-poetry-migrate"; 9 - version = "0.6.0"; 9 + version = "0.6.1"; 10 10 pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "yhino"; 14 14 repo = "pipenv-poetry-migrate"; 15 15 tag = "v${version}"; 16 - hash = "sha256-M31bOvKGUlkzfZRQAxTkxhX8m9cCzEvsNZdyIyipwGI="; 16 + hash = "sha256-B13/QHHruZGkks1AKHLUw8h5FJkqaVjPHjiKH8vkV/8="; 17 17 }; 18 18 19 19 build-system = [ python3Packages.poetry-core ];
+1
pkgs/by-name/pr/pretalx/package.nix
··· 103 103 "django-csp" 104 104 "django-filter" 105 105 "django-hierarkey" 106 + "django-i18nfield" 106 107 "djangorestframework" 107 108 "markdown" 108 109 "pillow"
+2 -2
pkgs/by-name/pu/pulsarctl/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "pulsarctl"; 14 - version = "4.0.1.2"; 14 + version = "4.0.1.3"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "streamnative"; 18 18 repo = "pulsarctl"; 19 19 rev = "v${version}"; 20 - hash = "sha256-3VONhrKViblh0LXy/hMVgzCN54JkDYw3v/YrqXuk6l8="; 20 + hash = "sha256-wjLF8yaVRJeh7xMCmNAI/xW7CU5noFPgHkZRtixADv8="; 21 21 }; 22 22 23 23 vendorHash = "sha256-wNUTJn7Ar+GlePEhdr6xeolAiltJdAoIs5o5uDo8Ibs=";
+19 -5
pkgs/by-name/re/reposilite/package.nix
··· 1 1 { 2 - stdenv, 3 2 lib, 3 + stdenv, 4 4 fetchurl, 5 - makeWrapper, 6 5 jre_headless, 6 + linkFarm, 7 + makeWrapper, 8 + plugins ? [ ], 7 9 }: 8 - 10 + let 11 + pluginsDir = linkFarm "reposilite-plugins" ( 12 + builtins.map (p: { 13 + name = (builtins.parseDrvName p.name).name + ".jar"; 14 + path = p.outPath or p; 15 + }) plugins 16 + ); 17 + in 9 18 stdenv.mkDerivation (finalAttrs: { 10 19 pname = "Reposilite"; 11 20 version = "3.5.20"; ··· 25 34 mkdir -p $out/lib 26 35 cp $src $out/lib/reposilite 27 36 makeWrapper ${jre_headless}/bin/java $out/bin/reposilite \ 28 - --add-flags "-Xmx40m -jar $out/lib/reposilite" 37 + --add-flags "-Xmx40m -jar $out/lib/reposilite ${ 38 + lib.optionalString (plugins != [ ]) "--plugin-directory ${pluginsDir}" 39 + }" 29 40 30 41 runHook postInstall 31 42 ''; ··· 35 46 homepage = "https://github.com/dzikoysk/reposilite"; 36 47 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 37 48 license = lib.licenses.asl20; 38 - maintainers = with lib.maintainers; [ jamalam ]; 49 + maintainers = with lib.maintainers; [ 50 + jamalam 51 + uku3lig 52 + ]; 39 53 inherit (jre_headless.meta) platforms; 40 54 mainProgram = "reposilite"; 41 55 };
+3 -3
pkgs/by-name/re/retroarch-assets/package.nix
··· 7 7 8 8 stdenvNoCC.mkDerivation { 9 9 pname = "retroarch-assets"; 10 - version = "1.19.0-unstable-2024-12-31"; 10 + version = "1.20.0-unstable-2025-01-30"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "libretro"; 14 14 repo = "retroarch-assets"; 15 - rev = "c4f1ec8bddba15e1b1a00a7e56c50cf0eca8b5c9"; 16 - hash = "sha256-iyLw7LhZIjPRQJaa6bS+HUctYDoVzD1sU8SUFtBnwnE="; 15 + rev = "9afd2b8a9d16fc25c5a046122bc0d2b3c965980e"; 16 + hash = "sha256-PWwq9aNj0u+Dc9Q7lSRivER1Fd42H6u2auU/XLlg61k="; 17 17 }; 18 18 19 19 makeFlags = [
+3 -3
pkgs/by-name/ri/rio/package.nix
··· 53 53 in 54 54 rustPlatform.buildRustPackage rec { 55 55 pname = "rio"; 56 - version = "0.2.4"; 56 + version = "0.2.5"; 57 57 58 58 src = fetchFromGitHub { 59 59 owner = "raphamorim"; 60 60 repo = "rio"; 61 61 rev = "v${version}"; 62 - hash = "sha256-dH/r6Bumis8WOM/c/FAvFD2QYuMeHWOMQuU6zLWrlaM="; 62 + hash = "sha256-GyHwYvhqRX2ENaytLB/NrJv2wFbpPrZpQd5OW53ZgRw="; 63 63 }; 64 64 65 65 useFetchCargoVendor = true; 66 - cargoHash = "sha256-zE99cP6m6gWViAfiF9nlnSn2iLxBNoMyl5fWdmc1r7s="; 66 + cargoHash = "sha256-TB3Nl3ePIJE7UQ89cJI5MPG4XpsPQgG5tM409GGm+qg="; 67 67 68 68 nativeBuildInputs = 69 69 [
+7
pkgs/by-name/ru/rutabaga_gfx/package.nix
··· 40 40 }) 41 41 # Install the dylib on Darwin. 42 42 ./darwin-install.patch 43 + # Patch for libc++, drop in next update 44 + # https://chromium.googlesource.com/crosvm/crosvm/+/8ae3c23b2e3899de33b973fc636909f1eb3dc98c 45 + ./link-cxx.patch 43 46 ]; 47 + 48 + env = lib.optionalAttrs stdenv.hostPlatform.useLLVM { 49 + USE_CLANG = true; 50 + }; 44 51 45 52 nativeBuildInputs = [ 46 53 cargo
+2 -2
pkgs/by-name/sd/sdl3/package.nix
··· 53 53 54 54 stdenv.mkDerivation (finalAttrs: { 55 55 pname = "sdl3"; 56 - version = "3.2.0"; 56 + version = "3.2.2"; 57 57 58 58 outputs = [ 59 59 "lib" ··· 65 65 owner = "libsdl-org"; 66 66 repo = "SDL"; 67 67 tag = "release-${finalAttrs.version}"; 68 - hash = "sha256-gVLZPuXtMdFhylxh3+LC/SJCaQiOwZpbVcBGctyGGYY="; 68 + hash = "sha256-AbEwpIxgYl3g4calnWca8Vz/Tw1DnYfZrD1Vl5cSMpk="; 69 69 }; 70 70 71 71 postPatch =
+2 -2
pkgs/by-name/si/signalbackup-tools/package.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "signalbackup-tools"; 16 - version = "20250127-1"; 16 + version = "20250202"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "bepaald"; 20 20 repo = "signalbackup-tools"; 21 21 rev = version; 22 - hash = "sha256-6JHHiT1OwLPKxA0rbGiwhwF4PiuS5yguoNtB7dpTJPI="; 22 + hash = "sha256-RYklp/jrp/bdS6tuIBHSgF1GJYnYydj4fcwsgcuZPeY="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/by-name/si/simple64-netplay-server/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "simple64-netplay-server"; 9 - version = "2025.01.1"; 9 + version = "2025.01.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "simple64"; 13 13 repo = "simple64-netplay-server"; 14 14 tag = "v${version}"; 15 - hash = "sha256-mE6cm1/xxQvcQykKDfO9dDK3J6TOE3POaDuYB0tNRPk="; 15 + hash = "sha256-6+apLOy/hlLkvQjVxi4qpIVhfImdevyCFGAo6rBCc6k="; 16 16 }; 17 17 18 18 vendorHash = "sha256-lcKOAPCyWKNg+l1YjziaMTn4DjLB0P+dz3FqyAy0sFk=";
+3 -3
pkgs/by-name/sn/snips-sh/package.nix
··· 8 8 }: 9 9 buildGoModule rec { 10 10 pname = "snips-sh"; 11 - version = "0.4.1"; 12 - vendorHash = "sha256-weqlhnhUG2gn9SFS63q1LYmPa7liGYYcJN5qorj6x2E="; 11 + version = "0.4.2"; 12 + vendorHash = "sha256-Lp3yousaDkTCruOP0ytfY84vPmfLMgBoTwf+7Q7Q0Lc="; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "robherley"; 16 16 repo = "snips.sh"; 17 17 rev = "v${version}"; 18 - hash = "sha256-FEo2/TPwes8/Iwfp7OIo1HbLWF9xmVS9ZMC9HysyK/k="; 18 + hash = "sha256-IjGXGY75k9VeeHek0V8SrIElmiQ+Q2P5gEDIp7pmQd8="; 19 19 }; 20 20 21 21 tags = (lib.optional (!withTensorflow) "noguesser");
+2 -2
pkgs/by-name/so/sof-firmware/package.nix
··· 6 6 7 7 stdenvNoCC.mkDerivation rec { 8 8 pname = "sof-firmware"; 9 - version = "2024.09.2"; 9 + version = "2025.01"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/thesofproject/sof-bin/releases/download/v${version}/sof-bin-${version}.tar.gz"; 13 - sha256 = "sha256-huaEGlXx1tHJFQOoSCwbR128rezbYVG/oKwAldHYpSo="; 13 + sha256 = "sha256-NNVl23V6MkUBBjF8xR84v2eWLg/It/fHLm45/YnpkmM="; 14 14 }; 15 15 16 16 dontFixup = true; # binaries must not be stripped or patchelfed
+3 -3
pkgs/by-name/td/tdl/package.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "tdl"; 8 - version = "0.18.4"; 8 + version = "0.18.5"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "iyear"; 12 12 repo = "tdl"; 13 13 rev = "v${version}"; 14 - hash = "sha256-30OClBZUjoLvZ0ZhSZx+AaS7fhjo8X392t4FQpxoG9Q="; 14 + hash = "sha256-PVd9aYo4ALgzovNOfAUQkAaAbWNLeqF+UEPlL9iGhAs="; 15 15 }; 16 16 17 - vendorHash = "sha256-QBqUa/PnT/Xma3SHq6YRGtVNKstTax1GVRsCDU12ETA="; 17 + vendorHash = "sha256-IJPGkQxUGk7v+8J37vLTbLSGxYOcfgNDywnGzTxbk3w="; 18 18 19 19 ldflags = [ 20 20 "-s"
+3 -3
pkgs/by-name/te/termius/package.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "termius"; 19 - version = "9.12.0"; 20 - revision = "212"; 19 + version = "9.13.1"; 20 + revision = "213"; 21 21 22 22 src = fetchurl { 23 23 # find the latest version with ··· 27 27 # and the sha512 with 28 28 # curl -H 'X-Ubuntu-Series: 16' https://api.snapcraft.io/api/v1/snaps/details/termius-app | jq '.download_sha512' -r 29 29 url = "https://api.snapcraft.io/api/v1/snaps/download/WkTBXwoX81rBe3s3OTt3EiiLKBx2QhuS_${revision}.snap"; 30 - hash = "sha512-w2dp/iwwYsR7LVk7O4FtktctX39lMNufrtTSaRjWq59bIalvPM2mC3DDs1zhsEq1EmKsY+uVsAgsDPMG7bCRUw=="; 30 + hash = "sha512-GF5ZC4t3f54Rwqet9g4McB0h+sBg/+VpZ57IKVKC25T442gAEkdhTwQdqf2kJ+V74PsqdpZJk61rh21EusOi5w=="; 31 31 }; 32 32 33 33 desktopItem = makeDesktopItem {
+4 -7
pkgs/by-name/ts/tsukimi/package.nix
··· 15 15 }: 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "tsukimi"; 18 - version = "0.18.3"; 18 + version = "0.19.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "tsukinaha"; 22 22 repo = "tsukimi"; 23 23 tag = "v${version}"; 24 - hash = "sha256-MbGWPvCq4nzrp8ArXud9A+6uPcnbxs42M2QwjZxUn5w="; 24 + hash = "sha256-5hOOIkH0VhZwlsNKAyOI714ueGcSMagoLGi5ECfqXk4="; 25 25 fetchSubmodules = true; 26 26 }; 27 27 28 28 useFetchCargoVendor = true; 29 - cargoHash = "sha256-59JakfFFM4Tpi1J3ja0aDhC5oty/0QKNLcU58nRewTg="; 29 + cargoHash = "sha256-rgTrPJydS4685BlSEwNvmEajZEksqQicscOq/Uu9JJ4="; 30 30 31 31 nativeBuildInputs = [ 32 32 pkg-config ··· 56 56 substituteInPlace build.rs \ 57 57 --replace-fail 'i18n/locale' "$out/share/locale" 58 58 59 - substituteInPlace src/main.rs \ 59 + substituteInPlace src/lib.rs \ 60 60 --replace-fail '/usr/share/locale' "$out/share/locale" 61 61 ''; 62 62 ··· 81 81 ]; 82 82 mainProgram = "tsukimi"; 83 83 platforms = lib.platforms.linux; 84 - # libmpv2 crate fail to compile 85 - # expected raw pointer `*const u8` found raw pointer `*const i8` 86 - broken = stdenv.hostPlatform.isAarch64; 87 84 }; 88 85 }
+33
pkgs/by-name/tt/tt-rss-plugin-data-migration/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchgit, 5 + }: 6 + 7 + stdenv.mkDerivation { 8 + pname = "tt-rss-plugin-data-migration"; 9 + version = "0-unstable-2023-11-01"; 10 + 11 + src = fetchgit { 12 + url = "https://git.tt-rss.org/fox/ttrss-data-migration.git"; 13 + rev = "e13d5f97b4887ce7b57b3d76228d838dec15963d"; 14 + hash = "sha256-xnbR5IQ0h7ilxchNj55ROZdq1L7MIAwv3/00k09WTTs="; 15 + }; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + 20 + install -D init.php $out/data_migration/init.php 21 + 22 + runHook postInstall 23 + ''; 24 + 25 + meta = { 26 + description = "Plugin for TT-RSS to exports and imports *all* articles of a specific user via neutral format (JSON files in a ZIP archive)"; 27 + # this plugin doesn't have a license file 28 + license = lib.licenses.unfree; 29 + homepage = "https://git.tt-rss.org/fox/ttrss-data-migration.git/"; 30 + maintainers = with lib.maintainers; [ wrvsrx ]; 31 + platforms = lib.platforms.all; 32 + }; 33 + }
+2 -2
pkgs/by-name/us/ustreamer/package.nix
··· 21 21 }: 22 22 stdenv.mkDerivation rec { 23 23 pname = "ustreamer"; 24 - version = "6.22"; 24 + version = "6.27"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "pikvm"; 28 28 repo = "ustreamer"; 29 29 rev = "v${version}"; 30 - hash = "sha256-6qVDxci2uFV2Z93vqbpwxZ3yAVZ5NHGOPDOYRr2b1l8="; 30 + hash = "sha256-/lNRw73w/1L12R1hVIopUvqwKVgl055zn5xL6LL9TLI="; 31 31 }; 32 32 33 33 buildInputs =
+3 -3
pkgs/by-name/ve/vector/package.nix
··· 24 24 25 25 let 26 26 pname = "vector"; 27 - version = "0.43.1"; 27 + version = "0.44.0"; 28 28 in 29 29 rustPlatform.buildRustPackage { 30 30 inherit pname version; ··· 33 33 owner = "vectordotdev"; 34 34 repo = pname; 35 35 rev = "v${version}"; 36 - hash = "sha256-BFVRaHNd9LMJQnkHHfNtvGKkv8q7GjnT+FzNwSc8GZw="; 36 + hash = "sha256-dYjZRTJ0/jb/GsADMy7CkTpFrevSAZz5IMj1mLm22Es="; 37 37 }; 38 38 39 39 useFetchCargoVendor = true; 40 - cargoHash = "sha256-1xxEu4/IxUe10Wngz1RUT6Iu982pueRteiOwg6BZ1/E="; 40 + cargoHash = "sha256-easBpuypi9wCtfMaeMQg8EVlHhBBWUof3eDRkv0THPM="; 41 41 42 42 nativeBuildInputs = 43 43 [
+3 -3
pkgs/by-name/wa/wait4x/package.nix
··· 5 5 }: 6 6 let 7 7 pname = "wait4x"; 8 - version = "2.14.2"; 8 + version = "2.14.3"; 9 9 in 10 10 buildGoModule { 11 11 inherit pname version; ··· 14 14 owner = "atkrad"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - hash = "sha256-fNPZ/qgAn4odd5iWnDK1RWPxeBhS/l4ffHLFB27SAoM="; 17 + hash = "sha256-tqUqiq+U+C+1KCsCw9h1uufL1ognUyvLwJfRU8aiAWI="; 18 18 }; 19 19 20 - vendorHash = "sha256-Eio6CoYaChG59rHL4tfl7dNWliD7ksRyhoCPxMvMmrQ="; 20 + vendorHash = "sha256-KtEOLLsbTfgaXy/0aj5zT5qbgW6qBFMuU3EnnXRu+Ig="; 21 21 22 22 # Tests make network access 23 23 doCheck = false;
+3 -3
pkgs/by-name/we/werf/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "werf"; 13 - version = "2.22.0"; 13 + version = "2.24.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "werf"; 17 17 repo = "werf"; 18 18 rev = "v${version}"; 19 - hash = "sha256-43ZN2bMzVBpliXjDDJrVZqdiWBS3rT5mYEd0440wp4s="; 19 + hash = "sha256-IU9gVEG4MsUkdX4aJYKtd11WQLODU1IYAUyiuK+la40="; 20 20 }; 21 21 22 - vendorHash = "sha256-Qy5Tjg/QETeN8leTaWZXSUauK2LkPUUZbpztC79v6Jo="; 22 + vendorHash = "sha256-1HK90RqVvpuzkhbsLh0R6/CcdO/RrXRuOr3MBN0dcLU="; 23 23 24 24 proxyVendor = true; 25 25
+18 -5
pkgs/by-name/wo/workout-tracker/package.nix
··· 9 9 }: 10 10 let 11 11 pname = "workout-tracker"; 12 - version = "1.18.1"; 12 + version = "2.0.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "jovandeginste"; 16 16 repo = "workout-tracker"; 17 17 tag = "v${version}"; 18 - hash = "sha256-Sn6SOHrsp1ZgsPntc2+cmlAEPVBUrYv1vKLKAQvT9m4="; 18 + hash = "sha256-DJOYjKujb6mmqJcYhzPLv1uYgAIWW4hdH/gILlqkJXQ="; 19 19 }; 20 20 21 21 assets = buildNpmPackage { 22 22 pname = "${pname}-assets"; 23 23 inherit version src; 24 - npmDepsHash = "sha256-jHpvCMgjGvaAOfbslaIKfIRiPafScpn3WLnYamm+lbs="; 24 + npmDepsHash = "sha256-/OBIRiLwUtXVmmg44FYqV0BptxQTg8bDuNMTj8IYwG0="; 25 25 dontNpmBuild = true; 26 + makeCacheWritable = true; 26 27 postPatch = '' 27 28 rm Makefile 28 29 ''; ··· 33 34 ''; 34 35 }; 35 36 in 36 - buildGoModule rec { 37 + buildGoModule { 37 38 inherit pname version src; 38 39 39 40 vendorHash = null; ··· 43 44 make build-dist 44 45 ''; 45 46 47 + ldflags = [ 48 + "-s" 49 + "-w" 50 + "-X main.buildTime=1970-01-01T00:00:00Z" 51 + "-X main.gitCommit=v${version}" 52 + "-X main.gitRef=v${version}" 53 + "-X main.gitRefName=v${version}" 54 + ]; 55 + 46 56 passthru.updateScript = nix-update-script { }; 47 57 48 58 passthru.tests = { ··· 55 65 homepage = "https://github.com/jovandeginste/workout-tracker"; 56 66 license = lib.licenses.mit; 57 67 mainProgram = "workout-tracker"; 58 - maintainers = with lib.maintainers; [ bhankas ]; 68 + maintainers = with lib.maintainers; [ 69 + bhankas 70 + sikmir 71 + ]; 59 72 }; 60 73 }
+2 -2
pkgs/by-name/zi/zipline/package.nix
··· 39 39 }; 40 40 41 41 patches = [ 42 - # Update prisma to match the version in nixpkgs exactly (currently 6.0.1). To create this patch, change the 42 + # Update prisma to match the version in nixpkgs exactly (currently 6.3.0). To create this patch, change the 43 43 # versions in `package.json`, then run `nix run nixpkgs#yarn-berry -- install --mode update-lockfile` 44 44 # to update `yarn.lock`. 45 45 ./prisma6.patch ··· 70 70 yarn install --immutable --mode skip-build 71 71 ''; 72 72 73 - outputHash = "sha256-kWE6YVhyH5Lk/SO0h624Zq9/6ztoUE3FNzHB0dyl5aI="; 73 + outputHash = "sha256-c7U/PMlulbjzWx0w4jstgfjeDYPkmfcXIRCDEQxhirA="; 74 74 outputHashMode = "recursive"; 75 75 }; 76 76
+237 -224
pkgs/by-name/zi/zipline/prisma6.patch
··· 1 1 diff --git a/package.json b/package.json 2 - index 9276e5f..ded1f51 100644 2 + index 41a84b7..eab012b 100644 3 3 --- a/package.json 4 4 +++ b/package.json 5 5 @@ -39,9 +39,9 @@ ··· 9 9 - "@prisma/client": "^5.1.1", 10 10 - "@prisma/internals": "^5.1.1", 11 11 - "@prisma/migrate": "^5.1.1", 12 - + "@prisma/client": "6.0.1", 13 - + "@prisma/internals": "6.0.1", 14 - + "@prisma/migrate": "6.0.1", 12 + + "@prisma/client": "6.3.0", 13 + + "@prisma/internals": "6.3.0", 14 + + "@prisma/migrate": "6.3.0", 15 15 "@sapphire/shapeshift": "^3.9.3", 16 16 "@tabler/icons-react": "^2.41.0", 17 17 "@tanstack/react-query": "^4.28.0", ··· 20 20 "next": "^14.0.3", 21 21 "otplib": "^12.0.1", 22 22 - "prisma": "^5.1.1", 23 - + "prisma": "6.0.1", 23 + + "prisma": "6.3.0", 24 24 "prismjs": "^1.29.0", 25 25 "qrcode": "^1.5.3", 26 26 "react": "^18.2.0", 27 27 diff --git a/yarn.lock b/yarn.lock 28 - index 633a054..6ba71b9 100644 28 + index 633a054..73e8f77 100644 29 29 --- a/yarn.lock 30 30 +++ b/yarn.lock 31 31 @@ -12,201 +12,6 @@ __metadata: ··· 274 274 "@otplib/core@npm:^12.0.1": 275 275 version: 12.0.1 276 276 resolution: "@otplib/core@npm:12.0.1" 277 - @@ -1197,186 +979,121 @@ __metadata: 277 + @@ -1197,186 +979,129 @@ __metadata: 278 278 languageName: node 279 279 linkType: hard 280 280 ··· 283 283 - resolution: "@prisma/client@npm:5.6.0" 284 284 - dependencies: 285 285 - "@prisma/engines-version": 5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee 286 - +"@prisma/client@npm:6.0.1": 287 - + version: 6.0.1 288 - + resolution: "@prisma/client@npm:6.0.1" 286 + +"@prisma/client@npm:6.3.0": 287 + + version: 6.3.0 288 + + resolution: "@prisma/client@npm:6.3.0" 289 289 peerDependencies: 290 290 prisma: "*" 291 + + typescript: ">=5.1.0" 291 292 peerDependenciesMeta: 292 293 prisma: 293 294 optional: true 294 295 - checksum: 51abfba1c066ff6a79d5c6aad5eed6bdde6fbafa5a1d6e17f3aa2b0f8ed55541079b2526bc0372158953d1146c8dd9c6fbcd137cf7fb2ace1022b02cc55675ab 295 - + checksum: a860cba31cd69fb845af0c2e6c461847e66560a2719d7786f1d3bd8de245c99e794aee7e94f1f8339d307161f57070dc6ef138283a57b5d92077f39e96ca40ba 296 + + typescript: 297 + + optional: true 298 + + checksum: 1f4cd89653cc96b3d6de7c7711e041e1fea9cca0b0af7b46d55159a9b4006d53aaec325eb52dfb4561a0a1fae471490f960695e8287a506764475f8383a55316 296 299 languageName: node 297 300 linkType: hard 298 301 299 302 -"@prisma/debug@npm:5.6.0": 300 303 - version: 5.6.0 301 304 - resolution: "@prisma/debug@npm:5.6.0" 302 - +"@prisma/debug@npm:6.0.1": 303 - + version: 6.0.1 304 - + resolution: "@prisma/debug@npm:6.0.1" 305 - + checksum: 526e0115ab9f6e6e357a92a29ff605fbf1152ab98d8663036ed7a4ac19c6e4e75932f6135bf00fc331c04612706e08ba5ebb7f96bbdad9c009fed856aad39499 305 + +"@prisma/debug@npm:6.3.0": 306 + + version: 6.3.0 307 + + resolution: "@prisma/debug@npm:6.3.0" 308 + + checksum: 148bbdf9555b8636cb876ff03b287dd048a0c0a4aa848a4bd53021227953c6e8d84bf43604123c43f768ed3f52134680aca2026e67340dad05ac1474699e3e5e 306 309 + languageName: node 307 310 + linkType: hard 308 311 + 309 - +"@prisma/engines-version@npm:5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e": 310 - + version: 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e 311 - + resolution: "@prisma/engines-version@npm:5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e" 312 - + checksum: 0921f3435767deb611c86c5f1f92ca2752310f477e3ef9eecfbe5ec26613d45b0e321df10c22e3fea1272e78ace4ea093dcc6843a0c11cc6334d51682fc12be2 312 + +"@prisma/engines-version@npm:6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0": 313 + + version: 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0 314 + + resolution: "@prisma/engines-version@npm:6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0" 315 + + checksum: 545baff9f8bec9d43a1a3a280f87c9565562d885c2c28c03179c93626fca106f74a8f4f53a14fadb2664aea7748a871e4742986a494af0a9c219905dfdf0dda7 313 316 + languageName: node 314 317 + linkType: hard 315 318 + 316 - +"@prisma/engines@npm:6.0.1": 317 - + version: 6.0.1 318 - + resolution: "@prisma/engines@npm:6.0.1" 319 + +"@prisma/engines@npm:6.3.0": 320 + + version: 6.3.0 321 + + resolution: "@prisma/engines@npm:6.3.0" 319 322 dependencies: 320 323 - "@types/debug": 4.1.12 321 324 - debug: 4.3.4 322 325 - strip-ansi: 6.0.1 323 326 - checksum: 8244201d8e9f479fe4697f4f38c70f628e96c1d64e9331ea436ce79a79159cd358a0bec95668c941db86a3462474148f89ad19c7f5bae28a6178cd9c61f3a6d4 324 - + "@prisma/debug": 6.0.1 325 - + "@prisma/engines-version": 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e 326 - + "@prisma/fetch-engine": 6.0.1 327 - + "@prisma/get-platform": 6.0.1 328 - + checksum: a61bdb842fa86a44337d876e14e9f903862d9d7eb133e30a217b94da1b0d839cbfc82532e738194ccf045a9aa452f19c1328ac6782076a83df71839e9fc5573b 327 + + "@prisma/debug": 6.3.0 328 + + "@prisma/engines-version": 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0 329 + + "@prisma/fetch-engine": 6.3.0 330 + + "@prisma/get-platform": 6.3.0 331 + + checksum: f19720bbbe2a0e0498d92e889f0c4e02796559b6f5322a0aa514606a2a44cdcdc8a0ac6512ad73ff7bd9adbca189f4ebd3bfd29997ed5ad9e5b05a03cb02a414 329 332 languageName: node 330 333 linkType: hard 331 334 ··· 346 349 -"@prisma/fetch-engine@npm:5.6.0": 347 350 - version: 5.6.0 348 351 - resolution: "@prisma/fetch-engine@npm:5.6.0" 349 - +"@prisma/fetch-engine@npm:6.0.1": 350 - + version: 6.0.1 351 - + resolution: "@prisma/fetch-engine@npm:6.0.1" 352 + +"@prisma/fetch-engine@npm:6.3.0": 353 + + version: 6.3.0 354 + + resolution: "@prisma/fetch-engine@npm:6.3.0" 352 355 dependencies: 353 356 - "@prisma/debug": 5.6.0 354 357 - "@prisma/get-platform": 5.6.0 ··· 368 371 - temp-dir: 2.0.0 369 372 - tempy: 1.0.1 370 373 - checksum: 53c7a90e3e578fd1e8971253ae9d92495464a9526235b96b461c93fd7b718c8712620f0ad3d9b633cb0e187af86a1f786d64888c3af0bebdc4cc9b0937fb7bfb 371 - + "@prisma/debug": 6.0.1 372 - + "@prisma/engines-version": 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e 373 - + "@prisma/get-platform": 6.0.1 374 - + checksum: ab4196aceb843ad81a888a44db674fba32c1af70cafcfb0f5987fe3eb7c4441de901b05e7ffbb1d6c5c3c33df79bc646f2d721c36c75e90799cd7133a7b15651 374 + + "@prisma/debug": 6.3.0 375 + + "@prisma/engines-version": 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0 376 + + "@prisma/get-platform": 6.3.0 377 + + checksum: 0e9a34334cbd59480223d2773b731a74b3a4e84d60d44f5cd131c31d0853c15300eec4da4890d4e8ba7b523a988946536e2d887a40fca4d4cbe9a7c4c6394e06 375 378 languageName: node 376 379 linkType: hard 377 380 378 381 -"@prisma/generator-helper@npm:5.6.0": 379 382 - version: 5.6.0 380 383 - resolution: "@prisma/generator-helper@npm:5.6.0" 381 - +"@prisma/generator-helper@npm:6.0.1": 382 - + version: 6.0.1 383 - + resolution: "@prisma/generator-helper@npm:6.0.1" 384 + +"@prisma/generator-helper@npm:6.3.0": 385 + + version: 6.3.0 386 + + resolution: "@prisma/generator-helper@npm:6.3.0" 384 387 dependencies: 385 388 - "@prisma/debug": 5.6.0 386 389 - "@types/cross-spawn": 6.0.5 387 390 - cross-spawn: 7.0.3 388 391 - kleur: 4.1.5 389 392 - checksum: b61af3b6e620bb72f1ddde3b6d90954f9707100a4eb6125f7c585fc9db0a26d23c8698bb8d2796893930e066fed9cfba526e23abce5da2f4b13b65f7904aea1d 390 - + "@prisma/debug": 6.0.1 391 - + checksum: abbfbeba06c9d038dae79ab347ed625ee60666a24ff04108536eca2cf05fd6096e69af3e3afb8a1f4d283d9a47ac594e4e1edfdc5c1d84959a1e5ed94b1323c5 393 + + "@prisma/debug": 6.3.0 394 + + checksum: 5c87ea6a2c4c8c3ccee1176f08d768e661272356f4d928d8e887c71336cb8e97c2a050d423dfdc4d1d33ca35fa47a4a65b8be46d36bf83be60c606d04a01829d 392 395 languageName: node 393 396 linkType: hard 394 397 395 398 -"@prisma/get-platform@npm:5.6.0": 396 399 - version: 5.6.0 397 400 - resolution: "@prisma/get-platform@npm:5.6.0" 398 - +"@prisma/get-platform@npm:6.0.1": 399 - + version: 6.0.1 400 - + resolution: "@prisma/get-platform@npm:6.0.1" 401 + +"@prisma/get-platform@npm:6.3.0": 402 + + version: 6.3.0 403 + + resolution: "@prisma/get-platform@npm:6.3.0" 401 404 dependencies: 402 405 - "@prisma/debug": 5.6.0 403 406 - escape-string-regexp: 4.0.0 ··· 410 413 - terminal-link: 2.1.1 411 414 - ts-pattern: 5.0.5 412 415 - checksum: 691344e7c42ca7346dca3ea21293b36b34ff1688a3fb6f45405fc0119e4b55272f5bbb7e4f8556a0ba6308e52fe4b3f0dc0157c2c3399e8cd7d0028ae3568d22 413 - + "@prisma/debug": 6.0.1 414 - + checksum: 6aae982e6f4f8b89dcaf2da77b9aeede6853b28364d62c8bfd0912c324e0ec664810dc32cd69971c1f8df24d95f0d3f8edd455e240d810d3f0db4bd592fc1d4a 416 + + "@prisma/debug": 6.3.0 417 + + checksum: 6970d4bbf4ee82e6193e16615f57c242105d80708a2769a89b8b9dfda280b6dd994dbf5447088ce2d0fd74ea17a42402b485ab9b67e8bb02007df27a786566d1 415 418 languageName: node 416 419 linkType: hard 417 420 418 421 -"@prisma/internals@npm:^5.1.1": 419 422 - version: 5.6.0 420 423 - resolution: "@prisma/internals@npm:5.6.0" 421 - +"@prisma/internals@npm:6.0.1": 422 - + version: 6.0.1 423 - + resolution: "@prisma/internals@npm:6.0.1" 424 + +"@prisma/internals@npm:6.3.0": 425 + + version: 6.3.0 426 + + resolution: "@prisma/internals@npm:6.3.0" 424 427 dependencies: 425 428 - "@antfu/ni": 0.21.8 426 429 - "@opentelemetry/api": 1.7.0 ··· 431 434 - "@prisma/get-platform": 5.6.0 432 435 - "@prisma/prisma-schema-wasm": 5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee 433 436 - archiver: 6.0.1 434 - + "@prisma/debug": 6.0.1 435 - + "@prisma/engines": 6.0.1 436 - + "@prisma/fetch-engine": 6.0.1 437 - + "@prisma/generator-helper": 6.0.1 438 - + "@prisma/get-platform": 6.0.1 439 - + "@prisma/prisma-schema-wasm": 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e 440 - + "@prisma/schema-files-loader": 6.0.1 437 + + "@prisma/debug": 6.3.0 438 + + "@prisma/engines": 6.3.0 439 + + "@prisma/fetch-engine": 6.3.0 440 + + "@prisma/generator-helper": 6.3.0 441 + + "@prisma/get-platform": 6.3.0 442 + + "@prisma/prisma-schema-wasm": 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0 443 + + "@prisma/schema-files-loader": 6.3.0 441 444 arg: 5.0.2 442 445 - checkpoint-client: 1.1.27 443 446 - cli-truncate: 2.1.0 ··· 472 475 - tmp: 0.2.1 473 476 - ts-pattern: 5.0.5 474 477 - checksum: 7a2130541a73e06b80f13b9c8ec6b5afb1ee28ee34a896e7c6fb9c057609159526f7152169f68e21b7b04d163da6f49332e322d00a3bce765a99e0d0fb339940 475 - + checksum: 01c16a73641b04cf3e0766b82996643d418856d820908ed02e3db072b4522c2a912463f42e236fc831ac8829b5609de9ff0d05ebccd51a7b0d861319b8f387e2 478 + + peerDependencies: 479 + + typescript: ">=5.1.0" 480 + + peerDependenciesMeta: 481 + + typescript: 482 + + optional: true 483 + + checksum: 33c642e7b2b873fdbf99be39a407c1bb778dce8fcf9d138e9de58f2b4f1dae524142cf8c3ab52d52435628b4a14e378a9051edfcff726d38e8e1386a19354604 476 484 languageName: node 477 485 linkType: hard 478 486 479 487 -"@prisma/migrate@npm:^5.1.1": 480 488 - version: 5.6.0 481 489 - resolution: "@prisma/migrate@npm:5.6.0" 482 - +"@prisma/migrate@npm:6.0.1": 483 - + version: 6.0.1 484 - + resolution: "@prisma/migrate@npm:6.0.1" 490 + +"@prisma/migrate@npm:6.3.0": 491 + + version: 6.3.0 492 + + resolution: "@prisma/migrate@npm:6.3.0" 485 493 dependencies: 486 494 - "@prisma/debug": 5.6.0 487 495 - "@prisma/get-platform": 5.6.0 ··· 500 508 - ora: 5.4.1 501 509 - pg: 8.11.3 502 510 - pkg-up: 3.1.0 503 - + "@prisma/debug": 6.0.1 504 - + "@prisma/engines-version": 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e 505 - + "@prisma/generator-helper": 6.0.1 506 - + "@prisma/get-platform": 6.0.1 507 - + "@prisma/internals": 6.0.1 511 + + "@prisma/debug": 6.3.0 512 + + "@prisma/engines-version": 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0 513 + + "@prisma/generator-helper": 6.3.0 514 + + "@prisma/get-platform": 6.3.0 515 + + "@prisma/internals": 6.3.0 508 516 prompts: 2.4.2 509 517 - strip-ansi: 6.0.1 510 518 - strip-indent: 3.0.0 ··· 513 521 "@prisma/generator-helper": "*" 514 522 "@prisma/internals": "*" 515 523 - checksum: 587cf3ffb475d1fe4b8c508de6db88e30ba8adba178ded8c1eee422791eba98b74872e6c4b4125bd4ee4e4669fd14b22d28de44324b405d1257331dcea8733da 516 - + checksum: 5f95c407c7924475711b1cc237b3d7e9dca8d419e1276e8dadb5cc00547a8590c07bf07f00861479dd7fbd396df511c61fe627541ad1ae9d0664aa2d07ccf0b2 524 + + checksum: f9993ebd269bc7b5d99f6a08650a9ea0d70edaa7cae9f79b123ac44066cfa5b77b8ec9bb306b26513867d7eac30086fa695757953cbb29f073b03c3df21f8a79 517 525 languageName: node 518 526 linkType: hard 519 527 ··· 521 529 - version: 5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee 522 530 - resolution: "@prisma/prisma-schema-wasm@npm:5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee" 523 531 - checksum: 36d7d5f706ffaddac3126d8b153d2ae0b7735f84708929ab1f3ee0d3de18e4bd471a1ddf2ae4fbc449dee04026b5157729ec7708eb96ad0b36e74957f1c3c950 524 - +"@prisma/prisma-schema-wasm@npm:5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e": 525 - + version: 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e 526 - + resolution: "@prisma/prisma-schema-wasm@npm:5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e" 527 - + checksum: 2ed1d885967832476a695d6f6baeba766ae89f0e40b122a72213d97c343bb1be776634ffab50b2cc012a31e43a492f6c4f1da15509d1ebab85c2352770036d7f 532 + +"@prisma/prisma-schema-wasm@npm:6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0": 533 + + version: 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0 534 + + resolution: "@prisma/prisma-schema-wasm@npm:6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0" 535 + + checksum: ebfc795e262bb2c151619aca2d4cb65228a5ca8b84b8bceb39601ce35f860d38db63d707ca782851cf666ffbe138b7c0917ab0193ea8ef6a7dd46c50eb6b279f 528 536 + languageName: node 529 537 + linkType: hard 530 538 + 531 - +"@prisma/schema-files-loader@npm:6.0.1": 532 - + version: 6.0.1 533 - + resolution: "@prisma/schema-files-loader@npm:6.0.1" 539 + +"@prisma/schema-files-loader@npm:6.3.0": 540 + + version: 6.3.0 541 + + resolution: "@prisma/schema-files-loader@npm:6.3.0" 534 542 + dependencies: 535 - + "@prisma/prisma-schema-wasm": 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e 543 + + "@prisma/prisma-schema-wasm": 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0 536 544 + fs-extra: 11.1.1 537 - + checksum: c55d445fbf6b7b6047e2014c939d31478b28457eaa4a48dd4586c8ebf49e72b6973532cef180696c5215d33b8e9031616a35b0717bf72e0f820a1fb9cc41519c 545 + + checksum: 4dbf3600571b19b2fe725e2a2f59c0ae025237e4e2c3a18d99395ce9bc83a9eff628155c3217269f27b90361459084102d77c0162a83a7157ff2d8f78c7641cf 538 546 languageName: node 539 547 linkType: hard 540 548 541 - @@ -1614,26 +1331,6 @@ __metadata: 549 + @@ -1614,26 +1339,6 @@ __metadata: 542 550 languageName: node 543 551 linkType: hard 544 552 ··· 565 573 "@swc/helpers@npm:0.5.2": 566 574 version: 0.5.2 567 575 resolution: "@swc/helpers@npm:0.5.2" 568 - @@ -1688,20 +1385,6 @@ __metadata: 576 + @@ -1688,20 +1393,6 @@ __metadata: 569 577 languageName: node 570 578 linkType: hard 571 579 ··· 586 594 "@types/body-parser@npm:*": 587 595 version: 1.19.5 588 596 resolution: "@types/body-parser@npm:1.19.5" 589 - @@ -1728,15 +1411,6 @@ __metadata: 597 + @@ -1728,15 +1419,6 @@ __metadata: 590 598 languageName: node 591 599 linkType: hard 592 600 ··· 602 610 "@types/d3-array@npm:^3.0.3": 603 611 version: 3.2.1 604 612 resolution: "@types/d3-array@npm:3.2.1" 605 - @@ -1806,7 +1480,7 @@ __metadata: 613 + @@ -1806,7 +1488,7 @@ __metadata: 606 614 languageName: node 607 615 linkType: hard 608 616 ··· 611 619 version: 4.1.12 612 620 resolution: "@types/debug@npm:4.1.12" 613 621 dependencies: 614 - @@ -1839,13 +1513,6 @@ __metadata: 622 + @@ -1839,13 +1521,6 @@ __metadata: 615 623 languageName: node 616 624 linkType: hard 617 625 ··· 625 633 "@types/hast@npm:^2.0.0": 626 634 version: 2.3.8 627 635 resolution: "@types/hast@npm:2.3.8" 628 - @@ -1972,20 +1639,6 @@ __metadata: 636 + @@ -1972,20 +1647,6 @@ __metadata: 629 637 languageName: node 630 638 linkType: hard 631 639 ··· 646 654 "@types/parse-json@npm:^4.0.0": 647 655 version: 4.0.2 648 656 resolution: "@types/parse-json@npm:4.0.2" 649 - @@ -2041,13 +1694,6 @@ __metadata: 657 + @@ -2041,13 +1702,6 @@ __metadata: 650 658 languageName: node 651 659 linkType: hard 652 660 ··· 660 668 "@types/scheduler@npm:*": 661 669 version: 0.16.6 662 670 resolution: "@types/scheduler@npm:0.16.6" 663 - @@ -2106,23 +1752,6 @@ __metadata: 671 + @@ -2106,23 +1760,6 @@ __metadata: 664 672 languageName: node 665 673 linkType: hard 666 674 ··· 684 692 "@typescript-eslint/eslint-plugin@npm:^6.11.0": 685 693 version: 6.11.0 686 694 resolution: "@typescript-eslint/eslint-plugin@npm:6.11.0" 687 - @@ -2436,15 +2065,6 @@ __metadata: 695 + @@ -2436,15 +2073,6 @@ __metadata: 688 696 languageName: node 689 697 linkType: hard 690 698 ··· 700 708 "ansi-regex@npm:^5.0.1": 701 709 version: 5.0.1 702 710 resolution: "ansi-regex@npm:5.0.1" 703 - @@ -2515,35 +2135,6 @@ __metadata: 711 + @@ -2515,35 +2143,6 @@ __metadata: 704 712 languageName: node 705 713 linkType: hard 706 714 ··· 736 744 "archy@npm:^1.0.0": 737 745 version: 1.0.0 738 746 resolution: "archy@npm:1.0.0" 739 - @@ -2706,13 +2297,6 @@ __metadata: 747 + @@ -2706,13 +2305,6 @@ __metadata: 740 748 languageName: node 741 749 linkType: hard 742 750 ··· 750 758 "async@npm:^3.2.4": 751 759 version: 3.2.5 752 760 resolution: "async@npm:3.2.5" 753 - @@ -2729,13 +2313,6 @@ __metadata: 761 + @@ -2729,13 +2321,6 @@ __metadata: 754 762 languageName: node 755 763 linkType: hard 756 764 ··· 764 772 "atomic-sleep@npm:^1.0.0": 765 773 version: 1.0.0 766 774 resolution: "atomic-sleep@npm:1.0.0" 767 - @@ -2844,7 +2421,7 @@ __metadata: 775 + @@ -2844,7 +2429,7 @@ __metadata: 768 776 languageName: node 769 777 linkType: hard 770 778 ··· 773 781 version: 4.1.0 774 782 resolution: "bl@npm:4.1.0" 775 783 dependencies: 776 - @@ -2855,17 +2432,6 @@ __metadata: 784 + @@ -2855,17 +2440,6 @@ __metadata: 777 785 languageName: node 778 786 linkType: hard 779 787 ··· 791 799 "block-stream2@npm:^2.1.0": 792 800 version: 2.1.0 793 801 resolution: "block-stream2@npm:2.1.0" 794 - @@ -2919,27 +2485,13 @@ __metadata: 802 + @@ -2919,27 +2493,13 @@ __metadata: 795 803 languageName: node 796 804 linkType: hard 797 805 ··· 820 828 "buffer-from@npm:^1.0.0": 821 829 version: 1.1.2 822 830 resolution: "buffer-from@npm:1.1.2" 823 - @@ -2954,13 +2506,6 @@ __metadata: 831 + @@ -2954,13 +2514,6 @@ __metadata: 824 832 languageName: node 825 833 linkType: hard 826 834 ··· 834 842 "buffer@npm:^5.5.0": 835 843 version: 5.7.1 836 844 resolution: "buffer@npm:5.7.1" 837 - @@ -3094,7 +2639,7 @@ __metadata: 845 + @@ -3094,7 +2647,7 @@ __metadata: 838 846 languageName: node 839 847 linkType: hard 840 848 ··· 843 851 version: 4.1.2 844 852 resolution: "chalk@npm:4.1.2" 845 853 dependencies: 846 - @@ -3111,20 +2656,6 @@ __metadata: 854 + @@ -3111,20 +2664,6 @@ __metadata: 847 855 languageName: node 848 856 linkType: hard 849 857 ··· 864 872 "chokidar@npm:^3.5.1": 865 873 version: 3.5.3 866 874 resolution: "chokidar@npm:3.5.3" 867 - @@ -3158,13 +2689,6 @@ __metadata: 875 + @@ -3158,13 +2697,6 @@ __metadata: 868 876 languageName: node 869 877 linkType: hard 870 878 ··· 878 886 "clean-stack@npm:^2.0.0": 879 887 version: 2.2.0 880 888 resolution: "clean-stack@npm:2.2.0" 881 - @@ -3172,32 +2696,6 @@ __metadata: 889 + @@ -3172,32 +2704,6 @@ __metadata: 882 890 languageName: node 883 891 linkType: hard 884 892 ··· 911 919 "client-only@npm:0.0.1": 912 920 version: 0.0.1 913 921 resolution: "client-only@npm:0.0.1" 914 - @@ -3216,13 +2714,6 @@ __metadata: 922 + @@ -3216,13 +2722,6 @@ __metadata: 915 923 languageName: node 916 924 linkType: hard 917 925 ··· 925 933 "clsx@npm:1.1.1": 926 934 version: 1.1.1 927 935 resolution: "clsx@npm:1.1.1" 928 - @@ -3298,15 +2789,6 @@ __metadata: 936 + @@ -3298,15 +2797,6 @@ __metadata: 929 937 languageName: node 930 938 linkType: hard 931 939 ··· 941 949 "comma-separated-tokens@npm:^2.0.0": 942 950 version: 2.0.3 943 951 resolution: "comma-separated-tokens@npm:2.0.3" 944 - @@ -3314,13 +2796,6 @@ __metadata: 952 + @@ -3314,13 +2804,6 @@ __metadata: 945 953 languageName: node 946 954 linkType: hard 947 955 ··· 955 963 "commander@npm:^4.0.0": 956 964 version: 4.1.1 957 965 resolution: "commander@npm:4.1.1" 958 - @@ -3335,25 +2810,6 @@ __metadata: 966 + @@ -3335,25 +2818,6 @@ __metadata: 959 967 languageName: node 960 968 linkType: hard 961 969 ··· 981 989 "concat-map@npm:0.0.1": 982 990 version: 0.0.1 983 991 resolution: "concat-map@npm:0.0.1" 984 - @@ -3433,25 +2889,6 @@ __metadata: 992 + @@ -3433,25 +2897,6 @@ __metadata: 985 993 languageName: node 986 994 linkType: hard 987 995 ··· 1007 1015 "cross-env@npm:^7.0.3": 1008 1016 version: 7.0.3 1009 1017 resolution: "cross-env@npm:7.0.3" 1010 - @@ -3464,17 +2901,6 @@ __metadata: 1018 + @@ -3464,17 +2909,6 @@ __metadata: 1011 1019 languageName: node 1012 1020 linkType: hard 1013 1021 ··· 1025 1033 "cross-spawn@npm:^6.0.5": 1026 1034 version: 6.0.5 1027 1035 resolution: "cross-spawn@npm:6.0.5" 1028 - @@ -3488,10 +2914,14 @@ __metadata: 1036 + @@ -3488,10 +2922,14 @@ __metadata: 1029 1037 languageName: node 1030 1038 linkType: hard 1031 1039 ··· 1044 1052 languageName: node 1045 1053 linkType: hard 1046 1054 1047 - @@ -3616,7 +3046,7 @@ __metadata: 1055 + @@ -3616,7 +3054,7 @@ __metadata: 1048 1056 languageName: node 1049 1057 linkType: hard 1050 1058 ··· 1053 1061 version: 4.3.4 1054 1062 resolution: "debug@npm:4.3.4" 1055 1063 dependencies: 1056 - @@ -3712,16 +3142,7 @@ __metadata: 1064 + @@ -3712,16 +3150,7 @@ __metadata: 1057 1065 languageName: node 1058 1066 linkType: hard 1059 1067 ··· 1071 1079 version: 1.1.1 1072 1080 resolution: "define-data-property@npm:1.1.1" 1073 1081 dependencies: 1074 - @@ -3732,13 +3153,6 @@ __metadata: 1082 + @@ -3732,13 +3161,6 @@ __metadata: 1075 1083 languageName: node 1076 1084 linkType: hard 1077 1085 ··· 1085 1093 "define-lazy-prop@npm:^3.0.0": 1086 1094 version: 3.0.0 1087 1095 resolution: "define-lazy-prop@npm:3.0.0" 1088 - @@ -3757,29 +3171,6 @@ __metadata: 1096 + @@ -3757,29 +3179,6 @@ __metadata: 1089 1097 languageName: node 1090 1098 linkType: hard 1091 1099 ··· 1115 1123 "delegates@npm:^1.0.0": 1116 1124 version: 1.0.0 1117 1125 resolution: "delegates@npm:1.0.0" 1118 - @@ -3787,13 +3178,6 @@ __metadata: 1126 + @@ -3787,13 +3186,6 @@ __metadata: 1119 1127 languageName: node 1120 1128 linkType: hard 1121 1129 ··· 1129 1137 "dequal@npm:^2.0.0, dequal@npm:^2.0.3": 1130 1138 version: 2.0.3 1131 1139 resolution: "dequal@npm:2.0.3" 1132 - @@ -3929,13 +3313,6 @@ __metadata: 1140 + @@ -3929,13 +3321,6 @@ __metadata: 1133 1141 languageName: node 1134 1142 linkType: hard 1135 1143 ··· 1143 1151 "dotenv@npm:^16.3.1": 1144 1152 version: 16.3.1 1145 1153 resolution: "dotenv@npm:16.3.1" 1146 - @@ -3959,15 +3336,6 @@ __metadata: 1154 + @@ -3959,15 +3344,6 @@ __metadata: 1147 1155 languageName: node 1148 1156 linkType: hard 1149 1157 ··· 1159 1167 "emoji-regex@npm:^8.0.0": 1160 1168 version: 8.0.0 1161 1169 resolution: "emoji-regex@npm:8.0.0" 1162 - @@ -4031,7 +3399,7 @@ __metadata: 1170 + @@ -4031,7 +3407,7 @@ __metadata: 1163 1171 languageName: node 1164 1172 linkType: hard 1165 1173 ··· 1168 1176 version: 2.2.1 1169 1177 resolution: "env-paths@npm:2.2.1" 1170 1178 checksum: 65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e 1171 - @@ -4101,22 +3469,6 @@ __metadata: 1179 + @@ -4101,22 +3477,6 @@ __metadata: 1172 1180 languageName: node 1173 1181 linkType: hard 1174 1182 ··· 1191 1199 "es-iterator-helpers@npm:^1.0.12, es-iterator-helpers@npm:^1.0.15": 1192 1200 version: 1.0.15 1193 1201 resolution: "es-iterator-helpers@npm:1.0.15" 1194 - @@ -4247,13 +3599,6 @@ __metadata: 1202 + @@ -4247,13 +3607,6 @@ __metadata: 1195 1203 languageName: node 1196 1204 linkType: hard 1197 1205 ··· 1205 1213 "escape-string-regexp@npm:^1.0.5": 1206 1214 version: 1.0.5 1207 1215 resolution: "escape-string-regexp@npm:1.0.5" 1208 - @@ -4261,10 +3606,10 @@ __metadata: 1216 + @@ -4261,10 +3614,10 @@ __metadata: 1209 1217 languageName: node 1210 1218 linkType: hard 1211 1219 ··· 1220 1228 languageName: node 1221 1229 linkType: hard 1222 1230 1223 - @@ -4601,14 +3946,14 @@ __metadata: 1231 + @@ -4601,14 +3954,14 @@ __metadata: 1224 1232 languageName: node 1225 1233 linkType: hard 1226 1234 ··· 1237 1245 version: 5.1.1 1238 1246 resolution: "execa@npm:5.1.1" 1239 1247 dependencies: 1240 - @@ -4908,17 +4253,6 @@ __metadata: 1248 + @@ -4908,17 +4261,6 @@ __metadata: 1241 1249 languageName: node 1242 1250 linkType: hard 1243 1251 ··· 1255 1263 "find-my-way@npm:^7.7.0": 1256 1264 version: 7.7.0 1257 1265 resolution: "find-my-way@npm:7.7.0" 1258 - @@ -4937,26 +4271,7 @@ __metadata: 1266 + @@ -4937,26 +4279,7 @@ __metadata: 1259 1267 languageName: node 1260 1268 linkType: hard 1261 1269 ··· 1283 1291 version: 4.1.0 1284 1292 resolution: "find-up@npm:4.1.0" 1285 1293 dependencies: 1286 - @@ -4966,6 +4281,16 @@ __metadata: 1294 + @@ -4966,6 +4289,16 @@ __metadata: 1287 1295 languageName: node 1288 1296 linkType: hard 1289 1297 ··· 1300 1308 "flat-cache@npm:^3.0.4": 1301 1309 version: 3.1.1 1302 1310 resolution: "flat-cache@npm:3.1.1" 1303 - @@ -5003,17 +4328,6 @@ __metadata: 1311 + @@ -5003,17 +4336,6 @@ __metadata: 1304 1312 languageName: node 1305 1313 linkType: hard 1306 1314 ··· 1318 1326 "forwarded@npm:0.2.0": 1319 1327 version: 0.2.0 1320 1328 resolution: "forwarded@npm:0.2.0" 1321 - @@ -5021,13 +4335,6 @@ __metadata: 1329 + @@ -5021,13 +4343,6 @@ __metadata: 1322 1330 languageName: node 1323 1331 linkType: hard 1324 1332 ··· 1332 1340 "fs-constants@npm:^1.0.0": 1333 1341 version: 1.0.0 1334 1342 resolution: "fs-constants@npm:1.0.0" 1335 - @@ -5046,15 +4353,6 @@ __metadata: 1343 + @@ -5046,15 +4361,6 @@ __metadata: 1336 1344 languageName: node 1337 1345 linkType: hard 1338 1346 ··· 1348 1356 "fs-minipass@npm:^2.0.0": 1349 1357 version: 2.1.0 1350 1358 resolution: "fs-minipass@npm:2.1.0" 1351 - @@ -5080,7 +4378,7 @@ __metadata: 1359 + @@ -5080,7 +4386,7 @@ __metadata: 1352 1360 languageName: node 1353 1361 linkType: hard 1354 1362 ··· 1357 1365 version: 2.3.3 1358 1366 resolution: "fsevents@npm:2.3.3" 1359 1367 dependencies: 1360 - @@ -5090,7 +4388,7 @@ __metadata: 1368 + @@ -5090,7 +4396,7 @@ __metadata: 1361 1369 languageName: node 1362 1370 linkType: hard 1363 1371 ··· 1366 1374 version: 2.3.3 1367 1375 resolution: "fsevents@patch:fsevents@npm%3A2.3.3#~builtin<compat/fsevents>::version=2.3.3&hash=df0bf1" 1368 1376 dependencies: 1369 - @@ -5168,13 +4466,6 @@ __metadata: 1377 + @@ -5168,13 +4474,6 @@ __metadata: 1370 1378 languageName: node 1371 1379 linkType: hard 1372 1380 ··· 1380 1388 "get-stream@npm:^6.0.0, get-stream@npm:^6.0.1": 1381 1389 version: 6.0.1 1382 1390 resolution: "get-stream@npm:6.0.1" 1383 - @@ -5290,28 +4581,6 @@ __metadata: 1391 + @@ -5290,28 +4589,6 @@ __metadata: 1384 1392 languageName: node 1385 1393 linkType: hard 1386 1394 ··· 1409 1417 "globals@npm:^13.19.0": 1410 1418 version: 13.23.0 1411 1419 resolution: "globals@npm:13.23.0" 1412 - @@ -5330,7 +4599,7 @@ __metadata: 1420 + @@ -5330,7 +4607,7 @@ __metadata: 1413 1421 languageName: node 1414 1422 linkType: hard 1415 1423 ··· 1418 1426 version: 11.1.0 1419 1427 resolution: "globby@npm:11.1.0" 1420 1428 dependencies: 1421 - @@ -5434,23 +4703,6 @@ __metadata: 1429 + @@ -5434,23 +4711,6 @@ __metadata: 1422 1430 languageName: node 1423 1431 linkType: hard 1424 1432 ··· 1442 1450 "hasown@npm:^2.0.0": 1443 1451 version: 2.0.0 1444 1452 resolution: "hasown@npm:2.0.0" 1445 - @@ -5550,7 +4802,7 @@ __metadata: 1453 + @@ -5550,7 +4810,7 @@ __metadata: 1446 1454 languageName: node 1447 1455 linkType: hard 1448 1456 ··· 1451 1459 version: 7.0.0 1452 1460 resolution: "http-proxy-agent@npm:7.0.0" 1453 1461 dependencies: 1454 - @@ -5560,17 +4812,6 @@ __metadata: 1462 + @@ -5560,17 +4820,6 @@ __metadata: 1455 1463 languageName: node 1456 1464 linkType: hard 1457 1465 ··· 1469 1477 "http-response-object@npm:^3.0.1": 1470 1478 version: 3.0.2 1471 1479 resolution: "http-response-object@npm:3.0.2" 1472 - @@ -5580,16 +4821,6 @@ __metadata: 1480 + @@ -5580,16 +4829,6 @@ __metadata: 1473 1481 languageName: node 1474 1482 linkType: hard 1475 1483 ··· 1486 1494 "https-proxy-agent@npm:^5.0.0": 1487 1495 version: 5.0.1 1488 1496 resolution: "https-proxy-agent@npm:5.0.1" 1489 - @@ -5600,6 +4831,16 @@ __metadata: 1497 + @@ -5600,6 +4839,16 @@ __metadata: 1490 1498 languageName: node 1491 1499 linkType: hard 1492 1500 ··· 1503 1511 "human-signals@npm:^2.1.0": 1504 1512 version: 2.1.0 1505 1513 resolution: "human-signals@npm:2.1.0" 1506 - @@ -5614,7 +4855,7 @@ __metadata: 1514 + @@ -5614,7 +4863,7 @@ __metadata: 1507 1515 languageName: node 1508 1516 linkType: hard 1509 1517 ··· 1512 1520 version: 0.6.3 1513 1521 resolution: "iconv-lite@npm:0.6.3" 1514 1522 dependencies: 1515 - @@ -5630,15 +4871,6 @@ __metadata: 1523 + @@ -5630,15 +4879,6 @@ __metadata: 1516 1524 languageName: node 1517 1525 linkType: hard 1518 1526 ··· 1528 1536 "ignore@npm:^5.2.0": 1529 1537 version: 5.2.4 1530 1538 resolution: "ignore@npm:5.2.4" 1531 - @@ -5670,7 +4902,7 @@ __metadata: 1539 + @@ -5670,7 +4910,7 @@ __metadata: 1532 1540 languageName: node 1533 1541 linkType: hard 1534 1542 ··· 1537 1545 version: 4.0.0 1538 1546 resolution: "indent-string@npm:4.0.0" 1539 1547 checksum: 824cfb9929d031dabf059bebfe08cf3137365e112019086ed3dcff6a0a7b698cb80cf67ccccde0e25b9e2d7527aa6cc1fed1ac490c752162496caba3e6699612 1540 - @@ -5694,13 +4926,6 @@ __metadata: 1548 + @@ -5694,13 +4934,6 @@ __metadata: 1541 1549 languageName: node 1542 1550 linkType: hard 1543 1551 ··· 1551 1559 "ini@npm:~1.3.0": 1552 1560 version: 1.3.8 1553 1561 resolution: "ini@npm:1.3.8" 1554 - @@ -5867,7 +5092,7 @@ __metadata: 1562 + @@ -5867,7 +5100,7 @@ __metadata: 1555 1563 languageName: node 1556 1564 linkType: hard 1557 1565 ··· 1560 1568 version: 2.2.1 1561 1569 resolution: "is-docker@npm:2.2.1" 1562 1570 bin: 1563 - @@ -5937,13 +5162,6 @@ __metadata: 1571 + @@ -5937,13 +5170,6 @@ __metadata: 1564 1572 languageName: node 1565 1573 linkType: hard 1566 1574 ··· 1574 1582 "is-lambda@npm:^1.0.1": 1575 1583 version: 1.0.1 1576 1584 resolution: "is-lambda@npm:1.0.1" 1577 - @@ -5981,14 +5199,7 @@ __metadata: 1585 + @@ -5981,14 +5207,7 @@ __metadata: 1578 1586 languageName: node 1579 1587 linkType: hard 1580 1588 ··· 1590 1598 version: 3.0.3 1591 1599 resolution: "is-path-inside@npm:3.0.3" 1592 1600 checksum: abd50f06186a052b349c15e55b182326f1936c89a78bf6c8f2b707412517c097ce04bc49a0ca221787bc44e1049f51f09a2ffb63d22899051988d3a618ba13e9 1593 - @@ -6069,13 +5280,6 @@ __metadata: 1601 + @@ -6069,13 +5288,6 @@ __metadata: 1594 1602 languageName: node 1595 1603 linkType: hard 1596 1604 ··· 1604 1612 "is-weakmap@npm:^2.0.1": 1605 1613 version: 2.0.1 1606 1614 resolution: "is-weakmap@npm:2.0.1" 1607 - @@ -6102,14 +5306,7 @@ __metadata: 1615 + @@ -6102,14 +5314,7 @@ __metadata: 1608 1616 languageName: node 1609 1617 linkType: hard 1610 1618 ··· 1620 1628 version: 2.2.0 1621 1629 resolution: "is-wsl@npm:2.2.0" 1622 1630 dependencies: 1623 - @@ -6186,13 +5383,6 @@ __metadata: 1631 + @@ -6186,13 +5391,6 @@ __metadata: 1624 1632 languageName: node 1625 1633 linkType: hard 1626 1634 ··· 1634 1642 "js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": 1635 1643 version: 4.0.0 1636 1644 resolution: "js-tokens@npm:4.0.0" 1637 - @@ -6211,13 +5401,6 @@ __metadata: 1645 + @@ -6211,13 +5409,6 @@ __metadata: 1638 1646 languageName: node 1639 1647 linkType: hard 1640 1648 ··· 1648 1656 "json-buffer@npm:3.0.1": 1649 1657 version: 3.0.1 1650 1658 resolution: "json-buffer@npm:3.0.1" 1651 - @@ -6300,24 +5483,6 @@ __metadata: 1659 + @@ -6300,24 +5491,6 @@ __metadata: 1652 1660 languageName: node 1653 1661 linkType: hard 1654 1662 ··· 1673 1681 "jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.5": 1674 1682 version: 3.3.5 1675 1683 resolution: "jsx-ast-utils@npm:3.3.5" 1676 - @@ -6330,55 +5495,6 @@ __metadata: 1684 + @@ -6330,55 +5503,6 @@ __metadata: 1677 1685 languageName: node 1678 1686 linkType: hard 1679 1687 ··· 1729 1737 "katex@npm:^0.16.9": 1730 1738 version: 0.16.9 1731 1739 resolution: "katex@npm:0.16.9" 1732 - @@ -6399,13 +5515,6 @@ __metadata: 1740 + @@ -6399,13 +5523,6 @@ __metadata: 1733 1741 languageName: node 1734 1742 linkType: hard 1735 1743 ··· 1743 1751 "kleur@npm:^3.0.3": 1744 1752 version: 3.0.3 1745 1753 resolution: "kleur@npm:3.0.3" 1746 - @@ -6413,6 +5522,13 @@ __metadata: 1754 + @@ -6413,6 +5530,13 @@ __metadata: 1747 1755 languageName: node 1748 1756 linkType: hard 1749 1757 ··· 1757 1765 "klona@npm:^2.0.5": 1758 1766 version: 2.0.6 1759 1767 resolution: "klona@npm:2.0.6" 1760 - @@ -6436,15 +5552,6 @@ __metadata: 1768 + @@ -6436,15 +5560,6 @@ __metadata: 1761 1769 languageName: node 1762 1770 linkType: hard 1763 1771 ··· 1773 1781 "levn@npm:^0.4.1": 1774 1782 version: 0.4.1 1775 1783 resolution: "levn@npm:0.4.1" 1776 - @@ -6499,16 +5606,6 @@ __metadata: 1784 + @@ -6499,16 +5614,6 @@ __metadata: 1777 1785 languageName: node 1778 1786 linkType: hard 1779 1787 ··· 1790 1798 "locate-path@npm:^5.0.0": 1791 1799 version: 5.0.0 1792 1800 resolution: "locate-path@npm:5.0.0" 1793 - @@ -6527,55 +5624,6 @@ __metadata: 1801 + @@ -6527,55 +5632,6 @@ __metadata: 1794 1802 languageName: node 1795 1803 linkType: hard 1796 1804 ··· 1846 1854 "lodash.merge@npm:^4.6.2": 1847 1855 version: 4.6.2 1848 1856 resolution: "lodash.merge@npm:4.6.2" 1849 - @@ -6583,13 +5631,6 @@ __metadata: 1857 + @@ -6583,13 +5639,6 @@ __metadata: 1850 1858 languageName: node 1851 1859 linkType: hard 1852 1860 ··· 1860 1868 "lodash.sortby@npm:^4.7.0": 1861 1869 version: 4.7.0 1862 1870 resolution: "lodash.sortby@npm:4.7.0" 1863 - @@ -6597,35 +5638,13 @@ __metadata: 1871 + @@ -6597,35 +5646,13 @@ __metadata: 1864 1872 languageName: node 1865 1873 linkType: hard 1866 1874 ··· 1897 1905 "longest-streak@npm:^3.0.0": 1898 1906 version: 3.1.0 1899 1907 resolution: "longest-streak@npm:3.1.0" 1900 - @@ -6669,16 +5688,7 @@ __metadata: 1908 + @@ -6669,16 +5696,7 @@ __metadata: 1901 1909 languageName: node 1902 1910 linkType: hard 1903 1911 ··· 1915 1923 version: 3.1.0 1916 1924 resolution: "make-dir@npm:3.1.0" 1917 1925 dependencies: 1918 - @@ -6717,19 +5727,6 @@ __metadata: 1926 + @@ -6717,19 +5735,6 @@ __metadata: 1919 1927 languageName: node 1920 1928 linkType: hard 1921 1929 ··· 1935 1943 "markdown-table@npm:^3.0.0": 1936 1944 version: 3.0.3 1937 1945 resolution: "markdown-table@npm:3.0.3" 1938 - @@ -6944,13 +5941,6 @@ __metadata: 1946 + @@ -6944,13 +5949,6 @@ __metadata: 1939 1947 languageName: node 1940 1948 linkType: hard 1941 1949 ··· 1949 1957 "memorystream@npm:^0.3.1": 1950 1958 version: 0.3.1 1951 1959 resolution: "memorystream@npm:0.3.1" 1952 - @@ -7554,7 +6544,7 @@ __metadata: 1960 + @@ -7554,7 +6552,7 @@ __metadata: 1953 1961 languageName: node 1954 1962 linkType: hard 1955 1963 ··· 1958 1966 version: 2.1.35 1959 1967 resolution: "mime-types@npm:2.1.35" 1960 1968 dependencies: 1961 - @@ -7584,13 +6574,6 @@ __metadata: 1969 + @@ -7584,13 +6582,6 @@ __metadata: 1962 1970 languageName: node 1963 1971 linkType: hard 1964 1972 ··· 1972 1980 "minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": 1973 1981 version: 3.1.2 1974 1982 resolution: "minimatch@npm:3.1.2" 1975 - @@ -7600,15 +6583,6 @@ __metadata: 1983 + @@ -7600,15 +6591,6 @@ __metadata: 1976 1984 languageName: node 1977 1985 linkType: hard 1978 1986 ··· 1988 1996 "minimatch@npm:^9.0.1": 1989 1997 version: 9.0.3 1990 1998 resolution: "minimatch@npm:9.0.3" 1991 - @@ -7758,81 +6732,6 @@ __metadata: 1999 + @@ -7758,81 +6740,6 @@ __metadata: 1992 2000 languageName: node 1993 2001 linkType: hard 1994 2002 ··· 2070 2078 "mri@npm:^1.1.0": 2071 2079 version: 1.2.0 2072 2080 resolution: "mri@npm:1.2.0" 2073 - @@ -7847,7 +6746,7 @@ __metadata: 2081 + @@ -7847,7 +6754,7 @@ __metadata: 2074 2082 languageName: node 2075 2083 linkType: hard 2076 2084 ··· 2079 2087 version: 2.1.3 2080 2088 resolution: "ms@npm:2.1.3" 2081 2089 checksum: aa92de608021b242401676e35cfa5aa42dd70cbdc082b916da7fb925c542173e36bce97ea3e804923fe92c0ad991434e4a38327e15a1b5b5f945d66df615ae6d 2082 - @@ -7861,22 +6760,6 @@ __metadata: 2090 + @@ -7861,22 +6768,6 @@ __metadata: 2083 2091 languageName: node 2084 2092 linkType: hard 2085 2093 ··· 2102 2110 "multer@npm:^1.4.5-lts.1": 2103 2111 version: 1.4.5-lts.1 2104 2112 resolution: "multer@npm:1.4.5-lts.1" 2105 - @@ -7929,13 +6812,6 @@ __metadata: 2113 + @@ -7929,13 +6820,6 @@ __metadata: 2106 2114 languageName: node 2107 2115 linkType: hard 2108 2116 ··· 2116 2124 "natural-compare@npm:^1.4.0": 2117 2125 version: 1.4.0 2118 2126 resolution: "natural-compare@npm:1.4.0" 2119 - @@ -7950,13 +6826,6 @@ __metadata: 2127 + @@ -7950,13 +6834,6 @@ __metadata: 2120 2128 languageName: node 2121 2129 linkType: hard 2122 2130 ··· 2130 2138 "next@npm:^14.0.3": 2131 2139 version: 14.0.3 2132 2140 resolution: "next@npm:14.0.3" 2133 - @@ -8028,13 +6897,6 @@ __metadata: 2141 + @@ -8028,13 +6905,6 @@ __metadata: 2134 2142 languageName: node 2135 2143 linkType: hard 2136 2144 ··· 2144 2152 "node-addon-api@npm:^6.1.0": 2145 2153 version: 6.1.0 2146 2154 resolution: "node-addon-api@npm:6.1.0" 2147 - @@ -8053,21 +6915,7 @@ __metadata: 2155 + @@ -8053,21 +6923,7 @@ __metadata: 2148 2156 languageName: node 2149 2157 linkType: hard 2150 2158 ··· 2167 2175 version: 2.7.0 2168 2176 resolution: "node-fetch@npm:2.7.0" 2169 2177 dependencies: 2170 - @@ -8123,7 +6971,7 @@ __metadata: 2178 + @@ -8123,7 +6979,7 @@ __metadata: 2171 2179 languageName: node 2172 2180 linkType: hard 2173 2181 ··· 2176 2184 version: 2.5.0 2177 2185 resolution: "normalize-package-data@npm:2.5.0" 2178 2186 dependencies: 2179 - @@ -8142,36 +6990,6 @@ __metadata: 2187 + @@ -8142,36 +6998,6 @@ __metadata: 2180 2188 languageName: node 2181 2189 linkType: hard 2182 2190 ··· 2213 2221 "npm-run-all@npm:^4.1.5": 2214 2222 version: 4.1.5 2215 2223 resolution: "npm-run-all@npm:4.1.5" 2216 - @@ -8334,7 +7152,7 @@ __metadata: 2224 + @@ -8334,7 +7160,7 @@ __metadata: 2217 2225 languageName: node 2218 2226 linkType: hard 2219 2227 ··· 2222 2230 version: 5.1.2 2223 2231 resolution: "onetime@npm:5.1.2" 2224 2232 dependencies: 2225 - @@ -8352,27 +7170,6 @@ __metadata: 2233 + @@ -8352,27 +7178,6 @@ __metadata: 2226 2234 languageName: node 2227 2235 linkType: hard 2228 2236 ··· 2250 2258 "open@npm:^9.1.0": 2251 2259 version: 9.1.0 2252 2260 resolution: "open@npm:9.1.0" 2253 - @@ -8399,23 +7196,6 @@ __metadata: 2261 + @@ -8399,23 +7204,6 @@ __metadata: 2254 2262 languageName: node 2255 2263 linkType: hard 2256 2264 ··· 2274 2282 "otplib@npm:^12.0.1": 2275 2283 version: 12.0.1 2276 2284 resolution: "otplib@npm:12.0.1" 2277 - @@ -8427,16 +7207,7 @@ __metadata: 2285 + @@ -8427,16 +7215,7 @@ __metadata: 2278 2286 languageName: node 2279 2287 linkType: hard 2280 2288 ··· 2292 2300 version: 2.3.0 2293 2301 resolution: "p-limit@npm:2.3.0" 2294 2302 dependencies: 2295 - @@ -8454,15 +7225,6 @@ __metadata: 2303 + @@ -8454,15 +7233,6 @@ __metadata: 2296 2304 languageName: node 2297 2305 linkType: hard 2298 2306 ··· 2308 2316 "p-locate@npm:^4.1.0": 2309 2317 version: 4.1.0 2310 2318 resolution: "p-locate@npm:4.1.0" 2311 - @@ -8481,7 +7243,7 @@ __metadata: 2319 + @@ -8481,7 +7251,7 @@ __metadata: 2312 2320 languageName: node 2313 2321 linkType: hard 2314 2322 ··· 2317 2325 version: 4.0.0 2318 2326 resolution: "p-map@npm:4.0.0" 2319 2327 dependencies: 2320 - @@ -8490,23 +7252,6 @@ __metadata: 2328 + @@ -8490,23 +7260,6 @@ __metadata: 2321 2329 languageName: node 2322 2330 linkType: hard 2323 2331 ··· 2341 2349 "p-try@npm:^2.0.0": 2342 2350 version: 2.2.0 2343 2351 resolution: "p-try@npm:2.2.0" 2344 - @@ -8514,13 +7259,6 @@ __metadata: 2352 + @@ -8514,13 +7267,6 @@ __metadata: 2345 2353 languageName: node 2346 2354 linkType: hard 2347 2355 ··· 2355 2363 "parent-module@npm:^1.0.0": 2356 2364 version: 1.0.1 2357 2365 resolution: "parent-module@npm:1.0.1" 2358 - @@ -8559,13 +7297,6 @@ __metadata: 2366 + @@ -8559,13 +7305,6 @@ __metadata: 2359 2367 languageName: node 2360 2368 linkType: hard 2361 2369 ··· 2369 2377 "path-exists@npm:^4.0.0": 2370 2378 version: 4.0.0 2371 2379 resolution: "path-exists@npm:4.0.0" 2372 - @@ -8634,89 +7365,6 @@ __metadata: 2380 + @@ -8634,89 +7373,6 @@ __metadata: 2373 2381 languageName: node 2374 2382 linkType: hard 2375 2383 ··· 2459 2467 "picocolors@npm:^1.0.0": 2460 2468 version: 1.0.0 2461 2469 resolution: "picocolors@npm:1.0.0" 2462 - @@ -8792,24 +7440,6 @@ __metadata: 2470 + @@ -8792,24 +7448,6 @@ __metadata: 2463 2471 languageName: node 2464 2472 linkType: hard 2465 2473 ··· 2484 2492 "pngjs@npm:^5.0.0": 2485 2493 version: 5.0.0 2486 2494 resolution: "pngjs@npm:5.0.0" 2487 - @@ -8846,36 +7476,6 @@ __metadata: 2495 + @@ -8846,36 +7484,6 @@ __metadata: 2488 2496 languageName: node 2489 2497 linkType: hard 2490 2498 ··· 2521 2529 "prebuild-install@npm:^7.1.1": 2522 2530 version: 7.1.1 2523 2531 resolution: "prebuild-install@npm:7.1.1" 2524 - @@ -8932,14 +7532,18 @@ __metadata: 2532 + @@ -8932,14 +7540,23 @@ __metadata: 2525 2533 languageName: node 2526 2534 linkType: hard 2527 2535 2528 2536 -"prisma@npm:^5.1.1": 2529 2537 - version: 5.6.0 2530 2538 - resolution: "prisma@npm:5.6.0" 2531 - +"prisma@npm:6.0.1": 2532 - + version: 6.0.1 2533 - + resolution: "prisma@npm:6.0.1" 2539 + +"prisma@npm:6.3.0": 2540 + + version: 6.3.0 2541 + + resolution: "prisma@npm:6.3.0" 2534 2542 dependencies: 2535 2543 - "@prisma/engines": 5.6.0 2536 - + "@prisma/engines": 6.0.1 2544 + + "@prisma/engines": 6.3.0 2537 2545 + fsevents: 2.3.3 2546 + + peerDependencies: 2547 + + typescript: ">=5.1.0" 2538 2548 + dependenciesMeta: 2539 2549 + fsevents: 2540 2550 + optional: true 2551 + + peerDependenciesMeta: 2552 + + typescript: 2553 + + optional: true 2541 2554 bin: 2542 2555 prisma: build/index.js 2543 2556 - checksum: 77b80b89a771c6c218172cfc5b692e65755ba76ec5b6487ea3ac5b5fa05aea47c48a11cb9449517c4bc4770c3737d02fe3db576bd54c6e32fcf39f08607b546e 2544 - + checksum: 8c3527e53ee81820d1919bc00dcd5344fe5b01cb8a1d6227a3565f5e82a53de9c1a5cec4db617cf3a01adc0f70fb07ce83857023aac9b023abd7200c8f0fb3c5 2557 + + checksum: c34150214b801f8a2783aee596687f9ab26b01b2fbcb441c8e745d090c9fbd98374ee507608032002c17cfaad415d3b0247af16a0953ef9731de6e8f6b9ddd92 2545 2558 languageName: node 2546 2559 linkType: hard 2547 2560 2548 - @@ -8978,7 +7582,7 @@ __metadata: 2561 + @@ -8978,7 +7595,7 @@ __metadata: 2549 2562 languageName: node 2550 2563 linkType: hard 2551 2564 ··· 2554 2567 version: 2.0.3 2555 2568 resolution: "progress@npm:2.0.3" 2556 2569 checksum: f67403fe7b34912148d9252cb7481266a354bd99ce82c835f79070643bb3c6583d10dbcfda4d41e04bbc1d8437e9af0fb1e1f2135727878f5308682a579429b7 2557 - @@ -9043,7 +7647,7 @@ __metadata: 2570 + @@ -9043,7 +7660,7 @@ __metadata: 2558 2571 languageName: node 2559 2572 linkType: hard 2560 2573 ··· 2563 2576 version: 2.3.1 2564 2577 resolution: "punycode@npm:2.3.1" 2565 2578 checksum: bb0a0ceedca4c3c57a9b981b90601579058903c62be23c5e8e843d2c2d4148a3ecf029d5133486fb0e1822b098ba8bba09e89d6b21742d02fa26bda6441a6fb2 2566 - @@ -9308,17 +7912,6 @@ __metadata: 2579 + @@ -9308,17 +7925,6 @@ __metadata: 2567 2580 languageName: node 2568 2581 linkType: hard 2569 2582 ··· 2581 2594 "read-pkg@npm:^3.0.0": 2582 2595 version: 3.0.0 2583 2596 resolution: "read-pkg@npm:3.0.0" 2584 - @@ -9330,18 +7923,6 @@ __metadata: 2597 + @@ -9330,18 +7936,6 @@ __metadata: 2585 2598 languageName: node 2586 2599 linkType: hard 2587 2600 ··· 2600 2613 "readable-stream@npm:3, readable-stream@npm:^3.0.2, readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0": 2601 2614 version: 3.6.2 2602 2615 resolution: "readable-stream@npm:3.6.2" 2603 - @@ -9353,7 +7934,7 @@ __metadata: 2616 + @@ -9353,7 +7947,7 @@ __metadata: 2604 2617 languageName: node 2605 2618 linkType: hard 2606 2619 ··· 2609 2622 version: 2.3.8 2610 2623 resolution: "readable-stream@npm:2.3.8" 2611 2624 dependencies: 2612 - @@ -9368,7 +7949,7 @@ __metadata: 2625 + @@ -9368,7 +7962,7 @@ __metadata: 2613 2626 languageName: node 2614 2627 linkType: hard 2615 2628 ··· 2618 2631 version: 4.4.2 2619 2632 resolution: "readable-stream@npm:4.4.2" 2620 2633 dependencies: 2621 - @@ -9393,15 +7974,6 @@ __metadata: 2634 + @@ -9393,15 +7987,6 @@ __metadata: 2622 2635 languageName: node 2623 2636 linkType: hard 2624 2637 ··· 2634 2647 "readdirp@npm:~3.6.0": 2635 2648 version: 3.6.0 2636 2649 resolution: "readdirp@npm:3.6.0" 2637 - @@ -9555,13 +8127,6 @@ __metadata: 2650 + @@ -9555,13 +8140,6 @@ __metadata: 2638 2651 languageName: node 2639 2652 linkType: hard 2640 2653 ··· 2648 2661 "require-directory@npm:^2.1.1": 2649 2662 version: 2.1.1 2650 2663 resolution: "require-directory@npm:2.1.1" 2651 - @@ -9604,7 +8169,7 @@ __metadata: 2664 + @@ -9604,7 +8182,7 @@ __metadata: 2652 2665 languageName: node 2653 2666 linkType: hard 2654 2667 ··· 2657 2670 version: 1.22.8 2658 2671 resolution: "resolve@npm:1.22.8" 2659 2672 dependencies: 2660 - @@ -9630,7 +8195,7 @@ __metadata: 2673 + @@ -9630,7 +8208,7 @@ __metadata: 2661 2674 languageName: node 2662 2675 linkType: hard 2663 2676 ··· 2666 2679 version: 1.22.8 2667 2680 resolution: "resolve@patch:resolve@npm%3A1.22.8#~builtin<compat/resolve>::version=1.22.8&hash=c3c19d" 2668 2681 dependencies: 2669 - @@ -9656,16 +8221,6 @@ __metadata: 2682 + @@ -9656,16 +8234,6 @@ __metadata: 2670 2683 languageName: node 2671 2684 linkType: hard 2672 2685 ··· 2683 2696 "ret@npm:~0.2.0": 2684 2697 version: 0.2.2 2685 2698 resolution: "ret@npm:0.2.2" 2686 - @@ -9680,13 +8235,6 @@ __metadata: 2699 + @@ -9680,13 +8248,6 @@ __metadata: 2687 2700 languageName: node 2688 2701 linkType: hard 2689 2702 ··· 2697 2710 "reusify@npm:^1.0.4": 2698 2711 version: 1.0.4 2699 2712 resolution: "reusify@npm:1.0.4" 2700 - @@ -9701,7 +8249,7 @@ __metadata: 2713 + @@ -9701,7 +8262,7 @@ __metadata: 2701 2714 languageName: node 2702 2715 linkType: hard 2703 2716 ··· 2706 2719 version: 3.0.2 2707 2720 resolution: "rimraf@npm:3.0.2" 2708 2721 dependencies: 2709 - @@ -9890,7 +8438,7 @@ __metadata: 2722 + @@ -9890,7 +8451,7 @@ __metadata: 2710 2723 languageName: node 2711 2724 linkType: hard 2712 2725 ··· 2715 2728 version: 7.5.4 2716 2729 resolution: "semver@npm:7.5.4" 2717 2730 dependencies: 2718 - @@ -10005,14 +8553,7 @@ __metadata: 2731 + @@ -10005,14 +8566,7 @@ __metadata: 2719 2732 languageName: node 2720 2733 linkType: hard 2721 2734 ··· 2731 2744 version: 3.0.7 2732 2745 resolution: "signal-exit@npm:3.0.7" 2733 2746 checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 2734 - @@ -10067,28 +8608,6 @@ __metadata: 2747 + @@ -10067,28 +8621,6 @@ __metadata: 2735 2748 languageName: node 2736 2749 linkType: hard 2737 2750 ··· 2760 2773 "smart-buffer@npm:^4.2.0": 2761 2774 version: 4.2.0 2762 2775 resolution: "smart-buffer@npm:4.2.0" 2763 - @@ -10156,15 +8675,6 @@ __metadata: 2776 + @@ -10156,15 +8688,6 @@ __metadata: 2764 2777 languageName: node 2765 2778 linkType: hard 2766 2779 ··· 2776 2789 "spdx-correct@npm:^3.0.0": 2777 2790 version: 3.2.0 2778 2791 resolution: "spdx-correct@npm:3.2.0" 2779 - @@ -10206,20 +8716,13 @@ __metadata: 2792 + @@ -10206,20 +8729,13 @@ __metadata: 2780 2793 languageName: node 2781 2794 linkType: hard 2782 2795 ··· 2798 2811 "ssri@npm:^10.0.0": 2799 2812 version: 10.0.5 2800 2813 resolution: "ssri@npm:10.0.5" 2801 - @@ -10229,13 +8732,6 @@ __metadata: 2814 + @@ -10229,13 +8745,6 @@ __metadata: 2802 2815 languageName: node 2803 2816 linkType: hard 2804 2817 ··· 2812 2825 "streamsearch@npm:^1.1.0": 2813 2826 version: 1.1.0 2814 2827 resolution: "streamsearch@npm:1.1.0" 2815 - @@ -10260,7 +8756,7 @@ __metadata: 2828 + @@ -10260,7 +8769,7 @@ __metadata: 2816 2829 languageName: node 2817 2830 linkType: hard 2818 2831 ··· 2821 2834 version: 4.2.3 2822 2835 resolution: "string-width@npm:4.2.3" 2823 2836 dependencies: 2824 - @@ -10368,7 +8864,7 @@ __metadata: 2837 + @@ -10368,7 +8877,7 @@ __metadata: 2825 2838 languageName: node 2826 2839 linkType: hard 2827 2840 ··· 2830 2843 version: 6.0.1 2831 2844 resolution: "strip-ansi@npm:6.0.1" 2832 2845 dependencies: 2833 - @@ -10407,15 +8903,6 @@ __metadata: 2846 + @@ -10407,15 +8916,6 @@ __metadata: 2834 2847 languageName: node 2835 2848 linkType: hard 2836 2849 ··· 2846 2859 "strip-json-comments@npm:^3.1.1": 2847 2860 version: 3.1.1 2848 2861 resolution: "strip-json-comments@npm:3.1.1" 2849 - @@ -10514,7 +9001,7 @@ __metadata: 2862 + @@ -10514,7 +9014,7 @@ __metadata: 2850 2863 languageName: node 2851 2864 linkType: hard 2852 2865 ··· 2855 2868 version: 7.2.0 2856 2869 resolution: "supports-color@npm:7.2.0" 2857 2870 dependencies: 2858 - @@ -10523,16 +9010,6 @@ __metadata: 2871 + @@ -10523,16 +9023,6 @@ __metadata: 2859 2872 languageName: node 2860 2873 linkType: hard 2861 2874 ··· 2872 2885 "supports-preserve-symlinks-flag@npm:^1.0.0": 2873 2886 version: 1.0.0 2874 2887 resolution: "supports-preserve-symlinks-flag@npm:1.0.0" 2875 - @@ -10600,7 +9077,7 @@ __metadata: 2888 + @@ -10600,7 +9090,7 @@ __metadata: 2876 2889 languageName: node 2877 2890 linkType: hard 2878 2891 ··· 2881 2894 version: 3.1.6 2882 2895 resolution: "tar-stream@npm:3.1.6" 2883 2896 dependencies: 2884 - @@ -10625,63 +9102,6 @@ __metadata: 2897 + @@ -10625,63 +9115,6 @@ __metadata: 2885 2898 languageName: node 2886 2899 linkType: hard 2887 2900 ··· 2945 2958 "text-table@npm:^0.2.0": 2946 2959 version: 0.2.0 2947 2960 resolution: "text-table@npm:0.2.0" 2948 - @@ -10763,15 +9183,6 @@ __metadata: 2961 + @@ -10763,15 +9196,6 @@ __metadata: 2949 2962 languageName: node 2950 2963 linkType: hard 2951 2964 ··· 2961 2974 "to-fast-properties@npm:^2.0.0": 2962 2975 version: 2.0.0 2963 2976 resolution: "to-fast-properties@npm:2.0.0" 2964 - @@ -10804,15 +9215,6 @@ __metadata: 2977 + @@ -10804,15 +9228,6 @@ __metadata: 2965 2978 languageName: node 2966 2979 linkType: hard 2967 2980 ··· 2977 2990 "tr46@npm:~0.0.3": 2978 2991 version: 0.0.3 2979 2992 resolution: "tr46@npm:0.0.3" 2980 - @@ -10859,13 +9261,6 @@ __metadata: 2993 + @@ -10859,13 +9274,6 @@ __metadata: 2981 2994 languageName: node 2982 2995 linkType: hard 2983 2996 ··· 2991 3004 "tsconfig-paths@npm:^3.14.2": 2992 3005 version: 3.14.2 2993 3006 resolution: "tsconfig-paths@npm:3.14.2" 2994 - @@ -10878,7 +9273,7 @@ __metadata: 3007 + @@ -10878,7 +9286,7 @@ __metadata: 2995 3008 languageName: node 2996 3009 linkType: hard 2997 3010 ··· 3000 3013 version: 2.6.2 3001 3014 resolution: "tslib@npm:2.6.2" 3002 3015 checksum: 329ea56123005922f39642318e3d1f0f8265d1e7fcb92c633e0809521da75eeaca28d2cf96d7248229deb40e5c19adf408259f4b9640afd20d13aecc1430f3ad 3003 - @@ -10942,13 +9337,6 @@ __metadata: 3016 + @@ -10942,13 +9350,6 @@ __metadata: 3004 3017 languageName: node 3005 3018 linkType: hard 3006 3019 ··· 3014 3027 "type-fest@npm:^0.20.2": 3015 3028 version: 0.20.2 3016 3029 resolution: "type-fest@npm:0.20.2" 3017 - @@ -10956,27 +9344,6 @@ __metadata: 3030 + @@ -10956,27 +9357,6 @@ __metadata: 3018 3031 languageName: node 3019 3032 linkType: hard 3020 3033 ··· 3042 3055 "type-is@npm:^1.6.4": 3043 3056 version: 1.6.18 3044 3057 resolution: "type-is@npm:1.6.18" 3045 - @@ -11128,15 +9495,6 @@ __metadata: 3058 + @@ -11128,15 +9508,6 @@ __metadata: 3046 3059 languageName: node 3047 3060 linkType: hard 3048 3061 ··· 3058 3071 "unist-util-generated@npm:^2.0.0": 3059 3072 version: 2.0.1 3060 3073 resolution: "unist-util-generated@npm:2.0.1" 3061 - @@ -11349,24 +9707,6 @@ __metadata: 3074 + @@ -11349,24 +9720,6 @@ __metadata: 3062 3075 languageName: node 3063 3076 linkType: hard 3064 3077 ··· 3083 3096 "uvu@npm:^0.5.0": 3084 3097 version: 0.5.6 3085 3098 resolution: "uvu@npm:0.5.6" 3086 - @@ -11466,15 +9806,6 @@ __metadata: 3099 + @@ -11466,15 +9819,6 @@ __metadata: 3087 3100 languageName: node 3088 3101 linkType: hard 3089 3102 ··· 3099 3112 "web-encoding@npm:^1.1.5": 3100 3113 version: 1.1.5 3101 3114 resolution: "web-encoding@npm:1.1.5" 3102 - @@ -11502,23 +9833,6 @@ __metadata: 3115 + @@ -11502,23 +9846,6 @@ __metadata: 3103 3116 languageName: node 3104 3117 linkType: hard 3105 3118 ··· 3123 3136 "whatwg-url@npm:^5.0.0": 3124 3137 version: 5.0.0 3125 3138 resolution: "whatwg-url@npm:5.0.0" 3126 - @@ -11791,17 +10105,6 @@ __metadata: 3139 + @@ -11791,17 +10118,6 @@ __metadata: 3127 3140 languageName: node 3128 3141 linkType: hard 3129 3142 ··· 3141 3154 "zipline@workspace:.": 3142 3155 version: 0.0.0-use.local 3143 3156 resolution: "zipline@workspace:." 3144 - @@ -11817,9 +10120,9 @@ __metadata: 3157 + @@ -11817,9 +10133,9 @@ __metadata: 3145 3158 "@mantine/notifications": ^6.0.21 3146 3159 "@mantine/prism": ^6.0.21 3147 3160 "@mantine/spotlight": ^6.0.21 3148 3161 - "@prisma/client": ^5.1.1 3149 3162 - "@prisma/internals": ^5.1.1 3150 3163 - "@prisma/migrate": ^5.1.1 3151 - + "@prisma/client": 6.0.1 3152 - + "@prisma/internals": 6.0.1 3153 - + "@prisma/migrate": 6.0.1 3164 + + "@prisma/client": 6.3.0 3165 + + "@prisma/internals": 6.3.0 3166 + + "@prisma/migrate": 6.3.0 3154 3167 "@sapphire/shapeshift": ^3.9.3 3155 3168 "@tabler/icons-react": ^2.41.0 3156 3169 "@tanstack/react-query": ^4.28.0 3157 - @@ -11859,7 +10162,7 @@ __metadata: 3170 + @@ -11859,7 +10175,7 @@ __metadata: 3158 3171 npm-run-all: ^4.1.5 3159 3172 otplib: ^12.0.1 3160 3173 prettier: ^3.1.0 3161 3174 - prisma: ^5.1.1 3162 - + prisma: 6.0.1 3175 + + prisma: 6.3.0 3163 3176 prismjs: ^1.29.0 3164 3177 qrcode: ^1.5.3 3165 3178 react: ^18.2.0
+1 -1
pkgs/development/libraries/nss/generic.nix
··· 175 175 176 176 postInstall = lib.optionalString useP11kit '' 177 177 # Replace built-in trust with p11-kit connection 178 - ln -sf ${p11-kit}/lib/pkcs11/p11-kit-trust.so $out/lib/libnssckbi.so 178 + ln -sf ${p11-kit}/lib/pkcs11/p11-kit-trust${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/libnssckbi${stdenv.hostPlatform.extensions.sharedLibrary} 179 179 ''; 180 180 181 181 postFixup =
+10 -6
pkgs/development/libraries/science/math/suitesparse/default.nix
··· 13 13 enableCuda ? config.cudaSupport, 14 14 cudaPackages, 15 15 openmp ? null, 16 - }: 16 + }@inputs: 17 17 18 - stdenv.mkDerivation rec { 18 + let 19 + stdenv = throw "Use effectiveStdenv instead"; 20 + effectiveStdenv = if enableCuda then cudaPackages.backendStdenv else inputs.stdenv; 21 + in 22 + effectiveStdenv.mkDerivation rec { 19 23 pname = "suitesparse"; 20 24 version = "5.13.0"; 21 25 ··· 35 39 nativeBuildInputs = 36 40 [ 37 41 ] 38 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 42 + ++ lib.optionals effectiveStdenv.hostPlatform.isDarwin [ 39 43 fixDarwinDylibNames 40 44 ] 41 45 ++ lib.optionals enableCuda [ ··· 53 57 gmp 54 58 mpfr 55 59 ] 56 - ++ lib.optionals stdenv.cc.isClang [ 60 + ++ lib.optionals effectiveStdenv.cc.isClang [ 57 61 openmp 58 62 ] 59 63 ++ lib.optionals enableCuda [ ··· 82 86 "CUDART_LIB=${lib.getLib cudaPackages.cuda_cudart}/lib/libcudart.so" 83 87 "CUBLAS_LIB=${lib.getLib cudaPackages.libcublas}/lib/libcublas.so" 84 88 ] 85 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 89 + ++ lib.optionals effectiveStdenv.hostPlatform.isDarwin [ 86 90 # Unless these are set, the build will attempt to use `Accelerate` on darwin, see: 87 91 # https://github.com/DrTimothyAldenDavis/SuiteSparse/blob/v5.13.0/SuiteSparse_config/SuiteSparse_config.mk#L368 88 92 "BLAS=-lblas" 89 93 "LAPACK=-llapack" 90 94 ]; 91 95 92 - env = lib.optionalAttrs stdenv.hostPlatform.isDarwin { 96 + env = lib.optionalAttrs effectiveStdenv.hostPlatform.isDarwin { 93 97 # Ensure that there is enough space for the `fixDarwinDylibNames` hook to 94 98 # update the install names of the output dylibs. 95 99 NIX_LDFLAGS = "-headerpad_max_install_names";
+2 -2
pkgs/development/python-modules/awscrt/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "awscrt"; 15 - version = "0.23.6"; 15 + version = "0.23.9"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-FMT4E0TseXccmqk4AFlClu5+qknbD7n9FatmKiH634o="; 22 + hash = "sha256-eknHs2t4Yl76gcAvRSVWjobTxI9gavCAhd6oYpdF9jQ="; 23 23 }; 24 24 25 25 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
+44 -11
pkgs/development/python-modules/beanhub-cli/default.nix
··· 4 4 buildPythonPackage, 5 5 pythonOlder, 6 6 pytestCheckHook, 7 + 8 + # dependencies 7 9 beancount-black, 8 10 beancount-parser, 9 11 beanhub-forms, 10 12 beanhub-import, 11 13 click, 12 14 fastapi, 13 - httpx, 14 15 jinja2, 15 16 poetry-core, 17 + pydantic-settings, 16 18 pydantic, 17 - pydantic-core, 18 - pydantic-settings, 19 - pytz, 20 19 pyyaml, 21 20 rich, 22 21 starlette-wtf, 23 22 uvicorn, 23 + 24 + # optional-dependencies 25 + attrs, 26 + cryptography, 27 + httpx, 28 + pynacl, 29 + python-dateutil, 30 + tomli-w, 31 + tomli, 32 + 33 + # tests 34 + pytest, 35 + pytest-asyncio, 36 + pytest-httpx, 37 + pytest-mock, 24 38 }: 25 39 26 40 buildPythonPackage rec { 27 41 pname = "beanhub-cli"; 28 - version = "2.1.0"; 42 + version = "2.1.1"; 29 43 pyproject = true; 30 44 31 45 disabled = pythonOlder "3.10"; ··· 34 48 owner = "LaunchPlatform"; 35 49 repo = "beanhub-cli"; 36 50 tag = version; 37 - hash = "sha256-PRhodc0Pjcgx2xjYlBI47JsQ0oLX6hrVLyE58LHoxSw="; 51 + hash = "sha256-mGLg6Kgur2LAcujFzO/rkSPAC2t3wR5CO2AeOO0+bFI="; 38 52 }; 39 53 40 54 build-system = [ poetry-core ]; ··· 48 62 fastapi 49 63 jinja2 50 64 pydantic 51 - pydantic-core 52 65 pydantic-settings 53 - pytz 54 66 pyyaml 55 67 rich 56 68 starlette-wtf 57 69 uvicorn 58 - ]; 70 + ] ++ lib.flatten (lib.attrValues optional-dependencies); 71 + 72 + optional-dependencies = rec { 73 + login = [ 74 + attrs 75 + httpx 76 + python-dateutil 77 + tomli 78 + tomli-w 79 + ]; 80 + connect = [ 81 + attrs 82 + cryptography 83 + httpx 84 + pynacl 85 + python-dateutil 86 + tomli 87 + tomli-w 88 + ]; 89 + }; 59 90 60 91 nativeCheckInputs = [ 92 + pytest-asyncio 93 + pytest-httpx 94 + pytest-mock 61 95 pytestCheckHook 62 - httpx 63 - ]; 96 + ] ++ lib.flatten (lib.attrValues optional-dependencies); 64 97 65 98 pythonImportsCheck = [ "beanhub_cli" ]; 66 99
+2 -2
pkgs/development/python-modules/beanhub-extract/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "beanhub-extract"; 15 - version = "0.1.3"; 15 + version = "0.1.5"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.9"; ··· 21 21 owner = "LaunchPlatform"; 22 22 repo = "beanhub-extract"; 23 23 tag = version; 24 - hash = "sha256-Uw9bSVOpiIALkgA77OrqAcDWcEafVSnp4iILa4Jkykc="; 24 + hash = "sha256-L3TM3scBJGlOXXxeJAkiqMkpBmhJZB6b+IQT2DGIfO0="; 25 25 }; 26 26 27 27 build-system = [ poetry-core ];
+38
pkgs/development/python-modules/depyf/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + astor, 6 + dill, 7 + filelock, 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "depyf"; 12 + version = "0.18.0"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-uZ8MODvpSa5F1dYG/kRMcfN1tVpXuNayDnhWZw1SEw0="; 17 + }; 18 + 19 + # don't try to read git commit 20 + postPatch = '' 21 + substituteInPlace setup.py \ 22 + --replace-fail 'commit_id = get_git_commit_id()' 'commit_id = None' 23 + ''; 24 + 25 + propagatedBuildInputs = [ 26 + astor 27 + dill 28 + filelock 29 + ]; 30 + 31 + pythonImportCheck = [ "depyf" ]; 32 + 33 + meta = with lib; { 34 + description = "Decompile python functions, from bytecode to source code"; 35 + homepage = "https://github.com/thuml/depyf"; 36 + license = licenses.mit; 37 + }; 38 + }
+2 -2
pkgs/development/python-modules/gftools/default.nix
··· 61 61 in 62 62 buildPythonPackage rec { 63 63 pname = "gftools"; 64 - version = "0.9.76"; 64 + version = "0.9.77"; 65 65 pyproject = true; 66 66 67 67 src = fetchFromGitHub { 68 68 owner = "googlefonts"; 69 69 repo = "gftools"; 70 70 tag = "v${version}"; 71 - hash = "sha256-UQcQiPStkXKYAy6yK7K8sjkQiABVuqcGllOYyxUjxfA="; 71 + hash = "sha256-j3UeycBq04jy6uKd7HY+wLlmYAbjYbot630qRy/vG60="; 72 72 }; 73 73 74 74 postPatch = ''
+34
pkgs/development/python-modules/lightify/default.nix
··· 1 + { 2 + buildPythonPackage, 3 + fetchFromGitHub, 4 + lib, 5 + setuptools, 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "lightify"; 10 + version = "1.0.7.3"; 11 + pyproject = true; 12 + 13 + src = fetchFromGitHub { 14 + owner = "tfriedel"; 15 + repo = "python-lightify"; 16 + tag = "v${version}"; 17 + hash = "sha256-zgDB1Tq4RYIeABZCjCcoB8NGt+ZhQFnFu655OghgpH0="; 18 + }; 19 + 20 + build-system = [ setuptools ]; 21 + 22 + pythonImportsCheck = [ "lightify" ]; 23 + 24 + # tests access the network 25 + doCheck = false; 26 + 27 + meta = { 28 + changelog = "https://github.com/tfriedel/python-lightify/releases/tag/${src.tag}"; 29 + description = "Library to work with OSRAM Lightify"; 30 + homepage = "https://github.com/tfriedel/python-lightify"; 31 + license = lib.licenses.asl20; 32 + maintainers = with lib.maintainers; [ dotlambda ]; 33 + }; 34 + }
+2 -2
pkgs/development/python-modules/llm/default.nix
··· 22 22 let 23 23 llm = buildPythonPackage rec { 24 24 pname = "llm"; 25 - version = "0.20"; 25 + version = "0.21"; 26 26 pyproject = true; 27 27 28 28 build-system = [ setuptools ]; ··· 33 33 owner = "simonw"; 34 34 repo = "llm"; 35 35 tag = version; 36 - hash = "sha256-nNwhsdix65i19f7JHvSLydDufP7nAUjV1YYQspsHT8s="; 36 + hash = "sha256-gxmhdczgbcvbWJQTy+gek499C/3jm9WL5vKZmaGVWgU="; 37 37 }; 38 38 39 39 patches = [ ./001-disable-install-uninstall-commands.patch ];
+2 -2
pkgs/development/python-modules/manim-slides/default.nix
··· 35 35 }: 36 36 buildPythonPackage rec { 37 37 pname = "manim-slides"; 38 - version = "5.4.0"; 38 + version = "5.4.2"; 39 39 pyproject = true; 40 40 41 41 disabled = pythonOlder "3.9"; ··· 44 44 owner = "jeertmans"; 45 45 repo = "manim-slides"; 46 46 tag = "v${version}"; 47 - hash = "sha256-9BPBjTepb1CdCEk1j471NhndLG5Ai1P81VUV6msQPus="; 47 + hash = "sha256-LUnHv6Yr4le7B0OjA9m8s7tCd2OvUsjX0YR+5dv+Bjg="; 48 48 }; 49 49 50 50 build-system = [
+29 -9
pkgs/development/python-modules/milc/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - appdirs, 6 5 argcomplete, 7 6 colorama, 8 7 halo, 8 + platformdirs, 9 9 spinners, 10 10 types-colorama, 11 - nose2, 11 + typing-extensions, 12 + setuptools, 13 + pytestCheckHook, 12 14 semver, 13 15 }: 14 16 15 17 buildPythonPackage rec { 16 18 pname = "milc"; 17 - version = "1.8.0"; 18 - format = "setuptools"; 19 + version = "1.9.1"; 20 + pyproject = true; 19 21 20 22 src = fetchFromGitHub { 21 23 owner = "clueboard"; 22 24 repo = "milc"; 23 - rev = version; 24 - hash = "sha256-DUA79R/pf/arG4diJKaJTSLNdB4E0XnS4NULlqP4h/M="; 25 + tag = version; 26 + hash = "sha256-byj2mcDxLl7rZEFjAt/g1kHllnVxiTIQaTMG24GeSVc="; 25 27 }; 26 28 27 - propagatedBuildInputs = [ 28 - appdirs 29 + postPatch = '' 30 + # Needed for tests 31 + patchShebangs --build \ 32 + example \ 33 + custom_logger \ 34 + questions \ 35 + sparkline \ 36 + hello \ 37 + passwd_confirm \ 38 + passwd_complexity \ 39 + config_source 40 + ''; 41 + 42 + dependencies = [ 29 43 argcomplete 30 44 colorama 31 45 halo 46 + platformdirs 32 47 spinners 33 48 types-colorama 49 + typing-extensions 50 + ]; 51 + 52 + build-system = [ 53 + setuptools 34 54 ]; 35 55 36 56 nativeCheckInputs = [ 37 - nose2 57 + pytestCheckHook 38 58 semver 39 59 ]; 40 60
+2 -2
pkgs/development/python-modules/msgraph-sdk/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "msgraph-sdk"; 20 - version = "1.17.0"; 20 + version = "1.18.0"; 21 21 pyproject = true; 22 22 23 23 disabled = pythonOlder "3.8"; ··· 26 26 owner = "microsoftgraph"; 27 27 repo = "msgraph-sdk-python"; 28 28 tag = "v${version}"; 29 - hash = "sha256-R6HCZBdpHR58d4leS77MIqLX6LOGFppTcFbidrJSrI8="; 29 + hash = "sha256-qYlBRXYsZ71B33iwdwgjx/NFBRUF4I/0XCnNZePo/+M="; 30 30 }; 31 31 32 32 build-system = [ flit-core ];
+55
pkgs/development/python-modules/nyt-games/default.nix
··· 1 + { 2 + aiohttp, 3 + aioresponses, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + lib, 7 + mashumaro, 8 + orjson, 9 + poetry-core, 10 + pytest-asyncio, 11 + pytest-cov-stub, 12 + pytestCheckHook, 13 + syrupy, 14 + yarl, 15 + }: 16 + 17 + buildPythonPackage rec { 18 + pname = "nyt-games"; 19 + version = "0.4.4"; 20 + pyproject = true; 21 + 22 + src = fetchFromGitHub { 23 + owner = "joostlek"; 24 + repo = "python-nyt-games"; 25 + tag = "v${version}"; 26 + hash = "sha256-eMJ96E4sGmekr6mOR30UIZBclH/0xc8AWv3zL1ItKjo="; 27 + }; 28 + 29 + build-system = [ poetry-core ]; 30 + 31 + dependencies = [ 32 + aiohttp 33 + mashumaro 34 + orjson 35 + yarl 36 + ]; 37 + 38 + pythonImportsCheck = [ "nyt_games" ]; 39 + 40 + nativeCheckInputs = [ 41 + aioresponses 42 + pytest-asyncio 43 + pytest-cov-stub 44 + pytestCheckHook 45 + syrupy 46 + ]; 47 + 48 + meta = { 49 + changelog = "https://github.com/joostlek/python-nyt-games/releases/tag/${src.tag}"; 50 + description = "Asynchronous Python client for NYT games"; 51 + homepage = "https://github.com/joostlek/python-nyt-games"; 52 + license = lib.licenses.mit; 53 + maintainers = with lib.maintainers; [ dotlambda ]; 54 + }; 55 + }
+41
pkgs/development/python-modules/ourgroceries/default.nix
··· 1 + { 2 + aiohttp, 3 + beautifulsoup4, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + lib, 7 + setuptools, 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "ourgroceries"; 12 + version = "1.5.4"; 13 + pyproject = true; 14 + 15 + src = fetchFromGitHub { 16 + owner = "ljmerza"; 17 + repo = "py-our-groceries"; 18 + tag = version; 19 + hash = "sha256-tlgctQvbR2YzM6Q1A/P1i40LSt4/2hsetlDeO07RBPE="; 20 + }; 21 + 22 + build-system = [ setuptools ]; 23 + 24 + dependencies = [ 25 + aiohttp 26 + beautifulsoup4 27 + ]; 28 + 29 + pythonImportsCheck = [ "ourgroceries" ]; 30 + 31 + # tests require credentials 32 + doCheck = false; 33 + 34 + meta = { 35 + changelog = "https://github.com/ljmerza/py-our-groceries/releases/tag/${src.tag}"; 36 + description = "Unofficial Python Wrapper for Our Groceries"; 37 + homepage = "https://github.com/ljmerza/py-our-groceries"; 38 + license = lib.licenses.mit; 39 + maintainers = with lib.maintainers; [ dotlambda ]; 40 + }; 41 + }
+2 -2
pkgs/development/python-modules/publicsuffixlist/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "publicsuffixlist"; 14 - version = "1.0.2.20250127"; 14 + version = "1.0.2.20250202"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-a2G64r752rlLiUjJQsdLut2CqaLZZB4A5HJlAp6gi5g="; 21 + hash = "sha256-zYOlYyR/tJvY9EouLHyVjaK8ELwRBf8cowhsfd6pilI="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pynrrd/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pynrrd"; 14 - version = "1.1.1"; 14 + version = "1.1.3"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "mhe"; 21 21 repo = pname; 22 22 tag = "v${version}"; 23 - hash = "sha256-B/G46/9Xf1LRu02p0X4/UeW1RYotSXKXRO9VZDPhkNU="; 23 + hash = "sha256-qu3s3XswJCUchqYfYMuqIzI4sfeXrttvXSEW9/GSENA="; 24 24 }; 25 25 26 26 build-system = [ setuptools ];
+56
pkgs/development/python-modules/pyrail/default.nix
··· 1 + { 2 + aiohttp, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + lib, 6 + mashumaro, 7 + poetry-core, 8 + pytest-asyncio, 9 + pytestCheckHook, 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "pyrail"; 14 + version = "0.4.0"; 15 + pyproject = true; 16 + 17 + src = fetchFromGitHub { 18 + owner = "tjorim"; 19 + repo = "pyrail"; 20 + tag = "v${version}"; 21 + hash = "sha256-6CE8FrBCVcO88kGwqAMBx9dp5b27oeCm/w1PrEf6a0E="; 22 + }; 23 + 24 + build-system = [ poetry-core ]; 25 + 26 + dependencies = [ 27 + aiohttp 28 + mashumaro 29 + ] ++ mashumaro.optional-dependencies.orjson; 30 + 31 + pythonImportsCheck = [ "pyrail" ]; 32 + 33 + nativeCheckInputs = [ 34 + pytest-asyncio 35 + pytestCheckHook 36 + ]; 37 + 38 + disabledTests = [ 39 + # tests connect to the internet 40 + "test_get_composition" 41 + "test_get_connections" 42 + "test_get_disturbances" 43 + "test_get_liveboard" 44 + "test_get_stations" 45 + "test_get_vehicle" 46 + "test_liveboard_with_date_time" 47 + ]; 48 + 49 + meta = { 50 + changelog = "https://github.com/tjorim/pyrail/releases/tag/${src.tag}"; 51 + description = "Async Python wrapper for the iRail API"; 52 + homepage = "https://github.com/tjorim/pyrail"; 53 + license = lib.licenses.asl20; 54 + maintainers = with lib.maintainers; [ dotlambda ]; 55 + }; 56 + }
+2 -2
pkgs/development/python-modules/python-gitlab/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "python-gitlab"; 16 - version = "5.3.1"; 16 + version = "5.6.0"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 21 21 src = fetchPypi { 22 22 pname = "python_gitlab"; 23 23 inherit version; 24 - hash = "sha256-yqvLUAIQ9PWe+fj+7E+Z6CHWUqVccuyfW/gg9F/Bcpg="; 24 + hash = "sha256-vFMei6PlZBtgQJRF1JGazmiiwYyw7G1I+87WYWuVQWY="; 25 25 }; 26 26 27 27 build-system = [ setuptools ];
+4 -5
pkgs/development/python-modules/python-mapnik/default.nix
··· 23 23 libxml2, 24 24 sqlite, 25 25 pytestCheckHook, 26 - darwin, 27 26 sparsehash, 28 27 }: 29 28 ··· 115 114 "test_passing_pycairo_context_pdf" 116 115 "test_pdf_printing" 117 116 "test_render_with_scale_factor" 117 + "test_raster_warping" 118 118 ] 119 119 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 120 120 "test_passing_pycairo_context_png" ··· 129 129 130 130 pythonImportsCheck = [ "mapnik" ]; 131 131 132 - meta = with lib; { 132 + meta = { 133 133 description = "Python bindings for Mapnik"; 134 - maintainers = [ ]; 135 134 homepage = "https://mapnik.org"; 136 - license = licenses.lgpl21Plus; 137 - broken = true; # At 2024-11-13, test_raster_warping fails. 135 + license = lib.licenses.lgpl21Plus; 136 + maintainers = lib.teams.geospatial.members; 138 137 }; 139 138 }
+2 -2
pkgs/development/python-modules/sqlfmt/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "sqlfmt"; 22 - version = "0.24.0"; 22 + version = "0.26.0"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.9"; ··· 28 28 owner = "tconbeer"; 29 29 repo = "sqlfmt"; 30 30 tag = "v${version}"; 31 - hash = "sha256-8TPuFxcZ6ENiPyzSDJPneqvOkPkuFlTYHvbuM842j30="; 31 + hash = "sha256-q0pkwuQY0iLzK+Lef6k62UxMKJy592RsJnSZnVYdMa8="; 32 32 }; 33 33 34 34 pythonRelaxDeps = [ "platformdirs" ];
+2 -2
pkgs/development/python-modules/stripe/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "stripe"; 13 - version = "11.4.1"; 13 + version = "11.5.0"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-fd0lG2ItSQ/lfXhIeFXcn02VsbsRNgfoH9N3A3oTPVo="; 20 + hash = "sha256-vD4DWP/CPV7PqKr+wfpPBI7oEHwyN7ywAAPmjIyW+gI="; 21 21 }; 22 22 23 23 build-system = [ setuptools ];
+4 -4
pkgs/development/python-modules/tkinter/default.nix
··· 13 13 src = py; 14 14 format = "other"; 15 15 16 - disabled = isPyPy; 17 - 18 - installPhase = 16 + # tkinter is included in PyPy, making this package a no-op. 17 + installPhase = lib.optionalString (!isPyPy) ( 19 18 '' 20 19 # Move the tkinter module 21 20 mkdir -p $out/${py.sitePackages} ··· 26 25 old_rpath=$(patchelf --print-rpath $out/${py.sitePackages}/_tkinter*) 27 26 new_rpath=$(sed "s#${py}#${python}#g" <<< "$old_rpath" ) 28 27 patchelf --set-rpath $new_rpath $out/${py.sitePackages}/_tkinter* 29 - ''; 28 + '' 29 + ); 30 30 31 31 meta = py.meta // { 32 32 # Based on first sentence from https://docs.python.org/3/library/tkinter.html
+2 -2
pkgs/development/python-modules/yoto-api/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "yoto-api"; 13 - version = "1.24.4"; 13 + version = "1.24.5"; 14 14 pyproject = true; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "cdnninja"; 18 18 repo = "yoto_api"; 19 19 tag = "v${version}"; 20 - hash = "sha256-CZz1zfNoxrySo0cUobk0Sjzk4QjuZxpUczK+FhMKXMU="; 20 + hash = "sha256-zgyZpya67cmJb2tz7Ht8G4y78UejVF00kssasZ8F+58="; 21 21 }; 22 22 23 23 build-system = [ setuptools ];
+2 -2
pkgs/development/tools/pnpm/default.nix
··· 16 16 hash = "sha256-hHIWjD4f0L/yh+aUsFP8y78gV5o/+VJrYzO+q432Wo0="; 17 17 }; 18 18 "10" = { 19 - version = "10.1.0"; 20 - hash = "sha256-PuU+kUAR7H8abjqwxYuaAkoFK/4YKVsjtoVn1qal680="; 19 + version = "10.2.0"; 20 + hash = "sha256-cvFjCBIQfIcj61vkUXcl8+E/Cc/Y9xVxzynyPOMYvbc="; 21 21 }; 22 22 }; 23 23
+10 -4
pkgs/servers/home-assistant/component-packages.nix
··· 3823 3823 ]; 3824 3824 "nmbs" = 3825 3825 ps: with ps; [ 3826 - ]; # missing inputs: pyrail 3826 + pyrail 3827 + ]; 3827 3828 "no_ip" = 3828 3829 ps: with ps; [ 3829 3830 ]; ··· 3894 3895 ]; 3895 3896 "nyt_games" = 3896 3897 ps: with ps; [ 3897 - ]; # missing inputs: nyt_games 3898 + nyt-games 3899 + ]; 3898 3900 "nzbget" = 3899 3901 ps: with ps; [ 3900 3902 ]; # missing inputs: pynzbgetapi ··· 4082 4084 ]; # missing inputs: pyosoenergyapi 4083 4085 "osramlightify" = 4084 4086 ps: with ps; [ 4085 - ]; # missing inputs: lightify 4087 + lightify 4088 + ]; 4086 4089 "otbr" = 4087 4090 ps: with ps; [ 4088 4091 aiohasupervisor ··· 4103 4106 ]; 4104 4107 "ourgroceries" = 4105 4108 ps: with ps; [ 4106 - ]; # missing inputs: ourgroceries 4109 + ourgroceries 4110 + ]; 4107 4111 "overkiz" = 4108 4112 ps: with ps; [ 4109 4113 pyoverkiz ··· 7037 7041 "nut" 7038 7042 "nws" 7039 7043 "nx584" 7044 + "nyt_games" 7040 7045 "obihai" 7041 7046 "octoprint" 7042 7047 "ohme" ··· 7065 7070 "oralb" 7066 7071 "otbr" 7067 7072 "otp" 7073 + "ourgroceries" 7068 7074 "overkiz" 7069 7075 "ovo_energy" 7070 7076 "owntracks"
+2 -2
pkgs/servers/home-assistant/custom-components/yoto_ha/package.nix
··· 8 8 buildHomeAssistantComponent rec { 9 9 owner = "cdnninja"; 10 10 domain = "yoto"; 11 - version = "1.22.4"; 11 + version = "1.22.6"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "cdnninja"; 15 15 repo = "yoto_ha"; 16 16 tag = "v${version}"; 17 - hash = "sha256-4OKiXwluatm/WRO77tK/VE+fnRn7Cvvh4et3SjANJWE="; 17 + hash = "sha256-6igIcDGPYUOz5dWZr9TKFmoYoUCsZOpfpESTxYRR67w="; 18 18 }; 19 19 20 20 dependencies = [
+4
pkgs/tools/filesystems/ceph/default.nix
··· 19 19 nasm, 20 20 pkg-config, 21 21 which, 22 + openssl, 22 23 23 24 # Tests 24 25 nixosTests, ··· 259 260 propagatedBuildInputs = old.propagatedBuildInputs or [ ] ++ [ 260 261 self.flaky 261 262 ]; 263 + # hack: avoid building docs due to incompatibility with current sphinx 264 + nativeBuildInputs = [ openssl ]; # old.nativeBuildInputs but without sphinx* 265 + outputs = lib.filter (o: o != "doc") old.outputs; 262 266 }); 263 267 264 268 # This is the most recent version of `trustme` that's still compatible with `cryptography` 40.
+3 -3
pkgs/tools/misc/shadowenv/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "shadowenv"; 12 - version = "3.0.1"; 12 + version = "3.0.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "Shopify"; 16 16 repo = pname; 17 17 rev = version; 18 - hash = "sha256-9K04g2DCADkRwjo55rDwVwkvmypqujdN1fqOmHmC09E="; 18 + hash = "sha256-ZipFcwTpKKFnQWOPxXg07V71jitG0NSLpGLEzUSsUFA="; 19 19 }; 20 20 21 21 useFetchCargoVendor = true; 22 - cargoHash = "sha256-IHg36zgBF7o/O9kL6t54fV6dBJDZLYausM1u8pLR+Mk="; 22 + cargoHash = "sha256-KNCucBmYVmIQ/XY+UNV667iWLyiEJDnP/8gAmUHGY+0="; 23 23 24 24 nativeBuildInputs = [ installShellFiles ]; 25 25
+16 -11
pkgs/tools/networking/shadowsocks-rust/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security, CoreServices }: 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + rustPlatform, 6 + pkg-config, 7 + openssl, 8 + }: 2 9 3 10 rustPlatform.buildRustPackage rec { 4 11 pname = "shadowsocks-rust"; 5 - version = "1.21.2"; 12 + version = "1.22.0"; 6 13 7 14 src = fetchFromGitHub { 8 - rev = "v${version}"; 9 15 owner = "shadowsocks"; 10 - repo = pname; 11 - hash = "sha256-bvYp25EPKtkuZzplVYK4Cwd0mm4UuyN1LMiDAkgMIAc="; 16 + repo = "shadowsocks-rust"; 17 + tag = "v${version}"; 18 + hash = "sha256-rufOrNwUp8h0LoBKPyDV63WAYTLJbctWrq5Ghj6ODB4="; 12 19 }; 13 20 14 21 useFetchCargoVendor = true; 15 - cargoHash = "sha256-TwUIyUEBe+qMKxfPxEGXcNYJmJSNfdcrOBnUbb0N6cs="; 22 + cargoHash = "sha256-hdHCpER4qs8W6rMmwys2KhaGDiTWcnntAL3ZeTBgt84="; 16 23 17 24 nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ]; 18 25 19 - buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ] 20 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security CoreServices ]; 26 + buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ]; 21 27 22 28 buildFeatures = [ 23 29 "trust-dns" 24 - "local-http-native-tls" 25 30 "local-tunnel" 26 31 "local-socks4" 27 32 "local-redir" ··· 48 53 # timeouts in sandbox 49 54 doCheck = false; 50 55 51 - meta = with lib; { 56 + meta = { 52 57 description = "Rust port of Shadowsocks"; 53 58 homepage = "https://github.com/shadowsocks/shadowsocks-rust"; 54 59 changelog = "https://github.com/shadowsocks/shadowsocks-rust/raw/v${version}/debian/changelog"; 55 - license = licenses.mit; 60 + license = lib.licenses.mit; 56 61 maintainers = [ ]; 57 62 }; 58 63 }
+1 -3
pkgs/top-level/all-packages.nix
··· 4971 4971 4972 4972 seqdiag = with python3Packages; toPythonApplication seqdiag; 4973 4973 4974 - shadowsocks-rust = callPackage ../tools/networking/shadowsocks-rust { 4975 - inherit (darwin.apple_sdk.frameworks) Security CoreServices; 4976 - }; 4974 + shadowsocks-rust = callPackage ../tools/networking/shadowsocks-rust { }; 4977 4975 4978 4976 shellify = haskellPackages.shellify.bin; 4979 4977
+10
pkgs/top-level/python-packages.nix
··· 3220 3220 3221 3221 deprecation-alias = callPackage ../development/python-modules/deprecation-alias { }; 3222 3222 3223 + depyf = callPackage ../development/python-modules/depyf { }; 3224 + 3223 3225 derpconf = callPackage ../development/python-modules/derpconf { }; 3224 3226 3225 3227 desktop-entry-lib = callPackage ../development/python-modules/desktop-entry-lib { }; ··· 7515 7517 7516 7518 lightgbm = callPackage ../development/python-modules/lightgbm { }; 7517 7519 7520 + lightify = callPackage ../development/python-modules/lightify { }; 7521 + 7518 7522 lightning-utilities = callPackage ../development/python-modules/lightning-utilities { }; 7519 7523 7520 7524 lightparam = callPackage ../development/python-modules/lightparam { }; ··· 9517 9521 9518 9522 nxt-python = callPackage ../development/python-modules/nxt-python { }; 9519 9523 9524 + nyt-games = callPackage ../development/python-modules/nyt-games { }; 9525 + 9520 9526 plugp100 = callPackage ../development/python-modules/plugp100 {}; 9521 9527 9522 9528 python-bugzilla = callPackage ../development/python-modules/python-bugzilla { }; ··· 9979 9985 otpauth = callPackage ../development/python-modules/otpauth { }; 9980 9986 9981 9987 ots-python = callPackage ../development/python-modules/ots-python { }; 9988 + 9989 + ourgroceries = callPackage ../development/python-modules/ourgroceries { }; 9982 9990 9983 9991 outcome = callPackage ../development/python-modules/outcome { }; 9984 9992 ··· 10756 10764 pypoint = callPackage ../development/python-modules/pypoint { }; 10757 10765 10758 10766 pypoolstation = callPackage ../development/python-modules/pypoolstation { }; 10767 + 10768 + pyrail = callPackage ../development/python-modules/pyrail { }; 10759 10769 10760 10770 pyrdfa3 = callPackage ../development/python-modules/pyrdfa3 { }; 10761 10771