Merge remote-tracking branch 'origin/master' into staging-next

K900 a7e86ba1 6d0b733a

+3846 -4211
+9 -2
maintainers/maintainer-list.nix
··· 12348 github = "lachrymaLF"; 12349 githubId = 13716477; 12350 }; 12351 lafrenierejm = { 12352 email = "joseph@lafreniere.xyz"; 12353 github = "lafrenierejm"; ··· 15573 name = "Nathan Yong"; 15574 }; 15575 natsukagami = { 15576 - email = "natsukagami@gmail.com"; 15577 github = "natsukagami"; 15578 githubId = 9061737; 15579 - name = "Natsu Kagami"; 15580 keys = [ { fingerprint = "5581 26DC 886F E14D 501D B0F2 D6AD 7B57 A992 460C"; } ]; 15581 }; 15582 natsukium = {
··· 12348 github = "lachrymaLF"; 12349 githubId = 13716477; 12350 }; 12351 + lactose = { 12352 + name = "lactose"; 12353 + email = "lactose@allthingslinux.com"; 12354 + github = "juuyokka"; 12355 + githubId = 15185244; 12356 + }; 12357 lafrenierejm = { 12358 email = "joseph@lafreniere.xyz"; 12359 github = "lafrenierejm"; ··· 15579 name = "Nathan Yong"; 15580 }; 15581 natsukagami = { 15582 + name = "Natsu Kagami"; 15583 + email = "nki@nkagami.me"; 15584 + matrix = "@nki:m.nkagami.me"; 15585 github = "natsukagami"; 15586 githubId = 9061737; 15587 keys = [ { fingerprint = "5581 26DC 886F E14D 501D B0F2 D6AD 7B57 A992 460C"; } ]; 15588 }; 15589 natsukium = {
+1 -1
nixos/lib/make-ext4-fs.nix
··· 102 103 if [ ${builtins.toString compressImage} ]; then 104 echo "Compressing image" 105 - zstd -v --no-progress ./$img -o $out 106 fi 107 ''; 108 }
··· 102 103 if [ ${builtins.toString compressImage} ]; then 104 echo "Compressing image" 105 + zstd -T$NIX_BUILD_CORES -v --no-progress ./$img -o $out 106 fi 107 ''; 108 }
+3
nixos/modules/installer/sd-card/sd-image-aarch64.nix
··· 24 [pi3] 25 kernel=u-boot-rpi3.bin 26 27 [pi02] 28 kernel=u-boot-rpi3.bin 29
··· 24 [pi3] 25 kernel=u-boot-rpi3.bin 26 27 + # Otherwise the serial output will be garbled. 28 + core_freq=250 29 + 30 [pi02] 31 kernel=u-boot-rpi3.bin 32
+14 -8
nixos/modules/services/audio/navidrome.nix
··· 109 BindPaths = 110 optional (cfg.settings ? DataFolder) cfg.settings.DataFolder 111 ++ optional (cfg.settings ? CacheFolder) cfg.settings.CacheFolder; 112 - BindReadOnlyPaths = [ 113 - # navidrome uses online services to download additional album metadata / covers 114 - "${ 115 - config.environment.etc."ssl/certs/ca-certificates.crt".source 116 - }:/etc/ssl/certs/ca-certificates.crt" 117 - builtins.storeDir 118 - "/etc" 119 - ] ++ optional (cfg.settings ? MusicFolder) cfg.settings.MusicFolder; 120 CapabilityBoundingSet = ""; 121 RestrictAddressFamilies = [ 122 "AF_UNIX"
··· 109 BindPaths = 110 optional (cfg.settings ? DataFolder) cfg.settings.DataFolder 111 ++ optional (cfg.settings ? CacheFolder) cfg.settings.CacheFolder; 112 + BindReadOnlyPaths = 113 + [ 114 + # navidrome uses online services to download additional album metadata / covers 115 + "${ 116 + config.environment.etc."ssl/certs/ca-certificates.crt".source 117 + }:/etc/ssl/certs/ca-certificates.crt" 118 + builtins.storeDir 119 + "/etc" 120 + ] 121 + ++ optional (cfg.settings ? MusicFolder) cfg.settings.MusicFolder 122 + ++ lib.optionals config.services.resolved.enable [ 123 + "/run/systemd/resolve/stub-resolv.conf" 124 + "/run/systemd/resolve/resolv.conf" 125 + ]; 126 CapabilityBoundingSet = ""; 127 RestrictAddressFamilies = [ 128 "AF_UNIX"
+53 -41
nixos/modules/services/databases/couchdb.nix
··· 1 - { config, options, lib, pkgs, ... }: 2 let 3 cfg = config.services.couchdb; 4 opt = options.services.couchdb; 5 - configFile = pkgs.writeText "couchdb.ini" ( 6 - '' 7 - [couchdb] 8 - database_dir = ${cfg.databaseDir} 9 - uri_file = ${cfg.uriFile} 10 - view_index_dir = ${cfg.viewIndexDir} 11 - '' + (lib.optionalString (cfg.adminPass != null) '' 12 - [admins] 13 - ${cfg.adminUser} = ${cfg.adminPass} 14 - '' + '' 15 - [chttpd] 16 - '') + 17 - '' 18 - port = ${toString cfg.port} 19 - bind_address = ${cfg.bindAddress} 20 21 - [log] 22 - file = ${cfg.logFile} 23 - ''); 24 - executable = "${cfg.package}/bin/couchdb"; 25 26 - in { 27 28 ###### interface 29 30 options = { 31 - 32 services.couchdb = { 33 - 34 enable = lib.mkEnableOption "CouchDB Server"; 35 36 package = lib.mkPackageOption pkgs "couchdb3" { }; ··· 128 }; 129 130 extraConfig = lib.mkOption { 131 - type = lib.types.lines; 132 - default = ""; 133 description = '' 134 - Extra configuration. Overrides any other configuration. 135 ''; 136 }; 137 ··· 146 147 configFile = lib.mkOption { 148 type = lib.types.path; 149 description = '' 150 Configuration file for persisting runtime changes. File 151 needs to be readable and writable from couchdb user/group. 152 ''; 153 }; 154 - 155 }; 156 - 157 }; 158 159 ###### implementation 160 161 - config = lib.mkIf config.services.couchdb.enable { 162 - 163 environment.systemPackages = [ cfg.package ]; 164 - 165 - services.couchdb.configFile = lib.mkDefault "/var/lib/couchdb/local.ini"; 166 167 systemd.tmpfiles.rules = [ 168 "d '${dirOf cfg.uriFile}' - ${cfg.user} ${cfg.group} - -" ··· 185 ''; 186 187 environment = { 188 - # we are actually specifying 5 configuration files: 189 - # 1. the preinstalled default.ini 190 - # 2. the module configuration 191 - # 3. the extraConfig from the module options 192 - # 4. the locally writable config file, which couchdb itself writes to 193 - ERL_FLAGS= ''-couch_ini ${cfg.package}/etc/default.ini ${configFile} ${pkgs.writeText "couchdb-extra.ini" cfg.extraConfig} ${cfg.configFile}''; 194 # 5. the vm.args file 195 - COUCHDB_ARGS_FILE=''${cfg.argsFile}''; 196 - HOME =''${cfg.databaseDir}''; 197 }; 198 199 serviceConfig = { ··· 210 }; 211 212 users.groups.couchdb.gid = config.ids.gids.couchdb; 213 - 214 }; 215 }
··· 1 + { 2 + config, 3 + options, 4 + lib, 5 + pkgs, 6 + ... 7 + }: 8 let 9 cfg = config.services.couchdb; 10 opt = options.services.couchdb; 11 12 + baseConfig = { 13 + couchdb = { 14 + database_dir = cfg.databaseDir; 15 + uri_file = cfg.uriFile; 16 + view_index_dir = cfg.viewIndexDir; 17 + }; 18 + chttpd = { 19 + port = cfg.port; 20 + bind_address = cfg.bindAddress; 21 + }; 22 + log = { 23 + file = cfg.logFile; 24 + }; 25 + }; 26 + adminConfig = lib.optionalAttrs (cfg.adminPass != null) { 27 + admins = { 28 + "${cfg.adminUser}" = cfg.adminPass; 29 + }; 30 + }; 31 + appConfig = lib.recursiveUpdate (lib.recursiveUpdate baseConfig adminConfig) cfg.extraConfig; 32 33 + optionsConfigFile = pkgs.writeText "couchdb.ini" (lib.generators.toINI { } appConfig); 34 35 + # we are actually specifying 5 configuration files: 36 + # 1. the preinstalled default.ini 37 + # 2. the module configuration 38 + # 3. the extraConfigFiles from the module options 39 + # 4. the locally writable config file, which couchdb itself writes to 40 + configFiles = [ 41 + "${cfg.package}/etc/default.ini" 42 + optionsConfigFile 43 + ] ++ cfg.extraConfigFiles ++ [ cfg.configFile ]; 44 + executable = "${cfg.package}/bin/couchdb"; 45 + in 46 + { 47 ###### interface 48 49 options = { 50 services.couchdb = { 51 enable = lib.mkEnableOption "CouchDB Server"; 52 53 package = lib.mkPackageOption pkgs "couchdb3" { }; ··· 145 }; 146 147 extraConfig = lib.mkOption { 148 + type = lib.types.attrs; 149 + default = { }; 150 + description = "Extra configuration options for CouchDB"; 151 + }; 152 + extraConfigFiles = lib.mkOption { 153 + type = lib.types.listOf lib.types.path; 154 + default = [ ]; 155 description = '' 156 + Extra configuration files. Overrides any other configuration. You can use this to setup the Admin user without putting the password in your nix store. 157 ''; 158 }; 159 ··· 168 169 configFile = lib.mkOption { 170 type = lib.types.path; 171 + default = "/var/lib/couchdb/local.ini"; 172 description = '' 173 Configuration file for persisting runtime changes. File 174 needs to be readable and writable from couchdb user/group. 175 ''; 176 }; 177 }; 178 }; 179 180 ###### implementation 181 182 + config = lib.mkIf cfg.enable { 183 environment.systemPackages = [ cfg.package ]; 184 185 systemd.tmpfiles.rules = [ 186 "d '${dirOf cfg.uriFile}' - ${cfg.user} ${cfg.group} - -" ··· 203 ''; 204 205 environment = { 206 + ERL_FLAGS = ''-couch_ini ${lib.concatStringsSep " " configFiles}''; 207 # 5. the vm.args file 208 + COUCHDB_ARGS_FILE = ''${cfg.argsFile}''; 209 + HOME = ''${cfg.databaseDir}''; 210 }; 211 212 serviceConfig = { ··· 223 }; 224 225 users.groups.couchdb.gid = config.ids.gids.couchdb; 226 }; 227 }
+7 -4
nixos/modules/services/misc/anki-sync-server.nix
··· 16 cfg.users; 17 usersWithIndexesFile = filter (x: x.user.passwordFile != null) usersWithIndexes; 18 usersWithIndexesNoFile = filter (x: x.user.passwordFile == null && x.user.password != null) usersWithIndexes; 19 - anki-sync-server-run = pkgs.writeShellScriptBin "anki-sync-server-run" '' 20 # When services.anki-sync-server.users.passwordFile is set, 21 # each password file is passed as a systemd credential, which is mounted in 22 # a file system exposed to the service. Here we read the passwords from ··· 25 ${ 26 concatMapStringsSep 27 "\n" 28 - (x: ''export SYNC_USER${toString x.i}=${escapeShellArg x.user.username}:"''$(cat "''${CREDENTIALS_DIRECTORY}/"${escapeShellArg x.user.username})"'') 29 usersWithIndexesFile 30 } 31 # For users where services.anki-sync-server.users.password isn't set, ··· 36 (x: ''export SYNC_USER${toString x.i}=${escapeShellArg x.user.username}:${escapeShellArg x.user.password}'') 37 usersWithIndexesNoFile 38 } 39 - exec ${cfg.package}/bin/anki-sync-server 40 ''; 41 in { 42 options.services.anki-sync-server = { ··· 130 Type = "simple"; 131 DynamicUser = true; 132 StateDirectory = name; 133 - ExecStart = "${anki-sync-server-run}/bin/anki-sync-server-run"; 134 Restart = "always"; 135 LoadCredential = 136 map
··· 16 cfg.users; 17 usersWithIndexesFile = filter (x: x.user.passwordFile != null) usersWithIndexes; 18 usersWithIndexesNoFile = filter (x: x.user.passwordFile == null && x.user.password != null) usersWithIndexes; 19 + anki-sync-server-run = pkgs.writeShellScript "anki-sync-server-run" '' 20 # When services.anki-sync-server.users.passwordFile is set, 21 # each password file is passed as a systemd credential, which is mounted in 22 # a file system exposed to the service. Here we read the passwords from ··· 25 ${ 26 concatMapStringsSep 27 "\n" 28 + (x: '' 29 + read -r pass < "''${CREDENTIALS_DIRECTORY}/"${escapeShellArg x.user.username} 30 + export SYNC_USER${toString x.i}=${escapeShellArg x.user.username}:"$pass" 31 + '') 32 usersWithIndexesFile 33 } 34 # For users where services.anki-sync-server.users.password isn't set, ··· 39 (x: ''export SYNC_USER${toString x.i}=${escapeShellArg x.user.username}:${escapeShellArg x.user.password}'') 40 usersWithIndexesNoFile 41 } 42 + exec ${lib.getExe cfg.package} 43 ''; 44 in { 45 options.services.anki-sync-server = { ··· 133 Type = "simple"; 134 DynamicUser = true; 135 StateDirectory = name; 136 + ExecStart = anki-sync-server-run; 137 Restart = "always"; 138 LoadCredential = 139 map
+3 -2
pkgs/applications/networking/browsers/firefox-bin/update.nix
··· 79 tr " " ":"`; do 80 # create an entry for every locale 81 cat >> $tmpfile <<EOF 82 - { url = "$url$version/`echo $line | cut -d":" -f3`"; 83 locale = "`echo $line | cut -d":" -f3 | sed "s/$arch\///" | sed "s/\/.*//"`"; 84 arch = "$arch"; 85 sha256 = "`echo $line | cut -d":" -f1`"; ··· 88 done 89 done 90 cat >> $tmpfile <<EOF 91 - ]; 92 } 93 EOF 94
··· 79 tr " " ":"`; do 80 # create an entry for every locale 81 cat >> $tmpfile <<EOF 82 + { 83 + url = "$url$version/`echo $line | cut -d":" -f3`"; 84 locale = "`echo $line | cut -d":" -f3 | sed "s/$arch\///" | sed "s/\/.*//"`"; 85 arch = "$arch"; 86 sha256 = "`echo $line | cut -d":" -f1`"; ··· 89 done 90 done 91 cat >> $tmpfile <<EOF 92 + ]; 93 } 94 EOF 95
+265 -265
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 { 2 - version = "128.5.0esr"; 3 sources = [ 4 { 5 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/af/thunderbird-128.5.0esr.tar.bz2"; 6 locale = "af"; 7 arch = "linux-x86_64"; 8 - sha256 = "bf141809be942000802ccc5c7e7f9c9de64345e2ee323f57c29e30fb8301613f"; 9 } 10 { 11 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ar/thunderbird-128.5.0esr.tar.bz2"; 12 locale = "ar"; 13 arch = "linux-x86_64"; 14 - sha256 = "ac71adbd3510e52f5280c2674c9ce3104f41d7ff0800c244093a331d04b4971d"; 15 } 16 { 17 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ast/thunderbird-128.5.0esr.tar.bz2"; 18 locale = "ast"; 19 arch = "linux-x86_64"; 20 - sha256 = "51838e12a6a1f304a0a5c1c85417bc81b5e2f3870a58912e08e088bfbca636d3"; 21 } 22 { 23 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/be/thunderbird-128.5.0esr.tar.bz2"; 24 locale = "be"; 25 arch = "linux-x86_64"; 26 - sha256 = "b9a95f985de60041985ba11611af933d9cfdc15a5345bb1f71019e1caae5fad8"; 27 } 28 { 29 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/bg/thunderbird-128.5.0esr.tar.bz2"; 30 locale = "bg"; 31 arch = "linux-x86_64"; 32 - sha256 = "ab8493efca260eee3ade25251be5cf00549c80940c22560fb3927a2c4b1e700f"; 33 } 34 { 35 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/br/thunderbird-128.5.0esr.tar.bz2"; 36 locale = "br"; 37 arch = "linux-x86_64"; 38 - sha256 = "a3134f3df5baab7c99acb53f9ad27e367b641ea42216f8753cb0c55513d863d9"; 39 } 40 { 41 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ca/thunderbird-128.5.0esr.tar.bz2"; 42 locale = "ca"; 43 arch = "linux-x86_64"; 44 - sha256 = "57e922d86a1fad2d220372eb1086236853b56a04619eb3ce5b72cca24532d46c"; 45 } 46 { 47 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/cak/thunderbird-128.5.0esr.tar.bz2"; 48 locale = "cak"; 49 arch = "linux-x86_64"; 50 - sha256 = "0ac666a4f2066bfc7b77ed3400340c3e7510b695d979dee19b2dbe08cad64df9"; 51 } 52 { 53 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/cs/thunderbird-128.5.0esr.tar.bz2"; 54 locale = "cs"; 55 arch = "linux-x86_64"; 56 - sha256 = "39eed8ef4c0d6035cd250acc46852c590c95f2985f04f32619013cfade06f893"; 57 } 58 { 59 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/cy/thunderbird-128.5.0esr.tar.bz2"; 60 locale = "cy"; 61 arch = "linux-x86_64"; 62 - sha256 = "cd11988b3bc4b228470e36f1af45571e8a85b96361da46410a0ee38a366af2b1"; 63 } 64 { 65 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/da/thunderbird-128.5.0esr.tar.bz2"; 66 locale = "da"; 67 arch = "linux-x86_64"; 68 - sha256 = "0c05b4aad2e76343a1923f89593ae51bf3a2db326d44e089834e9d54bf31c263"; 69 } 70 { 71 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/de/thunderbird-128.5.0esr.tar.bz2"; 72 locale = "de"; 73 arch = "linux-x86_64"; 74 - sha256 = "8b281370178e06a6a35133c7cdb791e22cef34da9dbf9b84b5847b8b4201746b"; 75 } 76 { 77 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/dsb/thunderbird-128.5.0esr.tar.bz2"; 78 locale = "dsb"; 79 arch = "linux-x86_64"; 80 - sha256 = "324a99f3ba46d9ccef0f7ac0dab35db5330cddfa3c09b328770c7812fe3d364c"; 81 } 82 { 83 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/el/thunderbird-128.5.0esr.tar.bz2"; 84 locale = "el"; 85 arch = "linux-x86_64"; 86 - sha256 = "08f49bf601feb248f98bbb5d558440f04c7df9e320466c0282c0588fda275a03"; 87 } 88 { 89 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/en-CA/thunderbird-128.5.0esr.tar.bz2"; 90 locale = "en-CA"; 91 arch = "linux-x86_64"; 92 - sha256 = "329fa38d6e881706bfbbaa8b9625b9e681e41606b42cfd9f25c866a45ab58fee"; 93 } 94 { 95 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/en-GB/thunderbird-128.5.0esr.tar.bz2"; 96 locale = "en-GB"; 97 arch = "linux-x86_64"; 98 - sha256 = "276387261629de231ad41570c0821d39c4e343f6b34bb31867e7c4ff5bc7c9b3"; 99 } 100 { 101 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/en-US/thunderbird-128.5.0esr.tar.bz2"; 102 locale = "en-US"; 103 arch = "linux-x86_64"; 104 - sha256 = "d612084b5e5f4005577171bc8c8bf8ee7e38fd7e16cbb2b7c32fb4148faf0e50"; 105 } 106 { 107 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/es-AR/thunderbird-128.5.0esr.tar.bz2"; 108 locale = "es-AR"; 109 arch = "linux-x86_64"; 110 - sha256 = "81a62da51a8b732721783059359f98033778831db689cb602bf1add2c53256b5"; 111 } 112 { 113 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/es-ES/thunderbird-128.5.0esr.tar.bz2"; 114 locale = "es-ES"; 115 arch = "linux-x86_64"; 116 - sha256 = "b7374e7069ef698c83c55a32247543b0229bf1f1dc2a1656532b95dde2d6e3a3"; 117 } 118 { 119 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/es-MX/thunderbird-128.5.0esr.tar.bz2"; 120 locale = "es-MX"; 121 arch = "linux-x86_64"; 122 - sha256 = "63b228f1de074f1f7e59d2e26f5531c49643e9e83ed2c87dd52c39b059c8985a"; 123 } 124 { 125 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/et/thunderbird-128.5.0esr.tar.bz2"; 126 locale = "et"; 127 arch = "linux-x86_64"; 128 - sha256 = "6d6f597f49a0c0606257534d44075ebacb25f503a0380858b6f46841d78e20de"; 129 } 130 { 131 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/eu/thunderbird-128.5.0esr.tar.bz2"; 132 locale = "eu"; 133 arch = "linux-x86_64"; 134 - sha256 = "441c835d3990fd72ceb87fa1a8474ba0988c9423f4fad6558eade93ad840d730"; 135 } 136 { 137 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/fi/thunderbird-128.5.0esr.tar.bz2"; 138 locale = "fi"; 139 arch = "linux-x86_64"; 140 - sha256 = "2b6d9faf698fbf46fde988b1f9bcfa35a5ecad69327f1fc50f4a0f9f99ef2e62"; 141 } 142 { 143 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/fr/thunderbird-128.5.0esr.tar.bz2"; 144 locale = "fr"; 145 arch = "linux-x86_64"; 146 - sha256 = "7b96d4d29d4185cf3f4539e79466d71e110c516f1ea5b71e909bd4f6d6c197e3"; 147 } 148 { 149 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/fy-NL/thunderbird-128.5.0esr.tar.bz2"; 150 locale = "fy-NL"; 151 arch = "linux-x86_64"; 152 - sha256 = "3793b5f8ea3900980608d8771597645caa1c3173b3ca50e52d39002d5ff45fe3"; 153 } 154 { 155 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ga-IE/thunderbird-128.5.0esr.tar.bz2"; 156 locale = "ga-IE"; 157 arch = "linux-x86_64"; 158 - sha256 = "e71dda89ed9d87a1a4685efc2d30962db948c5cf01eb70a22adcdff93c96f371"; 159 } 160 { 161 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/gd/thunderbird-128.5.0esr.tar.bz2"; 162 locale = "gd"; 163 arch = "linux-x86_64"; 164 - sha256 = "70262e69f9b02d86358d9c9303becba44ffec53ef982bdc3eebac026c83702bd"; 165 } 166 { 167 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/gl/thunderbird-128.5.0esr.tar.bz2"; 168 locale = "gl"; 169 arch = "linux-x86_64"; 170 - sha256 = "c4cb4c3e0d882dd460f476da3d22553a2402cf54865411005754777f8c370644"; 171 } 172 { 173 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/he/thunderbird-128.5.0esr.tar.bz2"; 174 locale = "he"; 175 arch = "linux-x86_64"; 176 - sha256 = "b455c97a5a1e0ecaef5374b11ab08ad709330c14bcc29abaa4767e151ab2f1ba"; 177 } 178 { 179 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/hr/thunderbird-128.5.0esr.tar.bz2"; 180 locale = "hr"; 181 arch = "linux-x86_64"; 182 - sha256 = "1ac9c1583ce60d5f6878038c60cfc0bcee90a5fb34cc1d4f0a239f710586668b"; 183 } 184 { 185 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/hsb/thunderbird-128.5.0esr.tar.bz2"; 186 locale = "hsb"; 187 arch = "linux-x86_64"; 188 - sha256 = "f40a7d7eec65fe20e3ddd26d7dbb49c80131ade60ccb1872b51c6cf09b5cdaac"; 189 } 190 { 191 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/hu/thunderbird-128.5.0esr.tar.bz2"; 192 locale = "hu"; 193 arch = "linux-x86_64"; 194 - sha256 = "876cd1f1840edaf44602d42012bcc31b2f928f83915869e7a1a85b74ec1b8cc1"; 195 } 196 { 197 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/hy-AM/thunderbird-128.5.0esr.tar.bz2"; 198 locale = "hy-AM"; 199 arch = "linux-x86_64"; 200 - sha256 = "974f0eb2b1452d787036db75dc8ef06ccf1d15521ddcdf7fefe89e25ea0451c1"; 201 } 202 { 203 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/id/thunderbird-128.5.0esr.tar.bz2"; 204 locale = "id"; 205 arch = "linux-x86_64"; 206 - sha256 = "2e7ba78aed383c152fbf443e74a25ff41c22b28a34fcdcf8d347ff1c0e46ce77"; 207 } 208 { 209 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/is/thunderbird-128.5.0esr.tar.bz2"; 210 locale = "is"; 211 arch = "linux-x86_64"; 212 - sha256 = "55c295af6a1339b7c432834381d587ea921d558ecb78f29e29564d1f394c155a"; 213 } 214 { 215 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/it/thunderbird-128.5.0esr.tar.bz2"; 216 locale = "it"; 217 arch = "linux-x86_64"; 218 - sha256 = "2479f33f19d0d2724202a133e2590931ceab894660c3dc775151f6c850c9e42c"; 219 } 220 { 221 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ja/thunderbird-128.5.0esr.tar.bz2"; 222 locale = "ja"; 223 arch = "linux-x86_64"; 224 - sha256 = "1f3b76a1193330f7a4538400805a0cdafad56b96a4cc4bc2ada5cf1d62361648"; 225 } 226 { 227 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ka/thunderbird-128.5.0esr.tar.bz2"; 228 locale = "ka"; 229 arch = "linux-x86_64"; 230 - sha256 = "b63d8939320c1dd3d6e9a7d965f82b0fc388640e304fce7995f7a13710339e99"; 231 } 232 { 233 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/kab/thunderbird-128.5.0esr.tar.bz2"; 234 locale = "kab"; 235 arch = "linux-x86_64"; 236 - sha256 = "d221cd9396a1b2b8945e0e75b8ad118f2ee34d45976bdb9b717dae0a96db9286"; 237 } 238 { 239 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/kk/thunderbird-128.5.0esr.tar.bz2"; 240 locale = "kk"; 241 arch = "linux-x86_64"; 242 - sha256 = "56a63af61c24148d5fe12601580157381669ab670f07507107d9ea46d03d4392"; 243 } 244 { 245 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ko/thunderbird-128.5.0esr.tar.bz2"; 246 locale = "ko"; 247 arch = "linux-x86_64"; 248 - sha256 = "b5d2af0451f659e7abb6d548ceff053e3cbf13cf3eb6c42374a9a193e331fda7"; 249 } 250 { 251 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/lt/thunderbird-128.5.0esr.tar.bz2"; 252 locale = "lt"; 253 arch = "linux-x86_64"; 254 - sha256 = "5ee2a8440be5e344564a5d4b4f4629df691e6245f2b0f2024020752430ba488e"; 255 } 256 { 257 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/lv/thunderbird-128.5.0esr.tar.bz2"; 258 locale = "lv"; 259 arch = "linux-x86_64"; 260 - sha256 = "3e2fe77604f976102a274e77a506b025b4c0443077082da6cfaa648b3018f322"; 261 } 262 { 263 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ms/thunderbird-128.5.0esr.tar.bz2"; 264 locale = "ms"; 265 arch = "linux-x86_64"; 266 - sha256 = "e180dc2c02fad1473272b7dfb447208a1b8abdb335d362696d649fe6f2fa9da6"; 267 } 268 { 269 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/nb-NO/thunderbird-128.5.0esr.tar.bz2"; 270 locale = "nb-NO"; 271 arch = "linux-x86_64"; 272 - sha256 = "472ae10df128c9d16a5c1bf688edc4bf43da36b4f254c55b37e5af8768339581"; 273 } 274 { 275 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/nl/thunderbird-128.5.0esr.tar.bz2"; 276 locale = "nl"; 277 arch = "linux-x86_64"; 278 - sha256 = "18235f21aae857efcff66427a4d1e3a513c71d89aad3142e4161f61c7775224e"; 279 } 280 { 281 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/nn-NO/thunderbird-128.5.0esr.tar.bz2"; 282 locale = "nn-NO"; 283 arch = "linux-x86_64"; 284 - sha256 = "99fe98fc5c5a015a053a2918625be003a67ffb0369f8b373cda1684391a9a281"; 285 } 286 { 287 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/pa-IN/thunderbird-128.5.0esr.tar.bz2"; 288 locale = "pa-IN"; 289 arch = "linux-x86_64"; 290 - sha256 = "f7f27918958d21c681c10b413907b3517e5090134fd29a659b0c31dfba6f9e69"; 291 } 292 { 293 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/pl/thunderbird-128.5.0esr.tar.bz2"; 294 locale = "pl"; 295 arch = "linux-x86_64"; 296 - sha256 = "2dbfacbedb8dcfaa57553240ea7b52320a5ee0ea2351aeba731532674fd8903e"; 297 } 298 { 299 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/pt-BR/thunderbird-128.5.0esr.tar.bz2"; 300 locale = "pt-BR"; 301 arch = "linux-x86_64"; 302 - sha256 = "91e59ecd438834f178d283f305500030c5d7f37ecd527c4c052a1b77b0f789d9"; 303 } 304 { 305 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/pt-PT/thunderbird-128.5.0esr.tar.bz2"; 306 locale = "pt-PT"; 307 arch = "linux-x86_64"; 308 - sha256 = "3677a355554546e8dfd0654829662fb5d0ec50eeb95516ce50a96e656f055bd4"; 309 } 310 { 311 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/rm/thunderbird-128.5.0esr.tar.bz2"; 312 locale = "rm"; 313 arch = "linux-x86_64"; 314 - sha256 = "4ff5642d2e03153feb8c692959879391bb2506fe7727009ad50ca8163c06f293"; 315 } 316 { 317 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ro/thunderbird-128.5.0esr.tar.bz2"; 318 locale = "ro"; 319 arch = "linux-x86_64"; 320 - sha256 = "db9d6d7e5b786d20f3fa9dc270a0ea1cc6e2ca3c1c87079f2b490300b402bc02"; 321 } 322 { 323 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ru/thunderbird-128.5.0esr.tar.bz2"; 324 locale = "ru"; 325 arch = "linux-x86_64"; 326 - sha256 = "0153f7690b1996b0e0f13bec1cbb19eaedd84dd3a10d0e3f4343ecc623407140"; 327 } 328 { 329 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/sk/thunderbird-128.5.0esr.tar.bz2"; 330 locale = "sk"; 331 arch = "linux-x86_64"; 332 - sha256 = "0ed388ce9ff2bfc214b612b0a2e8982ec6162e4950769b0deb89a362f5440900"; 333 } 334 { 335 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/sl/thunderbird-128.5.0esr.tar.bz2"; 336 locale = "sl"; 337 arch = "linux-x86_64"; 338 - sha256 = "2cbd30d96f27d5d292d88c0a73e2e13589b254527d109fab2d2aae7bda7d7ff1"; 339 } 340 { 341 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/sq/thunderbird-128.5.0esr.tar.bz2"; 342 locale = "sq"; 343 arch = "linux-x86_64"; 344 - sha256 = "cdbf3a92fa32a750575b6c1258ddae971ce62a1e6d57ac24b137742830306977"; 345 } 346 { 347 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/sr/thunderbird-128.5.0esr.tar.bz2"; 348 locale = "sr"; 349 arch = "linux-x86_64"; 350 - sha256 = "f67aa8002c54ff88405ee37a2d875826fd46e8481750138531c713d15a97d79c"; 351 } 352 { 353 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/sv-SE/thunderbird-128.5.0esr.tar.bz2"; 354 locale = "sv-SE"; 355 arch = "linux-x86_64"; 356 - sha256 = "82c2b8a75d8bb8c3261366b049ea6524317d254d2dc61a5ee813d7220e927f6c"; 357 } 358 { 359 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/th/thunderbird-128.5.0esr.tar.bz2"; 360 locale = "th"; 361 arch = "linux-x86_64"; 362 - sha256 = "5e55930bda79b5cefd10f5d7418f67cc355eb5b3548e424984a8ee18c5aba5ef"; 363 } 364 { 365 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/tr/thunderbird-128.5.0esr.tar.bz2"; 366 locale = "tr"; 367 arch = "linux-x86_64"; 368 - sha256 = "4285425d9cebd097360212de6d9534f05373478946b6ad1a0233421246fa7c0d"; 369 } 370 { 371 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/uk/thunderbird-128.5.0esr.tar.bz2"; 372 locale = "uk"; 373 arch = "linux-x86_64"; 374 - sha256 = "417c6482d30b61839b3545cbcccb7664f91e9993a94a7475a513a6842646240d"; 375 } 376 { 377 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/uz/thunderbird-128.5.0esr.tar.bz2"; 378 locale = "uz"; 379 arch = "linux-x86_64"; 380 - sha256 = "6a051d014f8bdca6195e3f21dd481be9a232501e0280843cc07b0fde09149801"; 381 } 382 { 383 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/vi/thunderbird-128.5.0esr.tar.bz2"; 384 locale = "vi"; 385 arch = "linux-x86_64"; 386 - sha256 = "d5ebe571e630ef8a963f5a27e6e0096eccfc12f35fd5437bae82bacdf0e5538e"; 387 } 388 { 389 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/zh-CN/thunderbird-128.5.0esr.tar.bz2"; 390 locale = "zh-CN"; 391 arch = "linux-x86_64"; 392 - sha256 = "97563908550924bc43d99da7d096e7260b3c23e59df58a51bfe1b6c76de54f33"; 393 } 394 { 395 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/zh-TW/thunderbird-128.5.0esr.tar.bz2"; 396 locale = "zh-TW"; 397 arch = "linux-x86_64"; 398 - sha256 = "bce0c4667d7444d63802badffdaad9f7bf3d916233f836b98b7565fc68171804"; 399 } 400 { 401 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/af/thunderbird-128.5.0esr.tar.bz2"; 402 locale = "af"; 403 arch = "linux-i686"; 404 - sha256 = "ba311de618f1d21f816de08fe19410f5e7623c177ca1a60054b62457662b4721"; 405 } 406 { 407 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ar/thunderbird-128.5.0esr.tar.bz2"; 408 locale = "ar"; 409 arch = "linux-i686"; 410 - sha256 = "7b9a0a04a18ee7a051254fd72d0cefbbf82b86cf3b6fcefaec8481ca969c70bc"; 411 } 412 { 413 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ast/thunderbird-128.5.0esr.tar.bz2"; 414 locale = "ast"; 415 arch = "linux-i686"; 416 - sha256 = "3cf834ba074f2a38e0686d820ee9abe6714b3f0e4d1c385b22bf81e4681eb42a"; 417 } 418 { 419 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/be/thunderbird-128.5.0esr.tar.bz2"; 420 locale = "be"; 421 arch = "linux-i686"; 422 - sha256 = "9c7e2f2e1285b4a728948226d8b3494c79053b5ec210b2b42c261b18a79c8f68"; 423 } 424 { 425 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/bg/thunderbird-128.5.0esr.tar.bz2"; 426 locale = "bg"; 427 arch = "linux-i686"; 428 - sha256 = "fa4786856bf6966c5e6f3bb0066950cd3da1f6fed2179e7071ca76d96ea09880"; 429 } 430 { 431 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/br/thunderbird-128.5.0esr.tar.bz2"; 432 locale = "br"; 433 arch = "linux-i686"; 434 - sha256 = "9baa235bfdf221d9494c028ec29f968be68a23595ef4bb6817f71bccaa5cae8b"; 435 } 436 { 437 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ca/thunderbird-128.5.0esr.tar.bz2"; 438 locale = "ca"; 439 arch = "linux-i686"; 440 - sha256 = "d3ca0c86f8ce9313272c540cf7ab87e01b7a6f183adceff9f31a571eacbcc0bc"; 441 } 442 { 443 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/cak/thunderbird-128.5.0esr.tar.bz2"; 444 locale = "cak"; 445 arch = "linux-i686"; 446 - sha256 = "97cb59dfaaf9f7f7c68f3d6030aa4e65314f80ed2be7671a188d10aeb2b1166a"; 447 } 448 { 449 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/cs/thunderbird-128.5.0esr.tar.bz2"; 450 locale = "cs"; 451 arch = "linux-i686"; 452 - sha256 = "acb99acc481fdaa9135e07e10c962df82d66f7296fec84bbddba324248a3b115"; 453 } 454 { 455 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/cy/thunderbird-128.5.0esr.tar.bz2"; 456 locale = "cy"; 457 arch = "linux-i686"; 458 - sha256 = "b3945247f968f32b59fbea6454d05bc32973d6caee3a1b89a3551555321ee18c"; 459 } 460 { 461 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/da/thunderbird-128.5.0esr.tar.bz2"; 462 locale = "da"; 463 arch = "linux-i686"; 464 - sha256 = "c786d70438ece2b4b20d4ddfb79ba150981e4a46d5095525da9cfe5ec8d3b5ee"; 465 } 466 { 467 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/de/thunderbird-128.5.0esr.tar.bz2"; 468 locale = "de"; 469 arch = "linux-i686"; 470 - sha256 = "98e47e0264d620ec111ebc29fd56f07b113adf4dabe29c8982e6ae8f325dc0df"; 471 } 472 { 473 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/dsb/thunderbird-128.5.0esr.tar.bz2"; 474 locale = "dsb"; 475 arch = "linux-i686"; 476 - sha256 = "61c38ccd7c956da45aae15ed5d83387efdf6d1a2efd5a23bd2cd689885d99732"; 477 } 478 { 479 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/el/thunderbird-128.5.0esr.tar.bz2"; 480 locale = "el"; 481 arch = "linux-i686"; 482 - sha256 = "ee48d2bc6b808b38ef15381c35f152fd8c6b6c6ea2847a8bf1664299787ced22"; 483 } 484 { 485 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/en-CA/thunderbird-128.5.0esr.tar.bz2"; 486 locale = "en-CA"; 487 arch = "linux-i686"; 488 - sha256 = "4e2ddaea30c6e96305816e325799480976bd4a592a12aeec3847f432e60f66b1"; 489 } 490 { 491 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/en-GB/thunderbird-128.5.0esr.tar.bz2"; 492 locale = "en-GB"; 493 arch = "linux-i686"; 494 - sha256 = "d5e799d093ba2aa4559e4be92791e2be385db915fbfc2965d87d3c19b2a67a46"; 495 } 496 { 497 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/en-US/thunderbird-128.5.0esr.tar.bz2"; 498 locale = "en-US"; 499 arch = "linux-i686"; 500 - sha256 = "225928a3496a12af6b7b324255702e0057e3e80dd4bafb1166394a2bc3933d2c"; 501 } 502 { 503 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/es-AR/thunderbird-128.5.0esr.tar.bz2"; 504 locale = "es-AR"; 505 arch = "linux-i686"; 506 - sha256 = "269ec58e0278505c778353e454e91756720b8c0c65b8a976e7ab443380c6c1bc"; 507 } 508 { 509 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/es-ES/thunderbird-128.5.0esr.tar.bz2"; 510 locale = "es-ES"; 511 arch = "linux-i686"; 512 - sha256 = "38ae3bb15128c5c3aa7f8e9a3361c5cff75f16fc27bccc55589f6e93b65567d9"; 513 } 514 { 515 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/es-MX/thunderbird-128.5.0esr.tar.bz2"; 516 locale = "es-MX"; 517 arch = "linux-i686"; 518 - sha256 = "44d11638c8cb8a7aa2072b37b384d17e125ab5ba62459bc2fd849e3965a66f2c"; 519 } 520 { 521 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/et/thunderbird-128.5.0esr.tar.bz2"; 522 locale = "et"; 523 arch = "linux-i686"; 524 - sha256 = "fdd71790464e206363c079d118fa318b2b5ae530851d381b832ccf29a172dce9"; 525 } 526 { 527 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/eu/thunderbird-128.5.0esr.tar.bz2"; 528 locale = "eu"; 529 arch = "linux-i686"; 530 - sha256 = "4b88c2d28eea088bdcbfb6abfc3a0591a0ee2792d009027b5f420785ec8f6313"; 531 } 532 { 533 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/fi/thunderbird-128.5.0esr.tar.bz2"; 534 locale = "fi"; 535 arch = "linux-i686"; 536 - sha256 = "55e655f7dd3ce2143cdf9069f87fab107a604c61503c8212f77db95d4f3d98cf"; 537 } 538 { 539 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/fr/thunderbird-128.5.0esr.tar.bz2"; 540 locale = "fr"; 541 arch = "linux-i686"; 542 - sha256 = "cc8f46937ef91d7eb2a5e8eadf3f8a493c2575d028ea8c9644e33913f7475d08"; 543 } 544 { 545 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/fy-NL/thunderbird-128.5.0esr.tar.bz2"; 546 locale = "fy-NL"; 547 arch = "linux-i686"; 548 - sha256 = "b77292a17c79f90d986e5b29dd7a5953fe4bd25cf50c8b857c7577d4fcbccf1f"; 549 } 550 { 551 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ga-IE/thunderbird-128.5.0esr.tar.bz2"; 552 locale = "ga-IE"; 553 arch = "linux-i686"; 554 - sha256 = "d094e795f50e27de04f6955043cbdef837d6ef62dc46dc76a4d0ae563a02f80e"; 555 } 556 { 557 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/gd/thunderbird-128.5.0esr.tar.bz2"; 558 locale = "gd"; 559 arch = "linux-i686"; 560 - sha256 = "ded59f8212ffbe5b232cc966a41868ec7693f4512e4601d248090842632756da"; 561 } 562 { 563 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/gl/thunderbird-128.5.0esr.tar.bz2"; 564 locale = "gl"; 565 arch = "linux-i686"; 566 - sha256 = "38772837b18fc6c1b76776e346b5fe55c247846eaef66c438d0041b88e68179b"; 567 } 568 { 569 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/he/thunderbird-128.5.0esr.tar.bz2"; 570 locale = "he"; 571 arch = "linux-i686"; 572 - sha256 = "d3b5d4f548520e72c5c73aeafaf322246c1211027903b7364cab2b343ac382c0"; 573 } 574 { 575 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/hr/thunderbird-128.5.0esr.tar.bz2"; 576 locale = "hr"; 577 arch = "linux-i686"; 578 - sha256 = "02f9f830b1337d657d14e185426b1e1f7c0843960539391312b496285ca575b9"; 579 } 580 { 581 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/hsb/thunderbird-128.5.0esr.tar.bz2"; 582 locale = "hsb"; 583 arch = "linux-i686"; 584 - sha256 = "7e9d8c754dc440413f69ce6c9c08c312e02c7492317541b61fa408ba234c7ea0"; 585 } 586 { 587 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/hu/thunderbird-128.5.0esr.tar.bz2"; 588 locale = "hu"; 589 arch = "linux-i686"; 590 - sha256 = "c346a07a93298fa66ff79013c1551e544920da1eacf5afcb8f556dc1bdbfd38f"; 591 } 592 { 593 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/hy-AM/thunderbird-128.5.0esr.tar.bz2"; 594 locale = "hy-AM"; 595 arch = "linux-i686"; 596 - sha256 = "b3d19416bfe0101db8c03a4de0c686da8fcf187943c4d187a5eaf1953d11d9f9"; 597 } 598 { 599 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/id/thunderbird-128.5.0esr.tar.bz2"; 600 locale = "id"; 601 arch = "linux-i686"; 602 - sha256 = "e7bbb5da9c98343fe39ed2e4a816825b9ac4e45c89e31a0f0b3ed685c3447bf3"; 603 } 604 { 605 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/is/thunderbird-128.5.0esr.tar.bz2"; 606 locale = "is"; 607 arch = "linux-i686"; 608 - sha256 = "1528dacdd88638660567ce992705f63675530389161c5af6e3c8e9388d624faf"; 609 } 610 { 611 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/it/thunderbird-128.5.0esr.tar.bz2"; 612 locale = "it"; 613 arch = "linux-i686"; 614 - sha256 = "2ab9b4b12aa7ffbedf2e74719ece9cb9cbe45005e751f3b4b416ad0c31ea995e"; 615 } 616 { 617 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ja/thunderbird-128.5.0esr.tar.bz2"; 618 locale = "ja"; 619 arch = "linux-i686"; 620 - sha256 = "48556fcff723564962d5efc2d9b81f44f284fc402ed637b2a399c4ee39820365"; 621 } 622 { 623 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ka/thunderbird-128.5.0esr.tar.bz2"; 624 locale = "ka"; 625 arch = "linux-i686"; 626 - sha256 = "32cae5dc83bc8af9e8dc78a9d4840ae65dc7cb9398eb8941b1eb447a3673d5a3"; 627 } 628 { 629 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/kab/thunderbird-128.5.0esr.tar.bz2"; 630 locale = "kab"; 631 arch = "linux-i686"; 632 - sha256 = "9777ffd9750589355d6813a55bc0467f956020e8f406b121e9f309e1e7b479da"; 633 } 634 { 635 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/kk/thunderbird-128.5.0esr.tar.bz2"; 636 locale = "kk"; 637 arch = "linux-i686"; 638 - sha256 = "668aeab0a0805d16ee124b5b01b70558d1b719a3f1192c13a180d119ec5dc44c"; 639 } 640 { 641 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ko/thunderbird-128.5.0esr.tar.bz2"; 642 locale = "ko"; 643 arch = "linux-i686"; 644 - sha256 = "bc3cb3148ff679839bdfded84fa7cd304293a6aad2309af6660436e5bba9b8ec"; 645 } 646 { 647 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/lt/thunderbird-128.5.0esr.tar.bz2"; 648 locale = "lt"; 649 arch = "linux-i686"; 650 - sha256 = "0892035b80226a7b2ec419d50784abe51f71554fe18d93c2ec19d2712e94992d"; 651 } 652 { 653 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/lv/thunderbird-128.5.0esr.tar.bz2"; 654 locale = "lv"; 655 arch = "linux-i686"; 656 - sha256 = "48d8939c0ef1a9873ed899c9c48136b9588834d92cf30e3c596c852ba52151cc"; 657 } 658 { 659 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ms/thunderbird-128.5.0esr.tar.bz2"; 660 locale = "ms"; 661 arch = "linux-i686"; 662 - sha256 = "3232bbabf77527e425cd11482ce3958f123ef15d678091d5db8557bb6e44bb7e"; 663 } 664 { 665 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/nb-NO/thunderbird-128.5.0esr.tar.bz2"; 666 locale = "nb-NO"; 667 arch = "linux-i686"; 668 - sha256 = "278250280ca434aa4609d6f40f736c9eb2e591f860732acccc14caea9d4fce91"; 669 } 670 { 671 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/nl/thunderbird-128.5.0esr.tar.bz2"; 672 locale = "nl"; 673 arch = "linux-i686"; 674 - sha256 = "06d5b30f31d8cb020df0b29d8bf116664623b58dba6fccb4da49620d55e11097"; 675 } 676 { 677 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/nn-NO/thunderbird-128.5.0esr.tar.bz2"; 678 locale = "nn-NO"; 679 arch = "linux-i686"; 680 - sha256 = "6a06b0eb2885a9673bd46f4f2fa2298e3ae97ea460e2b86b7a4974d37ab056b3"; 681 } 682 { 683 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/pa-IN/thunderbird-128.5.0esr.tar.bz2"; 684 locale = "pa-IN"; 685 arch = "linux-i686"; 686 - sha256 = "540fea06d1665754e8aa440f2f09267b4907245d3f4a5f5a01ffd375c8b1f9b9"; 687 } 688 { 689 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/pl/thunderbird-128.5.0esr.tar.bz2"; 690 locale = "pl"; 691 arch = "linux-i686"; 692 - sha256 = "50601e0dcc19aede6d8f731690a98accd3f190525eb3f9239ac002943736772e"; 693 } 694 { 695 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/pt-BR/thunderbird-128.5.0esr.tar.bz2"; 696 locale = "pt-BR"; 697 arch = "linux-i686"; 698 - sha256 = "5f0f63a764a1078219fd74890260cdd88409c635c1ec5159170dd55f53e77269"; 699 } 700 { 701 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/pt-PT/thunderbird-128.5.0esr.tar.bz2"; 702 locale = "pt-PT"; 703 arch = "linux-i686"; 704 - sha256 = "14aa259fb2791e21d597267972d73fd7653bccd9ae5d46568a2356f8d6b99ff3"; 705 } 706 { 707 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/rm/thunderbird-128.5.0esr.tar.bz2"; 708 locale = "rm"; 709 arch = "linux-i686"; 710 - sha256 = "dc76ed46119a8674bcf1d635736fed833f5059c1bbfcb5ec438cbb14ce3cfc60"; 711 } 712 { 713 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ro/thunderbird-128.5.0esr.tar.bz2"; 714 locale = "ro"; 715 arch = "linux-i686"; 716 - sha256 = "6cd8772297a9ad2081a2b09a98f7d927907734cce5be4353c323f1a47d7c5c53"; 717 } 718 { 719 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ru/thunderbird-128.5.0esr.tar.bz2"; 720 locale = "ru"; 721 arch = "linux-i686"; 722 - sha256 = "09e176ce5b1fdc83011ee13656a16f05ac001b37b312c60499ed125a7d0045d8"; 723 } 724 { 725 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/sk/thunderbird-128.5.0esr.tar.bz2"; 726 locale = "sk"; 727 arch = "linux-i686"; 728 - sha256 = "d92580dc8af74dc6f8e42f83816d5f673023bf3c99d111e4db209169120844e7"; 729 } 730 { 731 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/sl/thunderbird-128.5.0esr.tar.bz2"; 732 locale = "sl"; 733 arch = "linux-i686"; 734 - sha256 = "9a7a336d20a67550a29820d0971c35b9ea094a725bc31322570ed87c3d0c6df6"; 735 } 736 { 737 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/sq/thunderbird-128.5.0esr.tar.bz2"; 738 locale = "sq"; 739 arch = "linux-i686"; 740 - sha256 = "4b30e60ddd89e203f43c229e8a068f9168d4950f28872b3718526bf1cec96fee"; 741 } 742 { 743 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/sr/thunderbird-128.5.0esr.tar.bz2"; 744 locale = "sr"; 745 arch = "linux-i686"; 746 - sha256 = "cf81a4717f8711b3271c3885d30307ed21096d5c75cd350d7c147df14758e49c"; 747 } 748 { 749 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/sv-SE/thunderbird-128.5.0esr.tar.bz2"; 750 locale = "sv-SE"; 751 arch = "linux-i686"; 752 - sha256 = "5fd223489a2547f1bd90c86ffd92ba3fab9ffca84830927d70b2d2d875d370f3"; 753 } 754 { 755 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/th/thunderbird-128.5.0esr.tar.bz2"; 756 locale = "th"; 757 arch = "linux-i686"; 758 - sha256 = "278b2051256b8d2185701ddce3ddded8db683295e1d8b28ae26c5f0aeb4c4dde"; 759 } 760 { 761 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/tr/thunderbird-128.5.0esr.tar.bz2"; 762 locale = "tr"; 763 arch = "linux-i686"; 764 - sha256 = "36a716a4e38eedde49ab9632d32782fa244eed8091caa7a7acd4065c523994b5"; 765 } 766 { 767 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/uk/thunderbird-128.5.0esr.tar.bz2"; 768 locale = "uk"; 769 arch = "linux-i686"; 770 - sha256 = "f3e32dcbde43f6f6cbf85da393d777b781022264897958b5bc31e5cb9b4dfa74"; 771 } 772 { 773 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/uz/thunderbird-128.5.0esr.tar.bz2"; 774 locale = "uz"; 775 arch = "linux-i686"; 776 - sha256 = "4bf7147f7b81a06bf8768cc765dd8a18689ae275d802cfe21da31a80edff0dbc"; 777 } 778 { 779 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/vi/thunderbird-128.5.0esr.tar.bz2"; 780 locale = "vi"; 781 arch = "linux-i686"; 782 - sha256 = "50446ba6696a84faaedda2d2f8e733c37410ac6d94f74f6634a9f3bacee326cd"; 783 } 784 { 785 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/zh-CN/thunderbird-128.5.0esr.tar.bz2"; 786 locale = "zh-CN"; 787 arch = "linux-i686"; 788 - sha256 = "f1bf08a735a7d6aab3a732be36ad5d37c880673a268feb4272d82b3beef48b04"; 789 } 790 { 791 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/zh-TW/thunderbird-128.5.0esr.tar.bz2"; 792 locale = "zh-TW"; 793 arch = "linux-i686"; 794 - sha256 = "523cab1dac4989ea47a3432d3d99bb467f9e1e71e90a9c0069c81eb9c8ff946e"; 795 } 796 ]; 797 }
··· 1 { 2 + version = "128.5.2esr"; 3 sources = [ 4 { 5 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/af/thunderbird-128.5.2esr.tar.bz2"; 6 locale = "af"; 7 arch = "linux-x86_64"; 8 + sha256 = "e73b10a8d9e40ecd96db4b93878f37fc31081c85f553dd14507bf79d24b858a5"; 9 } 10 { 11 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ar/thunderbird-128.5.2esr.tar.bz2"; 12 locale = "ar"; 13 arch = "linux-x86_64"; 14 + sha256 = "132d3290d331bde59430e6b3c112f5c8f192168c7ccfc9257fd259170af36a0c"; 15 } 16 { 17 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ast/thunderbird-128.5.2esr.tar.bz2"; 18 locale = "ast"; 19 arch = "linux-x86_64"; 20 + sha256 = "3d51f55ad635abe4c9704fb892c164ca3a2a5f1ed4ae566e92c2189bc7a27783"; 21 } 22 { 23 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/be/thunderbird-128.5.2esr.tar.bz2"; 24 locale = "be"; 25 arch = "linux-x86_64"; 26 + sha256 = "adedd236013a8e1e0e00bbfd10221334232913ff38f5f34273fd0e5cbc355d41"; 27 } 28 { 29 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/bg/thunderbird-128.5.2esr.tar.bz2"; 30 locale = "bg"; 31 arch = "linux-x86_64"; 32 + sha256 = "a660ba1d0570ee4bbc10c899929cd72083fdcd80916858d44d5a38790415227b"; 33 } 34 { 35 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/br/thunderbird-128.5.2esr.tar.bz2"; 36 locale = "br"; 37 arch = "linux-x86_64"; 38 + sha256 = "81a49db4cc98f56bb1eb8a8aa340a03ffba7cdc0726e2ef23943503ad2c3c487"; 39 } 40 { 41 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ca/thunderbird-128.5.2esr.tar.bz2"; 42 locale = "ca"; 43 arch = "linux-x86_64"; 44 + sha256 = "9bee3b2d32526aef2d652a70fe15b9cef220553dbca91d3a43154ab06631b39d"; 45 } 46 { 47 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/cak/thunderbird-128.5.2esr.tar.bz2"; 48 locale = "cak"; 49 arch = "linux-x86_64"; 50 + sha256 = "fac50c050a1423e38785e93029352766904161f0b5629f0324ee273ec9a86e33"; 51 } 52 { 53 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/cs/thunderbird-128.5.2esr.tar.bz2"; 54 locale = "cs"; 55 arch = "linux-x86_64"; 56 + sha256 = "5c14bc65bf6adbdf538e14bff42348786498caeac9bd6b2cd5a3d60cd196f131"; 57 } 58 { 59 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/cy/thunderbird-128.5.2esr.tar.bz2"; 60 locale = "cy"; 61 arch = "linux-x86_64"; 62 + sha256 = "14103b894dc995b4f402b7b27a4555ff401c368d2e25cab15ce78a63bbd20995"; 63 } 64 { 65 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/da/thunderbird-128.5.2esr.tar.bz2"; 66 locale = "da"; 67 arch = "linux-x86_64"; 68 + sha256 = "cfa90363282c0d7fa976b179d73d2260e257e3e028769204f5c299f137f60bdf"; 69 } 70 { 71 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/de/thunderbird-128.5.2esr.tar.bz2"; 72 locale = "de"; 73 arch = "linux-x86_64"; 74 + sha256 = "24aee57c98140660e4ad6dc89fbd61758aeea823a7ed682de8b6916bc9a54ce0"; 75 } 76 { 77 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/dsb/thunderbird-128.5.2esr.tar.bz2"; 78 locale = "dsb"; 79 arch = "linux-x86_64"; 80 + sha256 = "7fd2e3c788e2ef2eab12616271d7b8a4f1ed2e9ab6ef43e0b6617ca0aa0e6351"; 81 } 82 { 83 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/el/thunderbird-128.5.2esr.tar.bz2"; 84 locale = "el"; 85 arch = "linux-x86_64"; 86 + sha256 = "c62f977f4af724bf6f7a4da25eb85e77b9ba6c5aaeb8d6165f9c43bb65d5918c"; 87 } 88 { 89 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/en-CA/thunderbird-128.5.2esr.tar.bz2"; 90 locale = "en-CA"; 91 arch = "linux-x86_64"; 92 + sha256 = "8878bf63c6b6a2ae5a7d56b7f4df52aadd053736ba0143ec52cfb15e57315de9"; 93 } 94 { 95 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/en-GB/thunderbird-128.5.2esr.tar.bz2"; 96 locale = "en-GB"; 97 arch = "linux-x86_64"; 98 + sha256 = "1810e254567c611dcc42481a19f3fcaa8cee499407ddcbae7fcfecfca0ae198c"; 99 } 100 { 101 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/en-US/thunderbird-128.5.2esr.tar.bz2"; 102 locale = "en-US"; 103 arch = "linux-x86_64"; 104 + sha256 = "1ac9ca9c9e2aa304ee1735b3667f9189eefd639ccfcb809ca8db1ea534f8345c"; 105 } 106 { 107 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/es-AR/thunderbird-128.5.2esr.tar.bz2"; 108 locale = "es-AR"; 109 arch = "linux-x86_64"; 110 + sha256 = "22d10810a4e4a73ae0226effd60e0ed7c5600ba5a79d207abaad97adce3cfa42"; 111 } 112 { 113 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/es-ES/thunderbird-128.5.2esr.tar.bz2"; 114 locale = "es-ES"; 115 arch = "linux-x86_64"; 116 + sha256 = "5e300f5f773dbe5248e385a41f808460e53902c7afc6a36d2bb4af971678d2bd"; 117 } 118 { 119 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/es-MX/thunderbird-128.5.2esr.tar.bz2"; 120 locale = "es-MX"; 121 arch = "linux-x86_64"; 122 + sha256 = "ca9fe6d3c498a069c921dbcaeef58bd3d2a6482acb945fdc57ec06c2b31b0cde"; 123 } 124 { 125 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/et/thunderbird-128.5.2esr.tar.bz2"; 126 locale = "et"; 127 arch = "linux-x86_64"; 128 + sha256 = "68867af322f9963768694fd2f5128de06319a7f7ab397226726f3a521139fb80"; 129 } 130 { 131 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/eu/thunderbird-128.5.2esr.tar.bz2"; 132 locale = "eu"; 133 arch = "linux-x86_64"; 134 + sha256 = "0b6590d4ef81ba9247004ada1b5ef5dd9263dfd6e112340cd5fd6cd4a49819bd"; 135 } 136 { 137 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/fi/thunderbird-128.5.2esr.tar.bz2"; 138 locale = "fi"; 139 arch = "linux-x86_64"; 140 + sha256 = "2b44ed65368d85177409b4b99c478af4206087fb9cda6e5dd937b57d4d263283"; 141 } 142 { 143 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/fr/thunderbird-128.5.2esr.tar.bz2"; 144 locale = "fr"; 145 arch = "linux-x86_64"; 146 + sha256 = "650038253f5907e3e6b9fb709b7d51ba0e9cdb3a20f67896380393ac41e1cdf8"; 147 } 148 { 149 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/fy-NL/thunderbird-128.5.2esr.tar.bz2"; 150 locale = "fy-NL"; 151 arch = "linux-x86_64"; 152 + sha256 = "d452e4ada6d32ce656624c039debf68114eed44d82e17e4de35600897265a960"; 153 } 154 { 155 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ga-IE/thunderbird-128.5.2esr.tar.bz2"; 156 locale = "ga-IE"; 157 arch = "linux-x86_64"; 158 + sha256 = "9fe6cd641b035d85cd3027d064dcdf19031d2094aae2b0adb9b85cdb3f504e57"; 159 } 160 { 161 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/gd/thunderbird-128.5.2esr.tar.bz2"; 162 locale = "gd"; 163 arch = "linux-x86_64"; 164 + sha256 = "ce6a3e33ba9a7042fb377ae51516e7a8b965e548f6f594e5f980dd3320aeacd1"; 165 } 166 { 167 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/gl/thunderbird-128.5.2esr.tar.bz2"; 168 locale = "gl"; 169 arch = "linux-x86_64"; 170 + sha256 = "e457d77bb51f2efb7fa47a5dc3fa3399dafb2a66e829ed173e28caa723aab955"; 171 } 172 { 173 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/he/thunderbird-128.5.2esr.tar.bz2"; 174 locale = "he"; 175 arch = "linux-x86_64"; 176 + sha256 = "7edb78ec181f1135803430acc7f7675ad11cf7a608cd71044cbdc3c88b820985"; 177 } 178 { 179 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/hr/thunderbird-128.5.2esr.tar.bz2"; 180 locale = "hr"; 181 arch = "linux-x86_64"; 182 + sha256 = "b1e4fbd25524048935640bd7fbec9684c329c9a701520302455498a5454978a4"; 183 } 184 { 185 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/hsb/thunderbird-128.5.2esr.tar.bz2"; 186 locale = "hsb"; 187 arch = "linux-x86_64"; 188 + sha256 = "1c4946dcd5d18c02d7f5bf8c183998b82b4a537887618740aca68290e8349714"; 189 } 190 { 191 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/hu/thunderbird-128.5.2esr.tar.bz2"; 192 locale = "hu"; 193 arch = "linux-x86_64"; 194 + sha256 = "f9f041bbd9a5d484e3be78133e16965488d41f6f707cb52a5eac1caa688555ad"; 195 } 196 { 197 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/hy-AM/thunderbird-128.5.2esr.tar.bz2"; 198 locale = "hy-AM"; 199 arch = "linux-x86_64"; 200 + sha256 = "1ff94e46e03f890cffdc2b05906759630b88d73d8b265b242b87cc1f7a92818d"; 201 } 202 { 203 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/id/thunderbird-128.5.2esr.tar.bz2"; 204 locale = "id"; 205 arch = "linux-x86_64"; 206 + sha256 = "e8b6e07a22b488e8965b9926930591a29773b36180f8b3a7bbc10beaf73fc4aa"; 207 } 208 { 209 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/is/thunderbird-128.5.2esr.tar.bz2"; 210 locale = "is"; 211 arch = "linux-x86_64"; 212 + sha256 = "699be72c00ed0ccc06d7999415b638396cd5f7b5d7c7572d12c50d59bf1cc78e"; 213 } 214 { 215 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/it/thunderbird-128.5.2esr.tar.bz2"; 216 locale = "it"; 217 arch = "linux-x86_64"; 218 + sha256 = "412f24529759ab8daaa8a22dcb3b6a1587c44214479b1a9946a70c9c117e4f5e"; 219 } 220 { 221 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ja/thunderbird-128.5.2esr.tar.bz2"; 222 locale = "ja"; 223 arch = "linux-x86_64"; 224 + sha256 = "e57d8628a149cf6da3b653874ba379a5e84a419c72a78350033e3983ab6ff02b"; 225 } 226 { 227 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ka/thunderbird-128.5.2esr.tar.bz2"; 228 locale = "ka"; 229 arch = "linux-x86_64"; 230 + sha256 = "f97c13968a2eb0c52aa37a4b22dc85bedb4cf300d373bf340e956ff3fefe1686"; 231 } 232 { 233 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/kab/thunderbird-128.5.2esr.tar.bz2"; 234 locale = "kab"; 235 arch = "linux-x86_64"; 236 + sha256 = "0885808a8659b328dabba67215904332727bc79956c7b197a67546a4b2148c2b"; 237 } 238 { 239 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/kk/thunderbird-128.5.2esr.tar.bz2"; 240 locale = "kk"; 241 arch = "linux-x86_64"; 242 + sha256 = "7a37191c7aa8a7c421c752379cc14a9ce705c5a517667f9aa082849c4bd20229"; 243 } 244 { 245 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ko/thunderbird-128.5.2esr.tar.bz2"; 246 locale = "ko"; 247 arch = "linux-x86_64"; 248 + sha256 = "d28604e95463e600353ead6970b04ea30f943809a7c0ab52a797ca5235faf4ac"; 249 } 250 { 251 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/lt/thunderbird-128.5.2esr.tar.bz2"; 252 locale = "lt"; 253 arch = "linux-x86_64"; 254 + sha256 = "79cff99e2da9d4da40331ded5c69fe0f6836ea5ddd169b930f4a735946091e4d"; 255 } 256 { 257 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/lv/thunderbird-128.5.2esr.tar.bz2"; 258 locale = "lv"; 259 arch = "linux-x86_64"; 260 + sha256 = "eaf7bd34f88ba8cd251b31d105cca5e48854bfda4a25ebdeff96c91f097a0f27"; 261 } 262 { 263 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ms/thunderbird-128.5.2esr.tar.bz2"; 264 locale = "ms"; 265 arch = "linux-x86_64"; 266 + sha256 = "8c0afe7c25df0210202c2373fbfc346d9210beb26cf85f8e562e2726ae6dcf1b"; 267 } 268 { 269 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/nb-NO/thunderbird-128.5.2esr.tar.bz2"; 270 locale = "nb-NO"; 271 arch = "linux-x86_64"; 272 + sha256 = "64aec4507e0c2cbc8d434807a1a740e1f90992ef7d7d01b4431c243a7d88130b"; 273 } 274 { 275 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/nl/thunderbird-128.5.2esr.tar.bz2"; 276 locale = "nl"; 277 arch = "linux-x86_64"; 278 + sha256 = "12a0b419b284580c87cc1cefb458a8a65369c92c4ccc2fec729bfd086ddcc558"; 279 } 280 { 281 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/nn-NO/thunderbird-128.5.2esr.tar.bz2"; 282 locale = "nn-NO"; 283 arch = "linux-x86_64"; 284 + sha256 = "b41578881f54225b6c18a86984aceb9550f82660da24f2a5827720921190c8ff"; 285 } 286 { 287 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/pa-IN/thunderbird-128.5.2esr.tar.bz2"; 288 locale = "pa-IN"; 289 arch = "linux-x86_64"; 290 + sha256 = "7cae0a6a0ca762904eaf16e03df9d811a571696ef9657d3725c98f1051cb48e5"; 291 } 292 { 293 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/pl/thunderbird-128.5.2esr.tar.bz2"; 294 locale = "pl"; 295 arch = "linux-x86_64"; 296 + sha256 = "649d1813dbf9d9d0a39059f4aeaffb9c3a82329d84c02c2e9b35e6a9f34d4318"; 297 } 298 { 299 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/pt-BR/thunderbird-128.5.2esr.tar.bz2"; 300 locale = "pt-BR"; 301 arch = "linux-x86_64"; 302 + sha256 = "37c7a69254ad91de267514b66a74a2c27dc0e8e75c730722c6c1c38ba11cffc2"; 303 } 304 { 305 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/pt-PT/thunderbird-128.5.2esr.tar.bz2"; 306 locale = "pt-PT"; 307 arch = "linux-x86_64"; 308 + sha256 = "f902653826de549d8520ec35954cf371684498430ee9f56bf1bcf2329a851e25"; 309 } 310 { 311 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/rm/thunderbird-128.5.2esr.tar.bz2"; 312 locale = "rm"; 313 arch = "linux-x86_64"; 314 + sha256 = "02c2f03927cd5ee837f909aa683d1b11dfc1fb8e0dc6de3003196c923bb95ea6"; 315 } 316 { 317 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ro/thunderbird-128.5.2esr.tar.bz2"; 318 locale = "ro"; 319 arch = "linux-x86_64"; 320 + sha256 = "9c39be07f7b063926983e2f6cca0745f0c2d42706a3b483dc4f4a5b1d3abdb6e"; 321 } 322 { 323 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ru/thunderbird-128.5.2esr.tar.bz2"; 324 locale = "ru"; 325 arch = "linux-x86_64"; 326 + sha256 = "8781ca988ab2ca4865e2cdf729952e51daed1dc49a4d7b9cdcf7d44a54156507"; 327 } 328 { 329 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/sk/thunderbird-128.5.2esr.tar.bz2"; 330 locale = "sk"; 331 arch = "linux-x86_64"; 332 + sha256 = "dd7751520c90238e1411d3108e1edaebc3cb7704c42f1429d1dd4dd9949c2360"; 333 } 334 { 335 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/sl/thunderbird-128.5.2esr.tar.bz2"; 336 locale = "sl"; 337 arch = "linux-x86_64"; 338 + sha256 = "ab12490cddd3760565ddce96a88bb57ec798b31d06eecbe0e19f9e4d2b3e08eb"; 339 } 340 { 341 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/sq/thunderbird-128.5.2esr.tar.bz2"; 342 locale = "sq"; 343 arch = "linux-x86_64"; 344 + sha256 = "8df1d6b93d0742169a309ff99520fd76f19de14219ca7ec38c0fbb7ec3e9e7cb"; 345 } 346 { 347 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/sr/thunderbird-128.5.2esr.tar.bz2"; 348 locale = "sr"; 349 arch = "linux-x86_64"; 350 + sha256 = "ff27929603f74d141534899b79b527ef1aeeaae3d642abcaf1ed1d32fc9ee63b"; 351 } 352 { 353 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/sv-SE/thunderbird-128.5.2esr.tar.bz2"; 354 locale = "sv-SE"; 355 arch = "linux-x86_64"; 356 + sha256 = "ce20a0614e69e2c720ea3d1a8bdcc881a19b1333eb717f51ab5bce1f6e2d0eaf"; 357 } 358 { 359 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/th/thunderbird-128.5.2esr.tar.bz2"; 360 locale = "th"; 361 arch = "linux-x86_64"; 362 + sha256 = "887c63504d60b403b388d9aeb8acef9d8c8a342830be9198d5badbc28f2c2d56"; 363 } 364 { 365 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/tr/thunderbird-128.5.2esr.tar.bz2"; 366 locale = "tr"; 367 arch = "linux-x86_64"; 368 + sha256 = "5fe9257c795e4037b4c66b90429585c21fd402a0e3b49492b08eb4f623dcf1d3"; 369 } 370 { 371 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/uk/thunderbird-128.5.2esr.tar.bz2"; 372 locale = "uk"; 373 arch = "linux-x86_64"; 374 + sha256 = "7539ad2c01a3578565c7b725f2f10392f200251ab1c61752481b076aff546bb3"; 375 } 376 { 377 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/uz/thunderbird-128.5.2esr.tar.bz2"; 378 locale = "uz"; 379 arch = "linux-x86_64"; 380 + sha256 = "7d96771909f496e2b5a2bf8cd21cb84e2921f21238df2ef3e61e30cf6707d9cf"; 381 } 382 { 383 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/vi/thunderbird-128.5.2esr.tar.bz2"; 384 locale = "vi"; 385 arch = "linux-x86_64"; 386 + sha256 = "436d17c6bc1495031dedd86a9dfeab28cbaee46d06971d7184b49849f4acadfb"; 387 } 388 { 389 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/zh-CN/thunderbird-128.5.2esr.tar.bz2"; 390 locale = "zh-CN"; 391 arch = "linux-x86_64"; 392 + sha256 = "d84c3b4fef8ecdc985a4b5a259443019ba56d4b2227d678927f402d10fadaaca"; 393 } 394 { 395 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/zh-TW/thunderbird-128.5.2esr.tar.bz2"; 396 locale = "zh-TW"; 397 arch = "linux-x86_64"; 398 + sha256 = "266d35dbfac2fd449241fba7224a201209252344371beec144c2428cd0c9bd2b"; 399 } 400 { 401 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/af/thunderbird-128.5.2esr.tar.bz2"; 402 locale = "af"; 403 arch = "linux-i686"; 404 + sha256 = "6cd2f91556fce7e5b97c71312fe9529bb54542e4946eda1843b688718c05e777"; 405 } 406 { 407 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ar/thunderbird-128.5.2esr.tar.bz2"; 408 locale = "ar"; 409 arch = "linux-i686"; 410 + sha256 = "8053f4a34be289cdc299ad6f0beb5bc4794fd4d2f086824b6008a23d4e0e4cbb"; 411 } 412 { 413 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ast/thunderbird-128.5.2esr.tar.bz2"; 414 locale = "ast"; 415 arch = "linux-i686"; 416 + sha256 = "84a52ae96f0b8b2a01431b9aa74ba152ed2ed82425a27f23581f631bbe26bc58"; 417 } 418 { 419 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/be/thunderbird-128.5.2esr.tar.bz2"; 420 locale = "be"; 421 arch = "linux-i686"; 422 + sha256 = "7a131fb75ec0ba188fa35f1a9b795baf35a37574a7d4fcfbfa0534ec549ae625"; 423 } 424 { 425 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/bg/thunderbird-128.5.2esr.tar.bz2"; 426 locale = "bg"; 427 arch = "linux-i686"; 428 + sha256 = "d28e4496714bcaf9a25721a356bf29ce9b2e47d0f5bfae018c0f55eaf1724535"; 429 } 430 { 431 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/br/thunderbird-128.5.2esr.tar.bz2"; 432 locale = "br"; 433 arch = "linux-i686"; 434 + sha256 = "31f304b50b271b421917c8332aeeff2c9d9d9e9b4b337e97ad78ccfa0e4401e5"; 435 } 436 { 437 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ca/thunderbird-128.5.2esr.tar.bz2"; 438 locale = "ca"; 439 arch = "linux-i686"; 440 + sha256 = "7c2721b495ff2443d3794ec19b21a752b88aef08831d721e6f3ff35ce4e0b872"; 441 } 442 { 443 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/cak/thunderbird-128.5.2esr.tar.bz2"; 444 locale = "cak"; 445 arch = "linux-i686"; 446 + sha256 = "31fd01ff374b25611197b1e9fb378618e5066013dc8df66e7ee84906b044c859"; 447 } 448 { 449 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/cs/thunderbird-128.5.2esr.tar.bz2"; 450 locale = "cs"; 451 arch = "linux-i686"; 452 + sha256 = "502a20d0747688204f10f30058c4f21d76cf8eb49a3e5726ba1ae26ec9b532d6"; 453 } 454 { 455 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/cy/thunderbird-128.5.2esr.tar.bz2"; 456 locale = "cy"; 457 arch = "linux-i686"; 458 + sha256 = "0a279418554ff4deb6aac8c5cb62c266aeb6209bb245aad015f9de82989f9bda"; 459 } 460 { 461 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/da/thunderbird-128.5.2esr.tar.bz2"; 462 locale = "da"; 463 arch = "linux-i686"; 464 + sha256 = "8fa04d1674a222a4eeac58c6c2e3afe30042d72c7c10493551957d2d871b873d"; 465 } 466 { 467 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/de/thunderbird-128.5.2esr.tar.bz2"; 468 locale = "de"; 469 arch = "linux-i686"; 470 + sha256 = "ec8aa2bf5b5657449af6e049b3df61acdac3a01eec44a4b9440976f30168de2b"; 471 } 472 { 473 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/dsb/thunderbird-128.5.2esr.tar.bz2"; 474 locale = "dsb"; 475 arch = "linux-i686"; 476 + sha256 = "82ab756c6dec629648f8952e7044b80c3aceae0931f7189a71f9f06d8b122f0d"; 477 } 478 { 479 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/el/thunderbird-128.5.2esr.tar.bz2"; 480 locale = "el"; 481 arch = "linux-i686"; 482 + sha256 = "788bb267bacc034be69f118abaca5455df85c4102809435fad11183b8671c089"; 483 } 484 { 485 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/en-CA/thunderbird-128.5.2esr.tar.bz2"; 486 locale = "en-CA"; 487 arch = "linux-i686"; 488 + sha256 = "f7c260e808372c8598eeff0b25c6a2689a159bcbce9c1491e526eb5c1934200e"; 489 } 490 { 491 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/en-GB/thunderbird-128.5.2esr.tar.bz2"; 492 locale = "en-GB"; 493 arch = "linux-i686"; 494 + sha256 = "69bafaf9013de6392e2a61e9a1301b2055a827377fcb4193f5d8f3385ebd1031"; 495 } 496 { 497 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/en-US/thunderbird-128.5.2esr.tar.bz2"; 498 locale = "en-US"; 499 arch = "linux-i686"; 500 + sha256 = "2444f0fa336074cb705f8409c2c914bcd840fb57cb1bac0305129f2c7d8f45a0"; 501 } 502 { 503 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/es-AR/thunderbird-128.5.2esr.tar.bz2"; 504 locale = "es-AR"; 505 arch = "linux-i686"; 506 + sha256 = "756bcb118f0948d38f9f4215c03d5b92ebd1ec30d45180267f13d81f6309d128"; 507 } 508 { 509 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/es-ES/thunderbird-128.5.2esr.tar.bz2"; 510 locale = "es-ES"; 511 arch = "linux-i686"; 512 + sha256 = "f301fa04e3f89df0edd7150c61ee6eeee82bf571f7121cf94111d0fd7cd4209d"; 513 } 514 { 515 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/es-MX/thunderbird-128.5.2esr.tar.bz2"; 516 locale = "es-MX"; 517 arch = "linux-i686"; 518 + sha256 = "035ad8e689822227e85c9690ddfe22402ca551809205c9b485496dc8576eb75e"; 519 } 520 { 521 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/et/thunderbird-128.5.2esr.tar.bz2"; 522 locale = "et"; 523 arch = "linux-i686"; 524 + sha256 = "24a2851b9db216b4b45da278e7fd2db82624c2039b665cf2e25e98110ae4ad7c"; 525 } 526 { 527 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/eu/thunderbird-128.5.2esr.tar.bz2"; 528 locale = "eu"; 529 arch = "linux-i686"; 530 + sha256 = "b633fd9b5f200854f2e361bc1ea90470f3b6e9d29cf5b07f103cdcf0aa95572b"; 531 } 532 { 533 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/fi/thunderbird-128.5.2esr.tar.bz2"; 534 locale = "fi"; 535 arch = "linux-i686"; 536 + sha256 = "068291c36973cb27c2917111b3a7780813642f8ea43590ad08b23ed335db1347"; 537 } 538 { 539 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/fr/thunderbird-128.5.2esr.tar.bz2"; 540 locale = "fr"; 541 arch = "linux-i686"; 542 + sha256 = "df21298f329e384f6015a360623f8b18764fa5ddf7a244ca6d0c4996d7d08db0"; 543 } 544 { 545 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/fy-NL/thunderbird-128.5.2esr.tar.bz2"; 546 locale = "fy-NL"; 547 arch = "linux-i686"; 548 + sha256 = "b5d4d630f78aba4ac22c927f9fccb369fa6a3195c08194acc6803109f694af51"; 549 } 550 { 551 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ga-IE/thunderbird-128.5.2esr.tar.bz2"; 552 locale = "ga-IE"; 553 arch = "linux-i686"; 554 + sha256 = "bafd5855e5f7294cb0d65da815bba95ec58c47c5c4f23388ac880bf40f9366dd"; 555 } 556 { 557 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/gd/thunderbird-128.5.2esr.tar.bz2"; 558 locale = "gd"; 559 arch = "linux-i686"; 560 + sha256 = "4108d67237968c50dec960d5eafa40c5440c22c2641e1b5817996cf72320dfb7"; 561 } 562 { 563 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/gl/thunderbird-128.5.2esr.tar.bz2"; 564 locale = "gl"; 565 arch = "linux-i686"; 566 + sha256 = "90aa4b515967efab34fa951a94ae7a710a1e7dfe3789fbf9f56467acce743d82"; 567 } 568 { 569 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/he/thunderbird-128.5.2esr.tar.bz2"; 570 locale = "he"; 571 arch = "linux-i686"; 572 + sha256 = "a30e92e3e01353d87b6d21543f54e1e04cdc5d311b51d31f0f67d528c9cb272a"; 573 } 574 { 575 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/hr/thunderbird-128.5.2esr.tar.bz2"; 576 locale = "hr"; 577 arch = "linux-i686"; 578 + sha256 = "27201a23cbcca4e6cd50418942b31628795e1fcb564f2a39d7970c7daf5af6b5"; 579 } 580 { 581 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/hsb/thunderbird-128.5.2esr.tar.bz2"; 582 locale = "hsb"; 583 arch = "linux-i686"; 584 + sha256 = "06e5a0c6c8615c87355cf3605a87101ffd0664d3a10f866d2282cb9d14211277"; 585 } 586 { 587 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/hu/thunderbird-128.5.2esr.tar.bz2"; 588 locale = "hu"; 589 arch = "linux-i686"; 590 + sha256 = "7f7f68ed7ec1c1de0562662169c609412a7f70421161ac8926bd1c8e7f8b0853"; 591 } 592 { 593 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/hy-AM/thunderbird-128.5.2esr.tar.bz2"; 594 locale = "hy-AM"; 595 arch = "linux-i686"; 596 + sha256 = "cee500cfb8c1c5ec46ae167c4028479f33e9589e2f79d36bbed6307d4ad8cc44"; 597 } 598 { 599 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/id/thunderbird-128.5.2esr.tar.bz2"; 600 locale = "id"; 601 arch = "linux-i686"; 602 + sha256 = "f73fcdfdfe1bbd483b851d7882d8c508ba29c2c8bd5a1c76f0c1ac9e85cb182e"; 603 } 604 { 605 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/is/thunderbird-128.5.2esr.tar.bz2"; 606 locale = "is"; 607 arch = "linux-i686"; 608 + sha256 = "396174a76aa731129a992e165d288e8ef48c8ad8b1112c8e2b1fd3cf63d8c43f"; 609 } 610 { 611 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/it/thunderbird-128.5.2esr.tar.bz2"; 612 locale = "it"; 613 arch = "linux-i686"; 614 + sha256 = "69bcbf12b74fd6a437bb435107c93bbba031452d225f8ab16f443f4f56f6d9ad"; 615 } 616 { 617 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ja/thunderbird-128.5.2esr.tar.bz2"; 618 locale = "ja"; 619 arch = "linux-i686"; 620 + sha256 = "77040ab2fe50cd59127effd5727b6fbacd6e15d55d20c55016086a220236a9ee"; 621 } 622 { 623 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ka/thunderbird-128.5.2esr.tar.bz2"; 624 locale = "ka"; 625 arch = "linux-i686"; 626 + sha256 = "d71139c1718d98565be56073cad10a34060c705ef0f6a387b05bd5fd3e6971e1"; 627 } 628 { 629 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/kab/thunderbird-128.5.2esr.tar.bz2"; 630 locale = "kab"; 631 arch = "linux-i686"; 632 + sha256 = "4db2df253866f81f88843e5f0e5f451dd28a8ea070f897e574eb8fd740dddb31"; 633 } 634 { 635 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/kk/thunderbird-128.5.2esr.tar.bz2"; 636 locale = "kk"; 637 arch = "linux-i686"; 638 + sha256 = "962831077ceeb6edbda3c934fd390bf1d3f1288932ff4d64623d01dc7b494993"; 639 } 640 { 641 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ko/thunderbird-128.5.2esr.tar.bz2"; 642 locale = "ko"; 643 arch = "linux-i686"; 644 + sha256 = "79d9b7d80a91ed7d3d6a9fbaf0e5f4908232ba1d07cb7f418216865ad10289d9"; 645 } 646 { 647 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/lt/thunderbird-128.5.2esr.tar.bz2"; 648 locale = "lt"; 649 arch = "linux-i686"; 650 + sha256 = "744153437c8ed2af20906d12b2dc8d57aa455726c880a347969a9c7a7ecc0a38"; 651 } 652 { 653 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/lv/thunderbird-128.5.2esr.tar.bz2"; 654 locale = "lv"; 655 arch = "linux-i686"; 656 + sha256 = "61c4a370c6b12dc048b067fadf6dfaa718d9c70d6502e06443aafac3c5acb567"; 657 } 658 { 659 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ms/thunderbird-128.5.2esr.tar.bz2"; 660 locale = "ms"; 661 arch = "linux-i686"; 662 + sha256 = "246e7f0d1287e90bb309a62a16953dfd517ea681b7257733154d73101f3a4dc1"; 663 } 664 { 665 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/nb-NO/thunderbird-128.5.2esr.tar.bz2"; 666 locale = "nb-NO"; 667 arch = "linux-i686"; 668 + sha256 = "9a4c223b26430b0222e615a3833ee5f1ad7958a7872f806bb12673d7a9c0e728"; 669 } 670 { 671 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/nl/thunderbird-128.5.2esr.tar.bz2"; 672 locale = "nl"; 673 arch = "linux-i686"; 674 + sha256 = "28311076a854d1dc9eafb7e558955e68c78dd2a75079199316aa005e52279696"; 675 } 676 { 677 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/nn-NO/thunderbird-128.5.2esr.tar.bz2"; 678 locale = "nn-NO"; 679 arch = "linux-i686"; 680 + sha256 = "2b2b3f5745b358c374b7b23d5c8ce3054ed3c9a05978f90d8cbc41e19df44827"; 681 } 682 { 683 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/pa-IN/thunderbird-128.5.2esr.tar.bz2"; 684 locale = "pa-IN"; 685 arch = "linux-i686"; 686 + sha256 = "866aac01aef4602fcd0fbfda56e216647701e6b4b4b0fea7de59a0571f5e2890"; 687 } 688 { 689 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/pl/thunderbird-128.5.2esr.tar.bz2"; 690 locale = "pl"; 691 arch = "linux-i686"; 692 + sha256 = "a8b67a1ca2c1009e95e536e953eac807add88c4e97b5408e203cd3b07e1bd3d7"; 693 } 694 { 695 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/pt-BR/thunderbird-128.5.2esr.tar.bz2"; 696 locale = "pt-BR"; 697 arch = "linux-i686"; 698 + sha256 = "73b32d26cdd9c58cfcb2f100e54dbeed32e4b22ebdc4e77826b4b48e84f69fce"; 699 } 700 { 701 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/pt-PT/thunderbird-128.5.2esr.tar.bz2"; 702 locale = "pt-PT"; 703 arch = "linux-i686"; 704 + sha256 = "70ec94a2c4f1bacb8f2be1845f9899dd04120a032c5a1a3af7d7ad8139f4b3f1"; 705 } 706 { 707 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/rm/thunderbird-128.5.2esr.tar.bz2"; 708 locale = "rm"; 709 arch = "linux-i686"; 710 + sha256 = "d3c1b500388ab3a3a9bc8598509a299d3e053cf90f7638130bb15d0bef65a161"; 711 } 712 { 713 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ro/thunderbird-128.5.2esr.tar.bz2"; 714 locale = "ro"; 715 arch = "linux-i686"; 716 + sha256 = "f309aa8ddf0a825c96c4de792386532a71690b3ee6b4151fc0c468d9067e3d04"; 717 } 718 { 719 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ru/thunderbird-128.5.2esr.tar.bz2"; 720 locale = "ru"; 721 arch = "linux-i686"; 722 + sha256 = "784f3df223bb5f6ee7870c6d2f752ab409226183f0f7e8f3d4b1c41ad3867661"; 723 } 724 { 725 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/sk/thunderbird-128.5.2esr.tar.bz2"; 726 locale = "sk"; 727 arch = "linux-i686"; 728 + sha256 = "8b0440effa49fd9531ba19f7a3817a81d661a9badb4aff8e6716aceaaa1daedc"; 729 } 730 { 731 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/sl/thunderbird-128.5.2esr.tar.bz2"; 732 locale = "sl"; 733 arch = "linux-i686"; 734 + sha256 = "e80fe7a9baeaa76928524936181d07c083cc62599c318d619124b09030525833"; 735 } 736 { 737 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/sq/thunderbird-128.5.2esr.tar.bz2"; 738 locale = "sq"; 739 arch = "linux-i686"; 740 + sha256 = "cb2bc3cf4bd306c80e49f9e7483c43835e8a89021a89c6a73053008ba40eeef3"; 741 } 742 { 743 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/sr/thunderbird-128.5.2esr.tar.bz2"; 744 locale = "sr"; 745 arch = "linux-i686"; 746 + sha256 = "9778729ba9f0bed6c028588fc2df06eae4ce915996700bce020b507ff69d90e9"; 747 } 748 { 749 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/sv-SE/thunderbird-128.5.2esr.tar.bz2"; 750 locale = "sv-SE"; 751 arch = "linux-i686"; 752 + sha256 = "c3fd2fca4880c2ad42f5b15b768eb7060ab45a03e4edf0db697c20f4c91b5bca"; 753 } 754 { 755 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/th/thunderbird-128.5.2esr.tar.bz2"; 756 locale = "th"; 757 arch = "linux-i686"; 758 + sha256 = "136e1636a016138d252655f08b773d95c08759c77b4a16afac08b21ca89599de"; 759 } 760 { 761 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/tr/thunderbird-128.5.2esr.tar.bz2"; 762 locale = "tr"; 763 arch = "linux-i686"; 764 + sha256 = "132b33f801a11fc6ae19ce7fc7cd34b448f6115db23c3e7426050e60cbfc8d5a"; 765 } 766 { 767 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/uk/thunderbird-128.5.2esr.tar.bz2"; 768 locale = "uk"; 769 arch = "linux-i686"; 770 + sha256 = "62e8713ce1a2259433951df6c232b18f90793698abd57cc9bc28e80da95fa371"; 771 } 772 { 773 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/uz/thunderbird-128.5.2esr.tar.bz2"; 774 locale = "uz"; 775 arch = "linux-i686"; 776 + sha256 = "33ec7f20edf12d33c45377129330949b0fab1e0bd379aee48bdab685a2856f4b"; 777 } 778 { 779 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/vi/thunderbird-128.5.2esr.tar.bz2"; 780 locale = "vi"; 781 arch = "linux-i686"; 782 + sha256 = "11596e965c414b75ccd29c05fbac9fc8b3597690ef01e3d46c644b4fe05f8639"; 783 } 784 { 785 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/zh-CN/thunderbird-128.5.2esr.tar.bz2"; 786 locale = "zh-CN"; 787 arch = "linux-i686"; 788 + sha256 = "d2c1ab05c576fe3325b9b7f172a72bdefa8c5371165f4cbe50301c582473d450"; 789 } 790 { 791 + url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/zh-TW/thunderbird-128.5.2esr.tar.bz2"; 792 locale = "zh-TW"; 793 arch = "linux-i686"; 794 + sha256 = "f3ba1f101bc1cc33fbca683c2d3999e5ee24790a8492f08fd7cfeaea9d451ae5"; 795 } 796 ]; 797 }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 92 thunderbird-esr = thunderbird-128; 93 94 thunderbird-128 = common { 95 - version = "128.5.1esr"; 96 - sha512 = "1dfa0752a1dbfc4d7516beab13e188aa40c145f2eb0554441ecc4dff739cc862c15fdfdd8c0cc026d010ba3caa57d6168da35e484c04989fb6c81f5c09215831"; 97 98 updateScript = callPackage ./update.nix { 99 attrPath = "thunderbirdPackages.thunderbird-128";
··· 92 thunderbird-esr = thunderbird-128; 93 94 thunderbird-128 = common { 95 + version = "128.5.2esr"; 96 + sha512 = "cbfd4b1a7245c2a2f6ef9b2cf69d95a8095eba855755d00fd397351b21ad504733084d6f41801f4114be7015332b8db65e5290bec45f5321efc753412b9acecc"; 97 98 updateScript = callPackage ./update.nix { 99 attrPath = "thunderbirdPackages.thunderbird-128";
+19 -13
pkgs/applications/office/qownnotes/default.nix
··· 36 wrapQtAppsHook 37 pkg-config 38 installShellFiles 39 - xvfb-run 40 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ makeWrapper ]; 41 42 buildInputs = [ 43 qtbase ··· 52 "-DBUILD_WITH_SYSTEM_BOTAN=ON" 53 ]; 54 55 - postInstall = '' 56 - installShellCompletion --cmd ${appname} \ 57 - --bash <(xvfb-run $out/bin/${appname} --completion bash) \ 58 - --fish <(xvfb-run $out/bin/${appname} --completion fish) 59 - installShellCompletion --cmd ${pname} \ 60 - --bash <(xvfb-run $out/bin/${appname} --completion bash) \ 61 - --fish <(xvfb-run $out/bin/${appname} --completion fish) 62 '' 63 # Create a lowercase symlink for Linux 64 + lib.optionalString stdenv.hostPlatform.isLinux '' 65 ln -s $out/bin/${appname} $out/bin/${pname} 66 '' 67 - # Wrap application for macOS as lowercase binary 68 + lib.optionalString stdenv.hostPlatform.isDarwin '' 69 - mkdir -p $out/Applications 70 - mv $out/bin/${appname}.app $out/Applications 71 - makeWrapper $out/Applications/${appname}.app/Contents/MacOS/${appname} $out/bin/${pname} 72 ''; 73 74 # Tests QOwnNotes using the NixOS module by launching xterm:
··· 36 wrapQtAppsHook 37 pkg-config 38 installShellFiles 39 + ] ++ lib.optionals stdenv.hostPlatform.isLinux [ xvfb-run ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ makeWrapper ]; 40 41 buildInputs = [ 42 qtbase ··· 51 "-DBUILD_WITH_SYSTEM_BOTAN=ON" 52 ]; 53 54 + # Install shell completion on Linux (with xvfb-run) 55 + postInstall = lib.optionalString stdenv.hostPlatform.isLinux '' 56 + installShellCompletion --cmd ${appname} \ 57 + --bash <(xvfb-run $out/bin/${appname} --completion bash) \ 58 + --fish <(xvfb-run $out/bin/${appname} --completion fish) 59 + installShellCompletion --cmd ${pname} \ 60 + --bash <(xvfb-run $out/bin/${appname} --completion bash) \ 61 + --fish <(xvfb-run $out/bin/${appname} --completion fish) 62 + '' 63 + # Install shell completion on macOS 64 + + lib.optionalString stdenv.isDarwin '' 65 + installShellCompletion --cmd ${pname} \ 66 + --bash <($out/bin/${appname} --completion bash) \ 67 + --fish <($out/bin/${appname} --completion fish) 68 '' 69 # Create a lowercase symlink for Linux 70 + lib.optionalString stdenv.hostPlatform.isLinux '' 71 ln -s $out/bin/${appname} $out/bin/${pname} 72 '' 73 + # Rename application for macOS as lowercase binary 74 + lib.optionalString stdenv.hostPlatform.isDarwin '' 75 + # Prevent "same file" error 76 + mv $out/bin/${appname} $out/bin/${pname}.bin 77 + mv $out/bin/${pname}.bin $out/bin/${pname} 78 ''; 79 80 # Tests QOwnNotes using the NixOS module by launching xterm:
+4 -3
pkgs/applications/science/logic/coq/default.nix
··· 228 mainProgram = "coqide"; 229 }; 230 }; in 231 - if coqAtLeast "8.17" then self.overrideAttrs(_: { 232 buildPhase = '' 233 runHook preBuild 234 make dunestrap 235 - dune build -p coq-core,coq-stdlib,coq,coqide-server${lib.optionalString buildIde ",coqide"} -j $NIX_BUILD_CORES 236 runHook postBuild 237 ''; 238 installPhase = '' 239 runHook preInstall 240 - dune install --prefix $out coq-core coq-stdlib coq coqide-server${lib.optionalString buildIde " coqide"} 241 runHook postInstall 242 ''; 243 }) else self
··· 228 mainProgram = "coqide"; 229 }; 230 }; in 231 + if coqAtLeast "8.17" then self.overrideAttrs(_: let 232 + init-stdlib-package = if coqAtLeast "8.21" then "rocq-core" else "coq-stdlib"; in { 233 buildPhase = '' 234 runHook preBuild 235 make dunestrap 236 + dune build -p coq-core,${init-stdlib-package},coqide-server${lib.optionalString buildIde ",coqide"} -j $NIX_BUILD_CORES 237 runHook postBuild 238 ''; 239 installPhase = '' 240 runHook preInstall 241 + dune install --prefix $out coq-core ${init-stdlib-package} coqide-server${lib.optionalString buildIde " coqide"} 242 runHook postInstall 243 ''; 244 }) else self
+5 -3
pkgs/build-support/dart/pub2nix/package-config.nix
··· 34 done < <(jq -r '.packages | to_entries | map("\(.key),\(.value.src),\(.value.packageRoot)") | .[]' "$NIX_ATTRS_JSON_FILE") 35 36 for package in "''${!packageSources[@]}"; do 37 - if [ ! -e "''${packageSources["$package"]}/''${packageRoots["$package"]}/pubspec.yaml" ]; then 38 echo >&2 "The package sources for $package are missing. Is the following path inside the source derivation?" 39 - echo >&2 "Source path: ''${packageSources["$package"]}/''${packageRoots["$package"]}/pubspec.yaml" 40 exit 1 41 fi 42 43 - languageConstraint="$(yq -r .environment.sdk "''${packageSources["$package"]}/''${packageRoots["$package"]}/pubspec.yaml")" 44 if [[ "$languageConstraint" =~ ^[[:space:]]*(\^|>=|>)?[[:space:]]*([[:digit:]]+\.[[:digit:]]+)\.[[:digit:]]+.*$ ]]; then 45 languageVersionJson="\"''${BASH_REMATCH[2]}\"" 46 elif [ "$languageConstraint" = 'any' ]; then
··· 34 done < <(jq -r '.packages | to_entries | map("\(.key),\(.value.src),\(.value.packageRoot)") | .[]' "$NIX_ATTRS_JSON_FILE") 35 36 for package in "''${!packageSources[@]}"; do 37 + pubspec="$(realpath --logical "''${packageSources["$package"]}/''${packageRoots["$package"]}/pubspec.yaml")" 38 + 39 + if [ ! -e "$pubspec" ]; then 40 echo >&2 "The package sources for $package are missing. Is the following path inside the source derivation?" 41 + echo >&2 "Source path: $pubspec" 42 exit 1 43 fi 44 45 + languageConstraint="$(yq -r .environment.sdk "$pubspec")" 46 if [[ "$languageConstraint" =~ ^[[:space:]]*(\^|>=|>)?[[:space:]]*([[:digit:]]+\.[[:digit:]]+)\.[[:digit:]]+.*$ ]]; then 47 languageVersionJson="\"''${BASH_REMATCH[2]}\"" 48 elif [ "$languageConstraint" = 'any' ]; then
+2 -2
pkgs/by-name/ek/eksctl/package.nix
··· 7 8 buildGoModule rec { 9 pname = "eksctl"; 10 - version = "0.197.0"; 11 12 src = fetchFromGitHub { 13 owner = "weaveworks"; 14 repo = pname; 15 rev = version; 16 - hash = "sha256-JHhZFcjnURgt+HqRwy/0rZ2qrzpeX/WGeXJ0arhRDq8="; 17 }; 18 19 vendorHash = "sha256-f7+IlOcGJL5G52wPZz1oeHmR8LR8XZh6ASV1qi7hXi0=";
··· 7 8 buildGoModule rec { 9 pname = "eksctl"; 10 + version = "0.198.0"; 11 12 src = fetchFromGitHub { 13 owner = "weaveworks"; 14 repo = pname; 15 rev = version; 16 + hash = "sha256-iYjp6gJlw5iVjbEcx/fLlTDkd0AXKLCJw7ig8h3cSCM="; 17 }; 18 19 vendorHash = "sha256-f7+IlOcGJL5G52wPZz1oeHmR8LR8XZh6ASV1qi7hXi0=";
+422 -499
pkgs/by-name/fl/flarum/composer.lock
··· 229 }, 230 { 231 "name": "dflydev/dot-access-data", 232 - "version": "v3.0.2", 233 "source": { 234 "type": "git", 235 "url": "https://github.com/dflydev/dflydev-dot-access-data.git", 236 - "reference": "f41715465d65213d644d3141a6a93081be5d3549" 237 }, 238 "dist": { 239 "type": "zip", 240 - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", 241 - "reference": "f41715465d65213d644d3141a6a93081be5d3549", 242 "shasum": "" 243 }, 244 "require": { ··· 298 ], 299 "support": { 300 "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", 301 - "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" 302 }, 303 - "time": "2022-10-27T11:44:00+00:00" 304 }, 305 { 306 "name": "dflydev/fig-cookies", ··· 874 }, 875 { 876 "name": "dragonmantank/cron-expression", 877 - "version": "v3.3.3", 878 "source": { 879 "type": "git", 880 "url": "https://github.com/dragonmantank/cron-expression.git", 881 - "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" 882 }, 883 "dist": { 884 "type": "zip", 885 - "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", 886 - "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", 887 "shasum": "" 888 }, 889 "require": { ··· 896 "require-dev": { 897 "phpstan/extension-installer": "^1.0", 898 "phpstan/phpstan": "^1.0", 899 - "phpstan/phpstan-webmozart-assert": "^1.0", 900 "phpunit/phpunit": "^7.0|^8.0|^9.0" 901 }, 902 "type": "library", 903 "autoload": { 904 "psr-4": { 905 "Cron\\": "src/Cron/" ··· 923 ], 924 "support": { 925 "issues": "https://github.com/dragonmantank/cron-expression/issues", 926 - "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3" 927 }, 928 "funding": [ 929 { ··· 931 "type": "github" 932 } 933 ], 934 - "time": "2023-08-10T19:36:49+00:00" 935 }, 936 { 937 "name": "egulias/email-validator", ··· 1059 }, 1060 { 1061 "name": "filp/whoops", 1062 - "version": "2.15.4", 1063 "source": { 1064 "type": "git", 1065 "url": "https://github.com/filp/whoops.git", 1066 - "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546" 1067 }, 1068 "dist": { 1069 "type": "zip", 1070 - "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546", 1071 - "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546", 1072 "shasum": "" 1073 }, 1074 "require": { 1075 - "php": "^5.5.9 || ^7.0 || ^8.0", 1076 "psr/log": "^1.0.1 || ^2.0 || ^3.0" 1077 }, 1078 "require-dev": { 1079 - "mockery/mockery": "^0.9 || ^1.0", 1080 - "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", 1081 - "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" 1082 }, 1083 "suggest": { 1084 "symfony/var-dumper": "Pretty print complex values better with var-dumper available", ··· 1118 ], 1119 "support": { 1120 "issues": "https://github.com/filp/whoops/issues", 1121 - "source": "https://github.com/filp/whoops/tree/2.15.4" 1122 }, 1123 "funding": [ 1124 { ··· 1126 "type": "github" 1127 } 1128 ], 1129 - "time": "2023-11-03T12:00:00+00:00" 1130 }, 1131 { 1132 "name": "flarum/approval", 1133 - "version": "v1.8.1", 1134 "source": { 1135 "type": "git", 1136 "url": "https://github.com/flarum/approval.git", 1137 - "reference": "b1442698dd4e57300b7b2e5b1b6a14ee484757ba" 1138 }, 1139 "dist": { 1140 "type": "zip", 1141 - "url": "https://api.github.com/repos/flarum/approval/zipball/b1442698dd4e57300b7b2e5b1b6a14ee484757ba", 1142 - "reference": "b1442698dd4e57300b7b2e5b1b6a14ee484757ba", 1143 "shasum": "" 1144 }, 1145 "require": { ··· 1206 "type": "website" 1207 } 1208 ], 1209 - "time": "2023-11-17T16:58:14+00:00" 1210 }, 1211 { 1212 "name": "flarum/bbcode", ··· 1286 }, 1287 { 1288 "name": "flarum/core", 1289 - "version": "v1.8.5", 1290 "source": { 1291 "type": "git", 1292 "url": "https://github.com/flarum/flarum-core.git", 1293 - "reference": "2e8500500c58927ab056ec2d27ec36ea836cf1b2" 1294 }, 1295 "dist": { 1296 "type": "zip", 1297 - "url": "https://api.github.com/repos/flarum/flarum-core/zipball/2e8500500c58927ab056ec2d27ec36ea836cf1b2", 1298 - "reference": "2e8500500c58927ab056ec2d27ec36ea836cf1b2", 1299 "shasum": "" 1300 }, 1301 "require": { ··· 1323 "illuminate/view": "^8.0", 1324 "intervention/image": "2.5.* || ^2.6.1", 1325 "jenssegers/agent": "^2.6", 1326 - "laminas/laminas-diactoros": "^2.4.1", 1327 - "laminas/laminas-httphandlerrunner": "^1.2.0 || ^2.3.0", 1328 - "laminas/laminas-stratigility": "^3.2.2", 1329 "league/flysystem": "^1.0.11", 1330 "matthiasmullie/minify": "^1.3", 1331 "middlewares/base-path": "^2.0.1", ··· 1428 "type": "other" 1429 } 1430 ], 1431 - "time": "2024-01-05T15:47:32+00:00" 1432 }, 1433 { 1434 "name": "flarum/emoji", 1435 - "version": "v1.8.0", 1436 "source": { 1437 "type": "git", 1438 "url": "https://github.com/flarum/emoji.git", 1439 - "reference": "b09f3ece759bba06f89d89e3f62c9ce65b35351e" 1440 }, 1441 "dist": { 1442 "type": "zip", 1443 - "url": "https://api.github.com/repos/flarum/emoji/zipball/b09f3ece759bba06f89d89e3f62c9ce65b35351e", 1444 - "reference": "b09f3ece759bba06f89d89e3f62c9ce65b35351e", 1445 "shasum": "" 1446 }, 1447 "require": { ··· 1498 "type": "website" 1499 } 1500 ], 1501 - "time": "2023-05-20T15:08:42+00:00" 1502 }, 1503 { 1504 "name": "flarum/flags", 1505 - "version": "v1.8.0", 1506 "source": { 1507 "type": "git", 1508 "url": "https://github.com/flarum/flags.git", 1509 - "reference": "941cc37719b6437eca09f03715a27793abe1fb48" 1510 }, 1511 "dist": { 1512 "type": "zip", 1513 - "url": "https://api.github.com/repos/flarum/flags/zipball/941cc37719b6437eca09f03715a27793abe1fb48", 1514 - "reference": "941cc37719b6437eca09f03715a27793abe1fb48", 1515 "shasum": "" 1516 }, 1517 "require": { 1518 - "flarum/core": "^1.8" 1519 }, 1520 "require-dev": { 1521 "flarum/core": "*@dev", ··· 1579 "type": "website" 1580 } 1581 ], 1582 - "time": "2023-05-20T15:08:42+00:00" 1583 }, 1584 { 1585 "name": "flarum/lang-english", ··· 1665 }, 1666 { 1667 "name": "flarum/likes", 1668 - "version": "v1.8.0", 1669 "source": { 1670 "type": "git", 1671 "url": "https://github.com/flarum/likes.git", 1672 - "reference": "55dfbb535a18149cd0cca66703fd19da07cb3a36" 1673 }, 1674 "dist": { 1675 "type": "zip", 1676 - "url": "https://api.github.com/repos/flarum/likes/zipball/55dfbb535a18149cd0cca66703fd19da07cb3a36", 1677 - "reference": "55dfbb535a18149cd0cca66703fd19da07cb3a36", 1678 "shasum": "" 1679 }, 1680 "require": { ··· 1740 "type": "website" 1741 } 1742 ], 1743 - "time": "2023-05-20T15:08:42+00:00" 1744 }, 1745 { 1746 "name": "flarum/lock", 1747 - "version": "v1.8.0", 1748 "source": { 1749 "type": "git", 1750 "url": "https://github.com/flarum/lock.git", 1751 - "reference": "3d48574c0ebdd3ef28d65fe4882d7af00797bce1" 1752 }, 1753 "dist": { 1754 "type": "zip", 1755 - "url": "https://api.github.com/repos/flarum/lock/zipball/3d48574c0ebdd3ef28d65fe4882d7af00797bce1", 1756 - "reference": "3d48574c0ebdd3ef28d65fe4882d7af00797bce1", 1757 "shasum": "" 1758 }, 1759 "require": { ··· 1816 "type": "website" 1817 } 1818 ], 1819 - "time": "2023-05-20T15:08:42+00:00" 1820 }, 1821 { 1822 "name": "flarum/markdown", 1823 - "version": "v1.8.0", 1824 "source": { 1825 "type": "git", 1826 "url": "https://github.com/flarum/markdown.git", 1827 - "reference": "2e3724c9c7b322b8af41fbddb73b0332cfbd16fc" 1828 }, 1829 "dist": { 1830 "type": "zip", 1831 - "url": "https://api.github.com/repos/flarum/markdown/zipball/2e3724c9c7b322b8af41fbddb73b0332cfbd16fc", 1832 - "reference": "2e3724c9c7b322b8af41fbddb73b0332cfbd16fc", 1833 "shasum": "" 1834 }, 1835 "require": { ··· 1890 "type": "website" 1891 } 1892 ], 1893 - "time": "2023-05-20T15:08:42+00:00" 1894 }, 1895 { 1896 "name": "flarum/mentions", 1897 - "version": "v1.8.3", 1898 "source": { 1899 "type": "git", 1900 "url": "https://github.com/flarum/mentions.git", 1901 - "reference": "026b261ccd65153c961c0c28d6c8c7f42e2a1ddf" 1902 }, 1903 "dist": { 1904 "type": "zip", 1905 - "url": "https://api.github.com/repos/flarum/mentions/zipball/026b261ccd65153c961c0c28d6c8c7f42e2a1ddf", 1906 - "reference": "026b261ccd65153c961c0c28d6c8c7f42e2a1ddf", 1907 "shasum": "" 1908 }, 1909 "require": { ··· 1974 "type": "website" 1975 } 1976 ], 1977 - "time": "2024-01-10T09:53:10+00:00" 1978 }, 1979 { 1980 "name": "flarum/nicknames", 1981 - "version": "v1.8.0", 1982 "source": { 1983 "type": "git", 1984 "url": "https://github.com/flarum/nicknames.git", 1985 - "reference": "0821e5c982dd16d26c5260879b866eb416e8bb86" 1986 }, 1987 "dist": { 1988 "type": "zip", 1989 - "url": "https://api.github.com/repos/flarum/nicknames/zipball/0821e5c982dd16d26c5260879b866eb416e8bb86", 1990 - "reference": "0821e5c982dd16d26c5260879b866eb416e8bb86", 1991 "shasum": "" 1992 }, 1993 "require": { ··· 2054 "type": "website" 2055 } 2056 ], 2057 - "time": "2023-05-20T15:08:42+00:00" 2058 }, 2059 { 2060 "name": "flarum/pusher", 2061 - "version": "v1.8.0", 2062 "source": { 2063 "type": "git", 2064 "url": "https://github.com/flarum/pusher.git", 2065 - "reference": "5eccb38e045575c148fb5bbd26cc36cf86d58c5c" 2066 }, 2067 "dist": { 2068 "type": "zip", 2069 - "url": "https://api.github.com/repos/flarum/pusher/zipball/5eccb38e045575c148fb5bbd26cc36cf86d58c5c", 2070 - "reference": "5eccb38e045575c148fb5bbd26cc36cf86d58c5c", 2071 "shasum": "" 2072 }, 2073 "require": { ··· 2137 "type": "website" 2138 } 2139 ], 2140 - "time": "2023-05-20T15:08:42+00:00" 2141 }, 2142 { 2143 "name": "flarum/statistics", 2144 - "version": "v1.8.0", 2145 "source": { 2146 "type": "git", 2147 "url": "https://github.com/flarum/statistics.git", 2148 - "reference": "51279d0d0d95672017db8cf7a355b0510f1a955d" 2149 }, 2150 "dist": { 2151 "type": "zip", 2152 - "url": "https://api.github.com/repos/flarum/statistics/zipball/51279d0d0d95672017db8cf7a355b0510f1a955d", 2153 - "reference": "51279d0d0d95672017db8cf7a355b0510f1a955d", 2154 "shasum": "" 2155 }, 2156 "require": { ··· 2219 "type": "website" 2220 } 2221 ], 2222 - "time": "2023-05-20T15:08:42+00:00" 2223 }, 2224 { 2225 "name": "flarum/sticky", 2226 - "version": "v1.8.0", 2227 "source": { 2228 "type": "git", 2229 "url": "https://github.com/flarum/sticky.git", 2230 - "reference": "675900b9f1bc5004432880062d6ce3116c12c4c2" 2231 }, 2232 "dist": { 2233 "type": "zip", 2234 - "url": "https://api.github.com/repos/flarum/sticky/zipball/675900b9f1bc5004432880062d6ce3116c12c4c2", 2235 - "reference": "675900b9f1bc5004432880062d6ce3116c12c4c2", 2236 "shasum": "" 2237 }, 2238 "require": { ··· 2299 "type": "website" 2300 } 2301 ], 2302 - "time": "2023-05-20T15:08:42+00:00" 2303 }, 2304 { 2305 "name": "flarum/subscriptions", 2306 - "version": "v1.8.0", 2307 "source": { 2308 "type": "git", 2309 "url": "https://github.com/flarum/subscriptions.git", 2310 - "reference": "532b7e61a387481055a0c9d5d07f78cd3d4e9bd7" 2311 }, 2312 "dist": { 2313 "type": "zip", 2314 - "url": "https://api.github.com/repos/flarum/subscriptions/zipball/532b7e61a387481055a0c9d5d07f78cd3d4e9bd7", 2315 - "reference": "532b7e61a387481055a0c9d5d07f78cd3d4e9bd7", 2316 "shasum": "" 2317 }, 2318 "require": { ··· 2382 "type": "website" 2383 } 2384 ], 2385 - "time": "2023-05-20T15:08:42+00:00" 2386 }, 2387 { 2388 "name": "flarum/suspend", 2389 - "version": "v1.8.1", 2390 "source": { 2391 "type": "git", 2392 "url": "https://github.com/flarum/suspend.git", 2393 - "reference": "0060b7b7737e7b8c8052124d93b511563d2af749" 2394 }, 2395 "dist": { 2396 "type": "zip", 2397 - "url": "https://api.github.com/repos/flarum/suspend/zipball/0060b7b7737e7b8c8052124d93b511563d2af749", 2398 - "reference": "0060b7b7737e7b8c8052124d93b511563d2af749", 2399 "shasum": "" 2400 }, 2401 "require": { ··· 2461 "type": "website" 2462 } 2463 ], 2464 - "time": "2023-09-22T18:38:33+00:00" 2465 }, 2466 { 2467 "name": "flarum/tags", 2468 - "version": "v1.8.0", 2469 "source": { 2470 "type": "git", 2471 "url": "https://github.com/flarum/tags.git", 2472 - "reference": "45cfb339e1ebd9f0204070f7f271c00282d20694" 2473 }, 2474 "dist": { 2475 "type": "zip", 2476 - "url": "https://api.github.com/repos/flarum/tags/zipball/45cfb339e1ebd9f0204070f7f271c00282d20694", 2477 - "reference": "45cfb339e1ebd9f0204070f7f271c00282d20694", 2478 "shasum": "" 2479 }, 2480 "require": { ··· 2541 "type": "website" 2542 } 2543 ], 2544 - "time": "2023-05-20T15:08:42+00:00" 2545 }, 2546 { 2547 "name": "franzl/whoops-middleware", ··· 2589 }, 2590 { 2591 "name": "guzzlehttp/guzzle", 2592 - "version": "7.8.1", 2593 "source": { 2594 "type": "git", 2595 "url": "https://github.com/guzzle/guzzle.git", 2596 - "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" 2597 }, 2598 "dist": { 2599 "type": "zip", 2600 - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", 2601 - "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", 2602 "shasum": "" 2603 }, 2604 "require": { 2605 "ext-json": "*", 2606 - "guzzlehttp/promises": "^1.5.3 || ^2.0.1", 2607 - "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", 2608 "php": "^7.2.5 || ^8.0", 2609 "psr/http-client": "^1.0", 2610 "symfony/deprecation-contracts": "^2.2 || ^3.0" ··· 2615 "require-dev": { 2616 "bamarni/composer-bin-plugin": "^1.8.2", 2617 "ext-curl": "*", 2618 - "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", 2619 "php-http/message-factory": "^1.1", 2620 - "phpunit/phpunit": "^8.5.36 || ^9.6.15", 2621 "psr/log": "^1.1 || ^2.0 || ^3.0" 2622 }, 2623 "suggest": { ··· 2695 ], 2696 "support": { 2697 "issues": "https://github.com/guzzle/guzzle/issues", 2698 - "source": "https://github.com/guzzle/guzzle/tree/7.8.1" 2699 }, 2700 "funding": [ 2701 { ··· 2711 "type": "tidelift" 2712 } 2713 ], 2714 - "time": "2023-12-03T20:35:24+00:00" 2715 }, 2716 { 2717 "name": "guzzlehttp/promises", 2718 - "version": "2.0.2", 2719 "source": { 2720 "type": "git", 2721 "url": "https://github.com/guzzle/promises.git", 2722 - "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" 2723 }, 2724 "dist": { 2725 "type": "zip", 2726 - "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", 2727 - "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", 2728 "shasum": "" 2729 }, 2730 "require": { ··· 2732 }, 2733 "require-dev": { 2734 "bamarni/composer-bin-plugin": "^1.8.2", 2735 - "phpunit/phpunit": "^8.5.36 || ^9.6.15" 2736 }, 2737 "type": "library", 2738 "extra": { ··· 2778 ], 2779 "support": { 2780 "issues": "https://github.com/guzzle/promises/issues", 2781 - "source": "https://github.com/guzzle/promises/tree/2.0.2" 2782 }, 2783 "funding": [ 2784 { ··· 2794 "type": "tidelift" 2795 } 2796 ], 2797 - "time": "2023-12-03T20:19:20+00:00" 2798 }, 2799 { 2800 "name": "guzzlehttp/psr7", 2801 - "version": "2.6.2", 2802 "source": { 2803 "type": "git", 2804 "url": "https://github.com/guzzle/psr7.git", 2805 - "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" 2806 }, 2807 "dist": { 2808 "type": "zip", 2809 - "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", 2810 - "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", 2811 "shasum": "" 2812 }, 2813 "require": { ··· 2822 }, 2823 "require-dev": { 2824 "bamarni/composer-bin-plugin": "^1.8.2", 2825 - "http-interop/http-factory-tests": "^0.9", 2826 - "phpunit/phpunit": "^8.5.36 || ^9.6.15" 2827 }, 2828 "suggest": { 2829 "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" ··· 2894 ], 2895 "support": { 2896 "issues": "https://github.com/guzzle/psr7/issues", 2897 - "source": "https://github.com/guzzle/psr7/tree/2.6.2" 2898 }, 2899 "funding": [ 2900 { ··· 2910 "type": "tidelift" 2911 } 2912 ], 2913 - "time": "2023-12-03T20:05:35+00:00" 2914 }, 2915 { 2916 "name": "illuminate/bus", ··· 4060 }, 4061 "type": "library", 4062 "extra": { 4063 - "branch-alias": { 4064 - "dev-master": "2.4-dev" 4065 - }, 4066 "laravel": { 4067 - "providers": [ 4068 - "Intervention\\Image\\ImageServiceProvider" 4069 - ], 4070 "aliases": { 4071 "Image": "Intervention\\Image\\Facades\\Image" 4072 - } 4073 } 4074 }, 4075 "autoload": { ··· 4116 }, 4117 { 4118 "name": "jaybizzle/crawler-detect", 4119 - "version": "v1.2.118", 4120 "source": { 4121 "type": "git", 4122 "url": "https://github.com/JayBizzle/Crawler-Detect.git", 4123 - "reference": "9b8912ac5b78b780a0ead552b4c3dc9ddfdea4fd" 4124 }, 4125 "dist": { 4126 "type": "zip", 4127 - "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/9b8912ac5b78b780a0ead552b4c3dc9ddfdea4fd", 4128 - "reference": "9b8912ac5b78b780a0ead552b4c3dc9ddfdea4fd", 4129 "shasum": "" 4130 }, 4131 "require": { 4132 - "php": ">=5.3.0" 4133 }, 4134 "require-dev": { 4135 "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4" ··· 4162 ], 4163 "support": { 4164 "issues": "https://github.com/JayBizzle/Crawler-Detect/issues", 4165 - "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.118" 4166 }, 4167 - "time": "2024-04-23T17:07:05+00:00" 4168 }, 4169 { 4170 "name": "jenssegers/agent", ··· 4251 }, 4252 { 4253 "name": "laminas/laminas-diactoros", 4254 - "version": "2.26.0", 4255 "source": { 4256 "type": "git", 4257 "url": "https://github.com/laminas/laminas-diactoros.git", 4258 - "reference": "6584d44eb8e477e89d453313b858daac6183cddc" 4259 }, 4260 "dist": { 4261 "type": "zip", 4262 - "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6584d44eb8e477e89d453313b858daac6183cddc", 4263 - "reference": "6584d44eb8e477e89d453313b858daac6183cddc", 4264 "shasum": "" 4265 }, 4266 "require": { 4267 - "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", 4268 - "psr/http-factory": "^1.0", 4269 - "psr/http-message": "^1.1" 4270 }, 4271 "conflict": { 4272 - "zendframework/zend-diactoros": "*" 4273 }, 4274 "provide": { 4275 - "psr/http-factory-implementation": "1.0", 4276 - "psr/http-message-implementation": "1.0" 4277 }, 4278 "require-dev": { 4279 "ext-curl": "*", 4280 "ext-dom": "*", 4281 "ext-gd": "*", 4282 "ext-libxml": "*", 4283 - "http-interop/http-factory-tests": "^0.9.0", 4284 - "laminas/laminas-coding-standard": "^2.5", 4285 - "php-http/psr7-integration-tests": "^1.2", 4286 - "phpunit/phpunit": "^9.5.28", 4287 - "psalm/plugin-phpunit": "^0.18.4", 4288 - "vimeo/psalm": "^5.6" 4289 }, 4290 "type": "library", 4291 "extra": { ··· 4300 "src/functions/marshal_headers_from_sapi.php", 4301 "src/functions/marshal_method_from_sapi.php", 4302 "src/functions/marshal_protocol_version_from_sapi.php", 4303 - "src/functions/marshal_uri_from_sapi.php", 4304 "src/functions/normalize_server.php", 4305 "src/functions/normalize_uploaded_files.php", 4306 - "src/functions/parse_cookie_header.php", 4307 - "src/functions/create_uploaded_file.legacy.php", 4308 - "src/functions/marshal_headers_from_sapi.legacy.php", 4309 - "src/functions/marshal_method_from_sapi.legacy.php", 4310 - "src/functions/marshal_protocol_version_from_sapi.legacy.php", 4311 - "src/functions/marshal_uri_from_sapi.legacy.php", 4312 - "src/functions/normalize_server.legacy.php", 4313 - "src/functions/normalize_uploaded_files.legacy.php", 4314 - "src/functions/parse_cookie_header.legacy.php" 4315 ], 4316 "psr-4": { 4317 "Laminas\\Diactoros\\": "src/" ··· 4344 "type": "community_bridge" 4345 } 4346 ], 4347 - "time": "2023-10-29T16:17:44+00:00" 4348 }, 4349 { 4350 "name": "laminas/laminas-escaper", 4351 - "version": "2.13.0", 4352 "source": { 4353 "type": "git", 4354 "url": "https://github.com/laminas/laminas-escaper.git", 4355 - "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba" 4356 }, 4357 "dist": { 4358 "type": "zip", 4359 - "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/af459883f4018d0f8a0c69c7a209daef3bf973ba", 4360 - "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba", 4361 "shasum": "" 4362 }, 4363 "require": { 4364 "ext-ctype": "*", 4365 "ext-mbstring": "*", 4366 - "php": "~8.1.0 || ~8.2.0 || ~8.3.0" 4367 }, 4368 "conflict": { 4369 "zendframework/zend-escaper": "*" 4370 }, 4371 "require-dev": { 4372 - "infection/infection": "^0.27.0", 4373 - "laminas/laminas-coding-standard": "~2.5.0", 4374 "maglnet/composer-require-checker": "^3.8.0", 4375 - "phpunit/phpunit": "^9.6.7", 4376 - "psalm/plugin-phpunit": "^0.18.4", 4377 - "vimeo/psalm": "^5.9" 4378 }, 4379 "type": "library", 4380 "autoload": { ··· 4406 "type": "community_bridge" 4407 } 4408 ], 4409 - "time": "2023-10-10T08:35:13+00:00" 4410 }, 4411 { 4412 "name": "laminas/laminas-httphandlerrunner", 4413 - "version": "2.10.0", 4414 "source": { 4415 "type": "git", 4416 "url": "https://github.com/laminas/laminas-httphandlerrunner.git", 4417 - "reference": "35a0ba92e940a2f9533754f5a56187fa321f7693" 4418 }, 4419 "dist": { 4420 "type": "zip", 4421 - "url": "https://api.github.com/repos/laminas/laminas-httphandlerrunner/zipball/35a0ba92e940a2f9533754f5a56187fa321f7693", 4422 - "reference": "35a0ba92e940a2f9533754f5a56187fa321f7693", 4423 "shasum": "" 4424 }, 4425 "require": { 4426 - "php": "~8.1.0 || ~8.2.0 || ~8.3.0", 4427 "psr/http-message": "^1.0 || ^2.0", 4428 "psr/http-message-implementation": "^1.0 || ^2.0", 4429 "psr/http-server-handler": "^1.0" 4430 }, 4431 "require-dev": { 4432 - "laminas/laminas-coding-standard": "~2.5.0", 4433 - "laminas/laminas-diactoros": "^3.3.0", 4434 - "phpunit/phpunit": "^10.5.5", 4435 - "psalm/plugin-phpunit": "^0.18.4", 4436 - "vimeo/psalm": "^5.18" 4437 }, 4438 "type": "library", 4439 "extra": { ··· 4473 "type": "community_bridge" 4474 } 4475 ], 4476 - "time": "2024-01-04T10:50:34+00:00" 4477 }, 4478 { 4479 "name": "laminas/laminas-stratigility", 4480 - "version": "3.11.0", 4481 "source": { 4482 "type": "git", 4483 "url": "https://github.com/laminas/laminas-stratigility.git", 4484 - "reference": "4dee4580a8efea63a8b2b24dbf4604ee480e8cd6" 4485 }, 4486 "dist": { 4487 "type": "zip", 4488 - "url": "https://api.github.com/repos/laminas/laminas-stratigility/zipball/4dee4580a8efea63a8b2b24dbf4604ee480e8cd6", 4489 - "reference": "4dee4580a8efea63a8b2b24dbf4604ee480e8cd6", 4490 "shasum": "" 4491 }, 4492 "require": { 4493 "fig/http-message-util": "^1.1", 4494 "laminas/laminas-escaper": "^2.10.0", 4495 - "php": "~8.1.0 || ~8.2.0 || ~8.3.0", 4496 "psr/http-message": "^1.0 || ^2.0", 4497 "psr/http-server-middleware": "^1.0.2" 4498 }, ··· 4500 "zendframework/zend-stratigility": "*" 4501 }, 4502 "require-dev": { 4503 - "laminas/laminas-coding-standard": "~2.5.0", 4504 - "laminas/laminas-diactoros": "^2.25 || ^3.3", 4505 - "phpunit/phpunit": "^10.4.2", 4506 - "psalm/plugin-phpunit": "^0.18.4", 4507 - "vimeo/psalm": "^5.15.0" 4508 }, 4509 "suggest": { 4510 - "psr/http-message-implementation": "Please install a psr/http-message-implementation to consume Stratigility; e.g., laminas/laminas-diactoros" 4511 }, 4512 "type": "library", 4513 "autoload": { ··· 4515 "src/functions/double-pass-middleware.php", 4516 "src/functions/host.php", 4517 "src/functions/middleware.php", 4518 - "src/functions/path.php", 4519 - "src/functions/double-pass-middleware.legacy.php", 4520 - "src/functions/host.legacy.php", 4521 - "src/functions/middleware.legacy.php", 4522 - "src/functions/path.legacy.php" 4523 ], 4524 "psr-4": { 4525 "Laminas\\Stratigility\\": "src/" ··· 4536 "laminas", 4537 "middleware", 4538 "psr-15", 4539 "psr-7" 4540 ], 4541 "support": { ··· 4552 "type": "community_bridge" 4553 } 4554 ], 4555 - "time": "2023-10-31T16:26:05+00:00" 4556 }, 4557 { 4558 "name": "laravel/serializable-closure", 4559 - "version": "v1.3.3", 4560 "source": { 4561 "type": "git", 4562 "url": "https://github.com/laravel/serializable-closure.git", 4563 - "reference": "3dbf8a8e914634c48d389c1234552666b3d43754" 4564 }, 4565 "dist": { 4566 "type": "zip", 4567 - "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754", 4568 - "reference": "3dbf8a8e914634c48d389c1234552666b3d43754", 4569 "shasum": "" 4570 }, 4571 "require": { 4572 "php": "^7.3|^8.0" 4573 }, 4574 "require-dev": { 4575 - "nesbot/carbon": "^2.61", 4576 "pestphp/pest": "^1.21.3", 4577 "phpstan/phpstan": "^1.8.2", 4578 - "symfony/var-dumper": "^5.4.11" 4579 }, 4580 "type": "library", 4581 "extra": { ··· 4612 "issues": "https://github.com/laravel/serializable-closure/issues", 4613 "source": "https://github.com/laravel/serializable-closure" 4614 }, 4615 - "time": "2023-11-08T14:08:06+00:00" 4616 }, 4617 { 4618 "name": "league/commonmark", 4619 - "version": "2.4.2", 4620 "source": { 4621 "type": "git", 4622 "url": "https://github.com/thephpleague/commonmark.git", 4623 - "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf" 4624 }, 4625 "dist": { 4626 "type": "zip", 4627 - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf", 4628 - "reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf", 4629 "shasum": "" 4630 }, 4631 "require": { ··· 4638 }, 4639 "require-dev": { 4640 "cebe/markdown": "^1.0", 4641 - "commonmark/cmark": "0.30.3", 4642 - "commonmark/commonmark.js": "0.30.0", 4643 "composer/package-versions-deprecated": "^1.8", 4644 "embed/embed": "^4.4", 4645 "erusev/parsedown": "^1.0", ··· 4661 "type": "library", 4662 "extra": { 4663 "branch-alias": { 4664 - "dev-main": "2.5-dev" 4665 } 4666 }, 4667 "autoload": { ··· 4718 "type": "tidelift" 4719 } 4720 ], 4721 - "time": "2024-02-02T11:59:32+00:00" 4722 }, 4723 { 4724 "name": "league/config", ··· 4898 }, 4899 { 4900 "name": "league/mime-type-detection", 4901 - "version": "1.15.0", 4902 "source": { 4903 "type": "git", 4904 "url": "https://github.com/thephpleague/mime-type-detection.git", 4905 - "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301" 4906 }, 4907 "dist": { 4908 "type": "zip", 4909 - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", 4910 - "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301", 4911 "shasum": "" 4912 }, 4913 "require": { ··· 4938 "description": "Mime-type detection for Flysystem", 4939 "support": { 4940 "issues": "https://github.com/thephpleague/mime-type-detection/issues", 4941 - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0" 4942 }, 4943 "funding": [ 4944 { ··· 4950 "type": "tidelift" 4951 } 4952 ], 4953 - "time": "2024-01-28T23:22:08+00:00" 4954 }, 4955 { 4956 "name": "matthiasmullie/minify", ··· 5450 }, 5451 { 5452 "name": "nesbot/carbon", 5453 - "version": "2.72.3", 5454 "source": { 5455 "type": "git", 5456 "url": "https://github.com/briannesbitt/Carbon.git", 5457 - "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83" 5458 }, 5459 "dist": { 5460 "type": "zip", 5461 - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83", 5462 - "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83", 5463 "shasum": "" 5464 }, 5465 "require": { ··· 5493 "type": "library", 5494 "extra": { 5495 "branch-alias": { 5496 - "dev-3.x": "3.x-dev", 5497 - "dev-master": "2.x-dev" 5498 }, 5499 "laravel": { 5500 "providers": [ ··· 5553 "type": "tidelift" 5554 } 5555 ], 5556 - "time": "2024-01-25T10:35:09+00:00" 5557 }, 5558 { 5559 "name": "nette/schema", 5560 - "version": "v1.3.0", 5561 "source": { 5562 "type": "git", 5563 "url": "https://github.com/nette/schema.git", 5564 - "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188" 5565 }, 5566 "dist": { 5567 "type": "zip", 5568 - "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", 5569 - "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", 5570 "shasum": "" 5571 }, 5572 "require": { 5573 "nette/utils": "^4.0", 5574 - "php": "8.1 - 8.3" 5575 }, 5576 "require-dev": { 5577 - "nette/tester": "^2.4", 5578 "phpstan/phpstan-nette": "^1.0", 5579 "tracy/tracy": "^2.8" 5580 }, ··· 5613 ], 5614 "support": { 5615 "issues": "https://github.com/nette/schema/issues", 5616 - "source": "https://github.com/nette/schema/tree/v1.3.0" 5617 }, 5618 - "time": "2023-12-11T11:54:22+00:00" 5619 }, 5620 { 5621 "name": "nette/utils", 5622 - "version": "v4.0.4", 5623 "source": { 5624 "type": "git", 5625 "url": "https://github.com/nette/utils.git", 5626 - "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218" 5627 }, 5628 "dist": { 5629 "type": "zip", 5630 - "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218", 5631 - "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218", 5632 "shasum": "" 5633 }, 5634 "require": { 5635 - "php": ">=8.0 <8.4" 5636 }, 5637 "conflict": { 5638 "nette/finder": "<3", ··· 5699 ], 5700 "support": { 5701 "issues": "https://github.com/nette/utils/issues", 5702 - "source": "https://github.com/nette/utils/tree/v4.0.4" 5703 }, 5704 - "time": "2024-01-17T16:50:36+00:00" 5705 }, 5706 { 5707 "name": "nikic/fast-route", ··· 7120 }, 7121 { 7122 "name": "symfony/config", 7123 - "version": "v5.4.39", 7124 "source": { 7125 "type": "git", 7126 "url": "https://github.com/symfony/config.git", 7127 - "reference": "62cec4a067931552624a9962002c210c502d42fd" 7128 }, 7129 "dist": { 7130 "type": "zip", 7131 - "url": "https://api.github.com/repos/symfony/config/zipball/62cec4a067931552624a9962002c210c502d42fd", 7132 - "reference": "62cec4a067931552624a9962002c210c502d42fd", 7133 "shasum": "" 7134 }, 7135 "require": { ··· 7179 "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", 7180 "homepage": "https://symfony.com", 7181 "support": { 7182 - "source": "https://github.com/symfony/config/tree/v5.4.39" 7183 }, 7184 "funding": [ 7185 { ··· 7195 "type": "tidelift" 7196 } 7197 ], 7198 - "time": "2024-04-18T08:26:06+00:00" 7199 }, 7200 { 7201 "name": "symfony/console", 7202 - "version": "v5.4.39", 7203 "source": { 7204 "type": "git", 7205 "url": "https://github.com/symfony/console.git", 7206 - "reference": "f3e591c48688a0cfa1a3296205926c05e84b22b1" 7207 }, 7208 "dist": { 7209 "type": "zip", 7210 - "url": "https://api.github.com/repos/symfony/console/zipball/f3e591c48688a0cfa1a3296205926c05e84b22b1", 7211 - "reference": "f3e591c48688a0cfa1a3296205926c05e84b22b1", 7212 "shasum": "" 7213 }, 7214 "require": { ··· 7278 "terminal" 7279 ], 7280 "support": { 7281 - "source": "https://github.com/symfony/console/tree/v5.4.39" 7282 }, 7283 "funding": [ 7284 { ··· 7294 "type": "tidelift" 7295 } 7296 ], 7297 - "time": "2024-04-18T08:26:06+00:00" 7298 }, 7299 { 7300 "name": "symfony/css-selector", 7301 - "version": "v6.4.7", 7302 "source": { 7303 "type": "git", 7304 "url": "https://github.com/symfony/css-selector.git", 7305 - "reference": "1c5d5c2103c3762aff27a27e1e2409e30a79083b" 7306 }, 7307 "dist": { 7308 "type": "zip", 7309 - "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c5d5c2103c3762aff27a27e1e2409e30a79083b", 7310 - "reference": "1c5d5c2103c3762aff27a27e1e2409e30a79083b", 7311 "shasum": "" 7312 }, 7313 "require": { 7314 - "php": ">=8.1" 7315 }, 7316 "type": "library", 7317 "autoload": { ··· 7343 "description": "Converts CSS selectors to XPath expressions", 7344 "homepage": "https://symfony.com", 7345 "support": { 7346 - "source": "https://github.com/symfony/css-selector/tree/v6.4.7" 7347 }, 7348 "funding": [ 7349 { ··· 7359 "type": "tidelift" 7360 } 7361 ], 7362 - "time": "2024-04-18T09:22:46+00:00" 7363 }, 7364 { 7365 "name": "symfony/deprecation-contracts", 7366 - "version": "v3.5.0", 7367 "source": { 7368 "type": "git", 7369 "url": "https://github.com/symfony/deprecation-contracts.git", 7370 - "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" 7371 }, 7372 "dist": { 7373 "type": "zip", 7374 - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", 7375 - "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", 7376 "shasum": "" 7377 }, 7378 "require": { ··· 7410 "description": "A generic function and convention to trigger deprecation notices", 7411 "homepage": "https://symfony.com", 7412 "support": { 7413 - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" 7414 }, 7415 "funding": [ 7416 { ··· 7426 "type": "tidelift" 7427 } 7428 ], 7429 - "time": "2024-04-18T09:32:20+00:00" 7430 }, 7431 { 7432 "name": "symfony/event-dispatcher", 7433 - "version": "v5.4.39", 7434 "source": { 7435 "type": "git", 7436 "url": "https://github.com/symfony/event-dispatcher.git", 7437 - "reference": "d40fae9fd85c762b6ba378152fdd1157a85d7e4f" 7438 }, 7439 "dist": { 7440 "type": "zip", 7441 - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d40fae9fd85c762b6ba378152fdd1157a85d7e4f", 7442 - "reference": "d40fae9fd85c762b6ba378152fdd1157a85d7e4f", 7443 "shasum": "" 7444 }, 7445 "require": { ··· 7495 "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", 7496 "homepage": "https://symfony.com", 7497 "support": { 7498 - "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.39" 7499 }, 7500 "funding": [ 7501 { ··· 7511 "type": "tidelift" 7512 } 7513 ], 7514 - "time": "2024-04-18T08:26:06+00:00" 7515 }, 7516 { 7517 "name": "symfony/event-dispatcher-contracts", 7518 - "version": "v3.5.0", 7519 "source": { 7520 "type": "git", 7521 "url": "https://github.com/symfony/event-dispatcher-contracts.git", 7522 - "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50" 7523 }, 7524 "dist": { 7525 "type": "zip", 7526 - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", 7527 - "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", 7528 "shasum": "" 7529 }, 7530 "require": { ··· 7571 "standards" 7572 ], 7573 "support": { 7574 - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0" 7575 }, 7576 "funding": [ 7577 { ··· 7587 "type": "tidelift" 7588 } 7589 ], 7590 - "time": "2024-04-18T09:32:20+00:00" 7591 }, 7592 { 7593 "name": "symfony/filesystem", 7594 - "version": "v6.4.7", 7595 "source": { 7596 "type": "git", 7597 "url": "https://github.com/symfony/filesystem.git", 7598 - "reference": "78dde75f8f6dbbca4ec436a4b0087f7af02076d4" 7599 }, 7600 "dist": { 7601 "type": "zip", 7602 - "url": "https://api.github.com/repos/symfony/filesystem/zipball/78dde75f8f6dbbca4ec436a4b0087f7af02076d4", 7603 - "reference": "78dde75f8f6dbbca4ec436a4b0087f7af02076d4", 7604 "shasum": "" 7605 }, 7606 "require": { 7607 "php": ">=8.1", 7608 "symfony/polyfill-ctype": "~1.8", 7609 - "symfony/polyfill-mbstring": "~1.8", 7610 - "symfony/process": "^5.4|^6.4" 7611 }, 7612 "type": "library", 7613 "autoload": { ··· 7635 "description": "Provides basic utilities for the filesystem", 7636 "homepage": "https://symfony.com", 7637 "support": { 7638 - "source": "https://github.com/symfony/filesystem/tree/v6.4.7" 7639 }, 7640 "funding": [ 7641 { ··· 7651 "type": "tidelift" 7652 } 7653 ], 7654 - "time": "2024-04-18T09:22:46+00:00" 7655 }, 7656 { 7657 "name": "symfony/finder", 7658 - "version": "v5.4.39", 7659 "source": { 7660 "type": "git", 7661 "url": "https://github.com/symfony/finder.git", 7662 - "reference": "f6a96e4fcd468a25fede16ee665f50ced856bd0a" 7663 }, 7664 "dist": { 7665 "type": "zip", 7666 - "url": "https://api.github.com/repos/symfony/finder/zipball/f6a96e4fcd468a25fede16ee665f50ced856bd0a", 7667 - "reference": "f6a96e4fcd468a25fede16ee665f50ced856bd0a", 7668 "shasum": "" 7669 }, 7670 "require": { ··· 7698 "description": "Finds files and directories via an intuitive fluent interface", 7699 "homepage": "https://symfony.com", 7700 "support": { 7701 - "source": "https://github.com/symfony/finder/tree/v5.4.39" 7702 }, 7703 "funding": [ 7704 { ··· 7714 "type": "tidelift" 7715 } 7716 ], 7717 - "time": "2024-04-18T08:26:06+00:00" 7718 }, 7719 { 7720 "name": "symfony/http-foundation", 7721 - "version": "v5.4.39", 7722 "source": { 7723 "type": "git", 7724 "url": "https://github.com/symfony/http-foundation.git", 7725 - "reference": "3356c93efc30b0c85a37606bdfef16b813faec0e" 7726 }, 7727 "dist": { 7728 "type": "zip", 7729 - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3356c93efc30b0c85a37606bdfef16b813faec0e", 7730 - "reference": "3356c93efc30b0c85a37606bdfef16b813faec0e", 7731 "shasum": "" 7732 }, 7733 "require": { ··· 7737 "symfony/polyfill-php80": "^1.16" 7738 }, 7739 "require-dev": { 7740 - "predis/predis": "~1.0", 7741 "symfony/cache": "^4.4|^5.0|^6.0", 7742 "symfony/dependency-injection": "^5.4|^6.0", 7743 "symfony/expression-language": "^4.4|^5.0|^6.0", ··· 7774 "description": "Defines an object-oriented layer for the HTTP specification", 7775 "homepage": "https://symfony.com", 7776 "support": { 7777 - "source": "https://github.com/symfony/http-foundation/tree/v5.4.39" 7778 }, 7779 "funding": [ 7780 { ··· 7790 "type": "tidelift" 7791 } 7792 ], 7793 - "time": "2024-04-18T08:26:06+00:00" 7794 }, 7795 { 7796 "name": "symfony/mime", 7797 - "version": "v5.4.39", 7798 "source": { 7799 "type": "git", 7800 "url": "https://github.com/symfony/mime.git", 7801 - "reference": "a5364f016fd9e090f7b4f250a97ea6925a5ca985" 7802 }, 7803 "dist": { 7804 "type": "zip", 7805 - "url": "https://api.github.com/repos/symfony/mime/zipball/a5364f016fd9e090f7b4f250a97ea6925a5ca985", 7806 - "reference": "a5364f016fd9e090f7b4f250a97ea6925a5ca985", 7807 "shasum": "" 7808 }, 7809 "require": { ··· 7859 "mime-type" 7860 ], 7861 "support": { 7862 - "source": "https://github.com/symfony/mime/tree/v5.4.39" 7863 }, 7864 "funding": [ 7865 { ··· 7875 "type": "tidelift" 7876 } 7877 ], 7878 - "time": "2024-04-18T08:26:06+00:00" 7879 }, 7880 { 7881 "name": "symfony/polyfill-ctype", 7882 - "version": "v1.29.0", 7883 "source": { 7884 "type": "git", 7885 "url": "https://github.com/symfony/polyfill-ctype.git", 7886 - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" 7887 }, 7888 "dist": { 7889 "type": "zip", 7890 - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", 7891 - "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", 7892 "shasum": "" 7893 }, 7894 "require": { 7895 - "php": ">=7.1" 7896 }, 7897 "provide": { 7898 "ext-ctype": "*" ··· 7938 "portable" 7939 ], 7940 "support": { 7941 - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0" 7942 }, 7943 "funding": [ 7944 { ··· 7954 "type": "tidelift" 7955 } 7956 ], 7957 - "time": "2024-01-29T20:11:03+00:00" 7958 }, 7959 { 7960 "name": "symfony/polyfill-iconv", 7961 - "version": "v1.29.0", 7962 "source": { 7963 "type": "git", 7964 "url": "https://github.com/symfony/polyfill-iconv.git", 7965 - "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f" 7966 }, 7967 "dist": { 7968 "type": "zip", 7969 - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", 7970 - "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", 7971 "shasum": "" 7972 }, 7973 "require": { 7974 - "php": ">=7.1" 7975 }, 7976 "provide": { 7977 "ext-iconv": "*" ··· 8018 "shim" 8019 ], 8020 "support": { 8021 - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0" 8022 }, 8023 "funding": [ 8024 { ··· 8034 "type": "tidelift" 8035 } 8036 ], 8037 - "time": "2024-01-29T20:11:03+00:00" 8038 }, 8039 { 8040 "name": "symfony/polyfill-intl-grapheme", 8041 - "version": "v1.29.0", 8042 "source": { 8043 "type": "git", 8044 "url": "https://github.com/symfony/polyfill-intl-grapheme.git", 8045 - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" 8046 }, 8047 "dist": { 8048 "type": "zip", 8049 - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", 8050 - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", 8051 "shasum": "" 8052 }, 8053 "require": { 8054 - "php": ">=7.1" 8055 }, 8056 "suggest": { 8057 "ext-intl": "For best performance" ··· 8096 "shim" 8097 ], 8098 "support": { 8099 - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" 8100 }, 8101 "funding": [ 8102 { ··· 8112 "type": "tidelift" 8113 } 8114 ], 8115 - "time": "2024-01-29T20:11:03+00:00" 8116 }, 8117 { 8118 "name": "symfony/polyfill-intl-idn", 8119 - "version": "v1.29.0", 8120 "source": { 8121 "type": "git", 8122 "url": "https://github.com/symfony/polyfill-intl-idn.git", 8123 - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" 8124 }, 8125 "dist": { 8126 "type": "zip", 8127 - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", 8128 - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", 8129 "shasum": "" 8130 }, 8131 "require": { 8132 - "php": ">=7.1", 8133 - "symfony/polyfill-intl-normalizer": "^1.10", 8134 - "symfony/polyfill-php72": "^1.10" 8135 }, 8136 "suggest": { 8137 "ext-intl": "For best performance" ··· 8180 "shim" 8181 ], 8182 "support": { 8183 - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0" 8184 }, 8185 "funding": [ 8186 { ··· 8196 "type": "tidelift" 8197 } 8198 ], 8199 - "time": "2024-01-29T20:11:03+00:00" 8200 }, 8201 { 8202 "name": "symfony/polyfill-intl-messageformatter", 8203 - "version": "v1.29.0", 8204 "source": { 8205 "type": "git", 8206 "url": "https://github.com/symfony/polyfill-intl-messageformatter.git", 8207 - "reference": "6603d1d7cb7fb3df80c23ecf6ea6977f8a02be3f" 8208 }, 8209 "dist": { 8210 "type": "zip", 8211 - "url": "https://api.github.com/repos/symfony/polyfill-intl-messageformatter/zipball/6603d1d7cb7fb3df80c23ecf6ea6977f8a02be3f", 8212 - "reference": "6603d1d7cb7fb3df80c23ecf6ea6977f8a02be3f", 8213 "shasum": "" 8214 }, 8215 "require": { 8216 - "php": ">=7.1" 8217 }, 8218 "suggest": { 8219 "ext-intl": "For best performance" ··· 8261 "shim" 8262 ], 8263 "support": { 8264 - "source": "https://github.com/symfony/polyfill-intl-messageformatter/tree/v1.29.0" 8265 }, 8266 "funding": [ 8267 { ··· 8277 "type": "tidelift" 8278 } 8279 ], 8280 - "time": "2024-01-29T20:11:03+00:00" 8281 }, 8282 { 8283 "name": "symfony/polyfill-intl-normalizer", 8284 - "version": "v1.29.0", 8285 "source": { 8286 "type": "git", 8287 "url": "https://github.com/symfony/polyfill-intl-normalizer.git", 8288 - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" 8289 }, 8290 "dist": { 8291 "type": "zip", 8292 - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", 8293 - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", 8294 "shasum": "" 8295 }, 8296 "require": { 8297 - "php": ">=7.1" 8298 }, 8299 "suggest": { 8300 "ext-intl": "For best performance" ··· 8342 "shim" 8343 ], 8344 "support": { 8345 - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" 8346 }, 8347 "funding": [ 8348 { ··· 8358 "type": "tidelift" 8359 } 8360 ], 8361 - "time": "2024-01-29T20:11:03+00:00" 8362 }, 8363 { 8364 "name": "symfony/polyfill-mbstring", 8365 - "version": "v1.29.0", 8366 "source": { 8367 "type": "git", 8368 "url": "https://github.com/symfony/polyfill-mbstring.git", 8369 - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" 8370 }, 8371 "dist": { 8372 "type": "zip", 8373 - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", 8374 - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", 8375 "shasum": "" 8376 }, 8377 "require": { 8378 - "php": ">=7.1" 8379 }, 8380 "provide": { 8381 "ext-mbstring": "*" ··· 8422 "shim" 8423 ], 8424 "support": { 8425 - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" 8426 }, 8427 "funding": [ 8428 { ··· 8438 "type": "tidelift" 8439 } 8440 ], 8441 - "time": "2024-01-29T20:11:03+00:00" 8442 - }, 8443 - { 8444 - "name": "symfony/polyfill-php72", 8445 - "version": "v1.29.0", 8446 - "source": { 8447 - "type": "git", 8448 - "url": "https://github.com/symfony/polyfill-php72.git", 8449 - "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25" 8450 - }, 8451 - "dist": { 8452 - "type": "zip", 8453 - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", 8454 - "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", 8455 - "shasum": "" 8456 - }, 8457 - "require": { 8458 - "php": ">=7.1" 8459 - }, 8460 - "type": "library", 8461 - "extra": { 8462 - "thanks": { 8463 - "name": "symfony/polyfill", 8464 - "url": "https://github.com/symfony/polyfill" 8465 - } 8466 - }, 8467 - "autoload": { 8468 - "files": [ 8469 - "bootstrap.php" 8470 - ], 8471 - "psr-4": { 8472 - "Symfony\\Polyfill\\Php72\\": "" 8473 - } 8474 - }, 8475 - "notification-url": "https://packagist.org/downloads/", 8476 - "license": [ 8477 - "MIT" 8478 - ], 8479 - "authors": [ 8480 - { 8481 - "name": "Nicolas Grekas", 8482 - "email": "p@tchwork.com" 8483 - }, 8484 - { 8485 - "name": "Symfony Community", 8486 - "homepage": "https://symfony.com/contributors" 8487 - } 8488 - ], 8489 - "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", 8490 - "homepage": "https://symfony.com", 8491 - "keywords": [ 8492 - "compatibility", 8493 - "polyfill", 8494 - "portable", 8495 - "shim" 8496 - ], 8497 - "support": { 8498 - "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0" 8499 - }, 8500 - "funding": [ 8501 - { 8502 - "url": "https://symfony.com/sponsor", 8503 - "type": "custom" 8504 - }, 8505 - { 8506 - "url": "https://github.com/fabpot", 8507 - "type": "github" 8508 - }, 8509 - { 8510 - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 8511 - "type": "tidelift" 8512 - } 8513 - ], 8514 - "time": "2024-01-29T20:11:03+00:00" 8515 }, 8516 { 8517 "name": "symfony/polyfill-php73", 8518 - "version": "v1.29.0", 8519 "source": { 8520 "type": "git", 8521 "url": "https://github.com/symfony/polyfill-php73.git", 8522 - "reference": "21bd091060673a1177ae842c0ef8fe30893114d2" 8523 }, 8524 "dist": { 8525 "type": "zip", 8526 - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/21bd091060673a1177ae842c0ef8fe30893114d2", 8527 - "reference": "21bd091060673a1177ae842c0ef8fe30893114d2", 8528 "shasum": "" 8529 }, 8530 "require": { 8531 - "php": ">=7.1" 8532 }, 8533 "type": "library", 8534 "extra": { ··· 8571 "shim" 8572 ], 8573 "support": { 8574 - "source": "https://github.com/symfony/polyfill-php73/tree/v1.29.0" 8575 }, 8576 "funding": [ 8577 { ··· 8587 "type": "tidelift" 8588 } 8589 ], 8590 - "time": "2024-01-29T20:11:03+00:00" 8591 }, 8592 { 8593 "name": "symfony/polyfill-php80", 8594 - "version": "v1.29.0", 8595 "source": { 8596 "type": "git", 8597 "url": "https://github.com/symfony/polyfill-php80.git", 8598 - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b" 8599 }, 8600 "dist": { 8601 "type": "zip", 8602 - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", 8603 - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", 8604 "shasum": "" 8605 }, 8606 "require": { 8607 - "php": ">=7.1" 8608 }, 8609 "type": "library", 8610 "extra": { ··· 8651 "shim" 8652 ], 8653 "support": { 8654 - "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0" 8655 }, 8656 "funding": [ 8657 { ··· 8667 "type": "tidelift" 8668 } 8669 ], 8670 - "time": "2024-01-29T20:11:03+00:00" 8671 }, 8672 { 8673 "name": "symfony/polyfill-php81", 8674 - "version": "v1.29.0", 8675 "source": { 8676 "type": "git", 8677 "url": "https://github.com/symfony/polyfill-php81.git", 8678 - "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d" 8679 }, 8680 "dist": { 8681 "type": "zip", 8682 - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d", 8683 - "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d", 8684 "shasum": "" 8685 }, 8686 "require": { 8687 - "php": ">=7.1" 8688 }, 8689 "type": "library", 8690 "extra": { ··· 8727 "shim" 8728 ], 8729 "support": { 8730 - "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0" 8731 }, 8732 "funding": [ 8733 { ··· 8743 "type": "tidelift" 8744 } 8745 ], 8746 - "time": "2024-01-29T20:11:03+00:00" 8747 }, 8748 { 8749 "name": "symfony/process", 8750 - "version": "v5.4.39", 8751 "source": { 8752 "type": "git", 8753 "url": "https://github.com/symfony/process.git", 8754 - "reference": "85a554acd7c28522241faf2e97b9541247a0d3d5" 8755 }, 8756 "dist": { 8757 "type": "zip", 8758 - "url": "https://api.github.com/repos/symfony/process/zipball/85a554acd7c28522241faf2e97b9541247a0d3d5", 8759 - "reference": "85a554acd7c28522241faf2e97b9541247a0d3d5", 8760 "shasum": "" 8761 }, 8762 "require": { ··· 8789 "description": "Executes commands in sub-processes", 8790 "homepage": "https://symfony.com", 8791 "support": { 8792 - "source": "https://github.com/symfony/process/tree/v5.4.39" 8793 }, 8794 "funding": [ 8795 { ··· 8805 "type": "tidelift" 8806 } 8807 ], 8808 - "time": "2024-04-18T08:26:06+00:00" 8809 }, 8810 { 8811 "name": "symfony/service-contracts", 8812 - "version": "v3.5.0", 8813 "source": { 8814 "type": "git", 8815 "url": "https://github.com/symfony/service-contracts.git", 8816 - "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" 8817 }, 8818 "dist": { 8819 "type": "zip", 8820 - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", 8821 - "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", 8822 "shasum": "" 8823 }, 8824 "require": { ··· 8872 "standards" 8873 ], 8874 "support": { 8875 - "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" 8876 }, 8877 "funding": [ 8878 { ··· 8888 "type": "tidelift" 8889 } 8890 ], 8891 - "time": "2024-04-18T09:32:20+00:00" 8892 }, 8893 { 8894 "name": "symfony/string", 8895 - "version": "v6.4.7", 8896 "source": { 8897 "type": "git", 8898 "url": "https://github.com/symfony/string.git", 8899 - "reference": "ffeb9591c61f65a68d47f77d12b83fa530227a69" 8900 }, 8901 "dist": { 8902 "type": "zip", 8903 - "url": "https://api.github.com/repos/symfony/string/zipball/ffeb9591c61f65a68d47f77d12b83fa530227a69", 8904 - "reference": "ffeb9591c61f65a68d47f77d12b83fa530227a69", 8905 "shasum": "" 8906 }, 8907 "require": { ··· 8958 "utf8" 8959 ], 8960 "support": { 8961 - "source": "https://github.com/symfony/string/tree/v6.4.7" 8962 }, 8963 "funding": [ 8964 { ··· 8974 "type": "tidelift" 8975 } 8976 ], 8977 - "time": "2024-04-18T09:22:46+00:00" 8978 }, 8979 { 8980 "name": "symfony/translation", 8981 - "version": "v5.4.39", 8982 "source": { 8983 "type": "git", 8984 "url": "https://github.com/symfony/translation.git", 8985 - "reference": "0fabede35e3985c4f96089edeeefe8313e15ca3a" 8986 }, 8987 "dist": { 8988 "type": "zip", 8989 - "url": "https://api.github.com/repos/symfony/translation/zipball/0fabede35e3985c4f96089edeeefe8313e15ca3a", 8990 - "reference": "0fabede35e3985c4f96089edeeefe8313e15ca3a", 8991 "shasum": "" 8992 }, 8993 "require": { ··· 9055 "description": "Provides tools to internationalize your application", 9056 "homepage": "https://symfony.com", 9057 "support": { 9058 - "source": "https://github.com/symfony/translation/tree/v5.4.39" 9059 }, 9060 "funding": [ 9061 { ··· 9071 "type": "tidelift" 9072 } 9073 ], 9074 - "time": "2024-04-18T08:26:06+00:00" 9075 }, 9076 { 9077 "name": "symfony/translation-contracts", 9078 - "version": "v2.5.3", 9079 "source": { 9080 "type": "git", 9081 "url": "https://github.com/symfony/translation-contracts.git", 9082 - "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664" 9083 }, 9084 "dist": { 9085 "type": "zip", 9086 - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664", 9087 - "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664", 9088 "shasum": "" 9089 }, 9090 "require": { ··· 9133 "standards" 9134 ], 9135 "support": { 9136 - "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3" 9137 }, 9138 "funding": [ 9139 { ··· 9149 "type": "tidelift" 9150 } 9151 ], 9152 - "time": "2024-01-23T13:51:25+00:00" 9153 }, 9154 { 9155 "name": "symfony/yaml", 9156 - "version": "v5.4.39", 9157 "source": { 9158 "type": "git", 9159 "url": "https://github.com/symfony/yaml.git", 9160 - "reference": "bc780e16879000f77a1022163c052f5323b5e640" 9161 }, 9162 "dist": { 9163 "type": "zip", 9164 - "url": "https://api.github.com/repos/symfony/yaml/zipball/bc780e16879000f77a1022163c052f5323b5e640", 9165 - "reference": "bc780e16879000f77a1022163c052f5323b5e640", 9166 "shasum": "" 9167 }, 9168 "require": { ··· 9208 "description": "Loads and dumps YAML files", 9209 "homepage": "https://symfony.com", 9210 "support": { 9211 - "source": "https://github.com/symfony/yaml/tree/v5.4.39" 9212 }, 9213 "funding": [ 9214 { ··· 9224 "type": "tidelift" 9225 } 9226 ], 9227 - "time": "2024-04-23T11:57:27+00:00" 9228 }, 9229 { 9230 "name": "tijsverkoyen/css-to-inline-styles", ··· 9490 "packages-dev": [], 9491 "aliases": [], 9492 "minimum-stability": "stable", 9493 - "stability-flags": [], 9494 "prefer-stable": false, 9495 "prefer-lowest": false, 9496 - "platform": [], 9497 - "platform-dev": [], 9498 - "plugin-api-version": "2.3.0" 9499 }
··· 229 }, 230 { 231 "name": "dflydev/dot-access-data", 232 + "version": "v3.0.3", 233 "source": { 234 "type": "git", 235 "url": "https://github.com/dflydev/dflydev-dot-access-data.git", 236 + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" 237 }, 238 "dist": { 239 "type": "zip", 240 + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", 241 + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", 242 "shasum": "" 243 }, 244 "require": { ··· 298 ], 299 "support": { 300 "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", 301 + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" 302 }, 303 + "time": "2024-07-08T12:26:09+00:00" 304 }, 305 { 306 "name": "dflydev/fig-cookies", ··· 874 }, 875 { 876 "name": "dragonmantank/cron-expression", 877 + "version": "v3.4.0", 878 "source": { 879 "type": "git", 880 "url": "https://github.com/dragonmantank/cron-expression.git", 881 + "reference": "8c784d071debd117328803d86b2097615b457500" 882 }, 883 "dist": { 884 "type": "zip", 885 + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500", 886 + "reference": "8c784d071debd117328803d86b2097615b457500", 887 "shasum": "" 888 }, 889 "require": { ··· 896 "require-dev": { 897 "phpstan/extension-installer": "^1.0", 898 "phpstan/phpstan": "^1.0", 899 "phpunit/phpunit": "^7.0|^8.0|^9.0" 900 }, 901 "type": "library", 902 + "extra": { 903 + "branch-alias": { 904 + "dev-master": "3.x-dev" 905 + } 906 + }, 907 "autoload": { 908 "psr-4": { 909 "Cron\\": "src/Cron/" ··· 927 ], 928 "support": { 929 "issues": "https://github.com/dragonmantank/cron-expression/issues", 930 + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0" 931 }, 932 "funding": [ 933 { ··· 935 "type": "github" 936 } 937 ], 938 + "time": "2024-10-09T13:47:03+00:00" 939 }, 940 { 941 "name": "egulias/email-validator", ··· 1063 }, 1064 { 1065 "name": "filp/whoops", 1066 + "version": "2.16.0", 1067 "source": { 1068 "type": "git", 1069 "url": "https://github.com/filp/whoops.git", 1070 + "reference": "befcdc0e5dce67252aa6322d82424be928214fa2" 1071 }, 1072 "dist": { 1073 "type": "zip", 1074 + "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2", 1075 + "reference": "befcdc0e5dce67252aa6322d82424be928214fa2", 1076 "shasum": "" 1077 }, 1078 "require": { 1079 + "php": "^7.1 || ^8.0", 1080 "psr/log": "^1.0.1 || ^2.0 || ^3.0" 1081 }, 1082 "require-dev": { 1083 + "mockery/mockery": "^1.0", 1084 + "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3", 1085 + "symfony/var-dumper": "^4.0 || ^5.0" 1086 }, 1087 "suggest": { 1088 "symfony/var-dumper": "Pretty print complex values better with var-dumper available", ··· 1122 ], 1123 "support": { 1124 "issues": "https://github.com/filp/whoops/issues", 1125 + "source": "https://github.com/filp/whoops/tree/2.16.0" 1126 }, 1127 "funding": [ 1128 { ··· 1130 "type": "github" 1131 } 1132 ], 1133 + "time": "2024-09-25T12:00:00+00:00" 1134 }, 1135 { 1136 "name": "flarum/approval", 1137 + "version": "v1.8.2", 1138 "source": { 1139 "type": "git", 1140 "url": "https://github.com/flarum/approval.git", 1141 + "reference": "61a76252b455d5dcad5535e9fef4a5445643d59a" 1142 }, 1143 "dist": { 1144 "type": "zip", 1145 + "url": "https://api.github.com/repos/flarum/approval/zipball/61a76252b455d5dcad5535e9fef4a5445643d59a", 1146 + "reference": "61a76252b455d5dcad5535e9fef4a5445643d59a", 1147 "shasum": "" 1148 }, 1149 "require": { ··· 1210 "type": "website" 1211 } 1212 ], 1213 + "time": "2024-10-02T11:13:26+00:00" 1214 }, 1215 { 1216 "name": "flarum/bbcode", ··· 1290 }, 1291 { 1292 "name": "flarum/core", 1293 + "version": "v1.8.9", 1294 "source": { 1295 "type": "git", 1296 "url": "https://github.com/flarum/flarum-core.git", 1297 + "reference": "c09efebdcfb4cdc396bee0efafa0a81946fc813f" 1298 }, 1299 "dist": { 1300 "type": "zip", 1301 + "url": "https://api.github.com/repos/flarum/flarum-core/zipball/c09efebdcfb4cdc396bee0efafa0a81946fc813f", 1302 + "reference": "c09efebdcfb4cdc396bee0efafa0a81946fc813f", 1303 "shasum": "" 1304 }, 1305 "require": { ··· 1327 "illuminate/view": "^8.0", 1328 "intervention/image": "2.5.* || ^2.6.1", 1329 "jenssegers/agent": "^2.6", 1330 + "laminas/laminas-diactoros": "^2.4.1 || ^3.0.0", 1331 + "laminas/laminas-httphandlerrunner": "^1.2.0 || ^2.3.0 || ^3.0.0", 1332 + "laminas/laminas-stratigility": "^3.2.2 || ^4.0.0", 1333 "league/flysystem": "^1.0.11", 1334 "matthiasmullie/minify": "^1.3", 1335 "middlewares/base-path": "^2.0.1", ··· 1432 "type": "other" 1433 } 1434 ], 1435 + "time": "2024-11-20T13:51:54+00:00" 1436 }, 1437 { 1438 "name": "flarum/emoji", 1439 + "version": "v1.8.1", 1440 "source": { 1441 "type": "git", 1442 "url": "https://github.com/flarum/emoji.git", 1443 + "reference": "edd6527e1014fd30779627f1c91461d12a9a1173" 1444 }, 1445 "dist": { 1446 "type": "zip", 1447 + "url": "https://api.github.com/repos/flarum/emoji/zipball/edd6527e1014fd30779627f1c91461d12a9a1173", 1448 + "reference": "edd6527e1014fd30779627f1c91461d12a9a1173", 1449 "shasum": "" 1450 }, 1451 "require": { ··· 1502 "type": "website" 1503 } 1504 ], 1505 + "time": "2024-10-02T07:10:53+00:00" 1506 }, 1507 { 1508 "name": "flarum/flags", 1509 + "version": "v1.8.2", 1510 "source": { 1511 "type": "git", 1512 "url": "https://github.com/flarum/flags.git", 1513 + "reference": "ba857db6f0e8c8b55cbab1ca0b7bc30215e92447" 1514 }, 1515 "dist": { 1516 "type": "zip", 1517 + "url": "https://api.github.com/repos/flarum/flags/zipball/ba857db6f0e8c8b55cbab1ca0b7bc30215e92447", 1518 + "reference": "ba857db6f0e8c8b55cbab1ca0b7bc30215e92447", 1519 "shasum": "" 1520 }, 1521 "require": { 1522 + "flarum/core": "^1.8.6" 1523 }, 1524 "require-dev": { 1525 "flarum/core": "*@dev", ··· 1583 "type": "website" 1584 } 1585 ], 1586 + "time": "2024-10-26T22:18:59+00:00" 1587 }, 1588 { 1589 "name": "flarum/lang-english", ··· 1669 }, 1670 { 1671 "name": "flarum/likes", 1672 + "version": "v1.8.1", 1673 "source": { 1674 "type": "git", 1675 "url": "https://github.com/flarum/likes.git", 1676 + "reference": "106cfa65076ba4be2da7af99f86eac99e5a38f4d" 1677 }, 1678 "dist": { 1679 "type": "zip", 1680 + "url": "https://api.github.com/repos/flarum/likes/zipball/106cfa65076ba4be2da7af99f86eac99e5a38f4d", 1681 + "reference": "106cfa65076ba4be2da7af99f86eac99e5a38f4d", 1682 "shasum": "" 1683 }, 1684 "require": { ··· 1744 "type": "website" 1745 } 1746 ], 1747 + "time": "2024-10-02T11:13:26+00:00" 1748 }, 1749 { 1750 "name": "flarum/lock", 1751 + "version": "v1.8.2", 1752 "source": { 1753 "type": "git", 1754 "url": "https://github.com/flarum/lock.git", 1755 + "reference": "f526df48dfa7b87aee0ca0b245000a3f3960cece" 1756 }, 1757 "dist": { 1758 "type": "zip", 1759 + "url": "https://api.github.com/repos/flarum/lock/zipball/f526df48dfa7b87aee0ca0b245000a3f3960cece", 1760 + "reference": "f526df48dfa7b87aee0ca0b245000a3f3960cece", 1761 "shasum": "" 1762 }, 1763 "require": { ··· 1820 "type": "website" 1821 } 1822 ], 1823 + "time": "2024-10-26T22:15:50+00:00" 1824 }, 1825 { 1826 "name": "flarum/markdown", 1827 + "version": "v1.8.1", 1828 "source": { 1829 "type": "git", 1830 "url": "https://github.com/flarum/markdown.git", 1831 + "reference": "22ea41d3be90d56c8b853c6798d25d2075e5f66f" 1832 }, 1833 "dist": { 1834 "type": "zip", 1835 + "url": "https://api.github.com/repos/flarum/markdown/zipball/22ea41d3be90d56c8b853c6798d25d2075e5f66f", 1836 + "reference": "22ea41d3be90d56c8b853c6798d25d2075e5f66f", 1837 "shasum": "" 1838 }, 1839 "require": { ··· 1894 "type": "website" 1895 } 1896 ], 1897 + "time": "2024-10-02T07:10:53+00:00" 1898 }, 1899 { 1900 "name": "flarum/mentions", 1901 + "version": "v1.8.5", 1902 "source": { 1903 "type": "git", 1904 "url": "https://github.com/flarum/mentions.git", 1905 + "reference": "cda26a4fbfa39b646c6d63394b281b004ddf69b6" 1906 }, 1907 "dist": { 1908 "type": "zip", 1909 + "url": "https://api.github.com/repos/flarum/mentions/zipball/cda26a4fbfa39b646c6d63394b281b004ddf69b6", 1910 + "reference": "cda26a4fbfa39b646c6d63394b281b004ddf69b6", 1911 "shasum": "" 1912 }, 1913 "require": { ··· 1978 "type": "website" 1979 } 1980 ], 1981 + "time": "2024-11-06T14:59:27+00:00" 1982 }, 1983 { 1984 "name": "flarum/nicknames", 1985 + "version": "v1.8.2", 1986 "source": { 1987 "type": "git", 1988 "url": "https://github.com/flarum/nicknames.git", 1989 + "reference": "ab4ab706ea778f26fb923b31a3f3a2f76c5ecbc6" 1990 }, 1991 "dist": { 1992 "type": "zip", 1993 + "url": "https://api.github.com/repos/flarum/nicknames/zipball/ab4ab706ea778f26fb923b31a3f3a2f76c5ecbc6", 1994 + "reference": "ab4ab706ea778f26fb923b31a3f3a2f76c5ecbc6", 1995 "shasum": "" 1996 }, 1997 "require": { ··· 2058 "type": "website" 2059 } 2060 ], 2061 + "time": "2024-10-26T22:15:50+00:00" 2062 }, 2063 { 2064 "name": "flarum/pusher", 2065 + "version": "v1.8.1", 2066 "source": { 2067 "type": "git", 2068 "url": "https://github.com/flarum/pusher.git", 2069 + "reference": "dd1fb1da2d662ad2b9abb0757de7f0dc6fa7089f" 2070 }, 2071 "dist": { 2072 "type": "zip", 2073 + "url": "https://api.github.com/repos/flarum/pusher/zipball/dd1fb1da2d662ad2b9abb0757de7f0dc6fa7089f", 2074 + "reference": "dd1fb1da2d662ad2b9abb0757de7f0dc6fa7089f", 2075 "shasum": "" 2076 }, 2077 "require": { ··· 2141 "type": "website" 2142 } 2143 ], 2144 + "time": "2024-09-29T14:35:29+00:00" 2145 }, 2146 { 2147 "name": "flarum/statistics", 2148 + "version": "v1.8.1", 2149 "source": { 2150 "type": "git", 2151 "url": "https://github.com/flarum/statistics.git", 2152 + "reference": "e907100ad530babb12c67f4959ae14e22f77b3fc" 2153 }, 2154 "dist": { 2155 "type": "zip", 2156 + "url": "https://api.github.com/repos/flarum/statistics/zipball/e907100ad530babb12c67f4959ae14e22f77b3fc", 2157 + "reference": "e907100ad530babb12c67f4959ae14e22f77b3fc", 2158 "shasum": "" 2159 }, 2160 "require": { ··· 2223 "type": "website" 2224 } 2225 ], 2226 + "time": "2024-10-02T07:10:53+00:00" 2227 }, 2228 { 2229 "name": "flarum/sticky", 2230 + "version": "v1.8.2", 2231 "source": { 2232 "type": "git", 2233 "url": "https://github.com/flarum/sticky.git", 2234 + "reference": "a020d8d4619ce788990cf0c94f56424184048caa" 2235 }, 2236 "dist": { 2237 "type": "zip", 2238 + "url": "https://api.github.com/repos/flarum/sticky/zipball/a020d8d4619ce788990cf0c94f56424184048caa", 2239 + "reference": "a020d8d4619ce788990cf0c94f56424184048caa", 2240 "shasum": "" 2241 }, 2242 "require": { ··· 2303 "type": "website" 2304 } 2305 ], 2306 + "time": "2024-10-26T22:15:50+00:00" 2307 }, 2308 { 2309 "name": "flarum/subscriptions", 2310 + "version": "v1.8.1", 2311 "source": { 2312 "type": "git", 2313 "url": "https://github.com/flarum/subscriptions.git", 2314 + "reference": "594100acf52ad74a33cbd30e5ca2220196790821" 2315 }, 2316 "dist": { 2317 "type": "zip", 2318 + "url": "https://api.github.com/repos/flarum/subscriptions/zipball/594100acf52ad74a33cbd30e5ca2220196790821", 2319 + "reference": "594100acf52ad74a33cbd30e5ca2220196790821", 2320 "shasum": "" 2321 }, 2322 "require": { ··· 2386 "type": "website" 2387 } 2388 ], 2389 + "time": "2024-10-02T07:10:53+00:00" 2390 }, 2391 { 2392 "name": "flarum/suspend", 2393 + "version": "v1.8.4", 2394 "source": { 2395 "type": "git", 2396 "url": "https://github.com/flarum/suspend.git", 2397 + "reference": "8c62430d238f650eeb54323c204b335d9c39f771" 2398 }, 2399 "dist": { 2400 "type": "zip", 2401 + "url": "https://api.github.com/repos/flarum/suspend/zipball/8c62430d238f650eeb54323c204b335d9c39f771", 2402 + "reference": "8c62430d238f650eeb54323c204b335d9c39f771", 2403 "shasum": "" 2404 }, 2405 "require": { ··· 2465 "type": "website" 2466 } 2467 ], 2468 + "time": "2024-11-20T08:51:17+00:00" 2469 }, 2470 { 2471 "name": "flarum/tags", 2472 + "version": "v1.8.3", 2473 "source": { 2474 "type": "git", 2475 "url": "https://github.com/flarum/tags.git", 2476 + "reference": "1baea940d1504da46805e64575ae336e5da6b43c" 2477 }, 2478 "dist": { 2479 "type": "zip", 2480 + "url": "https://api.github.com/repos/flarum/tags/zipball/1baea940d1504da46805e64575ae336e5da6b43c", 2481 + "reference": "1baea940d1504da46805e64575ae336e5da6b43c", 2482 "shasum": "" 2483 }, 2484 "require": { ··· 2545 "type": "website" 2546 } 2547 ], 2548 + "time": "2024-11-20T08:51:17+00:00" 2549 }, 2550 { 2551 "name": "franzl/whoops-middleware", ··· 2593 }, 2594 { 2595 "name": "guzzlehttp/guzzle", 2596 + "version": "7.9.2", 2597 "source": { 2598 "type": "git", 2599 "url": "https://github.com/guzzle/guzzle.git", 2600 + "reference": "d281ed313b989f213357e3be1a179f02196ac99b" 2601 }, 2602 "dist": { 2603 "type": "zip", 2604 + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b", 2605 + "reference": "d281ed313b989f213357e3be1a179f02196ac99b", 2606 "shasum": "" 2607 }, 2608 "require": { 2609 "ext-json": "*", 2610 + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", 2611 + "guzzlehttp/psr7": "^2.7.0", 2612 "php": "^7.2.5 || ^8.0", 2613 "psr/http-client": "^1.0", 2614 "symfony/deprecation-contracts": "^2.2 || ^3.0" ··· 2619 "require-dev": { 2620 "bamarni/composer-bin-plugin": "^1.8.2", 2621 "ext-curl": "*", 2622 + "guzzle/client-integration-tests": "3.0.2", 2623 "php-http/message-factory": "^1.1", 2624 + "phpunit/phpunit": "^8.5.39 || ^9.6.20", 2625 "psr/log": "^1.1 || ^2.0 || ^3.0" 2626 }, 2627 "suggest": { ··· 2699 ], 2700 "support": { 2701 "issues": "https://github.com/guzzle/guzzle/issues", 2702 + "source": "https://github.com/guzzle/guzzle/tree/7.9.2" 2703 }, 2704 "funding": [ 2705 { ··· 2715 "type": "tidelift" 2716 } 2717 ], 2718 + "time": "2024-07-24T11:22:20+00:00" 2719 }, 2720 { 2721 "name": "guzzlehttp/promises", 2722 + "version": "2.0.4", 2723 "source": { 2724 "type": "git", 2725 "url": "https://github.com/guzzle/promises.git", 2726 + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" 2727 }, 2728 "dist": { 2729 "type": "zip", 2730 + "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", 2731 + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", 2732 "shasum": "" 2733 }, 2734 "require": { ··· 2736 }, 2737 "require-dev": { 2738 "bamarni/composer-bin-plugin": "^1.8.2", 2739 + "phpunit/phpunit": "^8.5.39 || ^9.6.20" 2740 }, 2741 "type": "library", 2742 "extra": { ··· 2782 ], 2783 "support": { 2784 "issues": "https://github.com/guzzle/promises/issues", 2785 + "source": "https://github.com/guzzle/promises/tree/2.0.4" 2786 }, 2787 "funding": [ 2788 { ··· 2798 "type": "tidelift" 2799 } 2800 ], 2801 + "time": "2024-10-17T10:06:22+00:00" 2802 }, 2803 { 2804 "name": "guzzlehttp/psr7", 2805 + "version": "2.7.0", 2806 "source": { 2807 "type": "git", 2808 "url": "https://github.com/guzzle/psr7.git", 2809 + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201" 2810 }, 2811 "dist": { 2812 "type": "zip", 2813 + "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201", 2814 + "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201", 2815 "shasum": "" 2816 }, 2817 "require": { ··· 2826 }, 2827 "require-dev": { 2828 "bamarni/composer-bin-plugin": "^1.8.2", 2829 + "http-interop/http-factory-tests": "0.9.0", 2830 + "phpunit/phpunit": "^8.5.39 || ^9.6.20" 2831 }, 2832 "suggest": { 2833 "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" ··· 2898 ], 2899 "support": { 2900 "issues": "https://github.com/guzzle/psr7/issues", 2901 + "source": "https://github.com/guzzle/psr7/tree/2.7.0" 2902 }, 2903 "funding": [ 2904 { ··· 2914 "type": "tidelift" 2915 } 2916 ], 2917 + "time": "2024-07-18T11:15:46+00:00" 2918 }, 2919 { 2920 "name": "illuminate/bus", ··· 4064 }, 4065 "type": "library", 4066 "extra": { 4067 "laravel": { 4068 "aliases": { 4069 "Image": "Intervention\\Image\\Facades\\Image" 4070 + }, 4071 + "providers": [ 4072 + "Intervention\\Image\\ImageServiceProvider" 4073 + ] 4074 + }, 4075 + "branch-alias": { 4076 + "dev-master": "2.4-dev" 4077 } 4078 }, 4079 "autoload": { ··· 4120 }, 4121 { 4122 "name": "jaybizzle/crawler-detect", 4123 + "version": "v1.3.0", 4124 "source": { 4125 "type": "git", 4126 "url": "https://github.com/JayBizzle/Crawler-Detect.git", 4127 + "reference": "be155e11613fa618aa18aee438955588d1092a47" 4128 }, 4129 "dist": { 4130 "type": "zip", 4131 + "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/be155e11613fa618aa18aee438955588d1092a47", 4132 + "reference": "be155e11613fa618aa18aee438955588d1092a47", 4133 "shasum": "" 4134 }, 4135 "require": { 4136 + "php": ">=7.1.0" 4137 }, 4138 "require-dev": { 4139 "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4" ··· 4166 ], 4167 "support": { 4168 "issues": "https://github.com/JayBizzle/Crawler-Detect/issues", 4169 + "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.3.0" 4170 }, 4171 + "time": "2024-11-25T19:38:36+00:00" 4172 }, 4173 { 4174 "name": "jenssegers/agent", ··· 4255 }, 4256 { 4257 "name": "laminas/laminas-diactoros", 4258 + "version": "3.5.0", 4259 "source": { 4260 "type": "git", 4261 "url": "https://github.com/laminas/laminas-diactoros.git", 4262 + "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2" 4263 }, 4264 "dist": { 4265 "type": "zip", 4266 + "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2", 4267 + "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2", 4268 "shasum": "" 4269 }, 4270 "require": { 4271 + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", 4272 + "psr/http-factory": "^1.1", 4273 + "psr/http-message": "^1.1 || ^2.0" 4274 }, 4275 "conflict": { 4276 + "amphp/amp": "<2.6.4" 4277 }, 4278 "provide": { 4279 + "psr/http-factory-implementation": "^1.0", 4280 + "psr/http-message-implementation": "^1.1 || ^2.0" 4281 }, 4282 "require-dev": { 4283 "ext-curl": "*", 4284 "ext-dom": "*", 4285 "ext-gd": "*", 4286 "ext-libxml": "*", 4287 + "http-interop/http-factory-tests": "^2.2.0", 4288 + "laminas/laminas-coding-standard": "~2.5.0", 4289 + "php-http/psr7-integration-tests": "^1.4.0", 4290 + "phpunit/phpunit": "^10.5.36", 4291 + "psalm/plugin-phpunit": "^0.19.0", 4292 + "vimeo/psalm": "^5.26.1" 4293 }, 4294 "type": "library", 4295 "extra": { ··· 4304 "src/functions/marshal_headers_from_sapi.php", 4305 "src/functions/marshal_method_from_sapi.php", 4306 "src/functions/marshal_protocol_version_from_sapi.php", 4307 "src/functions/normalize_server.php", 4308 "src/functions/normalize_uploaded_files.php", 4309 + "src/functions/parse_cookie_header.php" 4310 ], 4311 "psr-4": { 4312 "Laminas\\Diactoros\\": "src/" ··· 4339 "type": "community_bridge" 4340 } 4341 ], 4342 + "time": "2024-10-14T11:59:49+00:00" 4343 }, 4344 { 4345 "name": "laminas/laminas-escaper", 4346 + "version": "2.14.0", 4347 "source": { 4348 "type": "git", 4349 "url": "https://github.com/laminas/laminas-escaper.git", 4350 + "reference": "0f7cb975f4443cf22f33408925c231225cfba8cb" 4351 }, 4352 "dist": { 4353 "type": "zip", 4354 + "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/0f7cb975f4443cf22f33408925c231225cfba8cb", 4355 + "reference": "0f7cb975f4443cf22f33408925c231225cfba8cb", 4356 "shasum": "" 4357 }, 4358 "require": { 4359 "ext-ctype": "*", 4360 "ext-mbstring": "*", 4361 + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" 4362 }, 4363 "conflict": { 4364 "zendframework/zend-escaper": "*" 4365 }, 4366 "require-dev": { 4367 + "infection/infection": "^0.27.9", 4368 + "laminas/laminas-coding-standard": "~3.0.0", 4369 "maglnet/composer-require-checker": "^3.8.0", 4370 + "phpunit/phpunit": "^9.6.16", 4371 + "psalm/plugin-phpunit": "^0.19.0", 4372 + "vimeo/psalm": "^5.21.1" 4373 }, 4374 "type": "library", 4375 "autoload": { ··· 4401 "type": "community_bridge" 4402 } 4403 ], 4404 + "time": "2024-10-24T10:12:53+00:00" 4405 }, 4406 { 4407 "name": "laminas/laminas-httphandlerrunner", 4408 + "version": "2.11.0", 4409 "source": { 4410 "type": "git", 4411 "url": "https://github.com/laminas/laminas-httphandlerrunner.git", 4412 + "reference": "c428d9f67f280d155637cbe2b7245b5188c8cdae" 4413 }, 4414 "dist": { 4415 "type": "zip", 4416 + "url": "https://api.github.com/repos/laminas/laminas-httphandlerrunner/zipball/c428d9f67f280d155637cbe2b7245b5188c8cdae", 4417 + "reference": "c428d9f67f280d155637cbe2b7245b5188c8cdae", 4418 "shasum": "" 4419 }, 4420 "require": { 4421 + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", 4422 "psr/http-message": "^1.0 || ^2.0", 4423 "psr/http-message-implementation": "^1.0 || ^2.0", 4424 "psr/http-server-handler": "^1.0" 4425 }, 4426 "require-dev": { 4427 + "laminas/laminas-coding-standard": "~3.0.0", 4428 + "laminas/laminas-diactoros": "^3.4.0", 4429 + "phpunit/phpunit": "^10.5.36", 4430 + "psalm/plugin-phpunit": "^0.19.0", 4431 + "vimeo/psalm": "^5.26.1" 4432 }, 4433 "type": "library", 4434 "extra": { ··· 4468 "type": "community_bridge" 4469 } 4470 ], 4471 + "time": "2024-10-17T20:37:17+00:00" 4472 }, 4473 { 4474 "name": "laminas/laminas-stratigility", 4475 + "version": "4.1.0", 4476 "source": { 4477 "type": "git", 4478 "url": "https://github.com/laminas/laminas-stratigility.git", 4479 + "reference": "79f9302a19ef33d114d85656347b0880933cc210" 4480 }, 4481 "dist": { 4482 "type": "zip", 4483 + "url": "https://api.github.com/repos/laminas/laminas-stratigility/zipball/79f9302a19ef33d114d85656347b0880933cc210", 4484 + "reference": "79f9302a19ef33d114d85656347b0880933cc210", 4485 "shasum": "" 4486 }, 4487 "require": { 4488 "fig/http-message-util": "^1.1", 4489 "laminas/laminas-escaper": "^2.10.0", 4490 + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", 4491 + "psr/http-factory": "^1.0.2", 4492 "psr/http-message": "^1.0 || ^2.0", 4493 "psr/http-server-middleware": "^1.0.2" 4494 }, ··· 4496 "zendframework/zend-stratigility": "*" 4497 }, 4498 "require-dev": { 4499 + "laminas/laminas-coding-standard": "~3.0.0", 4500 + "laminas/laminas-diactoros": "^2.25 || ^3.5.0", 4501 + "phpunit/phpunit": "^10.5.37", 4502 + "psalm/plugin-phpunit": "^0.19.0", 4503 + "vimeo/psalm": "^5.26.1" 4504 }, 4505 "suggest": { 4506 + "psr/http-factory-implementation": "Please install a psr/http-factory implementation to consume Stratigility; e.g., laminas/laminas-diactoros", 4507 + "psr/http-message-implementation": "Please install a psr/http-message implementation to consume Stratigility; e.g., laminas/laminas-diactoros" 4508 }, 4509 "type": "library", 4510 "autoload": { ··· 4512 "src/functions/double-pass-middleware.php", 4513 "src/functions/host.php", 4514 "src/functions/middleware.php", 4515 + "src/functions/path.php" 4516 ], 4517 "psr-4": { 4518 "Laminas\\Stratigility\\": "src/" ··· 4529 "laminas", 4530 "middleware", 4531 "psr-15", 4532 + "psr-17", 4533 "psr-7" 4534 ], 4535 "support": { ··· 4546 "type": "community_bridge" 4547 } 4548 ], 4549 + "time": "2024-10-28T11:43:51+00:00" 4550 }, 4551 { 4552 "name": "laravel/serializable-closure", 4553 + "version": "v1.3.7", 4554 "source": { 4555 "type": "git", 4556 "url": "https://github.com/laravel/serializable-closure.git", 4557 + "reference": "4f48ade902b94323ca3be7646db16209ec76be3d" 4558 }, 4559 "dist": { 4560 "type": "zip", 4561 + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d", 4562 + "reference": "4f48ade902b94323ca3be7646db16209ec76be3d", 4563 "shasum": "" 4564 }, 4565 "require": { 4566 "php": "^7.3|^8.0" 4567 }, 4568 "require-dev": { 4569 + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", 4570 + "nesbot/carbon": "^2.61|^3.0", 4571 "pestphp/pest": "^1.21.3", 4572 "phpstan/phpstan": "^1.8.2", 4573 + "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0" 4574 }, 4575 "type": "library", 4576 "extra": { ··· 4607 "issues": "https://github.com/laravel/serializable-closure/issues", 4608 "source": "https://github.com/laravel/serializable-closure" 4609 }, 4610 + "time": "2024-11-14T18:34:49+00:00" 4611 }, 4612 { 4613 "name": "league/commonmark", 4614 + "version": "2.5.3", 4615 "source": { 4616 "type": "git", 4617 "url": "https://github.com/thephpleague/commonmark.git", 4618 + "reference": "b650144166dfa7703e62a22e493b853b58d874b0" 4619 }, 4620 "dist": { 4621 "type": "zip", 4622 + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0", 4623 + "reference": "b650144166dfa7703e62a22e493b853b58d874b0", 4624 "shasum": "" 4625 }, 4626 "require": { ··· 4633 }, 4634 "require-dev": { 4635 "cebe/markdown": "^1.0", 4636 + "commonmark/cmark": "0.31.1", 4637 + "commonmark/commonmark.js": "0.31.1", 4638 "composer/package-versions-deprecated": "^1.8", 4639 "embed/embed": "^4.4", 4640 "erusev/parsedown": "^1.0", ··· 4656 "type": "library", 4657 "extra": { 4658 "branch-alias": { 4659 + "dev-main": "2.6-dev" 4660 } 4661 }, 4662 "autoload": { ··· 4713 "type": "tidelift" 4714 } 4715 ], 4716 + "time": "2024-08-16T11:46:16+00:00" 4717 }, 4718 { 4719 "name": "league/config", ··· 4893 }, 4894 { 4895 "name": "league/mime-type-detection", 4896 + "version": "1.16.0", 4897 "source": { 4898 "type": "git", 4899 "url": "https://github.com/thephpleague/mime-type-detection.git", 4900 + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9" 4901 }, 4902 "dist": { 4903 "type": "zip", 4904 + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9", 4905 + "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9", 4906 "shasum": "" 4907 }, 4908 "require": { ··· 4933 "description": "Mime-type detection for Flysystem", 4934 "support": { 4935 "issues": "https://github.com/thephpleague/mime-type-detection/issues", 4936 + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0" 4937 }, 4938 "funding": [ 4939 { ··· 4945 "type": "tidelift" 4946 } 4947 ], 4948 + "time": "2024-09-21T08:32:55+00:00" 4949 }, 4950 { 4951 "name": "matthiasmullie/minify", ··· 5445 }, 5446 { 5447 "name": "nesbot/carbon", 5448 + "version": "2.72.5", 5449 "source": { 5450 "type": "git", 5451 "url": "https://github.com/briannesbitt/Carbon.git", 5452 + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed" 5453 }, 5454 "dist": { 5455 "type": "zip", 5456 + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed", 5457 + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed", 5458 "shasum": "" 5459 }, 5460 "require": { ··· 5488 "type": "library", 5489 "extra": { 5490 "branch-alias": { 5491 + "dev-master": "3.x-dev", 5492 + "dev-2.x": "2.x-dev" 5493 }, 5494 "laravel": { 5495 "providers": [ ··· 5548 "type": "tidelift" 5549 } 5550 ], 5551 + "time": "2024-06-03T19:18:41+00:00" 5552 }, 5553 { 5554 "name": "nette/schema", 5555 + "version": "v1.3.2", 5556 "source": { 5557 "type": "git", 5558 "url": "https://github.com/nette/schema.git", 5559 + "reference": "da801d52f0354f70a638673c4a0f04e16529431d" 5560 }, 5561 "dist": { 5562 "type": "zip", 5563 + "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d", 5564 + "reference": "da801d52f0354f70a638673c4a0f04e16529431d", 5565 "shasum": "" 5566 }, 5567 "require": { 5568 "nette/utils": "^4.0", 5569 + "php": "8.1 - 8.4" 5570 }, 5571 "require-dev": { 5572 + "nette/tester": "^2.5.2", 5573 "phpstan/phpstan-nette": "^1.0", 5574 "tracy/tracy": "^2.8" 5575 }, ··· 5608 ], 5609 "support": { 5610 "issues": "https://github.com/nette/schema/issues", 5611 + "source": "https://github.com/nette/schema/tree/v1.3.2" 5612 }, 5613 + "time": "2024-10-06T23:10:23+00:00" 5614 }, 5615 { 5616 "name": "nette/utils", 5617 + "version": "v4.0.5", 5618 "source": { 5619 "type": "git", 5620 "url": "https://github.com/nette/utils.git", 5621 + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96" 5622 }, 5623 "dist": { 5624 "type": "zip", 5625 + "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", 5626 + "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96", 5627 "shasum": "" 5628 }, 5629 "require": { 5630 + "php": "8.0 - 8.4" 5631 }, 5632 "conflict": { 5633 "nette/finder": "<3", ··· 5694 ], 5695 "support": { 5696 "issues": "https://github.com/nette/utils/issues", 5697 + "source": "https://github.com/nette/utils/tree/v4.0.5" 5698 }, 5699 + "time": "2024-08-07T15:39:19+00:00" 5700 }, 5701 { 5702 "name": "nikic/fast-route", ··· 7115 }, 7116 { 7117 "name": "symfony/config", 7118 + "version": "v5.4.46", 7119 "source": { 7120 "type": "git", 7121 "url": "https://github.com/symfony/config.git", 7122 + "reference": "977c88a02d7d3f16904a81907531b19666a08e78" 7123 }, 7124 "dist": { 7125 "type": "zip", 7126 + "url": "https://api.github.com/repos/symfony/config/zipball/977c88a02d7d3f16904a81907531b19666a08e78", 7127 + "reference": "977c88a02d7d3f16904a81907531b19666a08e78", 7128 "shasum": "" 7129 }, 7130 "require": { ··· 7174 "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", 7175 "homepage": "https://symfony.com", 7176 "support": { 7177 + "source": "https://github.com/symfony/config/tree/v5.4.46" 7178 }, 7179 "funding": [ 7180 { ··· 7190 "type": "tidelift" 7191 } 7192 ], 7193 + "time": "2024-10-30T07:58:02+00:00" 7194 }, 7195 { 7196 "name": "symfony/console", 7197 + "version": "v5.4.47", 7198 "source": { 7199 "type": "git", 7200 "url": "https://github.com/symfony/console.git", 7201 + "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed" 7202 }, 7203 "dist": { 7204 "type": "zip", 7205 + "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed", 7206 + "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed", 7207 "shasum": "" 7208 }, 7209 "require": { ··· 7273 "terminal" 7274 ], 7275 "support": { 7276 + "source": "https://github.com/symfony/console/tree/v5.4.47" 7277 }, 7278 "funding": [ 7279 { ··· 7289 "type": "tidelift" 7290 } 7291 ], 7292 + "time": "2024-11-06T11:30:55+00:00" 7293 }, 7294 { 7295 "name": "symfony/css-selector", 7296 + "version": "v7.1.6", 7297 "source": { 7298 "type": "git", 7299 "url": "https://github.com/symfony/css-selector.git", 7300 + "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66" 7301 }, 7302 "dist": { 7303 "type": "zip", 7304 + "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66", 7305 + "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66", 7306 "shasum": "" 7307 }, 7308 "require": { 7309 + "php": ">=8.2" 7310 }, 7311 "type": "library", 7312 "autoload": { ··· 7338 "description": "Converts CSS selectors to XPath expressions", 7339 "homepage": "https://symfony.com", 7340 "support": { 7341 + "source": "https://github.com/symfony/css-selector/tree/v7.1.6" 7342 }, 7343 "funding": [ 7344 { ··· 7354 "type": "tidelift" 7355 } 7356 ], 7357 + "time": "2024-09-25T14:20:29+00:00" 7358 }, 7359 { 7360 "name": "symfony/deprecation-contracts", 7361 + "version": "v3.5.1", 7362 "source": { 7363 "type": "git", 7364 "url": "https://github.com/symfony/deprecation-contracts.git", 7365 + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" 7366 }, 7367 "dist": { 7368 "type": "zip", 7369 + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", 7370 + "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", 7371 "shasum": "" 7372 }, 7373 "require": { ··· 7405 "description": "A generic function and convention to trigger deprecation notices", 7406 "homepage": "https://symfony.com", 7407 "support": { 7408 + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" 7409 }, 7410 "funding": [ 7411 { ··· 7421 "type": "tidelift" 7422 } 7423 ], 7424 + "time": "2024-09-25T14:20:29+00:00" 7425 }, 7426 { 7427 "name": "symfony/event-dispatcher", 7428 + "version": "v5.4.45", 7429 "source": { 7430 "type": "git", 7431 "url": "https://github.com/symfony/event-dispatcher.git", 7432 + "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9" 7433 }, 7434 "dist": { 7435 "type": "zip", 7436 + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/72982eb416f61003e9bb6e91f8b3213600dcf9e9", 7437 + "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9", 7438 "shasum": "" 7439 }, 7440 "require": { ··· 7490 "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", 7491 "homepage": "https://symfony.com", 7492 "support": { 7493 + "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.45" 7494 }, 7495 "funding": [ 7496 { ··· 7506 "type": "tidelift" 7507 } 7508 ], 7509 + "time": "2024-09-25T14:11:13+00:00" 7510 }, 7511 { 7512 "name": "symfony/event-dispatcher-contracts", 7513 + "version": "v3.5.1", 7514 "source": { 7515 "type": "git", 7516 "url": "https://github.com/symfony/event-dispatcher-contracts.git", 7517 + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" 7518 }, 7519 "dist": { 7520 "type": "zip", 7521 + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", 7522 + "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", 7523 "shasum": "" 7524 }, 7525 "require": { ··· 7566 "standards" 7567 ], 7568 "support": { 7569 + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" 7570 }, 7571 "funding": [ 7572 { ··· 7582 "type": "tidelift" 7583 } 7584 ], 7585 + "time": "2024-09-25T14:20:29+00:00" 7586 }, 7587 { 7588 "name": "symfony/filesystem", 7589 + "version": "v6.4.13", 7590 "source": { 7591 "type": "git", 7592 "url": "https://github.com/symfony/filesystem.git", 7593 + "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3" 7594 }, 7595 "dist": { 7596 "type": "zip", 7597 + "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3", 7598 + "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3", 7599 "shasum": "" 7600 }, 7601 "require": { 7602 "php": ">=8.1", 7603 "symfony/polyfill-ctype": "~1.8", 7604 + "symfony/polyfill-mbstring": "~1.8" 7605 + }, 7606 + "require-dev": { 7607 + "symfony/process": "^5.4|^6.4|^7.0" 7608 }, 7609 "type": "library", 7610 "autoload": { ··· 7632 "description": "Provides basic utilities for the filesystem", 7633 "homepage": "https://symfony.com", 7634 "support": { 7635 + "source": "https://github.com/symfony/filesystem/tree/v6.4.13" 7636 }, 7637 "funding": [ 7638 { ··· 7648 "type": "tidelift" 7649 } 7650 ], 7651 + "time": "2024-10-25T15:07:50+00:00" 7652 }, 7653 { 7654 "name": "symfony/finder", 7655 + "version": "v5.4.45", 7656 "source": { 7657 "type": "git", 7658 "url": "https://github.com/symfony/finder.git", 7659 + "reference": "63741784cd7b9967975eec610b256eed3ede022b" 7660 }, 7661 "dist": { 7662 "type": "zip", 7663 + "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b", 7664 + "reference": "63741784cd7b9967975eec610b256eed3ede022b", 7665 "shasum": "" 7666 }, 7667 "require": { ··· 7695 "description": "Finds files and directories via an intuitive fluent interface", 7696 "homepage": "https://symfony.com", 7697 "support": { 7698 + "source": "https://github.com/symfony/finder/tree/v5.4.45" 7699 }, 7700 "funding": [ 7701 { ··· 7711 "type": "tidelift" 7712 } 7713 ], 7714 + "time": "2024-09-28T13:32:08+00:00" 7715 }, 7716 { 7717 "name": "symfony/http-foundation", 7718 + "version": "v5.4.48", 7719 "source": { 7720 "type": "git", 7721 "url": "https://github.com/symfony/http-foundation.git", 7722 + "reference": "3f38b8af283b830e1363acd79e5bc3412d055341" 7723 }, 7724 "dist": { 7725 "type": "zip", 7726 + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341", 7727 + "reference": "3f38b8af283b830e1363acd79e5bc3412d055341", 7728 "shasum": "" 7729 }, 7730 "require": { ··· 7734 "symfony/polyfill-php80": "^1.16" 7735 }, 7736 "require-dev": { 7737 + "predis/predis": "^1.0|^2.0", 7738 "symfony/cache": "^4.4|^5.0|^6.0", 7739 "symfony/dependency-injection": "^5.4|^6.0", 7740 "symfony/expression-language": "^4.4|^5.0|^6.0", ··· 7771 "description": "Defines an object-oriented layer for the HTTP specification", 7772 "homepage": "https://symfony.com", 7773 "support": { 7774 + "source": "https://github.com/symfony/http-foundation/tree/v5.4.48" 7775 }, 7776 "funding": [ 7777 { ··· 7787 "type": "tidelift" 7788 } 7789 ], 7790 + "time": "2024-11-13T18:58:02+00:00" 7791 }, 7792 { 7793 "name": "symfony/mime", 7794 + "version": "v5.4.45", 7795 "source": { 7796 "type": "git", 7797 "url": "https://github.com/symfony/mime.git", 7798 + "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064" 7799 }, 7800 "dist": { 7801 "type": "zip", 7802 + "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064", 7803 + "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064", 7804 "shasum": "" 7805 }, 7806 "require": { ··· 7856 "mime-type" 7857 ], 7858 "support": { 7859 + "source": "https://github.com/symfony/mime/tree/v5.4.45" 7860 }, 7861 "funding": [ 7862 { ··· 7872 "type": "tidelift" 7873 } 7874 ], 7875 + "time": "2024-10-23T20:18:32+00:00" 7876 }, 7877 { 7878 "name": "symfony/polyfill-ctype", 7879 + "version": "v1.31.0", 7880 "source": { 7881 "type": "git", 7882 "url": "https://github.com/symfony/polyfill-ctype.git", 7883 + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" 7884 }, 7885 "dist": { 7886 "type": "zip", 7887 + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", 7888 + "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", 7889 "shasum": "" 7890 }, 7891 "require": { 7892 + "php": ">=7.2" 7893 }, 7894 "provide": { 7895 "ext-ctype": "*" ··· 7935 "portable" 7936 ], 7937 "support": { 7938 + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" 7939 }, 7940 "funding": [ 7941 { ··· 7951 "type": "tidelift" 7952 } 7953 ], 7954 + "time": "2024-09-09T11:45:10+00:00" 7955 }, 7956 { 7957 "name": "symfony/polyfill-iconv", 7958 + "version": "v1.31.0", 7959 "source": { 7960 "type": "git", 7961 "url": "https://github.com/symfony/polyfill-iconv.git", 7962 + "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956" 7963 }, 7964 "dist": { 7965 "type": "zip", 7966 + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956", 7967 + "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956", 7968 "shasum": "" 7969 }, 7970 "require": { 7971 + "php": ">=7.2" 7972 }, 7973 "provide": { 7974 "ext-iconv": "*" ··· 8015 "shim" 8016 ], 8017 "support": { 8018 + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0" 8019 }, 8020 "funding": [ 8021 { ··· 8031 "type": "tidelift" 8032 } 8033 ], 8034 + "time": "2024-09-09T11:45:10+00:00" 8035 }, 8036 { 8037 "name": "symfony/polyfill-intl-grapheme", 8038 + "version": "v1.31.0", 8039 "source": { 8040 "type": "git", 8041 "url": "https://github.com/symfony/polyfill-intl-grapheme.git", 8042 + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" 8043 }, 8044 "dist": { 8045 "type": "zip", 8046 + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", 8047 + "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", 8048 "shasum": "" 8049 }, 8050 "require": { 8051 + "php": ">=7.2" 8052 }, 8053 "suggest": { 8054 "ext-intl": "For best performance" ··· 8093 "shim" 8094 ], 8095 "support": { 8096 + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" 8097 }, 8098 "funding": [ 8099 { ··· 8109 "type": "tidelift" 8110 } 8111 ], 8112 + "time": "2024-09-09T11:45:10+00:00" 8113 }, 8114 { 8115 "name": "symfony/polyfill-intl-idn", 8116 + "version": "v1.31.0", 8117 "source": { 8118 "type": "git", 8119 "url": "https://github.com/symfony/polyfill-intl-idn.git", 8120 + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" 8121 }, 8122 "dist": { 8123 "type": "zip", 8124 + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", 8125 + "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", 8126 "shasum": "" 8127 }, 8128 "require": { 8129 + "php": ">=7.2", 8130 + "symfony/polyfill-intl-normalizer": "^1.10" 8131 }, 8132 "suggest": { 8133 "ext-intl": "For best performance" ··· 8176 "shim" 8177 ], 8178 "support": { 8179 + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" 8180 }, 8181 "funding": [ 8182 { ··· 8192 "type": "tidelift" 8193 } 8194 ], 8195 + "time": "2024-09-09T11:45:10+00:00" 8196 }, 8197 { 8198 "name": "symfony/polyfill-intl-messageformatter", 8199 + "version": "v1.31.0", 8200 "source": { 8201 "type": "git", 8202 "url": "https://github.com/symfony/polyfill-intl-messageformatter.git", 8203 + "reference": "d2ed9f44f1ccb21d36e51ebb1f7b1ef26e36e0de" 8204 }, 8205 "dist": { 8206 "type": "zip", 8207 + "url": "https://api.github.com/repos/symfony/polyfill-intl-messageformatter/zipball/d2ed9f44f1ccb21d36e51ebb1f7b1ef26e36e0de", 8208 + "reference": "d2ed9f44f1ccb21d36e51ebb1f7b1ef26e36e0de", 8209 "shasum": "" 8210 }, 8211 "require": { 8212 + "php": ">=7.2" 8213 }, 8214 "suggest": { 8215 "ext-intl": "For best performance" ··· 8257 "shim" 8258 ], 8259 "support": { 8260 + "source": "https://github.com/symfony/polyfill-intl-messageformatter/tree/v1.31.0" 8261 }, 8262 "funding": [ 8263 { ··· 8273 "type": "tidelift" 8274 } 8275 ], 8276 + "time": "2024-09-09T11:45:10+00:00" 8277 }, 8278 { 8279 "name": "symfony/polyfill-intl-normalizer", 8280 + "version": "v1.31.0", 8281 "source": { 8282 "type": "git", 8283 "url": "https://github.com/symfony/polyfill-intl-normalizer.git", 8284 + "reference": "3833d7255cc303546435cb650316bff708a1c75c" 8285 }, 8286 "dist": { 8287 "type": "zip", 8288 + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", 8289 + "reference": "3833d7255cc303546435cb650316bff708a1c75c", 8290 "shasum": "" 8291 }, 8292 "require": { 8293 + "php": ">=7.2" 8294 }, 8295 "suggest": { 8296 "ext-intl": "For best performance" ··· 8338 "shim" 8339 ], 8340 "support": { 8341 + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" 8342 }, 8343 "funding": [ 8344 { ··· 8354 "type": "tidelift" 8355 } 8356 ], 8357 + "time": "2024-09-09T11:45:10+00:00" 8358 }, 8359 { 8360 "name": "symfony/polyfill-mbstring", 8361 + "version": "v1.31.0", 8362 "source": { 8363 "type": "git", 8364 "url": "https://github.com/symfony/polyfill-mbstring.git", 8365 + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" 8366 }, 8367 "dist": { 8368 "type": "zip", 8369 + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", 8370 + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", 8371 "shasum": "" 8372 }, 8373 "require": { 8374 + "php": ">=7.2" 8375 }, 8376 "provide": { 8377 "ext-mbstring": "*" ··· 8418 "shim" 8419 ], 8420 "support": { 8421 + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" 8422 }, 8423 "funding": [ 8424 { ··· 8434 "type": "tidelift" 8435 } 8436 ], 8437 + "time": "2024-09-09T11:45:10+00:00" 8438 }, 8439 { 8440 "name": "symfony/polyfill-php73", 8441 + "version": "v1.31.0", 8442 "source": { 8443 "type": "git", 8444 "url": "https://github.com/symfony/polyfill-php73.git", 8445 + "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb" 8446 }, 8447 "dist": { 8448 "type": "zip", 8449 + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb", 8450 + "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb", 8451 "shasum": "" 8452 }, 8453 "require": { 8454 + "php": ">=7.2" 8455 }, 8456 "type": "library", 8457 "extra": { ··· 8494 "shim" 8495 ], 8496 "support": { 8497 + "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0" 8498 }, 8499 "funding": [ 8500 { ··· 8510 "type": "tidelift" 8511 } 8512 ], 8513 + "time": "2024-09-09T11:45:10+00:00" 8514 }, 8515 { 8516 "name": "symfony/polyfill-php80", 8517 + "version": "v1.31.0", 8518 "source": { 8519 "type": "git", 8520 "url": "https://github.com/symfony/polyfill-php80.git", 8521 + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" 8522 }, 8523 "dist": { 8524 "type": "zip", 8525 + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", 8526 + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", 8527 "shasum": "" 8528 }, 8529 "require": { 8530 + "php": ">=7.2" 8531 }, 8532 "type": "library", 8533 "extra": { ··· 8574 "shim" 8575 ], 8576 "support": { 8577 + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" 8578 }, 8579 "funding": [ 8580 { ··· 8590 "type": "tidelift" 8591 } 8592 ], 8593 + "time": "2024-09-09T11:45:10+00:00" 8594 }, 8595 { 8596 "name": "symfony/polyfill-php81", 8597 + "version": "v1.31.0", 8598 "source": { 8599 "type": "git", 8600 "url": "https://github.com/symfony/polyfill-php81.git", 8601 + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" 8602 }, 8603 "dist": { 8604 "type": "zip", 8605 + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", 8606 + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", 8607 "shasum": "" 8608 }, 8609 "require": { 8610 + "php": ">=7.2" 8611 }, 8612 "type": "library", 8613 "extra": { ··· 8650 "shim" 8651 ], 8652 "support": { 8653 + "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0" 8654 }, 8655 "funding": [ 8656 { ··· 8666 "type": "tidelift" 8667 } 8668 ], 8669 + "time": "2024-09-09T11:45:10+00:00" 8670 }, 8671 { 8672 "name": "symfony/process", 8673 + "version": "v5.4.47", 8674 "source": { 8675 "type": "git", 8676 "url": "https://github.com/symfony/process.git", 8677 + "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d" 8678 }, 8679 "dist": { 8680 "type": "zip", 8681 + "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d", 8682 + "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d", 8683 "shasum": "" 8684 }, 8685 "require": { ··· 8712 "description": "Executes commands in sub-processes", 8713 "homepage": "https://symfony.com", 8714 "support": { 8715 + "source": "https://github.com/symfony/process/tree/v5.4.47" 8716 }, 8717 "funding": [ 8718 { ··· 8728 "type": "tidelift" 8729 } 8730 ], 8731 + "time": "2024-11-06T11:36:42+00:00" 8732 }, 8733 { 8734 "name": "symfony/service-contracts", 8735 + "version": "v3.5.1", 8736 "source": { 8737 "type": "git", 8738 "url": "https://github.com/symfony/service-contracts.git", 8739 + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" 8740 }, 8741 "dist": { 8742 "type": "zip", 8743 + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", 8744 + "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", 8745 "shasum": "" 8746 }, 8747 "require": { ··· 8795 "standards" 8796 ], 8797 "support": { 8798 + "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" 8799 }, 8800 "funding": [ 8801 { ··· 8811 "type": "tidelift" 8812 } 8813 ], 8814 + "time": "2024-09-25T14:20:29+00:00" 8815 }, 8816 { 8817 "name": "symfony/string", 8818 + "version": "v6.4.15", 8819 "source": { 8820 "type": "git", 8821 "url": "https://github.com/symfony/string.git", 8822 + "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f" 8823 }, 8824 "dist": { 8825 "type": "zip", 8826 + "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", 8827 + "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", 8828 "shasum": "" 8829 }, 8830 "require": { ··· 8881 "utf8" 8882 ], 8883 "support": { 8884 + "source": "https://github.com/symfony/string/tree/v6.4.15" 8885 }, 8886 "funding": [ 8887 { ··· 8897 "type": "tidelift" 8898 } 8899 ], 8900 + "time": "2024-11-13T13:31:12+00:00" 8901 }, 8902 { 8903 "name": "symfony/translation", 8904 + "version": "v5.4.45", 8905 "source": { 8906 "type": "git", 8907 "url": "https://github.com/symfony/translation.git", 8908 + "reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed" 8909 }, 8910 "dist": { 8911 "type": "zip", 8912 + "url": "https://api.github.com/repos/symfony/translation/zipball/98f26acc99341ca4bab345fb14d7b1d7cb825bed", 8913 + "reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed", 8914 "shasum": "" 8915 }, 8916 "require": { ··· 8978 "description": "Provides tools to internationalize your application", 8979 "homepage": "https://symfony.com", 8980 "support": { 8981 + "source": "https://github.com/symfony/translation/tree/v5.4.45" 8982 }, 8983 "funding": [ 8984 { ··· 8994 "type": "tidelift" 8995 } 8996 ], 8997 + "time": "2024-09-25T14:11:13+00:00" 8998 }, 8999 { 9000 "name": "symfony/translation-contracts", 9001 + "version": "v2.5.4", 9002 "source": { 9003 "type": "git", 9004 "url": "https://github.com/symfony/translation-contracts.git", 9005 + "reference": "450d4172653f38818657022252f9d81be89ee9a8" 9006 }, 9007 "dist": { 9008 "type": "zip", 9009 + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/450d4172653f38818657022252f9d81be89ee9a8", 9010 + "reference": "450d4172653f38818657022252f9d81be89ee9a8", 9011 "shasum": "" 9012 }, 9013 "require": { ··· 9056 "standards" 9057 ], 9058 "support": { 9059 + "source": "https://github.com/symfony/translation-contracts/tree/v2.5.4" 9060 }, 9061 "funding": [ 9062 { ··· 9072 "type": "tidelift" 9073 } 9074 ], 9075 + "time": "2024-09-25T14:11:13+00:00" 9076 }, 9077 { 9078 "name": "symfony/yaml", 9079 + "version": "v5.4.45", 9080 "source": { 9081 "type": "git", 9082 "url": "https://github.com/symfony/yaml.git", 9083 + "reference": "a454d47278cc16a5db371fe73ae66a78a633371e" 9084 }, 9085 "dist": { 9086 "type": "zip", 9087 + "url": "https://api.github.com/repos/symfony/yaml/zipball/a454d47278cc16a5db371fe73ae66a78a633371e", 9088 + "reference": "a454d47278cc16a5db371fe73ae66a78a633371e", 9089 "shasum": "" 9090 }, 9091 "require": { ··· 9131 "description": "Loads and dumps YAML files", 9132 "homepage": "https://symfony.com", 9133 "support": { 9134 + "source": "https://github.com/symfony/yaml/tree/v5.4.45" 9135 }, 9136 "funding": [ 9137 { ··· 9147 "type": "tidelift" 9148 } 9149 ], 9150 + "time": "2024-09-25T14:11:13+00:00" 9151 }, 9152 { 9153 "name": "tijsverkoyen/css-to-inline-styles", ··· 9413 "packages-dev": [], 9414 "aliases": [], 9415 "minimum-stability": "stable", 9416 + "stability-flags": {}, 9417 "prefer-stable": false, 9418 "prefer-lowest": false, 9419 + "platform": {}, 9420 + "platform-dev": {}, 9421 + "plugin-api-version": "2.6.0" 9422 }
+1 -1
pkgs/by-name/fl/flarum/package.nix
··· 16 17 composerLock = ./composer.lock; 18 composerStrictValidation = false; 19 - vendorHash = "sha256-gQkjuatItw93JhI7FVfg5hYxkC1gsRQ3c2C2+MhI/Jg="; 20 21 meta = with lib; { 22 changelog = "https://github.com/flarum/framework/blob/main/CHANGELOG.md";
··· 16 17 composerLock = ./composer.lock; 18 composerStrictValidation = false; 19 + vendorHash = "sha256-m+x/4A/DcMv7mMfQjpH1vsVqXuMHhSHeX3sgI43uJLI="; 20 21 meta = with lib; { 22 changelog = "https://github.com/flarum/framework/blob/main/CHANGELOG.md";
+3 -3
pkgs/by-name/fl/flyctl/package.nix
··· 9 10 buildGoModule rec { 11 pname = "flyctl"; 12 - version = "0.3.40"; 13 14 src = fetchFromGitHub { 15 owner = "superfly"; 16 repo = "flyctl"; 17 rev = "v${version}"; 18 - hash = "sha256-ilf4z7QlY9Fwx8FslcJalNVhkAz/KW30Mf2m/VjEKjA="; 19 }; 20 21 - vendorHash = "sha256-Jh2ygnl2meapyBrFGjALTwUWARAIVKIQ6wBE5x/SPmE="; 22 23 subPackages = [ "." ]; 24
··· 9 10 buildGoModule rec { 11 pname = "flyctl"; 12 + version = "0.3.49"; 13 14 src = fetchFromGitHub { 15 owner = "superfly"; 16 repo = "flyctl"; 17 rev = "v${version}"; 18 + hash = "sha256-sf/SUXxAVSZpjcjZDZ+86HKts8MSIMrjiBId4JVfNGY="; 19 }; 20 21 + vendorHash = "sha256-EVaKDaZay+g7HtBukM+49IYiNheqIMHWHkDL/OFWmQg="; 22 23 subPackages = [ "." ]; 24
+3 -3
pkgs/by-name/gr/granian/package.nix
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "granian"; 11 - version = "1.6.1"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "emmett-framework"; 16 repo = "granian"; 17 rev = "v${version}"; 18 - hash = "sha256-Cuojg2Ko+KH/279z7HGYEthrMAqLgmnoHGjZ8HL7unw="; 19 }; 20 21 cargoDeps = rustPlatform.fetchCargoTarball { 22 inherit src; 23 name = "${pname}-${version}"; 24 - hash = "sha256-dRBjN0/EmQlGtQ1iGvSPE30KOHVlkWpjpMU2lpIGUdA="; 25 }; 26 27 nativeBuildInputs = with rustPlatform; [
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "granian"; 11 + version = "1.6.2"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "emmett-framework"; 16 repo = "granian"; 17 rev = "v${version}"; 18 + hash = "sha256-BuGavjNgA2xsp1f1KGQ9JYmAYVL779EC5jDzuRXAjYg="; 19 }; 20 21 cargoDeps = rustPlatform.fetchCargoTarball { 22 inherit src; 23 name = "${pname}-${version}"; 24 + hash = "sha256-x/qyNnIUqEgh8fyzn7g4dw7KQxn71l+vlar04PaVI7c="; 25 }; 26 27 nativeBuildInputs = with rustPlatform; [
+1 -1
pkgs/by-name/li/libvdwxc/package.nix
··· 55 lgpl3Plus 56 bsd3 57 ]; 58 - homepage = "https://libvdwxc.org/"; 59 platforms = platforms.unix; 60 maintainers = [ maintainers.sheepforce ]; 61 };
··· 55 lgpl3Plus 56 bsd3 57 ]; 58 + homepage = "https://libvdwxc.materialsmodeling.org/"; 59 platforms = platforms.unix; 60 maintainers = [ maintainers.sheepforce ]; 61 };
+740
pkgs/by-name/ma/markdown2html-converter/Cargo.lock
···
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "aho-corasick" 7 + version = "1.1.3" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 10 + dependencies = [ 11 + "memchr", 12 + ] 13 + 14 + [[package]] 15 + name = "anstream" 16 + version = "0.6.14" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 19 + dependencies = [ 20 + "anstyle", 21 + "anstyle-parse", 22 + "anstyle-query", 23 + "anstyle-wincon", 24 + "colorchoice", 25 + "is_terminal_polyfill", 26 + "utf8parse", 27 + ] 28 + 29 + [[package]] 30 + name = "anstyle" 31 + version = "1.0.7" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 34 + 35 + [[package]] 36 + name = "anstyle-parse" 37 + version = "0.2.4" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 40 + dependencies = [ 41 + "utf8parse", 42 + ] 43 + 44 + [[package]] 45 + name = "anstyle-query" 46 + version = "1.0.3" 47 + source = "registry+https://github.com/rust-lang/crates.io-index" 48 + checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5" 49 + dependencies = [ 50 + "windows-sys 0.52.0", 51 + ] 52 + 53 + [[package]] 54 + name = "anstyle-wincon" 55 + version = "3.0.3" 56 + source = "registry+https://github.com/rust-lang/crates.io-index" 57 + checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 58 + dependencies = [ 59 + "anstyle", 60 + "windows-sys 0.52.0", 61 + ] 62 + 63 + [[package]] 64 + name = "anyhow" 65 + version = "1.0.86" 66 + source = "registry+https://github.com/rust-lang/crates.io-index" 67 + checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 68 + 69 + [[package]] 70 + name = "bitflags" 71 + version = "2.5.0" 72 + source = "registry+https://github.com/rust-lang/crates.io-index" 73 + checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 74 + 75 + [[package]] 76 + name = "bumpalo" 77 + version = "3.16.0" 78 + source = "registry+https://github.com/rust-lang/crates.io-index" 79 + checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 80 + 81 + [[package]] 82 + name = "cfg-if" 83 + version = "1.0.0" 84 + source = "registry+https://github.com/rust-lang/crates.io-index" 85 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 86 + 87 + [[package]] 88 + name = "clap" 89 + version = "4.5.4" 90 + source = "registry+https://github.com/rust-lang/crates.io-index" 91 + checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" 92 + dependencies = [ 93 + "clap_builder", 94 + "clap_derive", 95 + ] 96 + 97 + [[package]] 98 + name = "clap_builder" 99 + version = "4.5.2" 100 + source = "registry+https://github.com/rust-lang/crates.io-index" 101 + checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" 102 + dependencies = [ 103 + "anstream", 104 + "anstyle", 105 + "clap_lex", 106 + "strsim 0.11.1", 107 + ] 108 + 109 + [[package]] 110 + name = "clap_derive" 111 + version = "4.5.4" 112 + source = "registry+https://github.com/rust-lang/crates.io-index" 113 + checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" 114 + dependencies = [ 115 + "heck", 116 + "proc-macro2", 117 + "quote", 118 + "syn 2.0.66", 119 + ] 120 + 121 + [[package]] 122 + name = "clap_lex" 123 + version = "0.7.0" 124 + source = "registry+https://github.com/rust-lang/crates.io-index" 125 + checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 126 + 127 + [[package]] 128 + name = "colorchoice" 129 + version = "1.0.1" 130 + source = "registry+https://github.com/rust-lang/crates.io-index" 131 + checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 132 + 133 + [[package]] 134 + name = "comrak" 135 + version = "0.19.0" 136 + source = "registry+https://github.com/rust-lang/crates.io-index" 137 + checksum = "82c995deda3bfdebd07d0e2af79e9da13e4b1be652b21a746f3f5b24bf0a49ef" 138 + dependencies = [ 139 + "derive_builder", 140 + "entities", 141 + "memchr", 142 + "once_cell", 143 + "regex", 144 + "slug", 145 + "typed-arena", 146 + "unicode_categories", 147 + ] 148 + 149 + [[package]] 150 + name = "concat-with" 151 + version = "0.2.9" 152 + source = "registry+https://github.com/rust-lang/crates.io-index" 153 + checksum = "45527fc9cdf65d432ee7f5f5648a3a598809d543200bd78efa770392fcc22e4f" 154 + 155 + [[package]] 156 + name = "cow-utils" 157 + version = "0.1.3" 158 + source = "registry+https://github.com/rust-lang/crates.io-index" 159 + checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79" 160 + 161 + [[package]] 162 + name = "darling" 163 + version = "0.14.4" 164 + source = "registry+https://github.com/rust-lang/crates.io-index" 165 + checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" 166 + dependencies = [ 167 + "darling_core", 168 + "darling_macro", 169 + ] 170 + 171 + [[package]] 172 + name = "darling_core" 173 + version = "0.14.4" 174 + source = "registry+https://github.com/rust-lang/crates.io-index" 175 + checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" 176 + dependencies = [ 177 + "fnv", 178 + "ident_case", 179 + "proc-macro2", 180 + "quote", 181 + "strsim 0.10.0", 182 + "syn 1.0.109", 183 + ] 184 + 185 + [[package]] 186 + name = "darling_macro" 187 + version = "0.14.4" 188 + source = "registry+https://github.com/rust-lang/crates.io-index" 189 + checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" 190 + dependencies = [ 191 + "darling_core", 192 + "quote", 193 + "syn 1.0.109", 194 + ] 195 + 196 + [[package]] 197 + name = "derive_builder" 198 + version = "0.12.0" 199 + source = "registry+https://github.com/rust-lang/crates.io-index" 200 + checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" 201 + dependencies = [ 202 + "derive_builder_macro", 203 + ] 204 + 205 + [[package]] 206 + name = "derive_builder_core" 207 + version = "0.12.0" 208 + source = "registry+https://github.com/rust-lang/crates.io-index" 209 + checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" 210 + dependencies = [ 211 + "darling", 212 + "proc-macro2", 213 + "quote", 214 + "syn 1.0.109", 215 + ] 216 + 217 + [[package]] 218 + name = "derive_builder_macro" 219 + version = "0.12.0" 220 + source = "registry+https://github.com/rust-lang/crates.io-index" 221 + checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" 222 + dependencies = [ 223 + "derive_builder_core", 224 + "syn 1.0.109", 225 + ] 226 + 227 + [[package]] 228 + name = "deunicode" 229 + version = "1.6.0" 230 + source = "registry+https://github.com/rust-lang/crates.io-index" 231 + checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00" 232 + 233 + [[package]] 234 + name = "educe" 235 + version = "0.5.11" 236 + source = "registry+https://github.com/rust-lang/crates.io-index" 237 + checksum = "e4bd92664bf78c4d3dba9b7cdafce6fa15b13ed3ed16175218196942e99168a8" 238 + dependencies = [ 239 + "enum-ordinalize", 240 + "proc-macro2", 241 + "quote", 242 + "syn 2.0.66", 243 + ] 244 + 245 + [[package]] 246 + name = "entities" 247 + version = "1.0.1" 248 + source = "registry+https://github.com/rust-lang/crates.io-index" 249 + checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca" 250 + 251 + [[package]] 252 + name = "enum-ordinalize" 253 + version = "4.3.0" 254 + source = "registry+https://github.com/rust-lang/crates.io-index" 255 + checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5" 256 + dependencies = [ 257 + "enum-ordinalize-derive", 258 + ] 259 + 260 + [[package]] 261 + name = "enum-ordinalize-derive" 262 + version = "4.3.1" 263 + source = "registry+https://github.com/rust-lang/crates.io-index" 264 + checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" 265 + dependencies = [ 266 + "proc-macro2", 267 + "quote", 268 + "syn 2.0.66", 269 + ] 270 + 271 + [[package]] 272 + name = "errno" 273 + version = "0.3.9" 274 + source = "registry+https://github.com/rust-lang/crates.io-index" 275 + checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 276 + dependencies = [ 277 + "libc", 278 + "windows-sys 0.52.0", 279 + ] 280 + 281 + [[package]] 282 + name = "fnv" 283 + version = "1.0.7" 284 + source = "registry+https://github.com/rust-lang/crates.io-index" 285 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 286 + 287 + [[package]] 288 + name = "heck" 289 + version = "0.5.0" 290 + source = "registry+https://github.com/rust-lang/crates.io-index" 291 + checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 292 + 293 + [[package]] 294 + name = "html-escape" 295 + version = "0.2.13" 296 + source = "registry+https://github.com/rust-lang/crates.io-index" 297 + checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476" 298 + dependencies = [ 299 + "utf8-width", 300 + ] 301 + 302 + [[package]] 303 + name = "html-minifier" 304 + version = "4.0.0" 305 + source = "registry+https://github.com/rust-lang/crates.io-index" 306 + checksum = "18f74036e4be1b97eaf78bcf795d55002eccf613d5c4705bf78d3b92649ab00f" 307 + dependencies = [ 308 + "cow-utils", 309 + "educe", 310 + "html-escape", 311 + "minifier", 312 + ] 313 + 314 + [[package]] 315 + name = "ident_case" 316 + version = "1.0.1" 317 + source = "registry+https://github.com/rust-lang/crates.io-index" 318 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 319 + 320 + [[package]] 321 + name = "is_terminal_polyfill" 322 + version = "1.70.0" 323 + source = "registry+https://github.com/rust-lang/crates.io-index" 324 + checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 325 + 326 + [[package]] 327 + name = "lazy-static-include" 328 + version = "3.2.1" 329 + source = "registry+https://github.com/rust-lang/crates.io-index" 330 + checksum = "67f771f5073e25401d245cf2bfca1e43574ecb1128556213f534a15d751763e3" 331 + dependencies = [ 332 + "lazy_static", 333 + "manifest-dir-macros", 334 + "syn 2.0.66", 335 + ] 336 + 337 + [[package]] 338 + name = "lazy_static" 339 + version = "1.4.0" 340 + source = "registry+https://github.com/rust-lang/crates.io-index" 341 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 342 + 343 + [[package]] 344 + name = "libc" 345 + version = "0.2.155" 346 + source = "registry+https://github.com/rust-lang/crates.io-index" 347 + checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 348 + 349 + [[package]] 350 + name = "linux-raw-sys" 351 + version = "0.4.14" 352 + source = "registry+https://github.com/rust-lang/crates.io-index" 353 + checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 354 + 355 + [[package]] 356 + name = "log" 357 + version = "0.4.21" 358 + source = "registry+https://github.com/rust-lang/crates.io-index" 359 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 360 + 361 + [[package]] 362 + name = "manifest-dir-macros" 363 + version = "0.1.18" 364 + source = "registry+https://github.com/rust-lang/crates.io-index" 365 + checksum = "9c6d40de1ccdbf8bde2eaa0750595478a368f7b3a3f89c426e3454f64e29f593" 366 + dependencies = [ 367 + "once_cell", 368 + "proc-macro2", 369 + "quote", 370 + "syn 2.0.66", 371 + ] 372 + 373 + [[package]] 374 + name = "markdown2html-converter" 375 + version = "1.1.12" 376 + dependencies = [ 377 + "anyhow", 378 + "clap", 379 + "comrak", 380 + "concat-with", 381 + "html-escape", 382 + "html-minifier", 383 + "lazy-static-include", 384 + "terminal_size", 385 + ] 386 + 387 + [[package]] 388 + name = "memchr" 389 + version = "2.7.2" 390 + source = "registry+https://github.com/rust-lang/crates.io-index" 391 + checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 392 + 393 + [[package]] 394 + name = "minifier" 395 + version = "0.2.3" 396 + source = "registry+https://github.com/rust-lang/crates.io-index" 397 + checksum = "5394aa376422b4b2b6c02fd9cfcb657e4ec544ae98e43d7d5d785fd0d042fd6d" 398 + 399 + [[package]] 400 + name = "once_cell" 401 + version = "1.19.0" 402 + source = "registry+https://github.com/rust-lang/crates.io-index" 403 + checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 404 + 405 + [[package]] 406 + name = "proc-macro2" 407 + version = "1.0.84" 408 + source = "registry+https://github.com/rust-lang/crates.io-index" 409 + checksum = "ec96c6a92621310b51366f1e28d05ef11489516e93be030060e5fc12024a49d6" 410 + dependencies = [ 411 + "unicode-ident", 412 + ] 413 + 414 + [[package]] 415 + name = "quote" 416 + version = "1.0.36" 417 + source = "registry+https://github.com/rust-lang/crates.io-index" 418 + checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 419 + dependencies = [ 420 + "proc-macro2", 421 + ] 422 + 423 + [[package]] 424 + name = "regex" 425 + version = "1.10.4" 426 + source = "registry+https://github.com/rust-lang/crates.io-index" 427 + checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 428 + dependencies = [ 429 + "aho-corasick", 430 + "memchr", 431 + "regex-automata", 432 + "regex-syntax", 433 + ] 434 + 435 + [[package]] 436 + name = "regex-automata" 437 + version = "0.4.6" 438 + source = "registry+https://github.com/rust-lang/crates.io-index" 439 + checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 440 + dependencies = [ 441 + "aho-corasick", 442 + "memchr", 443 + "regex-syntax", 444 + ] 445 + 446 + [[package]] 447 + name = "regex-syntax" 448 + version = "0.8.3" 449 + source = "registry+https://github.com/rust-lang/crates.io-index" 450 + checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 451 + 452 + [[package]] 453 + name = "rustix" 454 + version = "0.38.34" 455 + source = "registry+https://github.com/rust-lang/crates.io-index" 456 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 457 + dependencies = [ 458 + "bitflags", 459 + "errno", 460 + "libc", 461 + "linux-raw-sys", 462 + "windows-sys 0.52.0", 463 + ] 464 + 465 + [[package]] 466 + name = "slug" 467 + version = "0.1.5" 468 + source = "registry+https://github.com/rust-lang/crates.io-index" 469 + checksum = "3bd94acec9c8da640005f8e135a39fc0372e74535e6b368b7a04b875f784c8c4" 470 + dependencies = [ 471 + "deunicode", 472 + "wasm-bindgen", 473 + ] 474 + 475 + [[package]] 476 + name = "strsim" 477 + version = "0.10.0" 478 + source = "registry+https://github.com/rust-lang/crates.io-index" 479 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 480 + 481 + [[package]] 482 + name = "strsim" 483 + version = "0.11.1" 484 + source = "registry+https://github.com/rust-lang/crates.io-index" 485 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 486 + 487 + [[package]] 488 + name = "syn" 489 + version = "1.0.109" 490 + source = "registry+https://github.com/rust-lang/crates.io-index" 491 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 492 + dependencies = [ 493 + "proc-macro2", 494 + "quote", 495 + "unicode-ident", 496 + ] 497 + 498 + [[package]] 499 + name = "syn" 500 + version = "2.0.66" 501 + source = "registry+https://github.com/rust-lang/crates.io-index" 502 + checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5" 503 + dependencies = [ 504 + "proc-macro2", 505 + "quote", 506 + "unicode-ident", 507 + ] 508 + 509 + [[package]] 510 + name = "terminal_size" 511 + version = "0.3.0" 512 + source = "registry+https://github.com/rust-lang/crates.io-index" 513 + checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 514 + dependencies = [ 515 + "rustix", 516 + "windows-sys 0.48.0", 517 + ] 518 + 519 + [[package]] 520 + name = "typed-arena" 521 + version = "2.0.2" 522 + source = "registry+https://github.com/rust-lang/crates.io-index" 523 + checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" 524 + 525 + [[package]] 526 + name = "unicode-ident" 527 + version = "1.0.12" 528 + source = "registry+https://github.com/rust-lang/crates.io-index" 529 + checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 530 + 531 + [[package]] 532 + name = "unicode_categories" 533 + version = "0.1.1" 534 + source = "registry+https://github.com/rust-lang/crates.io-index" 535 + checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 536 + 537 + [[package]] 538 + name = "utf8-width" 539 + version = "0.1.7" 540 + source = "registry+https://github.com/rust-lang/crates.io-index" 541 + checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" 542 + 543 + [[package]] 544 + name = "utf8parse" 545 + version = "0.2.1" 546 + source = "registry+https://github.com/rust-lang/crates.io-index" 547 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 548 + 549 + [[package]] 550 + name = "wasm-bindgen" 551 + version = "0.2.92" 552 + source = "registry+https://github.com/rust-lang/crates.io-index" 553 + checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 554 + dependencies = [ 555 + "cfg-if", 556 + "wasm-bindgen-macro", 557 + ] 558 + 559 + [[package]] 560 + name = "wasm-bindgen-backend" 561 + version = "0.2.92" 562 + source = "registry+https://github.com/rust-lang/crates.io-index" 563 + checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 564 + dependencies = [ 565 + "bumpalo", 566 + "log", 567 + "once_cell", 568 + "proc-macro2", 569 + "quote", 570 + "syn 2.0.66", 571 + "wasm-bindgen-shared", 572 + ] 573 + 574 + [[package]] 575 + name = "wasm-bindgen-macro" 576 + version = "0.2.92" 577 + source = "registry+https://github.com/rust-lang/crates.io-index" 578 + checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 579 + dependencies = [ 580 + "quote", 581 + "wasm-bindgen-macro-support", 582 + ] 583 + 584 + [[package]] 585 + name = "wasm-bindgen-macro-support" 586 + version = "0.2.92" 587 + source = "registry+https://github.com/rust-lang/crates.io-index" 588 + checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 589 + dependencies = [ 590 + "proc-macro2", 591 + "quote", 592 + "syn 2.0.66", 593 + "wasm-bindgen-backend", 594 + "wasm-bindgen-shared", 595 + ] 596 + 597 + [[package]] 598 + name = "wasm-bindgen-shared" 599 + version = "0.2.92" 600 + source = "registry+https://github.com/rust-lang/crates.io-index" 601 + checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 602 + 603 + [[package]] 604 + name = "windows-sys" 605 + version = "0.48.0" 606 + source = "registry+https://github.com/rust-lang/crates.io-index" 607 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 608 + dependencies = [ 609 + "windows-targets 0.48.5", 610 + ] 611 + 612 + [[package]] 613 + name = "windows-sys" 614 + version = "0.52.0" 615 + source = "registry+https://github.com/rust-lang/crates.io-index" 616 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 617 + dependencies = [ 618 + "windows-targets 0.52.5", 619 + ] 620 + 621 + [[package]] 622 + name = "windows-targets" 623 + version = "0.48.5" 624 + source = "registry+https://github.com/rust-lang/crates.io-index" 625 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 626 + dependencies = [ 627 + "windows_aarch64_gnullvm 0.48.5", 628 + "windows_aarch64_msvc 0.48.5", 629 + "windows_i686_gnu 0.48.5", 630 + "windows_i686_msvc 0.48.5", 631 + "windows_x86_64_gnu 0.48.5", 632 + "windows_x86_64_gnullvm 0.48.5", 633 + "windows_x86_64_msvc 0.48.5", 634 + ] 635 + 636 + [[package]] 637 + name = "windows-targets" 638 + version = "0.52.5" 639 + source = "registry+https://github.com/rust-lang/crates.io-index" 640 + checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 641 + dependencies = [ 642 + "windows_aarch64_gnullvm 0.52.5", 643 + "windows_aarch64_msvc 0.52.5", 644 + "windows_i686_gnu 0.52.5", 645 + "windows_i686_gnullvm", 646 + "windows_i686_msvc 0.52.5", 647 + "windows_x86_64_gnu 0.52.5", 648 + "windows_x86_64_gnullvm 0.52.5", 649 + "windows_x86_64_msvc 0.52.5", 650 + ] 651 + 652 + [[package]] 653 + name = "windows_aarch64_gnullvm" 654 + version = "0.48.5" 655 + source = "registry+https://github.com/rust-lang/crates.io-index" 656 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 657 + 658 + [[package]] 659 + name = "windows_aarch64_gnullvm" 660 + version = "0.52.5" 661 + source = "registry+https://github.com/rust-lang/crates.io-index" 662 + checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 663 + 664 + [[package]] 665 + name = "windows_aarch64_msvc" 666 + version = "0.48.5" 667 + source = "registry+https://github.com/rust-lang/crates.io-index" 668 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 669 + 670 + [[package]] 671 + name = "windows_aarch64_msvc" 672 + version = "0.52.5" 673 + source = "registry+https://github.com/rust-lang/crates.io-index" 674 + checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 675 + 676 + [[package]] 677 + name = "windows_i686_gnu" 678 + version = "0.48.5" 679 + source = "registry+https://github.com/rust-lang/crates.io-index" 680 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 681 + 682 + [[package]] 683 + name = "windows_i686_gnu" 684 + version = "0.52.5" 685 + source = "registry+https://github.com/rust-lang/crates.io-index" 686 + checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 687 + 688 + [[package]] 689 + name = "windows_i686_gnullvm" 690 + version = "0.52.5" 691 + source = "registry+https://github.com/rust-lang/crates.io-index" 692 + checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 693 + 694 + [[package]] 695 + name = "windows_i686_msvc" 696 + version = "0.48.5" 697 + source = "registry+https://github.com/rust-lang/crates.io-index" 698 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 699 + 700 + [[package]] 701 + name = "windows_i686_msvc" 702 + version = "0.52.5" 703 + source = "registry+https://github.com/rust-lang/crates.io-index" 704 + checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 705 + 706 + [[package]] 707 + name = "windows_x86_64_gnu" 708 + version = "0.48.5" 709 + source = "registry+https://github.com/rust-lang/crates.io-index" 710 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 711 + 712 + [[package]] 713 + name = "windows_x86_64_gnu" 714 + version = "0.52.5" 715 + source = "registry+https://github.com/rust-lang/crates.io-index" 716 + checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 717 + 718 + [[package]] 719 + name = "windows_x86_64_gnullvm" 720 + version = "0.48.5" 721 + source = "registry+https://github.com/rust-lang/crates.io-index" 722 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 723 + 724 + [[package]] 725 + name = "windows_x86_64_gnullvm" 726 + version = "0.52.5" 727 + source = "registry+https://github.com/rust-lang/crates.io-index" 728 + checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 729 + 730 + [[package]] 731 + name = "windows_x86_64_msvc" 732 + version = "0.48.5" 733 + source = "registry+https://github.com/rust-lang/crates.io-index" 734 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 735 + 736 + [[package]] 737 + name = "windows_x86_64_msvc" 738 + version = "0.52.5" 739 + source = "registry+https://github.com/rust-lang/crates.io-index" 740 + checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
+32
pkgs/by-name/ma/markdown2html-converter/package.nix
···
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "markdown2html-converter"; 9 + version = "1.1.12"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "magiclen"; 13 + repo = "markdown2html-converter"; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-C35TCmcskhK3sHbkUp3kEaTA4P7Ls5Rn6ahUbzy7KXY="; 16 + }; 17 + 18 + cargoLock.lockFile = ./Cargo.lock; 19 + 20 + postPatch = '' 21 + ln -s ${./Cargo.lock} Cargo.lock 22 + ''; 23 + 24 + meta = { 25 + changelog = "https://github.com/magiclen/markdown2html-converter/releases/tag/v${version}"; 26 + description = "Tool for converting a Markdown file to a single HTML file with built-in CSS and JS"; 27 + homepage = "https://github.com/magiclen/markdown2html-converter"; 28 + license = lib.licenses.mit; 29 + mainProgram = "markdown2html-converter"; 30 + maintainers = with lib.maintainers; [ tomasajt ]; 31 + }; 32 + }
+5 -5
pkgs/by-name/mo/mongodb-ce/package.nix
··· 15 }: 16 17 let 18 - version = "8.0.3"; 19 20 srcs = version: { 21 "x86_64-linux" = { 22 url = "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-${version}.tgz"; 23 - hash = "sha256-AFnfK6ADPMBndL3k068IfY4wyD8Aa0/UZhY2g+jS31M="; 24 }; 25 "aarch64-linux" = { 26 url = "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2204-${version}.tgz"; 27 - hash = "sha256-7FGzHMdr8+1Bkx+3QFmDf/DGw5DxfDFEuzU6yICtOBo="; 28 }; 29 "x86_64-darwin" = { 30 url = "https://fastdl.mongodb.org/osx/mongodb-macos-x86_64-${version}.tgz"; 31 - hash = "sha256-GUIFG7F/KNyoPu9HGMs0UVw/HyK5T7jwTrSGY55/UUE="; 32 }; 33 "aarch64-darwin" = { 34 url = "https://fastdl.mongodb.org/osx/mongodb-macos-arm64-${version}.tgz"; 35 - hash = "sha256-erTgU4XQ9Jh1ltPKbyyW6zf3hRHAcopGuHCRFw/AH5g="; 36 }; 37 }; 38 in
··· 15 }: 16 17 let 18 + version = "8.0.4"; 19 20 srcs = version: { 21 "x86_64-linux" = { 22 url = "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-${version}.tgz"; 23 + hash = "sha256-N5rwtPrrjVJj7UAk/weBAhV4+7wHRLNowkX6gEWCQVU="; 24 }; 25 "aarch64-linux" = { 26 url = "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2204-${version}.tgz"; 27 + hash = "sha256-uBa7/jxfZBNmB0l2jspJW2QQ8VY0GtWxc/tPlkV6UBk="; 28 }; 29 "x86_64-darwin" = { 30 url = "https://fastdl.mongodb.org/osx/mongodb-macos-x86_64-${version}.tgz"; 31 + hash = "sha256-Ya+HIlRPWXPp9aX1AlRgkh/pfKRgxhqNep/6uuARmCo="; 32 }; 33 "aarch64-darwin" = { 34 url = "https://fastdl.mongodb.org/osx/mongodb-macos-arm64-${version}.tgz"; 35 + hash = "sha256-IZ47PXsxwEn/e890cNOO/3BOVt8qwY1N94Ql4phcz1g="; 36 }; 37 }; 38 in
-28
pkgs/by-name/ni/nimble/lock.json
··· 1 - { 2 - "depends": [ 3 - { 4 - "method": "fetchzip", 5 - "path": "/nix/store/6aph9sfwcws7pd2725fwjnibdfrv7qmw-source", 6 - "rev": "f8f6bd34bfa3fe12c64b919059ad856a96efcba0", 7 - "sha256": "11m1rb6rzk70kvskppf97ddzgf5fnh9crjziqc6hib0jgsm5d615", 8 - "srcDir": "src", 9 - "url": "https://github.com/nim-lang/checksums/archive/f8f6bd34bfa3fe12c64b919059ad856a96efcba0.tar.gz", 10 - "subDir": "", 11 - "packages": [ 12 - "checksums" 13 - ] 14 - }, 15 - { 16 - "method": "fetchzip", 17 - "path": "/nix/store/lwg9fm34h5xv0dvxij9r5m2y6pn1zsvx-source", 18 - "rev": "faf1617f44d7632ee9601ebc13887644925dcc01", 19 - "sha256": "1dxbc41wbvkpdp6q3qz1r38lpn32447qkkgyh2s12ym6bx4ynni4", 20 - "srcDir": "src", 21 - "url": "https://github.com/nim-lang/sat/archive/faf1617f44d7632ee9601ebc13887644925dcc01.tar.gz", 22 - "subDir": "", 23 - "packages": [ 24 - "sat" 25 - ] 26 - } 27 - ] 28 - }
···
+3 -4
pkgs/by-name/ni/nimble/package.nix
··· 10 buildNimPackage ( 11 final: prev: { 12 pname = "nimble"; 13 - version = "0.16.2"; 14 15 src = fetchFromGitHub { 16 owner = "nim-lang"; 17 repo = "nimble"; 18 rev = "v${final.version}"; 19 - hash = "sha256-MVHf19UbOWk8Zba2scj06PxdYYOJA6OXrVyDQ9Ku6Us="; 20 }; 21 - 22 - lockFile = ./lock.json; 23 24 nativeBuildInputs = [ makeWrapper ]; 25 buildInputs = [ openssl ];
··· 10 buildNimPackage ( 11 final: prev: { 12 pname = "nimble"; 13 + version = "0.16.3"; 14 15 src = fetchFromGitHub { 16 owner = "nim-lang"; 17 repo = "nimble"; 18 rev = "v${final.version}"; 19 + hash = "sha256-1tO/6sKPjmu9B6/cF00DeY/mnUHi2Y+hTEZ3WCqKoGw="; 20 + fetchSubmodules = true; 21 }; 22 23 nativeBuildInputs = [ makeWrapper ]; 24 buildInputs = [ openssl ];
+9 -9
pkgs/by-name/os/osu-lazer-bin/package.nix
··· 1 { 2 lib, 3 - stdenv, 4 fetchurl, 5 fetchzip, 6 appimageTools, ··· 10 11 let 12 pname = "osu-lazer-bin"; 13 - version = "2024.1115.3"; 14 15 src = 16 { 17 aarch64-darwin = fetchzip { 18 url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Apple.Silicon.zip"; 19 - hash = "sha256-dw+bfuei0Wbk3UNVKZRahZxxsJObTyzJOYEMXYJyUNE="; 20 stripRoot = false; 21 }; 22 x86_64-darwin = fetchzip { 23 url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Intel.zip"; 24 - hash = "sha256-EQA2HhoN52VdZsvq8IyocV4zRupVRfdyPpXF3nxZ8rM="; 25 stripRoot = false; 26 }; 27 x86_64-linux = fetchurl { 28 url = "https://github.com/ppy/osu/releases/download/${version}/osu.AppImage"; 29 - hash = "sha256-kwZHy0FfOUFIWvyOj0ghlQz05U+Lnzl5TgC4T6bhm7o="; 30 }; 31 } 32 - .${stdenv.system} or (throw "osu-lazer-bin: ${stdenv.system} is unsupported."); 33 34 meta = { 35 description = "Rhythm is just a *click* away (AppImage version for score submission and multiplayer, and binary distribution for Darwin systems)"; ··· 55 56 passthru.updateScript = ./update.sh; 57 in 58 - if stdenv.hostPlatform.isDarwin then 59 - stdenv.mkDerivation { 60 inherit 61 pname 62 version ··· 99 100 install -m 444 -D ${contents}/osu!.desktop -t $out/share/applications 101 for i in 16 32 48 64 96 128 256 512 1024; do 102 - install -D ${contents}/osu!.png $out/share/icons/hicolor/''${i}x$i/apps/osu!.png 103 done 104 ''; 105 }
··· 1 { 2 lib, 3 + stdenvNoCC, 4 fetchurl, 5 fetchzip, 6 appimageTools, ··· 10 11 let 12 pname = "osu-lazer-bin"; 13 + version = "2024.1208.0"; 14 15 src = 16 { 17 aarch64-darwin = fetchzip { 18 url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Apple.Silicon.zip"; 19 + hash = "sha256-OgXKJ09OMqeD2ZdNBbEluEyR0bbBllprSAHaIXCtLSA="; 20 stripRoot = false; 21 }; 22 x86_64-darwin = fetchzip { 23 url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Intel.zip"; 24 + hash = "sha256-3W6F2ThYTOVKa9/zTA/6X0uMoPy1SYulIYfYw+D7FR8="; 25 stripRoot = false; 26 }; 27 x86_64-linux = fetchurl { 28 url = "https://github.com/ppy/osu/releases/download/${version}/osu.AppImage"; 29 + hash = "sha256-gRUr7jf0+Xbfz8FurPk/o7F67TYisdNySNzVWEMb1es="; 30 }; 31 } 32 + .${stdenvNoCC.system} or (throw "osu-lazer-bin: ${stdenvNoCC.system} is unsupported."); 33 34 meta = { 35 description = "Rhythm is just a *click* away (AppImage version for score submission and multiplayer, and binary distribution for Darwin systems)"; ··· 55 56 passthru.updateScript = ./update.sh; 57 in 58 + if stdenvNoCC.isDarwin then 59 + stdenvNoCC.mkDerivation { 60 inherit 61 pname 62 version ··· 99 100 install -m 444 -D ${contents}/osu!.desktop -t $out/share/applications 101 for i in 16 32 48 64 96 128 256 512 1024; do 102 + install -D ${contents}/osu.png $out/share/icons/hicolor/''${i}x$i/apps/osu.png 103 done 104 ''; 105 }
+1567 -327
pkgs/by-name/os/osu-lazer/deps.nix
··· 1 # This file was automatically generated by passthru.fetch-deps. 2 # Please dont edit it manually, your changes might get overwritten! 3 4 - { fetchNuGet }: [ 5 - (fetchNuGet { pname = "AutoMapper"; version = "13.0.1"; hash = "sha256-3rlsVaouPVH3BD0SobUbVojHuZzNUThQnwbteDtWQ2g="; }) 6 - (fetchNuGet { pname = "CodeFileSanity"; version = "0.0.37"; hash = "sha256-+BoA4FdDUfeREdc42xbnonh3IBLOjzyrrBosaswbSg4="; }) 7 - (fetchNuGet { pname = "DiffPlex"; version = "1.7.2"; hash = "sha256-Vsn81duAmPIPkR40h5bEz7hgtF5Kt5nAAGhQZrQbqxE="; }) 8 - (fetchNuGet { pname = "DiscordRichPresence"; version = "1.2.1.24"; hash = "sha256-oRNrlF1/yK0QvrW2+48RsmSg9h9/pDIfA56/bpoHXFU="; }) 9 - (fetchNuGet { pname = "FFmpeg.AutoGen"; version = "4.3.0.1"; hash = "sha256-e89+ifalu9T2IpbAl7xji9Rf4AF++490tpJta+sp3Vg="; }) 10 - (fetchNuGet { pname = "Fody"; version = "6.8.0"; hash = "sha256-2laYscz0i0LalGTAup7dsh6XlYRZSojYpp8XOwZJJfg="; }) 11 - (fetchNuGet { pname = "HidSharpCore"; version = "1.2.1.1"; hash = "sha256-lM4o3FYBon8eQIMt4uiJAs8M0t4MW+joykiDX+lrdv4="; }) 12 - (fetchNuGet { pname = "HtmlAgilityPack"; version = "1.11.70"; hash = "sha256-V/SI2N1+jNkwjSQRd2Y/XVVhdOKvSNz3/NeIFE9V3wY="; }) 13 - (fetchNuGet { pname = "Humanizer"; version = "2.14.1"; hash = "sha256-1wGwf5KAmDeiH0Dz8KcTdZw+UMkiNsjKOIOt/VJnnqE="; }) 14 - (fetchNuGet { pname = "Humanizer.Core"; version = "2.14.1"; hash = "sha256-EXvojddPu+9JKgOG9NSQgUTfWq1RpOYw7adxDPKDJ6o="; }) 15 - (fetchNuGet { pname = "Humanizer.Core.af"; version = "2.14.1"; hash = "sha256-8CCgI7OweSa53cZWZBXQ8a7VVt/NPP16zHVBZvzU9KQ="; }) 16 - (fetchNuGet { pname = "Humanizer.Core.ar"; version = "2.14.1"; hash = "sha256-JRoP+brQgYBZI8OccH/jaM1Z482ZWBiqU2XL3KsIPw8="; }) 17 - (fetchNuGet { pname = "Humanizer.Core.az"; version = "2.14.1"; hash = "sha256-ubwkbes9zrrisuXTcT4ZgOAiFsUieC6OLd4pgzxsE40="; }) 18 - (fetchNuGet { pname = "Humanizer.Core.bg"; version = "2.14.1"; hash = "sha256-Xv6DP1xxxGVUfP44TZasWpxgQ/DkriljvmIMtHf+nGk="; }) 19 - (fetchNuGet { pname = "Humanizer.Core.bn-BD"; version = "2.14.1"; hash = "sha256-6JpReIc3fkExvJIXzk6fUw56wJ78aTEg1dWQ6o+dQow="; }) 20 - (fetchNuGet { pname = "Humanizer.Core.cs"; version = "2.14.1"; hash = "sha256-MGL86KxSbz0PkDo9+NRj6h1fDjPZXlxAtYNf0Zreg/4="; }) 21 - (fetchNuGet { pname = "Humanizer.Core.da"; version = "2.14.1"; hash = "sha256-Gpw8kJbgz0KQS2mGY5tmrHqpgUO4abD7dSKIy//ONYM="; }) 22 - (fetchNuGet { pname = "Humanizer.Core.de"; version = "2.14.1"; hash = "sha256-Eswv8aEQoxI9MZr2CvWtBUn5X9JRZTWQjRzHJkGj80g="; }) 23 - (fetchNuGet { pname = "Humanizer.Core.el"; version = "2.14.1"; hash = "sha256-wCK2Uy/AV6FxPUSUM0NMbV14pAP+ss25AaVAHMQIeJA="; }) 24 - (fetchNuGet { pname = "Humanizer.Core.es"; version = "2.14.1"; hash = "sha256-iEHiQXKwg0ABDxh//HSrzwaVOlilQBFI96+GYzzTMwQ="; }) 25 - (fetchNuGet { pname = "Humanizer.Core.fa"; version = "2.14.1"; hash = "sha256-2Js7k3nvwJvxAjq3yoLn7PUY2S8+vXfgESwU4SbvjaA="; }) 26 - (fetchNuGet { pname = "Humanizer.Core.fi-FI"; version = "2.14.1"; hash = "sha256-jOWo43r3dhiBsV9cCoDfqK/YqWj5LejZsnfkG6mlkpA="; }) 27 - (fetchNuGet { pname = "Humanizer.Core.fr"; version = "2.14.1"; hash = "sha256-WCbA+f4B3g/ml7KrkHkzpU2Fj38HtWc/ujoVY5F3lk4="; }) 28 - (fetchNuGet { pname = "Humanizer.Core.fr-BE"; version = "2.14.1"; hash = "sha256-GydVmoEy+lwEQ1nM39QXSRhYNchqM47p7qhUEimN4Cw="; }) 29 - (fetchNuGet { pname = "Humanizer.Core.he"; version = "2.14.1"; hash = "sha256-MMf3qjJ+yzxjMxOR7wMWf+eErxWLqpsdWKFhjNCOsyM="; }) 30 - (fetchNuGet { pname = "Humanizer.Core.hr"; version = "2.14.1"; hash = "sha256-kBv2I9ns6L6D4XfXfyZS1VM6+YwF4yUkCmCA5zqvsok="; }) 31 - (fetchNuGet { pname = "Humanizer.Core.hu"; version = "2.14.1"; hash = "sha256-vRje+kxqOsl1JCXAE0yDKvauUumzuEhNcnhNsdIdgVM="; }) 32 - (fetchNuGet { pname = "Humanizer.Core.hy"; version = "2.14.1"; hash = "sha256-UL7PsK4msT5c96lk70/bVAxN63B71l8VOFtvuJQH9a0="; }) 33 - (fetchNuGet { pname = "Humanizer.Core.id"; version = "2.14.1"; hash = "sha256-nIl64gCuZh4D527qI2hfQRvzt1mTJUCDGMIZwpS3C/A="; }) 34 - (fetchNuGet { pname = "Humanizer.Core.is"; version = "2.14.1"; hash = "sha256-38vUQ1aVtlhK15kP9ZlDO0Nl0DcOA5iHx6F2SPN1gYM="; }) 35 - (fetchNuGet { pname = "Humanizer.Core.it"; version = "2.14.1"; hash = "sha256-4ne0VRNi9OAj3bGCQgCy1BNYKMizoHykJ/lchmCsWdc="; }) 36 - (fetchNuGet { pname = "Humanizer.Core.ja"; version = "2.14.1"; hash = "sha256-oAilMM8J6LumV6qv3gSIBNTm7u2L4vV38cQXtME3PhM="; }) 37 - (fetchNuGet { pname = "Humanizer.Core.ko-KR"; version = "2.14.1"; hash = "sha256-b70HQl2IWVPATtaYGDyJ+Z6ioPtrM53vXzfTCHYgxpQ="; }) 38 - (fetchNuGet { pname = "Humanizer.Core.ku"; version = "2.14.1"; hash = "sha256-8LiEH7MaapMtkHFMj7Y3pG+g0QYuIa5gD3VR9nYQn+k="; }) 39 - (fetchNuGet { pname = "Humanizer.Core.lv"; version = "2.14.1"; hash = "sha256-zyCsE5cD++u5shNIqCQUd+66FkUWOl+NfFrs2JduCaQ="; }) 40 - (fetchNuGet { pname = "Humanizer.Core.ms-MY"; version = "2.14.1"; hash = "sha256-pSdZLUi9oWo78nBh2DJunPhDR7THdZSZP0msCVbPsrY="; }) 41 - (fetchNuGet { pname = "Humanizer.Core.mt"; version = "2.14.1"; hash = "sha256-mkX2reEvNpx9w6gtZw+6bkrnj3Di1qgVDMr9q0IeKCw="; }) 42 - (fetchNuGet { pname = "Humanizer.Core.nb"; version = "2.14.1"; hash = "sha256-QvYJHqjO/SrelWYgtm8Sc7axs7J8wbJE+GbTgVw5LYs="; }) 43 - (fetchNuGet { pname = "Humanizer.Core.nb-NO"; version = "2.14.1"; hash = "sha256-YW8y2XkmHjwqf2fztNB3rsn3+CgslF1TclITwp0fA9g="; }) 44 - (fetchNuGet { pname = "Humanizer.Core.nl"; version = "2.14.1"; hash = "sha256-bQM7aXNQMBY+65NfMVQz/xYz9Ad2JC+ryXoB4lcYgmA="; }) 45 - (fetchNuGet { pname = "Humanizer.Core.pl"; version = "2.14.1"; hash = "sha256-IrPxHI4uQvBeMM9/8PaNueKwVkbN+1zFQlNWRjNfXEA="; }) 46 - (fetchNuGet { pname = "Humanizer.Core.pt"; version = "2.14.1"; hash = "sha256-XrlC15HNJFmDwLpHIUHb3Bec9A79msQCRB9Dvz8w4l0="; }) 47 - (fetchNuGet { pname = "Humanizer.Core.ro"; version = "2.14.1"; hash = "sha256-llXtfq4Tr5V2Q4dVD7J0IKITtpiWrFs50DAtJhcSuRI="; }) 48 - (fetchNuGet { pname = "Humanizer.Core.ru"; version = "2.14.1"; hash = "sha256-lD0dB3mkbFfGExwVWZk6fv24MyQQ8Cdv5OrleuZeChg="; }) 49 - (fetchNuGet { pname = "Humanizer.Core.sk"; version = "2.14.1"; hash = "sha256-EmyE+wssZwY6tAuEiFXGn5/yzVMZe7QEuTjOcByOXaA="; }) 50 - (fetchNuGet { pname = "Humanizer.Core.sl"; version = "2.14.1"; hash = "sha256-sWWxh7KZ8Y3Ps6GbBOHbU2GMsNZfkM+BOnUChf3fz4s="; }) 51 - (fetchNuGet { pname = "Humanizer.Core.sr"; version = "2.14.1"; hash = "sha256-/bA3LULRFn5WYmCscr5R5vaFRjeHC0xjNiF7PXEJ8r0="; }) 52 - (fetchNuGet { pname = "Humanizer.Core.sr-Latn"; version = "2.14.1"; hash = "sha256-43+o6oj0UNRJKiFoh57MGPSzlsWAq0eRtzlCrewDmVM="; }) 53 - (fetchNuGet { pname = "Humanizer.Core.sv"; version = "2.14.1"; hash = "sha256-9lXrHveKDs1y/W3Qxd+MVcohhKEU7zNPx21GBVPp/rA="; }) 54 - (fetchNuGet { pname = "Humanizer.Core.th-TH"; version = "2.14.1"; hash = "sha256-ldCsXINSvL2xom0SCtVQy+qX1IN5//EUoyIOwXiJ3k8="; }) 55 - (fetchNuGet { pname = "Humanizer.Core.tr"; version = "2.14.1"; hash = "sha256-VZnO1vMXiR7egKEKJ6lBsj7eNgxhFzakFWsYYRW4u2U="; }) 56 - (fetchNuGet { pname = "Humanizer.Core.uk"; version = "2.14.1"; hash = "sha256-rdvleUrKbj3c06A0O2MkgAZLtXLro9SPB1YqAGE1Vyg="; }) 57 - (fetchNuGet { pname = "Humanizer.Core.uz-Cyrl-UZ"; version = "2.14.1"; hash = "sha256-Qso1Iz9MTLs63x4F00kK31TZAN4AoFaFsuVzM+1z38k="; }) 58 - (fetchNuGet { pname = "Humanizer.Core.uz-Latn-UZ"; version = "2.14.1"; hash = "sha256-sVnkZTuEaHfMJIAZmSCqsspnKkYxK9eVBQZnAAqHNW4="; }) 59 - (fetchNuGet { pname = "Humanizer.Core.vi"; version = "2.14.1"; hash = "sha256-5wDt72+HdNN3mt/iJkxV9LaH13Jc1qr1vB4Lz8ahIPs="; }) 60 - (fetchNuGet { pname = "Humanizer.Core.zh-CN"; version = "2.14.1"; hash = "sha256-Z3qfFWyovcVT4Hqy51lgW2xGwyfI//Yfv90E0Liy1sw="; }) 61 - (fetchNuGet { pname = "Humanizer.Core.zh-Hans"; version = "2.14.1"; hash = "sha256-BTGkMEkQYJKRp858EU7hwNOdsHRT+w6vAMa6H8JIyX4="; }) 62 - (fetchNuGet { pname = "Humanizer.Core.zh-Hant"; version = "2.14.1"; hash = "sha256-N3D1z5aoGwAZ6+ZxrWMtXgacvQcgDG+aLrQQI9uysmM="; }) 63 - (fetchNuGet { pname = "JetBrains.Annotations"; version = "2023.3.0"; hash = "sha256-/Eykez68qYMO5mlmUelzAke8aJehyp8fspO5Z+yt5G4="; }) 64 - (fetchNuGet { pname = "JetBrains.ReSharper.GlobalTools"; version = "2023.3.3"; hash = "sha256-Nn3imJvnqLe02gR1GyUHYH4+XkrNnhLy9dyCjJCkB7M="; }) 65 - (fetchNuGet { pname = "managed-midi"; version = "1.10.1"; hash = "sha256-iuqpyp8vM7ZjtcM9KNqx9se/UhQHsYrQ+lxL4EntyXU="; }) 66 - (fetchNuGet { pname = "Markdig"; version = "0.23.0"; hash = "sha256-4Kjeb54eyas0pCMbTHGPK13vW9zEnFyZ5VStwwtClq8="; }) 67 - (fetchNuGet { pname = "MessagePack"; version = "2.5.187"; hash = "sha256-3sBINhdkGdKPKTKxE4YuLGFHg6stAEHUIboR1g7eXgA="; }) 68 - (fetchNuGet { pname = "MessagePack.Annotations"; version = "2.5.187"; hash = "sha256-SQCJa6u8coWMptbR9iQJLjoi/YkT9t0kJNbojh9vUPw="; }) 69 - (fetchNuGet { pname = "Microsoft.AspNetCore.Connections.Abstractions"; version = "8.0.10"; hash = "sha256-xnc9qaYB07MAlqCswm6kUX0HMAKcBhxWXClPN2bB8ZA="; }) 70 - (fetchNuGet { pname = "Microsoft.AspNetCore.Http.Connections.Client"; version = "8.0.10"; hash = "sha256-yp0hgu8kyTE2zU156TWmRUpW24SAaKJm7he4MnEuiG8="; }) 71 - (fetchNuGet { pname = "Microsoft.AspNetCore.Http.Connections.Common"; version = "8.0.10"; hash = "sha256-ulLp+Rni007Wq9n5w2BA8DX7uG1HhYNF/KV5TN3SKSs="; }) 72 - (fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Client"; version = "8.0.10"; hash = "sha256-GEiMdjLvuc0Xmxj9/zKo3b4Y0Vh5jAjfZqPs6vwj5o0="; }) 73 - (fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Client.Core"; version = "8.0.10"; hash = "sha256-vTk+Smuu0Pi/MmmHZtIjdyBsZuC0gWsL/63ovmtMRWQ="; }) 74 - (fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Common"; version = "8.0.10"; hash = "sha256-LlOfWupgG9pXpNXOfHo3/tmS9ZZy3hziAEqI1X42sh4="; }) 75 - (fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Protocols.Json"; version = "8.0.10"; hash = "sha256-ZWDnjvZLr0FK91cyeJxtAJk2Cf+YW+6SZTW+zEIozGc="; }) 76 - (fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Protocols.MessagePack"; version = "8.0.10"; hash = "sha256-xgxjqns/uNbzisoPX1cAmqMMrRCHxcon+l8I5TLUKGo="; }) 77 - (fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson"; version = "8.0.10"; hash = "sha256-HgRvpIaMuEUMJGGuUCxxEigHv/Tlb2/Pd+OQJBHE5DU="; }) 78 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.BannedApiAnalyzers"; version = "3.3.4"; hash = "sha256-YPTHTZ8xRPMLADdcVYRO/eq3O9uZjsD+OsGRZE+0+e8="; }) 79 - (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.5.0"; hash = "sha256-dAhj/CgXG5VIy2dop1xplUsLje7uBPFjxasz9rdFIgY="; }) 80 - (fetchNuGet { pname = "Microsoft.Data.Sqlite.Core"; version = "8.0.10"; hash = "sha256-YBjY88KAC4ShfcGXcNHL6y1A9NH2xvk4d/qTMfuLuoE="; }) 81 - (fetchNuGet { pname = "Microsoft.Diagnostics.NETCore.Client"; version = "0.2.61701"; hash = "sha256-ITNO2LJYyWhYs3A/iqfoaW6ddvkuuBVXQ5YSKQ8wgcU="; }) 82 - (fetchNuGet { pname = "Microsoft.Diagnostics.Runtime"; version = "2.0.161401"; hash = "sha256-ke9rovup7UFVz2T6HYtHawwrs/XARLDQOwCysC2qDAs="; }) 83 - (fetchNuGet { pname = "Microsoft.DotNet.PlatformAbstractions"; version = "2.0.3"; hash = "sha256-qRoDjAl3I8hYH6tQw06UVn5cf55avtTCjRDUzjUJAgg="; }) 84 - (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Abstractions"; version = "8.0.0"; hash = "sha256-4eBpDkf7MJozTZnOwQvwcfgRKQGcNXe0K/kF+h5Rl8o="; }) 85 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection"; version = "6.0.0-rc.1.21451.13"; hash = "sha256-zJQsAVTfA46hUV5q67BslsVn9yehYBclD06wg2UhyWQ="; }) 86 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection"; version = "8.0.1"; hash = "sha256-O9g0jWS+jfGoT3yqKwZYJGL+jGSIeSbwmvomKDC3hTU="; }) 87 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "6.0.0"; hash = "sha256-SZke0jNKIqJvvukdta+MgIlGsrP2EdPkkS8lfLg7Ju4="; }) 88 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "6.0.0-rc.1.21451.13"; hash = "sha256-oTYhI+lMwaQ7l9CfDHeNMBAdfofv4kHC0vqBZ7oJr4U="; }) 89 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "8.0.0"; hash = "sha256-75KzEGWjbRELczJpCiJub+ltNUMMbz5A/1KQU+5dgP8="; }) 90 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "8.0.2"; hash = "sha256-UfLfEQAkXxDaVPC7foE/J3FVEXd31Pu6uQIhTic3JgY="; }) 91 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "2.0.3"; hash = "sha256-itpwRYzmJZUt2kYJrrcq2IOwqqOskdbE3HMmD8GV/jY="; }) 92 - (fetchNuGet { pname = "Microsoft.Extensions.Features"; version = "8.0.10"; hash = "sha256-mJXz6jSbr1xG8L3cILyODzX21uh5o4Qy9yWYgZ6okxM="; }) 93 - (fetchNuGet { pname = "Microsoft.Extensions.Logging"; version = "8.0.1"; hash = "sha256-vkfVw4tQEg86Xg18v6QO0Qb4Ysz0Njx57d1XcNuj6IU="; }) 94 - (fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "8.0.0"; hash = "sha256-Jmddjeg8U5S+iBTwRlVAVLeIHxc4yrrNgqVMOB7EjM4="; }) 95 - (fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "8.0.2"; hash = "sha256-cHpe8X2BgYa5DzulZfq24rg8O2K5Lmq2OiLhoyAVgJc="; }) 96 - (fetchNuGet { pname = "Microsoft.Extensions.ObjectPool"; version = "5.0.11"; hash = "sha256-xNqhEqOm7tI3nxdlbAJ9NSm5/WbkRSUCrdDM+syJ9EQ="; }) 97 - (fetchNuGet { pname = "Microsoft.Extensions.Options"; version = "6.0.0"; hash = "sha256-DxnEgGiCXpkrxFkxXtOXqwaiAtoIjA8VSSWCcsW0FwE="; }) 98 - (fetchNuGet { pname = "Microsoft.Extensions.Options"; version = "8.0.2"; hash = "sha256-AjcldddddtN/9aH9pg7ClEZycWtFHLi9IPe1GGhNQys="; }) 99 - (fetchNuGet { pname = "Microsoft.Extensions.Primitives"; version = "6.0.0"; hash = "sha256-AgvysszpQ11AiTBJFkvSy8JnwIWTj15Pfek7T7ThUc4="; }) 100 - (fetchNuGet { pname = "Microsoft.Extensions.Primitives"; version = "8.0.0"; hash = "sha256-FU8qj3DR8bDdc1c+WeGZx/PCZeqqndweZM9epcpXjSo="; }) 101 - (fetchNuGet { pname = "Microsoft.NET.StringTools"; version = "17.6.3"; hash = "sha256-H2Qw8x47WyFOd/VmgRmGMc+uXySgUv68UISgK8Frsjw="; }) 102 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; hash = "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU="; }) 103 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; hash = "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM="; }) 104 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "2.0.0"; hash = "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro="; }) 105 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "5.0.0"; hash = "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c="; }) 106 - (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.0.1"; hash = "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4="; }) 107 - (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; hash = "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ="; }) 108 - (fetchNuGet { pname = "Microsoft.Toolkit.HighPerformance"; version = "7.1.2"; hash = "sha256-qzNmWXboGnrGTRESKFv0WZ5oxRg30XDODxpRgCsoiaI="; }) 109 - (fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.3.0"; hash = "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg="; }) 110 - (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "4.5.0"; hash = "sha256-WMBXsIb0DgPFPaFkNVxY9b9vcMxPqtgFgijKYMJfV/0="; }) 111 - (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "5.0.0"; hash = "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA="; }) 112 - (fetchNuGet { pname = "MongoDB.Bson"; version = "2.19.1"; hash = "sha256-HUdPLxxzJNYQm22NEmwJoq0B6LtRK8d4NBstqi0t9uw="; }) 113 - (fetchNuGet { pname = "NativeLibraryLoader"; version = "1.0.13"; hash = "sha256-ENubvwbFy0ZB8I88xHTRkkjG8lrQ98jQ33IQoe4rcaM="; }) 114 - (fetchNuGet { pname = "NETStandard.Library"; version = "1.6.1"; hash = "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw="; }) 115 - (fetchNuGet { pname = "NETStandard.Library"; version = "2.0.0"; hash = "sha256-Pp7fRylai8JrE1O+9TGfIEJrAOmnWTJRLWE+qJBahK0="; }) 116 - (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.1"; hash = "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo="; }) 117 - (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.3"; hash = "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc="; }) 118 - (fetchNuGet { pname = "NuGet.Common"; version = "5.11.0"; hash = "sha256-IzeAfwDJpgTceOZyXHDzlUtMonmKOhfabpLVkpk2rqo="; }) 119 - (fetchNuGet { pname = "NuGet.Configuration"; version = "5.11.0"; hash = "sha256-dJS5EgM26Aq2ncNxF7p7iLMgdYNKg3/t+TL5fmBeN+k="; }) 120 - (fetchNuGet { pname = "NuGet.DependencyResolver.Core"; version = "5.11.0"; hash = "sha256-2cZjxu3X83EpNervpq0v2KAwAO+3khDkPyt0irbrlHo="; }) 121 - (fetchNuGet { pname = "NuGet.Frameworks"; version = "5.11.0"; hash = "sha256-n+hxcrf+sXM80Tv9YH9x4+hwTslVidFq4tjBNPAzYnM="; }) 122 - (fetchNuGet { pname = "NuGet.LibraryModel"; version = "5.11.0"; hash = "sha256-fgWFdWQiYfHgPmydGwMAGBda39S39iN3XgSAZgjtbKI="; }) 123 - (fetchNuGet { pname = "NuGet.Packaging"; version = "5.11.0"; hash = "sha256-u4cQk7izZ+ULh9iO5pndqg+8cL7g2MbMXmd4i6C2r2c="; }) 124 - (fetchNuGet { pname = "NuGet.ProjectModel"; version = "5.11.0"; hash = "sha256-Bdwsy96KpU44Dr6JVKPOhOmiZYZ/uMKQ0Ug2nKZiDcQ="; }) 125 - (fetchNuGet { pname = "NuGet.Protocol"; version = "5.11.0"; hash = "sha256-q11PcqNtfTKavfr1SPtmJTEx3qwHrXW+MrCw6Y3aNxA="; }) 126 - (fetchNuGet { pname = "NuGet.Versioning"; version = "5.11.0"; hash = "sha256-eBfn91Kr7Vv+js8kvKrnai2W3ZN7dY+7u9ivHGwoIxA="; }) 127 - (fetchNuGet { pname = "NuGet.Versioning"; version = "6.12.1"; hash = "sha256-f/ejCuzCAwKs4N4Ec6yf2RovrhBT0nj0hRDP+03/Iy4="; }) 128 - (fetchNuGet { pname = "NUnit"; version = "3.14.0"; hash = "sha256-CuP/q5HovPWfAW3Cty/QxRi7VpjykJ3TDLq5TENI6KY="; }) 129 - (fetchNuGet { pname = "NVika"; version = "3.0.0"; hash = "sha256-zgg8aUuIFQ4EZHScy+YHmkwDE9K5vzUJF8s9aiJNFuw="; }) 130 - (fetchNuGet { pname = "OpenTabletDriver"; version = "0.6.4"; hash = "sha256-tTk8ezYrMs/Kj+snMvWq9Ae7WLU4pq5NpFHEZV8WjJM="; }) 131 - (fetchNuGet { pname = "OpenTabletDriver.Configurations"; version = "0.6.4"; hash = "sha256-9QqvSck5Ofn3clWQzwGoTHX6k5d1nUxjD56UeIBx+1A="; }) 132 - (fetchNuGet { pname = "OpenTabletDriver.Native"; version = "0.6.4"; hash = "sha256-4vNnamnIVNpVBOPXyyJcbj0pe/aixGLmvXzq3vkUXMs="; }) 133 - (fetchNuGet { pname = "OpenTabletDriver.Plugin"; version = "0.6.4"; hash = "sha256-9jORi42+oYFdNEin9lYWMBGrktyTBMAl5sfr1jxAbVE="; }) 134 - (fetchNuGet { pname = "PolySharp"; version = "1.10.0"; hash = "sha256-30IBYsy7zYtEHDZGw6K9asFq2dXbW+CrBMpMCEdkERs="; }) 135 - (fetchNuGet { pname = "ppy.LocalisationAnalyser"; version = "2024.802.0"; hash = "sha256-vyRWbdPUp5n8hJPJReU9LUy2o/bwwLT1po9f2M16tMA="; }) 136 - (fetchNuGet { pname = "ppy.LocalisationAnalyser.Tools"; version = "2024.802.0"; hash = "sha256-bniBSY8rS005OHO/ixn2NFM0/KIMiawHyMSXhlAEqwc="; }) 137 - (fetchNuGet { pname = "ppy.ManagedBass"; version = "2022.1216.0"; hash = "sha256-yG3IWNixzv+kFgYw6yAkjw9PWMpyR0tvrkFsgWGQ1qY="; }) 138 - (fetchNuGet { pname = "ppy.ManagedBass.Fx"; version = "2022.1216.0"; hash = "sha256-VfIbFhCDsCRZW5bCbt8MSmE2kAlcKxxx6vdFOus4he8="; }) 139 - (fetchNuGet { pname = "ppy.ManagedBass.Mix"; version = "2022.1216.0"; hash = "sha256-qUEGJHoYfDvHrpuXdVaiSoV2iVVh9X0yEB41u96+q6A="; }) 140 - (fetchNuGet { pname = "ppy.ManagedBass.Wasapi"; version = "2022.1216.0"; hash = "sha256-HzhypEVJA+6h3aBB95zNeGbmzEIRc5435Eh9nYpjVkA="; }) 141 - (fetchNuGet { pname = "ppy.osu.Framework"; version = "2024.1115.0"; hash = "sha256-liRLzcqMRtWNau6g5GCMyy/SMSr1P9OrFbX4bQ/suj4="; }) 142 - (fetchNuGet { pname = "ppy.osu.Framework.NativeLibs"; version = "2024.809.1-nativelibs"; hash = "sha256-F7xd66bCEDgEjYgqmx21lYde+ebCsX/E2fuqWXH4xyU="; }) 143 - (fetchNuGet { pname = "ppy.osu.Framework.SourceGeneration"; version = "2023.720.0"; hash = "sha256-XXV/qBJ9vEVF15fcOlDyoJ8j47azuSJaXHEgsn3fOwA="; }) 144 - (fetchNuGet { pname = "ppy.osu.Game.Resources"; version = "2024.1106.0"; hash = "sha256-U9Esfl6U08//21VwWr4CBt1CPYGsB9I7ssfBGkQkLOI="; }) 145 - (fetchNuGet { pname = "ppy.osuTK.NS20"; version = "1.0.211"; hash = "sha256-Xu4uiYs1pqIXcBWeTBIc8OIqbLmH6MvaY6Dim4ZNikg="; }) 146 - (fetchNuGet { pname = "ppy.SDL2-CS"; version = "1.0.741-alpha"; hash = "sha256-sdX+MoMlIPUyi4yEUVHtqxKWF/VK04e2VaUavmgBEJU="; }) 147 - (fetchNuGet { pname = "ppy.SDL3-CS"; version = "2024.1022.0"; hash = "sha256-+i2YGAK9AqWpGsAcJSvVTSnGpZhItamrPiwDo9Mm4bk="; }) 148 - (fetchNuGet { pname = "ppy.Veldrid"; version = "4.9.62-gca0239da6b"; hash = "sha256-mGlMQbp2/ewA7PzamEeMA1pbboC73iAIARhK4MPrwO4="; }) 149 - (fetchNuGet { pname = "ppy.Veldrid.MetalBindings"; version = "4.9.62-gca0239da6b"; hash = "sha256-8jkbU2QV4HV8RU1vnSNtP8kNEhDWbTb3Dr2cl8w/T6A="; }) 150 - (fetchNuGet { pname = "ppy.Veldrid.OpenGLBindings"; version = "4.9.62-gca0239da6b"; hash = "sha256-I81to2x5D4LlIJN80d5DbqcU0jPTVSPoc0tvL15YG6I="; }) 151 - (fetchNuGet { pname = "ppy.Veldrid.SPIRV"; version = "1.0.15-gfbb03d21c2"; hash = "sha256-rnl6+U4E3BJVYTWtEjOx7fDVcJJNBP8MOisoGVLT7vA="; }) 152 - (fetchNuGet { pname = "ppy.Vk"; version = "1.0.26"; hash = "sha256-YA+U8RhOrGdtw3tlluiv1+M7FIMB0zQMnPVY8ynOxvE="; }) 153 - (fetchNuGet { pname = "Realm"; version = "11.5.0"; hash = "sha256-ykC2fyOh4XeRJyLoO3jQQC4sZcFhSms7wswSO6Iu8mQ="; }) 154 - (fetchNuGet { pname = "Realm.PlatformHelpers"; version = "11.5.0"; hash = "sha256-6QUO6jQC3VwxKsNY24WSgLNtOwcaGjQDtP0S4DSt670="; }) 155 - (fetchNuGet { pname = "Remotion.Linq"; version = "2.2.0"; hash = "sha256-rpPp2xyHj2JsTy6k3FAhljvl85PNa3R9jrVy3UG0hvg="; }) 156 - (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; hash = "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8="; }) 157 - (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; hash = "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I="; }) 158 - (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; hash = "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI="; }) 159 - (fetchNuGet { pname = "runtime.any.System.Globalization"; version = "4.3.0"; hash = "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU="; }) 160 - (fetchNuGet { pname = "runtime.any.System.Globalization.Calendars"; version = "4.3.0"; hash = "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4="; }) 161 - (fetchNuGet { pname = "runtime.any.System.IO"; version = "4.3.0"; hash = "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE="; }) 162 - (fetchNuGet { pname = "runtime.any.System.Reflection"; version = "4.3.0"; hash = "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk="; }) 163 - (fetchNuGet { pname = "runtime.any.System.Reflection.Extensions"; version = "4.3.0"; hash = "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8="; }) 164 - (fetchNuGet { pname = "runtime.any.System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ="; }) 165 - (fetchNuGet { pname = "runtime.any.System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4="; }) 166 - (fetchNuGet { pname = "runtime.any.System.Runtime"; version = "4.3.0"; hash = "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM="; }) 167 - (fetchNuGet { pname = "runtime.any.System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4="; }) 168 - (fetchNuGet { pname = "runtime.any.System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA="; }) 169 - (fetchNuGet { pname = "runtime.any.System.Text.Encoding"; version = "4.3.0"; hash = "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs="; }) 170 - (fetchNuGet { pname = "runtime.any.System.Text.Encoding.Extensions"; version = "4.3.0"; hash = "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM="; }) 171 - (fetchNuGet { pname = "runtime.any.System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4="; }) 172 - (fetchNuGet { pname = "runtime.any.System.Threading.Timer"; version = "4.3.0"; hash = "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs="; }) 173 - (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps="; }) 174 - (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I="; }) 175 - (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA="; }) 176 - (fetchNuGet { pname = "runtime.native.System"; version = "4.0.0"; hash = "sha256-bmaM0ovT4X4aqDJOR255Yda/u3fmHZskU++lMnsy894="; }) 177 - (fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; hash = "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y="; }) 178 - (fetchNuGet { pname = "runtime.native.System.IO.Compression"; version = "4.3.0"; hash = "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8="; }) 179 - (fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.3.0"; hash = "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg="; }) 180 - (fetchNuGet { pname = "runtime.native.System.Net.Security"; version = "4.3.0"; hash = "sha256-I8vYld/7WtU2/rrD4XfSRgpO/DY3qXghG14VQjiU2DY="; }) 181 - (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; hash = "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw="; }) 182 - (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I="; }) 183 - (fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM="; }) 184 - (fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4="; }) 185 - (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; hash = "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM="; }) 186 - (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0="; }) 187 - (fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4="; }) 188 - (fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g="; }) 189 - (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc="; }) 190 - (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw="; }) 191 - (fetchNuGet { pname = "runtime.unix.Microsoft.Win32.Primitives"; version = "4.3.0"; hash = "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg="; }) 192 - (fetchNuGet { pname = "runtime.unix.System.Console"; version = "4.3.0"; hash = "sha256-AHkdKShTRHttqfMjmi+lPpTuCrM5vd/WRy6Kbtie190="; }) 193 - (fetchNuGet { pname = "runtime.unix.System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI="; }) 194 - (fetchNuGet { pname = "runtime.unix.System.IO.FileSystem"; version = "4.3.0"; hash = "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I="; }) 195 - (fetchNuGet { pname = "runtime.unix.System.Net.Primitives"; version = "4.3.0"; hash = "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0="; }) 196 - (fetchNuGet { pname = "runtime.unix.System.Net.Sockets"; version = "4.3.0"; hash = "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4="; }) 197 - (fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; hash = "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs="; }) 198 - (fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; hash = "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4="; }) 199 - (fetchNuGet { pname = "Sentry"; version = "4.13.0"; hash = "sha256-JeyxQFOic72eQ41Guy4NbPy/A4wXvA812229vpLcLCM="; }) 200 - (fetchNuGet { pname = "SharpCompress"; version = "0.38.0"; hash = "sha256-bQL3kazuqbuqn+Csy9RYMMUsNMtqkGXF7x32s787UBM="; }) 201 - (fetchNuGet { pname = "SharpFNT"; version = "2.0.0"; hash = "sha256-oNeQKFY4LcTdc3s78WxzODYNylrZmSg3BpMtmOBj6q0="; }) 202 - (fetchNuGet { pname = "SharpGen.Runtime"; version = "2.0.0-beta.13"; hash = "sha256-CB4681QJaYoL3MCFn4SwgCWxtFf7T/oZQQ6+pLT5oIg="; }) 203 - (fetchNuGet { pname = "SharpGen.Runtime.COM"; version = "2.0.0-beta.13"; hash = "sha256-xoQQrf8RIeNwx4aZjXDECd2ROZCj3SFk8q+eJ64cu9I="; }) 204 - (fetchNuGet { pname = "SixLabors.ImageSharp"; version = "3.1.5"; hash = "sha256-3UehX9T+I81nfgv2dTHlpoPgYzXFk7kHr1mmlQOCBfw="; }) 205 - (fetchNuGet { pname = "SQLitePCLRaw.bundle_e_sqlite3"; version = "2.1.10"; hash = "sha256-kZIWjH/TVTXRIsHPZSl7zoC4KAMBMWmgFYGLrQ15Occ="; }) 206 - (fetchNuGet { pname = "SQLitePCLRaw.core"; version = "2.1.10"; hash = "sha256-gpZcYwiJVCVwCyJu0R6hYxyMB39VhJDmYh9LxcIVAA8="; }) 207 - (fetchNuGet { pname = "SQLitePCLRaw.core"; version = "2.1.6"; hash = "sha256-RxWjm52PdmMV98dgDy0BCpF988+BssRZUgALLv7TH/E="; }) 208 - (fetchNuGet { pname = "SQLitePCLRaw.lib.e_sqlite3"; version = "2.1.10"; hash = "sha256-m2v2RQWol+1MNGZsx+G2N++T9BNtQGLLHXUjcwkdCnc="; }) 209 - (fetchNuGet { pname = "SQLitePCLRaw.provider.e_sqlite3"; version = "2.1.10"; hash = "sha256-MLs3jiETLZ7k/TgkHynZegCWuAbgHaDQKTPB0iNv7Fg="; }) 210 - (fetchNuGet { pname = "StbiSharp"; version = "1.1.0"; hash = "sha256-oP64y/hYgoYo+heDFzmt6sWukTF0lDDFkB16eyoQfHE="; }) 211 - (fetchNuGet { pname = "System.AppContext"; version = "4.1.0"; hash = "sha256-v6YfyfrKmhww+EYHUq6cwYUMj00MQ6SOfJtcGVRlYzs="; }) 212 - (fetchNuGet { pname = "System.AppContext"; version = "4.3.0"; hash = "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg="; }) 213 - (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; hash = "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk="; }) 214 - (fetchNuGet { pname = "System.Buffers"; version = "4.5.1"; hash = "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI="; }) 215 - (fetchNuGet { pname = "System.Collections"; version = "4.0.11"; hash = "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0="; }) 216 - (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; hash = "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc="; }) 217 - (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; hash = "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI="; }) 218 - (fetchNuGet { pname = "System.Collections.Immutable"; version = "1.7.1"; hash = "sha256-WMMAUqoxT3J1gW9DI8v31VAuhwqTc4Posose5jq1BNo="; }) 219 - (fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "5.0.0"; hash = "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg="; }) 220 - (fetchNuGet { pname = "System.Console"; version = "4.3.0"; hash = "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo="; }) 221 - (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.0.11"; hash = "sha256-P+rSQJVoN6M56jQbs76kZ9G3mAWFdtF27P/RijN8sj4="; }) 222 - (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM="; }) 223 - (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.3.0"; hash = "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw="; }) 224 - (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.3.0"; hash = "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y="; }) 225 - (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; hash = "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q="; }) 226 - (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.0.11"; hash = "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4="; }) 227 - (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.3.0"; hash = "sha256-k75gjOYimIQtLBD5NDzwwi3ZMUBPRW3jmc3evDMMJbU="; }) 228 - (fetchNuGet { pname = "System.Formats.Asn1"; version = "5.0.0"; hash = "sha256-9nL3dN4w/dZ49W1pCkTjRqZm6Dh0mMVExNungcBHrKs="; }) 229 - (fetchNuGet { pname = "System.Globalization"; version = "4.0.11"; hash = "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw="; }) 230 - (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; hash = "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI="; }) 231 - (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; hash = "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc="; }) 232 - (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; hash = "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk="; }) 233 - (fetchNuGet { pname = "System.IO"; version = "4.1.0"; hash = "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw="; }) 234 - (fetchNuGet { pname = "System.IO"; version = "4.3.0"; hash = "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY="; }) 235 - (fetchNuGet { pname = "System.IO.Compression"; version = "4.3.0"; hash = "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA="; }) 236 - (fetchNuGet { pname = "System.IO.Compression.ZipFile"; version = "4.3.0"; hash = "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs="; }) 237 - (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.0.1"; hash = "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0="; }) 238 - (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.3.0"; hash = "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw="; }) 239 - (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; hash = "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg="; }) 240 - (fetchNuGet { pname = "System.IO.Packaging"; version = "8.0.1"; hash = "sha256-xf0BAfqQvITompBsvfpxiLts/6sRQEzdjNA3f/q/vY4="; }) 241 - (fetchNuGet { pname = "System.IO.Pipelines"; version = "8.0.0"; hash = "sha256-LdpB1s4vQzsOODaxiKstLks57X9DTD5D6cPx8DE1wwE="; }) 242 - (fetchNuGet { pname = "System.Linq"; version = "4.1.0"; hash = "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794="; }) 243 - (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; hash = "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A="; }) 244 - (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.1.0"; hash = "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4="; }) 245 - (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.3.0"; hash = "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8="; }) 246 - (fetchNuGet { pname = "System.Linq.Queryable"; version = "4.0.1"; hash = "sha256-XOFRO+lyoxsWtIUJfg5JCqv9Gx35ASOc94WIR8ZMVoY="; }) 247 - (fetchNuGet { pname = "System.Memory"; version = "4.5.3"; hash = "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk="; }) 248 - (fetchNuGet { pname = "System.Memory"; version = "4.5.4"; hash = "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E="; }) 249 - (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; hash = "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI="; }) 250 - (fetchNuGet { pname = "System.Net.Http"; version = "4.3.0"; hash = "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q="; }) 251 - (fetchNuGet { pname = "System.Net.NameResolution"; version = "4.3.0"; hash = "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c="; }) 252 - (fetchNuGet { pname = "System.Net.Primitives"; version = "4.3.0"; hash = "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE="; }) 253 - (fetchNuGet { pname = "System.Net.Security"; version = "4.3.0"; hash = "sha256-B7laE1z1+ldbo6JkjlDjZynG5JiMZ/3uNHPHMP6LRak="; }) 254 - (fetchNuGet { pname = "System.Net.Sockets"; version = "4.3.0"; hash = "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus="; }) 255 - (fetchNuGet { pname = "System.Net.WebHeaderCollection"; version = "4.3.0"; hash = "sha256-wpRP3D/2YjpFmqU7Q42L/+/hChEVMlwU1sjysGVrQ1c="; }) 256 - (fetchNuGet { pname = "System.Net.WebSockets"; version = "4.3.0"; hash = "sha256-l3h3cF1cCC9zMhWLKSDnZBZvFADUd0Afe2+iAwBA0r0="; }) 257 - (fetchNuGet { pname = "System.Net.WebSockets.Client"; version = "4.3.2"; hash = "sha256-MwNKwIIpBJhC4Na6EYWMmVyPCa064Yp1aL0opx1FfoA="; }) 258 - (fetchNuGet { pname = "System.Numerics.Tensors"; version = "8.0.0"; hash = "sha256-rXTD0dhqJyk5oK54MIdsq3qJ1NbeTByxyrdHq2thv0w="; }) 259 - (fetchNuGet { pname = "System.ObjectModel"; version = "4.0.12"; hash = "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s="; }) 260 - (fetchNuGet { pname = "System.ObjectModel"; version = "4.3.0"; hash = "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q="; }) 261 - (fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; hash = "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM="; }) 262 - (fetchNuGet { pname = "System.Reflection"; version = "4.1.0"; hash = "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs="; }) 263 - (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; hash = "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY="; }) 264 - (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.0.1"; hash = "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk="; }) 265 - (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.3.0"; hash = "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU="; }) 266 - (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.0.1"; hash = "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0="; }) 267 - (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.3.0"; hash = "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA="; }) 268 - (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.0.1"; hash = "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g="; }) 269 - (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.3.0"; hash = "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I="; }) 270 - (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.0.1"; hash = "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ="; }) 271 - (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.3.0"; hash = "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk="; }) 272 - (fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.8.1"; hash = "sha256-UpaoRYSGqMCk00NmMbCTYsqwMKJbEI8vg0TxlOqgvZ8="; }) 273 - (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.0.1"; hash = "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0="; }) 274 - (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM="; }) 275 - (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.1.0"; hash = "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4="; }) 276 - (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.3.0"; hash = "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng="; }) 277 - (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.0.1"; hash = "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw="; }) 278 - (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo="; }) 279 - (fetchNuGet { pname = "System.Runtime"; version = "4.1.0"; hash = "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo="; }) 280 - (fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; hash = "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg="; }) 281 - (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.7.1"; hash = "sha256-UvyoDV8O0oY3HPG1GbA56YVdvwTGEfjYR5gW1O7IK4U="; }) 282 - (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; hash = "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I="; }) 283 - (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0-rc.1.21451.13"; hash = "sha256-BgiqR6Y555tJEBEqDT5+yHCyQy5Wv9bLKlKWcQFiq2w="; }) 284 - (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.1.0"; hash = "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc="; }) 285 - (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; hash = "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o="; }) 286 - (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms="; }) 287 - (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI="; }) 288 - (fetchNuGet { pname = "System.Runtime.InteropServices.RuntimeInformation"; version = "4.0.0"; hash = "sha256-5j53amb76A3SPiE3B0llT2XPx058+CgE7OXL4bLalT4="; }) 289 - (fetchNuGet { pname = "System.Runtime.InteropServices.RuntimeInformation"; version = "4.3.0"; hash = "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA="; }) 290 - (fetchNuGet { pname = "System.Runtime.Numerics"; version = "4.3.0"; hash = "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc="; }) 291 - (fetchNuGet { pname = "System.Security.AccessControl"; version = "4.5.0"; hash = "sha256-AFsKPb/nTk2/mqH/PYpaoI8PLsiKKimaXf+7Mb5VfPM="; }) 292 - (fetchNuGet { pname = "System.Security.AccessControl"; version = "5.0.0"; hash = "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54="; }) 293 - (fetchNuGet { pname = "System.Security.Claims"; version = "4.3.0"; hash = "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks="; }) 294 - (fetchNuGet { pname = "System.Security.Cryptography.Algorithms"; version = "4.3.0"; hash = "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8="; }) 295 - (fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "4.3.0"; hash = "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw="; }) 296 - (fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "5.0.0"; hash = "sha256-nOJP3vdmQaYA07TI373OvZX6uWshETipvi5KpL7oExo="; }) 297 - (fetchNuGet { pname = "System.Security.Cryptography.Csp"; version = "4.3.0"; hash = "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ="; }) 298 - (fetchNuGet { pname = "System.Security.Cryptography.Encoding"; version = "4.3.0"; hash = "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss="; }) 299 - (fetchNuGet { pname = "System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4="; }) 300 - (fetchNuGet { pname = "System.Security.Cryptography.Pkcs"; version = "5.0.0"; hash = "sha256-kq/tvYQSa24mKSvikFK2fKUAnexSL4PO4LkPppqtYkE="; }) 301 - (fetchNuGet { pname = "System.Security.Cryptography.Primitives"; version = "4.3.0"; hash = "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318="; }) 302 - (fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "4.4.0"; hash = "sha256-Ri53QmFX8I8UH0x4PikQ1ZA07ZSnBUXStd5rBfGWFOE="; }) 303 - (fetchNuGet { pname = "System.Security.Cryptography.X509Certificates"; version = "4.3.0"; hash = "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0="; }) 304 - (fetchNuGet { pname = "System.Security.Principal"; version = "4.3.0"; hash = "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk="; }) 305 - (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.3.0"; hash = "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE="; }) 306 - (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.5.0"; hash = "sha256-BkUYNguz0e4NJp1kkW7aJBn3dyH9STwB5N8XqnlCsmY="; }) 307 - (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; hash = "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y="; }) 308 - (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; hash = "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc="; }) 309 - (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; hash = "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg="; }) 310 - (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; hash = "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc="; }) 311 - (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.0"; hash = "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0="; }) 312 - (fetchNuGet { pname = "System.Threading"; version = "4.0.11"; hash = "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac="; }) 313 - (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; hash = "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc="; }) 314 - (fetchNuGet { pname = "System.Threading.Channels"; version = "6.0.0"; hash = "sha256-klGYnsyrjvXaGeqgfnMf/dTAMNtcHY+zM4Xh6v2JfuE="; }) 315 - (fetchNuGet { pname = "System.Threading.Channels"; version = "8.0.0"; hash = "sha256-c5TYoLNXDLroLIPnlfyMHk7nZ70QAckc/c7V199YChg="; }) 316 - (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.0.11"; hash = "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs="; }) 317 - (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w="; }) 318 - (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.3.0"; hash = "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc="; }) 319 - (fetchNuGet { pname = "System.Threading.ThreadPool"; version = "4.3.0"; hash = "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg="; }) 320 - (fetchNuGet { pname = "System.Threading.Timer"; version = "4.3.0"; hash = "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s="; }) 321 - (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.3.0"; hash = "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA="; }) 322 - (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.3.0"; hash = "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI="; }) 323 - (fetchNuGet { pname = "TagLibSharp"; version = "2.3.0"; hash = "sha256-PD9bVZiPaeC8hNx2D+uDUf701cCaMi2IRi5oPTNN+/w="; }) 324 - (fetchNuGet { pname = "Velopack"; version = "0.0.915"; hash = "sha256-L31qPk7/MLexF+5FP4gdNfwAWB6kNlvMFL2nfkQBSQU="; }) 325 - (fetchNuGet { pname = "Vortice.D3DCompiler"; version = "2.4.2"; hash = "sha256-LXdgts8lKbTU67c1W001XRbq5nenzf8XcYCRxc75jR8="; }) 326 - (fetchNuGet { pname = "Vortice.Direct3D11"; version = "2.4.2"; hash = "sha256-hU4qzLKhv4QxiP2c9s4IZUGgeQxsOjRhgurrlXXq/qM="; }) 327 - (fetchNuGet { pname = "Vortice.DirectX"; version = "2.4.2"; hash = "sha256-LOIxdET0ynaJz70fakVwDYU0qm+1P0SfD1+I9P320oc="; }) 328 - (fetchNuGet { pname = "Vortice.DXGI"; version = "2.4.2"; hash = "sha256-/5r4f9iM/wxZLsauQDbq6DoTTdvuuhbcmNgaxVK1ep8="; }) 329 - (fetchNuGet { pname = "Vortice.Mathematics"; version = "1.4.25"; hash = "sha256-Mr/HVvwIeeDJtMNToP6kh2hyqud2zT31913HdhB4hm4="; }) 330 - (fetchNuGet { pname = "ZstdSharp.Port"; version = "0.8.1"; hash = "sha256-PeQvyz3lUrK+t+n1dFtNXCLztQtAfkqUuM6mOqBZHLg="; }) 331 ]
··· 1 # This file was automatically generated by passthru.fetch-deps. 2 # Please dont edit it manually, your changes might get overwritten! 3 4 + { fetchNuGet }: 5 + [ 6 + (fetchNuGet { 7 + pname = "AutoMapper"; 8 + version = "13.0.1"; 9 + hash = "sha256-3rlsVaouPVH3BD0SobUbVojHuZzNUThQnwbteDtWQ2g="; 10 + }) 11 + (fetchNuGet { 12 + pname = "CodeFileSanity"; 13 + version = "0.0.37"; 14 + hash = "sha256-+BoA4FdDUfeREdc42xbnonh3IBLOjzyrrBosaswbSg4="; 15 + }) 16 + (fetchNuGet { 17 + pname = "DiffPlex"; 18 + version = "1.7.2"; 19 + hash = "sha256-Vsn81duAmPIPkR40h5bEz7hgtF5Kt5nAAGhQZrQbqxE="; 20 + }) 21 + (fetchNuGet { 22 + pname = "DiscordRichPresence"; 23 + version = "1.2.1.24"; 24 + hash = "sha256-oRNrlF1/yK0QvrW2+48RsmSg9h9/pDIfA56/bpoHXFU="; 25 + }) 26 + (fetchNuGet { 27 + pname = "FFmpeg.AutoGen"; 28 + version = "4.3.0.1"; 29 + hash = "sha256-e89+ifalu9T2IpbAl7xji9Rf4AF++490tpJta+sp3Vg="; 30 + }) 31 + (fetchNuGet { 32 + pname = "Fody"; 33 + version = "6.8.0"; 34 + hash = "sha256-2laYscz0i0LalGTAup7dsh6XlYRZSojYpp8XOwZJJfg="; 35 + }) 36 + (fetchNuGet { 37 + pname = "HidSharpCore"; 38 + version = "1.2.1.1"; 39 + hash = "sha256-lM4o3FYBon8eQIMt4uiJAs8M0t4MW+joykiDX+lrdv4="; 40 + }) 41 + (fetchNuGet { 42 + pname = "HtmlAgilityPack"; 43 + version = "1.11.70"; 44 + hash = "sha256-V/SI2N1+jNkwjSQRd2Y/XVVhdOKvSNz3/NeIFE9V3wY="; 45 + }) 46 + (fetchNuGet { 47 + pname = "Humanizer"; 48 + version = "2.14.1"; 49 + hash = "sha256-1wGwf5KAmDeiH0Dz8KcTdZw+UMkiNsjKOIOt/VJnnqE="; 50 + }) 51 + (fetchNuGet { 52 + pname = "Humanizer.Core"; 53 + version = "2.14.1"; 54 + hash = "sha256-EXvojddPu+9JKgOG9NSQgUTfWq1RpOYw7adxDPKDJ6o="; 55 + }) 56 + (fetchNuGet { 57 + pname = "Humanizer.Core.af"; 58 + version = "2.14.1"; 59 + hash = "sha256-8CCgI7OweSa53cZWZBXQ8a7VVt/NPP16zHVBZvzU9KQ="; 60 + }) 61 + (fetchNuGet { 62 + pname = "Humanizer.Core.ar"; 63 + version = "2.14.1"; 64 + hash = "sha256-JRoP+brQgYBZI8OccH/jaM1Z482ZWBiqU2XL3KsIPw8="; 65 + }) 66 + (fetchNuGet { 67 + pname = "Humanizer.Core.az"; 68 + version = "2.14.1"; 69 + hash = "sha256-ubwkbes9zrrisuXTcT4ZgOAiFsUieC6OLd4pgzxsE40="; 70 + }) 71 + (fetchNuGet { 72 + pname = "Humanizer.Core.bg"; 73 + version = "2.14.1"; 74 + hash = "sha256-Xv6DP1xxxGVUfP44TZasWpxgQ/DkriljvmIMtHf+nGk="; 75 + }) 76 + (fetchNuGet { 77 + pname = "Humanizer.Core.bn-BD"; 78 + version = "2.14.1"; 79 + hash = "sha256-6JpReIc3fkExvJIXzk6fUw56wJ78aTEg1dWQ6o+dQow="; 80 + }) 81 + (fetchNuGet { 82 + pname = "Humanizer.Core.cs"; 83 + version = "2.14.1"; 84 + hash = "sha256-MGL86KxSbz0PkDo9+NRj6h1fDjPZXlxAtYNf0Zreg/4="; 85 + }) 86 + (fetchNuGet { 87 + pname = "Humanizer.Core.da"; 88 + version = "2.14.1"; 89 + hash = "sha256-Gpw8kJbgz0KQS2mGY5tmrHqpgUO4abD7dSKIy//ONYM="; 90 + }) 91 + (fetchNuGet { 92 + pname = "Humanizer.Core.de"; 93 + version = "2.14.1"; 94 + hash = "sha256-Eswv8aEQoxI9MZr2CvWtBUn5X9JRZTWQjRzHJkGj80g="; 95 + }) 96 + (fetchNuGet { 97 + pname = "Humanizer.Core.el"; 98 + version = "2.14.1"; 99 + hash = "sha256-wCK2Uy/AV6FxPUSUM0NMbV14pAP+ss25AaVAHMQIeJA="; 100 + }) 101 + (fetchNuGet { 102 + pname = "Humanizer.Core.es"; 103 + version = "2.14.1"; 104 + hash = "sha256-iEHiQXKwg0ABDxh//HSrzwaVOlilQBFI96+GYzzTMwQ="; 105 + }) 106 + (fetchNuGet { 107 + pname = "Humanizer.Core.fa"; 108 + version = "2.14.1"; 109 + hash = "sha256-2Js7k3nvwJvxAjq3yoLn7PUY2S8+vXfgESwU4SbvjaA="; 110 + }) 111 + (fetchNuGet { 112 + pname = "Humanizer.Core.fi-FI"; 113 + version = "2.14.1"; 114 + hash = "sha256-jOWo43r3dhiBsV9cCoDfqK/YqWj5LejZsnfkG6mlkpA="; 115 + }) 116 + (fetchNuGet { 117 + pname = "Humanizer.Core.fr"; 118 + version = "2.14.1"; 119 + hash = "sha256-WCbA+f4B3g/ml7KrkHkzpU2Fj38HtWc/ujoVY5F3lk4="; 120 + }) 121 + (fetchNuGet { 122 + pname = "Humanizer.Core.fr-BE"; 123 + version = "2.14.1"; 124 + hash = "sha256-GydVmoEy+lwEQ1nM39QXSRhYNchqM47p7qhUEimN4Cw="; 125 + }) 126 + (fetchNuGet { 127 + pname = "Humanizer.Core.he"; 128 + version = "2.14.1"; 129 + hash = "sha256-MMf3qjJ+yzxjMxOR7wMWf+eErxWLqpsdWKFhjNCOsyM="; 130 + }) 131 + (fetchNuGet { 132 + pname = "Humanizer.Core.hr"; 133 + version = "2.14.1"; 134 + hash = "sha256-kBv2I9ns6L6D4XfXfyZS1VM6+YwF4yUkCmCA5zqvsok="; 135 + }) 136 + (fetchNuGet { 137 + pname = "Humanizer.Core.hu"; 138 + version = "2.14.1"; 139 + hash = "sha256-vRje+kxqOsl1JCXAE0yDKvauUumzuEhNcnhNsdIdgVM="; 140 + }) 141 + (fetchNuGet { 142 + pname = "Humanizer.Core.hy"; 143 + version = "2.14.1"; 144 + hash = "sha256-UL7PsK4msT5c96lk70/bVAxN63B71l8VOFtvuJQH9a0="; 145 + }) 146 + (fetchNuGet { 147 + pname = "Humanizer.Core.id"; 148 + version = "2.14.1"; 149 + hash = "sha256-nIl64gCuZh4D527qI2hfQRvzt1mTJUCDGMIZwpS3C/A="; 150 + }) 151 + (fetchNuGet { 152 + pname = "Humanizer.Core.is"; 153 + version = "2.14.1"; 154 + hash = "sha256-38vUQ1aVtlhK15kP9ZlDO0Nl0DcOA5iHx6F2SPN1gYM="; 155 + }) 156 + (fetchNuGet { 157 + pname = "Humanizer.Core.it"; 158 + version = "2.14.1"; 159 + hash = "sha256-4ne0VRNi9OAj3bGCQgCy1BNYKMizoHykJ/lchmCsWdc="; 160 + }) 161 + (fetchNuGet { 162 + pname = "Humanizer.Core.ja"; 163 + version = "2.14.1"; 164 + hash = "sha256-oAilMM8J6LumV6qv3gSIBNTm7u2L4vV38cQXtME3PhM="; 165 + }) 166 + (fetchNuGet { 167 + pname = "Humanizer.Core.ko-KR"; 168 + version = "2.14.1"; 169 + hash = "sha256-b70HQl2IWVPATtaYGDyJ+Z6ioPtrM53vXzfTCHYgxpQ="; 170 + }) 171 + (fetchNuGet { 172 + pname = "Humanizer.Core.ku"; 173 + version = "2.14.1"; 174 + hash = "sha256-8LiEH7MaapMtkHFMj7Y3pG+g0QYuIa5gD3VR9nYQn+k="; 175 + }) 176 + (fetchNuGet { 177 + pname = "Humanizer.Core.lv"; 178 + version = "2.14.1"; 179 + hash = "sha256-zyCsE5cD++u5shNIqCQUd+66FkUWOl+NfFrs2JduCaQ="; 180 + }) 181 + (fetchNuGet { 182 + pname = "Humanizer.Core.ms-MY"; 183 + version = "2.14.1"; 184 + hash = "sha256-pSdZLUi9oWo78nBh2DJunPhDR7THdZSZP0msCVbPsrY="; 185 + }) 186 + (fetchNuGet { 187 + pname = "Humanizer.Core.mt"; 188 + version = "2.14.1"; 189 + hash = "sha256-mkX2reEvNpx9w6gtZw+6bkrnj3Di1qgVDMr9q0IeKCw="; 190 + }) 191 + (fetchNuGet { 192 + pname = "Humanizer.Core.nb"; 193 + version = "2.14.1"; 194 + hash = "sha256-QvYJHqjO/SrelWYgtm8Sc7axs7J8wbJE+GbTgVw5LYs="; 195 + }) 196 + (fetchNuGet { 197 + pname = "Humanizer.Core.nb-NO"; 198 + version = "2.14.1"; 199 + hash = "sha256-YW8y2XkmHjwqf2fztNB3rsn3+CgslF1TclITwp0fA9g="; 200 + }) 201 + (fetchNuGet { 202 + pname = "Humanizer.Core.nl"; 203 + version = "2.14.1"; 204 + hash = "sha256-bQM7aXNQMBY+65NfMVQz/xYz9Ad2JC+ryXoB4lcYgmA="; 205 + }) 206 + (fetchNuGet { 207 + pname = "Humanizer.Core.pl"; 208 + version = "2.14.1"; 209 + hash = "sha256-IrPxHI4uQvBeMM9/8PaNueKwVkbN+1zFQlNWRjNfXEA="; 210 + }) 211 + (fetchNuGet { 212 + pname = "Humanizer.Core.pt"; 213 + version = "2.14.1"; 214 + hash = "sha256-XrlC15HNJFmDwLpHIUHb3Bec9A79msQCRB9Dvz8w4l0="; 215 + }) 216 + (fetchNuGet { 217 + pname = "Humanizer.Core.ro"; 218 + version = "2.14.1"; 219 + hash = "sha256-llXtfq4Tr5V2Q4dVD7J0IKITtpiWrFs50DAtJhcSuRI="; 220 + }) 221 + (fetchNuGet { 222 + pname = "Humanizer.Core.ru"; 223 + version = "2.14.1"; 224 + hash = "sha256-lD0dB3mkbFfGExwVWZk6fv24MyQQ8Cdv5OrleuZeChg="; 225 + }) 226 + (fetchNuGet { 227 + pname = "Humanizer.Core.sk"; 228 + version = "2.14.1"; 229 + hash = "sha256-EmyE+wssZwY6tAuEiFXGn5/yzVMZe7QEuTjOcByOXaA="; 230 + }) 231 + (fetchNuGet { 232 + pname = "Humanizer.Core.sl"; 233 + version = "2.14.1"; 234 + hash = "sha256-sWWxh7KZ8Y3Ps6GbBOHbU2GMsNZfkM+BOnUChf3fz4s="; 235 + }) 236 + (fetchNuGet { 237 + pname = "Humanizer.Core.sr"; 238 + version = "2.14.1"; 239 + hash = "sha256-/bA3LULRFn5WYmCscr5R5vaFRjeHC0xjNiF7PXEJ8r0="; 240 + }) 241 + (fetchNuGet { 242 + pname = "Humanizer.Core.sr-Latn"; 243 + version = "2.14.1"; 244 + hash = "sha256-43+o6oj0UNRJKiFoh57MGPSzlsWAq0eRtzlCrewDmVM="; 245 + }) 246 + (fetchNuGet { 247 + pname = "Humanizer.Core.sv"; 248 + version = "2.14.1"; 249 + hash = "sha256-9lXrHveKDs1y/W3Qxd+MVcohhKEU7zNPx21GBVPp/rA="; 250 + }) 251 + (fetchNuGet { 252 + pname = "Humanizer.Core.th-TH"; 253 + version = "2.14.1"; 254 + hash = "sha256-ldCsXINSvL2xom0SCtVQy+qX1IN5//EUoyIOwXiJ3k8="; 255 + }) 256 + (fetchNuGet { 257 + pname = "Humanizer.Core.tr"; 258 + version = "2.14.1"; 259 + hash = "sha256-VZnO1vMXiR7egKEKJ6lBsj7eNgxhFzakFWsYYRW4u2U="; 260 + }) 261 + (fetchNuGet { 262 + pname = "Humanizer.Core.uk"; 263 + version = "2.14.1"; 264 + hash = "sha256-rdvleUrKbj3c06A0O2MkgAZLtXLro9SPB1YqAGE1Vyg="; 265 + }) 266 + (fetchNuGet { 267 + pname = "Humanizer.Core.uz-Cyrl-UZ"; 268 + version = "2.14.1"; 269 + hash = "sha256-Qso1Iz9MTLs63x4F00kK31TZAN4AoFaFsuVzM+1z38k="; 270 + }) 271 + (fetchNuGet { 272 + pname = "Humanizer.Core.uz-Latn-UZ"; 273 + version = "2.14.1"; 274 + hash = "sha256-sVnkZTuEaHfMJIAZmSCqsspnKkYxK9eVBQZnAAqHNW4="; 275 + }) 276 + (fetchNuGet { 277 + pname = "Humanizer.Core.vi"; 278 + version = "2.14.1"; 279 + hash = "sha256-5wDt72+HdNN3mt/iJkxV9LaH13Jc1qr1vB4Lz8ahIPs="; 280 + }) 281 + (fetchNuGet { 282 + pname = "Humanizer.Core.zh-CN"; 283 + version = "2.14.1"; 284 + hash = "sha256-Z3qfFWyovcVT4Hqy51lgW2xGwyfI//Yfv90E0Liy1sw="; 285 + }) 286 + (fetchNuGet { 287 + pname = "Humanizer.Core.zh-Hans"; 288 + version = "2.14.1"; 289 + hash = "sha256-BTGkMEkQYJKRp858EU7hwNOdsHRT+w6vAMa6H8JIyX4="; 290 + }) 291 + (fetchNuGet { 292 + pname = "Humanizer.Core.zh-Hant"; 293 + version = "2.14.1"; 294 + hash = "sha256-N3D1z5aoGwAZ6+ZxrWMtXgacvQcgDG+aLrQQI9uysmM="; 295 + }) 296 + (fetchNuGet { 297 + pname = "JetBrains.Annotations"; 298 + version = "2023.3.0"; 299 + hash = "sha256-/Eykez68qYMO5mlmUelzAke8aJehyp8fspO5Z+yt5G4="; 300 + }) 301 + (fetchNuGet { 302 + pname = "JetBrains.ReSharper.GlobalTools"; 303 + version = "2023.3.3"; 304 + hash = "sha256-Nn3imJvnqLe02gR1GyUHYH4+XkrNnhLy9dyCjJCkB7M="; 305 + }) 306 + (fetchNuGet { 307 + pname = "managed-midi"; 308 + version = "1.10.1"; 309 + hash = "sha256-iuqpyp8vM7ZjtcM9KNqx9se/UhQHsYrQ+lxL4EntyXU="; 310 + }) 311 + (fetchNuGet { 312 + pname = "Markdig"; 313 + version = "0.23.0"; 314 + hash = "sha256-4Kjeb54eyas0pCMbTHGPK13vW9zEnFyZ5VStwwtClq8="; 315 + }) 316 + (fetchNuGet { 317 + pname = "MessagePack"; 318 + version = "2.5.187"; 319 + hash = "sha256-3sBINhdkGdKPKTKxE4YuLGFHg6stAEHUIboR1g7eXgA="; 320 + }) 321 + (fetchNuGet { 322 + pname = "MessagePack.Annotations"; 323 + version = "2.5.187"; 324 + hash = "sha256-SQCJa6u8coWMptbR9iQJLjoi/YkT9t0kJNbojh9vUPw="; 325 + }) 326 + (fetchNuGet { 327 + pname = "Microsoft.AspNetCore.Connections.Abstractions"; 328 + version = "8.0.10"; 329 + hash = "sha256-xnc9qaYB07MAlqCswm6kUX0HMAKcBhxWXClPN2bB8ZA="; 330 + }) 331 + (fetchNuGet { 332 + pname = "Microsoft.AspNetCore.Http.Connections.Client"; 333 + version = "8.0.10"; 334 + hash = "sha256-yp0hgu8kyTE2zU156TWmRUpW24SAaKJm7he4MnEuiG8="; 335 + }) 336 + (fetchNuGet { 337 + pname = "Microsoft.AspNetCore.Http.Connections.Common"; 338 + version = "8.0.10"; 339 + hash = "sha256-ulLp+Rni007Wq9n5w2BA8DX7uG1HhYNF/KV5TN3SKSs="; 340 + }) 341 + (fetchNuGet { 342 + pname = "Microsoft.AspNetCore.SignalR.Client"; 343 + version = "8.0.10"; 344 + hash = "sha256-GEiMdjLvuc0Xmxj9/zKo3b4Y0Vh5jAjfZqPs6vwj5o0="; 345 + }) 346 + (fetchNuGet { 347 + pname = "Microsoft.AspNetCore.SignalR.Client.Core"; 348 + version = "8.0.10"; 349 + hash = "sha256-vTk+Smuu0Pi/MmmHZtIjdyBsZuC0gWsL/63ovmtMRWQ="; 350 + }) 351 + (fetchNuGet { 352 + pname = "Microsoft.AspNetCore.SignalR.Common"; 353 + version = "8.0.10"; 354 + hash = "sha256-LlOfWupgG9pXpNXOfHo3/tmS9ZZy3hziAEqI1X42sh4="; 355 + }) 356 + (fetchNuGet { 357 + pname = "Microsoft.AspNetCore.SignalR.Protocols.Json"; 358 + version = "8.0.10"; 359 + hash = "sha256-ZWDnjvZLr0FK91cyeJxtAJk2Cf+YW+6SZTW+zEIozGc="; 360 + }) 361 + (fetchNuGet { 362 + pname = "Microsoft.AspNetCore.SignalR.Protocols.MessagePack"; 363 + version = "8.0.10"; 364 + hash = "sha256-xgxjqns/uNbzisoPX1cAmqMMrRCHxcon+l8I5TLUKGo="; 365 + }) 366 + (fetchNuGet { 367 + pname = "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson"; 368 + version = "8.0.10"; 369 + hash = "sha256-HgRvpIaMuEUMJGGuUCxxEigHv/Tlb2/Pd+OQJBHE5DU="; 370 + }) 371 + (fetchNuGet { 372 + pname = "Microsoft.CodeAnalysis.BannedApiAnalyzers"; 373 + version = "3.3.4"; 374 + hash = "sha256-YPTHTZ8xRPMLADdcVYRO/eq3O9uZjsD+OsGRZE+0+e8="; 375 + }) 376 + (fetchNuGet { 377 + pname = "Microsoft.CSharp"; 378 + version = "4.5.0"; 379 + hash = "sha256-dAhj/CgXG5VIy2dop1xplUsLje7uBPFjxasz9rdFIgY="; 380 + }) 381 + (fetchNuGet { 382 + pname = "Microsoft.Data.Sqlite.Core"; 383 + version = "8.0.10"; 384 + hash = "sha256-YBjY88KAC4ShfcGXcNHL6y1A9NH2xvk4d/qTMfuLuoE="; 385 + }) 386 + (fetchNuGet { 387 + pname = "Microsoft.Diagnostics.NETCore.Client"; 388 + version = "0.2.61701"; 389 + hash = "sha256-ITNO2LJYyWhYs3A/iqfoaW6ddvkuuBVXQ5YSKQ8wgcU="; 390 + }) 391 + (fetchNuGet { 392 + pname = "Microsoft.Diagnostics.Runtime"; 393 + version = "2.0.161401"; 394 + hash = "sha256-ke9rovup7UFVz2T6HYtHawwrs/XARLDQOwCysC2qDAs="; 395 + }) 396 + (fetchNuGet { 397 + pname = "Microsoft.DotNet.PlatformAbstractions"; 398 + version = "2.0.3"; 399 + hash = "sha256-qRoDjAl3I8hYH6tQw06UVn5cf55avtTCjRDUzjUJAgg="; 400 + }) 401 + (fetchNuGet { 402 + pname = "Microsoft.Extensions.Configuration.Abstractions"; 403 + version = "8.0.0"; 404 + hash = "sha256-4eBpDkf7MJozTZnOwQvwcfgRKQGcNXe0K/kF+h5Rl8o="; 405 + }) 406 + (fetchNuGet { 407 + pname = "Microsoft.Extensions.DependencyInjection"; 408 + version = "6.0.0-rc.1.21451.13"; 409 + hash = "sha256-zJQsAVTfA46hUV5q67BslsVn9yehYBclD06wg2UhyWQ="; 410 + }) 411 + (fetchNuGet { 412 + pname = "Microsoft.Extensions.DependencyInjection"; 413 + version = "8.0.1"; 414 + hash = "sha256-O9g0jWS+jfGoT3yqKwZYJGL+jGSIeSbwmvomKDC3hTU="; 415 + }) 416 + (fetchNuGet { 417 + pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; 418 + version = "6.0.0"; 419 + hash = "sha256-SZke0jNKIqJvvukdta+MgIlGsrP2EdPkkS8lfLg7Ju4="; 420 + }) 421 + (fetchNuGet { 422 + pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; 423 + version = "6.0.0-rc.1.21451.13"; 424 + hash = "sha256-oTYhI+lMwaQ7l9CfDHeNMBAdfofv4kHC0vqBZ7oJr4U="; 425 + }) 426 + (fetchNuGet { 427 + pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; 428 + version = "8.0.0"; 429 + hash = "sha256-75KzEGWjbRELczJpCiJub+ltNUMMbz5A/1KQU+5dgP8="; 430 + }) 431 + (fetchNuGet { 432 + pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; 433 + version = "8.0.2"; 434 + hash = "sha256-UfLfEQAkXxDaVPC7foE/J3FVEXd31Pu6uQIhTic3JgY="; 435 + }) 436 + (fetchNuGet { 437 + pname = "Microsoft.Extensions.DependencyModel"; 438 + version = "2.0.3"; 439 + hash = "sha256-itpwRYzmJZUt2kYJrrcq2IOwqqOskdbE3HMmD8GV/jY="; 440 + }) 441 + (fetchNuGet { 442 + pname = "Microsoft.Extensions.Features"; 443 + version = "8.0.10"; 444 + hash = "sha256-mJXz6jSbr1xG8L3cILyODzX21uh5o4Qy9yWYgZ6okxM="; 445 + }) 446 + (fetchNuGet { 447 + pname = "Microsoft.Extensions.Logging"; 448 + version = "8.0.1"; 449 + hash = "sha256-vkfVw4tQEg86Xg18v6QO0Qb4Ysz0Njx57d1XcNuj6IU="; 450 + }) 451 + (fetchNuGet { 452 + pname = "Microsoft.Extensions.Logging.Abstractions"; 453 + version = "8.0.0"; 454 + hash = "sha256-Jmddjeg8U5S+iBTwRlVAVLeIHxc4yrrNgqVMOB7EjM4="; 455 + }) 456 + (fetchNuGet { 457 + pname = "Microsoft.Extensions.Logging.Abstractions"; 458 + version = "8.0.2"; 459 + hash = "sha256-cHpe8X2BgYa5DzulZfq24rg8O2K5Lmq2OiLhoyAVgJc="; 460 + }) 461 + (fetchNuGet { 462 + pname = "Microsoft.Extensions.ObjectPool"; 463 + version = "5.0.11"; 464 + hash = "sha256-xNqhEqOm7tI3nxdlbAJ9NSm5/WbkRSUCrdDM+syJ9EQ="; 465 + }) 466 + (fetchNuGet { 467 + pname = "Microsoft.Extensions.Options"; 468 + version = "6.0.0"; 469 + hash = "sha256-DxnEgGiCXpkrxFkxXtOXqwaiAtoIjA8VSSWCcsW0FwE="; 470 + }) 471 + (fetchNuGet { 472 + pname = "Microsoft.Extensions.Options"; 473 + version = "8.0.2"; 474 + hash = "sha256-AjcldddddtN/9aH9pg7ClEZycWtFHLi9IPe1GGhNQys="; 475 + }) 476 + (fetchNuGet { 477 + pname = "Microsoft.Extensions.Primitives"; 478 + version = "6.0.0"; 479 + hash = "sha256-AgvysszpQ11AiTBJFkvSy8JnwIWTj15Pfek7T7ThUc4="; 480 + }) 481 + (fetchNuGet { 482 + pname = "Microsoft.Extensions.Primitives"; 483 + version = "8.0.0"; 484 + hash = "sha256-FU8qj3DR8bDdc1c+WeGZx/PCZeqqndweZM9epcpXjSo="; 485 + }) 486 + (fetchNuGet { 487 + pname = "Microsoft.NET.StringTools"; 488 + version = "17.6.3"; 489 + hash = "sha256-H2Qw8x47WyFOd/VmgRmGMc+uXySgUv68UISgK8Frsjw="; 490 + }) 491 + (fetchNuGet { 492 + pname = "Microsoft.NETCore.Platforms"; 493 + version = "1.0.1"; 494 + hash = "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU="; 495 + }) 496 + (fetchNuGet { 497 + pname = "Microsoft.NETCore.Platforms"; 498 + version = "1.1.0"; 499 + hash = "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM="; 500 + }) 501 + (fetchNuGet { 502 + pname = "Microsoft.NETCore.Platforms"; 503 + version = "2.0.0"; 504 + hash = "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro="; 505 + }) 506 + (fetchNuGet { 507 + pname = "Microsoft.NETCore.Platforms"; 508 + version = "5.0.0"; 509 + hash = "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c="; 510 + }) 511 + (fetchNuGet { 512 + pname = "Microsoft.NETCore.Targets"; 513 + version = "1.0.1"; 514 + hash = "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4="; 515 + }) 516 + (fetchNuGet { 517 + pname = "Microsoft.NETCore.Targets"; 518 + version = "1.1.0"; 519 + hash = "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ="; 520 + }) 521 + (fetchNuGet { 522 + pname = "Microsoft.Toolkit.HighPerformance"; 523 + version = "7.1.2"; 524 + hash = "sha256-qzNmWXboGnrGTRESKFv0WZ5oxRg30XDODxpRgCsoiaI="; 525 + }) 526 + (fetchNuGet { 527 + pname = "Microsoft.Win32.Primitives"; 528 + version = "4.3.0"; 529 + hash = "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg="; 530 + }) 531 + (fetchNuGet { 532 + pname = "Microsoft.Win32.Registry"; 533 + version = "4.5.0"; 534 + hash = "sha256-WMBXsIb0DgPFPaFkNVxY9b9vcMxPqtgFgijKYMJfV/0="; 535 + }) 536 + (fetchNuGet { 537 + pname = "Microsoft.Win32.Registry"; 538 + version = "5.0.0"; 539 + hash = "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA="; 540 + }) 541 + (fetchNuGet { 542 + pname = "MongoDB.Bson"; 543 + version = "2.19.1"; 544 + hash = "sha256-HUdPLxxzJNYQm22NEmwJoq0B6LtRK8d4NBstqi0t9uw="; 545 + }) 546 + (fetchNuGet { 547 + pname = "NativeLibraryLoader"; 548 + version = "1.0.13"; 549 + hash = "sha256-ENubvwbFy0ZB8I88xHTRkkjG8lrQ98jQ33IQoe4rcaM="; 550 + }) 551 + (fetchNuGet { 552 + pname = "NETStandard.Library"; 553 + version = "1.6.1"; 554 + hash = "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw="; 555 + }) 556 + (fetchNuGet { 557 + pname = "NETStandard.Library"; 558 + version = "2.0.0"; 559 + hash = "sha256-Pp7fRylai8JrE1O+9TGfIEJrAOmnWTJRLWE+qJBahK0="; 560 + }) 561 + (fetchNuGet { 562 + pname = "Newtonsoft.Json"; 563 + version = "13.0.1"; 564 + hash = "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo="; 565 + }) 566 + (fetchNuGet { 567 + pname = "Newtonsoft.Json"; 568 + version = "13.0.3"; 569 + hash = "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc="; 570 + }) 571 + (fetchNuGet { 572 + pname = "NuGet.Versioning"; 573 + version = "6.12.1"; 574 + hash = "sha256-f/ejCuzCAwKs4N4Ec6yf2RovrhBT0nj0hRDP+03/Iy4="; 575 + }) 576 + (fetchNuGet { 577 + pname = "NUnit"; 578 + version = "3.14.0"; 579 + hash = "sha256-CuP/q5HovPWfAW3Cty/QxRi7VpjykJ3TDLq5TENI6KY="; 580 + }) 581 + (fetchNuGet { 582 + pname = "NVika"; 583 + version = "3.0.0"; 584 + hash = "sha256-zgg8aUuIFQ4EZHScy+YHmkwDE9K5vzUJF8s9aiJNFuw="; 585 + }) 586 + (fetchNuGet { 587 + pname = "OpenTabletDriver"; 588 + version = "0.6.4"; 589 + hash = "sha256-tTk8ezYrMs/Kj+snMvWq9Ae7WLU4pq5NpFHEZV8WjJM="; 590 + }) 591 + (fetchNuGet { 592 + pname = "OpenTabletDriver.Configurations"; 593 + version = "0.6.4"; 594 + hash = "sha256-9QqvSck5Ofn3clWQzwGoTHX6k5d1nUxjD56UeIBx+1A="; 595 + }) 596 + (fetchNuGet { 597 + pname = "OpenTabletDriver.Native"; 598 + version = "0.6.4"; 599 + hash = "sha256-4vNnamnIVNpVBOPXyyJcbj0pe/aixGLmvXzq3vkUXMs="; 600 + }) 601 + (fetchNuGet { 602 + pname = "OpenTabletDriver.Plugin"; 603 + version = "0.6.4"; 604 + hash = "sha256-9jORi42+oYFdNEin9lYWMBGrktyTBMAl5sfr1jxAbVE="; 605 + }) 606 + (fetchNuGet { 607 + pname = "PolySharp"; 608 + version = "1.10.0"; 609 + hash = "sha256-30IBYsy7zYtEHDZGw6K9asFq2dXbW+CrBMpMCEdkERs="; 610 + }) 611 + (fetchNuGet { 612 + pname = "ppy.LocalisationAnalyser"; 613 + version = "2024.802.0"; 614 + hash = "sha256-vyRWbdPUp5n8hJPJReU9LUy2o/bwwLT1po9f2M16tMA="; 615 + }) 616 + (fetchNuGet { 617 + pname = "ppy.LocalisationAnalyser.Tools"; 618 + version = "2024.802.0"; 619 + hash = "sha256-bniBSY8rS005OHO/ixn2NFM0/KIMiawHyMSXhlAEqwc="; 620 + }) 621 + (fetchNuGet { 622 + pname = "ppy.ManagedBass"; 623 + version = "2022.1216.0"; 624 + hash = "sha256-yG3IWNixzv+kFgYw6yAkjw9PWMpyR0tvrkFsgWGQ1qY="; 625 + }) 626 + (fetchNuGet { 627 + pname = "ppy.ManagedBass.Fx"; 628 + version = "2022.1216.0"; 629 + hash = "sha256-VfIbFhCDsCRZW5bCbt8MSmE2kAlcKxxx6vdFOus4he8="; 630 + }) 631 + (fetchNuGet { 632 + pname = "ppy.ManagedBass.Mix"; 633 + version = "2022.1216.0"; 634 + hash = "sha256-qUEGJHoYfDvHrpuXdVaiSoV2iVVh9X0yEB41u96+q6A="; 635 + }) 636 + (fetchNuGet { 637 + pname = "ppy.ManagedBass.Wasapi"; 638 + version = "2022.1216.0"; 639 + hash = "sha256-HzhypEVJA+6h3aBB95zNeGbmzEIRc5435Eh9nYpjVkA="; 640 + }) 641 + (fetchNuGet { 642 + pname = "ppy.osu.Framework"; 643 + version = "2024.1206.0"; 644 + hash = "sha256-2XouXC/uahqY1ldHvNWyobxGYXEQJky65g8EL7fL5Zw="; 645 + }) 646 + (fetchNuGet { 647 + pname = "ppy.osu.Framework.NativeLibs"; 648 + version = "2024.809.1-nativelibs"; 649 + hash = "sha256-F7xd66bCEDgEjYgqmx21lYde+ebCsX/E2fuqWXH4xyU="; 650 + }) 651 + (fetchNuGet { 652 + pname = "ppy.osu.Framework.SourceGeneration"; 653 + version = "2024.1128.0"; 654 + hash = "sha256-7ovye7QXFeFr68IxmwIAWA9Fgm686NTYVTUXGQWtKPM="; 655 + }) 656 + (fetchNuGet { 657 + pname = "ppy.osu.Game.Resources"; 658 + version = "2024.1202.0"; 659 + hash = "sha256-OwsEEF4WSH7HQ5HOl3EB36RJ19stn966DtmfnOtpBJk="; 660 + }) 661 + (fetchNuGet { 662 + pname = "ppy.osuTK.NS20"; 663 + version = "1.0.211"; 664 + hash = "sha256-Xu4uiYs1pqIXcBWeTBIc8OIqbLmH6MvaY6Dim4ZNikg="; 665 + }) 666 + (fetchNuGet { 667 + pname = "ppy.SDL2-CS"; 668 + version = "1.0.741-alpha"; 669 + hash = "sha256-sdX+MoMlIPUyi4yEUVHtqxKWF/VK04e2VaUavmgBEJU="; 670 + }) 671 + (fetchNuGet { 672 + pname = "ppy.SDL3-CS"; 673 + version = "2024.1128.0"; 674 + hash = "sha256-iiIBD2MeSMMxw7jn0QBrnD6fu457x9d3jKYe0upxoA4="; 675 + }) 676 + (fetchNuGet { 677 + pname = "ppy.Veldrid"; 678 + version = "4.9.62-gca0239da6b"; 679 + hash = "sha256-mGlMQbp2/ewA7PzamEeMA1pbboC73iAIARhK4MPrwO4="; 680 + }) 681 + (fetchNuGet { 682 + pname = "ppy.Veldrid.MetalBindings"; 683 + version = "4.9.62-gca0239da6b"; 684 + hash = "sha256-8jkbU2QV4HV8RU1vnSNtP8kNEhDWbTb3Dr2cl8w/T6A="; 685 + }) 686 + (fetchNuGet { 687 + pname = "ppy.Veldrid.OpenGLBindings"; 688 + version = "4.9.62-gca0239da6b"; 689 + hash = "sha256-I81to2x5D4LlIJN80d5DbqcU0jPTVSPoc0tvL15YG6I="; 690 + }) 691 + (fetchNuGet { 692 + pname = "ppy.Veldrid.SPIRV"; 693 + version = "1.0.15-gfbb03d21c2"; 694 + hash = "sha256-rnl6+U4E3BJVYTWtEjOx7fDVcJJNBP8MOisoGVLT7vA="; 695 + }) 696 + (fetchNuGet { 697 + pname = "ppy.Vk"; 698 + version = "1.0.26"; 699 + hash = "sha256-YA+U8RhOrGdtw3tlluiv1+M7FIMB0zQMnPVY8ynOxvE="; 700 + }) 701 + (fetchNuGet { 702 + pname = "Realm"; 703 + version = "11.5.0"; 704 + hash = "sha256-ykC2fyOh4XeRJyLoO3jQQC4sZcFhSms7wswSO6Iu8mQ="; 705 + }) 706 + (fetchNuGet { 707 + pname = "Realm.PlatformHelpers"; 708 + version = "11.5.0"; 709 + hash = "sha256-6QUO6jQC3VwxKsNY24WSgLNtOwcaGjQDtP0S4DSt670="; 710 + }) 711 + (fetchNuGet { 712 + pname = "Remotion.Linq"; 713 + version = "2.2.0"; 714 + hash = "sha256-rpPp2xyHj2JsTy6k3FAhljvl85PNa3R9jrVy3UG0hvg="; 715 + }) 716 + (fetchNuGet { 717 + pname = "runtime.any.System.Collections"; 718 + version = "4.3.0"; 719 + hash = "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8="; 720 + }) 721 + (fetchNuGet { 722 + pname = "runtime.any.System.Diagnostics.Tools"; 723 + version = "4.3.0"; 724 + hash = "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I="; 725 + }) 726 + (fetchNuGet { 727 + pname = "runtime.any.System.Diagnostics.Tracing"; 728 + version = "4.3.0"; 729 + hash = "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI="; 730 + }) 731 + (fetchNuGet { 732 + pname = "runtime.any.System.Globalization"; 733 + version = "4.3.0"; 734 + hash = "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU="; 735 + }) 736 + (fetchNuGet { 737 + pname = "runtime.any.System.Globalization.Calendars"; 738 + version = "4.3.0"; 739 + hash = "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4="; 740 + }) 741 + (fetchNuGet { 742 + pname = "runtime.any.System.IO"; 743 + version = "4.3.0"; 744 + hash = "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE="; 745 + }) 746 + (fetchNuGet { 747 + pname = "runtime.any.System.Reflection"; 748 + version = "4.3.0"; 749 + hash = "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk="; 750 + }) 751 + (fetchNuGet { 752 + pname = "runtime.any.System.Reflection.Extensions"; 753 + version = "4.3.0"; 754 + hash = "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8="; 755 + }) 756 + (fetchNuGet { 757 + pname = "runtime.any.System.Reflection.Primitives"; 758 + version = "4.3.0"; 759 + hash = "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ="; 760 + }) 761 + (fetchNuGet { 762 + pname = "runtime.any.System.Resources.ResourceManager"; 763 + version = "4.3.0"; 764 + hash = "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4="; 765 + }) 766 + (fetchNuGet { 767 + pname = "runtime.any.System.Runtime"; 768 + version = "4.3.0"; 769 + hash = "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM="; 770 + }) 771 + (fetchNuGet { 772 + pname = "runtime.any.System.Runtime.Handles"; 773 + version = "4.3.0"; 774 + hash = "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4="; 775 + }) 776 + (fetchNuGet { 777 + pname = "runtime.any.System.Runtime.InteropServices"; 778 + version = "4.3.0"; 779 + hash = "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA="; 780 + }) 781 + (fetchNuGet { 782 + pname = "runtime.any.System.Text.Encoding"; 783 + version = "4.3.0"; 784 + hash = "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs="; 785 + }) 786 + (fetchNuGet { 787 + pname = "runtime.any.System.Text.Encoding.Extensions"; 788 + version = "4.3.0"; 789 + hash = "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM="; 790 + }) 791 + (fetchNuGet { 792 + pname = "runtime.any.System.Threading.Tasks"; 793 + version = "4.3.0"; 794 + hash = "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4="; 795 + }) 796 + (fetchNuGet { 797 + pname = "runtime.any.System.Threading.Timer"; 798 + version = "4.3.0"; 799 + hash = "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs="; 800 + }) 801 + (fetchNuGet { 802 + pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 803 + version = "4.3.0"; 804 + hash = "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps="; 805 + }) 806 + (fetchNuGet { 807 + pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 808 + version = "4.3.0"; 809 + hash = "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I="; 810 + }) 811 + (fetchNuGet { 812 + pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 813 + version = "4.3.0"; 814 + hash = "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA="; 815 + }) 816 + (fetchNuGet { 817 + pname = "runtime.native.System"; 818 + version = "4.0.0"; 819 + hash = "sha256-bmaM0ovT4X4aqDJOR255Yda/u3fmHZskU++lMnsy894="; 820 + }) 821 + (fetchNuGet { 822 + pname = "runtime.native.System"; 823 + version = "4.3.0"; 824 + hash = "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y="; 825 + }) 826 + (fetchNuGet { 827 + pname = "runtime.native.System.IO.Compression"; 828 + version = "4.3.0"; 829 + hash = "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8="; 830 + }) 831 + (fetchNuGet { 832 + pname = "runtime.native.System.Net.Http"; 833 + version = "4.3.0"; 834 + hash = "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg="; 835 + }) 836 + (fetchNuGet { 837 + pname = "runtime.native.System.Net.Security"; 838 + version = "4.3.0"; 839 + hash = "sha256-I8vYld/7WtU2/rrD4XfSRgpO/DY3qXghG14VQjiU2DY="; 840 + }) 841 + (fetchNuGet { 842 + pname = "runtime.native.System.Security.Cryptography.Apple"; 843 + version = "4.3.0"; 844 + hash = "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw="; 845 + }) 846 + (fetchNuGet { 847 + pname = "runtime.native.System.Security.Cryptography.OpenSsl"; 848 + version = "4.3.0"; 849 + hash = "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I="; 850 + }) 851 + (fetchNuGet { 852 + pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 853 + version = "4.3.0"; 854 + hash = "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM="; 855 + }) 856 + (fetchNuGet { 857 + pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 858 + version = "4.3.0"; 859 + hash = "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4="; 860 + }) 861 + (fetchNuGet { 862 + pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; 863 + version = "4.3.0"; 864 + hash = "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM="; 865 + }) 866 + (fetchNuGet { 867 + pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 868 + version = "4.3.0"; 869 + hash = "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0="; 870 + }) 871 + (fetchNuGet { 872 + pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 873 + version = "4.3.0"; 874 + hash = "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4="; 875 + }) 876 + (fetchNuGet { 877 + pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 878 + version = "4.3.0"; 879 + hash = "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g="; 880 + }) 881 + (fetchNuGet { 882 + pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 883 + version = "4.3.0"; 884 + hash = "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc="; 885 + }) 886 + (fetchNuGet { 887 + pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; 888 + version = "4.3.0"; 889 + hash = "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw="; 890 + }) 891 + (fetchNuGet { 892 + pname = "runtime.unix.Microsoft.Win32.Primitives"; 893 + version = "4.3.0"; 894 + hash = "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg="; 895 + }) 896 + (fetchNuGet { 897 + pname = "runtime.unix.System.Console"; 898 + version = "4.3.0"; 899 + hash = "sha256-AHkdKShTRHttqfMjmi+lPpTuCrM5vd/WRy6Kbtie190="; 900 + }) 901 + (fetchNuGet { 902 + pname = "runtime.unix.System.Diagnostics.Debug"; 903 + version = "4.3.0"; 904 + hash = "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI="; 905 + }) 906 + (fetchNuGet { 907 + pname = "runtime.unix.System.IO.FileSystem"; 908 + version = "4.3.0"; 909 + hash = "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I="; 910 + }) 911 + (fetchNuGet { 912 + pname = "runtime.unix.System.Net.Primitives"; 913 + version = "4.3.0"; 914 + hash = "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0="; 915 + }) 916 + (fetchNuGet { 917 + pname = "runtime.unix.System.Net.Sockets"; 918 + version = "4.3.0"; 919 + hash = "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4="; 920 + }) 921 + (fetchNuGet { 922 + pname = "runtime.unix.System.Private.Uri"; 923 + version = "4.3.0"; 924 + hash = "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs="; 925 + }) 926 + (fetchNuGet { 927 + pname = "runtime.unix.System.Runtime.Extensions"; 928 + version = "4.3.0"; 929 + hash = "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4="; 930 + }) 931 + (fetchNuGet { 932 + pname = "Sentry"; 933 + version = "4.13.0"; 934 + hash = "sha256-JeyxQFOic72eQ41Guy4NbPy/A4wXvA812229vpLcLCM="; 935 + }) 936 + (fetchNuGet { 937 + pname = "SharpCompress"; 938 + version = "0.38.0"; 939 + hash = "sha256-bQL3kazuqbuqn+Csy9RYMMUsNMtqkGXF7x32s787UBM="; 940 + }) 941 + (fetchNuGet { 942 + pname = "SharpFNT"; 943 + version = "2.0.0"; 944 + hash = "sha256-oNeQKFY4LcTdc3s78WxzODYNylrZmSg3BpMtmOBj6q0="; 945 + }) 946 + (fetchNuGet { 947 + pname = "SharpGen.Runtime"; 948 + version = "2.0.0-beta.13"; 949 + hash = "sha256-CB4681QJaYoL3MCFn4SwgCWxtFf7T/oZQQ6+pLT5oIg="; 950 + }) 951 + (fetchNuGet { 952 + pname = "SharpGen.Runtime.COM"; 953 + version = "2.0.0-beta.13"; 954 + hash = "sha256-xoQQrf8RIeNwx4aZjXDECd2ROZCj3SFk8q+eJ64cu9I="; 955 + }) 956 + (fetchNuGet { 957 + pname = "SixLabors.ImageSharp"; 958 + version = "3.1.5"; 959 + hash = "sha256-3UehX9T+I81nfgv2dTHlpoPgYzXFk7kHr1mmlQOCBfw="; 960 + }) 961 + (fetchNuGet { 962 + pname = "SQLitePCLRaw.bundle_e_sqlite3"; 963 + version = "2.1.10"; 964 + hash = "sha256-kZIWjH/TVTXRIsHPZSl7zoC4KAMBMWmgFYGLrQ15Occ="; 965 + }) 966 + (fetchNuGet { 967 + pname = "SQLitePCLRaw.core"; 968 + version = "2.1.10"; 969 + hash = "sha256-gpZcYwiJVCVwCyJu0R6hYxyMB39VhJDmYh9LxcIVAA8="; 970 + }) 971 + (fetchNuGet { 972 + pname = "SQLitePCLRaw.core"; 973 + version = "2.1.6"; 974 + hash = "sha256-RxWjm52PdmMV98dgDy0BCpF988+BssRZUgALLv7TH/E="; 975 + }) 976 + (fetchNuGet { 977 + pname = "SQLitePCLRaw.lib.e_sqlite3"; 978 + version = "2.1.10"; 979 + hash = "sha256-m2v2RQWol+1MNGZsx+G2N++T9BNtQGLLHXUjcwkdCnc="; 980 + }) 981 + (fetchNuGet { 982 + pname = "SQLitePCLRaw.provider.e_sqlite3"; 983 + version = "2.1.10"; 984 + hash = "sha256-MLs3jiETLZ7k/TgkHynZegCWuAbgHaDQKTPB0iNv7Fg="; 985 + }) 986 + (fetchNuGet { 987 + pname = "StbiSharp"; 988 + version = "1.1.0"; 989 + hash = "sha256-oP64y/hYgoYo+heDFzmt6sWukTF0lDDFkB16eyoQfHE="; 990 + }) 991 + (fetchNuGet { 992 + pname = "System.AppContext"; 993 + version = "4.1.0"; 994 + hash = "sha256-v6YfyfrKmhww+EYHUq6cwYUMj00MQ6SOfJtcGVRlYzs="; 995 + }) 996 + (fetchNuGet { 997 + pname = "System.AppContext"; 998 + version = "4.3.0"; 999 + hash = "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg="; 1000 + }) 1001 + (fetchNuGet { 1002 + pname = "System.Buffers"; 1003 + version = "4.3.0"; 1004 + hash = "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk="; 1005 + }) 1006 + (fetchNuGet { 1007 + pname = "System.Buffers"; 1008 + version = "4.5.1"; 1009 + hash = "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI="; 1010 + }) 1011 + (fetchNuGet { 1012 + pname = "System.Collections"; 1013 + version = "4.0.11"; 1014 + hash = "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0="; 1015 + }) 1016 + (fetchNuGet { 1017 + pname = "System.Collections"; 1018 + version = "4.3.0"; 1019 + hash = "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc="; 1020 + }) 1021 + (fetchNuGet { 1022 + pname = "System.Collections.Concurrent"; 1023 + version = "4.3.0"; 1024 + hash = "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI="; 1025 + }) 1026 + (fetchNuGet { 1027 + pname = "System.Collections.Immutable"; 1028 + version = "1.7.1"; 1029 + hash = "sha256-WMMAUqoxT3J1gW9DI8v31VAuhwqTc4Posose5jq1BNo="; 1030 + }) 1031 + (fetchNuGet { 1032 + pname = "System.ComponentModel.Annotations"; 1033 + version = "5.0.0"; 1034 + hash = "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg="; 1035 + }) 1036 + (fetchNuGet { 1037 + pname = "System.Console"; 1038 + version = "4.3.0"; 1039 + hash = "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo="; 1040 + }) 1041 + (fetchNuGet { 1042 + pname = "System.Diagnostics.Debug"; 1043 + version = "4.0.11"; 1044 + hash = "sha256-P+rSQJVoN6M56jQbs76kZ9G3mAWFdtF27P/RijN8sj4="; 1045 + }) 1046 + (fetchNuGet { 1047 + pname = "System.Diagnostics.Debug"; 1048 + version = "4.3.0"; 1049 + hash = "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM="; 1050 + }) 1051 + (fetchNuGet { 1052 + pname = "System.Diagnostics.DiagnosticSource"; 1053 + version = "4.3.0"; 1054 + hash = "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw="; 1055 + }) 1056 + (fetchNuGet { 1057 + pname = "System.Diagnostics.Tools"; 1058 + version = "4.3.0"; 1059 + hash = "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y="; 1060 + }) 1061 + (fetchNuGet { 1062 + pname = "System.Diagnostics.Tracing"; 1063 + version = "4.3.0"; 1064 + hash = "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q="; 1065 + }) 1066 + (fetchNuGet { 1067 + pname = "System.Dynamic.Runtime"; 1068 + version = "4.0.11"; 1069 + hash = "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4="; 1070 + }) 1071 + (fetchNuGet { 1072 + pname = "System.Dynamic.Runtime"; 1073 + version = "4.3.0"; 1074 + hash = "sha256-k75gjOYimIQtLBD5NDzwwi3ZMUBPRW3jmc3evDMMJbU="; 1075 + }) 1076 + (fetchNuGet { 1077 + pname = "System.Globalization"; 1078 + version = "4.0.11"; 1079 + hash = "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw="; 1080 + }) 1081 + (fetchNuGet { 1082 + pname = "System.Globalization"; 1083 + version = "4.3.0"; 1084 + hash = "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI="; 1085 + }) 1086 + (fetchNuGet { 1087 + pname = "System.Globalization.Calendars"; 1088 + version = "4.3.0"; 1089 + hash = "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc="; 1090 + }) 1091 + (fetchNuGet { 1092 + pname = "System.Globalization.Extensions"; 1093 + version = "4.3.0"; 1094 + hash = "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk="; 1095 + }) 1096 + (fetchNuGet { 1097 + pname = "System.IO"; 1098 + version = "4.1.0"; 1099 + hash = "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw="; 1100 + }) 1101 + (fetchNuGet { 1102 + pname = "System.IO"; 1103 + version = "4.3.0"; 1104 + hash = "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY="; 1105 + }) 1106 + (fetchNuGet { 1107 + pname = "System.IO.Compression"; 1108 + version = "4.3.0"; 1109 + hash = "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA="; 1110 + }) 1111 + (fetchNuGet { 1112 + pname = "System.IO.Compression.ZipFile"; 1113 + version = "4.3.0"; 1114 + hash = "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs="; 1115 + }) 1116 + (fetchNuGet { 1117 + pname = "System.IO.FileSystem"; 1118 + version = "4.0.1"; 1119 + hash = "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0="; 1120 + }) 1121 + (fetchNuGet { 1122 + pname = "System.IO.FileSystem"; 1123 + version = "4.3.0"; 1124 + hash = "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw="; 1125 + }) 1126 + (fetchNuGet { 1127 + pname = "System.IO.FileSystem.Primitives"; 1128 + version = "4.3.0"; 1129 + hash = "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg="; 1130 + }) 1131 + (fetchNuGet { 1132 + pname = "System.IO.Packaging"; 1133 + version = "8.0.1"; 1134 + hash = "sha256-xf0BAfqQvITompBsvfpxiLts/6sRQEzdjNA3f/q/vY4="; 1135 + }) 1136 + (fetchNuGet { 1137 + pname = "System.IO.Pipelines"; 1138 + version = "8.0.0"; 1139 + hash = "sha256-LdpB1s4vQzsOODaxiKstLks57X9DTD5D6cPx8DE1wwE="; 1140 + }) 1141 + (fetchNuGet { 1142 + pname = "System.Linq"; 1143 + version = "4.1.0"; 1144 + hash = "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794="; 1145 + }) 1146 + (fetchNuGet { 1147 + pname = "System.Linq"; 1148 + version = "4.3.0"; 1149 + hash = "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A="; 1150 + }) 1151 + (fetchNuGet { 1152 + pname = "System.Linq.Expressions"; 1153 + version = "4.1.0"; 1154 + hash = "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4="; 1155 + }) 1156 + (fetchNuGet { 1157 + pname = "System.Linq.Expressions"; 1158 + version = "4.3.0"; 1159 + hash = "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8="; 1160 + }) 1161 + (fetchNuGet { 1162 + pname = "System.Linq.Queryable"; 1163 + version = "4.0.1"; 1164 + hash = "sha256-XOFRO+lyoxsWtIUJfg5JCqv9Gx35ASOc94WIR8ZMVoY="; 1165 + }) 1166 + (fetchNuGet { 1167 + pname = "System.Memory"; 1168 + version = "4.5.3"; 1169 + hash = "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk="; 1170 + }) 1171 + (fetchNuGet { 1172 + pname = "System.Memory"; 1173 + version = "4.5.4"; 1174 + hash = "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E="; 1175 + }) 1176 + (fetchNuGet { 1177 + pname = "System.Memory"; 1178 + version = "4.5.5"; 1179 + hash = "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI="; 1180 + }) 1181 + (fetchNuGet { 1182 + pname = "System.Net.Http"; 1183 + version = "4.3.0"; 1184 + hash = "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q="; 1185 + }) 1186 + (fetchNuGet { 1187 + pname = "System.Net.NameResolution"; 1188 + version = "4.3.0"; 1189 + hash = "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c="; 1190 + }) 1191 + (fetchNuGet { 1192 + pname = "System.Net.Primitives"; 1193 + version = "4.3.0"; 1194 + hash = "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE="; 1195 + }) 1196 + (fetchNuGet { 1197 + pname = "System.Net.Security"; 1198 + version = "4.3.0"; 1199 + hash = "sha256-B7laE1z1+ldbo6JkjlDjZynG5JiMZ/3uNHPHMP6LRak="; 1200 + }) 1201 + (fetchNuGet { 1202 + pname = "System.Net.Sockets"; 1203 + version = "4.3.0"; 1204 + hash = "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus="; 1205 + }) 1206 + (fetchNuGet { 1207 + pname = "System.Net.WebHeaderCollection"; 1208 + version = "4.3.0"; 1209 + hash = "sha256-wpRP3D/2YjpFmqU7Q42L/+/hChEVMlwU1sjysGVrQ1c="; 1210 + }) 1211 + (fetchNuGet { 1212 + pname = "System.Net.WebSockets"; 1213 + version = "4.3.0"; 1214 + hash = "sha256-l3h3cF1cCC9zMhWLKSDnZBZvFADUd0Afe2+iAwBA0r0="; 1215 + }) 1216 + (fetchNuGet { 1217 + pname = "System.Net.WebSockets.Client"; 1218 + version = "4.3.2"; 1219 + hash = "sha256-MwNKwIIpBJhC4Na6EYWMmVyPCa064Yp1aL0opx1FfoA="; 1220 + }) 1221 + (fetchNuGet { 1222 + pname = "System.Numerics.Tensors"; 1223 + version = "8.0.0"; 1224 + hash = "sha256-rXTD0dhqJyk5oK54MIdsq3qJ1NbeTByxyrdHq2thv0w="; 1225 + }) 1226 + (fetchNuGet { 1227 + pname = "System.ObjectModel"; 1228 + version = "4.0.12"; 1229 + hash = "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s="; 1230 + }) 1231 + (fetchNuGet { 1232 + pname = "System.ObjectModel"; 1233 + version = "4.3.0"; 1234 + hash = "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q="; 1235 + }) 1236 + (fetchNuGet { 1237 + pname = "System.Private.Uri"; 1238 + version = "4.3.0"; 1239 + hash = "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM="; 1240 + }) 1241 + (fetchNuGet { 1242 + pname = "System.Reflection"; 1243 + version = "4.1.0"; 1244 + hash = "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs="; 1245 + }) 1246 + (fetchNuGet { 1247 + pname = "System.Reflection"; 1248 + version = "4.3.0"; 1249 + hash = "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY="; 1250 + }) 1251 + (fetchNuGet { 1252 + pname = "System.Reflection.Emit"; 1253 + version = "4.0.1"; 1254 + hash = "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk="; 1255 + }) 1256 + (fetchNuGet { 1257 + pname = "System.Reflection.Emit"; 1258 + version = "4.3.0"; 1259 + hash = "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU="; 1260 + }) 1261 + (fetchNuGet { 1262 + pname = "System.Reflection.Emit.ILGeneration"; 1263 + version = "4.0.1"; 1264 + hash = "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0="; 1265 + }) 1266 + (fetchNuGet { 1267 + pname = "System.Reflection.Emit.ILGeneration"; 1268 + version = "4.3.0"; 1269 + hash = "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA="; 1270 + }) 1271 + (fetchNuGet { 1272 + pname = "System.Reflection.Emit.Lightweight"; 1273 + version = "4.0.1"; 1274 + hash = "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g="; 1275 + }) 1276 + (fetchNuGet { 1277 + pname = "System.Reflection.Emit.Lightweight"; 1278 + version = "4.3.0"; 1279 + hash = "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I="; 1280 + }) 1281 + (fetchNuGet { 1282 + pname = "System.Reflection.Extensions"; 1283 + version = "4.0.1"; 1284 + hash = "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ="; 1285 + }) 1286 + (fetchNuGet { 1287 + pname = "System.Reflection.Extensions"; 1288 + version = "4.3.0"; 1289 + hash = "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk="; 1290 + }) 1291 + (fetchNuGet { 1292 + pname = "System.Reflection.Metadata"; 1293 + version = "1.8.1"; 1294 + hash = "sha256-UpaoRYSGqMCk00NmMbCTYsqwMKJbEI8vg0TxlOqgvZ8="; 1295 + }) 1296 + (fetchNuGet { 1297 + pname = "System.Reflection.Primitives"; 1298 + version = "4.0.1"; 1299 + hash = "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0="; 1300 + }) 1301 + (fetchNuGet { 1302 + pname = "System.Reflection.Primitives"; 1303 + version = "4.3.0"; 1304 + hash = "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM="; 1305 + }) 1306 + (fetchNuGet { 1307 + pname = "System.Reflection.TypeExtensions"; 1308 + version = "4.1.0"; 1309 + hash = "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4="; 1310 + }) 1311 + (fetchNuGet { 1312 + pname = "System.Reflection.TypeExtensions"; 1313 + version = "4.3.0"; 1314 + hash = "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng="; 1315 + }) 1316 + (fetchNuGet { 1317 + pname = "System.Resources.ResourceManager"; 1318 + version = "4.0.1"; 1319 + hash = "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw="; 1320 + }) 1321 + (fetchNuGet { 1322 + pname = "System.Resources.ResourceManager"; 1323 + version = "4.3.0"; 1324 + hash = "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo="; 1325 + }) 1326 + (fetchNuGet { 1327 + pname = "System.Runtime"; 1328 + version = "4.1.0"; 1329 + hash = "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo="; 1330 + }) 1331 + (fetchNuGet { 1332 + pname = "System.Runtime"; 1333 + version = "4.3.0"; 1334 + hash = "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg="; 1335 + }) 1336 + (fetchNuGet { 1337 + pname = "System.Runtime.CompilerServices.Unsafe"; 1338 + version = "4.7.1"; 1339 + hash = "sha256-UvyoDV8O0oY3HPG1GbA56YVdvwTGEfjYR5gW1O7IK4U="; 1340 + }) 1341 + (fetchNuGet { 1342 + pname = "System.Runtime.CompilerServices.Unsafe"; 1343 + version = "6.0.0"; 1344 + hash = "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I="; 1345 + }) 1346 + (fetchNuGet { 1347 + pname = "System.Runtime.CompilerServices.Unsafe"; 1348 + version = "6.0.0-rc.1.21451.13"; 1349 + hash = "sha256-BgiqR6Y555tJEBEqDT5+yHCyQy5Wv9bLKlKWcQFiq2w="; 1350 + }) 1351 + (fetchNuGet { 1352 + pname = "System.Runtime.Extensions"; 1353 + version = "4.1.0"; 1354 + hash = "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc="; 1355 + }) 1356 + (fetchNuGet { 1357 + pname = "System.Runtime.Extensions"; 1358 + version = "4.3.0"; 1359 + hash = "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o="; 1360 + }) 1361 + (fetchNuGet { 1362 + pname = "System.Runtime.Handles"; 1363 + version = "4.3.0"; 1364 + hash = "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms="; 1365 + }) 1366 + (fetchNuGet { 1367 + pname = "System.Runtime.InteropServices"; 1368 + version = "4.3.0"; 1369 + hash = "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI="; 1370 + }) 1371 + (fetchNuGet { 1372 + pname = "System.Runtime.InteropServices.RuntimeInformation"; 1373 + version = "4.0.0"; 1374 + hash = "sha256-5j53amb76A3SPiE3B0llT2XPx058+CgE7OXL4bLalT4="; 1375 + }) 1376 + (fetchNuGet { 1377 + pname = "System.Runtime.InteropServices.RuntimeInformation"; 1378 + version = "4.3.0"; 1379 + hash = "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA="; 1380 + }) 1381 + (fetchNuGet { 1382 + pname = "System.Runtime.Numerics"; 1383 + version = "4.3.0"; 1384 + hash = "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc="; 1385 + }) 1386 + (fetchNuGet { 1387 + pname = "System.Security.AccessControl"; 1388 + version = "4.5.0"; 1389 + hash = "sha256-AFsKPb/nTk2/mqH/PYpaoI8PLsiKKimaXf+7Mb5VfPM="; 1390 + }) 1391 + (fetchNuGet { 1392 + pname = "System.Security.AccessControl"; 1393 + version = "5.0.0"; 1394 + hash = "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54="; 1395 + }) 1396 + (fetchNuGet { 1397 + pname = "System.Security.Claims"; 1398 + version = "4.3.0"; 1399 + hash = "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks="; 1400 + }) 1401 + (fetchNuGet { 1402 + pname = "System.Security.Cryptography.Algorithms"; 1403 + version = "4.3.0"; 1404 + hash = "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8="; 1405 + }) 1406 + (fetchNuGet { 1407 + pname = "System.Security.Cryptography.Cng"; 1408 + version = "4.3.0"; 1409 + hash = "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw="; 1410 + }) 1411 + (fetchNuGet { 1412 + pname = "System.Security.Cryptography.Csp"; 1413 + version = "4.3.0"; 1414 + hash = "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ="; 1415 + }) 1416 + (fetchNuGet { 1417 + pname = "System.Security.Cryptography.Encoding"; 1418 + version = "4.3.0"; 1419 + hash = "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss="; 1420 + }) 1421 + (fetchNuGet { 1422 + pname = "System.Security.Cryptography.OpenSsl"; 1423 + version = "4.3.0"; 1424 + hash = "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4="; 1425 + }) 1426 + (fetchNuGet { 1427 + pname = "System.Security.Cryptography.Primitives"; 1428 + version = "4.3.0"; 1429 + hash = "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318="; 1430 + }) 1431 + (fetchNuGet { 1432 + pname = "System.Security.Cryptography.X509Certificates"; 1433 + version = "4.3.0"; 1434 + hash = "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0="; 1435 + }) 1436 + (fetchNuGet { 1437 + pname = "System.Security.Principal"; 1438 + version = "4.3.0"; 1439 + hash = "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk="; 1440 + }) 1441 + (fetchNuGet { 1442 + pname = "System.Security.Principal.Windows"; 1443 + version = "4.3.0"; 1444 + hash = "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE="; 1445 + }) 1446 + (fetchNuGet { 1447 + pname = "System.Security.Principal.Windows"; 1448 + version = "4.5.0"; 1449 + hash = "sha256-BkUYNguz0e4NJp1kkW7aJBn3dyH9STwB5N8XqnlCsmY="; 1450 + }) 1451 + (fetchNuGet { 1452 + pname = "System.Security.Principal.Windows"; 1453 + version = "5.0.0"; 1454 + hash = "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y="; 1455 + }) 1456 + (fetchNuGet { 1457 + pname = "System.Text.Encoding"; 1458 + version = "4.0.11"; 1459 + hash = "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc="; 1460 + }) 1461 + (fetchNuGet { 1462 + pname = "System.Text.Encoding"; 1463 + version = "4.3.0"; 1464 + hash = "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg="; 1465 + }) 1466 + (fetchNuGet { 1467 + pname = "System.Text.Encoding.Extensions"; 1468 + version = "4.3.0"; 1469 + hash = "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc="; 1470 + }) 1471 + (fetchNuGet { 1472 + pname = "System.Text.RegularExpressions"; 1473 + version = "4.3.0"; 1474 + hash = "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0="; 1475 + }) 1476 + (fetchNuGet { 1477 + pname = "System.Threading"; 1478 + version = "4.0.11"; 1479 + hash = "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac="; 1480 + }) 1481 + (fetchNuGet { 1482 + pname = "System.Threading"; 1483 + version = "4.3.0"; 1484 + hash = "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc="; 1485 + }) 1486 + (fetchNuGet { 1487 + pname = "System.Threading.Channels"; 1488 + version = "6.0.0"; 1489 + hash = "sha256-klGYnsyrjvXaGeqgfnMf/dTAMNtcHY+zM4Xh6v2JfuE="; 1490 + }) 1491 + (fetchNuGet { 1492 + pname = "System.Threading.Channels"; 1493 + version = "8.0.0"; 1494 + hash = "sha256-c5TYoLNXDLroLIPnlfyMHk7nZ70QAckc/c7V199YChg="; 1495 + }) 1496 + (fetchNuGet { 1497 + pname = "System.Threading.Tasks"; 1498 + version = "4.0.11"; 1499 + hash = "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs="; 1500 + }) 1501 + (fetchNuGet { 1502 + pname = "System.Threading.Tasks"; 1503 + version = "4.3.0"; 1504 + hash = "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w="; 1505 + }) 1506 + (fetchNuGet { 1507 + pname = "System.Threading.Tasks.Extensions"; 1508 + version = "4.3.0"; 1509 + hash = "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc="; 1510 + }) 1511 + (fetchNuGet { 1512 + pname = "System.Threading.ThreadPool"; 1513 + version = "4.3.0"; 1514 + hash = "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg="; 1515 + }) 1516 + (fetchNuGet { 1517 + pname = "System.Threading.Timer"; 1518 + version = "4.3.0"; 1519 + hash = "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s="; 1520 + }) 1521 + (fetchNuGet { 1522 + pname = "System.Xml.ReaderWriter"; 1523 + version = "4.3.0"; 1524 + hash = "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA="; 1525 + }) 1526 + (fetchNuGet { 1527 + pname = "System.Xml.XDocument"; 1528 + version = "4.3.0"; 1529 + hash = "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI="; 1530 + }) 1531 + (fetchNuGet { 1532 + pname = "TagLibSharp"; 1533 + version = "2.3.0"; 1534 + hash = "sha256-PD9bVZiPaeC8hNx2D+uDUf701cCaMi2IRi5oPTNN+/w="; 1535 + }) 1536 + (fetchNuGet { 1537 + pname = "Velopack"; 1538 + version = "0.0.915"; 1539 + hash = "sha256-L31qPk7/MLexF+5FP4gdNfwAWB6kNlvMFL2nfkQBSQU="; 1540 + }) 1541 + (fetchNuGet { 1542 + pname = "Vortice.D3DCompiler"; 1543 + version = "2.4.2"; 1544 + hash = "sha256-LXdgts8lKbTU67c1W001XRbq5nenzf8XcYCRxc75jR8="; 1545 + }) 1546 + (fetchNuGet { 1547 + pname = "Vortice.Direct3D11"; 1548 + version = "2.4.2"; 1549 + hash = "sha256-hU4qzLKhv4QxiP2c9s4IZUGgeQxsOjRhgurrlXXq/qM="; 1550 + }) 1551 + (fetchNuGet { 1552 + pname = "Vortice.DirectX"; 1553 + version = "2.4.2"; 1554 + hash = "sha256-LOIxdET0ynaJz70fakVwDYU0qm+1P0SfD1+I9P320oc="; 1555 + }) 1556 + (fetchNuGet { 1557 + pname = "Vortice.DXGI"; 1558 + version = "2.4.2"; 1559 + hash = "sha256-/5r4f9iM/wxZLsauQDbq6DoTTdvuuhbcmNgaxVK1ep8="; 1560 + }) 1561 + (fetchNuGet { 1562 + pname = "Vortice.Mathematics"; 1563 + version = "1.4.25"; 1564 + hash = "sha256-Mr/HVvwIeeDJtMNToP6kh2hyqud2zT31913HdhB4hm4="; 1565 + }) 1566 + (fetchNuGet { 1567 + pname = "ZstdSharp.Port"; 1568 + version = "0.8.1"; 1569 + hash = "sha256-PeQvyz3lUrK+t+n1dFtNXCLztQtAfkqUuM6mOqBZHLg="; 1570 + }) 1571 ]
+5 -5
pkgs/by-name/os/osu-lazer/package.nix
··· 21 22 buildDotnetModule rec { 23 pname = "osu-lazer"; 24 - version = "2024.1115.3"; 25 26 src = fetchFromGitHub { 27 owner = "ppy"; 28 repo = "osu"; 29 - rev = version; 30 - hash = "sha256-AZN/zgHV6ydImOd1zUjYqXJqq5o0XGnvNvTTL/mIrHg="; 31 }; 32 33 projectFile = "osu.Desktop/osu.Desktop.csproj"; ··· 74 --set OSU_EXTERNAL_UPDATE_PROVIDER 1 75 76 for i in 16 32 48 64 96 128 256 512 1024; do 77 - install -D ./assets/lazer.png $out/share/icons/hicolor/''${i}x$i/apps/osu!.png 78 done 79 80 ln -sft $out/lib/${pname} ${SDL2}/lib/libSDL2${stdenvNoCC.hostPlatform.extensions.sharedLibrary} ··· 88 desktopName = "osu!"; 89 name = "osu"; 90 exec = "osu!"; 91 - icon = "osu!"; 92 comment = "Rhythm is just a *click* away (no score submission or multiplayer, see osu-lazer-bin)"; 93 type = "Application"; 94 categories = [ "Game" ];
··· 21 22 buildDotnetModule rec { 23 pname = "osu-lazer"; 24 + version = "2024.1208.0"; 25 26 src = fetchFromGitHub { 27 owner = "ppy"; 28 repo = "osu"; 29 + tag = version; 30 + hash = "sha256-cMPVtzoTxIUVZNNAqF+H0873ZsXGluFEXwNDp7zOq8c="; 31 }; 32 33 projectFile = "osu.Desktop/osu.Desktop.csproj"; ··· 74 --set OSU_EXTERNAL_UPDATE_PROVIDER 1 75 76 for i in 16 32 48 64 96 128 256 512 1024; do 77 + install -D ./assets/lazer.png $out/share/icons/hicolor/''${i}x$i/apps/osu.png 78 done 79 80 ln -sft $out/lib/${pname} ${SDL2}/lib/libSDL2${stdenvNoCC.hostPlatform.extensions.sharedLibrary} ··· 88 desktopName = "osu!"; 89 name = "osu"; 90 exec = "osu!"; 91 + icon = "osu"; 92 comment = "Rhythm is just a *click* away (no score submission or multiplayer, see osu-lazer-bin)"; 93 type = "Application"; 94 categories = [ "Game" ];
+3 -3
pkgs/by-name/py/pyflyby/package.nix
··· 4 fetchFromGitHub, 5 }: 6 let 7 - version = "1.9.8"; 8 in 9 python3.pkgs.buildPythonApplication rec { 10 inherit version; ··· 14 src = fetchFromGitHub { 15 owner = "deshaw"; 16 repo = "pyflyby"; 17 - rev = "refs/tags/${version}"; 18 - hash = "sha256-lMOLdPirPrld/DfX7YPdFJ+4K451aATz4vql4z+lLO0="; 19 }; 20 21 build-system = with python3.pkgs; [
··· 4 fetchFromGitHub, 5 }: 6 let 7 + version = "1.9.10"; 8 in 9 python3.pkgs.buildPythonApplication rec { 10 inherit version; ··· 14 src = fetchFromGitHub { 15 owner = "deshaw"; 16 repo = "pyflyby"; 17 + tag = version; 18 + hash = "sha256-Q0Z429DUB0PpPNGajuMQBi4K6cotAC8hXP1bo69O7y8="; 19 }; 20 21 build-system = with python3.pkgs; [
+2 -2
pkgs/by-name/rd/rdma-core/package.nix
··· 16 17 stdenv.mkDerivation (finalAttrs: { 18 pname = "rdma-core"; 19 - version = "54.0"; 20 21 src = fetchFromGitHub { 22 owner = "linux-rdma"; 23 repo = "rdma-core"; 24 rev = "v${finalAttrs.version}"; 25 - hash = "sha256-nxpqF9I8GGni1Tsjw3ATlRl6ZdVKfRMccuGWUb8IAkA="; 26 }; 27 28 strictDeps = true;
··· 16 17 stdenv.mkDerivation (finalAttrs: { 18 pname = "rdma-core"; 19 + version = "55.0"; 20 21 src = fetchFromGitHub { 22 owner = "linux-rdma"; 23 repo = "rdma-core"; 24 rev = "v${finalAttrs.version}"; 25 + hash = "sha256-ZXs0yxwL00Kyp8b516sKslm4yvyQEm/UMtag2a2X+5c="; 26 }; 27 28 strictDeps = true;
+39 -16
pkgs/by-name/s7/s7/package.nix
··· 2 lib, 3 fetchFromGitLab, 4 stdenv, 5 - notcurses, 6 gmp, 7 - mpfr, 8 libmpc, 9 - flint3, 10 unstableGitUpdater, 11 writeScript, 12 }: ··· 33 34 # The following scripts are modified from [Guix's](https://packages.guix.gnu.org/packages/s7/). 35 36 - patchPhase = '' 37 - runHook prePatch 38 - 39 substituteInPlace s7.c \ 40 --replace-fail libc_s7.so $out/lib/libc_s7.so 41 - 42 - runHook postPatch 43 ''; 44 45 buildPhase = '' ··· 78 -O2 -I. \ 79 -ldl -lm 80 81 - cc ffitest.c s7.o -o ffitest \ 82 - -I. \ 83 - -Wl,-export-dynamic \ 84 - -ldl -lm 85 - 86 ./s7-repl libc.scm 87 88 runHook postBuild ··· 99 dst_doc=$out/share/doc/s7 100 mkdir -p $dst_bin $dst_lib $dst_inc $dst_share $dst_scm $dst_doc 101 102 - cp -pr -t $dst_bin s7-repl s7-nrepl 103 ln -s s7-nrepl $dst_bin/s7 104 - cp -pr -t $dst_lib libarb_s7.so libnotcurses_s7.so libc_s7.so 105 cp -pr -t $dst_share s7.c 106 cp -pr -t $dst_inc s7.h 107 cp -pr -t $dst_scm *.scm ··· 112 113 doInstallCheck = true; 114 115 installCheckPhase = '' 116 runHook preInstallCheck 117 118 - $dst_bin/s7-repl s7test.scm 119 120 runHook postInstallCheck 121 '';
··· 2 lib, 3 fetchFromGitLab, 4 stdenv, 5 + 6 + flint3, 7 gmp, 8 libmpc, 9 + mpfr, 10 + notcurses, 11 + 12 + gsl, 13 + man, 14 + pkg-config, 15 + 16 unstableGitUpdater, 17 writeScript, 18 }: ··· 39 40 # The following scripts are modified from [Guix's](https://packages.guix.gnu.org/packages/s7/). 41 42 + postPatch = '' 43 substituteInPlace s7.c \ 44 --replace-fail libc_s7.so $out/lib/libc_s7.so 45 ''; 46 47 buildPhase = '' ··· 80 -O2 -I. \ 81 -ldl -lm 82 83 ./s7-repl libc.scm 84 85 runHook postBuild ··· 96 dst_doc=$out/share/doc/s7 97 mkdir -p $dst_bin $dst_lib $dst_inc $dst_share $dst_scm $dst_doc 98 99 + mv -t $dst_bin s7-repl s7-nrepl 100 ln -s s7-nrepl $dst_bin/s7 101 + mv -t $dst_lib libarb_s7.so libnotcurses_s7.so libc_s7.so 102 cp -pr -t $dst_share s7.c 103 cp -pr -t $dst_inc s7.h 104 cp -pr -t $dst_scm *.scm ··· 109 110 doInstallCheck = true; 111 112 + nativeInstallCheckInputs = [ 113 + man 114 + pkg-config 115 + ]; 116 + 117 + installCheckInputs = [ 118 + gsl 119 + ]; 120 + 121 + /* 122 + XXX: The upstream assumes that `$HOME` is `/home/$USER`, and the source files 123 + lie in `$HOME/cl` . The script presented here uses a fake `$USER` and a 124 + symbolic linked `$HOME/cl` , which make the test suite work but do not meet 125 + the conditions completely. 126 + */ 127 installCheckPhase = '' 128 runHook preInstallCheck 129 130 + cc ffitest.c s7.o -o ffitest \ 131 + -I. \ 132 + -Wl,-export-dynamic \ 133 + -ldl -lm 134 + mv ffitest $dst_bin 135 + mkdir -p nix-build/home 136 + ln -sr . nix-build/home/cl 137 + 138 + USER=nix-s7-builder PATH="$dst_bin:$PATH" HOME=$PWD/nix-build/home \ 139 + s7-repl s7test.scm 140 + 141 + rm $dst_bin/ffitest 142 143 runHook postInstallCheck 144 '';
+2 -2
pkgs/by-name/si/simdutf/package.nix
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "simdutf"; 11 - version = "5.6.3"; 12 13 src = fetchFromGitHub { 14 owner = "simdutf"; 15 repo = "simdutf"; 16 rev = "v${finalAttrs.version}"; 17 - hash = "sha256-V5Z1EZRm5FaNFz1GSgTYD3ONF4CSE594FLa1e/DETms="; 18 }; 19 20 # Fix build on darwin
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "simdutf"; 11 + version = "5.6.4"; 12 13 src = fetchFromGitHub { 14 owner = "simdutf"; 15 repo = "simdutf"; 16 rev = "v${finalAttrs.version}"; 17 + hash = "sha256-5MsNKsqHc4L2hCQW/LuJxKUmye6UV/IUEEMlRRMl2b8="; 18 }; 19 20 # Fix build on darwin
+3 -3
pkgs/by-name/st/starboard/package.nix
··· 7 8 buildGoModule rec { 9 pname = "starboard"; 10 - version = "0.15.22"; 11 12 src = fetchFromGitHub { 13 owner = "aquasecurity"; 14 repo = pname; 15 rev = "v${version}"; 16 - hash = "sha256-s/DU9CKXl0rULuUWCjlqz2KU/07eRNwKdrYHiPwukxM="; 17 # populate values that require us to use git. By doing this in postFetch we 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 leaveDotGit = true; ··· 25 find "$out" -name .git -print0 | xargs -0 rm -rf 26 ''; 27 }; 28 - vendorHash = "sha256-oiuTOU9e2aMZZbCqKKvGaxoYUupgQ0qATD1r3RU8fmw="; 29 30 nativeBuildInputs = [ installShellFiles ]; 31
··· 7 8 buildGoModule rec { 9 pname = "starboard"; 10 + version = "0.15.23"; 11 12 src = fetchFromGitHub { 13 owner = "aquasecurity"; 14 repo = pname; 15 rev = "v${version}"; 16 + hash = "sha256-eBAOrIGlAJ7r9UviCZUELG5p3k08OqvFUGZ8Ovnxsis="; 17 # populate values that require us to use git. By doing this in postFetch we 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 leaveDotGit = true; ··· 25 find "$out" -name .git -print0 | xargs -0 rm -rf 26 ''; 27 }; 28 + vendorHash = "sha256-meZMuo+3Qv95TYYDslMpdfFG0KAbY/tufjcT7HgZB2c="; 29 30 nativeBuildInputs = [ installShellFiles ]; 31
+15
pkgs/by-name/tt/ttaenc/makefile.patch
···
··· 1 + --- a/Makefile 2 + +++ b/Makefile 3 + @@ -8,10 +8,10 @@ 4 + INSDIR = /usr/bin 5 + 6 + ttaenc: $(patsubst %.c, %.o, $(wildcard *.c)) 7 + - gcc $^ -o $@ $(CFLAGS) 8 + + $(CC) $^ -o $@ $(CFLAGS) 9 + 10 + %.o: %.c 11 + - gcc -c $(CFLAGS) $< 12 + + $(CC) -c $(CFLAGS) $< 13 + 14 + install: 15 + [ -d "$(INSDIR)" ] || mkdir $(INSDIR)
+44
pkgs/by-name/tt/ttaenc/package.nix
···
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchurl, 5 + }: 6 + stdenv.mkDerivation (finalAttrs: { 7 + pname = "ttaenc"; 8 + version = "3.4.1"; 9 + 10 + src = fetchurl { 11 + url = "mirror://sourceforge/tta/ttaenc-${finalAttrs.version}-src.tgz"; 12 + sha256 = "sha256-ssnIsBWsxYZPCCoBV/LgnFEX0URTIctheOkltEi+PcY="; 13 + }; 14 + 15 + patches = [ 16 + ./makefile.patch # Use stdenv's CC 17 + ./ttaenc-inline.patch # Patch __inline used into always_inline for both GCC and clang 18 + ]; 19 + 20 + makeFlags = [ "INSDIR=$(out)/bin" ]; 21 + 22 + preBuild = '' 23 + # From the Makefile, with `-msse` removed, since we have those on by x86_64 by default. 24 + makeFlagsArray+=(CFLAGS="-Wall -O2 -fomit-frame-pointer -funroll-loops -fforce-addr -falign-functions=4") 25 + ''; 26 + 27 + postInstall = '' 28 + # Copy docs 29 + install -dm755 "$out/share/doc/${finalAttrs.pname}" 30 + install -m644 "ChangeLog-${finalAttrs.version}" README "$out/share/doc/${finalAttrs.pname}" 31 + ''; 32 + 33 + meta = { 34 + description = "Lossless compressor for multichannel 8, 16 and 24 bits audio data, with the ability of password data protection"; 35 + homepage = "https://sourceforge.net/projects/tta/"; 36 + license = with lib.licenses; [ 37 + gpl3Only 38 + lgpl3Only 39 + ]; 40 + platforms = lib.platforms.unix; 41 + mainProgram = "ttaenc"; 42 + maintainers = with lib.maintainers; [ natsukagami ]; 43 + }; 44 + })
+10
pkgs/by-name/tt/ttaenc/ttaenc-inline.patch
···
··· 1 + --- a/ttaenc.c 2 + +++ b/ttaenc.c 3 + @@ -10,6 +10,7 @@ 4 + */ 5 + 6 + #include "ttaenc.h" 7 + +#define __inline static inline __attribute__((always_inline)) 8 + 9 + /******************* static variables and structures *******************/ 10 +
+3 -3
pkgs/by-name/va/vault-ssh-plus/package.nix
··· 9 }: 10 buildGoModule rec { 11 pname = "vault-ssh-plus"; 12 - version = "0.7.5"; 13 14 src = fetchFromGitHub { 15 owner = "isometry"; 16 repo = pname; 17 rev = "v${version}"; 18 - hash = "sha256-A6kgMQOGtrRf5lSbheyJ41fc5l9VkiPDVDYGHVh9Hic="; 19 }; 20 21 - vendorHash = "sha256-FBOmRXD6dW3B9LRKfCa1kzWmds71ndi9go8Lp7lOJlU="; 22 23 nativeBuildInputs = [ makeWrapper ]; 24
··· 9 }: 10 buildGoModule rec { 11 pname = "vault-ssh-plus"; 12 + version = "0.7.6"; 13 14 src = fetchFromGitHub { 15 owner = "isometry"; 16 repo = pname; 17 rev = "v${version}"; 18 + hash = "sha256-bP1edeJj3BXsXZJn7/71AVMEnHvMi8jB4eNc5cpfxyE="; 19 }; 20 21 + vendorHash = "sha256-Xfan2UykDkmndePiyaHpQ050McAreOq0VmDxAm+2K9A="; 22 23 nativeBuildInputs = [ makeWrapper ]; 24
+54
pkgs/by-name/xc/xcursor-pro/package.nix
···
··· 1 + { 2 + stdenvNoCC, 3 + lib, 4 + fetchurl, 5 + variants ? [ ], 6 + }: 7 + 8 + let 9 + sources = import ./sources.nix; 10 + knownVariants = builtins.attrNames sources; 11 + selectedVariants = 12 + if (variants == [ ]) then 13 + knownVariants 14 + else 15 + let 16 + unknownVariants = lib.subtractLists knownVariants variants; 17 + in 18 + if (unknownVariants != [ ]) then 19 + throw "Unknown variant(s): ${lib.concatStringsSep unknownVariants}" 20 + else 21 + variants; 22 + in 23 + stdenvNoCC.mkDerivation (finalAttrs: { 24 + pname = "xcursor-pro"; 25 + version = "2.0.2"; 26 + srcs = map (variant: fetchurl { inherit (sources.${variant}) url sha256; }) selectedVariants; 27 + 28 + sourceRoot = "."; 29 + 30 + installPhase = '' 31 + runHook preInstall 32 + 33 + for theme in XCursor-Pro-{${lib.concatStringsSep "," selectedVariants}}; do 34 + mkdir -p $out/share/icons/$theme/cursors 35 + cp -a $theme/cursors/* $out/share/icons/$theme/cursors/ 36 + install -m644 $theme/index.theme $out/share/icons/$theme/index.theme 37 + done 38 + 39 + runHook postInstall 40 + ''; 41 + 42 + passthru.updateScript = ./update.sh; 43 + 44 + meta = { 45 + homepage = "https://github.com/ful1e5/XCursor-pro"; 46 + description = "Modern XCursors"; 47 + license = lib.licenses.gpl3; 48 + platforms = lib.platforms.unix; 49 + maintainers = with lib.maintainers; [ 50 + lactose 51 + midirhee12 52 + ]; 53 + }; 54 + })
+15
pkgs/by-name/xc/xcursor-pro/sources.nix
···
··· 1 + { 2 + Dark = { 3 + url = "https://github.com/ful1e5/XCursor-pro/releases/download/v2.0.2/XCursor-Pro-Dark.tar.xz"; 4 + sha256 = "12r7b2wygasl5yk0k5m6b640q4b23k072myzpz8s5jkyvnp3p84n"; 5 + }; 6 + Light = { 7 + url = "https://github.com/ful1e5/XCursor-pro/releases/download/v2.0.2/XCursor-Pro-Light.tar.xz"; 8 + sha256 = "19vddq8ajdxxzl3fnvac7p4lmb2hvyszpl25f5nmpm84xwp1kdla"; 9 + }; 10 + Red = { 11 + url = "https://github.com/ful1e5/XCursor-pro/releases/download/v2.0.2/XCursor-Pro-Red.tar.xz"; 12 + sha256 = "00rhqmcfczy3nvk95rgy22mi6yqpp7ggbxck1z0ay2qv6cfics9m"; 13 + }; 14 + } 15 + # old version was 2.0.1
+36
pkgs/by-name/xc/xcursor-pro/update.sh
···
··· 1 + #!/usr/bin/env nix-shell 2 + #! nix-shell -i bash -p nix-prefetch jq 3 + 4 + latest_release=$(curl --silent https://api.github.com/repos/ful1e5/XCursor-pro/releases/latest) 5 + version=$(jq -r '.tag_name' <<<"$latest_release") 6 + version="${version#*v}" 7 + 8 + dirname="$(dirname "$0")" 9 + if [ "$UPDATE_NIX_OLD_VERSION" = "$version" ]; then 10 + printf 'No new version available, current: %s\n' $version 11 + exit 0 12 + else 13 + printf 'Updated to version %s\n' $version 14 + sed -i "s/version = \"$UPDATE_NIX_OLD_VERSION\"/version = \"$version\"/" "$dirname/package.nix" 15 + fi 16 + 17 + printf '{\n' > "$dirname/sources.nix" 18 + 19 + while 20 + read -r name 21 + read -r url 22 + do 23 + variant="${name#*-*-}" 24 + variant="${variant%%.*}" 25 + 26 + { 27 + printf ' %s = {\n' "$variant" 28 + printf ' url = \"%s\";\n' "$url" 29 + printf ' sha256 = \"%s\";\n' "$(nix-prefetch-url "$url")" 30 + printf ' };\n' 31 + } >> "$dirname/sources.nix" 32 + done < <(jq -r '.assets[] | 33 + select(.name | endswith(".tar.xz") and (contains("all") | not)) | 34 + .name, .browser_download_url' <<<"$latest_release") 35 + 36 + printf '}\n' >> "$dirname/sources.nix"
+3 -3
pkgs/by-name/ya/yaralyzer/package.nix
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "yaralyzer"; 9 - version = "0.9.4"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "michelcrypt4d4mus"; 14 repo = "yaralyzer"; 15 - rev = "refs/tags/v${version}"; 16 - hash = "sha256-rDb09XJOGWNARR0hhQQ91KXWepsLyR2a6/o3jagh6nA="; 17 }; 18 19 pythonRelaxDeps = [
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "yaralyzer"; 9 + version = "0.9.5"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "michelcrypt4d4mus"; 14 repo = "yaralyzer"; 15 + tag = "v${version}"; 16 + hash = "sha256-A9JFUaBG4SwOkYPo/1p1i6mA47PyKiT+ngEYlfYAAE8="; 17 }; 18 19 pythonRelaxDeps = [
+9 -3
pkgs/by-name/ze/zenoh/package.nix
··· 7 }: 8 rustPlatform.buildRustPackage rec { 9 pname = "zenoh"; 10 - version = "1.0.3"; 11 12 src = fetchFromGitHub { 13 owner = "eclipse-zenoh"; 14 repo = "zenoh"; 15 rev = version; 16 - hash = "sha256-3k266sIP3A76HlFGUax4XIVQqwCKSvShJuBIuNWKJ2c="; 17 }; 18 19 - cargoHash = "sha256-Ny7kLFJveibDmi48a5KS0GKumX4RUAkoeh66tx9oR5g="; 20 21 cargoBuildFlags = [ 22 "--workspace" ··· 72 # thread 'openclose_udp_only_connect_with_interface_restriction' panicked at io/zenoh-transport/tests/unicast_openclose.rs:802:63: 73 # index out of bounds: the len is 0 but the index is 0 74 "--skip openclose_udp_only_listen_with_interface_restriction" 75 ]; 76 77 passthru.tests.version = testers.testVersion {
··· 7 }: 8 rustPlatform.buildRustPackage rec { 9 pname = "zenoh"; 10 + version = "1.1.0"; 11 12 src = fetchFromGitHub { 13 owner = "eclipse-zenoh"; 14 repo = "zenoh"; 15 rev = version; 16 + hash = "sha256-Ydmd3eCXn+svMak1I5LU4rJNhzEEc2MiG5MoSMNOJ00="; 17 }; 18 19 + cargoHash = "sha256-AjMgnZ+GJPGMQsyeOQGyXpVrdw2zb7B9/KXWKlvKT1Q="; 20 21 cargoBuildFlags = [ 22 "--workspace" ··· 72 # thread 'openclose_udp_only_connect_with_interface_restriction' panicked at io/zenoh-transport/tests/unicast_openclose.rs:802:63: 73 # index out of bounds: the len is 0 but the index is 0 74 "--skip openclose_udp_only_listen_with_interface_restriction" 75 + 76 + # These tests require a network interface and fail in the sandbox 77 + "--skip openclose_quic_only_listen_with_interface_restriction" 78 + "--skip openclose_quic_only_connect_with_interface_restriction" 79 + "--skip openclose_tls_only_connect_with_interface_restriction" 80 + "--skip openclose_tls_only_listen_with_interface_restriction" 81 ]; 82 83 passthru.tests.version = testers.testVersion {
+2 -2
pkgs/by-name/zm/zmap/package.nix
··· 17 18 stdenv.mkDerivation rec { 19 pname = "zmap"; 20 - version = "4.2.0"; 21 22 src = fetchFromGitHub { 23 owner = "zmap"; 24 repo = pname; 25 rev = "v${version}"; 26 - sha256 = "sha256-4BSHNR/snwLf0/UsiCM8xzXk59G5GtsxQKb1F2VVL9c="; 27 }; 28 29 cmakeFlags = [ "-DRESPECT_INSTALL_PREFIX_CONFIG=ON" ];
··· 17 18 stdenv.mkDerivation rec { 19 pname = "zmap"; 20 + version = "4.3.1"; 21 22 src = fetchFromGitHub { 23 owner = "zmap"; 24 repo = pname; 25 rev = "v${version}"; 26 + sha256 = "sha256-QNOLbIDILwCNYlYrr2mET4K6x1zn8PIoXiqs/Oaj3eY="; 27 }; 28 29 cmakeFlags = [ "-DRESPECT_INSTALL_PREFIX_CONFIG=ON" ];
+4 -1
pkgs/development/compilers/llvm/common/common-let.nix
··· 9 10 rec { 11 llvm_meta = { 12 - license = lib.licenses.ncsa; 13 maintainers = lib.teams.llvm.members; 14 15 # See llvm/cmake/config-ix.cmake.
··· 9 10 rec { 11 llvm_meta = { 12 + license = with lib.licenses; [ ncsa ] ++ 13 + # Contributions after June 1st, 2024 are only licensed under asl20-llvm: 14 + # https://github.com/llvm/llvm-project/pull/92394 15 + lib.optional (lib.versionAtLeast release_version "19") asl20-llvm; 16 maintainers = lib.teams.llvm.members; 17 18 # See llvm/cmake/config-ix.cmake.
+3 -1
pkgs/development/coq-modules/ExtLib/default.nix
··· 1 - { lib, mkCoqDerivation, coq, version ? null }: 2 3 mkCoqDerivation rec { 4 pname = "coq-ext-lib"; ··· 32 release."0.9.5".sha256 = "1b4cvz3llxin130g13calw5n1zmvi6wdd5yb8a41q7yyn2hd3msg"; 33 release."0.9.4".sha256 = "1y66pamgsdxlq2w1338lj626ln70cwj7k53hxcp933g8fdsa4hp0"; 34 releaseRev = v: "v${v}"; 35 36 meta = { 37 description = "Collection of theories and plugins that may be useful in other Coq developments";
··· 1 + { lib, mkCoqDerivation, coq, stdlib, version ? null }: 2 3 mkCoqDerivation rec { 4 pname = "coq-ext-lib"; ··· 32 release."0.9.5".sha256 = "1b4cvz3llxin130g13calw5n1zmvi6wdd5yb8a41q7yyn2hd3msg"; 33 release."0.9.4".sha256 = "1y66pamgsdxlq2w1338lj626ln70cwj7k53hxcp933g8fdsa4hp0"; 34 releaseRev = v: "v${v}"; 35 + 36 + propagatedBuildInputs = [ stdlib ]; 37 38 meta = { 39 description = "Collection of theories and plugins that may be useful in other Coq developments";
+3
pkgs/development/coq-modules/InfSeqExt/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 25 release."20230107".sha256 = "sha256-YMBzVIsLkIC+w2TeyHrKe29eWLIxrH3wIMZqhik8p9I="; 26 release."20200131".rev = "203d4c20211d6b17741f1fdca46dbc091f5e961a"; 27 release."20200131".sha256 = "0xylkdmb2dqnnqinf3pigz4mf4zmczcbpjnn59g5g76m7f2cqxl0"; 28 }
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 26 release."20230107".sha256 = "sha256-YMBzVIsLkIC+w2TeyHrKe29eWLIxrH3wIMZqhik8p9I="; 27 release."20200131".rev = "203d4c20211d6b17741f1fdca46dbc091f5e961a"; 28 release."20200131".sha256 = "0xylkdmb2dqnnqinf3pigz4mf4zmczcbpjnn59g5g76m7f2cqxl0"; 29 + 30 + propagatedBuildInputs = [ stdlib ]; 31 }
+2
pkgs/development/coq-modules/MenhirLib/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 let ··· 32 "20211230".sha256 = "sha256-+ntl4ykkqJWEeJJzt6fO5r0X1J+4in2LJIj1N8R175w="; # coq 8.7 - 8.18 33 "20200624".sha256 = "sha256-8lMqwmOsqxU/45Xr+GeyU2aIjrClVdv3VamCCkF76jY="; # coq 8.7 - 8.13 34 }; 35 preBuild = "cd coq-menhirlib/src"; 36 meta = with lib; { 37 homepage = "https://gitlab.inria.fr/fpottier/menhir/-/tree/master/coq-menhirlib";
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 let ··· 33 "20211230".sha256 = "sha256-+ntl4ykkqJWEeJJzt6fO5r0X1J+4in2LJIj1N8R175w="; # coq 8.7 - 8.18 34 "20200624".sha256 = "sha256-8lMqwmOsqxU/45Xr+GeyU2aIjrClVdv3VamCCkF76jY="; # coq 8.7 - 8.13 35 }; 36 + propagatedBuildInputs = [ stdlib ]; 37 preBuild = "cd coq-menhirlib/src"; 38 meta = with lib; { 39 homepage = "https://gitlab.inria.fr/fpottier/menhir/-/tree/master/coq-menhirlib";
+3
pkgs/development/coq-modules/StructTact/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 31 release."20210328".sha256 = "sha256:1y5r1zm3hli10ah6lnj7n8hxad6rb6rgldd0g7m2fjibzvwqzhdg"; 32 release."20181102".rev = "82a85b7ec07e71fa6b30cfc05f6a7bfb09ef2510"; 33 release."20181102".sha256 = "08zry20flgj7qq37xk32kzmg4fg6d4wi9m7pf9aph8fd3j2a0b5v"; 34 }
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 32 release."20210328".sha256 = "sha256:1y5r1zm3hli10ah6lnj7n8hxad6rb6rgldd0g7m2fjibzvwqzhdg"; 33 release."20181102".rev = "82a85b7ec07e71fa6b30cfc05f6a7bfb09ef2510"; 34 release."20181102".sha256 = "08zry20flgj7qq37xk32kzmg4fg6d4wi9m7pf9aph8fd3j2a0b5v"; 35 + 36 + propagatedBuildInputs = [ stdlib ]; 37 }
+3
pkgs/development/coq-modules/aac-tactics/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 96 ] null; 97 98 mlPlugin = true; 99 100 meta = with lib; { 101 description = "Coq plugin providing tactics for rewriting universally quantified equations";
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 97 ] null; 98 99 mlPlugin = true; 100 + 101 + propagatedBuildInputs = [ stdlib ]; 102 103 meta = with lib; { 104 description = "Coq plugin providing tactics for rewriting universally quantified equations";
+3
pkgs/development/coq-modules/atbr/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 22 "8.20.0".sha256 = "sha256-Okhtq6Gnq4HA3tEZJvf8JBnmk3OKdm6hC1qINmoShmo="; 23 }; 24 releaseRev = v: "v${v}"; 25 26 mlPlugin = true; 27
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 23 "8.20.0".sha256 = "sha256-Okhtq6Gnq4HA3tEZJvf8JBnmk3OKdm6hC1qINmoShmo="; 24 }; 25 releaseRev = v: "v${v}"; 26 + 27 + propagatedBuildInputs = [ stdlib ]; 28 29 mlPlugin = true; 30
+3
pkgs/development/coq-modules/bbv/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 23 "1.5".sha256 = "sha256-8/VPsfhNpuYpLmLC/hWszDhgvS6n8m7BRxUlea8PSUw="; 24 }; 25 releaseRev = v: "v${v}"; 26 27 meta = { 28 description = "An implementation of bitvectors in Coq.";
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 24 "1.5".sha256 = "sha256-8/VPsfhNpuYpLmLC/hWszDhgvS6n8m7BRxUlea8PSUw="; 25 }; 26 releaseRev = v: "v${v}"; 27 + 28 + propagatedBuildInputs = [ stdlib ]; 29 30 meta = { 31 description = "An implementation of bitvectors in Coq.";
+3
pkgs/development/coq-modules/bignums/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 46 releaseRev = v: "${if lib.versions.isGe "9.0" v then "v" else "V"}${v}"; 47 48 mlPlugin = true; 49 50 meta = { 51 license = lib.licenses.lgpl2;
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 47 releaseRev = v: "${if lib.versions.isGe "9.0" v then "v" else "V"}${v}"; 48 49 mlPlugin = true; 50 + 51 + propagatedBuildInputs = [ stdlib ]; 52 53 meta = { 54 license = lib.licenses.lgpl2;
+3
pkgs/development/coq-modules/ceres/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 28 release."0.4.0".sha256 = "sha256:0zwp3pn6fdj0qdig734zdczrls886al06mxqhhabms0jvvqijmbi"; 29 30 useDuneifVersion = lib.versions.isGe "0.4.1"; 31 32 meta = with lib; { 33 description = "Library for serialization to S-expressions";
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 29 release."0.4.0".sha256 = "sha256:0zwp3pn6fdj0qdig734zdczrls886al06mxqhhabms0jvvqijmbi"; 30 31 useDuneifVersion = lib.versions.isGe "0.4.1"; 32 + 33 + propagatedBuildInputs = [ stdlib ]; 34 35 meta = with lib; { 36 description = "Library for serialization to S-expressions";
+3
pkgs/development/coq-modules/coinduction/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 23 "1.9".sha256 = "sha256-bBU+xDklnzJBeN41GarW5KXzD8eKsOYtb//ULYumwWE="; 24 }; 25 releaseRev = v: "v${v}"; 26 27 mlPlugin = true; 28
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 24 "1.9".sha256 = "sha256-bBU+xDklnzJBeN41GarW5KXzD8eKsOYtb//ULYumwWE="; 25 }; 26 releaseRev = v: "v${v}"; 27 + 28 + propagatedBuildInputs = [ stdlib ]; 29 30 mlPlugin = true; 31
+2
pkgs/development/coq-modules/coq-elpi/default.nix
··· 3 mkCoqDerivation, 4 which, 5 coq, 6 version ? null, 7 }: 8 ··· 163 propagatedBuildInputs = [ 164 coq.ocamlPackages.findlib 165 elpi 166 ]; 167 168 meta = {
··· 3 mkCoqDerivation, 4 which, 5 coq, 6 + stdlib, 7 version ? null, 8 }: 9 ··· 164 propagatedBuildInputs = [ 165 coq.ocamlPackages.findlib 166 elpi 167 + stdlib 168 ]; 169 170 meta = {
+3
pkgs/development/coq-modules/coq-hammer/tactics.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 60 releaseRev 61 ; 62 }; 63 64 mlPlugin = true; 65
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 61 releaseRev 62 ; 63 }; 64 + 65 + propagatedBuildInputs = [ stdlib ]; 66 67 mlPlugin = true; 68
+3
pkgs/development/coq-modules/equations/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 118 release."1.3.1+8.20".sha256 = "sha256-u8LB1KiACM5zVaoL7dSdHYvZgX7pf30VuqtjLLGuTzc="; 119 120 mlPlugin = true; 121 122 meta = with lib; { 123 homepage = "https://mattam82.github.io/Coq-Equations/";
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 119 release."1.3.1+8.20".sha256 = "sha256-u8LB1KiACM5zVaoL7dSdHYvZgX7pf30VuqtjLLGuTzc="; 120 121 mlPlugin = true; 122 + 123 + propagatedBuildInputs = [ stdlib ]; 124 125 meta = with lib; { 126 homepage = "https://mattam82.github.io/Coq-Equations/";
+3
pkgs/development/coq-modules/flocq/default.nix
··· 4 autoconf, 5 mkCoqDerivation, 6 coq, 7 version ? null, 8 }: 9 ··· 57 ]; 58 mlPlugin = true; 59 useMelquiondRemake.logpath = "Flocq"; 60 61 meta = with lib; { 62 description = "Floating-point formalization for the Coq system";
··· 4 autoconf, 5 mkCoqDerivation, 6 coq, 7 + stdlib, 8 version ? null, 9 }: 10 ··· 58 ]; 59 mlPlugin = true; 60 useMelquiondRemake.logpath = "Flocq"; 61 + 62 + propagatedBuildInputs = [ stdlib ]; 63 64 meta = with lib; { 65 description = "Floating-point formalization for the Coq system";
+3
pkgs/development/coq-modules/itauto/default.nix
··· 3 callPackage, 4 mkCoqDerivation, 5 coq, 6 version ? null, 7 }: 8 ··· 62 enableParallelBuilding = false; 63 64 passthru.tests.suite = callPackage ./test.nix { }; 65 66 meta = with lib; { 67 description = "Reflexive SAT solver parameterised by a leaf tactic and Nelson-Oppen support";
··· 3 callPackage, 4 mkCoqDerivation, 5 coq, 6 + stdlib, 7 version ? null, 8 }: 9 ··· 63 enableParallelBuilding = false; 64 65 passthru.tests.suite = callPackage ./test.nix { }; 66 + 67 + propagatedBuildInputs = [ stdlib ]; 68 69 meta = with lib; { 70 description = "Reflexive SAT solver parameterised by a leaf tactic and Nelson-Oppen support";
+2 -2
pkgs/development/coq-modules/mathcomp/default.nix
··· 12 13 { lib, ncurses, graphviz, lua, fetchzip, 14 mkCoqDerivation, withDoc ? false, single ? false, 15 - coq, hierarchy-builder, version ? null }@args: 16 17 let 18 repo = "math-comp"; ··· 78 mlPlugin = lib.versions.isLe "8.6" coq.coq-version; 79 nativeBuildInputs = lib.optionals withDoc [ graphviz lua ]; 80 buildInputs = [ ncurses ]; 81 - propagatedBuildInputs = mathcomp-deps; 82 83 buildFlags = lib.optional withDoc "doc"; 84
··· 12 13 { lib, ncurses, graphviz, lua, fetchzip, 14 mkCoqDerivation, withDoc ? false, single ? false, 15 + coq, hierarchy-builder, stdlib, version ? null }@args: 16 17 let 18 repo = "math-comp"; ··· 78 mlPlugin = lib.versions.isLe "8.6" coq.coq-version; 79 nativeBuildInputs = lib.optionals withDoc [ graphviz lua ]; 80 buildInputs = [ ncurses ]; 81 + propagatedBuildInputs = [ stdlib ] ++ mathcomp-deps; 82 83 buildFlags = lib.optional withDoc "doc"; 84
+3
pkgs/development/coq-modules/paco/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 39 release."4.0.2".sha256 = "1q96bsxclqx84xn5vkid501jkwlc1p6fhb8szrlrp82zglj58b0b"; 40 release."1.2.8".sha256 = "05fskx5x1qgaf9qv626m38y5izichzzqc7g2rglzrkygbskrrwsb"; 41 releaseRev = v: "v${v}"; 42 43 preBuild = "cd src"; 44
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 40 release."4.0.2".sha256 = "1q96bsxclqx84xn5vkid501jkwlc1p6fhb8szrlrp82zglj58b0b"; 41 release."1.2.8".sha256 = "05fskx5x1qgaf9qv626m38y5izichzzqc7g2rglzrkygbskrrwsb"; 42 releaseRev = v: "v${v}"; 43 + 44 + propagatedBuildInputs = [ stdlib ]; 45 46 preBuild = "cd src"; 47
+3
pkgs/development/coq-modules/rewriter/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 23 "0.0.11".sha256 = "sha256-aYoO08nwItlOoE5BnKRGib2Zk4Fz4Ni/L4QaqkObPow="; 24 }; 25 releaseRev = v: "v${v}"; 26 27 mlPlugin = true; 28
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 24 "0.0.11".sha256 = "sha256-aYoO08nwItlOoE5BnKRGib2Zk4Fz4Ni/L4QaqkObPow="; 25 }; 26 releaseRev = v: "v${v}"; 27 + 28 + propagatedBuildInputs = [ stdlib ]; 29 30 mlPlugin = true; 31
+2
pkgs/development/coq-modules/smtcoq/default.nix
··· 7 zchaff, 8 fetchurl, 9 cvc5, 10 version ? null, 11 }: 12 ··· 80 cvc5 81 veriT' 82 zchaff 83 ] 84 ++ (with coq.ocamlPackages; [ 85 findlib
··· 7 zchaff, 8 fetchurl, 9 cvc5, 10 + stdlib, 11 version ? null, 12 }: 13 ··· 81 cvc5 82 veriT' 83 zchaff 84 + stdlib 85 ] 86 ++ (with coq.ocamlPackages; [ 87 findlib
+2 -1
pkgs/development/coq-modules/stalmarck/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 30 let 31 pname = package; 32 istac = package == "stalmarck-tactic"; 33 - propagatedBuildInputs = lib.optional istac (stalmarck_ "stalmarck"); 34 description = 35 if istac then 36 "Coq tactic and verified tool for proving tautologies using Stålmarck's algorithm"
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 31 let 32 pname = package; 33 istac = package == "stalmarck-tactic"; 34 + propagatedBuildInputs = if istac then [ (stalmarck_ "stalmarck") ] else [ stdlib ]; 35 description = 36 if istac then 37 "Coq tactic and verified tool for proving tautologies using Stålmarck's algorithm"
+59
pkgs/development/coq-modules/stdlib/default.nix
···
··· 1 + { 2 + coq, 3 + mkCoqDerivation, 4 + lib, 5 + version ? null, 6 + }@args: 7 + (mkCoqDerivation { 8 + 9 + pname = "stdlib"; 10 + repo = "coq"; 11 + owner = "coq"; 12 + opam-name = "coq-stdlib"; 13 + 14 + inherit version; 15 + defaultVersion = 16 + with lib.versions; 17 + lib.switch 18 + [ coq.version ] 19 + [ 20 + { 21 + cases = [ (isLt "8.21") ]; 22 + out = "8.20"; 23 + } 24 + ] 25 + null; 26 + releaseRev = v: "v${v}"; 27 + 28 + release."8.20".sha256 = "sha256-AcoS4edUYCfJME1wx8UbuSQRF3jmxhArcZyPIoXcfu0="; 29 + 30 + useDune = true; 31 + 32 + configurePhase = '' 33 + echo "no configure phase" 34 + ''; # don't run Coq's configure 35 + 36 + preBuild = '' 37 + echo "(dirs stdlib)" > dune 38 + ''; 39 + 40 + meta = { 41 + description = "Coq Standard Library"; 42 + license = lib.licenses.lgpl21Only; 43 + }; 44 + 45 + }).overrideAttrs 46 + ( 47 + o: 48 + # stdlib is already included in Coq <= 8.20 49 + lib.optionalAttrs 50 + (coq.version != null && coq.version != "dev" && lib.versions.isLt "8.21" coq.version) 51 + { 52 + buildPhase = '' 53 + echo building nothing 54 + ''; 55 + installPhase = '' 56 + touch $out 57 + ''; 58 + } 59 + )
+3
pkgs/development/coq-modules/stdpp/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 51 release."1.5.0".sha256 = "1ym0fy620imah89p8b6rii8clx2vmnwcrbwxl3630h24k42092nf"; 52 release."1.4.0".sha256 = "1m6c7ibwc99jd4cv14v3r327spnfvdf3x2mnq51f9rz99rffk68r"; 53 releaseRev = v: "coq-stdpp-${v}"; 54 55 preBuild = '' 56 if [[ -f coq-lint.sh ]]
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 52 release."1.5.0".sha256 = "1ym0fy620imah89p8b6rii8clx2vmnwcrbwxl3630h24k42092nf"; 53 release."1.4.0".sha256 = "1m6c7ibwc99jd4cv14v3r327spnfvdf3x2mnq51f9rz99rffk68r"; 54 releaseRev = v: "coq-stdpp-${v}"; 55 + 56 + propagatedBuildInputs = [ stdlib ]; 57 58 preBuild = '' 59 if [[ -f coq-lint.sh ]]
+3
pkgs/development/coq-modules/tlc/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 36 release."20210316".sha256 = "1hlavnx20lxpf2iydbbxqmim9p8wdwv4phzp9ypij93yivih0g4a"; 37 release."20200328".sha256 = "16vzild9gni8zhgb3qhmka47f8zagdh03k6nssif7drpim8233lx"; 38 release."20181116".sha256 = "032lrbkxqm9d3fhf6nv1kq2z0mqd3czv3ijlbsjwnfh12xck4vpl"; 39 40 meta = with lib; { 41 homepage = "http://www.chargueraud.org/softs/tlc/";
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 37 release."20210316".sha256 = "1hlavnx20lxpf2iydbbxqmim9p8wdwv4phzp9ypij93yivih0g4a"; 38 release."20200328".sha256 = "16vzild9gni8zhgb3qhmka47f8zagdh03k6nssif7drpim8233lx"; 39 release."20181116".sha256 = "032lrbkxqm9d3fhf6nv1kq2z0mqd3czv3ijlbsjwnfh12xck4vpl"; 40 + 41 + propagatedBuildInputs = [ stdlib ]; 42 43 meta = with lib; { 44 homepage = "http://www.chargueraud.org/softs/tlc/";
+3
pkgs/development/coq-modules/waterproof/default.nix
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 version ? null, 6 }: 7 ··· 23 release = { 24 "2.1.1+8.18".sha256 = "sha256-jYuQ9SPFRefNCUfn6+jEaJ4399EnU0gXPPkEDCpJYOI="; 25 }; 26 27 mlPlugin = true; 28
··· 2 lib, 3 mkCoqDerivation, 4 coq, 5 + stdlib, 6 version ? null, 7 }: 8 ··· 24 release = { 25 "2.1.1+8.18".sha256 = "sha256-jYuQ9SPFRefNCUfn6+jEaJ4399EnU0gXPPkEDCpJYOI="; 26 }; 27 + 28 + propagatedBuildInputs = [ stdlib ]; 29 30 mlPlugin = true; 31
+2 -2
pkgs/development/libraries/allegro/5.nix
··· 39 40 stdenv.mkDerivation rec { 41 pname = "allegro"; 42 - version = "5.2.9.1"; 43 44 src = fetchFromGitHub { 45 owner = "liballeg"; 46 repo = "allegro5"; 47 rev = version; 48 - sha256 = "sha256-n2OCmZmAqeXjtnCTqJgQ5q4j8/lnPfH+5tpWKIFKle0="; 49 }; 50 51 nativeBuildInputs = [
··· 39 40 stdenv.mkDerivation rec { 41 pname = "allegro"; 42 + version = "5.2.10.0"; 43 44 src = fetchFromGitHub { 45 owner = "liballeg"; 46 repo = "allegro5"; 47 rev = version; 48 + sha256 = "sha256-p01h1AX1vPlBm+ksnTMVQxEIz6q9s/f7R9twbR50YMs="; 49 }; 50 51 nativeBuildInputs = [
+31
pkgs/development/libraries/hunspell/dictionaries.nix
··· 1066 readmeFile = "README_el_GR.txt"; 1067 license = with lib.licenses; [ mpl11 gpl2 lgpl21 ]; 1068 }; 1069 }
··· 1066 readmeFile = "README_el_GR.txt"; 1067 license = with lib.licenses; [ mpl11 gpl2 lgpl21 ]; 1068 }; 1069 + 1070 + /* KOREAN */ 1071 + ko_KR = ko-kr; 1072 + ko-kr = mkDict rec { 1073 + pname = "hunspell-dict-ko-kr"; 1074 + version = "0.7.94"; 1075 + 1076 + src = fetchFromGitHub { 1077 + owner = "spellcheck-ko"; 1078 + repo = "hunspell-dict-ko"; 1079 + rev = version; 1080 + hash = "sha256-eHuNppqB536wHXftzDghpB3cM9CNFKW1z8f0SNkEiD8="; 1081 + }; 1082 + 1083 + dictFileName = "ko_KR"; 1084 + readmeFile = "README.md"; 1085 + 1086 + nativeBuildInputs = [ (python3.withPackages (ps: [ ps.pyyaml ])) ]; 1087 + 1088 + preInstall = '' 1089 + mv ko.aff ko_KR.aff 1090 + mv ko.dic ko_KR.dic 1091 + ''; 1092 + 1093 + meta = { 1094 + description = "Hunspell dictionary for Korean (South Korea)"; 1095 + homepage = "https://github.com/spellcheck-ko/hunspell-dict-ko"; 1096 + license = with lib.licenses; [ gpl2Plus lgpl21Plus mpl11 ]; 1097 + maintainers = with lib.maintainers; [ honnip ]; 1098 + }; 1099 + }; 1100 }
+9
pkgs/development/libraries/itk/generic.nix
··· 58 rev = "bb896868fc6480835495d0da4356d5db009592a6"; 59 hash = "sha256-MfaIA0xxA/pzUBSwnAevr17iR23Bo5iQO2cSyknS3o4="; 60 }; 61 in 62 63 stdenv.mkDerivation { ··· 86 ln -sr ${itkGenericLabelInterpolatorSrc} Modules/External/ITKGenericLabelInterpolator 87 ln -sr ${itkAdaptiveDenoisingSrc} Modules/External/ITKAdaptiveDenoising 88 ln -sr ${itkSimpleITKFiltersSrc} Modules/External/ITKSimpleITKFilters 89 ''; 90 91 cmakeFlags = ··· 108 "-DModule_MGHIO=ON" 109 "-DModule_AdaptiveDenoising=ON" 110 "-DModule_GenericLabelInterpolator=ON" 111 ] 112 ++ lib.optionals enablePython [ 113 "-DITK_WRAP_PYTHON=ON"
··· 58 rev = "bb896868fc6480835495d0da4356d5db009592a6"; 59 hash = "sha256-MfaIA0xxA/pzUBSwnAevr17iR23Bo5iQO2cSyknS3o4="; 60 }; 61 + 62 + rtkSrc = fetchFromGitHub { 63 + owner = "RTKConsortium"; 64 + repo = "RTK"; 65 + rev = "583288b1898dedcfb5e4d602e31020b452971383"; 66 + hash = "sha256-1ItsLCRwRzGDSRe4xUDg09Hksu1nKichbWuM0YSVkbM="; 67 + }; 68 in 69 70 stdenv.mkDerivation { ··· 93 ln -sr ${itkGenericLabelInterpolatorSrc} Modules/External/ITKGenericLabelInterpolator 94 ln -sr ${itkAdaptiveDenoisingSrc} Modules/External/ITKAdaptiveDenoising 95 ln -sr ${itkSimpleITKFiltersSrc} Modules/External/ITKSimpleITKFilters 96 + ln -sr ${rtkSrc} Modules/Remote/RTK 97 ''; 98 99 cmakeFlags = ··· 116 "-DModule_MGHIO=ON" 117 "-DModule_AdaptiveDenoising=ON" 118 "-DModule_GenericLabelInterpolator=ON" 119 + "-DModule_RTK=ON" 120 ] 121 ++ lib.optionals enablePython [ 122 "-DITK_WRAP_PYTHON=ON"
+5 -5
pkgs/development/ocaml-modules/ocplib-simplex/default.nix
··· 1 - { lib, fetchFromGitHub, buildDunePackage, logs, num }: 2 3 buildDunePackage rec { 4 pname = "ocplib-simplex"; 5 - version = "0.5"; 6 7 src = fetchFromGitHub { 8 - owner = "OCamlPro-Iguernlala"; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-sy5QUmghG28tXlwbKWx3PpBGTtzXarTSzd1WLSYyvbc="; 12 }; 13 14 - propagatedBuildInputs = [ logs num ]; 15 16 doCheck = true; 17
··· 1 + { lib, fetchFromGitHub, buildDunePackage, logs, zarith }: 2 3 buildDunePackage rec { 4 pname = "ocplib-simplex"; 5 + version = "0.5.1"; 6 7 src = fetchFromGitHub { 8 + owner = "OCamlPro"; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-fLTht+TlyJIsIAsRLmmkFKsnbSeW3BgyAyURFdnGfko="; 12 }; 13 14 + propagatedBuildInputs = [ logs zarith ]; 15 16 doCheck = true; 17
+7 -3
pkgs/development/python-modules/ailment/default.nix
··· 5 pythonOlder, 6 pyvex, 7 setuptools, 8 }: 9 10 buildPythonPackage rec { 11 pname = "ailment"; 12 - version = "9.2.130"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.11"; ··· 18 owner = "angr"; 19 repo = "ailment"; 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-/tupBPwZqsJ1+TNIdOVT49uOFSqWqF2nWzZJaHAJXNw="; 22 }; 23 24 build-system = [ setuptools ]; 25 26 - dependencies = [ pyvex ]; 27 28 # Tests depend on angr (possibly a circular dependency) 29 doCheck = false;
··· 5 pythonOlder, 6 pyvex, 7 setuptools, 8 + typing-extensions, 9 }: 10 11 buildPythonPackage rec { 12 pname = "ailment"; 13 + version = "9.2.132"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.11"; ··· 19 owner = "angr"; 20 repo = "ailment"; 21 rev = "refs/tags/v${version}"; 22 + hash = "sha256-XvDZwZF084Qns0b3g+X1ay+XEZq84mIvF/8JEx8sCaQ="; 23 }; 24 25 build-system = [ setuptools ]; 26 27 + dependencies = [ 28 + pyvex 29 + typing-extensions 30 + ]; 31 32 # Tests depend on angr (possibly a circular dependency) 33 doCheck = false;
+4 -2
pkgs/development/python-modules/aiohomeconnect/default.nix
··· 5 fastapi, 6 fetchFromGitHub, 7 httpx, 8 mashumaro, 9 poetry-core, 10 pytest-asyncio, ··· 18 19 buildPythonPackage rec { 20 pname = "aiohomeconnect"; 21 - version = "0.6.4"; 22 pyproject = true; 23 24 disabled = pythonOlder "3.11"; ··· 27 owner = "MartinHjelmare"; 28 repo = "aiohomeconnect"; 29 rev = "refs/tags/v${version}"; 30 - hash = "sha256-vy1pcLNRi5C0okdWMYWOHanEiN0Nl4WqZT1cC6UktCU="; 31 }; 32 33 pythonRelaxDeps = [ "httpx" ]; ··· 36 37 dependencies = [ 38 httpx 39 mashumaro 40 ]; 41
··· 5 fastapi, 6 fetchFromGitHub, 7 httpx, 8 + httpx-sse, 9 mashumaro, 10 poetry-core, 11 pytest-asyncio, ··· 19 20 buildPythonPackage rec { 21 pname = "aiohomeconnect"; 22 + version = "0.7.0"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.11"; ··· 28 owner = "MartinHjelmare"; 29 repo = "aiohomeconnect"; 30 rev = "refs/tags/v${version}"; 31 + hash = "sha256-OgHlYa5n8BnXnaJg/Ns27cXaGKDUkSddDFvl03rwNXM="; 32 }; 33 34 pythonRelaxDeps = [ "httpx" ]; ··· 37 38 dependencies = [ 39 httpx 40 + httpx-sse 41 mashumaro 42 ]; 43
+2 -2
pkgs/development/python-modules/aiortm/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "aiortm"; 22 - version = "0.9.42"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.12"; ··· 28 owner = "MartinHjelmare"; 29 repo = "aiortm"; 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-4UN96ZpXssCsYh/UmCaPud+bqgw9ckqofyifvIohBBk="; 32 }; 33 34 pythonRelaxDeps = [ "typer" ];
··· 19 20 buildPythonPackage rec { 21 pname = "aiortm"; 22 + version = "0.9.43"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.12"; ··· 28 owner = "MartinHjelmare"; 29 repo = "aiortm"; 30 rev = "refs/tags/v${version}"; 31 + hash = "sha256-MyeD0SNVHhIPn3KcBfLO5msmwrFRMyIhW8LxUVsHU0o="; 32 }; 33 34 pythonRelaxDeps = [ "typer" ];
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 36 37 buildPythonPackage rec { 38 pname = "angr"; 39 - version = "9.2.130"; 40 pyproject = true; 41 42 disabled = pythonOlder "3.11"; ··· 45 owner = "angr"; 46 repo = "angr"; 47 rev = "refs/tags/v${version}"; 48 - hash = "sha256-XPiHRFt0peGyi5g5+fBVxg1jp/UXTetGIwAilgCM+Ow="; 49 }; 50 51 postPatch = ''
··· 36 37 buildPythonPackage rec { 38 pname = "angr"; 39 + version = "9.2.132"; 40 pyproject = true; 41 42 disabled = pythonOlder "3.11"; ··· 45 owner = "angr"; 46 repo = "angr"; 47 rev = "refs/tags/v${version}"; 48 + hash = "sha256-DtmjtxO2eOq2qz48uMkNOlGhIsc+LVOWGh0PpPIzaow="; 49 }; 50 51 postPatch = ''
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "archinfo"; 13 - version = "9.2.130"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.8"; ··· 19 owner = "angr"; 20 repo = "archinfo"; 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-r03eMpHfqRGvaDN5dRkfuGG6RWgHmTlyygby6BSzxIY="; 23 }; 24 25 build-system = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "archinfo"; 13 + version = "9.2.132"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.8"; ··· 19 owner = "angr"; 20 repo = "archinfo"; 21 rev = "refs/tags/v${version}"; 22 + hash = "sha256-j/N5nWUCWQRGb9Soe+naHLXV2Fwqu7lPMZdY9k3U1O4="; 23 }; 24 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 359 360 buildPythonPackage rec { 361 pname = "boto3-stubs"; 362 - version = "1.35.78"; 363 pyproject = true; 364 365 disabled = pythonOlder "3.7"; ··· 367 src = fetchPypi { 368 pname = "boto3_stubs"; 369 inherit version; 370 - hash = "sha256-XQI88fzHI9/bopZT4K2bmTOYXIE6JbwhgH4h6rgeIbQ="; 371 }; 372 373 build-system = [ setuptools ];
··· 359 360 buildPythonPackage rec { 361 pname = "boto3-stubs"; 362 + version = "1.35.79"; 363 pyproject = true; 364 365 disabled = pythonOlder "3.7"; ··· 367 src = fetchPypi { 368 pname = "boto3_stubs"; 369 inherit version; 370 + hash = "sha256-ojkVIp2cSa7fw6N3SZyjm4/RzLFCTzh1XjD7n1SOoAY="; 371 }; 372 373 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "botocore-stubs"; 13 - version = "1.35.78"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "botocore_stubs"; 20 inherit version; 21 - hash = "sha256-TLXB/KMwSKKvyiACcZqNaW9wUatPDvX17pbfeq92oFU="; 22 }; 23 24 nativeBuildInputs = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "botocore-stubs"; 13 + version = "1.35.79"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "botocore_stubs"; 20 inherit version; 21 + hash = "sha256-wMXwaH0C3c4kcwN8zs8KtjTqNYWnRu6J+bRLV9BGJ4Q="; 22 }; 23 24 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "claripy"; 17 - version = "9.2.130"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.11"; ··· 23 owner = "angr"; 24 repo = "claripy"; 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-WtT4jdL512ad/hUb8uMxAqihDH/YFxsnYumNFWWGkQM="; 27 }; 28 29 # z3 does not provide a dist-info, so python-runtime-deps-check will fail
··· 14 15 buildPythonPackage rec { 16 pname = "claripy"; 17 + version = "9.2.132"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.11"; ··· 23 owner = "angr"; 24 repo = "claripy"; 25 rev = "refs/tags/v${version}"; 26 + hash = "sha256-TiddozxGyDilcLKXyIOlIo7cTDVdJCJEjArq6nwgsc0="; 27 }; 28 29 # z3 does not provide a dist-info, so python-runtime-deps-check will fail
+3 -3
pkgs/development/python-modules/cle/default.nix
··· 16 17 let 18 # The binaries are following the argr projects release cycle 19 - version = "9.2.130"; 20 21 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 22 binaries = fetchFromGitHub { 23 owner = "angr"; 24 repo = "binaries"; 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-kgi7K8zxICIwtk9MKB2qHXf/7u2RbXx6hYC89lem/3I="; 27 }; 28 in 29 buildPythonPackage rec { ··· 37 owner = "angr"; 38 repo = "cle"; 39 rev = "refs/tags/v${version}"; 40 - hash = "sha256-mxSTXgE4O4YpjFWKIpeSi43+j5xEgYwuRHVzqI34Izg="; 41 }; 42 43 build-system = [ setuptools ];
··· 16 17 let 18 # The binaries are following the argr projects release cycle 19 + version = "9.2.132"; 20 21 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 22 binaries = fetchFromGitHub { 23 owner = "angr"; 24 repo = "binaries"; 25 rev = "refs/tags/v${version}"; 26 + hash = "sha256-ytL8UlvbzOSvUwXjZhxAW6lQJawGOTfMlq/yQnBLIu0="; 27 }; 28 in 29 buildPythonPackage rec { ··· 37 owner = "angr"; 38 repo = "cle"; 39 rev = "refs/tags/v${version}"; 40 + hash = "sha256-TO1zVqoPr1HBTMd9+Gbn39lLsZv8cMcAG0EKsvgymcI="; 41 }; 42 43 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/jupyter-ydoc/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "jupyter-ydoc"; 21 - version = "3.0.1"; 22 pyproject = true; 23 24 src = fetchPypi { 25 pname = "jupyter_ydoc"; 26 inherit version; 27 - hash = "sha256-ztrp8+4KdyiDF/IbuBhI7WFnTRukaLDDlsFgomSiEGs="; 28 }; 29 30 build-system = [
··· 18 19 buildPythonPackage rec { 20 pname = "jupyter-ydoc"; 21 + version = "3.0.2"; 22 pyproject = true; 23 24 src = fetchPypi { 25 pname = "jupyter_ydoc"; 26 inherit version; 27 + hash = "sha256-1fHVvD7JV55YdGlJbNM9bypp4Y50Mp4TDCMUELocMdA="; 28 }; 29 30 build-system = [
+2 -2
pkgs/development/python-modules/monzopy/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "monzopy"; 12 - version = "1.4.2"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.10"; ··· 18 owner = "JakeMartin-ICL"; 19 repo = "monzopy"; 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-yO0mdqdoRdyl6BDT1vBuTh83zECck3atQtdtWhQCh9s="; 22 }; 23 24 build-system = [ setuptools ];
··· 9 10 buildPythonPackage rec { 11 pname = "monzopy"; 12 + version = "1.5.0"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.10"; ··· 18 owner = "JakeMartin-ICL"; 19 repo = "monzopy"; 20 rev = "refs/tags/v${version}"; 21 + hash = "sha256-bWuWc2+80Og9mjzgqatGeR028CD3oqwKrw/BRTz3KXg="; 22 }; 23 24 build-system = [ setuptools ];
+20 -20
pkgs/development/python-modules/mypy-boto3/default.nix
··· 110 "sha256-aPoEEfQvhPoT0CPcfoyhzdXl2jSKeIoD3gBEw1f1XWU="; 111 112 mypy-boto3-application-autoscaling = 113 - buildMypyBoto3Package "application-autoscaling" "1.35.67" 114 - "sha256-vIhEkUkeI0Wx16/MLVylDuAPV62gwYjtTp9hqJdqFD4="; 115 116 mypy-boto3-application-insights = 117 buildMypyBoto3Package "application-insights" "1.35.45" ··· 250 "sha256-8QLyd1uCh26njr6VnNBFROHWFXMSvpO7WRzV8DFZ01U="; 251 252 mypy-boto3-cloudtrail = 253 - buildMypyBoto3Package "cloudtrail" "1.35.67" 254 - "sha256-1gS61PsUJ10PczmHvs/OmCoJj9ZCgVbDWpB/8VwNkGg="; 255 256 mypy-boto3-cloudtrail-data = 257 buildMypyBoto3Package "cloudtrail-data" "1.35.0" ··· 314 "sha256-UVEJn/VNbYEIRPHV9CuDI0Hos5POiMQThiN4OlncQIE="; 315 316 mypy-boto3-cognito-idp = 317 - buildMypyBoto3Package "cognito-idp" "1.35.77" 318 - "sha256-H2CQ/CeVjmnteZPmTN6LUq1Uldks1k7tbnwYAHv1gGo="; 319 320 mypy-boto3-cognito-sync = 321 buildMypyBoto3Package "cognito-sync" "1.35.0" ··· 338 "sha256-qycjnRcrEJ2P3dpciMVFPno1wz3tEJ6pa6z8TlLwTME="; 339 340 mypy-boto3-connect = 341 - buildMypyBoto3Package "connect" "1.35.72" 342 - "sha256-fGo6vO49IgOCiRqAChO/33HU+hRjkdWnu77EG40PrRY="; 343 344 mypy-boto3-connect-contact-lens = 345 buildMypyBoto3Package "connect-contact-lens" "1.35.0" ··· 506 "sha256-ARmcy8oINHgph9PqNtQYyBVEVshBuSHDeju2ynNSqQ8="; 507 508 mypy-boto3-emr-serverless = 509 - buildMypyBoto3Package "emr-serverless" "1.35.25" 510 - "sha256-9aQOr3oGVejk34AInlyoS9//4DBIR0JBbHGumvanOtw="; 511 512 mypy-boto3-entityresolution = 513 buildMypyBoto3Package "entityresolution" "1.35.3" ··· 526 "sha256-C7hTVrCUdBpYj0y5cLGKnruJcgaHFMkeY6R0fZ/Zp78="; 527 528 mypy-boto3-finspace = 529 - buildMypyBoto3Package "finspace" "1.35.12" 530 - "sha256-zO4rFI2pzAFhHHyRPYeeV0eC4daRJ57GeAnAqrOyQAQ="; 531 532 mypy-boto3-finspace-data = 533 buildMypyBoto3Package "finspace-data" "1.35.0" ··· 702 "sha256-KMY2z2O8JY++v8Vi3o6zx6HFUZdjNHkGOZD4y05ZGQ4="; 703 704 mypy-boto3-ivs-realtime = 705 - buildMypyBoto3Package "ivs-realtime" "1.35.32" 706 - "sha256-mAK3wz82f8X/02mvPnDycDa934wAbFeSySX99H1nvEQ="; 707 708 mypy-boto3-ivschat = 709 buildMypyBoto3Package "ivschat" "1.35.19" ··· 906 "sha256-qFXZE2y5MSpOZMSKhFEeriXHgbboQigOufmTqbArmns="; 907 908 mypy-boto3-mgh = 909 - buildMypyBoto3Package "mgh" "1.35.0" 910 - "sha256-mGKHl9Ld7DNwma0Nl2lTwb3cN2N1SqnZlYZX0bxnS1w="; 911 912 mypy-boto3-mgn = 913 buildMypyBoto3Package "mgn" "1.35.0" ··· 1162 "sha256-RwPNNFntNChLqbr86wd1bwp6OqWvs3oj3V+4X71J3Hw="; 1163 1164 mypy-boto3-s3 = 1165 - buildMypyBoto3Package "s3" "1.35.76" 1166 - "sha256-bPHwNJhf5hB1TD5u8odJBimHDVCK2hO31h57mq60YQg="; 1167 1168 mypy-boto3-s3control = 1169 buildMypyBoto3Package "s3control" "1.35.73" ··· 1254 "sha256-VwamgC2lBBnVvwd80PAK09mAGNgfjoyrOP+YccxlAEw="; 1255 1256 mypy-boto3-sesv2 = 1257 - buildMypyBoto3Package "sesv2" "1.35.53" 1258 - "sha256-jIxFFcXYJgwxH78gnMHxIaQWeF88DT7tH1pukUEpDc4="; 1259 1260 mypy-boto3-shield = 1261 buildMypyBoto3Package "shield" "1.35.0"
··· 110 "sha256-aPoEEfQvhPoT0CPcfoyhzdXl2jSKeIoD3gBEw1f1XWU="; 111 112 mypy-boto3-application-autoscaling = 113 + buildMypyBoto3Package "application-autoscaling" "1.35.78" 114 + "sha256-wIkZmpk4yXjK4cwW0T0bde+kKcQi4pJEBPL1erbFGlo="; 115 116 mypy-boto3-application-insights = 117 buildMypyBoto3Package "application-insights" "1.35.45" ··· 250 "sha256-8QLyd1uCh26njr6VnNBFROHWFXMSvpO7WRzV8DFZ01U="; 251 252 mypy-boto3-cloudtrail = 253 + buildMypyBoto3Package "cloudtrail" "1.35.79" 254 + "sha256-dq8DeeGejHFGijvjFJU7vmhsOFyMmTlWcvGriDOzYgs="; 255 256 mypy-boto3-cloudtrail-data = 257 buildMypyBoto3Package "cloudtrail-data" "1.35.0" ··· 314 "sha256-UVEJn/VNbYEIRPHV9CuDI0Hos5POiMQThiN4OlncQIE="; 315 316 mypy-boto3-cognito-idp = 317 + buildMypyBoto3Package "cognito-idp" "1.35.79" 318 + "sha256-176alqnmWl//zNEziDBbX6ZNk/gdHjqurR1Whz6SK8Y="; 319 320 mypy-boto3-cognito-sync = 321 buildMypyBoto3Package "cognito-sync" "1.35.0" ··· 338 "sha256-qycjnRcrEJ2P3dpciMVFPno1wz3tEJ6pa6z8TlLwTME="; 339 340 mypy-boto3-connect = 341 + buildMypyBoto3Package "connect" "1.35.78" 342 + "sha256-9pN4rQDj8ZIqYFNlA2OC0dEK6jsxX6ctlOzBXmd9Gho="; 343 344 mypy-boto3-connect-contact-lens = 345 buildMypyBoto3Package "connect-contact-lens" "1.35.0" ··· 506 "sha256-ARmcy8oINHgph9PqNtQYyBVEVshBuSHDeju2ynNSqQ8="; 507 508 mypy-boto3-emr-serverless = 509 + buildMypyBoto3Package "emr-serverless" "1.35.79" 510 + "sha256-UJh4iV+ziL+0Cv8QGDPDMIQkQ6EskPqTA3tc9qzPqxM="; 511 512 mypy-boto3-entityresolution = 513 buildMypyBoto3Package "entityresolution" "1.35.3" ··· 526 "sha256-C7hTVrCUdBpYj0y5cLGKnruJcgaHFMkeY6R0fZ/Zp78="; 527 528 mypy-boto3-finspace = 529 + buildMypyBoto3Package "finspace" "1.35.78" 530 + "sha256-kCrB2JJ9Ie+DQM/OtUkUQbQb8a5AEq3VaEW64au2/7I="; 531 532 mypy-boto3-finspace-data = 533 buildMypyBoto3Package "finspace-data" "1.35.0" ··· 702 "sha256-KMY2z2O8JY++v8Vi3o6zx6HFUZdjNHkGOZD4y05ZGQ4="; 703 704 mypy-boto3-ivs-realtime = 705 + buildMypyBoto3Package "ivs-realtime" "1.35.78" 706 + "sha256-drmab2qLNUxyZBR4twWeicndhIMPqc6JKeZy5M2WqpI="; 707 708 mypy-boto3-ivschat = 709 buildMypyBoto3Package "ivschat" "1.35.19" ··· 906 "sha256-qFXZE2y5MSpOZMSKhFEeriXHgbboQigOufmTqbArmns="; 907 908 mypy-boto3-mgh = 909 + buildMypyBoto3Package "mgh" "1.35.79" 910 + "sha256-GRQEcgUhnpri/waIMhJG9ez5bppRI4o2cvLQAvTN408="; 911 912 mypy-boto3-mgn = 913 buildMypyBoto3Package "mgn" "1.35.0" ··· 1162 "sha256-RwPNNFntNChLqbr86wd1bwp6OqWvs3oj3V+4X71J3Hw="; 1163 1164 mypy-boto3-s3 = 1165 + buildMypyBoto3Package "s3" "1.35.76.post1" 1166 + "sha256-NKxMrPis2vpucaKBARayVGN28kF2H57sasWpiHMJNys="; 1167 1168 mypy-boto3-s3control = 1169 buildMypyBoto3Package "s3control" "1.35.73" ··· 1254 "sha256-VwamgC2lBBnVvwd80PAK09mAGNgfjoyrOP+YccxlAEw="; 1255 1256 mypy-boto3-sesv2 = 1257 + buildMypyBoto3Package "sesv2" "1.35.79" 1258 + "sha256-J7sAvAwJ9qvXqXUqsATtqCoPwsYmj9vJIESK0Qg/RsE="; 1259 1260 mypy-boto3-shield = 1261 buildMypyBoto3Package "shield" "1.35.0"
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "pyvex"; 16 - version = "9.2.130"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.11"; 20 21 src = fetchPypi { 22 inherit pname version; 23 - hash = "sha256-U4AykjdxiT9tg9krxEcoNwSAvMNisyYaTLiOCTGoSOY="; 24 }; 25 26 build-system = [ setuptools ];
··· 13 14 buildPythonPackage rec { 15 pname = "pyvex"; 16 + version = "9.2.132"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.11"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-0/kiZLRkhWrMA74XILwrBtR45PMrypi3HqEt5UiVR/0="; 24 }; 25 26 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/tencentcloud-sdk-python/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "tencentcloud-sdk-python"; 13 - version = "3.0.1279"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.9"; ··· 19 owner = "TencentCloud"; 20 repo = "tencentcloud-sdk-python"; 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-udp1vcvoqou4/xCWwsPICn7gcQY2B4/qKF+4n4pRLOU="; 23 }; 24 25 build-system = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "tencentcloud-sdk-python"; 13 + version = "3.0.1280"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.9"; ··· 19 owner = "TencentCloud"; 20 repo = "tencentcloud-sdk-python"; 21 rev = "refs/tags/${version}"; 22 + hash = "sha256-9hSGe7E0jp6JN3Oi1zkxI2tU+ZAJm9BFdx43Dce+S+I="; 23 }; 24 25 build-system = [ setuptools ];
+15 -10
pkgs/development/python-modules/webexteamssdk/default.nix
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 future, 6 - poetry-core, 7 - poetry-dynamic-versioning, 8 pyjwt, 9 pythonOlder, 10 requests-toolbelt, 11 - requests, 12 }: 13 14 buildPythonPackage rec { 15 pname = "webexteamssdk"; 16 - version = "2.0.1"; 17 pyproject = true; 18 19 - disabled = pythonOlder "3.10"; 20 21 src = fetchFromGitHub { 22 owner = "CiscoDevNet"; 23 repo = "webexteamssdk"; 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-ENAUUicVO/Br7k+RFHCGzQ7BIG0CP7jTYM3tzs5EAZQ="; 26 }; 27 28 build-system = [ 29 - poetry-core 30 - poetry-dynamic-versioning 31 ]; 32 33 dependencies = [ ··· 40 # Tests require a Webex Teams test domain 41 doCheck = false; 42 43 - pythonImportsCheck = [ "webexpythonsdk" ]; 44 45 meta = with lib; { 46 description = "Python module for Webex Teams APIs"; 47 homepage = "https://github.com/CiscoDevNet/webexteamssdk"; 48 changelog = "https://github.com/WebexCommunity/WebexPythonSDK/releases/tag/v${version}"; 49 - license = licenses.mit; 50 maintainers = with maintainers; [ fab ]; 51 }; 52 }
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 future, 6 pyjwt, 7 pythonOlder, 8 + requests, 9 requests-toolbelt, 10 + setuptools, 11 + versioneer, 12 }: 13 14 buildPythonPackage rec { 15 pname = "webexteamssdk"; 16 + version = "1.6.1"; 17 pyproject = true; 18 19 + disabled = pythonOlder "3.7"; 20 21 src = fetchFromGitHub { 22 owner = "CiscoDevNet"; 23 repo = "webexteamssdk"; 24 rev = "refs/tags/v${version}"; 25 + hash = "sha256-xlkmXl4tVm48drXmkUijv9GNXzJcDnfSKbOMciPIRRo="; 26 }; 27 28 + postPatch = '' 29 + # Remove vendorized versioneer 30 + rm versioneer.py 31 + ''; 32 + 33 build-system = [ 34 + setuptools 35 + versioneer 36 ]; 37 38 dependencies = [ ··· 45 # Tests require a Webex Teams test domain 46 doCheck = false; 47 48 + pythonImportsCheck = [ "webexteamssdk" ]; 49 50 meta = with lib; { 51 description = "Python module for Webex Teams APIs"; 52 homepage = "https://github.com/CiscoDevNet/webexteamssdk"; 53 changelog = "https://github.com/WebexCommunity/WebexPythonSDK/releases/tag/v${version}"; 54 + license = with licenses; [ mit ]; 55 maintainers = with maintainers; [ fab ]; 56 }; 57 }
+3 -3
pkgs/development/python-modules/zenoh/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "zenoh"; 14 - version = "1.0.3"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "eclipse-zenoh"; 19 repo = "zenoh-python"; 20 rev = version; 21 - hash = "sha256-LQ6zu0yD2heprN2p6zO/ZC6uIsMlc1FyDuZ/dvOnVqU="; 22 }; 23 24 cargoDeps = rustPlatform.fetchCargoVendor { 25 inherit src pname version; 26 - hash = "sha256-6a2OSZLn1OYpe4tAv60uBhh/b+3QewPxVtQIDOnpk3A="; 27 }; 28 29 build-system = [
··· 11 12 buildPythonPackage rec { 13 pname = "zenoh"; 14 + version = "1.1.0"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "eclipse-zenoh"; 19 repo = "zenoh-python"; 20 rev = version; 21 + hash = "sha256-DO5AZDS7XvExxATtbkFOLG66zQOZu4gE6VWOG7C3qGA="; 22 }; 23 24 cargoDeps = rustPlatform.fetchCargoVendor { 25 inherit src pname version; 26 + hash = "sha256-GolnCEsqCGxjrKl2qXVRi9+d8hwXNsRVdfI7Cf60/jg="; 27 }; 28 29 build-system = [
+1
pkgs/misc/tmux-plugins/default.nix
··· 864 865 weather = mkTmuxPlugin { 866 pluginName = "weather"; 867 version = "unstable-2020-02-08"; 868 src = fetchFromGitHub { 869 owner = "xamut";
··· 864 865 weather = mkTmuxPlugin { 866 pluginName = "weather"; 867 + rtpFilePath = "tmux-weather.tmux"; 868 version = "unstable-2020-02-08"; 869 src = fetchFromGitHub { 870 owner = "xamut";
+22
pkgs/servers/akkoma/0001-fix-tzdata.patch
···
··· 1 + diff --git a/mix.lock b/mix.lock 2 + index 810356345..99a5a92c3 100644 3 + --- a/mix.lock 4 + +++ b/mix.lock 5 + @@ -75,7 +75,7 @@ 6 + "metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], [], "hexpm", "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"}, 7 + "mfm_parser": {:git, "https://akkoma.dev/AkkomaGang/mfm-parser.git", "b21ab7754024af096f2d14247574f55f0063295b", [ref: "b21ab7754024af096f2d14247574f55f0063295b"]}, 8 + "mime": {:hex, :mime, "2.0.5", "dc34c8efd439abe6ae0343edbb8556f4d63f178594894720607772a041b04b02", [:mix], [], "hexpm", "da0d64a365c45bc9935cc5c8a7fc5e49a0e0f9932a761c55d6c52b142780a05c"}, 9 + - "mimerl": {:hex, :mimerl, "1.2.0", "67e2d3f571088d5cfd3e550c383094b47159f3eee8ffa08e64106cdf5e981be3", [:rebar3], [], "hexpm", "f278585650aa581986264638ebf698f8bb19df297f66ad91b18910dfc6e19323"}, 10 + + "mimerl": {:hex, :mimerl, "1.3.0", "d0cd9fc04b9061f82490f6581e0128379830e78535e017f7780f37fea7545726", [:rebar3], [], "hexpm", "a1e15a50d1887217de95f0b9b0793e32853f7c258a5cd227650889b38839fe9d"}, 11 + "mint": {:hex, :mint, "1.5.2", "4805e059f96028948870d23d7783613b7e6b0e2fb4e98d720383852a760067fd", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:hpax, "~> 0.1.1", [hex: :hpax, repo: "hexpm", optional: false]}], "hexpm", "d77d9e9ce4eb35941907f1d3df38d8f750c357865353e21d335bdcdf6d892a02"}, 12 + "mock": {:hex, :mock, "0.3.8", "7046a306b71db2488ef54395eeb74df0a7f335a7caca4a3d3875d1fc81c884dd", [:mix], [{:meck, "~> 0.9.2", [hex: :meck, repo: "hexpm", optional: false]}], "hexpm", "7fa82364c97617d79bb7d15571193fc0c4fe5afd0c932cef09426b3ee6fe2022"}, 13 + "mogrify": {:hex, :mogrify, "0.9.3", "238c782f00271dace01369ad35ae2e9dd020feee3443b9299ea5ea6bed559841", [:mix], [], "hexpm", "0189b1e1de27455f2b9ae8cf88239cefd23d38de9276eb5add7159aea51731e6"}, 14 + @@ -123,7 +123,7 @@ 15 + "tesla": {:hex, :tesla, "1.8.0", "d511a4f5c5e42538d97eef7c40ec4f3e44effdc5068206f42ed859e09e51d1fd", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:exjsx, ">= 3.0.0", [hex: :exjsx, repo: "hexpm", optional: true]}, {:finch, "~> 0.13", [hex: :finch, repo: "hexpm", optional: true]}, {:fuse, "~> 2.4", [hex: :fuse, repo: "hexpm", optional: true]}, {:gun, ">= 1.0.0", [hex: :gun, repo: "hexpm", optional: true]}, {:hackney, "~> 1.6", [hex: :hackney, repo: "hexpm", optional: true]}, {:ibrowse, "4.4.2", [hex: :ibrowse, repo: "hexpm", optional: true]}, {:jason, ">= 1.0.0", [hex: :jason, repo: "hexpm", optional: true]}, {:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.0", [hex: :mint, repo: "hexpm", optional: true]}, {:msgpax, "~> 2.3", [hex: :msgpax, repo: "hexpm", optional: true]}, {:poison, ">= 1.0.0", [hex: :poison, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: true]}], "hexpm", "10501f360cd926a309501287470372af1a6e1cbed0f43949203a4c13300bc79f"}, 16 + "timex": {:hex, :timex, "3.7.11", "bb95cb4eb1d06e27346325de506bcc6c30f9c6dea40d1ebe390b262fad1862d1", [:mix], [{:combine, "~> 0.10", [hex: :combine, repo: "hexpm", optional: false]}, {:gettext, "~> 0.20", [hex: :gettext, repo: "hexpm", optional: false]}, {:tzdata, "~> 1.1", [hex: :tzdata, repo: "hexpm", optional: false]}], "hexpm", "8b9024f7efbabaf9bd7aa04f65cf8dcd7c9818ca5737677c7b76acbc6a94d1aa"}, 17 + "trailing_format_plug": {:hex, :trailing_format_plug, "0.0.7", "64b877f912cf7273bed03379936df39894149e35137ac9509117e59866e10e45", [:mix], [{:plug, "> 0.12.0", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "bd4fde4c15f3e993a999e019d64347489b91b7a9096af68b2bdadd192afa693f"}, 18 + - "tzdata": {:hex, :tzdata, "1.1.1", "20c8043476dfda8504952d00adac41c6eda23912278add38edc140ae0c5bcc46", [:mix], [{:hackney, "~> 1.17", [hex: :hackney, repo: "hexpm", optional: false]}], "hexpm", "a69cec8352eafcd2e198dea28a34113b60fdc6cb57eb5ad65c10292a6ba89787"}, 19 + + "tzdata": {:hex, :tzdata, "1.1.2", "45e5f1fcf8729525ec27c65e163be5b3d247ab1702581a94674e008413eef50b", [:mix], [{:hackney, "~> 1.17", [hex: :hackney, repo: "hexpm", optional: false]}], "hexpm", "cec7b286e608371602318c414f344941d5eb0375e14cfdab605cca2fe66cba8b"}, 20 + "ueberauth": {:hex, :ueberauth, "0.10.5", "806adb703df87e55b5615cf365e809f84c20c68aa8c08ff8a416a5a6644c4b02", [:mix], [{:plug, "~> 1.5", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "3efd1f31d490a125c7ed453b926f7c31d78b97b8a854c755f5c40064bf3ac9e1"}, 21 + "unicode_util_compat": {:hex, :unicode_util_compat, "0.7.0", "bc84380c9ab48177092f43ac89e4dfa2c6d62b40b8bd132b1059ecc7232f9a78", [:rebar3], [], "hexpm", "25eee6d67df61960cf6a794239566599b09e17e668d3700247bc498638152521"}, 22 + "unsafe": {:hex, :unsafe, "1.0.2", "23c6be12f6c1605364801f4b47007c0c159497d0446ad378b5cf05f1855c0581", [:mix], [], "hexpm", "b485231683c3ab01a9cd44cb4a79f152c6f3bb87358439c6f68791b85c2df675"},
+2
pkgs/servers/akkoma/default.nix
··· 20 hash = "sha256-WZAkpJIPzAbqXawNiM3JqE9tJzxrNs/2dGAWVMwLpN4="; 21 }; 22 23 postPatch = '' 24 # Remove dependency on OS_Mon 25 sed -E -i 's/(^|\s):os_mon,//' \
··· 20 hash = "sha256-WZAkpJIPzAbqXawNiM3JqE9tJzxrNs/2dGAWVMwLpN4="; 21 }; 22 23 + patches = [ ./0001-fix-tzdata.patch ]; 24 + 25 postPatch = '' 26 # Remove dependency on OS_Mon 27 sed -E -i 's/(^|\s):os_mon,//' \
+139 -140
pkgs/servers/akkoma/mix.nix
··· 1 - { lib, beamPackages, overrides ? (x: y: { }) }: 2 3 let 4 buildRebar3 = lib.makeOverridable beamPackages.buildRebar3; ··· 62 63 benchee = buildMix rec { 64 name = "benchee"; 65 - version = "1.3.0"; 66 67 src = fetchHex { 68 pkg = "benchee"; 69 version = "${version}"; 70 - sha256 = "34f4294068c11b2bd2ebf2c59aac9c7da26ffa0068afdf3419f1b176e16c5f81"; 71 }; 72 73 beamDeps = [ deep_merge statistex ]; ··· 75 76 bunt = buildMix rec { 77 name = "bunt"; 78 - version = "1.0.0"; 79 80 src = fetchHex { 81 pkg = "bunt"; 82 version = "${version}"; 83 - sha256 = "dc5f86aa08a5f6fa6b8096f0735c4e76d54ae5c9fa2c143e5a1fc7c1cd9bb6b5"; 84 }; 85 86 - beamDeps = [ ]; 87 }; 88 89 cachex = buildMix rec { ··· 114 115 castore = buildMix rec { 116 name = "castore"; 117 - version = "1.0.6"; 118 119 src = fetchHex { 120 pkg = "castore"; 121 version = "${version}"; 122 - sha256 = "374c6e7ca752296be3d6780a6d5b922854ffcc74123da90f2f328996b962d33a"; 123 }; 124 125 - beamDeps = [ ]; 126 }; 127 128 certifi = buildRebar3 rec { ··· 135 sha256 = "ee68d85df22e554040cdb4be100f33873ac6051387baf6a8f6ce82272340ff1c"; 136 }; 137 138 - beamDeps = [ ]; 139 }; 140 141 combine = buildMix rec { ··· 148 sha256 = "1b1dbc1790073076580d0d1d64e42eae2366583e7aecd455d1215b0d16f2451b"; 149 }; 150 151 - beamDeps = [ ]; 152 }; 153 154 comeonin = buildMix rec { ··· 161 sha256 = "796393a9e50d01999d56b7b8420ab0481a7538d0caf80919da493b4a6e51faf1"; 162 }; 163 164 - beamDeps = [ ]; 165 }; 166 167 connection = buildMix rec { ··· 174 sha256 = "722c1eb0a418fbe91ba7bd59a47e28008a189d47e37e0e7bb85585a016b2869c"; 175 }; 176 177 - beamDeps = [ ]; 178 }; 179 180 cors_plug = buildMix rec { ··· 192 193 cowboy = buildErlangMk rec { 194 name = "cowboy"; 195 - version = "2.12.0"; 196 197 src = fetchHex { 198 pkg = "cowboy"; 199 version = "${version}"; 200 - sha256 = "8a7abe6d183372ceb21caa2709bec928ab2b72e18a3911aa1771639bef82651e"; 201 }; 202 203 beamDeps = [ cowlib ranch ]; ··· 218 219 cowlib = buildRebar3 rec { 220 name = "cowlib"; 221 - version = "2.13.0"; 222 223 src = fetchHex { 224 pkg = "cowlib"; 225 version = "${version}"; 226 - sha256 = "e1e1284dc3fc030a64b1ad0d8382ae7e99da46c3246b815318a4b848873800a4"; 227 }; 228 229 - beamDeps = [ ]; 230 }; 231 232 credo = buildMix rec { 233 name = "credo"; 234 - version = "1.7.5"; 235 236 src = fetchHex { 237 pkg = "credo"; 238 version = "${version}"; 239 - sha256 = "f799e9b5cd1891577d8c773d245668aa74a2fcd15eb277f51a0131690ebfb3fd"; 240 }; 241 242 beamDeps = [ bunt file_system jason ]; ··· 252 sha256 = "8df019facc5ec9603e94f7270f1ac73ddf339f56ade76a721eaa57c1493ba463"; 253 }; 254 255 - beamDeps = [ ]; 256 }; 257 258 db_connection = buildMix rec { ··· 278 sha256 = "53cfe5f497ed0e7771ae1a475575603d77425099ba5faef9394932b35020ffcc"; 279 }; 280 281 - beamDeps = [ ]; 282 }; 283 284 deep_merge = buildMix rec { ··· 291 sha256 = "ce708e5f094b9cd4e8f2be4f00d2f4250c4095be93f8cd6d018c753894885430"; 292 }; 293 294 - beamDeps = [ ]; 295 }; 296 297 dialyxir = buildMix rec { 298 name = "dialyxir"; 299 - version = "1.4.3"; 300 301 src = fetchHex { 302 pkg = "dialyxir"; 303 version = "${version}"; 304 - sha256 = "bf2cfb75cd5c5006bec30141b131663299c661a864ec7fbbc72dfa557487a986"; 305 }; 306 307 beamDeps = [ erlex ]; ··· 317 sha256 = "798d86db3d79964e759ddc0c077d5eb254968ed426399fbf5a62de2b5ff8910a"; 318 }; 319 320 - beamDeps = [ ]; 321 }; 322 323 earmark_parser = buildMix rec { ··· 330 sha256 = "06553a88d1f1846da9ef066b87b57c6f605552cfbe40d20bd8d59cc6bde41944"; 331 }; 332 333 - beamDeps = [ ]; 334 }; 335 336 eblurhash = buildRebar3 rec { ··· 343 sha256 = "8c20ca00904de023a835a9dcb7b7762fed32264c85a80c3cafa85288e405044c"; 344 }; 345 346 - beamDeps = [ ]; 347 }; 348 349 ecto = buildMix rec { ··· 374 375 ecto_psql_extras = buildMix rec { 376 name = "ecto_psql_extras"; 377 - version = "0.7.15"; 378 379 src = fetchHex { 380 pkg = "ecto_psql_extras"; 381 version = "${version}"; 382 - sha256 = "b6127f3a5c6fc3d84895e4768cc7c199f22b48b67d6c99b13fbf4a374e73f039"; 383 }; 384 385 beamDeps = [ ecto_sql postgrex table_rex ]; ··· 400 401 elixir_make = buildMix rec { 402 name = "elixir_make"; 403 - version = "0.8.3"; 404 405 src = fetchHex { 406 pkg = "elixir_make"; 407 version = "${version}"; 408 - sha256 = "5c99a18571a756d4af7a4d89ca75c28ac899e6103af6f223982f09ce44942cc9"; 409 }; 410 411 - beamDeps = [ castore certifi ]; 412 }; 413 414 elixir_xml_to_map = buildMix rec { 415 name = "elixir_xml_to_map"; 416 - version = "3.1.0"; 417 418 src = fetchHex { 419 pkg = "elixir_xml_to_map"; 420 version = "${version}"; 421 - sha256 = "8fe5f2e75f90bab07ee2161120c2dc038ebcae8135554f5582990f1c8c21f911"; 422 }; 423 424 beamDeps = [ erlsom ]; ··· 434 sha256 = "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"; 435 }; 436 437 - beamDeps = [ ]; 438 }; 439 440 erlsom = buildRebar3 rec { ··· 447 sha256 = "7965485494c5844dd127656ac40f141aadfa174839ec1be1074e7edf5b4239eb"; 448 }; 449 450 - beamDeps = [ ]; 451 }; 452 453 eternal = buildMix rec { ··· 460 sha256 = "2c9fe32b9c3726703ba5e1d43a1d255a4f3f2d8f8f9bc19f094c7cb1a7a9e782"; 461 }; 462 463 - beamDeps = [ ]; 464 }; 465 466 ex_aws = buildMix rec { 467 name = "ex_aws"; 468 - version = "2.5.3"; 469 470 src = fetchHex { 471 pkg = "ex_aws"; 472 version = "${version}"; 473 - sha256 = "67115f1d399d7ec4d191812ee565c6106cb4b1bbf19a9d4db06f265fd87da97e"; 474 }; 475 476 beamDeps = [ hackney jason mime sweet_xml telemetry ]; ··· 478 479 ex_aws_s3 = buildMix rec { 480 name = "ex_aws_s3"; 481 - version = "2.5.3"; 482 483 src = fetchHex { 484 pkg = "ex_aws_s3"; 485 version = "${version}"; 486 - sha256 = "4f09dd372cc386550e484808c5ac5027766c8d0cd8271ccc578b82ee6ef4f3b8"; 487 }; 488 489 beamDeps = [ ex_aws sweet_xml ]; ··· 499 sha256 = "96fd346610cc992b8f896ed26a98be82ac4efb065a0578f334a32d60a3ba9767"; 500 }; 501 502 - beamDeps = [ ]; 503 }; 504 505 ex_doc = buildMix rec { 506 name = "ex_doc"; 507 - version = "0.32.0"; 508 509 src = fetchHex { 510 pkg = "ex_doc"; 511 version = "${version}"; 512 - sha256 = "ed2c3e42c558f49bda3ff37e05713432006e1719a6c4a3320c7e4735787374e7"; 513 }; 514 515 beamDeps = [ earmark_parser makeup_elixir makeup_erlang ]; ··· 564 sha256 = "2ff7ba7a798c8c543c12550fa0e2cbc81b95d4974c65855d8d15ba7b37a1ce47"; 565 }; 566 567 - beamDeps = [ ]; 568 }; 569 570 fast_html = buildMix rec { 571 name = "fast_html"; 572 - version = "2.3.0"; 573 574 src = fetchHex { 575 pkg = "fast_html"; 576 version = "${version}"; 577 - sha256 = "f18e3c7668f82d3ae0b15f48d48feeb257e28aa5ab1b0dbf781c7312e5da029d"; 578 }; 579 580 beamDeps = [ elixir_make nimble_pool ]; ··· 595 596 file_system = buildMix rec { 597 name = "file_system"; 598 - version = "1.0.0"; 599 600 src = fetchHex { 601 pkg = "file_system"; 602 version = "${version}"; 603 - sha256 = "6752092d66aec5a10e662aefeed8ddb9531d79db0bc145bb8c40325ca1d8536d"; 604 }; 605 606 - beamDeps = [ ]; 607 }; 608 609 finch = buildMix rec { ··· 634 635 floki = buildMix rec { 636 name = "floki"; 637 - version = "0.36.1"; 638 639 src = fetchHex { 640 pkg = "floki"; 641 version = "${version}"; 642 - sha256 = "21ba57abb8204bcc70c439b423fc0dd9f0286de67dc82773a14b0200ada0995f"; 643 }; 644 645 - beamDeps = [ ]; 646 }; 647 648 gen_smtp = buildRebar3 rec { ··· 694 sha256 = "2c87843d5a23f5f16748ebe77969880e29809580efdaccd615cd3bed628a8c13"; 695 }; 696 697 - beamDeps = [ ]; 698 }; 699 700 html_entities = buildMix rec { ··· 707 sha256 = "c53ba390403485615623b9531e97696f076ed415e8d8058b1dbaa28181f4fdcc"; 708 }; 709 710 - beamDeps = [ ]; 711 }; 712 713 httpoison = buildMix rec { ··· 738 739 inet_cidr = buildMix rec { 740 name = "inet_cidr"; 741 - version = "1.0.8"; 742 743 src = fetchHex { 744 pkg = "inet_cidr"; 745 version = "${version}"; 746 - sha256 = "d5b26da66603bb56c933c65214c72152f0de9a6ea53618b56d63302a68f6a90e"; 747 }; 748 749 - beamDeps = [ ]; 750 }; 751 752 jason = buildMix rec { ··· 764 765 joken = buildMix rec { 766 name = "joken"; 767 - version = "2.6.1"; 768 769 src = fetchHex { 770 pkg = "joken"; 771 version = "${version}"; 772 - sha256 = "ab26122c400b3d254ce7d86ed066d6afad27e70416df947cdcb01e13a7382e68"; 773 }; 774 775 beamDeps = [ jose ]; ··· 777 778 jose = buildMix rec { 779 name = "jose"; 780 - version = "1.11.9"; 781 782 src = fetchHex { 783 pkg = "jose"; 784 version = "${version}"; 785 - sha256 = "b5ccc3749d2e1638c26bed806259df5bc9e438797fe60dc71e9fa0716133899b"; 786 }; 787 788 - beamDeps = [ ]; 789 }; 790 791 jumper = buildMix rec { ··· 798 sha256 = "9b7782409021e01ab3c08270e26f36eb62976a38c1aa64b2eaf6348422f165e1"; 799 }; 800 801 - beamDeps = [ ]; 802 }; 803 804 mail = buildMix rec { ··· 811 sha256 = "1db701e89865c1d5fa296b2b57b1cd587587cca8d8a1a22892b35ef5a8e352a6"; 812 }; 813 814 - beamDeps = [ ]; 815 }; 816 817 makeup = buildMix rec { ··· 829 830 makeup_elixir = buildMix rec { 831 name = "makeup_elixir"; 832 - version = "0.16.2"; 833 834 src = fetchHex { 835 pkg = "makeup_elixir"; 836 version = "${version}"; 837 - sha256 = "41193978704763f6bbe6cc2758b84909e62984c7752b3784bd3c218bb341706b"; 838 }; 839 840 beamDeps = [ makeup nimble_parsec ]; ··· 842 843 makeup_erlang = buildMix rec { 844 name = "makeup_erlang"; 845 - version = "0.1.5"; 846 847 src = fetchHex { 848 pkg = "makeup_erlang"; 849 version = "${version}"; 850 - sha256 = "94d2e986428585a21516d7d7149781480013c56e30c6a233534bedf38867a59a"; 851 }; 852 853 beamDeps = [ makeup ]; ··· 863 sha256 = "81344f561357dc40a8344afa53767c32669153355b626ea9fcbc8da6b3045826"; 864 }; 865 866 - beamDeps = [ ]; 867 }; 868 869 metrics = buildRebar3 rec { ··· 876 sha256 = "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"; 877 }; 878 879 - beamDeps = [ ]; 880 }; 881 882 mime = buildMix rec { ··· 889 sha256 = "da0d64a365c45bc9935cc5c8a7fc5e49a0e0f9932a761c55d6c52b142780a05c"; 890 }; 891 892 - beamDeps = [ ]; 893 }; 894 895 mimerl = buildRebar3 rec { 896 name = "mimerl"; 897 - version = "1.2.0"; 898 899 src = fetchHex { 900 pkg = "mimerl"; 901 version = "${version}"; 902 - sha256 = "f278585650aa581986264638ebf698f8bb19df297f66ad91b18910dfc6e19323"; 903 }; 904 905 - beamDeps = [ ]; 906 }; 907 908 mint = buildMix rec { ··· 941 sha256 = "0189b1e1de27455f2b9ae8cf88239cefd23d38de9276eb5add7159aea51731e6"; 942 }; 943 944 - beamDeps = [ ]; 945 }; 946 947 mox = buildMix rec { ··· 954 sha256 = "d44474c50be02d5b72131070281a5d3895c0e7a95c780e90bc0cfe712f633a13"; 955 }; 956 957 - beamDeps = [ ]; 958 }; 959 960 nimble_options = buildMix rec { ··· 967 sha256 = "8bbbb3941af3ca9acc7835f5655ea062111c9c27bcac53e004460dfd19008a99"; 968 }; 969 970 - beamDeps = [ ]; 971 }; 972 973 nimble_parsec = buildMix rec { ··· 980 sha256 = "9c565862810fb383e9838c1dd2d7d2c437b3d13b267414ba6af33e50d2d1cf28"; 981 }; 982 983 - beamDeps = [ ]; 984 }; 985 986 nimble_pool = buildMix rec { 987 name = "nimble_pool"; 988 - version = "1.1.0"; 989 990 src = fetchHex { 991 pkg = "nimble_pool"; 992 version = "${version}"; 993 - sha256 = "af2e4e6b34197db81f7aad230c1118eac993acc0dae6bc83bac0126d4ae0813a"; 994 }; 995 996 - beamDeps = [ ]; 997 }; 998 999 oban = buildMix rec { 1000 name = "oban"; 1001 - version = "2.17.8"; 1002 1003 src = fetchHex { 1004 pkg = "oban"; 1005 version = "${version}"; 1006 - sha256 = "a2165bf93843b7bcb68182c82725ddd4cb43c0c3719f114e7aa3b6c99c4b6129"; 1007 }; 1008 1009 beamDeps = [ ecto_sql jason postgrex telemetry ]; ··· 1011 1012 open_api_spex = buildMix rec { 1013 name = "open_api_spex"; 1014 - version = "3.18.3"; 1015 1016 src = fetchHex { 1017 pkg = "open_api_spex"; 1018 version = "${version}"; 1019 - sha256 = "c0cfc31570199ce7e7520b494a591027da609af45f6bf9adce51e2469b1609fb"; 1020 }; 1021 1022 beamDeps = [ jason plug poison ]; ··· 1032 sha256 = "620a406ce75dada827b82e453c19cf06776be266f5a67cff34e1ef2cbb60e49a"; 1033 }; 1034 1035 - beamDeps = [ ]; 1036 }; 1037 1038 phoenix = buildMix rec { 1039 name = "phoenix"; 1040 - version = "1.7.12"; 1041 1042 src = fetchHex { 1043 pkg = "phoenix"; 1044 version = "${version}"; 1045 - sha256 = "d646192fbade9f485b01bc9920c139bfdd19d0f8df3d73fd8eaf2dfbe0d2837c"; 1046 }; 1047 1048 beamDeps = [ castore jason phoenix_pubsub phoenix_template phoenix_view plug plug_cowboy plug_crypto telemetry websock_adapter ]; ··· 1050 1051 phoenix_ecto = buildMix rec { 1052 name = "phoenix_ecto"; 1053 - version = "4.5.1"; 1054 1055 src = fetchHex { 1056 pkg = "phoenix_ecto"; 1057 version = "${version}"; 1058 - sha256 = "ebe43aa580db129e54408e719fb9659b7f9e0d52b965c5be26cdca416ecead28"; 1059 }; 1060 1061 beamDeps = [ ecto phoenix_html plug ]; ··· 1110 sha256 = "bba06bc1dcfd8cb086759f0edc94a8ba2bc8896d5331a1e2c2902bf8e36ee502"; 1111 }; 1112 1113 - beamDeps = [ ]; 1114 }; 1115 1116 phoenix_swoosh = buildMix rec { 1117 name = "phoenix_swoosh"; 1118 - version = "1.2.1"; 1119 1120 src = fetchHex { 1121 pkg = "phoenix_swoosh"; 1122 version = "${version}"; 1123 - sha256 = "4000eeba3f9d7d1a6bf56d2bd56733d5cadf41a7f0d8ffe5bb67e7d667e204a2"; 1124 }; 1125 1126 beamDeps = [ finch hackney phoenix phoenix_html phoenix_view swoosh ]; ··· 1128 1129 phoenix_template = buildMix rec { 1130 name = "phoenix_template"; 1131 - version = "1.0.4"; 1132 1133 src = fetchHex { 1134 pkg = "phoenix_template"; 1135 version = "${version}"; 1136 - sha256 = "2c0c81f0e5c6753faf5cca2f229c9709919aba34fab866d3bc05060c9c444206"; 1137 }; 1138 1139 beamDeps = [ phoenix_html ]; ··· 1154 1155 plug = buildMix rec { 1156 name = "plug"; 1157 - version = "1.15.3"; 1158 1159 src = fetchHex { 1160 pkg = "plug"; 1161 version = "${version}"; 1162 - sha256 = "cc4365a3c010a56af402e0809208873d113e9c38c401cabd88027ef4f5c01fd2"; 1163 }; 1164 1165 beamDeps = [ mime plug_crypto telemetry ]; ··· 1167 1168 plug_cowboy = buildMix rec { 1169 name = "plug_cowboy"; 1170 - version = "2.7.1"; 1171 1172 src = fetchHex { 1173 pkg = "plug_cowboy"; 1174 version = "${version}"; 1175 - sha256 = "02dbd5f9ab571b864ae39418db7811618506256f6d13b4a45037e5fe78dc5de3"; 1176 }; 1177 1178 beamDeps = [ cowboy cowboy_telemetry plug ]; ··· 1188 sha256 = "53695bae57cc4e54566d993eb01074e4d894b65a3766f1c43e2c61a1b0f45ea9"; 1189 }; 1190 1191 - beamDeps = [ ]; 1192 }; 1193 1194 plug_static_index_html = buildMix rec { ··· 1227 sha256 = "dad79704ce5440f3d5a3681c8590b9dc25d1a561e8f5a9c995281012860901e3"; 1228 }; 1229 1230 - beamDeps = [ ]; 1231 }; 1232 1233 postgrex = buildMix rec { 1234 name = "postgrex"; 1235 - version = "0.17.5"; 1236 1237 src = fetchHex { 1238 pkg = "postgrex"; 1239 version = "${version}"; 1240 - sha256 = "50b8b11afbb2c4095a3ba675b4f055c416d0f3d7de6633a595fc131a828a67eb"; 1241 }; 1242 1243 beamDeps = [ db_connection decimal jason ]; ··· 1253 sha256 = "78fe127f5a4f5f919d6ea5a2a671827bd53eb9d37e5b4128c0ad3df99856c2e0"; 1254 }; 1255 1256 - beamDeps = [ ]; 1257 }; 1258 1259 ranch = buildRebar3 rec { ··· 1266 sha256 = "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"; 1267 }; 1268 1269 - beamDeps = [ ]; 1270 }; 1271 1272 recon = buildMix rec { 1273 name = "recon"; 1274 - version = "2.5.5"; 1275 1276 src = fetchHex { 1277 pkg = "recon"; 1278 version = "${version}"; 1279 - sha256 = "632a6f447df7ccc1a4a10bdcfce71514412b16660fe59deca0fcf0aa3c054404"; 1280 }; 1281 1282 - beamDeps = [ ]; 1283 }; 1284 1285 remote_ip = buildMix rec { ··· 1305 sha256 = "9fe5d048c5b781d6305c1a3a0f40bb3dfc06f49bf40571f3d2d0c57eaa7f59a5"; 1306 }; 1307 1308 - beamDeps = [ ]; 1309 }; 1310 1311 ssl_verify_fun = buildRebar3 rec { ··· 1318 sha256 = "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8"; 1319 }; 1320 1321 - beamDeps = [ ]; 1322 }; 1323 1324 statistex = buildMix rec { ··· 1331 sha256 = "ff9d8bee7035028ab4742ff52fc80a2aa35cece833cf5319009b52f1b5a86c27"; 1332 }; 1333 1334 - beamDeps = [ ]; 1335 }; 1336 1337 sweet_xml = buildMix rec { ··· 1344 sha256 = "e7c4b0bdbf460c928234951def54fe87edf1a170f6896675443279e2dbeba167"; 1345 }; 1346 1347 - beamDeps = [ ]; 1348 }; 1349 1350 swoosh = buildMix rec { 1351 name = "swoosh"; 1352 - version = "1.14.4"; 1353 1354 src = fetchHex { 1355 pkg = "swoosh"; 1356 version = "${version}"; 1357 - sha256 = "081c5a590e4ba85cc89baddf7b2beecf6c13f7f84a958f1cd969290815f0f026"; 1358 }; 1359 1360 beamDeps = [ cowboy ex_aws finch gen_smtp hackney jason mail mime plug plug_cowboy telemetry ]; ··· 1370 sha256 = "4c6a41373c7e20587be33ef841d3de6f3beba08519809329ecc4d27b15b659e1"; 1371 }; 1372 1373 - beamDeps = [ ]; 1374 }; 1375 1376 table_rex = buildMix rec { 1377 name = "table_rex"; 1378 - version = "4.0.0"; 1379 1380 src = fetchHex { 1381 pkg = "table_rex"; 1382 version = "${version}"; 1383 - sha256 = "c35c4d5612ca49ebb0344ea10387da4d2afe278387d4019e4d8111e815df8f55"; 1384 }; 1385 1386 - beamDeps = [ ]; 1387 }; 1388 1389 telemetry = buildRebar3 rec { ··· 1396 sha256 = "dad9ce9d8effc621708f99eac538ef1cbe05d6a874dd741de2e689c47feafed5"; 1397 }; 1398 1399 - beamDeps = [ ]; 1400 }; 1401 1402 telemetry_metrics = buildMix rec { 1403 name = "telemetry_metrics"; 1404 - version = "0.6.2"; 1405 1406 src = fetchHex { 1407 pkg = "telemetry_metrics"; 1408 version = "${version}"; 1409 - sha256 = "9b43db0dc33863930b9ef9d27137e78974756f5f198cae18409970ed6fa5b561"; 1410 }; 1411 1412 beamDeps = [ telemetry ]; ··· 1440 1441 telemetry_poller = buildRebar3 rec { 1442 name = "telemetry_poller"; 1443 - version = "1.1.0"; 1444 1445 src = fetchHex { 1446 pkg = "telemetry_poller"; 1447 version = "${version}"; 1448 - sha256 = "9eb9d9cbfd81cbd7cdd24682f8711b6e2b691289a0de6826e58452f28c103c8f"; 1449 }; 1450 1451 beamDeps = [ telemetry ]; ··· 1453 1454 tesla = buildMix rec { 1455 name = "tesla"; 1456 - version = "1.9.0"; 1457 1458 src = fetchHex { 1459 pkg = "tesla"; 1460 version = "${version}"; 1461 - sha256 = "7c240c67e855f7e63e795bf16d6b3f5115a81d1f44b7fe4eadbf656bae0fef8a"; 1462 }; 1463 1464 beamDeps = [ castore finch hackney jason mime mint poison telemetry ]; ··· 1492 1493 tzdata = buildMix rec { 1494 name = "tzdata"; 1495 - version = "1.1.1"; 1496 1497 src = fetchHex { 1498 pkg = "tzdata"; 1499 version = "${version}"; 1500 - sha256 = "a69cec8352eafcd2e198dea28a34113b60fdc6cb57eb5ad65c10292a6ba89787"; 1501 }; 1502 1503 beamDeps = [ hackney ]; ··· 1526 sha256 = "25eee6d67df61960cf6a794239566599b09e17e668d3700247bc498638152521"; 1527 }; 1528 1529 - beamDeps = [ ]; 1530 }; 1531 1532 unsafe = buildMix rec { ··· 1539 sha256 = "b485231683c3ab01a9cd44cb4a79f152c6f3bb87358439c6f68791b85c2df675"; 1540 }; 1541 1542 - beamDeps = [ ]; 1543 }; 1544 1545 vex = buildMix rec { 1546 name = "vex"; 1547 - version = "0.9.2"; 1548 1549 src = fetchHex { 1550 pkg = "vex"; 1551 version = "${version}"; 1552 - sha256 = "76e709a9762e98c6b462dfce92e9b5dfbf712839227f2da8add6dd11549b12cb"; 1553 }; 1554 1555 - beamDeps = [ ]; 1556 }; 1557 1558 web_push_encryption = buildMix rec { ··· 1578 sha256 = "6105453d7fac22c712ad66fab1d45abdf049868f253cf719b625151460b8b453"; 1579 }; 1580 1581 - beamDeps = [ ]; 1582 }; 1583 1584 websock_adapter = buildMix rec { 1585 name = "websock_adapter"; 1586 - version = "0.5.6"; 1587 1588 src = fetchHex { 1589 pkg = "websock_adapter"; 1590 version = "${version}"; 1591 - sha256 = "e04378d26b0af627817ae84c92083b7e97aca3121196679b73c73b99d0d133ea"; 1592 }; 1593 1594 beamDeps = [ plug plug_cowboy websock ]; ··· 1604 sha256 = "95f2e7072b85a3a4cc385602d42115b73ce0b74a9121d0d6dbbf557645ac53e4"; 1605 }; 1606 1607 - beamDeps = [ ]; 1608 }; 1609 }; 1610 - in 1611 - self 1612
··· 1 + { lib, beamPackages, overrides ? (x: y: {}) }: 2 3 let 4 buildRebar3 = lib.makeOverridable beamPackages.buildRebar3; ··· 62 63 benchee = buildMix rec { 64 name = "benchee"; 65 + version = "1.2.0"; 66 67 src = fetchHex { 68 pkg = "benchee"; 69 version = "${version}"; 70 + sha256 = "ee729e53217898b8fd30aaad3cce61973dab61574ae6f48229fe7ff42d5e4457"; 71 }; 72 73 beamDeps = [ deep_merge statistex ]; ··· 75 76 bunt = buildMix rec { 77 name = "bunt"; 78 + version = "0.2.1"; 79 80 src = fetchHex { 81 pkg = "bunt"; 82 version = "${version}"; 83 + sha256 = "a330bfb4245239787b15005e66ae6845c9cd524a288f0d141c148b02603777a5"; 84 }; 85 86 + beamDeps = []; 87 }; 88 89 cachex = buildMix rec { ··· 114 115 castore = buildMix rec { 116 name = "castore"; 117 + version = "1.0.5"; 118 119 src = fetchHex { 120 pkg = "castore"; 121 version = "${version}"; 122 + sha256 = "8d7c597c3e4a64c395980882d4bca3cebb8d74197c590dc272cfd3b6a6310578"; 123 }; 124 125 + beamDeps = []; 126 }; 127 128 certifi = buildRebar3 rec { ··· 135 sha256 = "ee68d85df22e554040cdb4be100f33873ac6051387baf6a8f6ce82272340ff1c"; 136 }; 137 138 + beamDeps = []; 139 }; 140 141 combine = buildMix rec { ··· 148 sha256 = "1b1dbc1790073076580d0d1d64e42eae2366583e7aecd455d1215b0d16f2451b"; 149 }; 150 151 + beamDeps = []; 152 }; 153 154 comeonin = buildMix rec { ··· 161 sha256 = "796393a9e50d01999d56b7b8420ab0481a7538d0caf80919da493b4a6e51faf1"; 162 }; 163 164 + beamDeps = []; 165 }; 166 167 connection = buildMix rec { ··· 174 sha256 = "722c1eb0a418fbe91ba7bd59a47e28008a189d47e37e0e7bb85585a016b2869c"; 175 }; 176 177 + beamDeps = []; 178 }; 179 180 cors_plug = buildMix rec { ··· 192 193 cowboy = buildErlangMk rec { 194 name = "cowboy"; 195 + version = "2.10.0"; 196 197 src = fetchHex { 198 pkg = "cowboy"; 199 version = "${version}"; 200 + sha256 = "3afdccb7183cc6f143cb14d3cf51fa00e53db9ec80cdcd525482f5e99bc41d6b"; 201 }; 202 203 beamDeps = [ cowlib ranch ]; ··· 218 219 cowlib = buildRebar3 rec { 220 name = "cowlib"; 221 + version = "2.12.1"; 222 223 src = fetchHex { 224 pkg = "cowlib"; 225 version = "${version}"; 226 + sha256 = "163b73f6367a7341b33c794c4e88e7dbfe6498ac42dcd69ef44c5bc5507c8db0"; 227 }; 228 229 + beamDeps = []; 230 }; 231 232 credo = buildMix rec { 233 name = "credo"; 234 + version = "1.7.1"; 235 236 src = fetchHex { 237 pkg = "credo"; 238 version = "${version}"; 239 + sha256 = "e9871c6095a4c0381c89b6aa98bc6260a8ba6addccf7f6a53da8849c748a58a2"; 240 }; 241 242 beamDeps = [ bunt file_system jason ]; ··· 252 sha256 = "8df019facc5ec9603e94f7270f1ac73ddf339f56ade76a721eaa57c1493ba463"; 253 }; 254 255 + beamDeps = []; 256 }; 257 258 db_connection = buildMix rec { ··· 278 sha256 = "53cfe5f497ed0e7771ae1a475575603d77425099ba5faef9394932b35020ffcc"; 279 }; 280 281 + beamDeps = []; 282 }; 283 284 deep_merge = buildMix rec { ··· 291 sha256 = "ce708e5f094b9cd4e8f2be4f00d2f4250c4095be93f8cd6d018c753894885430"; 292 }; 293 294 + beamDeps = []; 295 }; 296 297 dialyxir = buildMix rec { 298 name = "dialyxir"; 299 + version = "1.4.2"; 300 301 src = fetchHex { 302 pkg = "dialyxir"; 303 version = "${version}"; 304 + sha256 = "516603d8067b2fd585319e4b13d3674ad4f314a5902ba8130cd97dc902ce6bbd"; 305 }; 306 307 beamDeps = [ erlex ]; ··· 317 sha256 = "798d86db3d79964e759ddc0c077d5eb254968ed426399fbf5a62de2b5ff8910a"; 318 }; 319 320 + beamDeps = []; 321 }; 322 323 earmark_parser = buildMix rec { ··· 330 sha256 = "06553a88d1f1846da9ef066b87b57c6f605552cfbe40d20bd8d59cc6bde41944"; 331 }; 332 333 + beamDeps = []; 334 }; 335 336 eblurhash = buildRebar3 rec { ··· 343 sha256 = "8c20ca00904de023a835a9dcb7b7762fed32264c85a80c3cafa85288e405044c"; 344 }; 345 346 + beamDeps = []; 347 }; 348 349 ecto = buildMix rec { ··· 374 375 ecto_psql_extras = buildMix rec { 376 name = "ecto_psql_extras"; 377 + version = "0.7.14"; 378 379 src = fetchHex { 380 pkg = "ecto_psql_extras"; 381 version = "${version}"; 382 + sha256 = "22f5f98592dd597db9416fcef00effae0787669fdcb6faf447e982b553798e98"; 383 }; 384 385 beamDeps = [ ecto_sql postgrex table_rex ]; ··· 400 401 elixir_make = buildMix rec { 402 name = "elixir_make"; 403 + version = "0.7.7"; 404 405 src = fetchHex { 406 pkg = "elixir_make"; 407 version = "${version}"; 408 + sha256 = "5bc19fff950fad52bbe5f211b12db9ec82c6b34a9647da0c2224b8b8464c7e6c"; 409 }; 410 411 + beamDeps = [ castore ]; 412 }; 413 414 elixir_xml_to_map = buildMix rec { 415 name = "elixir_xml_to_map"; 416 + version = "3.0.0"; 417 418 src = fetchHex { 419 pkg = "elixir_xml_to_map"; 420 version = "${version}"; 421 + sha256 = "11222dd7f029f8db7a6662b41c992dbdb0e1c6e4fdea6a42056f9d27c847efbb"; 422 }; 423 424 beamDeps = [ erlsom ]; ··· 434 sha256 = "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"; 435 }; 436 437 + beamDeps = []; 438 }; 439 440 erlsom = buildRebar3 rec { ··· 447 sha256 = "7965485494c5844dd127656ac40f141aadfa174839ec1be1074e7edf5b4239eb"; 448 }; 449 450 + beamDeps = []; 451 }; 452 453 eternal = buildMix rec { ··· 460 sha256 = "2c9fe32b9c3726703ba5e1d43a1d255a4f3f2d8f8f9bc19f094c7cb1a7a9e782"; 461 }; 462 463 + beamDeps = []; 464 }; 465 466 ex_aws = buildMix rec { 467 name = "ex_aws"; 468 + version = "2.5.0"; 469 470 src = fetchHex { 471 pkg = "ex_aws"; 472 version = "${version}"; 473 + sha256 = "971b86e5495fc0ae1c318e35e23f389e74cf322f2c02d34037c6fc6d405006f1"; 474 }; 475 476 beamDeps = [ hackney jason mime sweet_xml telemetry ]; ··· 478 479 ex_aws_s3 = buildMix rec { 480 name = "ex_aws_s3"; 481 + version = "2.5.2"; 482 483 src = fetchHex { 484 pkg = "ex_aws_s3"; 485 version = "${version}"; 486 + sha256 = "cc5bd945a22a99eece4721d734ae2452d3717e81c357a781c8574663254df4a1"; 487 }; 488 489 beamDeps = [ ex_aws sweet_xml ]; ··· 499 sha256 = "96fd346610cc992b8f896ed26a98be82ac4efb065a0578f334a32d60a3ba9767"; 500 }; 501 502 + beamDeps = []; 503 }; 504 505 ex_doc = buildMix rec { 506 name = "ex_doc"; 507 + version = "0.31.0"; 508 509 src = fetchHex { 510 pkg = "ex_doc"; 511 version = "${version}"; 512 + sha256 = "5350cafa6b7f77bdd107aa2199fe277acf29d739aba5aee7e865fc680c62a110"; 513 }; 514 515 beamDeps = [ earmark_parser makeup_elixir makeup_erlang ]; ··· 564 sha256 = "2ff7ba7a798c8c543c12550fa0e2cbc81b95d4974c65855d8d15ba7b37a1ce47"; 565 }; 566 567 + beamDeps = []; 568 }; 569 570 fast_html = buildMix rec { 571 name = "fast_html"; 572 + version = "2.2.0"; 573 574 src = fetchHex { 575 pkg = "fast_html"; 576 version = "${version}"; 577 + sha256 = "064c4f23b4a6168f9187dac8984b056f2c531bb0787f559fd6a8b34b38aefbae"; 578 }; 579 580 beamDeps = [ elixir_make nimble_pool ]; ··· 595 596 file_system = buildMix rec { 597 name = "file_system"; 598 + version = "0.2.10"; 599 600 src = fetchHex { 601 pkg = "file_system"; 602 version = "${version}"; 603 + sha256 = "41195edbfb562a593726eda3b3e8b103a309b733ad25f3d642ba49696bf715dc"; 604 }; 605 606 + beamDeps = []; 607 }; 608 609 finch = buildMix rec { ··· 634 635 floki = buildMix rec { 636 name = "floki"; 637 + version = "0.35.2"; 638 639 src = fetchHex { 640 pkg = "floki"; 641 version = "${version}"; 642 + sha256 = "6b05289a8e9eac475f644f09c2e4ba7e19201fd002b89c28c1293e7bd16773d9"; 643 }; 644 645 + beamDeps = []; 646 }; 647 648 gen_smtp = buildRebar3 rec { ··· 694 sha256 = "2c87843d5a23f5f16748ebe77969880e29809580efdaccd615cd3bed628a8c13"; 695 }; 696 697 + beamDeps = []; 698 }; 699 700 html_entities = buildMix rec { ··· 707 sha256 = "c53ba390403485615623b9531e97696f076ed415e8d8058b1dbaa28181f4fdcc"; 708 }; 709 710 + beamDeps = []; 711 }; 712 713 httpoison = buildMix rec { ··· 738 739 inet_cidr = buildMix rec { 740 name = "inet_cidr"; 741 + version = "1.0.4"; 742 743 src = fetchHex { 744 pkg = "inet_cidr"; 745 version = "${version}"; 746 + sha256 = "64a2d30189704ae41ca7dbdd587f5291db5d1dda1414e0774c29ffc81088c1bc"; 747 }; 748 749 + beamDeps = []; 750 }; 751 752 jason = buildMix rec { ··· 764 765 joken = buildMix rec { 766 name = "joken"; 767 + version = "2.6.0"; 768 769 src = fetchHex { 770 pkg = "joken"; 771 version = "${version}"; 772 + sha256 = "5a95b05a71cd0b54abd35378aeb1d487a23a52c324fa7efdffc512b655b5aaa7"; 773 }; 774 775 beamDeps = [ jose ]; ··· 777 778 jose = buildMix rec { 779 name = "jose"; 780 + version = "1.11.6"; 781 782 src = fetchHex { 783 pkg = "jose"; 784 version = "${version}"; 785 + sha256 = "6275cb75504f9c1e60eeacb771adfeee4905a9e182103aa59b53fed651ff9738"; 786 }; 787 788 + beamDeps = []; 789 }; 790 791 jumper = buildMix rec { ··· 798 sha256 = "9b7782409021e01ab3c08270e26f36eb62976a38c1aa64b2eaf6348422f165e1"; 799 }; 800 801 + beamDeps = []; 802 }; 803 804 mail = buildMix rec { ··· 811 sha256 = "1db701e89865c1d5fa296b2b57b1cd587587cca8d8a1a22892b35ef5a8e352a6"; 812 }; 813 814 + beamDeps = []; 815 }; 816 817 makeup = buildMix rec { ··· 829 830 makeup_elixir = buildMix rec { 831 name = "makeup_elixir"; 832 + version = "0.16.1"; 833 834 src = fetchHex { 835 pkg = "makeup_elixir"; 836 version = "${version}"; 837 + sha256 = "e127a341ad1b209bd80f7bd1620a15693a9908ed780c3b763bccf7d200c767c6"; 838 }; 839 840 beamDeps = [ makeup nimble_parsec ]; ··· 842 843 makeup_erlang = buildMix rec { 844 name = "makeup_erlang"; 845 + version = "0.1.3"; 846 847 src = fetchHex { 848 pkg = "makeup_erlang"; 849 version = "${version}"; 850 + sha256 = "b78dc853d2e670ff6390b605d807263bf606da3c82be37f9d7f68635bd886fc9"; 851 }; 852 853 beamDeps = [ makeup ]; ··· 863 sha256 = "81344f561357dc40a8344afa53767c32669153355b626ea9fcbc8da6b3045826"; 864 }; 865 866 + beamDeps = []; 867 }; 868 869 metrics = buildRebar3 rec { ··· 876 sha256 = "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"; 877 }; 878 879 + beamDeps = []; 880 }; 881 882 mime = buildMix rec { ··· 889 sha256 = "da0d64a365c45bc9935cc5c8a7fc5e49a0e0f9932a761c55d6c52b142780a05c"; 890 }; 891 892 + beamDeps = []; 893 }; 894 895 mimerl = buildRebar3 rec { 896 name = "mimerl"; 897 + version = "1.3.0"; 898 899 src = fetchHex { 900 pkg = "mimerl"; 901 version = "${version}"; 902 + sha256 = "a1e15a50d1887217de95f0b9b0793e32853f7c258a5cd227650889b38839fe9d"; 903 }; 904 905 + beamDeps = []; 906 }; 907 908 mint = buildMix rec { ··· 941 sha256 = "0189b1e1de27455f2b9ae8cf88239cefd23d38de9276eb5add7159aea51731e6"; 942 }; 943 944 + beamDeps = []; 945 }; 946 947 mox = buildMix rec { ··· 954 sha256 = "d44474c50be02d5b72131070281a5d3895c0e7a95c780e90bc0cfe712f633a13"; 955 }; 956 957 + beamDeps = []; 958 }; 959 960 nimble_options = buildMix rec { ··· 967 sha256 = "8bbbb3941af3ca9acc7835f5655ea062111c9c27bcac53e004460dfd19008a99"; 968 }; 969 970 + beamDeps = []; 971 }; 972 973 nimble_parsec = buildMix rec { ··· 980 sha256 = "9c565862810fb383e9838c1dd2d7d2c437b3d13b267414ba6af33e50d2d1cf28"; 981 }; 982 983 + beamDeps = []; 984 }; 985 986 nimble_pool = buildMix rec { 987 name = "nimble_pool"; 988 + version = "1.0.0"; 989 990 src = fetchHex { 991 pkg = "nimble_pool"; 992 version = "${version}"; 993 + sha256 = "80be3b882d2d351882256087078e1b1952a28bf98d0a287be87e4a24a710b67a"; 994 }; 995 996 + beamDeps = []; 997 }; 998 999 oban = buildMix rec { 1000 name = "oban"; 1001 + version = "2.15.4"; 1002 1003 src = fetchHex { 1004 pkg = "oban"; 1005 version = "${version}"; 1006 + sha256 = "5fce611fdfffb13e9148df883116e5201adf1e731eb302cc88cde0588510079c"; 1007 }; 1008 1009 beamDeps = [ ecto_sql jason postgrex telemetry ]; ··· 1011 1012 open_api_spex = buildMix rec { 1013 name = "open_api_spex"; 1014 + version = "3.18.0"; 1015 1016 src = fetchHex { 1017 pkg = "open_api_spex"; 1018 version = "${version}"; 1019 + sha256 = "37849887ab67efab052376401fac28c0974b273ffaecd98f4532455ca0886464"; 1020 }; 1021 1022 beamDeps = [ jason plug poison ]; ··· 1032 sha256 = "620a406ce75dada827b82e453c19cf06776be266f5a67cff34e1ef2cbb60e49a"; 1033 }; 1034 1035 + beamDeps = []; 1036 }; 1037 1038 phoenix = buildMix rec { 1039 name = "phoenix"; 1040 + version = "1.7.10"; 1041 1042 src = fetchHex { 1043 pkg = "phoenix"; 1044 version = "${version}"; 1045 + sha256 = "cf784932e010fd736d656d7fead6a584a4498efefe5b8227e9f383bf15bb79d0"; 1046 }; 1047 1048 beamDeps = [ castore jason phoenix_pubsub phoenix_template phoenix_view plug plug_cowboy plug_crypto telemetry websock_adapter ]; ··· 1050 1051 phoenix_ecto = buildMix rec { 1052 name = "phoenix_ecto"; 1053 + version = "4.4.3"; 1054 1055 src = fetchHex { 1056 pkg = "phoenix_ecto"; 1057 version = "${version}"; 1058 + sha256 = "d36c401206f3011fefd63d04e8ef626ec8791975d9d107f9a0817d426f61ac07"; 1059 }; 1060 1061 beamDeps = [ ecto phoenix_html plug ]; ··· 1110 sha256 = "bba06bc1dcfd8cb086759f0edc94a8ba2bc8896d5331a1e2c2902bf8e36ee502"; 1111 }; 1112 1113 + beamDeps = []; 1114 }; 1115 1116 phoenix_swoosh = buildMix rec { 1117 name = "phoenix_swoosh"; 1118 + version = "1.2.0"; 1119 1120 src = fetchHex { 1121 pkg = "phoenix_swoosh"; 1122 version = "${version}"; 1123 + sha256 = "e88d117251e89a16b92222415a6d87b99a96747ddf674fc5c7631de734811dba"; 1124 }; 1125 1126 beamDeps = [ finch hackney phoenix phoenix_html phoenix_view swoosh ]; ··· 1128 1129 phoenix_template = buildMix rec { 1130 name = "phoenix_template"; 1131 + version = "1.0.3"; 1132 1133 src = fetchHex { 1134 pkg = "phoenix_template"; 1135 version = "${version}"; 1136 + sha256 = "16f4b6588a4152f3cc057b9d0c0ba7e82ee23afa65543da535313ad8d25d8e2c"; 1137 }; 1138 1139 beamDeps = [ phoenix_html ]; ··· 1154 1155 plug = buildMix rec { 1156 name = "plug"; 1157 + version = "1.15.2"; 1158 1159 src = fetchHex { 1160 pkg = "plug"; 1161 version = "${version}"; 1162 + sha256 = "02731fa0c2dcb03d8d21a1d941bdbbe99c2946c0db098eee31008e04c6283615"; 1163 }; 1164 1165 beamDeps = [ mime plug_crypto telemetry ]; ··· 1167 1168 plug_cowboy = buildMix rec { 1169 name = "plug_cowboy"; 1170 + version = "2.6.1"; 1171 1172 src = fetchHex { 1173 pkg = "plug_cowboy"; 1174 version = "${version}"; 1175 + sha256 = "de36e1a21f451a18b790f37765db198075c25875c64834bcc82d90b309eb6613"; 1176 }; 1177 1178 beamDeps = [ cowboy cowboy_telemetry plug ]; ··· 1188 sha256 = "53695bae57cc4e54566d993eb01074e4d894b65a3766f1c43e2c61a1b0f45ea9"; 1189 }; 1190 1191 + beamDeps = []; 1192 }; 1193 1194 plug_static_index_html = buildMix rec { ··· 1227 sha256 = "dad79704ce5440f3d5a3681c8590b9dc25d1a561e8f5a9c995281012860901e3"; 1228 }; 1229 1230 + beamDeps = []; 1231 }; 1232 1233 postgrex = buildMix rec { 1234 name = "postgrex"; 1235 + version = "0.17.4"; 1236 1237 src = fetchHex { 1238 pkg = "postgrex"; 1239 version = "${version}"; 1240 + sha256 = "6458f7d5b70652bc81c3ea759f91736c16a31be000f306d3c64bcdfe9a18b3cc"; 1241 }; 1242 1243 beamDeps = [ db_connection decimal jason ]; ··· 1253 sha256 = "78fe127f5a4f5f919d6ea5a2a671827bd53eb9d37e5b4128c0ad3df99856c2e0"; 1254 }; 1255 1256 + beamDeps = []; 1257 }; 1258 1259 ranch = buildRebar3 rec { ··· 1266 sha256 = "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"; 1267 }; 1268 1269 + beamDeps = []; 1270 }; 1271 1272 recon = buildMix rec { 1273 name = "recon"; 1274 + version = "2.5.4"; 1275 1276 src = fetchHex { 1277 pkg = "recon"; 1278 version = "${version}"; 1279 + sha256 = "e9ab01ac7fc8572e41eb59385efeb3fb0ff5bf02103816535bacaedf327d0263"; 1280 }; 1281 1282 + beamDeps = []; 1283 }; 1284 1285 remote_ip = buildMix rec { ··· 1305 sha256 = "9fe5d048c5b781d6305c1a3a0f40bb3dfc06f49bf40571f3d2d0c57eaa7f59a5"; 1306 }; 1307 1308 + beamDeps = []; 1309 }; 1310 1311 ssl_verify_fun = buildRebar3 rec { ··· 1318 sha256 = "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8"; 1319 }; 1320 1321 + beamDeps = []; 1322 }; 1323 1324 statistex = buildMix rec { ··· 1331 sha256 = "ff9d8bee7035028ab4742ff52fc80a2aa35cece833cf5319009b52f1b5a86c27"; 1332 }; 1333 1334 + beamDeps = []; 1335 }; 1336 1337 sweet_xml = buildMix rec { ··· 1344 sha256 = "e7c4b0bdbf460c928234951def54fe87edf1a170f6896675443279e2dbeba167"; 1345 }; 1346 1347 + beamDeps = []; 1348 }; 1349 1350 swoosh = buildMix rec { 1351 name = "swoosh"; 1352 + version = "1.14.2"; 1353 1354 src = fetchHex { 1355 pkg = "swoosh"; 1356 version = "${version}"; 1357 + sha256 = "01d8fae72930a0b5c1bb9725df0408602ed8c5c3d59dc6e7a39c57b723cd1065"; 1358 }; 1359 1360 beamDeps = [ cowboy ex_aws finch gen_smtp hackney jason mail mime plug plug_cowboy telemetry ]; ··· 1370 sha256 = "4c6a41373c7e20587be33ef841d3de6f3beba08519809329ecc4d27b15b659e1"; 1371 }; 1372 1373 + beamDeps = []; 1374 }; 1375 1376 table_rex = buildMix rec { 1377 name = "table_rex"; 1378 + version = "3.1.1"; 1379 1380 src = fetchHex { 1381 pkg = "table_rex"; 1382 version = "${version}"; 1383 + sha256 = "678a23aba4d670419c23c17790f9dcd635a4a89022040df7d5d772cb21012490"; 1384 }; 1385 1386 + beamDeps = []; 1387 }; 1388 1389 telemetry = buildRebar3 rec { ··· 1396 sha256 = "dad9ce9d8effc621708f99eac538ef1cbe05d6a874dd741de2e689c47feafed5"; 1397 }; 1398 1399 + beamDeps = []; 1400 }; 1401 1402 telemetry_metrics = buildMix rec { 1403 name = "telemetry_metrics"; 1404 + version = "0.6.1"; 1405 1406 src = fetchHex { 1407 pkg = "telemetry_metrics"; 1408 version = "${version}"; 1409 + sha256 = "7be9e0871c41732c233be71e4be11b96e56177bf15dde64a8ac9ce72ac9834c6"; 1410 }; 1411 1412 beamDeps = [ telemetry ]; ··· 1440 1441 telemetry_poller = buildRebar3 rec { 1442 name = "telemetry_poller"; 1443 + version = "1.0.0"; 1444 1445 src = fetchHex { 1446 pkg = "telemetry_poller"; 1447 version = "${version}"; 1448 + sha256 = "b3a24eafd66c3f42da30fc3ca7dda1e9d546c12250a2d60d7b81d264fbec4f6e"; 1449 }; 1450 1451 beamDeps = [ telemetry ]; ··· 1453 1454 tesla = buildMix rec { 1455 name = "tesla"; 1456 + version = "1.8.0"; 1457 1458 src = fetchHex { 1459 pkg = "tesla"; 1460 version = "${version}"; 1461 + sha256 = "10501f360cd926a309501287470372af1a6e1cbed0f43949203a4c13300bc79f"; 1462 }; 1463 1464 beamDeps = [ castore finch hackney jason mime mint poison telemetry ]; ··· 1492 1493 tzdata = buildMix rec { 1494 name = "tzdata"; 1495 + version = "1.1.2"; 1496 1497 src = fetchHex { 1498 pkg = "tzdata"; 1499 version = "${version}"; 1500 + sha256 = "cec7b286e608371602318c414f344941d5eb0375e14cfdab605cca2fe66cba8b"; 1501 }; 1502 1503 beamDeps = [ hackney ]; ··· 1526 sha256 = "25eee6d67df61960cf6a794239566599b09e17e668d3700247bc498638152521"; 1527 }; 1528 1529 + beamDeps = []; 1530 }; 1531 1532 unsafe = buildMix rec { ··· 1539 sha256 = "b485231683c3ab01a9cd44cb4a79f152c6f3bb87358439c6f68791b85c2df675"; 1540 }; 1541 1542 + beamDeps = []; 1543 }; 1544 1545 vex = buildMix rec { 1546 name = "vex"; 1547 + version = "0.9.1"; 1548 1549 src = fetchHex { 1550 pkg = "vex"; 1551 version = "${version}"; 1552 + sha256 = "a0f9f3959d127ad6a6a617c3f607ecfb1bc6f3c59f9c3614a901a46d1765bafe"; 1553 }; 1554 1555 + beamDeps = []; 1556 }; 1557 1558 web_push_encryption = buildMix rec { ··· 1578 sha256 = "6105453d7fac22c712ad66fab1d45abdf049868f253cf719b625151460b8b453"; 1579 }; 1580 1581 + beamDeps = []; 1582 }; 1583 1584 websock_adapter = buildMix rec { 1585 name = "websock_adapter"; 1586 + version = "0.5.5"; 1587 1588 src = fetchHex { 1589 pkg = "websock_adapter"; 1590 version = "${version}"; 1591 + sha256 = "4b977ba4a01918acbf77045ff88de7f6972c2a009213c515a445c48f224ffce9"; 1592 }; 1593 1594 beamDeps = [ plug plug_cowboy websock ]; ··· 1604 sha256 = "95f2e7072b85a3a4cc385602d42115b73ce0b74a9121d0d6dbbf557645ac53e4"; 1605 }; 1606 1607 + beamDeps = []; 1608 }; 1609 }; 1610 + in self 1611
+4 -4
pkgs/servers/nextcloud/default.nix
··· 59 in 60 { 61 nextcloud28 = generic { 62 - version = "28.0.12"; 63 - hash = "sha256-KgDKT3mTYPCYf8vIXZmywlj30sz35vfgxMzxehJ/AQU="; 64 packages = nextcloud28Packages; 65 }; 66 ··· 71 }; 72 73 nextcloud30 = generic { 74 - version = "30.0.2"; 75 - hash = "sha256-kpu4BF6WIW/iKmXc1mJ55b17oauynZm/QB1CO2RqRF8="; 76 packages = nextcloud30Packages; 77 }; 78
··· 59 in 60 { 61 nextcloud28 = generic { 62 + version = "28.0.14"; 63 + hash = "sha256-SpN/GIJIZCbJcD5Z7EspP2Ib6NCAt/hQFvYpkDw68zY="; 64 packages = nextcloud28Packages; 65 }; 66 ··· 71 }; 72 73 nextcloud30 = generic { 74 + version = "30.0.4"; 75 + hash = "sha256-62qrqazvRC8rPkqZa37ope0kRC+bumgSN/so7ZcOH6U="; 76 packages = nextcloud30Packages; 77 }; 78
+2 -2
pkgs/servers/sql/postgresql/ext/pg_cron.nix
··· 8 9 buildPostgresqlExtension rec { 10 pname = "pg_cron"; 11 - version = "1.6.4"; 12 13 src = fetchFromGitHub { 14 owner = "citusdata"; 15 repo = pname; 16 rev = "v${version}"; 17 - hash = "sha256-t1DpFkPiSfdoGG2NgNT7g1lkvSooZoRoUrix6cBID40="; 18 }; 19 20 meta = with lib; {
··· 8 9 buildPostgresqlExtension rec { 10 pname = "pg_cron"; 11 + version = "1.6.5"; 12 13 src = fetchFromGitHub { 14 owner = "citusdata"; 15 repo = pname; 16 rev = "v${version}"; 17 + hash = "sha256-Llksil7Fk7jvJJmCpfCN0Qm2b2I4J1VOA7/ibytO+KM="; 18 }; 19 20 meta = with lib; {
-2697
pkgs/tools/networking/bandwhich/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "addr2line" 7 - version = "0.22.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 10 - dependencies = [ 11 - "gimli", 12 - ] 13 - 14 - [[package]] 15 - name = "adler" 16 - version = "1.0.2" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 - 20 - [[package]] 21 - name = "aes" 22 - version = "0.8.4" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 25 - dependencies = [ 26 - "cfg-if", 27 - "cipher", 28 - "cpufeatures", 29 - ] 30 - 31 - [[package]] 32 - name = "ahash" 33 - version = "0.8.11" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 36 - dependencies = [ 37 - "cfg-if", 38 - "once_cell", 39 - "version_check", 40 - "zerocopy", 41 - ] 42 - 43 - [[package]] 44 - name = "aho-corasick" 45 - version = "1.1.3" 46 - source = "registry+https://github.com/rust-lang/crates.io-index" 47 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 48 - dependencies = [ 49 - "memchr", 50 - ] 51 - 52 - [[package]] 53 - name = "allocator-api2" 54 - version = "0.2.18" 55 - source = "registry+https://github.com/rust-lang/crates.io-index" 56 - checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" 57 - 58 - [[package]] 59 - name = "android-tzdata" 60 - version = "0.1.1" 61 - source = "registry+https://github.com/rust-lang/crates.io-index" 62 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 63 - 64 - [[package]] 65 - name = "android_system_properties" 66 - version = "0.1.5" 67 - source = "registry+https://github.com/rust-lang/crates.io-index" 68 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 69 - dependencies = [ 70 - "libc", 71 - ] 72 - 73 - [[package]] 74 - name = "anstream" 75 - version = "0.6.14" 76 - source = "registry+https://github.com/rust-lang/crates.io-index" 77 - checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 78 - dependencies = [ 79 - "anstyle", 80 - "anstyle-parse", 81 - "anstyle-query", 82 - "anstyle-wincon", 83 - "colorchoice", 84 - "is_terminal_polyfill", 85 - "utf8parse", 86 - ] 87 - 88 - [[package]] 89 - name = "anstyle" 90 - version = "1.0.7" 91 - source = "registry+https://github.com/rust-lang/crates.io-index" 92 - checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 93 - 94 - [[package]] 95 - name = "anstyle-parse" 96 - version = "0.2.4" 97 - source = "registry+https://github.com/rust-lang/crates.io-index" 98 - checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 99 - dependencies = [ 100 - "utf8parse", 101 - ] 102 - 103 - [[package]] 104 - name = "anstyle-query" 105 - version = "1.1.0" 106 - source = "registry+https://github.com/rust-lang/crates.io-index" 107 - checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" 108 - dependencies = [ 109 - "windows-sys 0.52.0", 110 - ] 111 - 112 - [[package]] 113 - name = "anstyle-wincon" 114 - version = "3.0.3" 115 - source = "registry+https://github.com/rust-lang/crates.io-index" 116 - checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 117 - dependencies = [ 118 - "anstyle", 119 - "windows-sys 0.52.0", 120 - ] 121 - 122 - [[package]] 123 - name = "anyhow" 124 - version = "1.0.86" 125 - source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 127 - dependencies = [ 128 - "backtrace", 129 - ] 130 - 131 - [[package]] 132 - name = "arbitrary" 133 - version = "1.3.2" 134 - source = "registry+https://github.com/rust-lang/crates.io-index" 135 - checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" 136 - dependencies = [ 137 - "derive_arbitrary", 138 - ] 139 - 140 - [[package]] 141 - name = "async-trait" 142 - version = "0.1.81" 143 - source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" 145 - dependencies = [ 146 - "proc-macro2", 147 - "quote", 148 - "syn 2.0.68", 149 - ] 150 - 151 - [[package]] 152 - name = "autocfg" 153 - version = "1.3.0" 154 - source = "registry+https://github.com/rust-lang/crates.io-index" 155 - checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 156 - 157 - [[package]] 158 - name = "backtrace" 159 - version = "0.3.73" 160 - source = "registry+https://github.com/rust-lang/crates.io-index" 161 - checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 162 - dependencies = [ 163 - "addr2line", 164 - "cc", 165 - "cfg-if", 166 - "libc", 167 - "miniz_oxide", 168 - "object", 169 - "rustc-demangle", 170 - ] 171 - 172 - [[package]] 173 - name = "bandwhich" 174 - version = "0.23.0" 175 - dependencies = [ 176 - "anyhow", 177 - "async-trait", 178 - "chrono", 179 - "clap", 180 - "clap-verbosity-flag", 181 - "clap_complete", 182 - "clap_mangen", 183 - "crossterm", 184 - "derivative", 185 - "http_req", 186 - "insta", 187 - "ipnetwork", 188 - "itertools 0.13.0", 189 - "log", 190 - "netstat2", 191 - "once_cell", 192 - "packet-builder", 193 - "pnet", 194 - "pnet_base", 195 - "pnet_macros_support", 196 - "procfs", 197 - "ratatui", 198 - "regex", 199 - "resolv-conf", 200 - "rstest", 201 - "simplelog", 202 - "strum", 203 - "sysinfo", 204 - "thiserror", 205 - "tokio", 206 - "trust-dns-resolver", 207 - "unicode-width", 208 - "zip", 209 - ] 210 - 211 - [[package]] 212 - name = "bitflags" 213 - version = "1.3.2" 214 - source = "registry+https://github.com/rust-lang/crates.io-index" 215 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 216 - 217 - [[package]] 218 - name = "bitflags" 219 - version = "2.6.0" 220 - source = "registry+https://github.com/rust-lang/crates.io-index" 221 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 222 - 223 - [[package]] 224 - name = "block-buffer" 225 - version = "0.10.4" 226 - source = "registry+https://github.com/rust-lang/crates.io-index" 227 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 228 - dependencies = [ 229 - "generic-array", 230 - ] 231 - 232 - [[package]] 233 - name = "bstr" 234 - version = "1.10.0" 235 - source = "registry+https://github.com/rust-lang/crates.io-index" 236 - checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c" 237 - dependencies = [ 238 - "memchr", 239 - "regex-automata", 240 - "serde", 241 - ] 242 - 243 - [[package]] 244 - name = "bumpalo" 245 - version = "3.16.0" 246 - source = "registry+https://github.com/rust-lang/crates.io-index" 247 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 248 - 249 - [[package]] 250 - name = "byteorder" 251 - version = "1.5.0" 252 - source = "registry+https://github.com/rust-lang/crates.io-index" 253 - checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 254 - 255 - [[package]] 256 - name = "bytes" 257 - version = "1.6.0" 258 - source = "registry+https://github.com/rust-lang/crates.io-index" 259 - checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 260 - 261 - [[package]] 262 - name = "bzip2" 263 - version = "0.4.4" 264 - source = "registry+https://github.com/rust-lang/crates.io-index" 265 - checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 266 - dependencies = [ 267 - "bzip2-sys", 268 - "libc", 269 - ] 270 - 271 - [[package]] 272 - name = "bzip2-sys" 273 - version = "0.1.11+1.0.8" 274 - source = "registry+https://github.com/rust-lang/crates.io-index" 275 - checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 276 - dependencies = [ 277 - "cc", 278 - "libc", 279 - "pkg-config", 280 - ] 281 - 282 - [[package]] 283 - name = "cassowary" 284 - version = "0.3.0" 285 - source = "registry+https://github.com/rust-lang/crates.io-index" 286 - checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" 287 - 288 - [[package]] 289 - name = "castaway" 290 - version = "0.2.2" 291 - source = "registry+https://github.com/rust-lang/crates.io-index" 292 - checksum = "8a17ed5635fc8536268e5d4de1e22e81ac34419e5f052d4d51f4e01dcc263fcc" 293 - dependencies = [ 294 - "rustversion", 295 - ] 296 - 297 - [[package]] 298 - name = "cc" 299 - version = "1.0.104" 300 - source = "registry+https://github.com/rust-lang/crates.io-index" 301 - checksum = "74b6a57f98764a267ff415d50a25e6e166f3831a5071af4995296ea97d210490" 302 - dependencies = [ 303 - "jobserver", 304 - "libc", 305 - "once_cell", 306 - ] 307 - 308 - [[package]] 309 - name = "cfg-if" 310 - version = "1.0.0" 311 - source = "registry+https://github.com/rust-lang/crates.io-index" 312 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 313 - 314 - [[package]] 315 - name = "chrono" 316 - version = "0.4.38" 317 - source = "registry+https://github.com/rust-lang/crates.io-index" 318 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 319 - dependencies = [ 320 - "android-tzdata", 321 - "iana-time-zone", 322 - "js-sys", 323 - "num-traits", 324 - "wasm-bindgen", 325 - "windows-targets 0.52.6", 326 - ] 327 - 328 - [[package]] 329 - name = "cipher" 330 - version = "0.4.4" 331 - source = "registry+https://github.com/rust-lang/crates.io-index" 332 - checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 333 - dependencies = [ 334 - "crypto-common", 335 - "inout", 336 - ] 337 - 338 - [[package]] 339 - name = "clap" 340 - version = "4.5.13" 341 - source = "registry+https://github.com/rust-lang/crates.io-index" 342 - checksum = "0fbb260a053428790f3de475e304ff84cdbc4face759ea7a3e64c1edd938a7fc" 343 - dependencies = [ 344 - "clap_builder", 345 - "clap_derive", 346 - ] 347 - 348 - [[package]] 349 - name = "clap-verbosity-flag" 350 - version = "2.2.1" 351 - source = "registry+https://github.com/rust-lang/crates.io-index" 352 - checksum = "63d19864d6b68464c59f7162c9914a0b569ddc2926b4a2d71afe62a9738eff53" 353 - dependencies = [ 354 - "clap", 355 - "log", 356 - ] 357 - 358 - [[package]] 359 - name = "clap_builder" 360 - version = "4.5.13" 361 - source = "registry+https://github.com/rust-lang/crates.io-index" 362 - checksum = "64b17d7ea74e9f833c7dbf2cbe4fb12ff26783eda4782a8975b72f895c9b4d99" 363 - dependencies = [ 364 - "anstream", 365 - "anstyle", 366 - "clap_lex", 367 - "strsim", 368 - ] 369 - 370 - [[package]] 371 - name = "clap_complete" 372 - version = "4.5.12" 373 - source = "registry+https://github.com/rust-lang/crates.io-index" 374 - checksum = "a8670053e87c316345e384ca1f3eba3006fc6355ed8b8a1140d104e109e3df34" 375 - dependencies = [ 376 - "clap", 377 - ] 378 - 379 - [[package]] 380 - name = "clap_derive" 381 - version = "4.5.13" 382 - source = "registry+https://github.com/rust-lang/crates.io-index" 383 - checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" 384 - dependencies = [ 385 - "heck 0.5.0", 386 - "proc-macro2", 387 - "quote", 388 - "syn 2.0.68", 389 - ] 390 - 391 - [[package]] 392 - name = "clap_lex" 393 - version = "0.7.1" 394 - source = "registry+https://github.com/rust-lang/crates.io-index" 395 - checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" 396 - 397 - [[package]] 398 - name = "clap_mangen" 399 - version = "0.2.23" 400 - source = "registry+https://github.com/rust-lang/crates.io-index" 401 - checksum = "f17415fd4dfbea46e3274fcd8d368284519b358654772afb700dc2e8d2b24eeb" 402 - dependencies = [ 403 - "clap", 404 - "roff", 405 - ] 406 - 407 - [[package]] 408 - name = "colorchoice" 409 - version = "1.0.1" 410 - source = "registry+https://github.com/rust-lang/crates.io-index" 411 - checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 412 - 413 - [[package]] 414 - name = "compact_str" 415 - version = "0.7.1" 416 - source = "registry+https://github.com/rust-lang/crates.io-index" 417 - checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f" 418 - dependencies = [ 419 - "castaway", 420 - "cfg-if", 421 - "itoa", 422 - "ryu", 423 - "static_assertions", 424 - ] 425 - 426 - [[package]] 427 - name = "console" 428 - version = "0.15.8" 429 - source = "registry+https://github.com/rust-lang/crates.io-index" 430 - checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 431 - dependencies = [ 432 - "encode_unicode", 433 - "lazy_static", 434 - "libc", 435 - "windows-sys 0.52.0", 436 - ] 437 - 438 - [[package]] 439 - name = "constant_time_eq" 440 - version = "0.3.0" 441 - source = "registry+https://github.com/rust-lang/crates.io-index" 442 - checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" 443 - 444 - [[package]] 445 - name = "core-foundation" 446 - version = "0.9.4" 447 - source = "registry+https://github.com/rust-lang/crates.io-index" 448 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 449 - dependencies = [ 450 - "core-foundation-sys", 451 - "libc", 452 - ] 453 - 454 - [[package]] 455 - name = "core-foundation-sys" 456 - version = "0.8.6" 457 - source = "registry+https://github.com/rust-lang/crates.io-index" 458 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 459 - 460 - [[package]] 461 - name = "cpufeatures" 462 - version = "0.2.12" 463 - source = "registry+https://github.com/rust-lang/crates.io-index" 464 - checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" 465 - dependencies = [ 466 - "libc", 467 - ] 468 - 469 - [[package]] 470 - name = "crc" 471 - version = "3.2.1" 472 - source = "registry+https://github.com/rust-lang/crates.io-index" 473 - checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" 474 - dependencies = [ 475 - "crc-catalog", 476 - ] 477 - 478 - [[package]] 479 - name = "crc-catalog" 480 - version = "2.4.0" 481 - source = "registry+https://github.com/rust-lang/crates.io-index" 482 - checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 483 - 484 - [[package]] 485 - name = "crc32fast" 486 - version = "1.4.2" 487 - source = "registry+https://github.com/rust-lang/crates.io-index" 488 - checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 489 - dependencies = [ 490 - "cfg-if", 491 - ] 492 - 493 - [[package]] 494 - name = "crossbeam-deque" 495 - version = "0.8.5" 496 - source = "registry+https://github.com/rust-lang/crates.io-index" 497 - checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 498 - dependencies = [ 499 - "crossbeam-epoch", 500 - "crossbeam-utils", 501 - ] 502 - 503 - [[package]] 504 - name = "crossbeam-epoch" 505 - version = "0.9.18" 506 - source = "registry+https://github.com/rust-lang/crates.io-index" 507 - checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 508 - dependencies = [ 509 - "crossbeam-utils", 510 - ] 511 - 512 - [[package]] 513 - name = "crossbeam-utils" 514 - version = "0.8.20" 515 - source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" 517 - 518 - [[package]] 519 - name = "crossterm" 520 - version = "0.27.0" 521 - source = "registry+https://github.com/rust-lang/crates.io-index" 522 - checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" 523 - dependencies = [ 524 - "bitflags 2.6.0", 525 - "crossterm_winapi", 526 - "libc", 527 - "mio 0.8.11", 528 - "parking_lot", 529 - "signal-hook", 530 - "signal-hook-mio", 531 - "winapi", 532 - ] 533 - 534 - [[package]] 535 - name = "crossterm_winapi" 536 - version = "0.9.1" 537 - source = "registry+https://github.com/rust-lang/crates.io-index" 538 - checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 539 - dependencies = [ 540 - "winapi", 541 - ] 542 - 543 - [[package]] 544 - name = "crypto-common" 545 - version = "0.1.6" 546 - source = "registry+https://github.com/rust-lang/crates.io-index" 547 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 548 - dependencies = [ 549 - "generic-array", 550 - "typenum", 551 - ] 552 - 553 - [[package]] 554 - name = "data-encoding" 555 - version = "2.6.0" 556 - source = "registry+https://github.com/rust-lang/crates.io-index" 557 - checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" 558 - 559 - [[package]] 560 - name = "deflate64" 561 - version = "0.1.9" 562 - source = "registry+https://github.com/rust-lang/crates.io-index" 563 - checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b" 564 - 565 - [[package]] 566 - name = "deranged" 567 - version = "0.3.11" 568 - source = "registry+https://github.com/rust-lang/crates.io-index" 569 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 570 - dependencies = [ 571 - "powerfmt", 572 - ] 573 - 574 - [[package]] 575 - name = "derivative" 576 - version = "2.2.0" 577 - source = "registry+https://github.com/rust-lang/crates.io-index" 578 - checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 579 - dependencies = [ 580 - "proc-macro2", 581 - "quote", 582 - "syn 1.0.109", 583 - ] 584 - 585 - [[package]] 586 - name = "derive-new" 587 - version = "0.5.9" 588 - source = "registry+https://github.com/rust-lang/crates.io-index" 589 - checksum = "3418329ca0ad70234b9735dc4ceed10af4df60eff9c8e7b06cb5e520d92c3535" 590 - dependencies = [ 591 - "proc-macro2", 592 - "quote", 593 - "syn 1.0.109", 594 - ] 595 - 596 - [[package]] 597 - name = "derive_arbitrary" 598 - version = "1.3.2" 599 - source = "registry+https://github.com/rust-lang/crates.io-index" 600 - checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" 601 - dependencies = [ 602 - "proc-macro2", 603 - "quote", 604 - "syn 2.0.68", 605 - ] 606 - 607 - [[package]] 608 - name = "digest" 609 - version = "0.10.7" 610 - source = "registry+https://github.com/rust-lang/crates.io-index" 611 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 612 - dependencies = [ 613 - "block-buffer", 614 - "crypto-common", 615 - "subtle", 616 - ] 617 - 618 - [[package]] 619 - name = "displaydoc" 620 - version = "0.2.5" 621 - source = "registry+https://github.com/rust-lang/crates.io-index" 622 - checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 623 - dependencies = [ 624 - "proc-macro2", 625 - "quote", 626 - "syn 2.0.68", 627 - ] 628 - 629 - [[package]] 630 - name = "either" 631 - version = "1.13.0" 632 - source = "registry+https://github.com/rust-lang/crates.io-index" 633 - checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 634 - 635 - [[package]] 636 - name = "encode_unicode" 637 - version = "0.3.6" 638 - source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 640 - 641 - [[package]] 642 - name = "enum-as-inner" 643 - version = "0.6.0" 644 - source = "registry+https://github.com/rust-lang/crates.io-index" 645 - checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" 646 - dependencies = [ 647 - "heck 0.4.1", 648 - "proc-macro2", 649 - "quote", 650 - "syn 2.0.68", 651 - ] 652 - 653 - [[package]] 654 - name = "equivalent" 655 - version = "1.0.1" 656 - source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 658 - 659 - [[package]] 660 - name = "errno" 661 - version = "0.3.9" 662 - source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 664 - dependencies = [ 665 - "libc", 666 - "windows-sys 0.52.0", 667 - ] 668 - 669 - [[package]] 670 - name = "fastrand" 671 - version = "2.1.0" 672 - source = "registry+https://github.com/rust-lang/crates.io-index" 673 - checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 674 - 675 - [[package]] 676 - name = "flate2" 677 - version = "1.0.30" 678 - source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" 680 - dependencies = [ 681 - "crc32fast", 682 - "miniz_oxide", 683 - ] 684 - 685 - [[package]] 686 - name = "foreign-types" 687 - version = "0.3.2" 688 - source = "registry+https://github.com/rust-lang/crates.io-index" 689 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 690 - dependencies = [ 691 - "foreign-types-shared", 692 - ] 693 - 694 - [[package]] 695 - name = "foreign-types-shared" 696 - version = "0.1.1" 697 - source = "registry+https://github.com/rust-lang/crates.io-index" 698 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 699 - 700 - [[package]] 701 - name = "form_urlencoded" 702 - version = "1.2.1" 703 - source = "registry+https://github.com/rust-lang/crates.io-index" 704 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 705 - dependencies = [ 706 - "percent-encoding", 707 - ] 708 - 709 - [[package]] 710 - name = "futures" 711 - version = "0.3.30" 712 - source = "registry+https://github.com/rust-lang/crates.io-index" 713 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 714 - dependencies = [ 715 - "futures-channel", 716 - "futures-core", 717 - "futures-executor", 718 - "futures-io", 719 - "futures-sink", 720 - "futures-task", 721 - "futures-util", 722 - ] 723 - 724 - [[package]] 725 - name = "futures-channel" 726 - version = "0.3.30" 727 - source = "registry+https://github.com/rust-lang/crates.io-index" 728 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 729 - dependencies = [ 730 - "futures-core", 731 - "futures-sink", 732 - ] 733 - 734 - [[package]] 735 - name = "futures-core" 736 - version = "0.3.30" 737 - source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 739 - 740 - [[package]] 741 - name = "futures-executor" 742 - version = "0.3.30" 743 - source = "registry+https://github.com/rust-lang/crates.io-index" 744 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 745 - dependencies = [ 746 - "futures-core", 747 - "futures-task", 748 - "futures-util", 749 - ] 750 - 751 - [[package]] 752 - name = "futures-io" 753 - version = "0.3.30" 754 - source = "registry+https://github.com/rust-lang/crates.io-index" 755 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 756 - 757 - [[package]] 758 - name = "futures-macro" 759 - version = "0.3.30" 760 - source = "registry+https://github.com/rust-lang/crates.io-index" 761 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 762 - dependencies = [ 763 - "proc-macro2", 764 - "quote", 765 - "syn 2.0.68", 766 - ] 767 - 768 - [[package]] 769 - name = "futures-sink" 770 - version = "0.3.30" 771 - source = "registry+https://github.com/rust-lang/crates.io-index" 772 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 773 - 774 - [[package]] 775 - name = "futures-task" 776 - version = "0.3.30" 777 - source = "registry+https://github.com/rust-lang/crates.io-index" 778 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 779 - 780 - [[package]] 781 - name = "futures-timer" 782 - version = "3.0.3" 783 - source = "registry+https://github.com/rust-lang/crates.io-index" 784 - checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 785 - 786 - [[package]] 787 - name = "futures-util" 788 - version = "0.3.30" 789 - source = "registry+https://github.com/rust-lang/crates.io-index" 790 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 791 - dependencies = [ 792 - "futures-channel", 793 - "futures-core", 794 - "futures-io", 795 - "futures-macro", 796 - "futures-sink", 797 - "futures-task", 798 - "memchr", 799 - "pin-project-lite", 800 - "pin-utils", 801 - "slab", 802 - ] 803 - 804 - [[package]] 805 - name = "generic-array" 806 - version = "0.14.7" 807 - source = "registry+https://github.com/rust-lang/crates.io-index" 808 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 809 - dependencies = [ 810 - "typenum", 811 - "version_check", 812 - ] 813 - 814 - [[package]] 815 - name = "getrandom" 816 - version = "0.2.15" 817 - source = "registry+https://github.com/rust-lang/crates.io-index" 818 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 819 - dependencies = [ 820 - "cfg-if", 821 - "libc", 822 - "wasi", 823 - ] 824 - 825 - [[package]] 826 - name = "gimli" 827 - version = "0.29.0" 828 - source = "registry+https://github.com/rust-lang/crates.io-index" 829 - checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 830 - 831 - [[package]] 832 - name = "glob" 833 - version = "0.3.1" 834 - source = "registry+https://github.com/rust-lang/crates.io-index" 835 - checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 836 - 837 - [[package]] 838 - name = "hashbrown" 839 - version = "0.14.5" 840 - source = "registry+https://github.com/rust-lang/crates.io-index" 841 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 842 - dependencies = [ 843 - "ahash", 844 - "allocator-api2", 845 - ] 846 - 847 - [[package]] 848 - name = "heck" 849 - version = "0.4.1" 850 - source = "registry+https://github.com/rust-lang/crates.io-index" 851 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 852 - 853 - [[package]] 854 - name = "heck" 855 - version = "0.5.0" 856 - source = "registry+https://github.com/rust-lang/crates.io-index" 857 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 858 - 859 - [[package]] 860 - name = "hermit-abi" 861 - version = "0.3.9" 862 - source = "registry+https://github.com/rust-lang/crates.io-index" 863 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 864 - 865 - [[package]] 866 - name = "hex" 867 - version = "0.4.3" 868 - source = "registry+https://github.com/rust-lang/crates.io-index" 869 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 870 - 871 - [[package]] 872 - name = "hmac" 873 - version = "0.12.1" 874 - source = "registry+https://github.com/rust-lang/crates.io-index" 875 - checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 876 - dependencies = [ 877 - "digest", 878 - ] 879 - 880 - [[package]] 881 - name = "hostname" 882 - version = "0.3.1" 883 - source = "registry+https://github.com/rust-lang/crates.io-index" 884 - checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 885 - dependencies = [ 886 - "libc", 887 - "match_cfg", 888 - "winapi", 889 - ] 890 - 891 - [[package]] 892 - name = "http_req" 893 - version = "0.11.1" 894 - source = "registry+https://github.com/rust-lang/crates.io-index" 895 - checksum = "0122ab6637149482eb66b57288ac597bc7eb9859cbaa79dee62fa19a350df3d2" 896 - dependencies = [ 897 - "native-tls", 898 - "unicase", 899 - ] 900 - 901 - [[package]] 902 - name = "iana-time-zone" 903 - version = "0.1.60" 904 - source = "registry+https://github.com/rust-lang/crates.io-index" 905 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 906 - dependencies = [ 907 - "android_system_properties", 908 - "core-foundation-sys", 909 - "iana-time-zone-haiku", 910 - "js-sys", 911 - "wasm-bindgen", 912 - "windows-core 0.52.0", 913 - ] 914 - 915 - [[package]] 916 - name = "iana-time-zone-haiku" 917 - version = "0.1.2" 918 - source = "registry+https://github.com/rust-lang/crates.io-index" 919 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 920 - dependencies = [ 921 - "cc", 922 - ] 923 - 924 - [[package]] 925 - name = "idna" 926 - version = "0.4.0" 927 - source = "registry+https://github.com/rust-lang/crates.io-index" 928 - checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 929 - dependencies = [ 930 - "unicode-bidi", 931 - "unicode-normalization", 932 - ] 933 - 934 - [[package]] 935 - name = "idna" 936 - version = "0.5.0" 937 - source = "registry+https://github.com/rust-lang/crates.io-index" 938 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 939 - dependencies = [ 940 - "unicode-bidi", 941 - "unicode-normalization", 942 - ] 943 - 944 - [[package]] 945 - name = "indexmap" 946 - version = "2.2.6" 947 - source = "registry+https://github.com/rust-lang/crates.io-index" 948 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 949 - dependencies = [ 950 - "equivalent", 951 - "hashbrown", 952 - ] 953 - 954 - [[package]] 955 - name = "inout" 956 - version = "0.1.3" 957 - source = "registry+https://github.com/rust-lang/crates.io-index" 958 - checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 959 - dependencies = [ 960 - "generic-array", 961 - ] 962 - 963 - [[package]] 964 - name = "insta" 965 - version = "1.39.0" 966 - source = "registry+https://github.com/rust-lang/crates.io-index" 967 - checksum = "810ae6042d48e2c9e9215043563a58a80b877bc863228a74cf10c49d4620a6f5" 968 - dependencies = [ 969 - "console", 970 - "lazy_static", 971 - "linked-hash-map", 972 - "similar", 973 - ] 974 - 975 - [[package]] 976 - name = "ipconfig" 977 - version = "0.3.2" 978 - source = "registry+https://github.com/rust-lang/crates.io-index" 979 - checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 980 - dependencies = [ 981 - "socket2", 982 - "widestring", 983 - "windows-sys 0.48.0", 984 - "winreg", 985 - ] 986 - 987 - [[package]] 988 - name = "ipnet" 989 - version = "2.9.0" 990 - source = "registry+https://github.com/rust-lang/crates.io-index" 991 - checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 992 - 993 - [[package]] 994 - name = "ipnetwork" 995 - version = "0.20.0" 996 - source = "registry+https://github.com/rust-lang/crates.io-index" 997 - checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e" 998 - dependencies = [ 999 - "serde", 1000 - ] 1001 - 1002 - [[package]] 1003 - name = "is_terminal_polyfill" 1004 - version = "1.70.0" 1005 - source = "registry+https://github.com/rust-lang/crates.io-index" 1006 - checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 1007 - 1008 - [[package]] 1009 - name = "itertools" 1010 - version = "0.12.1" 1011 - source = "registry+https://github.com/rust-lang/crates.io-index" 1012 - checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1013 - dependencies = [ 1014 - "either", 1015 - ] 1016 - 1017 - [[package]] 1018 - name = "itertools" 1019 - version = "0.13.0" 1020 - source = "registry+https://github.com/rust-lang/crates.io-index" 1021 - checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 1022 - dependencies = [ 1023 - "either", 1024 - ] 1025 - 1026 - [[package]] 1027 - name = "itoa" 1028 - version = "1.0.11" 1029 - source = "registry+https://github.com/rust-lang/crates.io-index" 1030 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1031 - 1032 - [[package]] 1033 - name = "jobserver" 1034 - version = "0.1.31" 1035 - source = "registry+https://github.com/rust-lang/crates.io-index" 1036 - checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 1037 - dependencies = [ 1038 - "libc", 1039 - ] 1040 - 1041 - [[package]] 1042 - name = "js-sys" 1043 - version = "0.3.69" 1044 - source = "registry+https://github.com/rust-lang/crates.io-index" 1045 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 1046 - dependencies = [ 1047 - "wasm-bindgen", 1048 - ] 1049 - 1050 - [[package]] 1051 - name = "lazy_static" 1052 - version = "1.5.0" 1053 - source = "registry+https://github.com/rust-lang/crates.io-index" 1054 - checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1055 - 1056 - [[package]] 1057 - name = "libc" 1058 - version = "0.2.155" 1059 - source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 1061 - 1062 - [[package]] 1063 - name = "linked-hash-map" 1064 - version = "0.5.6" 1065 - source = "registry+https://github.com/rust-lang/crates.io-index" 1066 - checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1067 - 1068 - [[package]] 1069 - name = "linux-raw-sys" 1070 - version = "0.4.14" 1071 - source = "registry+https://github.com/rust-lang/crates.io-index" 1072 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 1073 - 1074 - [[package]] 1075 - name = "lock_api" 1076 - version = "0.4.12" 1077 - source = "registry+https://github.com/rust-lang/crates.io-index" 1078 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1079 - dependencies = [ 1080 - "autocfg", 1081 - "scopeguard", 1082 - ] 1083 - 1084 - [[package]] 1085 - name = "lockfree-object-pool" 1086 - version = "0.1.6" 1087 - source = "registry+https://github.com/rust-lang/crates.io-index" 1088 - checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e" 1089 - 1090 - [[package]] 1091 - name = "log" 1092 - version = "0.4.22" 1093 - source = "registry+https://github.com/rust-lang/crates.io-index" 1094 - checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 1095 - 1096 - [[package]] 1097 - name = "lru" 1098 - version = "0.12.3" 1099 - source = "registry+https://github.com/rust-lang/crates.io-index" 1100 - checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" 1101 - dependencies = [ 1102 - "hashbrown", 1103 - ] 1104 - 1105 - [[package]] 1106 - name = "lru-cache" 1107 - version = "0.1.2" 1108 - source = "registry+https://github.com/rust-lang/crates.io-index" 1109 - checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 1110 - dependencies = [ 1111 - "linked-hash-map", 1112 - ] 1113 - 1114 - [[package]] 1115 - name = "lzma-rs" 1116 - version = "0.3.0" 1117 - source = "registry+https://github.com/rust-lang/crates.io-index" 1118 - checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e" 1119 - dependencies = [ 1120 - "byteorder", 1121 - "crc", 1122 - ] 1123 - 1124 - [[package]] 1125 - name = "match_cfg" 1126 - version = "0.1.0" 1127 - source = "registry+https://github.com/rust-lang/crates.io-index" 1128 - checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 1129 - 1130 - [[package]] 1131 - name = "memchr" 1132 - version = "2.7.4" 1133 - source = "registry+https://github.com/rust-lang/crates.io-index" 1134 - checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 1135 - 1136 - [[package]] 1137 - name = "miniz_oxide" 1138 - version = "0.7.4" 1139 - source = "registry+https://github.com/rust-lang/crates.io-index" 1140 - checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 1141 - dependencies = [ 1142 - "adler", 1143 - ] 1144 - 1145 - [[package]] 1146 - name = "mio" 1147 - version = "0.8.11" 1148 - source = "registry+https://github.com/rust-lang/crates.io-index" 1149 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 1150 - dependencies = [ 1151 - "libc", 1152 - "log", 1153 - "wasi", 1154 - "windows-sys 0.48.0", 1155 - ] 1156 - 1157 - [[package]] 1158 - name = "mio" 1159 - version = "1.0.1" 1160 - source = "registry+https://github.com/rust-lang/crates.io-index" 1161 - checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" 1162 - dependencies = [ 1163 - "hermit-abi", 1164 - "libc", 1165 - "wasi", 1166 - "windows-sys 0.52.0", 1167 - ] 1168 - 1169 - [[package]] 1170 - name = "native-tls" 1171 - version = "0.2.12" 1172 - source = "registry+https://github.com/rust-lang/crates.io-index" 1173 - checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" 1174 - dependencies = [ 1175 - "libc", 1176 - "log", 1177 - "openssl", 1178 - "openssl-probe", 1179 - "openssl-sys", 1180 - "schannel", 1181 - "security-framework", 1182 - "security-framework-sys", 1183 - "tempfile", 1184 - ] 1185 - 1186 - [[package]] 1187 - name = "netstat2" 1188 - version = "0.9.1" 1189 - source = "registry+https://github.com/rust-lang/crates.io-index" 1190 - checksum = "0faa3f4ad230fd2bf2a5dad71476ecbaeaed904b3c7e7e5b1f266c415c03761f" 1191 - dependencies = [ 1192 - "bitflags 1.3.2", 1193 - "byteorder", 1194 - "libc", 1195 - "num-derive", 1196 - "num-traits", 1197 - "thiserror", 1198 - ] 1199 - 1200 - [[package]] 1201 - name = "no-std-net" 1202 - version = "0.6.0" 1203 - source = "registry+https://github.com/rust-lang/crates.io-index" 1204 - checksum = "43794a0ace135be66a25d3ae77d41b91615fb68ae937f904090203e81f755b65" 1205 - 1206 - [[package]] 1207 - name = "ntapi" 1208 - version = "0.4.1" 1209 - source = "registry+https://github.com/rust-lang/crates.io-index" 1210 - checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 1211 - dependencies = [ 1212 - "winapi", 1213 - ] 1214 - 1215 - [[package]] 1216 - name = "num-conv" 1217 - version = "0.1.0" 1218 - source = "registry+https://github.com/rust-lang/crates.io-index" 1219 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1220 - 1221 - [[package]] 1222 - name = "num-derive" 1223 - version = "0.3.3" 1224 - source = "registry+https://github.com/rust-lang/crates.io-index" 1225 - checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 1226 - dependencies = [ 1227 - "proc-macro2", 1228 - "quote", 1229 - "syn 1.0.109", 1230 - ] 1231 - 1232 - [[package]] 1233 - name = "num-traits" 1234 - version = "0.2.19" 1235 - source = "registry+https://github.com/rust-lang/crates.io-index" 1236 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1237 - dependencies = [ 1238 - "autocfg", 1239 - ] 1240 - 1241 - [[package]] 1242 - name = "num_threads" 1243 - version = "0.1.7" 1244 - source = "registry+https://github.com/rust-lang/crates.io-index" 1245 - checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 1246 - dependencies = [ 1247 - "libc", 1248 - ] 1249 - 1250 - [[package]] 1251 - name = "object" 1252 - version = "0.36.1" 1253 - source = "registry+https://github.com/rust-lang/crates.io-index" 1254 - checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce" 1255 - dependencies = [ 1256 - "memchr", 1257 - ] 1258 - 1259 - [[package]] 1260 - name = "once_cell" 1261 - version = "1.19.0" 1262 - source = "registry+https://github.com/rust-lang/crates.io-index" 1263 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1264 - 1265 - [[package]] 1266 - name = "openssl" 1267 - version = "0.10.66" 1268 - source = "registry+https://github.com/rust-lang/crates.io-index" 1269 - checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" 1270 - dependencies = [ 1271 - "bitflags 2.6.0", 1272 - "cfg-if", 1273 - "foreign-types", 1274 - "libc", 1275 - "once_cell", 1276 - "openssl-macros", 1277 - "openssl-sys", 1278 - ] 1279 - 1280 - [[package]] 1281 - name = "openssl-macros" 1282 - version = "0.1.1" 1283 - source = "registry+https://github.com/rust-lang/crates.io-index" 1284 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1285 - dependencies = [ 1286 - "proc-macro2", 1287 - "quote", 1288 - "syn 2.0.68", 1289 - ] 1290 - 1291 - [[package]] 1292 - name = "openssl-probe" 1293 - version = "0.1.5" 1294 - source = "registry+https://github.com/rust-lang/crates.io-index" 1295 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1296 - 1297 - [[package]] 1298 - name = "openssl-sys" 1299 - version = "0.9.103" 1300 - source = "registry+https://github.com/rust-lang/crates.io-index" 1301 - checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" 1302 - dependencies = [ 1303 - "cc", 1304 - "libc", 1305 - "pkg-config", 1306 - "vcpkg", 1307 - ] 1308 - 1309 - [[package]] 1310 - name = "packet-builder" 1311 - version = "0.7.0" 1312 - source = "git+https://github.com/cyqsimon/packet_builder.git?branch=patch-update#bf5a89ba75795f5067bb03fa8de00b833ffe4eae" 1313 - dependencies = [ 1314 - "derive-new", 1315 - "ipnetwork", 1316 - "pnet", 1317 - "pnet_datalink", 1318 - ] 1319 - 1320 - [[package]] 1321 - name = "parking_lot" 1322 - version = "0.12.3" 1323 - source = "registry+https://github.com/rust-lang/crates.io-index" 1324 - checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 1325 - dependencies = [ 1326 - "lock_api", 1327 - "parking_lot_core", 1328 - ] 1329 - 1330 - [[package]] 1331 - name = "parking_lot_core" 1332 - version = "0.9.10" 1333 - source = "registry+https://github.com/rust-lang/crates.io-index" 1334 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 1335 - dependencies = [ 1336 - "cfg-if", 1337 - "libc", 1338 - "redox_syscall", 1339 - "smallvec", 1340 - "windows-targets 0.52.6", 1341 - ] 1342 - 1343 - [[package]] 1344 - name = "paste" 1345 - version = "1.0.15" 1346 - source = "registry+https://github.com/rust-lang/crates.io-index" 1347 - checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 1348 - 1349 - [[package]] 1350 - name = "pbkdf2" 1351 - version = "0.12.2" 1352 - source = "registry+https://github.com/rust-lang/crates.io-index" 1353 - checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" 1354 - dependencies = [ 1355 - "digest", 1356 - "hmac", 1357 - ] 1358 - 1359 - [[package]] 1360 - name = "percent-encoding" 1361 - version = "2.3.1" 1362 - source = "registry+https://github.com/rust-lang/crates.io-index" 1363 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1364 - 1365 - [[package]] 1366 - name = "pin-project-lite" 1367 - version = "0.2.14" 1368 - source = "registry+https://github.com/rust-lang/crates.io-index" 1369 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 1370 - 1371 - [[package]] 1372 - name = "pin-utils" 1373 - version = "0.1.0" 1374 - source = "registry+https://github.com/rust-lang/crates.io-index" 1375 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1376 - 1377 - [[package]] 1378 - name = "pkg-config" 1379 - version = "0.3.30" 1380 - source = "registry+https://github.com/rust-lang/crates.io-index" 1381 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 1382 - 1383 - [[package]] 1384 - name = "pnet" 1385 - version = "0.34.0" 1386 - source = "registry+https://github.com/rust-lang/crates.io-index" 1387 - checksum = "130c5b738eeda2dc5796fe2671e49027e6935e817ab51b930a36ec9e6a206a64" 1388 - dependencies = [ 1389 - "ipnetwork", 1390 - "pnet_base", 1391 - "pnet_datalink", 1392 - "pnet_packet", 1393 - "pnet_sys", 1394 - "pnet_transport", 1395 - ] 1396 - 1397 - [[package]] 1398 - name = "pnet_base" 1399 - version = "0.34.0" 1400 - source = "registry+https://github.com/rust-lang/crates.io-index" 1401 - checksum = "fe4cf6fb3ab38b68d01ab2aea03ed3d1132b4868fa4e06285f29f16da01c5f4c" 1402 - dependencies = [ 1403 - "no-std-net", 1404 - ] 1405 - 1406 - [[package]] 1407 - name = "pnet_datalink" 1408 - version = "0.34.0" 1409 - source = "registry+https://github.com/rust-lang/crates.io-index" 1410 - checksum = "ad5854abf0067ebbd3967f7d45ebc8976ff577ff0c7bd101c4973ae3c70f98fe" 1411 - dependencies = [ 1412 - "ipnetwork", 1413 - "libc", 1414 - "pnet_base", 1415 - "pnet_sys", 1416 - "winapi", 1417 - ] 1418 - 1419 - [[package]] 1420 - name = "pnet_macros" 1421 - version = "0.34.0" 1422 - source = "registry+https://github.com/rust-lang/crates.io-index" 1423 - checksum = "688b17499eee04a0408aca0aa5cba5fc86401d7216de8a63fdf7a4c227871804" 1424 - dependencies = [ 1425 - "proc-macro2", 1426 - "quote", 1427 - "regex", 1428 - "syn 2.0.68", 1429 - ] 1430 - 1431 - [[package]] 1432 - name = "pnet_macros_support" 1433 - version = "0.34.0" 1434 - source = "registry+https://github.com/rust-lang/crates.io-index" 1435 - checksum = "eea925b72f4bd37f8eab0f221bbe4c78b63498350c983ffa9dd4bcde7e030f56" 1436 - dependencies = [ 1437 - "pnet_base", 1438 - ] 1439 - 1440 - [[package]] 1441 - name = "pnet_packet" 1442 - version = "0.34.0" 1443 - source = "registry+https://github.com/rust-lang/crates.io-index" 1444 - checksum = "a9a005825396b7fe7a38a8e288dbc342d5034dac80c15212436424fef8ea90ba" 1445 - dependencies = [ 1446 - "glob", 1447 - "pnet_base", 1448 - "pnet_macros", 1449 - "pnet_macros_support", 1450 - ] 1451 - 1452 - [[package]] 1453 - name = "pnet_sys" 1454 - version = "0.34.0" 1455 - source = "registry+https://github.com/rust-lang/crates.io-index" 1456 - checksum = "417c0becd1b573f6d544f73671070b039051e5ad819cc64aa96377b536128d00" 1457 - dependencies = [ 1458 - "libc", 1459 - "winapi", 1460 - ] 1461 - 1462 - [[package]] 1463 - name = "pnet_transport" 1464 - version = "0.34.0" 1465 - source = "registry+https://github.com/rust-lang/crates.io-index" 1466 - checksum = "2637e14d7de974ee2f74393afccbc8704f3e54e6eb31488715e72481d1662cc3" 1467 - dependencies = [ 1468 - "libc", 1469 - "pnet_base", 1470 - "pnet_packet", 1471 - "pnet_sys", 1472 - ] 1473 - 1474 - [[package]] 1475 - name = "powerfmt" 1476 - version = "0.2.0" 1477 - source = "registry+https://github.com/rust-lang/crates.io-index" 1478 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1479 - 1480 - [[package]] 1481 - name = "ppv-lite86" 1482 - version = "0.2.17" 1483 - source = "registry+https://github.com/rust-lang/crates.io-index" 1484 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1485 - 1486 - [[package]] 1487 - name = "proc-macro-crate" 1488 - version = "3.1.0" 1489 - source = "registry+https://github.com/rust-lang/crates.io-index" 1490 - checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 1491 - dependencies = [ 1492 - "toml_edit", 1493 - ] 1494 - 1495 - [[package]] 1496 - name = "proc-macro2" 1497 - version = "1.0.86" 1498 - source = "registry+https://github.com/rust-lang/crates.io-index" 1499 - checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 1500 - dependencies = [ 1501 - "unicode-ident", 1502 - ] 1503 - 1504 - [[package]] 1505 - name = "procfs" 1506 - version = "0.16.0" 1507 - source = "registry+https://github.com/rust-lang/crates.io-index" 1508 - checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" 1509 - dependencies = [ 1510 - "bitflags 2.6.0", 1511 - "chrono", 1512 - "flate2", 1513 - "hex", 1514 - "lazy_static", 1515 - "procfs-core", 1516 - "rustix", 1517 - ] 1518 - 1519 - [[package]] 1520 - name = "procfs-core" 1521 - version = "0.16.0" 1522 - source = "registry+https://github.com/rust-lang/crates.io-index" 1523 - checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" 1524 - dependencies = [ 1525 - "bitflags 2.6.0", 1526 - "chrono", 1527 - "hex", 1528 - ] 1529 - 1530 - [[package]] 1531 - name = "quick-error" 1532 - version = "1.2.3" 1533 - source = "registry+https://github.com/rust-lang/crates.io-index" 1534 - checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 1535 - 1536 - [[package]] 1537 - name = "quote" 1538 - version = "1.0.36" 1539 - source = "registry+https://github.com/rust-lang/crates.io-index" 1540 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 1541 - dependencies = [ 1542 - "proc-macro2", 1543 - ] 1544 - 1545 - [[package]] 1546 - name = "rand" 1547 - version = "0.8.5" 1548 - source = "registry+https://github.com/rust-lang/crates.io-index" 1549 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1550 - dependencies = [ 1551 - "libc", 1552 - "rand_chacha", 1553 - "rand_core", 1554 - ] 1555 - 1556 - [[package]] 1557 - name = "rand_chacha" 1558 - version = "0.3.1" 1559 - source = "registry+https://github.com/rust-lang/crates.io-index" 1560 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1561 - dependencies = [ 1562 - "ppv-lite86", 1563 - "rand_core", 1564 - ] 1565 - 1566 - [[package]] 1567 - name = "rand_core" 1568 - version = "0.6.4" 1569 - source = "registry+https://github.com/rust-lang/crates.io-index" 1570 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1571 - dependencies = [ 1572 - "getrandom", 1573 - ] 1574 - 1575 - [[package]] 1576 - name = "ratatui" 1577 - version = "0.27.0" 1578 - source = "registry+https://github.com/rust-lang/crates.io-index" 1579 - checksum = "d16546c5b5962abf8ce6e2881e722b4e0ae3b6f1a08a26ae3573c55853ca68d3" 1580 - dependencies = [ 1581 - "bitflags 2.6.0", 1582 - "cassowary", 1583 - "compact_str", 1584 - "crossterm", 1585 - "itertools 0.13.0", 1586 - "lru", 1587 - "paste", 1588 - "stability", 1589 - "strum", 1590 - "strum_macros", 1591 - "unicode-segmentation", 1592 - "unicode-truncate", 1593 - "unicode-width", 1594 - ] 1595 - 1596 - [[package]] 1597 - name = "rayon" 1598 - version = "1.10.0" 1599 - source = "registry+https://github.com/rust-lang/crates.io-index" 1600 - checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" 1601 - dependencies = [ 1602 - "either", 1603 - "rayon-core", 1604 - ] 1605 - 1606 - [[package]] 1607 - name = "rayon-core" 1608 - version = "1.12.1" 1609 - source = "registry+https://github.com/rust-lang/crates.io-index" 1610 - checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" 1611 - dependencies = [ 1612 - "crossbeam-deque", 1613 - "crossbeam-utils", 1614 - ] 1615 - 1616 - [[package]] 1617 - name = "redox_syscall" 1618 - version = "0.5.2" 1619 - source = "registry+https://github.com/rust-lang/crates.io-index" 1620 - checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd" 1621 - dependencies = [ 1622 - "bitflags 2.6.0", 1623 - ] 1624 - 1625 - [[package]] 1626 - name = "regex" 1627 - version = "1.10.5" 1628 - source = "registry+https://github.com/rust-lang/crates.io-index" 1629 - checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" 1630 - dependencies = [ 1631 - "aho-corasick", 1632 - "memchr", 1633 - "regex-automata", 1634 - "regex-syntax", 1635 - ] 1636 - 1637 - [[package]] 1638 - name = "regex-automata" 1639 - version = "0.4.7" 1640 - source = "registry+https://github.com/rust-lang/crates.io-index" 1641 - checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 1642 - dependencies = [ 1643 - "aho-corasick", 1644 - "memchr", 1645 - "regex-syntax", 1646 - ] 1647 - 1648 - [[package]] 1649 - name = "regex-syntax" 1650 - version = "0.8.4" 1651 - source = "registry+https://github.com/rust-lang/crates.io-index" 1652 - checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 1653 - 1654 - [[package]] 1655 - name = "relative-path" 1656 - version = "1.9.3" 1657 - source = "registry+https://github.com/rust-lang/crates.io-index" 1658 - checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" 1659 - 1660 - [[package]] 1661 - name = "resolv-conf" 1662 - version = "0.7.0" 1663 - source = "registry+https://github.com/rust-lang/crates.io-index" 1664 - checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" 1665 - dependencies = [ 1666 - "hostname", 1667 - "quick-error", 1668 - ] 1669 - 1670 - [[package]] 1671 - name = "roff" 1672 - version = "0.2.1" 1673 - source = "registry+https://github.com/rust-lang/crates.io-index" 1674 - checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316" 1675 - 1676 - [[package]] 1677 - name = "rstest" 1678 - version = "0.21.0" 1679 - source = "registry+https://github.com/rust-lang/crates.io-index" 1680 - checksum = "9afd55a67069d6e434a95161415f5beeada95a01c7b815508a82dcb0e1593682" 1681 - dependencies = [ 1682 - "futures", 1683 - "futures-timer", 1684 - "rstest_macros", 1685 - "rustc_version", 1686 - ] 1687 - 1688 - [[package]] 1689 - name = "rstest_macros" 1690 - version = "0.21.0" 1691 - source = "registry+https://github.com/rust-lang/crates.io-index" 1692 - checksum = "4165dfae59a39dd41d8dec720d3cbfbc71f69744efb480a3920f5d4e0cc6798d" 1693 - dependencies = [ 1694 - "cfg-if", 1695 - "glob", 1696 - "proc-macro-crate", 1697 - "proc-macro2", 1698 - "quote", 1699 - "regex", 1700 - "relative-path", 1701 - "rustc_version", 1702 - "syn 2.0.68", 1703 - "unicode-ident", 1704 - ] 1705 - 1706 - [[package]] 1707 - name = "rustc-demangle" 1708 - version = "0.1.24" 1709 - source = "registry+https://github.com/rust-lang/crates.io-index" 1710 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1711 - 1712 - [[package]] 1713 - name = "rustc_version" 1714 - version = "0.4.0" 1715 - source = "registry+https://github.com/rust-lang/crates.io-index" 1716 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1717 - dependencies = [ 1718 - "semver", 1719 - ] 1720 - 1721 - [[package]] 1722 - name = "rustix" 1723 - version = "0.38.34" 1724 - source = "registry+https://github.com/rust-lang/crates.io-index" 1725 - checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 1726 - dependencies = [ 1727 - "bitflags 2.6.0", 1728 - "errno", 1729 - "libc", 1730 - "linux-raw-sys", 1731 - "windows-sys 0.52.0", 1732 - ] 1733 - 1734 - [[package]] 1735 - name = "rustversion" 1736 - version = "1.0.17" 1737 - source = "registry+https://github.com/rust-lang/crates.io-index" 1738 - checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 1739 - 1740 - [[package]] 1741 - name = "ryu" 1742 - version = "1.0.18" 1743 - source = "registry+https://github.com/rust-lang/crates.io-index" 1744 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1745 - 1746 - [[package]] 1747 - name = "schannel" 1748 - version = "0.1.23" 1749 - source = "registry+https://github.com/rust-lang/crates.io-index" 1750 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 1751 - dependencies = [ 1752 - "windows-sys 0.52.0", 1753 - ] 1754 - 1755 - [[package]] 1756 - name = "scopeguard" 1757 - version = "1.2.0" 1758 - source = "registry+https://github.com/rust-lang/crates.io-index" 1759 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1760 - 1761 - [[package]] 1762 - name = "security-framework" 1763 - version = "2.11.0" 1764 - source = "registry+https://github.com/rust-lang/crates.io-index" 1765 - checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" 1766 - dependencies = [ 1767 - "bitflags 2.6.0", 1768 - "core-foundation", 1769 - "core-foundation-sys", 1770 - "libc", 1771 - "security-framework-sys", 1772 - ] 1773 - 1774 - [[package]] 1775 - name = "security-framework-sys" 1776 - version = "2.11.0" 1777 - source = "registry+https://github.com/rust-lang/crates.io-index" 1778 - checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" 1779 - dependencies = [ 1780 - "core-foundation-sys", 1781 - "libc", 1782 - ] 1783 - 1784 - [[package]] 1785 - name = "semver" 1786 - version = "1.0.23" 1787 - source = "registry+https://github.com/rust-lang/crates.io-index" 1788 - checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 1789 - 1790 - [[package]] 1791 - name = "serde" 1792 - version = "1.0.203" 1793 - source = "registry+https://github.com/rust-lang/crates.io-index" 1794 - checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" 1795 - dependencies = [ 1796 - "serde_derive", 1797 - ] 1798 - 1799 - [[package]] 1800 - name = "serde_derive" 1801 - version = "1.0.203" 1802 - source = "registry+https://github.com/rust-lang/crates.io-index" 1803 - checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" 1804 - dependencies = [ 1805 - "proc-macro2", 1806 - "quote", 1807 - "syn 2.0.68", 1808 - ] 1809 - 1810 - [[package]] 1811 - name = "sha1" 1812 - version = "0.10.6" 1813 - source = "registry+https://github.com/rust-lang/crates.io-index" 1814 - checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 1815 - dependencies = [ 1816 - "cfg-if", 1817 - "cpufeatures", 1818 - "digest", 1819 - ] 1820 - 1821 - [[package]] 1822 - name = "signal-hook" 1823 - version = "0.3.17" 1824 - source = "registry+https://github.com/rust-lang/crates.io-index" 1825 - checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 1826 - dependencies = [ 1827 - "libc", 1828 - "signal-hook-registry", 1829 - ] 1830 - 1831 - [[package]] 1832 - name = "signal-hook-mio" 1833 - version = "0.2.4" 1834 - source = "registry+https://github.com/rust-lang/crates.io-index" 1835 - checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" 1836 - dependencies = [ 1837 - "libc", 1838 - "mio 0.8.11", 1839 - "signal-hook", 1840 - ] 1841 - 1842 - [[package]] 1843 - name = "signal-hook-registry" 1844 - version = "1.4.2" 1845 - source = "registry+https://github.com/rust-lang/crates.io-index" 1846 - checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 1847 - dependencies = [ 1848 - "libc", 1849 - ] 1850 - 1851 - [[package]] 1852 - name = "simd-adler32" 1853 - version = "0.3.7" 1854 - source = "registry+https://github.com/rust-lang/crates.io-index" 1855 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 1856 - 1857 - [[package]] 1858 - name = "similar" 1859 - version = "2.5.0" 1860 - source = "registry+https://github.com/rust-lang/crates.io-index" 1861 - checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640" 1862 - 1863 - [[package]] 1864 - name = "simplelog" 1865 - version = "0.12.2" 1866 - source = "registry+https://github.com/rust-lang/crates.io-index" 1867 - checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0" 1868 - dependencies = [ 1869 - "log", 1870 - "termcolor", 1871 - "time", 1872 - ] 1873 - 1874 - [[package]] 1875 - name = "slab" 1876 - version = "0.4.9" 1877 - source = "registry+https://github.com/rust-lang/crates.io-index" 1878 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1879 - dependencies = [ 1880 - "autocfg", 1881 - ] 1882 - 1883 - [[package]] 1884 - name = "smallvec" 1885 - version = "1.13.2" 1886 - source = "registry+https://github.com/rust-lang/crates.io-index" 1887 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1888 - 1889 - [[package]] 1890 - name = "socket2" 1891 - version = "0.5.7" 1892 - source = "registry+https://github.com/rust-lang/crates.io-index" 1893 - checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 1894 - dependencies = [ 1895 - "libc", 1896 - "windows-sys 0.52.0", 1897 - ] 1898 - 1899 - [[package]] 1900 - name = "stability" 1901 - version = "0.2.0" 1902 - source = "registry+https://github.com/rust-lang/crates.io-index" 1903 - checksum = "2ff9eaf853dec4c8802325d8b6d3dffa86cc707fd7a1a4cdbf416e13b061787a" 1904 - dependencies = [ 1905 - "quote", 1906 - "syn 2.0.68", 1907 - ] 1908 - 1909 - [[package]] 1910 - name = "static_assertions" 1911 - version = "1.1.0" 1912 - source = "registry+https://github.com/rust-lang/crates.io-index" 1913 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1914 - 1915 - [[package]] 1916 - name = "strsim" 1917 - version = "0.11.1" 1918 - source = "registry+https://github.com/rust-lang/crates.io-index" 1919 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1920 - 1921 - [[package]] 1922 - name = "strum" 1923 - version = "0.26.3" 1924 - source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 1926 - dependencies = [ 1927 - "strum_macros", 1928 - ] 1929 - 1930 - [[package]] 1931 - name = "strum_macros" 1932 - version = "0.26.4" 1933 - source = "registry+https://github.com/rust-lang/crates.io-index" 1934 - checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 1935 - dependencies = [ 1936 - "heck 0.5.0", 1937 - "proc-macro2", 1938 - "quote", 1939 - "rustversion", 1940 - "syn 2.0.68", 1941 - ] 1942 - 1943 - [[package]] 1944 - name = "subtle" 1945 - version = "2.6.1" 1946 - source = "registry+https://github.com/rust-lang/crates.io-index" 1947 - checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 1948 - 1949 - [[package]] 1950 - name = "syn" 1951 - version = "1.0.109" 1952 - source = "registry+https://github.com/rust-lang/crates.io-index" 1953 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1954 - dependencies = [ 1955 - "proc-macro2", 1956 - "quote", 1957 - "unicode-ident", 1958 - ] 1959 - 1960 - [[package]] 1961 - name = "syn" 1962 - version = "2.0.68" 1963 - source = "registry+https://github.com/rust-lang/crates.io-index" 1964 - checksum = "901fa70d88b9d6c98022e23b4136f9f3e54e4662c3bc1bd1d84a42a9a0f0c1e9" 1965 - dependencies = [ 1966 - "proc-macro2", 1967 - "quote", 1968 - "unicode-ident", 1969 - ] 1970 - 1971 - [[package]] 1972 - name = "sysinfo" 1973 - version = "0.31.0" 1974 - source = "registry+https://github.com/rust-lang/crates.io-index" 1975 - checksum = "29a6b037e3af4ae9a9d6214198e4df53091363b2c96c88fc416a6c1bd92a2799" 1976 - dependencies = [ 1977 - "bstr", 1978 - "core-foundation-sys", 1979 - "libc", 1980 - "memchr", 1981 - "ntapi", 1982 - "rayon", 1983 - "windows", 1984 - ] 1985 - 1986 - [[package]] 1987 - name = "tempfile" 1988 - version = "3.10.1" 1989 - source = "registry+https://github.com/rust-lang/crates.io-index" 1990 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 1991 - dependencies = [ 1992 - "cfg-if", 1993 - "fastrand", 1994 - "rustix", 1995 - "windows-sys 0.52.0", 1996 - ] 1997 - 1998 - [[package]] 1999 - name = "termcolor" 2000 - version = "1.4.1" 2001 - source = "registry+https://github.com/rust-lang/crates.io-index" 2002 - checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 2003 - dependencies = [ 2004 - "winapi-util", 2005 - ] 2006 - 2007 - [[package]] 2008 - name = "thiserror" 2009 - version = "1.0.63" 2010 - source = "registry+https://github.com/rust-lang/crates.io-index" 2011 - checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" 2012 - dependencies = [ 2013 - "thiserror-impl", 2014 - ] 2015 - 2016 - [[package]] 2017 - name = "thiserror-impl" 2018 - version = "1.0.63" 2019 - source = "registry+https://github.com/rust-lang/crates.io-index" 2020 - checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" 2021 - dependencies = [ 2022 - "proc-macro2", 2023 - "quote", 2024 - "syn 2.0.68", 2025 - ] 2026 - 2027 - [[package]] 2028 - name = "time" 2029 - version = "0.3.36" 2030 - source = "registry+https://github.com/rust-lang/crates.io-index" 2031 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 2032 - dependencies = [ 2033 - "deranged", 2034 - "itoa", 2035 - "libc", 2036 - "num-conv", 2037 - "num_threads", 2038 - "powerfmt", 2039 - "serde", 2040 - "time-core", 2041 - "time-macros", 2042 - ] 2043 - 2044 - [[package]] 2045 - name = "time-core" 2046 - version = "0.1.2" 2047 - source = "registry+https://github.com/rust-lang/crates.io-index" 2048 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2049 - 2050 - [[package]] 2051 - name = "time-macros" 2052 - version = "0.2.18" 2053 - source = "registry+https://github.com/rust-lang/crates.io-index" 2054 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 2055 - dependencies = [ 2056 - "num-conv", 2057 - "time-core", 2058 - ] 2059 - 2060 - [[package]] 2061 - name = "tinyvec" 2062 - version = "1.6.1" 2063 - source = "registry+https://github.com/rust-lang/crates.io-index" 2064 - checksum = "c55115c6fbe2d2bef26eb09ad74bde02d8255476fc0c7b515ef09fbb35742d82" 2065 - dependencies = [ 2066 - "tinyvec_macros", 2067 - ] 2068 - 2069 - [[package]] 2070 - name = "tinyvec_macros" 2071 - version = "0.1.1" 2072 - source = "registry+https://github.com/rust-lang/crates.io-index" 2073 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2074 - 2075 - [[package]] 2076 - name = "tokio" 2077 - version = "1.39.2" 2078 - source = "registry+https://github.com/rust-lang/crates.io-index" 2079 - checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" 2080 - dependencies = [ 2081 - "backtrace", 2082 - "bytes", 2083 - "libc", 2084 - "mio 1.0.1", 2085 - "pin-project-lite", 2086 - "socket2", 2087 - "windows-sys 0.52.0", 2088 - ] 2089 - 2090 - [[package]] 2091 - name = "toml_datetime" 2092 - version = "0.6.6" 2093 - source = "registry+https://github.com/rust-lang/crates.io-index" 2094 - checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 2095 - 2096 - [[package]] 2097 - name = "toml_edit" 2098 - version = "0.21.1" 2099 - source = "registry+https://github.com/rust-lang/crates.io-index" 2100 - checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 2101 - dependencies = [ 2102 - "indexmap", 2103 - "toml_datetime", 2104 - "winnow", 2105 - ] 2106 - 2107 - [[package]] 2108 - name = "tracing" 2109 - version = "0.1.40" 2110 - source = "registry+https://github.com/rust-lang/crates.io-index" 2111 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2112 - dependencies = [ 2113 - "pin-project-lite", 2114 - "tracing-attributes", 2115 - "tracing-core", 2116 - ] 2117 - 2118 - [[package]] 2119 - name = "tracing-attributes" 2120 - version = "0.1.27" 2121 - source = "registry+https://github.com/rust-lang/crates.io-index" 2122 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 2123 - dependencies = [ 2124 - "proc-macro2", 2125 - "quote", 2126 - "syn 2.0.68", 2127 - ] 2128 - 2129 - [[package]] 2130 - name = "tracing-core" 2131 - version = "0.1.32" 2132 - source = "registry+https://github.com/rust-lang/crates.io-index" 2133 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2134 - dependencies = [ 2135 - "once_cell", 2136 - ] 2137 - 2138 - [[package]] 2139 - name = "trust-dns-proto" 2140 - version = "0.23.2" 2141 - source = "registry+https://github.com/rust-lang/crates.io-index" 2142 - checksum = "3119112651c157f4488931a01e586aa459736e9d6046d3bd9105ffb69352d374" 2143 - dependencies = [ 2144 - "async-trait", 2145 - "cfg-if", 2146 - "data-encoding", 2147 - "enum-as-inner", 2148 - "futures-channel", 2149 - "futures-io", 2150 - "futures-util", 2151 - "idna 0.4.0", 2152 - "ipnet", 2153 - "once_cell", 2154 - "rand", 2155 - "smallvec", 2156 - "thiserror", 2157 - "tinyvec", 2158 - "tokio", 2159 - "tracing", 2160 - "url", 2161 - ] 2162 - 2163 - [[package]] 2164 - name = "trust-dns-resolver" 2165 - version = "0.23.2" 2166 - source = "registry+https://github.com/rust-lang/crates.io-index" 2167 - checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6" 2168 - dependencies = [ 2169 - "cfg-if", 2170 - "futures-util", 2171 - "ipconfig", 2172 - "lru-cache", 2173 - "once_cell", 2174 - "parking_lot", 2175 - "rand", 2176 - "resolv-conf", 2177 - "smallvec", 2178 - "thiserror", 2179 - "tokio", 2180 - "tracing", 2181 - "trust-dns-proto", 2182 - ] 2183 - 2184 - [[package]] 2185 - name = "typenum" 2186 - version = "1.17.0" 2187 - source = "registry+https://github.com/rust-lang/crates.io-index" 2188 - checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 2189 - 2190 - [[package]] 2191 - name = "unicase" 2192 - version = "2.7.0" 2193 - source = "registry+https://github.com/rust-lang/crates.io-index" 2194 - checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 2195 - dependencies = [ 2196 - "version_check", 2197 - ] 2198 - 2199 - [[package]] 2200 - name = "unicode-bidi" 2201 - version = "0.3.15" 2202 - source = "registry+https://github.com/rust-lang/crates.io-index" 2203 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 2204 - 2205 - [[package]] 2206 - name = "unicode-ident" 2207 - version = "1.0.12" 2208 - source = "registry+https://github.com/rust-lang/crates.io-index" 2209 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 2210 - 2211 - [[package]] 2212 - name = "unicode-normalization" 2213 - version = "0.1.23" 2214 - source = "registry+https://github.com/rust-lang/crates.io-index" 2215 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 2216 - dependencies = [ 2217 - "tinyvec", 2218 - ] 2219 - 2220 - [[package]] 2221 - name = "unicode-segmentation" 2222 - version = "1.11.0" 2223 - source = "registry+https://github.com/rust-lang/crates.io-index" 2224 - checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 2225 - 2226 - [[package]] 2227 - name = "unicode-truncate" 2228 - version = "1.0.0" 2229 - source = "registry+https://github.com/rust-lang/crates.io-index" 2230 - checksum = "5a5fbabedabe362c618c714dbefda9927b5afc8e2a8102f47f081089a9019226" 2231 - dependencies = [ 2232 - "itertools 0.12.1", 2233 - "unicode-width", 2234 - ] 2235 - 2236 - [[package]] 2237 - name = "unicode-width" 2238 - version = "0.1.13" 2239 - source = "registry+https://github.com/rust-lang/crates.io-index" 2240 - checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" 2241 - 2242 - [[package]] 2243 - name = "url" 2244 - version = "2.5.2" 2245 - source = "registry+https://github.com/rust-lang/crates.io-index" 2246 - checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 2247 - dependencies = [ 2248 - "form_urlencoded", 2249 - "idna 0.5.0", 2250 - "percent-encoding", 2251 - ] 2252 - 2253 - [[package]] 2254 - name = "utf8parse" 2255 - version = "0.2.2" 2256 - source = "registry+https://github.com/rust-lang/crates.io-index" 2257 - checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 2258 - 2259 - [[package]] 2260 - name = "vcpkg" 2261 - version = "0.2.15" 2262 - source = "registry+https://github.com/rust-lang/crates.io-index" 2263 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2264 - 2265 - [[package]] 2266 - name = "version_check" 2267 - version = "0.9.4" 2268 - source = "registry+https://github.com/rust-lang/crates.io-index" 2269 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2270 - 2271 - [[package]] 2272 - name = "wasi" 2273 - version = "0.11.0+wasi-snapshot-preview1" 2274 - source = "registry+https://github.com/rust-lang/crates.io-index" 2275 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2276 - 2277 - [[package]] 2278 - name = "wasm-bindgen" 2279 - version = "0.2.92" 2280 - source = "registry+https://github.com/rust-lang/crates.io-index" 2281 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 2282 - dependencies = [ 2283 - "cfg-if", 2284 - "wasm-bindgen-macro", 2285 - ] 2286 - 2287 - [[package]] 2288 - name = "wasm-bindgen-backend" 2289 - version = "0.2.92" 2290 - source = "registry+https://github.com/rust-lang/crates.io-index" 2291 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 2292 - dependencies = [ 2293 - "bumpalo", 2294 - "log", 2295 - "once_cell", 2296 - "proc-macro2", 2297 - "quote", 2298 - "syn 2.0.68", 2299 - "wasm-bindgen-shared", 2300 - ] 2301 - 2302 - [[package]] 2303 - name = "wasm-bindgen-macro" 2304 - version = "0.2.92" 2305 - source = "registry+https://github.com/rust-lang/crates.io-index" 2306 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 2307 - dependencies = [ 2308 - "quote", 2309 - "wasm-bindgen-macro-support", 2310 - ] 2311 - 2312 - [[package]] 2313 - name = "wasm-bindgen-macro-support" 2314 - version = "0.2.92" 2315 - source = "registry+https://github.com/rust-lang/crates.io-index" 2316 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 2317 - dependencies = [ 2318 - "proc-macro2", 2319 - "quote", 2320 - "syn 2.0.68", 2321 - "wasm-bindgen-backend", 2322 - "wasm-bindgen-shared", 2323 - ] 2324 - 2325 - [[package]] 2326 - name = "wasm-bindgen-shared" 2327 - version = "0.2.92" 2328 - source = "registry+https://github.com/rust-lang/crates.io-index" 2329 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 2330 - 2331 - [[package]] 2332 - name = "widestring" 2333 - version = "1.1.0" 2334 - source = "registry+https://github.com/rust-lang/crates.io-index" 2335 - checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" 2336 - 2337 - [[package]] 2338 - name = "winapi" 2339 - version = "0.3.9" 2340 - source = "registry+https://github.com/rust-lang/crates.io-index" 2341 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2342 - dependencies = [ 2343 - "winapi-i686-pc-windows-gnu", 2344 - "winapi-x86_64-pc-windows-gnu", 2345 - ] 2346 - 2347 - [[package]] 2348 - name = "winapi-i686-pc-windows-gnu" 2349 - version = "0.4.0" 2350 - source = "registry+https://github.com/rust-lang/crates.io-index" 2351 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2352 - 2353 - [[package]] 2354 - name = "winapi-util" 2355 - version = "0.1.8" 2356 - source = "registry+https://github.com/rust-lang/crates.io-index" 2357 - checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 2358 - dependencies = [ 2359 - "windows-sys 0.52.0", 2360 - ] 2361 - 2362 - [[package]] 2363 - name = "winapi-x86_64-pc-windows-gnu" 2364 - version = "0.4.0" 2365 - source = "registry+https://github.com/rust-lang/crates.io-index" 2366 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2367 - 2368 - [[package]] 2369 - name = "windows" 2370 - version = "0.57.0" 2371 - source = "registry+https://github.com/rust-lang/crates.io-index" 2372 - checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143" 2373 - dependencies = [ 2374 - "windows-core 0.57.0", 2375 - "windows-targets 0.52.6", 2376 - ] 2377 - 2378 - [[package]] 2379 - name = "windows-core" 2380 - version = "0.52.0" 2381 - source = "registry+https://github.com/rust-lang/crates.io-index" 2382 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 2383 - dependencies = [ 2384 - "windows-targets 0.52.6", 2385 - ] 2386 - 2387 - [[package]] 2388 - name = "windows-core" 2389 - version = "0.57.0" 2390 - source = "registry+https://github.com/rust-lang/crates.io-index" 2391 - checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d" 2392 - dependencies = [ 2393 - "windows-implement", 2394 - "windows-interface", 2395 - "windows-result", 2396 - "windows-targets 0.52.6", 2397 - ] 2398 - 2399 - [[package]] 2400 - name = "windows-implement" 2401 - version = "0.57.0" 2402 - source = "registry+https://github.com/rust-lang/crates.io-index" 2403 - checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7" 2404 - dependencies = [ 2405 - "proc-macro2", 2406 - "quote", 2407 - "syn 2.0.68", 2408 - ] 2409 - 2410 - [[package]] 2411 - name = "windows-interface" 2412 - version = "0.57.0" 2413 - source = "registry+https://github.com/rust-lang/crates.io-index" 2414 - checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7" 2415 - dependencies = [ 2416 - "proc-macro2", 2417 - "quote", 2418 - "syn 2.0.68", 2419 - ] 2420 - 2421 - [[package]] 2422 - name = "windows-result" 2423 - version = "0.1.2" 2424 - source = "registry+https://github.com/rust-lang/crates.io-index" 2425 - checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 2426 - dependencies = [ 2427 - "windows-targets 0.52.6", 2428 - ] 2429 - 2430 - [[package]] 2431 - name = "windows-sys" 2432 - version = "0.48.0" 2433 - source = "registry+https://github.com/rust-lang/crates.io-index" 2434 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2435 - dependencies = [ 2436 - "windows-targets 0.48.5", 2437 - ] 2438 - 2439 - [[package]] 2440 - name = "windows-sys" 2441 - version = "0.52.0" 2442 - source = "registry+https://github.com/rust-lang/crates.io-index" 2443 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2444 - dependencies = [ 2445 - "windows-targets 0.52.6", 2446 - ] 2447 - 2448 - [[package]] 2449 - name = "windows-targets" 2450 - version = "0.48.5" 2451 - source = "registry+https://github.com/rust-lang/crates.io-index" 2452 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2453 - dependencies = [ 2454 - "windows_aarch64_gnullvm 0.48.5", 2455 - "windows_aarch64_msvc 0.48.5", 2456 - "windows_i686_gnu 0.48.5", 2457 - "windows_i686_msvc 0.48.5", 2458 - "windows_x86_64_gnu 0.48.5", 2459 - "windows_x86_64_gnullvm 0.48.5", 2460 - "windows_x86_64_msvc 0.48.5", 2461 - ] 2462 - 2463 - [[package]] 2464 - name = "windows-targets" 2465 - version = "0.52.6" 2466 - source = "registry+https://github.com/rust-lang/crates.io-index" 2467 - checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 2468 - dependencies = [ 2469 - "windows_aarch64_gnullvm 0.52.6", 2470 - "windows_aarch64_msvc 0.52.6", 2471 - "windows_i686_gnu 0.52.6", 2472 - "windows_i686_gnullvm", 2473 - "windows_i686_msvc 0.52.6", 2474 - "windows_x86_64_gnu 0.52.6", 2475 - "windows_x86_64_gnullvm 0.52.6", 2476 - "windows_x86_64_msvc 0.52.6", 2477 - ] 2478 - 2479 - [[package]] 2480 - name = "windows_aarch64_gnullvm" 2481 - version = "0.48.5" 2482 - source = "registry+https://github.com/rust-lang/crates.io-index" 2483 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2484 - 2485 - [[package]] 2486 - name = "windows_aarch64_gnullvm" 2487 - version = "0.52.6" 2488 - source = "registry+https://github.com/rust-lang/crates.io-index" 2489 - checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2490 - 2491 - [[package]] 2492 - name = "windows_aarch64_msvc" 2493 - version = "0.48.5" 2494 - source = "registry+https://github.com/rust-lang/crates.io-index" 2495 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2496 - 2497 - [[package]] 2498 - name = "windows_aarch64_msvc" 2499 - version = "0.52.6" 2500 - source = "registry+https://github.com/rust-lang/crates.io-index" 2501 - checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2502 - 2503 - [[package]] 2504 - name = "windows_i686_gnu" 2505 - version = "0.48.5" 2506 - source = "registry+https://github.com/rust-lang/crates.io-index" 2507 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2508 - 2509 - [[package]] 2510 - name = "windows_i686_gnu" 2511 - version = "0.52.6" 2512 - source = "registry+https://github.com/rust-lang/crates.io-index" 2513 - checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 2514 - 2515 - [[package]] 2516 - name = "windows_i686_gnullvm" 2517 - version = "0.52.6" 2518 - source = "registry+https://github.com/rust-lang/crates.io-index" 2519 - checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 2520 - 2521 - [[package]] 2522 - name = "windows_i686_msvc" 2523 - version = "0.48.5" 2524 - source = "registry+https://github.com/rust-lang/crates.io-index" 2525 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2526 - 2527 - [[package]] 2528 - name = "windows_i686_msvc" 2529 - version = "0.52.6" 2530 - source = "registry+https://github.com/rust-lang/crates.io-index" 2531 - checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 2532 - 2533 - [[package]] 2534 - name = "windows_x86_64_gnu" 2535 - version = "0.48.5" 2536 - source = "registry+https://github.com/rust-lang/crates.io-index" 2537 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2538 - 2539 - [[package]] 2540 - name = "windows_x86_64_gnu" 2541 - version = "0.52.6" 2542 - source = "registry+https://github.com/rust-lang/crates.io-index" 2543 - checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 2544 - 2545 - [[package]] 2546 - name = "windows_x86_64_gnullvm" 2547 - version = "0.48.5" 2548 - source = "registry+https://github.com/rust-lang/crates.io-index" 2549 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2550 - 2551 - [[package]] 2552 - name = "windows_x86_64_gnullvm" 2553 - version = "0.52.6" 2554 - source = "registry+https://github.com/rust-lang/crates.io-index" 2555 - checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2556 - 2557 - [[package]] 2558 - name = "windows_x86_64_msvc" 2559 - version = "0.48.5" 2560 - source = "registry+https://github.com/rust-lang/crates.io-index" 2561 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2562 - 2563 - [[package]] 2564 - name = "windows_x86_64_msvc" 2565 - version = "0.52.6" 2566 - source = "registry+https://github.com/rust-lang/crates.io-index" 2567 - checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2568 - 2569 - [[package]] 2570 - name = "winnow" 2571 - version = "0.5.40" 2572 - source = "registry+https://github.com/rust-lang/crates.io-index" 2573 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 2574 - dependencies = [ 2575 - "memchr", 2576 - ] 2577 - 2578 - [[package]] 2579 - name = "winreg" 2580 - version = "0.50.0" 2581 - source = "registry+https://github.com/rust-lang/crates.io-index" 2582 - checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 2583 - dependencies = [ 2584 - "cfg-if", 2585 - "windows-sys 0.48.0", 2586 - ] 2587 - 2588 - [[package]] 2589 - name = "zerocopy" 2590 - version = "0.7.35" 2591 - source = "registry+https://github.com/rust-lang/crates.io-index" 2592 - checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 2593 - dependencies = [ 2594 - "zerocopy-derive", 2595 - ] 2596 - 2597 - [[package]] 2598 - name = "zerocopy-derive" 2599 - version = "0.7.35" 2600 - source = "registry+https://github.com/rust-lang/crates.io-index" 2601 - checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 2602 - dependencies = [ 2603 - "proc-macro2", 2604 - "quote", 2605 - "syn 2.0.68", 2606 - ] 2607 - 2608 - [[package]] 2609 - name = "zeroize" 2610 - version = "1.8.1" 2611 - source = "registry+https://github.com/rust-lang/crates.io-index" 2612 - checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 2613 - dependencies = [ 2614 - "zeroize_derive", 2615 - ] 2616 - 2617 - [[package]] 2618 - name = "zeroize_derive" 2619 - version = "1.4.2" 2620 - source = "registry+https://github.com/rust-lang/crates.io-index" 2621 - checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 2622 - dependencies = [ 2623 - "proc-macro2", 2624 - "quote", 2625 - "syn 2.0.68", 2626 - ] 2627 - 2628 - [[package]] 2629 - name = "zip" 2630 - version = "2.1.6" 2631 - source = "registry+https://github.com/rust-lang/crates.io-index" 2632 - checksum = "40dd8c92efc296286ce1fbd16657c5dbefff44f1b4ca01cc5f517d8b7b3d3e2e" 2633 - dependencies = [ 2634 - "aes", 2635 - "arbitrary", 2636 - "bzip2", 2637 - "constant_time_eq", 2638 - "crc32fast", 2639 - "crossbeam-utils", 2640 - "deflate64", 2641 - "displaydoc", 2642 - "flate2", 2643 - "hmac", 2644 - "indexmap", 2645 - "lzma-rs", 2646 - "memchr", 2647 - "pbkdf2", 2648 - "rand", 2649 - "sha1", 2650 - "thiserror", 2651 - "time", 2652 - "zeroize", 2653 - "zopfli", 2654 - "zstd", 2655 - ] 2656 - 2657 - [[package]] 2658 - name = "zopfli" 2659 - version = "0.8.1" 2660 - source = "registry+https://github.com/rust-lang/crates.io-index" 2661 - checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946" 2662 - dependencies = [ 2663 - "bumpalo", 2664 - "crc32fast", 2665 - "lockfree-object-pool", 2666 - "log", 2667 - "once_cell", 2668 - "simd-adler32", 2669 - ] 2670 - 2671 - [[package]] 2672 - name = "zstd" 2673 - version = "0.13.1" 2674 - source = "registry+https://github.com/rust-lang/crates.io-index" 2675 - checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a" 2676 - dependencies = [ 2677 - "zstd-safe", 2678 - ] 2679 - 2680 - [[package]] 2681 - name = "zstd-safe" 2682 - version = "7.1.0" 2683 - source = "registry+https://github.com/rust-lang/crates.io-index" 2684 - checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" 2685 - dependencies = [ 2686 - "zstd-sys", 2687 - ] 2688 - 2689 - [[package]] 2690 - name = "zstd-sys" 2691 - version = "2.0.11+zstd.1.5.6" 2692 - source = "registry+https://github.com/rust-lang/crates.io-index" 2693 - checksum = "75652c55c0b6f3e6f12eb786fe1bc960396bf05a1eb3bf1f3691c3610ac2e6d4" 2694 - dependencies = [ 2695 - "cc", 2696 - "pkg-config", 2697 - ]
···
+11 -23
pkgs/tools/networking/bandwhich/default.nix pkgs/by-name/ba/bandwhich/package.nix
··· 3 stdenv, 4 fetchFromGitHub, 5 rustPlatform, 6 - Security, 7 installShellFiles, 8 }: 9 10 rustPlatform.buildRustPackage rec { 11 pname = "bandwhich"; 12 - version = "0.23.0"; 13 14 src = fetchFromGitHub { 15 owner = "imsnif"; 16 repo = pname; 17 rev = "v${version}"; 18 - hash = "sha256-8PUtlhy8rsQw3TqgpxWiVettGhncHetWCZcrDXjsR5M="; 19 }; 20 21 - cargoLock = { 22 - lockFile = ./Cargo.lock; 23 - outputHashes = { 24 - "packet-builder-0.7.0" = "sha256-KxNrnLZ/z3JJ3E1pCTJF9tNXI7XYNRc6ooTUz3avpjw="; 25 - }; 26 - }; 27 - 28 - checkFlags = [ 29 - # failing in upstream CI 30 - "--skip=tests::cases::ui::layout_under_50_width_under_50_height" 31 - ]; 32 33 nativeBuildInputs = [ installShellFiles ]; 34 35 - buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security; 36 37 # 10 passed; 47 failed https://hydra.nixos.org/build/148943783/nixlog/1 38 doCheck = !stdenv.hostPlatform.isDarwin; 39 - 40 - postPatch = '' 41 - ln --force -s ${./Cargo.lock} Cargo.lock 42 - ''; 43 44 preConfigure = '' 45 export BANDWHICH_GEN_DIR=_shell-files ··· 53 --zsh $BANDWHICH_GEN_DIR/_bandwhich 54 ''; 55 56 - meta = with lib; { 57 description = "CLI utility for displaying current network utilization"; 58 longDescription = '' 59 bandwhich sniffs a given network interface and records IP packet size, cross ··· 64 ''; 65 homepage = "https://github.com/imsnif/bandwhich"; 66 changelog = "https://github.com/imsnif/bandwhich/blob/${src.rev}/CHANGELOG.md"; 67 - license = licenses.mit; 68 - maintainers = with maintainers; [ 69 Br1ght0ne 70 figsoda 71 ]; 72 - platforms = platforms.unix; 73 mainProgram = "bandwhich"; 74 }; 75 }
··· 3 stdenv, 4 fetchFromGitHub, 5 rustPlatform, 6 installShellFiles, 7 + 8 + darwin, 9 }: 10 11 rustPlatform.buildRustPackage rec { 12 pname = "bandwhich"; 13 + version = "0.23.1"; 14 15 src = fetchFromGitHub { 16 owner = "imsnif"; 17 repo = pname; 18 rev = "v${version}"; 19 + hash = "sha256-gXPX5drVXsfkssPMdhqIpFsYNSbelE9mKwO+nGEy4Qs="; 20 }; 21 22 + useFetchCargoVendor = true; 23 + cargoHash = "sha256-bsyEEbwBTDcIOc+PRkZqcfqcDgQnchuVy8a8eSZZUHU="; 24 25 nativeBuildInputs = [ installShellFiles ]; 26 27 + buildInputs = lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.Security; 28 29 # 10 passed; 47 failed https://hydra.nixos.org/build/148943783/nixlog/1 30 doCheck = !stdenv.hostPlatform.isDarwin; 31 32 preConfigure = '' 33 export BANDWHICH_GEN_DIR=_shell-files ··· 41 --zsh $BANDWHICH_GEN_DIR/_bandwhich 42 ''; 43 44 + meta = { 45 description = "CLI utility for displaying current network utilization"; 46 longDescription = '' 47 bandwhich sniffs a given network interface and records IP packet size, cross ··· 52 ''; 53 homepage = "https://github.com/imsnif/bandwhich"; 54 changelog = "https://github.com/imsnif/bandwhich/blob/${src.rev}/CHANGELOG.md"; 55 + license = lib.licenses.mit; 56 + maintainers = with lib.maintainers; [ 57 Br1ght0ne 58 figsoda 59 ]; 60 + platforms = lib.platforms.unix; 61 mainProgram = "bandwhich"; 62 }; 63 }
-4
pkgs/top-level/all-packages.nix
··· 1993 libssl = openssl; 1994 }; 1995 1996 - bandwhich = callPackage ../tools/networking/bandwhich { 1997 - inherit (darwin.apple_sdk.frameworks) Security; 1998 - }; 1999 - 2000 base16-builder = callPackage ../misc/base16-builder { }; 2001 2002 babelfish = callPackage ../shells/fish/babelfish.nix { };
··· 1993 libssl = openssl; 1994 }; 1995 1996 base16-builder = callPackage ../misc/base16-builder { }; 1997 1998 babelfish = callPackage ../shells/fish/babelfish.nix { };
+1
pkgs/top-level/coq-packages.nix
··· 150 ssprove = callPackage ../development/coq-modules/ssprove {}; 151 stalmarck-tactic = callPackage ../development/coq-modules/stalmarck {}; 152 stalmarck = self.stalmarck-tactic.stalmarck; 153 stdpp = callPackage ../development/coq-modules/stdpp { }; 154 StructTact = callPackage ../development/coq-modules/StructTact {}; 155 tlc = callPackage ../development/coq-modules/tlc {};
··· 150 ssprove = callPackage ../development/coq-modules/ssprove {}; 151 stalmarck-tactic = callPackage ../development/coq-modules/stalmarck {}; 152 stalmarck = self.stalmarck-tactic.stalmarck; 153 + stdlib = callPackage ../development/coq-modules/stdlib {}; 154 stdpp = callPackage ../development/coq-modules/stdpp { }; 155 StructTact = callPackage ../development/coq-modules/StructTact {}; 156 tlc = callPackage ../development/coq-modules/tlc {};