Merge staging-next into staging

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

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