Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub 8ad49a1d 759b761b

+1891 -4394
+17 -1
lib/tests/nix-for-tests.nix
··· 12 # See also: https://github.com/NixOS/nix/issues/7582 13 14 builtins.mapAttrs ( 15 - _: pkg: if builtins.isAttrs pkg then pkg.override { withAWS = false; } else pkg 16 ) pkgs.nixVersions
··· 12 # See also: https://github.com/NixOS/nix/issues/7582 13 14 builtins.mapAttrs ( 15 + attr: pkg: 16 + if 17 + # TODO descend in `nixComponents_*` and override `nix-store`. Also 18 + # need to introduce the flag needed to do that with. 19 + # 20 + # This must be done before Nix 2.26 and beyond becomes the default. 21 + !(builtins.elem attr [ 22 + "nixComponents_2_26" 23 + "nix_2_26" 24 + "latest" 25 + ]) 26 + # There may-be non-package things, like functions, in there too 27 + && builtins.isAttrs pkg 28 + then 29 + pkg.override { withAWS = false; } 30 + else 31 + pkg 32 ) pkgs.nixVersions
+7 -7
maintainers/maintainer-list.nix
··· 5095 githubId = 202474; 5096 name = "Jens Reimann"; 5097 }; 5098 cust0dian = { 5099 email = "serg@effectful.software"; 5100 github = "cust0dian"; ··· 15468 }; 15469 mic92 = { 15470 email = "joerg@thalheim.io"; 15471 - matrix = "@mic92:nixos.dev"; 15472 github = "Mic92"; 15473 githubId = 96200; 15474 name = "Jörg Thalheim"; 15475 - keys = [ 15476 - { 15477 - # compare with https://keybase.io/Mic92 15478 - fingerprint = "3DEE 1C55 6E1C 3DC5 54F5 875A 003F 2096 411B 5F92"; 15479 - } 15480 - ]; 15481 }; 15482 michaeladler = { 15483 email = "therisen06@gmail.com";
··· 5095 githubId = 202474; 5096 name = "Jens Reimann"; 5097 }; 5098 + curran = { 5099 + email = "curran@mercury.com"; 5100 + github = "curranosaurus"; 5101 + githubId = 148147150; 5102 + name = "Curran McConnell"; 5103 + }; 5104 cust0dian = { 5105 email = "serg@effectful.software"; 5106 github = "cust0dian"; ··· 15474 }; 15475 mic92 = { 15476 email = "joerg@thalheim.io"; 15477 + matrix = "@joerg:thalheim.io"; 15478 github = "Mic92"; 15479 githubId = 96200; 15480 name = "Jörg Thalheim"; 15481 }; 15482 michaeladler = { 15483 email = "therisen06@gmail.com";
+6 -2
maintainers/team-list.nix
··· 810 members = [ 811 _9999years 812 Gabriella439 813 ]; 814 scope = "Group registry for packages maintained by Mercury"; 815 shortName = "Mercury Employees"; 816 }; 817 818 nix = { 819 members = [ 820 eelco 821 - grahamc 822 - pierron 823 ]; 824 scope = "Maintain the Nix package manager."; 825 shortName = "Nix/nix-cli ecosystem";
··· 810 members = [ 811 _9999years 812 Gabriella439 813 + curran 814 ]; 815 scope = "Group registry for packages maintained by Mercury"; 816 shortName = "Mercury Employees"; 817 }; 818 819 + # same as https://github.com/orgs/NixOS/teams/nix-team 820 nix = { 821 members = [ 822 eelco 823 + mic92 824 + tomberek 825 + roberth 826 + ericson2314 827 ]; 828 scope = "Maintain the Nix package manager."; 829 shortName = "Nix/nix-cli ecosystem";
+25 -7
nixos/modules/hardware/video/nvidia.nix
··· 17 offloadCfg = pCfg.offload; 18 reverseSyncCfg = pCfg.reverseSync; 19 primeEnabled = syncCfg.enable || reverseSyncCfg.enable || offloadCfg.enable; 20 - busIDType = lib.types.strMatching "([[:print:]]+[:@][0-9]{1,3}:[0-9]{1,2}:[0-9])?"; 21 ibtSupport = useOpenModules || (nvidia_x11.ibtSupport or false); 22 settingsFormat = pkgs.formats.keyValue { }; 23 in ··· 120 prime.nvidiaBusId = lib.mkOption { 121 type = busIDType; 122 default = ""; 123 - example = "PCI:1:0:0"; 124 description = '' 125 Bus ID of the NVIDIA GPU. You can find it using lspci; for example if lspci 126 - shows the NVIDIA GPU at "01:00.0", set this option to "PCI:1:0:0". 127 ''; 128 }; 129 130 prime.intelBusId = lib.mkOption { 131 type = busIDType; 132 default = ""; 133 - example = "PCI:0:2:0"; 134 description = '' 135 Bus ID of the Intel GPU. You can find it using lspci; for example if lspci 136 - shows the Intel GPU at "00:02.0", set this option to "PCI:0:2:0". 137 ''; 138 }; 139 140 prime.amdgpuBusId = lib.mkOption { 141 type = busIDType; 142 default = ""; 143 - example = "PCI:4:0:0"; 144 description = '' 145 Bus ID of the AMD APU. You can find it using lspci; for example if lspci 146 - shows the AMD APU at "04:00.0", set this option to "PCI:4:0:0". 147 ''; 148 }; 149
··· 17 offloadCfg = pCfg.offload; 18 reverseSyncCfg = pCfg.reverseSync; 19 primeEnabled = syncCfg.enable || reverseSyncCfg.enable || offloadCfg.enable; 20 + busIDType = lib.types.strMatching "([[:print:]]+:[0-9]{1,3}(@[0-9]{1,10})?:[0-9]{1,2}:[0-9])?"; 21 ibtSupport = useOpenModules || (nvidia_x11.ibtSupport or false); 22 settingsFormat = pkgs.formats.keyValue { }; 23 in ··· 120 prime.nvidiaBusId = lib.mkOption { 121 type = busIDType; 122 default = ""; 123 + example = "PCI:1@0:0:0"; 124 description = '' 125 Bus ID of the NVIDIA GPU. You can find it using lspci; for example if lspci 126 + shows the NVIDIA GPU at "0001:02:03.4", set this option to "PCI:2@1:3:4". 127 + 128 + lspci might omit the PCI domain (0001 in above example) if it is zero. 129 + In which case, use "@0" instead. 130 + 131 + Please be aware that this option takes decimal address while lspci reports 132 + hexadecimal address. So for device at domain "10000", use "@65536". 133 ''; 134 }; 135 136 prime.intelBusId = lib.mkOption { 137 type = busIDType; 138 default = ""; 139 + example = "PCI:0@0:2:0"; 140 description = '' 141 Bus ID of the Intel GPU. You can find it using lspci; for example if lspci 142 + shows the Intel GPU at "0001:02:03.4", set this option to "PCI:2@1:3:4". 143 + 144 + lspci might omit the PCI domain (0001 in above example) if it is zero. 145 + In which case, use "@0" instead. 146 + 147 + Please be aware that this option takes decimal address while lspci reports 148 + hexadecimal address. So for device at domain "10000", use "@65536". 149 ''; 150 }; 151 152 prime.amdgpuBusId = lib.mkOption { 153 type = busIDType; 154 default = ""; 155 + example = "PCI:4@0:0:0"; 156 description = '' 157 Bus ID of the AMD APU. You can find it using lspci; for example if lspci 158 + shows the AMD APU at "0001:02:03.4", set this option to "PCI:2@1:3:4". 159 + 160 + lspci might omit the PCI domain (0001 in above example) if it is zero. 161 + In which case, use "@0" instead. 162 + 163 + Please be aware that this option takes decimal address while lspci reports 164 + hexadecimal address. So for device at domain "10000", use "@65536". 165 ''; 166 }; 167
+29 -8
nixos/modules/services/hardware/bluetooth.nix
··· 2 config, 3 lib, 4 pkgs, 5 ... 6 }: 7 let ··· 9 package = cfg.package; 10 11 inherit (lib) 12 - mkDefault 13 mkEnableOption 14 mkIf 15 mkOption ··· 17 mkRenamedOptionModule 18 mkRemovedOptionModule 19 concatStringsSep 20 - escapeShellArgs 21 - literalExpression 22 optional 23 - optionals 24 optionalAttrs 25 recursiveUpdate 26 types ··· 146 { 147 wantedBy = [ "bluetooth.target" ]; 148 aliases = [ "dbus-org.bluez.service" ]; 149 - serviceConfig.ExecStart = [ 150 - "" 151 - "${package}/libexec/bluetooth/bluetoothd ${escapeShellArgs args}" 152 - ]; 153 # restarting can leave people without a mouse/keyboard 154 unitConfig.X-RestartIfChanged = false; 155 };
··· 2 config, 3 lib, 4 pkgs, 5 + utils, 6 ... 7 }: 8 let ··· 10 package = cfg.package; 11 12 inherit (lib) 13 mkEnableOption 14 mkIf 15 mkOption ··· 17 mkRenamedOptionModule 18 mkRemovedOptionModule 19 concatStringsSep 20 optional 21 optionalAttrs 22 recursiveUpdate 23 types ··· 143 { 144 wantedBy = [ "bluetooth.target" ]; 145 aliases = [ "dbus-org.bluez.service" ]; 146 + serviceConfig = { 147 + ExecStart = [ 148 + "" 149 + "${package}/libexec/bluetooth/bluetoothd ${utils.escapeSystemdExecArgs args}" 150 + ]; 151 + CapabilityBoundingSet = [ 152 + "CAP_NET_BIND_SERVICE" # sockets and tethering 153 + ]; 154 + NoNewPrivileges = true; 155 + RestrictNamespaces = true; 156 + ProtectControlGroups = true; 157 + MemoryDenyWriteExecute = true; 158 + RestrictSUIDSGID = true; 159 + SystemCallArchitectures = "native"; 160 + SystemCallFilter = "@system-service"; 161 + LockPersonality = true; 162 + RestrictRealtime = true; 163 + ProtectProc = "invisible"; 164 + PrivateTmp = true; 165 + 166 + PrivateUsers = false; 167 + 168 + # loading hardware modules 169 + ProtectKernelModules = false; 170 + ProtectKernelTunables = false; 171 + 172 + PrivateNetwork = false; # tethering 173 + }; 174 # restarting can leave people without a mouse/keyboard 175 unitConfig.X-RestartIfChanged = false; 176 };
+2 -2
pkgs/applications/editors/android-studio/default.nix
··· 17 sha256Hash = "sha256-yDxDctlZsUmye+XgWwWIHPnrfI3BCj5wYLQG9l8t6mA="; 18 }; 19 latestVersion = { 20 - version = "2024.3.2.8"; # "Android Studio Meerkat Feature Drop | 2024.3.2 Canary 8" 21 - sha256Hash = "sha256-bJlkZ3ydfgVVubDlmngOvBIU62ncChuBWQ+QrZYBZcU="; 22 }; 23 in { 24 # Attributes are named by their corresponding release channels
··· 17 sha256Hash = "sha256-yDxDctlZsUmye+XgWwWIHPnrfI3BCj5wYLQG9l8t6mA="; 18 }; 19 latestVersion = { 20 + version = "2025.1.1.2"; # "Android Studio Narwhal | 2025.1.1 Canary 2" 21 + sha256Hash = "sha256-elWCY/QwBeGIsC4xtQrSV6low5oLH3q1WW2InqQItFM="; 22 }; 23 in { 24 # Attributes are named by their corresponding release channels
+619 -619
pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
··· 1 { 2 - version = "136.0.2"; 3 sources = [ 4 { 5 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ach/firefox-136.0.2.tar.xz"; 6 locale = "ach"; 7 arch = "linux-x86_64"; 8 - sha256 = "558938cd8ff67b0d5c3161b3d1b81cfae873a3d8aa6ae9974f638e634946d6ce"; 9 } 10 { 11 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/af/firefox-136.0.2.tar.xz"; 12 locale = "af"; 13 arch = "linux-x86_64"; 14 - sha256 = "8f463f45e04e1be33791a8a74c0e6b2d5f42d00f1b8ddb107874b083ef304bc5"; 15 } 16 { 17 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/an/firefox-136.0.2.tar.xz"; 18 locale = "an"; 19 arch = "linux-x86_64"; 20 - sha256 = "023f7e232c6bc351d3b0974636f30264f991c2d13d41ba5c9ac28cae0e27588d"; 21 } 22 { 23 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ar/firefox-136.0.2.tar.xz"; 24 locale = "ar"; 25 arch = "linux-x86_64"; 26 - sha256 = "c3bb6bd95af58cf12c1310bb35424e7f8374ce24b1a284462f8a97d246bf58e7"; 27 } 28 { 29 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ast/firefox-136.0.2.tar.xz"; 30 locale = "ast"; 31 arch = "linux-x86_64"; 32 - sha256 = "ba4b88cf7c9696b0348b75719e9bc3811ffd07584526532f88b56624d8026954"; 33 } 34 { 35 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/az/firefox-136.0.2.tar.xz"; 36 locale = "az"; 37 arch = "linux-x86_64"; 38 - sha256 = "f4d9abea0d79de7c9b1adef5a07887ab79deec707dc158f6c8b157676f39eff8"; 39 } 40 { 41 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/be/firefox-136.0.2.tar.xz"; 42 locale = "be"; 43 arch = "linux-x86_64"; 44 - sha256 = "e822c3f7994fe2caf0116bb9891a15eb1925b16154fb55537ed0499771cd88fb"; 45 } 46 { 47 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/bg/firefox-136.0.2.tar.xz"; 48 locale = "bg"; 49 arch = "linux-x86_64"; 50 - sha256 = "cf1a529a61e75e865abbfc914af4a3f55cabf1bafed4752c81fe610aec785aee"; 51 } 52 { 53 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/bn/firefox-136.0.2.tar.xz"; 54 locale = "bn"; 55 arch = "linux-x86_64"; 56 - sha256 = "11114d657ce8078d1232831fc52fb4cdbfa34917393180645561e5321868d32f"; 57 } 58 { 59 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/br/firefox-136.0.2.tar.xz"; 60 locale = "br"; 61 arch = "linux-x86_64"; 62 - sha256 = "966adc08494e79fdcefbbced618547016cf38ca916550678c4fa0415cf7cd7c7"; 63 } 64 { 65 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/bs/firefox-136.0.2.tar.xz"; 66 locale = "bs"; 67 arch = "linux-x86_64"; 68 - sha256 = "61773bede7ab3036a240cdb315e351ef7429027d319262c4e5756bbd37bd621c"; 69 } 70 { 71 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ca-valencia/firefox-136.0.2.tar.xz"; 72 locale = "ca-valencia"; 73 arch = "linux-x86_64"; 74 - sha256 = "f3c99485bef968af3aebf782b80e5e6c3d36c8f9d6f08628e32617160269c4da"; 75 } 76 { 77 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ca/firefox-136.0.2.tar.xz"; 78 locale = "ca"; 79 arch = "linux-x86_64"; 80 - sha256 = "e240eed34cbd6111fe985a9323b430e70acdd3f7a918a88d0253ad23f178a3ec"; 81 } 82 { 83 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/cak/firefox-136.0.2.tar.xz"; 84 locale = "cak"; 85 arch = "linux-x86_64"; 86 - sha256 = "2b7ae971aa2ad7bfc1a3034cc4836515079360839e70c1a121a2b41f7de3a432"; 87 } 88 { 89 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/cs/firefox-136.0.2.tar.xz"; 90 locale = "cs"; 91 arch = "linux-x86_64"; 92 - sha256 = "49701a9fcbb7cb299d22bd65152f972a6caf00ec016b2ac5e4bf40db8a21020b"; 93 } 94 { 95 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/cy/firefox-136.0.2.tar.xz"; 96 locale = "cy"; 97 arch = "linux-x86_64"; 98 - sha256 = "27d001f6a59cbc5b8dbff4d3fc1bb53a85b3fe437de0628baa973616364c8977"; 99 } 100 { 101 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/da/firefox-136.0.2.tar.xz"; 102 locale = "da"; 103 arch = "linux-x86_64"; 104 - sha256 = "532c6acf95541babfcc725d31905405038ab6de26a90f80c2cd47a9a886380c4"; 105 } 106 { 107 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/de/firefox-136.0.2.tar.xz"; 108 locale = "de"; 109 arch = "linux-x86_64"; 110 - sha256 = "30e35d6f490c7734eb5876f7444d65c732a9491caa4797100db4ac654a0f84ca"; 111 } 112 { 113 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/dsb/firefox-136.0.2.tar.xz"; 114 locale = "dsb"; 115 arch = "linux-x86_64"; 116 - sha256 = "75cdf2771ec1f9d6cbd18f2909ac9a6952ac6ac73b1073c9014db06a06119a83"; 117 } 118 { 119 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/el/firefox-136.0.2.tar.xz"; 120 locale = "el"; 121 arch = "linux-x86_64"; 122 - sha256 = "7527d81b385d909d1444d4f0df2500fadadcd7d0f64b2fb4de6beda8d5528b5e"; 123 } 124 { 125 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/en-CA/firefox-136.0.2.tar.xz"; 126 locale = "en-CA"; 127 arch = "linux-x86_64"; 128 - sha256 = "60f1da75d2afde3cf70ee13c6af511854715145f7de7adccde2e8fd320e34ca0"; 129 } 130 { 131 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/en-GB/firefox-136.0.2.tar.xz"; 132 locale = "en-GB"; 133 arch = "linux-x86_64"; 134 - sha256 = "708443a7306ad7273c8e114dabf30a0921cea36730ba604158847b044acf1033"; 135 } 136 { 137 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/en-US/firefox-136.0.2.tar.xz"; 138 locale = "en-US"; 139 arch = "linux-x86_64"; 140 - sha256 = "7ea3882e814669784f0960e4d6bb50a0ac88997a1d17fb125d0f411961ad763a"; 141 } 142 { 143 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/eo/firefox-136.0.2.tar.xz"; 144 locale = "eo"; 145 arch = "linux-x86_64"; 146 - sha256 = "b4253b8cc98865be4824188b6bdeee18c94206e02451c2e904dbf42bb7bcbb19"; 147 } 148 { 149 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/es-AR/firefox-136.0.2.tar.xz"; 150 locale = "es-AR"; 151 arch = "linux-x86_64"; 152 - sha256 = "2c9c46b09621f603fd7e3b75deebe69a881522cf0579a618148a426cfcba343d"; 153 } 154 { 155 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/es-CL/firefox-136.0.2.tar.xz"; 156 locale = "es-CL"; 157 arch = "linux-x86_64"; 158 - sha256 = "89d6fb4d1f34944ee81c79e0d453992a4824d8a8c7e1127dfe214cbe83d70468"; 159 } 160 { 161 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/es-ES/firefox-136.0.2.tar.xz"; 162 locale = "es-ES"; 163 arch = "linux-x86_64"; 164 - sha256 = "ba30ca2c7d0fb30252d0d8abf7fe19f4dc039c85e86faa39c9f23a629baaf51e"; 165 } 166 { 167 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/es-MX/firefox-136.0.2.tar.xz"; 168 locale = "es-MX"; 169 arch = "linux-x86_64"; 170 - sha256 = "05c82d0b79c4cf684c7a778efe6d5402cddbfecf9ebe5be561a0d816371393a6"; 171 } 172 { 173 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/et/firefox-136.0.2.tar.xz"; 174 locale = "et"; 175 arch = "linux-x86_64"; 176 - sha256 = "d31f7b025c5f929ea0697fc019b651cce36b45ed414d5d4f1fc24c50a8d1c58d"; 177 } 178 { 179 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/eu/firefox-136.0.2.tar.xz"; 180 locale = "eu"; 181 arch = "linux-x86_64"; 182 - sha256 = "1291361b88ab6af455bfaf948fa4f9c2eee6dc997fdfd02a785d2302b993ce4c"; 183 } 184 { 185 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/fa/firefox-136.0.2.tar.xz"; 186 locale = "fa"; 187 arch = "linux-x86_64"; 188 - sha256 = "eb9748a620636e02ad57702f9ef02851e1ec64f502a9a40bf4400691b51fbf41"; 189 } 190 { 191 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ff/firefox-136.0.2.tar.xz"; 192 locale = "ff"; 193 arch = "linux-x86_64"; 194 - sha256 = "5bdce6ab6ae4b505fd6294bea22fe92d52d2ee5647ae4e22332f2343f1420f31"; 195 } 196 { 197 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/fi/firefox-136.0.2.tar.xz"; 198 locale = "fi"; 199 arch = "linux-x86_64"; 200 - sha256 = "49d297a49da8b0594d5f2145338a79246a586dd3449d9fc16aa8f763152ce92a"; 201 } 202 { 203 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/fr/firefox-136.0.2.tar.xz"; 204 locale = "fr"; 205 arch = "linux-x86_64"; 206 - sha256 = "77859f61a67236aa482b43627d1afada4e41ac64157759c55b1c4097a9a355ce"; 207 } 208 { 209 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/fur/firefox-136.0.2.tar.xz"; 210 locale = "fur"; 211 arch = "linux-x86_64"; 212 - sha256 = "be80074ec8b56a6791a7edb03044167164fb6a03b657cf29f0b9dc32bc015b02"; 213 } 214 { 215 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/fy-NL/firefox-136.0.2.tar.xz"; 216 locale = "fy-NL"; 217 arch = "linux-x86_64"; 218 - sha256 = "7a0a5ef74a20199cae923b1edccb997d64a94a778358d8e1f377bc7c89acd0f9"; 219 } 220 { 221 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ga-IE/firefox-136.0.2.tar.xz"; 222 locale = "ga-IE"; 223 arch = "linux-x86_64"; 224 - sha256 = "7923f71f86773b7879513ce5cc3e159b4b103aff4802439ec81ec28a556de355"; 225 } 226 { 227 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/gd/firefox-136.0.2.tar.xz"; 228 locale = "gd"; 229 arch = "linux-x86_64"; 230 - sha256 = "7a5af3b54d72cb3bfb2ef388a5f8d9082e1868a01d111ac69966e0bd84bf6d87"; 231 } 232 { 233 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/gl/firefox-136.0.2.tar.xz"; 234 locale = "gl"; 235 arch = "linux-x86_64"; 236 - sha256 = "0b3041817cda1faaedb9dd5b1a6d66461ffd901c3f9e77ee7187631545b0640e"; 237 } 238 { 239 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/gn/firefox-136.0.2.tar.xz"; 240 locale = "gn"; 241 arch = "linux-x86_64"; 242 - sha256 = "9f4ee346ce872ff06d8437ce645afa2e85667c7322b3096dbb6279608d09bc65"; 243 } 244 { 245 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/gu-IN/firefox-136.0.2.tar.xz"; 246 locale = "gu-IN"; 247 arch = "linux-x86_64"; 248 - sha256 = "c6d790c5259b0bef6fdfd6d9ba5f65d7c754a55fc3ecfd040111638cdc415c2c"; 249 } 250 { 251 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/he/firefox-136.0.2.tar.xz"; 252 locale = "he"; 253 arch = "linux-x86_64"; 254 - sha256 = "00775bf3f4bcf763d7cd0cd18b419b2f9401f7049cd02b2a38114693367ab819"; 255 } 256 { 257 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/hi-IN/firefox-136.0.2.tar.xz"; 258 locale = "hi-IN"; 259 arch = "linux-x86_64"; 260 - sha256 = "5811a4cece4e161b7536e9bc869e7ec2ee4733d97c96ba11e47122a7ee6489cd"; 261 } 262 { 263 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/hr/firefox-136.0.2.tar.xz"; 264 locale = "hr"; 265 arch = "linux-x86_64"; 266 - sha256 = "747e4fcfa50a31d570e9ba5ff08216a9b7cedd6e1e90c0c701e51f7343a20845"; 267 } 268 { 269 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/hsb/firefox-136.0.2.tar.xz"; 270 locale = "hsb"; 271 arch = "linux-x86_64"; 272 - sha256 = "3770d0b1503d79a7e95f0d054057c0b30c2c49dc414b8d95e59072cadd94fb6b"; 273 } 274 { 275 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/hu/firefox-136.0.2.tar.xz"; 276 locale = "hu"; 277 arch = "linux-x86_64"; 278 - sha256 = "a751b893cf82bab0bd52bb890cc999fc63a5315abbaa4d185454de7492d36701"; 279 } 280 { 281 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/hy-AM/firefox-136.0.2.tar.xz"; 282 locale = "hy-AM"; 283 arch = "linux-x86_64"; 284 - sha256 = "8bf55a5d2cecf0f9a522b591f3619198f59cccd8e5172adad0b9b0fbaa826c2a"; 285 } 286 { 287 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ia/firefox-136.0.2.tar.xz"; 288 locale = "ia"; 289 arch = "linux-x86_64"; 290 - sha256 = "6482c5b014cc69e366de21ad7e09e20141fe11c51b3d8a9e9628663b87a20845"; 291 } 292 { 293 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/id/firefox-136.0.2.tar.xz"; 294 locale = "id"; 295 arch = "linux-x86_64"; 296 - sha256 = "df7a9c1bb9edc0edfdca96ad386e7609bccb0c802e7461c3c6d0dd61216850d1"; 297 } 298 { 299 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/is/firefox-136.0.2.tar.xz"; 300 locale = "is"; 301 arch = "linux-x86_64"; 302 - sha256 = "7cfeb340b1310f9d9e5d57af5087b26337ebfccd9e99eb6333f60c2de7c05932"; 303 } 304 { 305 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/it/firefox-136.0.2.tar.xz"; 306 locale = "it"; 307 arch = "linux-x86_64"; 308 - sha256 = "59123364f1f03bd556317a6fec2d536b3d760cf0575ab4ad967ca0155a6db0a4"; 309 } 310 { 311 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ja/firefox-136.0.2.tar.xz"; 312 locale = "ja"; 313 arch = "linux-x86_64"; 314 - sha256 = "07d00e727c3bad95f41d1c5e0e9f959d6edd24926a96184d4b67f04bfc4630cd"; 315 } 316 { 317 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ka/firefox-136.0.2.tar.xz"; 318 locale = "ka"; 319 arch = "linux-x86_64"; 320 - sha256 = "9c9721c410822df3c06861730ac41c84ad4ebc6eda1227cac68796758a192278"; 321 } 322 { 323 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/kab/firefox-136.0.2.tar.xz"; 324 locale = "kab"; 325 arch = "linux-x86_64"; 326 - sha256 = "05705075dd9401945c068f8b038cd1b6e635332c50559f5953184754725abe46"; 327 } 328 { 329 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/kk/firefox-136.0.2.tar.xz"; 330 locale = "kk"; 331 arch = "linux-x86_64"; 332 - sha256 = "333c6641ca5adf7cf952addaa6b69b60b0e5efb7558498176bfabc522c7b2fb0"; 333 } 334 { 335 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/km/firefox-136.0.2.tar.xz"; 336 locale = "km"; 337 arch = "linux-x86_64"; 338 - sha256 = "36dca0bd3ce427061f159234aec919a1a9e4a374d06507edf9723a4e65a5125a"; 339 } 340 { 341 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/kn/firefox-136.0.2.tar.xz"; 342 locale = "kn"; 343 arch = "linux-x86_64"; 344 - sha256 = "2e8de5767d51de35cf8b2f4cc7786d0bb247dbdc0c93ab46cfed9627b5b6f74e"; 345 } 346 { 347 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ko/firefox-136.0.2.tar.xz"; 348 locale = "ko"; 349 arch = "linux-x86_64"; 350 - sha256 = "2cabb9a6eca1c0d36b9fdd5878e414f4c2aa25f57b18a1562f69a24d7f648b4d"; 351 } 352 { 353 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/lij/firefox-136.0.2.tar.xz"; 354 locale = "lij"; 355 arch = "linux-x86_64"; 356 - sha256 = "01aacf6cdfee82d6b2914ecd94bd48f181edb6fae6ce407b4812861c00bd47e4"; 357 } 358 { 359 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/lt/firefox-136.0.2.tar.xz"; 360 locale = "lt"; 361 arch = "linux-x86_64"; 362 - sha256 = "b26298b76ce5c7235c7cffaa457c449395328c4c5f4e1440fac081a55c6c8799"; 363 } 364 { 365 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/lv/firefox-136.0.2.tar.xz"; 366 locale = "lv"; 367 arch = "linux-x86_64"; 368 - sha256 = "43610d3e6a367d9300a08807187530ecd5b64662c74e793823b553053b640350"; 369 } 370 { 371 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/mk/firefox-136.0.2.tar.xz"; 372 locale = "mk"; 373 arch = "linux-x86_64"; 374 - sha256 = "f4d1dfe469cc1bfc5e87703e13092cebca1696ddd94248eb5073331ae0b4f32b"; 375 } 376 { 377 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/mr/firefox-136.0.2.tar.xz"; 378 locale = "mr"; 379 arch = "linux-x86_64"; 380 - sha256 = "80e9d0ca09dfd58dfc762dd0baec337636dc4818244d6890b1f2bf090fd1ac6f"; 381 } 382 { 383 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ms/firefox-136.0.2.tar.xz"; 384 locale = "ms"; 385 arch = "linux-x86_64"; 386 - sha256 = "505b7ff9e928593959a815683b9be1f2a411976233816dab4570cb470af23066"; 387 } 388 { 389 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/my/firefox-136.0.2.tar.xz"; 390 locale = "my"; 391 arch = "linux-x86_64"; 392 - sha256 = "505421948c78dbb5b170d3d2accf83f46d088acc0311636ca9cad18f87cb73bf"; 393 } 394 { 395 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/nb-NO/firefox-136.0.2.tar.xz"; 396 locale = "nb-NO"; 397 arch = "linux-x86_64"; 398 - sha256 = "fd5dda27f3e037f1eb68760858297e45adda322ebab889218ef9b1a4fbd695a9"; 399 } 400 { 401 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ne-NP/firefox-136.0.2.tar.xz"; 402 locale = "ne-NP"; 403 arch = "linux-x86_64"; 404 - sha256 = "45e260d25ad9abc99305a102558e9281e2b9fc18cf3bc3c3793a22aaf925fe01"; 405 } 406 { 407 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/nl/firefox-136.0.2.tar.xz"; 408 locale = "nl"; 409 arch = "linux-x86_64"; 410 - sha256 = "2d317326994df62ec6bf5ca064a270c675e975b25e59e1236184ec9b760108a3"; 411 } 412 { 413 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/nn-NO/firefox-136.0.2.tar.xz"; 414 locale = "nn-NO"; 415 arch = "linux-x86_64"; 416 - sha256 = "42160b7dad38d396c4cc6ad2537e680576177bdf6f6e42181d0c3b7bbfa2f0cd"; 417 } 418 { 419 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/oc/firefox-136.0.2.tar.xz"; 420 locale = "oc"; 421 arch = "linux-x86_64"; 422 - sha256 = "30684f8982e918d90de32fb2dd0c05dbf6112d3818e211f4aee2c23f49b7598f"; 423 } 424 { 425 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/pa-IN/firefox-136.0.2.tar.xz"; 426 locale = "pa-IN"; 427 arch = "linux-x86_64"; 428 - sha256 = "ae1cc0cb808b1449ec934d04ead1d6ebde543a7847ecd4f19401dfc45f6dc041"; 429 } 430 { 431 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/pl/firefox-136.0.2.tar.xz"; 432 locale = "pl"; 433 arch = "linux-x86_64"; 434 - sha256 = "001b08f2ec046fb9eb6769a288248cb8b939b30057cc609baf12c992ed6a5648"; 435 } 436 { 437 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/pt-BR/firefox-136.0.2.tar.xz"; 438 locale = "pt-BR"; 439 arch = "linux-x86_64"; 440 - sha256 = "60a44985423bc72cd477235511e761deee30647c8e5b2800dcffd4a315522b5f"; 441 } 442 { 443 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/pt-PT/firefox-136.0.2.tar.xz"; 444 locale = "pt-PT"; 445 arch = "linux-x86_64"; 446 - sha256 = "0bfd4e96c8d5a5b3398dca5aba6a0e68bdae12fbf167ec618efafcb2b035c72c"; 447 } 448 { 449 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/rm/firefox-136.0.2.tar.xz"; 450 locale = "rm"; 451 arch = "linux-x86_64"; 452 - sha256 = "5885365e0752e7c71e1a045b062f3e2e0a73524d6ab438e79fd17ff77d8bdec3"; 453 } 454 { 455 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ro/firefox-136.0.2.tar.xz"; 456 locale = "ro"; 457 arch = "linux-x86_64"; 458 - sha256 = "b7c662438eacb9b7993eb95d7247fe01e353239e88bbac7c9586249766c48e79"; 459 } 460 { 461 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ru/firefox-136.0.2.tar.xz"; 462 locale = "ru"; 463 arch = "linux-x86_64"; 464 - sha256 = "067d26211805dec76bfbc0e2acda26106b9a269ac5eea794951966f87184c69e"; 465 } 466 { 467 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/sat/firefox-136.0.2.tar.xz"; 468 locale = "sat"; 469 arch = "linux-x86_64"; 470 - sha256 = "7c62934b9f97af536e72d9320ebea8e2a1fcd7dec17eb6d83613217aa5dd3d13"; 471 } 472 { 473 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/sc/firefox-136.0.2.tar.xz"; 474 locale = "sc"; 475 arch = "linux-x86_64"; 476 - sha256 = "9f61636da3fddd38d18c5ffe499e9789dd80b1a15073808a4ece37f5a14008a7"; 477 } 478 { 479 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/sco/firefox-136.0.2.tar.xz"; 480 locale = "sco"; 481 arch = "linux-x86_64"; 482 - sha256 = "5335ce2d8002ef303e1bb2e00e0a2721ce763ff4c54deba71dead1ea89c483b7"; 483 } 484 { 485 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/si/firefox-136.0.2.tar.xz"; 486 locale = "si"; 487 arch = "linux-x86_64"; 488 - sha256 = "902575f7eb4b51a07133c5353110a053f9f9e84ae233e3a8970bc495ab297005"; 489 } 490 { 491 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/sk/firefox-136.0.2.tar.xz"; 492 locale = "sk"; 493 arch = "linux-x86_64"; 494 - sha256 = "89fe905c57551e4c8b8277dbf629fa9de15f8d2f76e90638fbe6b310cf808f52"; 495 } 496 { 497 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/skr/firefox-136.0.2.tar.xz"; 498 locale = "skr"; 499 arch = "linux-x86_64"; 500 - sha256 = "eaf256b7213026f9ca2ea7f7ded5fdcd5dbee10f42b41d20be788f532a08c2b1"; 501 } 502 { 503 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/sl/firefox-136.0.2.tar.xz"; 504 locale = "sl"; 505 arch = "linux-x86_64"; 506 - sha256 = "368ac8a4fc7b4e758d010d8f9b57814a15e936c28c031898b4279ca4938b2ee1"; 507 } 508 { 509 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/son/firefox-136.0.2.tar.xz"; 510 locale = "son"; 511 arch = "linux-x86_64"; 512 - sha256 = "12126ee9b2b0dd21d9d05488a1a6017388a5f5076f89a18b47210b2acd74e248"; 513 } 514 { 515 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/sq/firefox-136.0.2.tar.xz"; 516 locale = "sq"; 517 arch = "linux-x86_64"; 518 - sha256 = "1a363ed9f7c864efd06e67a737e1f25acf3be0886c840fd7062679f1cc679c04"; 519 } 520 { 521 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/sr/firefox-136.0.2.tar.xz"; 522 locale = "sr"; 523 arch = "linux-x86_64"; 524 - sha256 = "d967a5a7c52abc5d90952346070731fdd488fc9a9ffe60bda53674ddff45097c"; 525 } 526 { 527 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/sv-SE/firefox-136.0.2.tar.xz"; 528 locale = "sv-SE"; 529 arch = "linux-x86_64"; 530 - sha256 = "12ca0edc2f1d876350e65293869889077de2769b43d9d636a87f8bb2e750abc7"; 531 } 532 { 533 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/szl/firefox-136.0.2.tar.xz"; 534 locale = "szl"; 535 arch = "linux-x86_64"; 536 - sha256 = "45da6e9d6fe3e72be905280f4485052287277551aea22ee8b59aee9bf98942b2"; 537 } 538 { 539 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ta/firefox-136.0.2.tar.xz"; 540 locale = "ta"; 541 arch = "linux-x86_64"; 542 - sha256 = "e5751509b5bfa128aa16a60197fe627595691e9539abce4fb2632819504d2f59"; 543 } 544 { 545 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/te/firefox-136.0.2.tar.xz"; 546 locale = "te"; 547 arch = "linux-x86_64"; 548 - sha256 = "09d2a440874570ac807b90fd63e93f0c20d5a0aedcd111c8b4ec56bbed5abf3f"; 549 } 550 { 551 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/tg/firefox-136.0.2.tar.xz"; 552 locale = "tg"; 553 arch = "linux-x86_64"; 554 - sha256 = "66e2c0fd93ca1e2c3102a15b22cf671a73b25e9ad4c841c6914fdca37661f1d8"; 555 } 556 { 557 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/th/firefox-136.0.2.tar.xz"; 558 locale = "th"; 559 arch = "linux-x86_64"; 560 - sha256 = "6e179f3b06d545e80ecc05b1a6951ccc5b7b6ff9ed209a1c2c49d250bf992706"; 561 } 562 { 563 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/tl/firefox-136.0.2.tar.xz"; 564 locale = "tl"; 565 arch = "linux-x86_64"; 566 - sha256 = "e70e4fb5c0a1c1954002b56cabd61c708210f09966902937f52f3ba2206d7741"; 567 } 568 { 569 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/tr/firefox-136.0.2.tar.xz"; 570 locale = "tr"; 571 arch = "linux-x86_64"; 572 - sha256 = "3ea571a4ff8d4bd975f88d9c3514ef9ee336ee5871bf0372cc885f4fd37a1819"; 573 } 574 { 575 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/trs/firefox-136.0.2.tar.xz"; 576 locale = "trs"; 577 arch = "linux-x86_64"; 578 - sha256 = "b1d509af26218d412f07e9c3ea04506e0b0b6e6468a7f2445fc51796526b716c"; 579 } 580 { 581 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/uk/firefox-136.0.2.tar.xz"; 582 locale = "uk"; 583 arch = "linux-x86_64"; 584 - sha256 = "66dc1fab03d54339ccd6350aeebc6ebe509017c1937f548cbd397684a9272e0e"; 585 } 586 { 587 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/ur/firefox-136.0.2.tar.xz"; 588 locale = "ur"; 589 arch = "linux-x86_64"; 590 - sha256 = "296723a6d5dd9c197d605d16a0a56c3460a17247f9addda3fa5956e92901e5c9"; 591 } 592 { 593 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/uz/firefox-136.0.2.tar.xz"; 594 locale = "uz"; 595 arch = "linux-x86_64"; 596 - sha256 = "07c58fddb4b6a6976f08006b0dacc34c297fdfa3c9aac40bb1a97f52290f7dc2"; 597 } 598 { 599 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/vi/firefox-136.0.2.tar.xz"; 600 locale = "vi"; 601 arch = "linux-x86_64"; 602 - sha256 = "51b064d567894b724dbe806e290062c8f280f9c7f6e884fe4a0e2e24ad1b374d"; 603 } 604 { 605 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/xh/firefox-136.0.2.tar.xz"; 606 locale = "xh"; 607 arch = "linux-x86_64"; 608 - sha256 = "1b41383fb5b8b6a773c1c00a971196cf9dd3993e45ff1253a42ba92052263fde"; 609 } 610 { 611 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/zh-CN/firefox-136.0.2.tar.xz"; 612 locale = "zh-CN"; 613 arch = "linux-x86_64"; 614 - sha256 = "15688aedb09513fefdbc24335504fc6ae8780f25e844f3c473d5d1e07d941b20"; 615 } 616 { 617 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-x86_64/zh-TW/firefox-136.0.2.tar.xz"; 618 locale = "zh-TW"; 619 arch = "linux-x86_64"; 620 - sha256 = "f09484d49dc18482621c982e7748617b2bca73950d9ae73099dc2f0a30852383"; 621 } 622 { 623 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ach/firefox-136.0.2.tar.xz"; 624 locale = "ach"; 625 arch = "linux-i686"; 626 - sha256 = "14d34c1cf7510d2d3e9994ca19bb34390e50e28b34558e8ee68cf03b39d13c74"; 627 } 628 { 629 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/af/firefox-136.0.2.tar.xz"; 630 locale = "af"; 631 arch = "linux-i686"; 632 - sha256 = "f62c075694bb8e49c8703e0d3718bed787a7560e10c01d7ec95a98ecd77ff6cd"; 633 } 634 { 635 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/an/firefox-136.0.2.tar.xz"; 636 locale = "an"; 637 arch = "linux-i686"; 638 - sha256 = "9958425a553124463a5edec4c0cbc94d5f951116cc8e5dae10afaf28c82bc209"; 639 } 640 { 641 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ar/firefox-136.0.2.tar.xz"; 642 locale = "ar"; 643 arch = "linux-i686"; 644 - sha256 = "1fb0e5985bb9c947c399a3d902cc3d7b87baa17c88006bf94de6c3d651da0369"; 645 } 646 { 647 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ast/firefox-136.0.2.tar.xz"; 648 locale = "ast"; 649 arch = "linux-i686"; 650 - sha256 = "2e0209a2d87589ee93883229d6bb26667eaa216ca9284d1b1097e1c032ed4b3a"; 651 } 652 { 653 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/az/firefox-136.0.2.tar.xz"; 654 locale = "az"; 655 arch = "linux-i686"; 656 - sha256 = "849bcfe41db27072704e623cadbc3933a300e33e45a425ac9f809ae53852e120"; 657 } 658 { 659 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/be/firefox-136.0.2.tar.xz"; 660 locale = "be"; 661 arch = "linux-i686"; 662 - sha256 = "c9d7c13c53d5ac635202c4e87d7c0f74f0153a62623e582d986a522f863a1e10"; 663 } 664 { 665 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/bg/firefox-136.0.2.tar.xz"; 666 locale = "bg"; 667 arch = "linux-i686"; 668 - sha256 = "7474faf63cd86f8fd0f1db5d75f2ca8e9faa039f20685dc7746e79df4bdb0dbb"; 669 } 670 { 671 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/bn/firefox-136.0.2.tar.xz"; 672 locale = "bn"; 673 arch = "linux-i686"; 674 - sha256 = "7ca6ffcb5da128a1935b32fd380161d27758234c3e76685f922fa4e71cfd175a"; 675 } 676 { 677 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/br/firefox-136.0.2.tar.xz"; 678 locale = "br"; 679 arch = "linux-i686"; 680 - sha256 = "dba07e6d6bcfa3589767b7b8a3339b15c888d800d2aa2460df140fda4b92cba7"; 681 } 682 { 683 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/bs/firefox-136.0.2.tar.xz"; 684 locale = "bs"; 685 arch = "linux-i686"; 686 - sha256 = "4821f119bee27fc10c81423ceb784c78fbd28409de227ef67b15ba8801ff14be"; 687 } 688 { 689 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ca-valencia/firefox-136.0.2.tar.xz"; 690 locale = "ca-valencia"; 691 arch = "linux-i686"; 692 - sha256 = "3e6d5ab61d734eef3252286159cb0746cd3aa1daaf64f2813b70696a9a098718"; 693 } 694 { 695 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ca/firefox-136.0.2.tar.xz"; 696 locale = "ca"; 697 arch = "linux-i686"; 698 - sha256 = "4c34056b2e3114d1e0899bb0992c3d0bd7aa54740b9e21b747cc8c41bd3fcadf"; 699 } 700 { 701 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/cak/firefox-136.0.2.tar.xz"; 702 locale = "cak"; 703 arch = "linux-i686"; 704 - sha256 = "65c2e4b5f916054d994fe8974ac1175be6bf66ea7f093ae95bd22f35067984a3"; 705 } 706 { 707 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/cs/firefox-136.0.2.tar.xz"; 708 locale = "cs"; 709 arch = "linux-i686"; 710 - sha256 = "fe8c12793cf81e7936319b5d8951bbe490651e1be4d94e00574794be897d1c55"; 711 } 712 { 713 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/cy/firefox-136.0.2.tar.xz"; 714 locale = "cy"; 715 arch = "linux-i686"; 716 - sha256 = "8ceff1570b6b6fd16d78a3b42775da79482f86fc95caa7e2450b470435b3a043"; 717 } 718 { 719 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/da/firefox-136.0.2.tar.xz"; 720 locale = "da"; 721 arch = "linux-i686"; 722 - sha256 = "f65e451f1324cea9107b5806132ad0aacac2d3988e3cc3266171083d1eff7d50"; 723 } 724 { 725 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/de/firefox-136.0.2.tar.xz"; 726 locale = "de"; 727 arch = "linux-i686"; 728 - sha256 = "8009b870955cee7a9f95e8a8593c08520d8848fb4e253dc094b788ab9d971f34"; 729 } 730 { 731 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/dsb/firefox-136.0.2.tar.xz"; 732 locale = "dsb"; 733 arch = "linux-i686"; 734 - sha256 = "8dd159ffff91db88208417eac55a72d513161666d4b6f143b966d2f003b132b4"; 735 } 736 { 737 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/el/firefox-136.0.2.tar.xz"; 738 locale = "el"; 739 arch = "linux-i686"; 740 - sha256 = "1462b20e46b291c1bc7c1b192363f930d7b075c4674fea7ea5f6e96562defcfb"; 741 } 742 { 743 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/en-CA/firefox-136.0.2.tar.xz"; 744 locale = "en-CA"; 745 arch = "linux-i686"; 746 - sha256 = "23398dbcba2e751c58c0890e7e80ace1bbdbaae0940cd64db3db1f3e903fbda1"; 747 } 748 { 749 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/en-GB/firefox-136.0.2.tar.xz"; 750 locale = "en-GB"; 751 arch = "linux-i686"; 752 - sha256 = "4d902b77e440104d872d679c26b605960c4ce72c7dfff6ef1fe896cc7c66cfdc"; 753 } 754 { 755 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/en-US/firefox-136.0.2.tar.xz"; 756 locale = "en-US"; 757 arch = "linux-i686"; 758 - sha256 = "1a136eb948dae3f7433fb71a89c4605d669a02ed3179b4da189f0ab2e0befa16"; 759 } 760 { 761 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/eo/firefox-136.0.2.tar.xz"; 762 locale = "eo"; 763 arch = "linux-i686"; 764 - sha256 = "1bbf9cbca6cd31e5d58ef610c9310cd70ea529dafd66693ff504be70020c96a3"; 765 } 766 { 767 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/es-AR/firefox-136.0.2.tar.xz"; 768 locale = "es-AR"; 769 arch = "linux-i686"; 770 - sha256 = "5c4fd60fc68ed030b56cd12e0c02254b2f509291369cda73008f8f2847478925"; 771 } 772 { 773 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/es-CL/firefox-136.0.2.tar.xz"; 774 locale = "es-CL"; 775 arch = "linux-i686"; 776 - sha256 = "d51bd2dea99a89f1d5d5799e8d8c83aea0ae701b527dd1b79594ccb192bc1f81"; 777 } 778 { 779 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/es-ES/firefox-136.0.2.tar.xz"; 780 locale = "es-ES"; 781 arch = "linux-i686"; 782 - sha256 = "36c6e57c2bc248e0f371829e8a5ebbd645537dcc756ae16e90777e27e9dc8436"; 783 } 784 { 785 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/es-MX/firefox-136.0.2.tar.xz"; 786 locale = "es-MX"; 787 arch = "linux-i686"; 788 - sha256 = "1293c342f81c8a3d5c085da30a2c74af63f5087f49287f20a3b60ea63f726987"; 789 } 790 { 791 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/et/firefox-136.0.2.tar.xz"; 792 locale = "et"; 793 arch = "linux-i686"; 794 - sha256 = "b6e55dc55ac9df5dcfcc99c420902f6b6fd50f4180a21c934526a611e61b3b65"; 795 } 796 { 797 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/eu/firefox-136.0.2.tar.xz"; 798 locale = "eu"; 799 arch = "linux-i686"; 800 - sha256 = "338c5506e549721bd6b3efbec22bac3f1cb5946d9aa2c1bf2a74fe1dd3f12a49"; 801 } 802 { 803 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/fa/firefox-136.0.2.tar.xz"; 804 locale = "fa"; 805 arch = "linux-i686"; 806 - sha256 = "21c5ea467e9bdf62768f0d8c6a1f530a9dd669dab51ddba2101e8ffcc2906336"; 807 } 808 { 809 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ff/firefox-136.0.2.tar.xz"; 810 locale = "ff"; 811 arch = "linux-i686"; 812 - sha256 = "7f1f0a00f781096bc4da14d65bad6c612aabce2c81c5bc54630028af78c648fb"; 813 } 814 { 815 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/fi/firefox-136.0.2.tar.xz"; 816 locale = "fi"; 817 arch = "linux-i686"; 818 - sha256 = "0db20d9d3e6d7e05c61f7c8863df6526d346c0f9c9e14cc258511ffdf50bfa30"; 819 } 820 { 821 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/fr/firefox-136.0.2.tar.xz"; 822 locale = "fr"; 823 arch = "linux-i686"; 824 - sha256 = "1221763dacb8b1c3ac11efcb9a4a12ffdeede3d7f102c384ecb3f21353eb31de"; 825 } 826 { 827 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/fur/firefox-136.0.2.tar.xz"; 828 locale = "fur"; 829 arch = "linux-i686"; 830 - sha256 = "757de82e2eba7a1e5f6b81b9a6c6d4656b276076affc25cc5a64576911243d48"; 831 } 832 { 833 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/fy-NL/firefox-136.0.2.tar.xz"; 834 locale = "fy-NL"; 835 arch = "linux-i686"; 836 - sha256 = "d4826625467e5a55033a5d112d4875d69f1d81e5625ae58ff329d8da9a2d5950"; 837 } 838 { 839 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ga-IE/firefox-136.0.2.tar.xz"; 840 locale = "ga-IE"; 841 arch = "linux-i686"; 842 - sha256 = "f277b658c741ed8a8ca4143d127dc7d263c02fe730f07176c6ab68ea642bd039"; 843 } 844 { 845 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/gd/firefox-136.0.2.tar.xz"; 846 locale = "gd"; 847 arch = "linux-i686"; 848 - sha256 = "502f7cc312fd55f92bfd1ccca333634900ebf0cd3bba93a7c37f7692be1458c2"; 849 } 850 { 851 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/gl/firefox-136.0.2.tar.xz"; 852 locale = "gl"; 853 arch = "linux-i686"; 854 - sha256 = "6346fd1a2edfaf6565d7589de760655d1af569ae2b45345ee49f14c7f04516e2"; 855 } 856 { 857 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/gn/firefox-136.0.2.tar.xz"; 858 locale = "gn"; 859 arch = "linux-i686"; 860 - sha256 = "be56255bc8d4183788da7e95c565d14178b037730259042ea2f117a03c684250"; 861 } 862 { 863 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/gu-IN/firefox-136.0.2.tar.xz"; 864 locale = "gu-IN"; 865 arch = "linux-i686"; 866 - sha256 = "2420dfdd46d6132ca592a2236b83d99f2f21bded20e2a883516a20546e97b929"; 867 } 868 { 869 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/he/firefox-136.0.2.tar.xz"; 870 locale = "he"; 871 arch = "linux-i686"; 872 - sha256 = "3b593300e6e04307bd464ca62fcc82e03aa76cfc9a1eb5daed5c9ac8c3005989"; 873 } 874 { 875 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/hi-IN/firefox-136.0.2.tar.xz"; 876 locale = "hi-IN"; 877 arch = "linux-i686"; 878 - sha256 = "d53af9e831547a3d2c86a7cf323b7da7765a7ff236030e3468be1cf3536d3335"; 879 } 880 { 881 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/hr/firefox-136.0.2.tar.xz"; 882 locale = "hr"; 883 arch = "linux-i686"; 884 - sha256 = "bf1e5b0a5f15658c7fbcb639f76dac4873c66ac6eb73706275e4cfd51ea212ec"; 885 } 886 { 887 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/hsb/firefox-136.0.2.tar.xz"; 888 locale = "hsb"; 889 arch = "linux-i686"; 890 - sha256 = "e7772758b212eb9ccd5e3eeb6ae73f041ae82694c68607d26a827785183322b6"; 891 } 892 { 893 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/hu/firefox-136.0.2.tar.xz"; 894 locale = "hu"; 895 arch = "linux-i686"; 896 - sha256 = "b1faaf3654d881dcca307d85512850d9656b6a1f2d7fa7a78725311e520e9ea9"; 897 } 898 { 899 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/hy-AM/firefox-136.0.2.tar.xz"; 900 locale = "hy-AM"; 901 arch = "linux-i686"; 902 - sha256 = "dd2b121a2ec29d12b150793cd9c8c45dff4e579ccddd2556f3bd61d6eccc082c"; 903 } 904 { 905 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ia/firefox-136.0.2.tar.xz"; 906 locale = "ia"; 907 arch = "linux-i686"; 908 - sha256 = "d9d9f8a085bf0430ab47d196ba8936db97a5a4450e06fc033a1a37e74e83be9e"; 909 } 910 { 911 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/id/firefox-136.0.2.tar.xz"; 912 locale = "id"; 913 arch = "linux-i686"; 914 - sha256 = "a860a1fdb72400203f26b965a9db7bc01262fbe8043ac2427211695f9396deb2"; 915 } 916 { 917 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/is/firefox-136.0.2.tar.xz"; 918 locale = "is"; 919 arch = "linux-i686"; 920 - sha256 = "83604e7cd7703bc448a5afc5d55a88f9db1ba6a08b4c6e27459e326605d45808"; 921 } 922 { 923 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/it/firefox-136.0.2.tar.xz"; 924 locale = "it"; 925 arch = "linux-i686"; 926 - sha256 = "b0885beb655ccfa73db85c6afd325efe81e4bacec9d2d5401692e48483f42ea8"; 927 } 928 { 929 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ja/firefox-136.0.2.tar.xz"; 930 locale = "ja"; 931 arch = "linux-i686"; 932 - sha256 = "ef0a6152ce4c4e7ae7c15168793bb83a98e267f93a674c3e8cfd39fcdbf31525"; 933 } 934 { 935 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ka/firefox-136.0.2.tar.xz"; 936 locale = "ka"; 937 arch = "linux-i686"; 938 - sha256 = "82a509bd832c61b69b116bca793a5826e5d9a52482f9393b670b740f01394991"; 939 } 940 { 941 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/kab/firefox-136.0.2.tar.xz"; 942 locale = "kab"; 943 arch = "linux-i686"; 944 - sha256 = "5df9ad1ef1d271ee774eb7b5a7d11fc41a97869ae20c12b0df56a4d385e4f0ab"; 945 } 946 { 947 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/kk/firefox-136.0.2.tar.xz"; 948 locale = "kk"; 949 arch = "linux-i686"; 950 - sha256 = "4b52e07a139b3205105b4a30fe34cc0f15fbe4bea5ff8d88e68f9beb26bb7f9b"; 951 } 952 { 953 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/km/firefox-136.0.2.tar.xz"; 954 locale = "km"; 955 arch = "linux-i686"; 956 - sha256 = "75c0ba0aae90b3a0256fad5e659e07e28e82f888b083c8ba88f176ab1fa6aed8"; 957 } 958 { 959 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/kn/firefox-136.0.2.tar.xz"; 960 locale = "kn"; 961 arch = "linux-i686"; 962 - sha256 = "d0c952a3bf648394b29b5856b9ff3539fc8a8e62e6ba4aa47737225f6c7da13b"; 963 } 964 { 965 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ko/firefox-136.0.2.tar.xz"; 966 locale = "ko"; 967 arch = "linux-i686"; 968 - sha256 = "6920b831dc0d219221d54a4af3fb9e389c3b7b3213aab6b1bae49c8282ab20dc"; 969 } 970 { 971 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/lij/firefox-136.0.2.tar.xz"; 972 locale = "lij"; 973 arch = "linux-i686"; 974 - sha256 = "f60507d382a24c39267e4917d221f28872f9ed92401cbd9037c7aab929b03375"; 975 } 976 { 977 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/lt/firefox-136.0.2.tar.xz"; 978 locale = "lt"; 979 arch = "linux-i686"; 980 - sha256 = "c7a81714f854bd12c6dfa1cc51b95f6124c90b9c48d2154d0ad423318f53135a"; 981 } 982 { 983 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/lv/firefox-136.0.2.tar.xz"; 984 locale = "lv"; 985 arch = "linux-i686"; 986 - sha256 = "3f82c92e136089263e6f29ddbf92e45b2224671e5d71ebf75580a7ad1fec394d"; 987 } 988 { 989 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/mk/firefox-136.0.2.tar.xz"; 990 locale = "mk"; 991 arch = "linux-i686"; 992 - sha256 = "df118a56ef55a9cae79ee1987b82e082227ea05abf99347058b6e5223f666ac6"; 993 } 994 { 995 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/mr/firefox-136.0.2.tar.xz"; 996 locale = "mr"; 997 arch = "linux-i686"; 998 - sha256 = "15d11443fbc69e162f185917be57eb094faf83a36c0951840cb4ddcbe1484e39"; 999 } 1000 { 1001 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ms/firefox-136.0.2.tar.xz"; 1002 locale = "ms"; 1003 arch = "linux-i686"; 1004 - sha256 = "7788aba60e29128d12b3b3f4bfc465edc8e3aac7526bb7342bfe61c58253f1d4"; 1005 } 1006 { 1007 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/my/firefox-136.0.2.tar.xz"; 1008 locale = "my"; 1009 arch = "linux-i686"; 1010 - sha256 = "af7a948e9b8ced4ec9cc660b665a7cd69b81a004ce750a12b2d5918c6c73bf96"; 1011 } 1012 { 1013 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/nb-NO/firefox-136.0.2.tar.xz"; 1014 locale = "nb-NO"; 1015 arch = "linux-i686"; 1016 - sha256 = "86158a658fb19be600dfc51d437275785dd4d12c1d1e71cfb8fbc910a907e916"; 1017 } 1018 { 1019 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ne-NP/firefox-136.0.2.tar.xz"; 1020 locale = "ne-NP"; 1021 arch = "linux-i686"; 1022 - sha256 = "a73163c8f3018a83f8d86dd70f777c87fe7be4e99b294118580c03c083972ff4"; 1023 } 1024 { 1025 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/nl/firefox-136.0.2.tar.xz"; 1026 locale = "nl"; 1027 arch = "linux-i686"; 1028 - sha256 = "071a1191bed55c766014ee0da19db016e618cf03b37ee9a2488e803c079b8d18"; 1029 } 1030 { 1031 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/nn-NO/firefox-136.0.2.tar.xz"; 1032 locale = "nn-NO"; 1033 arch = "linux-i686"; 1034 - sha256 = "2836bc71293eabc228bcb3679aa97b811b783a504c1dced1bd69dd6ae6bc9571"; 1035 } 1036 { 1037 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/oc/firefox-136.0.2.tar.xz"; 1038 locale = "oc"; 1039 arch = "linux-i686"; 1040 - sha256 = "f95b9d6dbbb445bfa2118d002a1a81278a0433b64dd2f184bb980f6268f9a04c"; 1041 } 1042 { 1043 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/pa-IN/firefox-136.0.2.tar.xz"; 1044 locale = "pa-IN"; 1045 arch = "linux-i686"; 1046 - sha256 = "bb50df49475e75f04b011c809b8aea62cf0cd7001af2724d716ec72e12699c01"; 1047 } 1048 { 1049 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/pl/firefox-136.0.2.tar.xz"; 1050 locale = "pl"; 1051 arch = "linux-i686"; 1052 - sha256 = "5ddfa5370214c42d666fce58ab9fdd5cfeb5aad318b12c69aaeb0e94d4100893"; 1053 } 1054 { 1055 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/pt-BR/firefox-136.0.2.tar.xz"; 1056 locale = "pt-BR"; 1057 arch = "linux-i686"; 1058 - sha256 = "486dd2641e431d1133b789e5a99e08ce8a31e2ee484f6db1d82fe99ca5e22cb6"; 1059 } 1060 { 1061 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/pt-PT/firefox-136.0.2.tar.xz"; 1062 locale = "pt-PT"; 1063 arch = "linux-i686"; 1064 - sha256 = "ecf093f47339f7c332df235e22cc4229a75ae262d988c3d2e44a6a6d7999601b"; 1065 } 1066 { 1067 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/rm/firefox-136.0.2.tar.xz"; 1068 locale = "rm"; 1069 arch = "linux-i686"; 1070 - sha256 = "688902c29a377ade567bce13e306ab7eb03c6e6f91f6f3c7e4089109432ed2e1"; 1071 } 1072 { 1073 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ro/firefox-136.0.2.tar.xz"; 1074 locale = "ro"; 1075 arch = "linux-i686"; 1076 - sha256 = "28b4089d0bf8566183f1f85327337301e46d892ada441eb75e778f66a602f553"; 1077 } 1078 { 1079 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ru/firefox-136.0.2.tar.xz"; 1080 locale = "ru"; 1081 arch = "linux-i686"; 1082 - sha256 = "0afa253c411a8e76241b4551fab912931856dd77bcc26bef38bddbd54cb619a4"; 1083 } 1084 { 1085 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/sat/firefox-136.0.2.tar.xz"; 1086 locale = "sat"; 1087 arch = "linux-i686"; 1088 - sha256 = "cb8cf47b46f8a088f23b52ab4e9e20f592ca12ac60d34abcfe443ea640233568"; 1089 } 1090 { 1091 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/sc/firefox-136.0.2.tar.xz"; 1092 locale = "sc"; 1093 arch = "linux-i686"; 1094 - sha256 = "ddae2ef628da81818e983df96d10e6be7b63206a24382f52fc171ffe7a712c13"; 1095 } 1096 { 1097 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/sco/firefox-136.0.2.tar.xz"; 1098 locale = "sco"; 1099 arch = "linux-i686"; 1100 - sha256 = "6c5a370520178dc203ff1e607035a3ac9e5da6b1e5a049a33beafb4f73ff480f"; 1101 } 1102 { 1103 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/si/firefox-136.0.2.tar.xz"; 1104 locale = "si"; 1105 arch = "linux-i686"; 1106 - sha256 = "074b18544314c02149fca5ac5068ae145cf7a93fe660c65f3fc513f18aed0c70"; 1107 } 1108 { 1109 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/sk/firefox-136.0.2.tar.xz"; 1110 locale = "sk"; 1111 arch = "linux-i686"; 1112 - sha256 = "cc236d796f5f3e92b7bf187c3b446c0184e0db7f4df538e0c0dff2cc3e66cb6e"; 1113 } 1114 { 1115 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/skr/firefox-136.0.2.tar.xz"; 1116 locale = "skr"; 1117 arch = "linux-i686"; 1118 - sha256 = "fe44296270635863f36b57184e43cb04eec424a64a283fec33d4da3e3f253f1f"; 1119 } 1120 { 1121 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/sl/firefox-136.0.2.tar.xz"; 1122 locale = "sl"; 1123 arch = "linux-i686"; 1124 - sha256 = "0d4b702b30755a79e86073125fb8ddc0002fd6348a3b766ec71b9651e02afd86"; 1125 } 1126 { 1127 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/son/firefox-136.0.2.tar.xz"; 1128 locale = "son"; 1129 arch = "linux-i686"; 1130 - sha256 = "54760a6a9b76e903d3911f900ec9162db23cb065257c0f6acdac824df78087b8"; 1131 } 1132 { 1133 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/sq/firefox-136.0.2.tar.xz"; 1134 locale = "sq"; 1135 arch = "linux-i686"; 1136 - sha256 = "cebd39dc07f660f6d102aa4dec2026c4fee5fe22effc5eb2e258cd92b38af625"; 1137 } 1138 { 1139 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/sr/firefox-136.0.2.tar.xz"; 1140 locale = "sr"; 1141 arch = "linux-i686"; 1142 - sha256 = "fd2eb0a96c51e0588e13e99643d1a16317b21bec73706ef2ce7673d1c787f0c0"; 1143 } 1144 { 1145 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/sv-SE/firefox-136.0.2.tar.xz"; 1146 locale = "sv-SE"; 1147 arch = "linux-i686"; 1148 - sha256 = "9e8272d71c37c5078c141ca2c3f109cd487ec61b14b0b56a3cb5cfb8fc2c790e"; 1149 } 1150 { 1151 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/szl/firefox-136.0.2.tar.xz"; 1152 locale = "szl"; 1153 arch = "linux-i686"; 1154 - sha256 = "fa43b0b219e827a389c8a87989366c29b79c803318255b5c979b743b61249cc5"; 1155 } 1156 { 1157 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ta/firefox-136.0.2.tar.xz"; 1158 locale = "ta"; 1159 arch = "linux-i686"; 1160 - sha256 = "a4f44b8fcda3e93b561700fb4d732b5e6066a194fdfc215ac442dd908198ae8d"; 1161 } 1162 { 1163 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/te/firefox-136.0.2.tar.xz"; 1164 locale = "te"; 1165 arch = "linux-i686"; 1166 - sha256 = "3a49ebdac85b9247a7f981124dc4601487b7c94984213967552d992c31793650"; 1167 } 1168 { 1169 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/tg/firefox-136.0.2.tar.xz"; 1170 locale = "tg"; 1171 arch = "linux-i686"; 1172 - sha256 = "5add4c1bfe8099013e20fb35141ad87c0b6c30ee5553bb66220c0e89e65ac23d"; 1173 } 1174 { 1175 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/th/firefox-136.0.2.tar.xz"; 1176 locale = "th"; 1177 arch = "linux-i686"; 1178 - sha256 = "64e31cf60a5b0ab7d2e226f2fea8e7b962165f1d9ffc2b9b40d751a89164fc4a"; 1179 } 1180 { 1181 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/tl/firefox-136.0.2.tar.xz"; 1182 locale = "tl"; 1183 arch = "linux-i686"; 1184 - sha256 = "64eb36c92196b4da51b7efb2f2b28a1eb1eb23a22b9debf8404fbd1bf87bf4c8"; 1185 } 1186 { 1187 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/tr/firefox-136.0.2.tar.xz"; 1188 locale = "tr"; 1189 arch = "linux-i686"; 1190 - sha256 = "d4556ebff0a137d2ad08d071b2b03429e246258680ff4fdb3bcd078ad5bfc120"; 1191 } 1192 { 1193 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/trs/firefox-136.0.2.tar.xz"; 1194 locale = "trs"; 1195 arch = "linux-i686"; 1196 - sha256 = "c529e482f1b6dee4b857bb727a75cc4be2d9725105d662ef8cc18238dc537519"; 1197 } 1198 { 1199 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/uk/firefox-136.0.2.tar.xz"; 1200 locale = "uk"; 1201 arch = "linux-i686"; 1202 - sha256 = "4765bd05ec862f3373a700ba3fffe1d42fd45787575a060c4b43cd2bc163618e"; 1203 } 1204 { 1205 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/ur/firefox-136.0.2.tar.xz"; 1206 locale = "ur"; 1207 arch = "linux-i686"; 1208 - sha256 = "aa77995f8ab3fc5431d876e222f361c43d2a221aa71ee4bd01ddd64bc1ea9377"; 1209 } 1210 { 1211 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/uz/firefox-136.0.2.tar.xz"; 1212 locale = "uz"; 1213 arch = "linux-i686"; 1214 - sha256 = "6a3e6e5822957f89c4fddac5f161c9ab1ef6da1df0f0f4b19118aad2fb215cd0"; 1215 } 1216 { 1217 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/vi/firefox-136.0.2.tar.xz"; 1218 locale = "vi"; 1219 arch = "linux-i686"; 1220 - sha256 = "b2342e6df46ea1974b0e9366a259bc91f69a8602946bfc6e4d6853d9be4bfbcc"; 1221 } 1222 { 1223 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/xh/firefox-136.0.2.tar.xz"; 1224 locale = "xh"; 1225 arch = "linux-i686"; 1226 - sha256 = "ccd9aaf9d6b5808e52a39a390a6408f94be68ac786765f98ff81aca9915bc3d9"; 1227 } 1228 { 1229 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/zh-CN/firefox-136.0.2.tar.xz"; 1230 locale = "zh-CN"; 1231 arch = "linux-i686"; 1232 - sha256 = "beca75f0954b47f0bf0cb5dc967e70e6fca0893d4f2c22770da5ba8e0956623b"; 1233 } 1234 { 1235 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-i686/zh-TW/firefox-136.0.2.tar.xz"; 1236 locale = "zh-TW"; 1237 arch = "linux-i686"; 1238 - sha256 = "74ed7c455c8779bef68b0e4d33da129a031d931ae3a5689857e2fb70e60fd0ca"; 1239 } 1240 { 1241 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ach/firefox-136.0.2.tar.xz"; 1242 locale = "ach"; 1243 arch = "linux-aarch64"; 1244 - sha256 = "f759c87c57d634d7e7eefc90ddbd63256013fa51fd96baeaa453def17c7b5e22"; 1245 } 1246 { 1247 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/af/firefox-136.0.2.tar.xz"; 1248 locale = "af"; 1249 arch = "linux-aarch64"; 1250 - sha256 = "c733d2075070f16d0ff0cf01552f750baed59aea6c44372f70f008fd5c086c00"; 1251 } 1252 { 1253 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/an/firefox-136.0.2.tar.xz"; 1254 locale = "an"; 1255 arch = "linux-aarch64"; 1256 - sha256 = "715bf8adef811095c88f648fe9502681d5ef0ec4491aa6da7bf0badc725b643c"; 1257 } 1258 { 1259 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ar/firefox-136.0.2.tar.xz"; 1260 locale = "ar"; 1261 arch = "linux-aarch64"; 1262 - sha256 = "6f4f68eef67215f50f5914113c26b0c03c91987f5d18e56342cb1c6b4d527a36"; 1263 } 1264 { 1265 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ast/firefox-136.0.2.tar.xz"; 1266 locale = "ast"; 1267 arch = "linux-aarch64"; 1268 - sha256 = "155e4dd056b70b072a76eee95c9c9b3facdfcc767659e1fd123d77bafcc46df8"; 1269 } 1270 { 1271 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/az/firefox-136.0.2.tar.xz"; 1272 locale = "az"; 1273 arch = "linux-aarch64"; 1274 - sha256 = "f0ad4b1b18c40e910bed35a1cac615c8b841bfe15c2b561193b591c45c826ef6"; 1275 } 1276 { 1277 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/be/firefox-136.0.2.tar.xz"; 1278 locale = "be"; 1279 arch = "linux-aarch64"; 1280 - sha256 = "36821aa89819200ea52acea7a84b27ee066574dd98b279e37b9bb2e4a67a5c11"; 1281 } 1282 { 1283 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/bg/firefox-136.0.2.tar.xz"; 1284 locale = "bg"; 1285 arch = "linux-aarch64"; 1286 - sha256 = "fff286f506d274da7d8912cc2d6490df96fee96d57c9a94a60d27d71d12777d4"; 1287 } 1288 { 1289 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/bn/firefox-136.0.2.tar.xz"; 1290 locale = "bn"; 1291 arch = "linux-aarch64"; 1292 - sha256 = "fc16cc975181b9efdff1d5395afea5d782351d10b2c32dc8aaefcba315e85882"; 1293 } 1294 { 1295 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/br/firefox-136.0.2.tar.xz"; 1296 locale = "br"; 1297 arch = "linux-aarch64"; 1298 - sha256 = "8ef8891b99990cf7477d70187cbf57ebad17526e90b907da20efc8a3ad911172"; 1299 } 1300 { 1301 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/bs/firefox-136.0.2.tar.xz"; 1302 locale = "bs"; 1303 arch = "linux-aarch64"; 1304 - sha256 = "73b14dee6e0b73fcbd1b6c37e68442d206bf7919969b43587562accbcd5baa7e"; 1305 } 1306 { 1307 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ca-valencia/firefox-136.0.2.tar.xz"; 1308 locale = "ca-valencia"; 1309 arch = "linux-aarch64"; 1310 - sha256 = "895ab821bdd1213753758635c12087a72f1973dd34d95b4d5e3e3a0afe6f848a"; 1311 } 1312 { 1313 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ca/firefox-136.0.2.tar.xz"; 1314 locale = "ca"; 1315 arch = "linux-aarch64"; 1316 - sha256 = "d614b618ad81daf3dd8eb050d2d51b0f9f6762f392841c7c8e8de8c3fe8655a6"; 1317 } 1318 { 1319 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/cak/firefox-136.0.2.tar.xz"; 1320 locale = "cak"; 1321 arch = "linux-aarch64"; 1322 - sha256 = "8ca5ce8e389e81b787ddadfd8999130151bb2eef244c4559616daa1568a28f54"; 1323 } 1324 { 1325 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/cs/firefox-136.0.2.tar.xz"; 1326 locale = "cs"; 1327 arch = "linux-aarch64"; 1328 - sha256 = "47fb63c859a0f688eaf6da1c8b102b6784b9bfe94fe18cebe16f362421da6833"; 1329 } 1330 { 1331 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/cy/firefox-136.0.2.tar.xz"; 1332 locale = "cy"; 1333 arch = "linux-aarch64"; 1334 - sha256 = "1e2fc57528d4963ed93bd80d4df00f72685b34f1935970dc50e6eb99670fe162"; 1335 } 1336 { 1337 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/da/firefox-136.0.2.tar.xz"; 1338 locale = "da"; 1339 arch = "linux-aarch64"; 1340 - sha256 = "1f6aa1e365210cc5eee2b282e3ac59b081594add139a51ddc5edb9b569037448"; 1341 } 1342 { 1343 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/de/firefox-136.0.2.tar.xz"; 1344 locale = "de"; 1345 arch = "linux-aarch64"; 1346 - sha256 = "d3e2bf28bf30f06e32433bd22a2c5b6f1cb43c43d8a7e4ebc1381369caad37df"; 1347 } 1348 { 1349 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/dsb/firefox-136.0.2.tar.xz"; 1350 locale = "dsb"; 1351 arch = "linux-aarch64"; 1352 - sha256 = "db3ecf1523abe7fb0c6e74cabe09bfbd20df327abd4ddb6b3877a715b6ffe90b"; 1353 } 1354 { 1355 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/el/firefox-136.0.2.tar.xz"; 1356 locale = "el"; 1357 arch = "linux-aarch64"; 1358 - sha256 = "79ee003b3cc94ff76322dcf446faf47ecbb3f02de87c4510a9389ff634de7796"; 1359 } 1360 { 1361 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/en-CA/firefox-136.0.2.tar.xz"; 1362 locale = "en-CA"; 1363 arch = "linux-aarch64"; 1364 - sha256 = "ac8a4e30588e61157cefad2a5c3c7cd5514435b7a586dc837fa809b44b1a89e9"; 1365 } 1366 { 1367 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/en-GB/firefox-136.0.2.tar.xz"; 1368 locale = "en-GB"; 1369 arch = "linux-aarch64"; 1370 - sha256 = "bed91119a2731d02481fc218a66d073e7bd4ed92ed5d5a969999fb81654ade07"; 1371 } 1372 { 1373 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/en-US/firefox-136.0.2.tar.xz"; 1374 locale = "en-US"; 1375 arch = "linux-aarch64"; 1376 - sha256 = "f5d1fdf3234a44b0ff03e58a845a760d11a54e89c94c285468be4553bce1cd4e"; 1377 } 1378 { 1379 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/eo/firefox-136.0.2.tar.xz"; 1380 locale = "eo"; 1381 arch = "linux-aarch64"; 1382 - sha256 = "0b9ee61d05d393ba6967b56b1c4de9a076bac3571a3f3568b0b3d30f879df7de"; 1383 } 1384 { 1385 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/es-AR/firefox-136.0.2.tar.xz"; 1386 locale = "es-AR"; 1387 arch = "linux-aarch64"; 1388 - sha256 = "2ed0f5d1e403ef41d951bf23f9766c4d40629b6b875025a54f48eb34874f5c9d"; 1389 } 1390 { 1391 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/es-CL/firefox-136.0.2.tar.xz"; 1392 locale = "es-CL"; 1393 arch = "linux-aarch64"; 1394 - sha256 = "99570c1ae8d97f29ea38776e0b1254beaaee130fe86b073acaf4cc0d45c84c0d"; 1395 } 1396 { 1397 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/es-ES/firefox-136.0.2.tar.xz"; 1398 locale = "es-ES"; 1399 arch = "linux-aarch64"; 1400 - sha256 = "c9e8a20bf3a4a04da5bbb7b844f54f86d0b8dc7157e77961b23e70bc57117896"; 1401 } 1402 { 1403 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/es-MX/firefox-136.0.2.tar.xz"; 1404 locale = "es-MX"; 1405 arch = "linux-aarch64"; 1406 - sha256 = "7c882786368bc4ba9c8ec155a1d2fc8d05f079ac1f4203b6242510e085ffdb30"; 1407 } 1408 { 1409 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/et/firefox-136.0.2.tar.xz"; 1410 locale = "et"; 1411 arch = "linux-aarch64"; 1412 - sha256 = "d79910327fa952ba89b49eca8595f4b46241350d68fadc6862dbe7fd50e75ccf"; 1413 } 1414 { 1415 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/eu/firefox-136.0.2.tar.xz"; 1416 locale = "eu"; 1417 arch = "linux-aarch64"; 1418 - sha256 = "825e61b310b7ca8c41620c02964a7cddbd0141a881b33a5fa5697e0038169dc2"; 1419 } 1420 { 1421 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/fa/firefox-136.0.2.tar.xz"; 1422 locale = "fa"; 1423 arch = "linux-aarch64"; 1424 - sha256 = "31ffc80166ab22cc522c6927ade4b8473e57e877d4892cf733308971129258b9"; 1425 } 1426 { 1427 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ff/firefox-136.0.2.tar.xz"; 1428 locale = "ff"; 1429 arch = "linux-aarch64"; 1430 - sha256 = "208313e8fc82465803ce5d839b813190666775fb1d3f1e48bef67dd5f237384b"; 1431 } 1432 { 1433 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/fi/firefox-136.0.2.tar.xz"; 1434 locale = "fi"; 1435 arch = "linux-aarch64"; 1436 - sha256 = "04980de440a1c12dfdcc2b7debddfe37b13b6d03c396dd53d66e28a90ad66c92"; 1437 } 1438 { 1439 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/fr/firefox-136.0.2.tar.xz"; 1440 locale = "fr"; 1441 arch = "linux-aarch64"; 1442 - sha256 = "784a9b4393fc7d07219d1295a796d7982921a1464c91e5c34a29c5b3a1684a02"; 1443 } 1444 { 1445 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/fur/firefox-136.0.2.tar.xz"; 1446 locale = "fur"; 1447 arch = "linux-aarch64"; 1448 - sha256 = "f860009bfe9712a383694b50bad66042b7d28b40d441960c93ee4988f8c94c36"; 1449 } 1450 { 1451 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/fy-NL/firefox-136.0.2.tar.xz"; 1452 locale = "fy-NL"; 1453 arch = "linux-aarch64"; 1454 - sha256 = "f182b74b1237cdfd9a75dc595c2c730e9ef157b8897fdc53321e6d61ccc91caf"; 1455 } 1456 { 1457 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ga-IE/firefox-136.0.2.tar.xz"; 1458 locale = "ga-IE"; 1459 arch = "linux-aarch64"; 1460 - sha256 = "76f8891929079aa75fa0a54c3b2c1ce3d6be44b582659711023140861b31a55a"; 1461 } 1462 { 1463 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/gd/firefox-136.0.2.tar.xz"; 1464 locale = "gd"; 1465 arch = "linux-aarch64"; 1466 - sha256 = "6cb6521148039f98eae863f0e7f55ac5be3d896c32dafc25fac5391ab178c8ef"; 1467 } 1468 { 1469 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/gl/firefox-136.0.2.tar.xz"; 1470 locale = "gl"; 1471 arch = "linux-aarch64"; 1472 - sha256 = "6fdbe1608830ae67746df1a4f53a8382af46d3bfe1b56e018f54a3ace14fa6fa"; 1473 } 1474 { 1475 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/gn/firefox-136.0.2.tar.xz"; 1476 locale = "gn"; 1477 arch = "linux-aarch64"; 1478 - sha256 = "9e1756e0237d0c1d83d78584884224ec46341315cf16a9f23147223ed0afb86f"; 1479 } 1480 { 1481 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/gu-IN/firefox-136.0.2.tar.xz"; 1482 locale = "gu-IN"; 1483 arch = "linux-aarch64"; 1484 - sha256 = "fa75906f22a58e20b73928ea80726929ee173d6a0ef30dad097b7a7413646123"; 1485 } 1486 { 1487 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/he/firefox-136.0.2.tar.xz"; 1488 locale = "he"; 1489 arch = "linux-aarch64"; 1490 - sha256 = "22bc1e247a769329e6e18cf1fbfeccb23da66df708893faedba3d7de66170995"; 1491 } 1492 { 1493 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/hi-IN/firefox-136.0.2.tar.xz"; 1494 locale = "hi-IN"; 1495 arch = "linux-aarch64"; 1496 - sha256 = "6272e7d88f0ab169199f54a15ddbdd9ffecbb0256c4e0a316cbbf45f250f306e"; 1497 } 1498 { 1499 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/hr/firefox-136.0.2.tar.xz"; 1500 locale = "hr"; 1501 arch = "linux-aarch64"; 1502 - sha256 = "e062591b0688a0505e853f6ce4ec1f14166af60a4b7f89b19c14af09a44aea3f"; 1503 } 1504 { 1505 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/hsb/firefox-136.0.2.tar.xz"; 1506 locale = "hsb"; 1507 arch = "linux-aarch64"; 1508 - sha256 = "97e4d85e4ec26321bfc46e4ab1f865964a45c6fd2db7b5bde82ba082bb313ff3"; 1509 } 1510 { 1511 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/hu/firefox-136.0.2.tar.xz"; 1512 locale = "hu"; 1513 arch = "linux-aarch64"; 1514 - sha256 = "80667dc6860b65255fcd12c035ac14cb5b2554835529694aa52f8ed08786fdcd"; 1515 } 1516 { 1517 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/hy-AM/firefox-136.0.2.tar.xz"; 1518 locale = "hy-AM"; 1519 arch = "linux-aarch64"; 1520 - sha256 = "b157394cbb2ed9203c828fd474dbb1b4397783023ef59bb3fbe0a4d73beb93b6"; 1521 } 1522 { 1523 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ia/firefox-136.0.2.tar.xz"; 1524 locale = "ia"; 1525 arch = "linux-aarch64"; 1526 - sha256 = "88117b955d1584f8ff1612ec08adbfdbb2a8caeff1b08e91acd315454e99991c"; 1527 } 1528 { 1529 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/id/firefox-136.0.2.tar.xz"; 1530 locale = "id"; 1531 arch = "linux-aarch64"; 1532 - sha256 = "07e3be5f9a15df870829beb12069b19eb8fca034fc5da7ea75ace3399c18945c"; 1533 } 1534 { 1535 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/is/firefox-136.0.2.tar.xz"; 1536 locale = "is"; 1537 arch = "linux-aarch64"; 1538 - sha256 = "ea22c47a65cf3635c5ead05aa3badaa61493a917745e9e36d8fe235697256436"; 1539 } 1540 { 1541 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/it/firefox-136.0.2.tar.xz"; 1542 locale = "it"; 1543 arch = "linux-aarch64"; 1544 - sha256 = "7882dbbaa07201be02061ce8346c82e37ca499afe0800ef7a363a7b31308989b"; 1545 } 1546 { 1547 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ja/firefox-136.0.2.tar.xz"; 1548 locale = "ja"; 1549 arch = "linux-aarch64"; 1550 - sha256 = "5ca3f905cb2dfe7da7b222f209880974990ad5f23d30ee2d747b913acf322f67"; 1551 } 1552 { 1553 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ka/firefox-136.0.2.tar.xz"; 1554 locale = "ka"; 1555 arch = "linux-aarch64"; 1556 - sha256 = "6cd281ae68bc7ed5d271bb9153cab65440b4993bc937d1c1a2a4217d6e447227"; 1557 } 1558 { 1559 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/kab/firefox-136.0.2.tar.xz"; 1560 locale = "kab"; 1561 arch = "linux-aarch64"; 1562 - sha256 = "3947e20daf1f4593e3d108832caa851f6b19e16b85d1fca9ece23100953e7f4b"; 1563 } 1564 { 1565 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/kk/firefox-136.0.2.tar.xz"; 1566 locale = "kk"; 1567 arch = "linux-aarch64"; 1568 - sha256 = "bc778bffc819e80532cb5de9a4aa9e8fbd3d51b5124fbadaa52715e8e49447fd"; 1569 } 1570 { 1571 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/km/firefox-136.0.2.tar.xz"; 1572 locale = "km"; 1573 arch = "linux-aarch64"; 1574 - sha256 = "344c685415da7ac9b078cf28b1cf1d9b62b3cdac78707019de43ebd6bd50c582"; 1575 } 1576 { 1577 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/kn/firefox-136.0.2.tar.xz"; 1578 locale = "kn"; 1579 arch = "linux-aarch64"; 1580 - sha256 = "553afe9f54445db4f3aaefaa4e28d483913c43c8e37068205ebb7d7cf7da2696"; 1581 } 1582 { 1583 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ko/firefox-136.0.2.tar.xz"; 1584 locale = "ko"; 1585 arch = "linux-aarch64"; 1586 - sha256 = "b8bdaf74599bc16f4e24da4a127d3c46583f9839dd72b9a7e76ab38c40e7863c"; 1587 } 1588 { 1589 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/lij/firefox-136.0.2.tar.xz"; 1590 locale = "lij"; 1591 arch = "linux-aarch64"; 1592 - sha256 = "67bee42f0444640ad02e14acc7051066483e24a4581a2271ae5e7b4f5fa5efb3"; 1593 } 1594 { 1595 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/lt/firefox-136.0.2.tar.xz"; 1596 locale = "lt"; 1597 arch = "linux-aarch64"; 1598 - sha256 = "a980e479a0f0a81769bc11ab348dd051d8fc8376943d3b0a822b833adbdd82af"; 1599 } 1600 { 1601 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/lv/firefox-136.0.2.tar.xz"; 1602 locale = "lv"; 1603 arch = "linux-aarch64"; 1604 - sha256 = "9ae0c8da90c5958076dec909cacb35315e702c40df8a4f646192f99798e1bbee"; 1605 } 1606 { 1607 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/mk/firefox-136.0.2.tar.xz"; 1608 locale = "mk"; 1609 arch = "linux-aarch64"; 1610 - sha256 = "f4fe40e87af41cb8364cade0a69decdb70840fd7fcdbd7681d01b3c2cfdf981e"; 1611 } 1612 { 1613 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/mr/firefox-136.0.2.tar.xz"; 1614 locale = "mr"; 1615 arch = "linux-aarch64"; 1616 - sha256 = "0a78ee430238a580e7bdaaa40277a3faf1a186b7ebedac3662300d1b9c3aa1f1"; 1617 } 1618 { 1619 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ms/firefox-136.0.2.tar.xz"; 1620 locale = "ms"; 1621 arch = "linux-aarch64"; 1622 - sha256 = "d7ad6163c61b3bec0453d5a431653bf7e00037b92905c8ec74c77c3c567a0495"; 1623 } 1624 { 1625 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/my/firefox-136.0.2.tar.xz"; 1626 locale = "my"; 1627 arch = "linux-aarch64"; 1628 - sha256 = "0782dd4df40a601424736c4395b61637013763c96cd8a8e83be759fa916737b7"; 1629 } 1630 { 1631 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/nb-NO/firefox-136.0.2.tar.xz"; 1632 locale = "nb-NO"; 1633 arch = "linux-aarch64"; 1634 - sha256 = "dbc5af87885b99533706f5652d84722c99b338944f3a5d73053acb59ee18b1e6"; 1635 } 1636 { 1637 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ne-NP/firefox-136.0.2.tar.xz"; 1638 locale = "ne-NP"; 1639 arch = "linux-aarch64"; 1640 - sha256 = "5eafb7dcfdf3fcaee135325f338ca6dc73653fa79b418833c99ee12132661da4"; 1641 } 1642 { 1643 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/nl/firefox-136.0.2.tar.xz"; 1644 locale = "nl"; 1645 arch = "linux-aarch64"; 1646 - sha256 = "9bc817e177bdd33028a809136ee296f41bc98b7469950e877d1f56eca52a79b0"; 1647 } 1648 { 1649 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/nn-NO/firefox-136.0.2.tar.xz"; 1650 locale = "nn-NO"; 1651 arch = "linux-aarch64"; 1652 - sha256 = "1f609a6e4ce54ce3fa2d2b70c7673f0ecf53b6a21b7397437ef960f0f4153dbd"; 1653 } 1654 { 1655 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/oc/firefox-136.0.2.tar.xz"; 1656 locale = "oc"; 1657 arch = "linux-aarch64"; 1658 - sha256 = "29a64fdc4c39b66da1fcf067ef4d7fa60557833495a50ca3322aca5fdf6c6ca5"; 1659 } 1660 { 1661 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/pa-IN/firefox-136.0.2.tar.xz"; 1662 locale = "pa-IN"; 1663 arch = "linux-aarch64"; 1664 - sha256 = "9675786908810248b689952f12d3ce721ac56a63fb33a746dc977034013f9e48"; 1665 } 1666 { 1667 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/pl/firefox-136.0.2.tar.xz"; 1668 locale = "pl"; 1669 arch = "linux-aarch64"; 1670 - sha256 = "64c7644e70b91fe5da1251edbf032a0fc62606e74369158868ab7a731c399c81"; 1671 } 1672 { 1673 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/pt-BR/firefox-136.0.2.tar.xz"; 1674 locale = "pt-BR"; 1675 arch = "linux-aarch64"; 1676 - sha256 = "c8e4e305f0eb409c6e42431ef70d140aee5867125c274fe4e87fa9c2d5a65178"; 1677 } 1678 { 1679 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/pt-PT/firefox-136.0.2.tar.xz"; 1680 locale = "pt-PT"; 1681 arch = "linux-aarch64"; 1682 - sha256 = "1444353c52e398b7ff603c79d55708b3401327358dacdd96d9a5a76c25608098"; 1683 } 1684 { 1685 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/rm/firefox-136.0.2.tar.xz"; 1686 locale = "rm"; 1687 arch = "linux-aarch64"; 1688 - sha256 = "f2612a53e306aeebf3d94722508af00da728088f63d6ed8e830692d6276aa278"; 1689 } 1690 { 1691 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ro/firefox-136.0.2.tar.xz"; 1692 locale = "ro"; 1693 arch = "linux-aarch64"; 1694 - sha256 = "011e7cd4adc056ce799c2363526740811453397b418ad380c5bbedd9fa1c8f98"; 1695 } 1696 { 1697 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ru/firefox-136.0.2.tar.xz"; 1698 locale = "ru"; 1699 arch = "linux-aarch64"; 1700 - sha256 = "9f1fc61bee2ae2270bc0154f4a4e54d341c2cadaa33d78cfacfb64483bb557c3"; 1701 } 1702 { 1703 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/sat/firefox-136.0.2.tar.xz"; 1704 locale = "sat"; 1705 arch = "linux-aarch64"; 1706 - sha256 = "2d8616eb6fe7b95d047add947e7f929bffd8a71705ec2336fa370ff98ce1c714"; 1707 } 1708 { 1709 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/sc/firefox-136.0.2.tar.xz"; 1710 locale = "sc"; 1711 arch = "linux-aarch64"; 1712 - sha256 = "c9ef8e338962b62045c28d22c654347f68d01c2a810efa1a7f847cd0a3ddebe3"; 1713 } 1714 { 1715 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/sco/firefox-136.0.2.tar.xz"; 1716 locale = "sco"; 1717 arch = "linux-aarch64"; 1718 - sha256 = "ef74fbd5d0a1216daa3c1b716340e65faedbe2fc00ba91314c1d2a873722ea0f"; 1719 } 1720 { 1721 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/si/firefox-136.0.2.tar.xz"; 1722 locale = "si"; 1723 arch = "linux-aarch64"; 1724 - sha256 = "7e1d8ac9bd8b3901493f509b70bd4b3f90dd59ce314a1465907070d5186b1b6c"; 1725 } 1726 { 1727 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/sk/firefox-136.0.2.tar.xz"; 1728 locale = "sk"; 1729 arch = "linux-aarch64"; 1730 - sha256 = "30643756e313734c6f55c0d0d9a7ad4f425e0587c834ea0e36f2e25e98d676a8"; 1731 } 1732 { 1733 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/skr/firefox-136.0.2.tar.xz"; 1734 locale = "skr"; 1735 arch = "linux-aarch64"; 1736 - sha256 = "dc21c4301300e1a646293afb46a89e921644f1377c3afcc3c8e76032579f895b"; 1737 } 1738 { 1739 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/sl/firefox-136.0.2.tar.xz"; 1740 locale = "sl"; 1741 arch = "linux-aarch64"; 1742 - sha256 = "65b51f6919a9abdeb0a2bb15ec781219b79655632e31e544d7e0cd2d804e15cc"; 1743 } 1744 { 1745 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/son/firefox-136.0.2.tar.xz"; 1746 locale = "son"; 1747 arch = "linux-aarch64"; 1748 - sha256 = "975bfbc4a449b6ab2cf38eda5b61ae2cd5f83ad2fc4fbe3e2a0ce8d94b0088f4"; 1749 } 1750 { 1751 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/sq/firefox-136.0.2.tar.xz"; 1752 locale = "sq"; 1753 arch = "linux-aarch64"; 1754 - sha256 = "ddb767c6c8df3fa0ecfeb955b3d1ada1853943912e4ac671025d9570f4a3087a"; 1755 } 1756 { 1757 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/sr/firefox-136.0.2.tar.xz"; 1758 locale = "sr"; 1759 arch = "linux-aarch64"; 1760 - sha256 = "9a6b0088300fcb53ac4f6af1a59926241d34490e259af292a78b259eca460783"; 1761 } 1762 { 1763 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/sv-SE/firefox-136.0.2.tar.xz"; 1764 locale = "sv-SE"; 1765 arch = "linux-aarch64"; 1766 - sha256 = "84775e9829d3d4f694e356ca783e82f1fb618b59fb34fd3f01b44d6699aab4d3"; 1767 } 1768 { 1769 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/szl/firefox-136.0.2.tar.xz"; 1770 locale = "szl"; 1771 arch = "linux-aarch64"; 1772 - sha256 = "e966b8028cfb7b0746cdc11eff9566f40dd259579c10b68ecf4e2c0ffd786250"; 1773 } 1774 { 1775 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ta/firefox-136.0.2.tar.xz"; 1776 locale = "ta"; 1777 arch = "linux-aarch64"; 1778 - sha256 = "aa6b39c7a6ab11653773b80bdda5c5a6513a4ef04e885beec6e6870a9ab0e2e2"; 1779 } 1780 { 1781 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/te/firefox-136.0.2.tar.xz"; 1782 locale = "te"; 1783 arch = "linux-aarch64"; 1784 - sha256 = "838ee81db2391a8b918b7bb2dd553128376ee8826b39e40bafd87480bdafa38a"; 1785 } 1786 { 1787 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/tg/firefox-136.0.2.tar.xz"; 1788 locale = "tg"; 1789 arch = "linux-aarch64"; 1790 - sha256 = "c4d136fe2d950df2c3c36b11c8b68ccaa5f666ce5e0517482b4e708e399fd5fe"; 1791 } 1792 { 1793 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/th/firefox-136.0.2.tar.xz"; 1794 locale = "th"; 1795 arch = "linux-aarch64"; 1796 - sha256 = "df1a9b6ade3b3a6e2a717c7cc74284373a684aaaa748d1000c52a9e4036885c6"; 1797 } 1798 { 1799 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/tl/firefox-136.0.2.tar.xz"; 1800 locale = "tl"; 1801 arch = "linux-aarch64"; 1802 - sha256 = "01c08883760c8dc56273ab29610be1329d3ba22de2d4552a2728ab09dc19c07c"; 1803 } 1804 { 1805 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/tr/firefox-136.0.2.tar.xz"; 1806 locale = "tr"; 1807 arch = "linux-aarch64"; 1808 - sha256 = "42419179289c3a5cbd24f8f46ef29963f81eaf2a708236b6df2dadc0787392e3"; 1809 } 1810 { 1811 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/trs/firefox-136.0.2.tar.xz"; 1812 locale = "trs"; 1813 arch = "linux-aarch64"; 1814 - sha256 = "451fad02e6a2ec384527eaef6024fb429042e4f90bd5ef38e178cc2c21ba70e2"; 1815 } 1816 { 1817 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/uk/firefox-136.0.2.tar.xz"; 1818 locale = "uk"; 1819 arch = "linux-aarch64"; 1820 - sha256 = "8dab9ca3edc8008a8fdce74a66b7b9e98803993ac48bec6bff56d0ac994674f5"; 1821 } 1822 { 1823 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/ur/firefox-136.0.2.tar.xz"; 1824 locale = "ur"; 1825 arch = "linux-aarch64"; 1826 - sha256 = "b3b52682e696cd47929d4c2c49b2107fb2d25a5250fa2b6c06865c734bcb1ae9"; 1827 } 1828 { 1829 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/uz/firefox-136.0.2.tar.xz"; 1830 locale = "uz"; 1831 arch = "linux-aarch64"; 1832 - sha256 = "66cc46bc1e1df5a22145db14828646bcfd117e7497ebfdc58bb9a0af349cf6a2"; 1833 } 1834 { 1835 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/vi/firefox-136.0.2.tar.xz"; 1836 locale = "vi"; 1837 arch = "linux-aarch64"; 1838 - sha256 = "4508aa7e8c186b48901a204f34901d88a8e1b40bf2dab180092426f95efb6e68"; 1839 } 1840 { 1841 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/xh/firefox-136.0.2.tar.xz"; 1842 locale = "xh"; 1843 arch = "linux-aarch64"; 1844 - sha256 = "8802ea5e7e8e21fd820d2879db493fe096a26d7cce30939e2457e5243246dbe7"; 1845 } 1846 { 1847 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/zh-CN/firefox-136.0.2.tar.xz"; 1848 locale = "zh-CN"; 1849 arch = "linux-aarch64"; 1850 - sha256 = "8cdcdaff9353e9207e7902310de6f2dc6c924569dbb59a8c3c9687045b01735a"; 1851 } 1852 { 1853 - url = "https://archive.mozilla.org/pub/firefox/releases/136.0.2/linux-aarch64/zh-TW/firefox-136.0.2.tar.xz"; 1854 locale = "zh-TW"; 1855 arch = "linux-aarch64"; 1856 - sha256 = "ca06618fbd10de2be0e37d61f17cc9c3ce70867d5655325ce1eebd420b806581"; 1857 } 1858 ]; 1859 }
··· 1 { 2 + version = "136.0.3"; 3 sources = [ 4 { 5 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ach/firefox-136.0.3.tar.xz"; 6 locale = "ach"; 7 arch = "linux-x86_64"; 8 + sha256 = "0cfbdd070a25d4d19efe5e1a1ed03049c7157fa74c9e1a5cac5eeb95e1bb850a"; 9 } 10 { 11 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/af/firefox-136.0.3.tar.xz"; 12 locale = "af"; 13 arch = "linux-x86_64"; 14 + sha256 = "b939223a02822fc259c0c20679631e4677a5b0f8e20e7b193d8cc80986af7ce2"; 15 } 16 { 17 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/an/firefox-136.0.3.tar.xz"; 18 locale = "an"; 19 arch = "linux-x86_64"; 20 + sha256 = "4170ce545ae48aca7b16ddb2b9a2baa813020dc629d1bca436cbb952b481551a"; 21 } 22 { 23 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ar/firefox-136.0.3.tar.xz"; 24 locale = "ar"; 25 arch = "linux-x86_64"; 26 + sha256 = "5f24ba4d73c4f4155c8f9667c525315fdc289283ffaa28e775a5f3bb88f87b7a"; 27 } 28 { 29 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ast/firefox-136.0.3.tar.xz"; 30 locale = "ast"; 31 arch = "linux-x86_64"; 32 + sha256 = "63c53fdfb60c8612e3e8435e0d54b2cbf26983e1222ffe0706fb30e932c94444"; 33 } 34 { 35 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/az/firefox-136.0.3.tar.xz"; 36 locale = "az"; 37 arch = "linux-x86_64"; 38 + sha256 = "db82a593833b3db4dd577f1acc7cbd1f9408db075c6a697785d2804ca5a44902"; 39 } 40 { 41 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/be/firefox-136.0.3.tar.xz"; 42 locale = "be"; 43 arch = "linux-x86_64"; 44 + sha256 = "c602732c85ee5f5f847d7ac4093af293f09dac4f71b4c73e83bd868c253b1a78"; 45 } 46 { 47 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/bg/firefox-136.0.3.tar.xz"; 48 locale = "bg"; 49 arch = "linux-x86_64"; 50 + sha256 = "6c609a7690225fe093a3baff78833bd69bd68e50d1400504b50ad272b2f9e288"; 51 } 52 { 53 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/bn/firefox-136.0.3.tar.xz"; 54 locale = "bn"; 55 arch = "linux-x86_64"; 56 + sha256 = "4f6dabdb688387651a30e0631315467c056da31ba385f9f888793bb97f67f63d"; 57 } 58 { 59 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/br/firefox-136.0.3.tar.xz"; 60 locale = "br"; 61 arch = "linux-x86_64"; 62 + sha256 = "d8eb14cb1502906b53a3768f763a42731cebb231e9ad5be8bc5de2f2b48e16c8"; 63 } 64 { 65 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/bs/firefox-136.0.3.tar.xz"; 66 locale = "bs"; 67 arch = "linux-x86_64"; 68 + sha256 = "e3ca059d2779dfd98cc8c83d44b4f92f61cfad1b394d2d519615363492c770f2"; 69 } 70 { 71 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ca-valencia/firefox-136.0.3.tar.xz"; 72 locale = "ca-valencia"; 73 arch = "linux-x86_64"; 74 + sha256 = "2c2de339718846f3d098d362106afd798c2725c9615cfe29a14b0d4695f740b2"; 75 } 76 { 77 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ca/firefox-136.0.3.tar.xz"; 78 locale = "ca"; 79 arch = "linux-x86_64"; 80 + sha256 = "e826f088e5a967256e393b8e9594dd1ca258aca0ec69f3b9a37ff3b87d7d30e5"; 81 } 82 { 83 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/cak/firefox-136.0.3.tar.xz"; 84 locale = "cak"; 85 arch = "linux-x86_64"; 86 + sha256 = "6395fbd80289ee57d53ec7ef7897479352530619bce36bea091e2dcaa507e475"; 87 } 88 { 89 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/cs/firefox-136.0.3.tar.xz"; 90 locale = "cs"; 91 arch = "linux-x86_64"; 92 + sha256 = "c981c8730dc162889bec14ece1c4f150eabc375324383bc1ae4a48d1760e89c5"; 93 } 94 { 95 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/cy/firefox-136.0.3.tar.xz"; 96 locale = "cy"; 97 arch = "linux-x86_64"; 98 + sha256 = "8fb1fa4ee31f415484245ccb811e0ba9b28765f2e091efb248d2d61e52d3fa5d"; 99 } 100 { 101 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/da/firefox-136.0.3.tar.xz"; 102 locale = "da"; 103 arch = "linux-x86_64"; 104 + sha256 = "73b406b92dddd530f2753d0f28b1d45db8df398b2103d279dad9b33c01050318"; 105 } 106 { 107 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/de/firefox-136.0.3.tar.xz"; 108 locale = "de"; 109 arch = "linux-x86_64"; 110 + sha256 = "7325a7a434d25d98e8deff6ede4fe7fa7a02692c3aa08fa609afd81a558c2279"; 111 } 112 { 113 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/dsb/firefox-136.0.3.tar.xz"; 114 locale = "dsb"; 115 arch = "linux-x86_64"; 116 + sha256 = "1b1c8eca4a55ff99a6c744a746c34e808b0b1ad66c95bd089f8075b8b45e4f7e"; 117 } 118 { 119 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/el/firefox-136.0.3.tar.xz"; 120 locale = "el"; 121 arch = "linux-x86_64"; 122 + sha256 = "31f5f1805eaf4f5455331777b1eac39f4b3c6dae505c6da33e2cc25739917b87"; 123 } 124 { 125 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/en-CA/firefox-136.0.3.tar.xz"; 126 locale = "en-CA"; 127 arch = "linux-x86_64"; 128 + sha256 = "3dc44fc4e182a4598c18fb127d9c9401ae79a29cf55d47085936008a4c5a1810"; 129 } 130 { 131 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/en-GB/firefox-136.0.3.tar.xz"; 132 locale = "en-GB"; 133 arch = "linux-x86_64"; 134 + sha256 = "32d858a012f7714619580ef217f4768669bf60c96f85c26cd3d76ea5fb55743e"; 135 } 136 { 137 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/en-US/firefox-136.0.3.tar.xz"; 138 locale = "en-US"; 139 arch = "linux-x86_64"; 140 + sha256 = "0f7c9a3f04c7aedc50c01880266eae354094b872aa3c73a05f11a212bd70face"; 141 } 142 { 143 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/eo/firefox-136.0.3.tar.xz"; 144 locale = "eo"; 145 arch = "linux-x86_64"; 146 + sha256 = "22d4339b8af9208a6a3ffc485646c7aebf02be8b58d9186721f63d5aa409f3cc"; 147 } 148 { 149 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/es-AR/firefox-136.0.3.tar.xz"; 150 locale = "es-AR"; 151 arch = "linux-x86_64"; 152 + sha256 = "94dad28e10d0356152012c498ea9fe8d01474de7d7eabb9f30c37c151ce2fd3d"; 153 } 154 { 155 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/es-CL/firefox-136.0.3.tar.xz"; 156 locale = "es-CL"; 157 arch = "linux-x86_64"; 158 + sha256 = "025383342e1bcb5d5b927fc3131e2514db1924b9a0e5c1155d3c8acafe33cbf0"; 159 } 160 { 161 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/es-ES/firefox-136.0.3.tar.xz"; 162 locale = "es-ES"; 163 arch = "linux-x86_64"; 164 + sha256 = "8574d540a3a2603cada07d850287e813098577a4fffdcf25f09720f980e6dd6f"; 165 } 166 { 167 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/es-MX/firefox-136.0.3.tar.xz"; 168 locale = "es-MX"; 169 arch = "linux-x86_64"; 170 + sha256 = "7a71f27063933a6ee35b134a7fb51e5db7a1d54d0dd876a668264685cf6ada1e"; 171 } 172 { 173 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/et/firefox-136.0.3.tar.xz"; 174 locale = "et"; 175 arch = "linux-x86_64"; 176 + sha256 = "4a8d9f6f33330e2ecb6946d80ee53240c1380fbf4e7c4c532b78296b6fe6cd6c"; 177 } 178 { 179 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/eu/firefox-136.0.3.tar.xz"; 180 locale = "eu"; 181 arch = "linux-x86_64"; 182 + sha256 = "d7731266aabecd7a6e0a3d3b45ce48092e17f82ebe5ebae87fd307d2fc28bc4a"; 183 } 184 { 185 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/fa/firefox-136.0.3.tar.xz"; 186 locale = "fa"; 187 arch = "linux-x86_64"; 188 + sha256 = "76da793e961fe4154c8263c60e18a052dc85bbc3346e06bb2011402ebd8f80b7"; 189 } 190 { 191 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ff/firefox-136.0.3.tar.xz"; 192 locale = "ff"; 193 arch = "linux-x86_64"; 194 + sha256 = "8ce1462a062a20f3aa6b29944b13ca6dc0b4fa93615b71cb5ccdcd269b99ccc8"; 195 } 196 { 197 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/fi/firefox-136.0.3.tar.xz"; 198 locale = "fi"; 199 arch = "linux-x86_64"; 200 + sha256 = "584786c0440f9bb535c290be4ab33ab517414dffdb10e88946e39214c2346951"; 201 } 202 { 203 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/fr/firefox-136.0.3.tar.xz"; 204 locale = "fr"; 205 arch = "linux-x86_64"; 206 + sha256 = "b10d1a60df895c96262b03f039aa90e7d5761f554b6b92e7a1977cdc167a3a96"; 207 } 208 { 209 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/fur/firefox-136.0.3.tar.xz"; 210 locale = "fur"; 211 arch = "linux-x86_64"; 212 + sha256 = "7aef547db2cce4bd40b9282ae92e025bb1eb554be9a5fbd5ac9a56a5e4540dee"; 213 } 214 { 215 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/fy-NL/firefox-136.0.3.tar.xz"; 216 locale = "fy-NL"; 217 arch = "linux-x86_64"; 218 + sha256 = "b2105ae0e1cf86c3b8c7b7ac157bbf828f66fd48f5254b6555672e333e458c96"; 219 } 220 { 221 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ga-IE/firefox-136.0.3.tar.xz"; 222 locale = "ga-IE"; 223 arch = "linux-x86_64"; 224 + sha256 = "147de16580b92d28bbfa7506cc18a80f1436a9c03ec130df10fbfee1e1b784ee"; 225 } 226 { 227 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/gd/firefox-136.0.3.tar.xz"; 228 locale = "gd"; 229 arch = "linux-x86_64"; 230 + sha256 = "388160f2af23fbb389725fa67db80802c3e9a54b36278cd13bd53511d56e8391"; 231 } 232 { 233 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/gl/firefox-136.0.3.tar.xz"; 234 locale = "gl"; 235 arch = "linux-x86_64"; 236 + sha256 = "3c3162c5dd0d6c619a35749d8aed0444c1dc6d450174c69b71b70a7a0efdd382"; 237 } 238 { 239 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/gn/firefox-136.0.3.tar.xz"; 240 locale = "gn"; 241 arch = "linux-x86_64"; 242 + sha256 = "3db3f958ff2110e2fa60bc71afcd3d406c4fe6370bc6bac107823738ae3452a8"; 243 } 244 { 245 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/gu-IN/firefox-136.0.3.tar.xz"; 246 locale = "gu-IN"; 247 arch = "linux-x86_64"; 248 + sha256 = "d3c4462a0bd553f9b87fb19935c3ea6b71492dff0d6c07fb081e6303524af689"; 249 } 250 { 251 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/he/firefox-136.0.3.tar.xz"; 252 locale = "he"; 253 arch = "linux-x86_64"; 254 + sha256 = "6a6dad9c94e1c36deb4e1348f66d5457f580843b171759e218fcec399b6df595"; 255 } 256 { 257 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/hi-IN/firefox-136.0.3.tar.xz"; 258 locale = "hi-IN"; 259 arch = "linux-x86_64"; 260 + sha256 = "e0e48289e6c4bedf1aae3f1dbfa0c8317e9098f7910866576117935eba72eba7"; 261 } 262 { 263 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/hr/firefox-136.0.3.tar.xz"; 264 locale = "hr"; 265 arch = "linux-x86_64"; 266 + sha256 = "13a7e3137b3aebcd3a3a696fccb376200b66274ff0837a8efd497409efced1e2"; 267 } 268 { 269 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/hsb/firefox-136.0.3.tar.xz"; 270 locale = "hsb"; 271 arch = "linux-x86_64"; 272 + sha256 = "4bc3b8103ca20fd089128147ba8a66f0c30aeb4c1fa47add749cf4ce116bcb77"; 273 } 274 { 275 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/hu/firefox-136.0.3.tar.xz"; 276 locale = "hu"; 277 arch = "linux-x86_64"; 278 + sha256 = "d4738ce29c0c1f7e8440a4a5e11389b10db7b7fb5b6ba7fae0ecfa5d185ac9db"; 279 } 280 { 281 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/hy-AM/firefox-136.0.3.tar.xz"; 282 locale = "hy-AM"; 283 arch = "linux-x86_64"; 284 + sha256 = "af1df50b8c116bd8bdba80895a3d615ccd0a224b44b408297c3cfebeee383e28"; 285 } 286 { 287 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ia/firefox-136.0.3.tar.xz"; 288 locale = "ia"; 289 arch = "linux-x86_64"; 290 + sha256 = "c1fa64c3c226287dd1e7b703aa5b8946f7cd1c4a245921647db84adb7a258da4"; 291 } 292 { 293 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/id/firefox-136.0.3.tar.xz"; 294 locale = "id"; 295 arch = "linux-x86_64"; 296 + sha256 = "1895d15967af87d4cc6ba89c26fa1f24c60db94e4e1df54ce27a647e76e0b7ed"; 297 } 298 { 299 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/is/firefox-136.0.3.tar.xz"; 300 locale = "is"; 301 arch = "linux-x86_64"; 302 + sha256 = "6d29360f83c09061ac8e3c4af50fab37a8b53ab9dff8394399f78cb72157e0f9"; 303 } 304 { 305 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/it/firefox-136.0.3.tar.xz"; 306 locale = "it"; 307 arch = "linux-x86_64"; 308 + sha256 = "8fd2d50299cffbae18d9adecd86566409c7db5f25e8f10342c478f34e0dbf668"; 309 } 310 { 311 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ja/firefox-136.0.3.tar.xz"; 312 locale = "ja"; 313 arch = "linux-x86_64"; 314 + sha256 = "09cd538cec0ee23748157a1ff4ec981770122d0826c76a7bf8bedc01683a440c"; 315 } 316 { 317 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ka/firefox-136.0.3.tar.xz"; 318 locale = "ka"; 319 arch = "linux-x86_64"; 320 + sha256 = "ce8ea13b06e5426aaded0663aaac7cbc8282959082f11288d5070d2a9bb53dce"; 321 } 322 { 323 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/kab/firefox-136.0.3.tar.xz"; 324 locale = "kab"; 325 arch = "linux-x86_64"; 326 + sha256 = "1b9a7e36a2bb09ba259e8f1cdfea5fceade93e6df9e2052806e9572d9161db68"; 327 } 328 { 329 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/kk/firefox-136.0.3.tar.xz"; 330 locale = "kk"; 331 arch = "linux-x86_64"; 332 + sha256 = "a17bfc553fb369307eb9bd5639fbcd1f146847de49bba102f3ef8e2f788c06c7"; 333 } 334 { 335 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/km/firefox-136.0.3.tar.xz"; 336 locale = "km"; 337 arch = "linux-x86_64"; 338 + sha256 = "5b43c678eaacd8907a7eadf87879e81d6a214c84ad8dbac2462683c937333486"; 339 } 340 { 341 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/kn/firefox-136.0.3.tar.xz"; 342 locale = "kn"; 343 arch = "linux-x86_64"; 344 + sha256 = "afb1084227e27abfad39f1bcbb012d1dd969c233ca8bedf7ba656233288d3a0a"; 345 } 346 { 347 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ko/firefox-136.0.3.tar.xz"; 348 locale = "ko"; 349 arch = "linux-x86_64"; 350 + sha256 = "14ea0cbe658f7cee47b5848575d23f262e7e0442e035aa9bf231ae14246cca5c"; 351 } 352 { 353 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/lij/firefox-136.0.3.tar.xz"; 354 locale = "lij"; 355 arch = "linux-x86_64"; 356 + sha256 = "def086353f68d3076d4404e922d13879aa6bab637eb438daf32f92481baeffe0"; 357 } 358 { 359 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/lt/firefox-136.0.3.tar.xz"; 360 locale = "lt"; 361 arch = "linux-x86_64"; 362 + sha256 = "ce4ff6f23e90427a3954cd24b260030830d0670eab01e3cee36508433df91296"; 363 } 364 { 365 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/lv/firefox-136.0.3.tar.xz"; 366 locale = "lv"; 367 arch = "linux-x86_64"; 368 + sha256 = "94a00831adaef3eee6c406402b18500da046766503c6976b90d07f17b6b00d68"; 369 } 370 { 371 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/mk/firefox-136.0.3.tar.xz"; 372 locale = "mk"; 373 arch = "linux-x86_64"; 374 + sha256 = "82648c82664c9d07b03e8dc55c7637ffb256915b1705e78c70e521cf557f479c"; 375 } 376 { 377 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/mr/firefox-136.0.3.tar.xz"; 378 locale = "mr"; 379 arch = "linux-x86_64"; 380 + sha256 = "3a1c852f213c247f2cd972c4443ee2e81b66803afb7bf060804854dda599f099"; 381 } 382 { 383 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ms/firefox-136.0.3.tar.xz"; 384 locale = "ms"; 385 arch = "linux-x86_64"; 386 + sha256 = "3b692fbbb6a2c177c84d635b3a1fcada583e91d704b00edb92dee6551d73ce92"; 387 } 388 { 389 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/my/firefox-136.0.3.tar.xz"; 390 locale = "my"; 391 arch = "linux-x86_64"; 392 + sha256 = "5de82bf0da644ca5b29a7bfd291cc89e3fb167c622105007a582cadd44c3c995"; 393 } 394 { 395 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/nb-NO/firefox-136.0.3.tar.xz"; 396 locale = "nb-NO"; 397 arch = "linux-x86_64"; 398 + sha256 = "2108e14ad5e6d4f5229e437be37a1e8393995d532393c99e8d9d1a22a5d975f4"; 399 } 400 { 401 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ne-NP/firefox-136.0.3.tar.xz"; 402 locale = "ne-NP"; 403 arch = "linux-x86_64"; 404 + sha256 = "0b4fd5a2b64f515c9362a547f04845a1c1d6792e59951bacbd786633267c301b"; 405 } 406 { 407 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/nl/firefox-136.0.3.tar.xz"; 408 locale = "nl"; 409 arch = "linux-x86_64"; 410 + sha256 = "450629c61b3e3f6ca03ef375d32c091a3c7f0c9de0bfebc0406d744f46d83712"; 411 } 412 { 413 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/nn-NO/firefox-136.0.3.tar.xz"; 414 locale = "nn-NO"; 415 arch = "linux-x86_64"; 416 + sha256 = "21aeab8b97ae9de6cc1bc41b76902b18bfb98115f01531301ad1e703ba584bc9"; 417 } 418 { 419 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/oc/firefox-136.0.3.tar.xz"; 420 locale = "oc"; 421 arch = "linux-x86_64"; 422 + sha256 = "4d0ec60d0e7bb8a9d5724850e03b653cf7f9333889ba347087ad0b3a935321cf"; 423 } 424 { 425 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/pa-IN/firefox-136.0.3.tar.xz"; 426 locale = "pa-IN"; 427 arch = "linux-x86_64"; 428 + sha256 = "67637c2e4c86d27f67bcd45a864da72006a345e868f9c8e3904d7e05b4ea07d6"; 429 } 430 { 431 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/pl/firefox-136.0.3.tar.xz"; 432 locale = "pl"; 433 arch = "linux-x86_64"; 434 + sha256 = "62206160fee97271a466b75d472164794a737be87344ae5fe48837fcafef59b3"; 435 } 436 { 437 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/pt-BR/firefox-136.0.3.tar.xz"; 438 locale = "pt-BR"; 439 arch = "linux-x86_64"; 440 + sha256 = "92ab7ee77fa84c117e851808d4cfbe665463d764b2cc1e449f706f398610da6e"; 441 } 442 { 443 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/pt-PT/firefox-136.0.3.tar.xz"; 444 locale = "pt-PT"; 445 arch = "linux-x86_64"; 446 + sha256 = "c4232e7da7efcb83604803ea1a502c8835465e2767eb572dd8d29f70dc91b2bb"; 447 } 448 { 449 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/rm/firefox-136.0.3.tar.xz"; 450 locale = "rm"; 451 arch = "linux-x86_64"; 452 + sha256 = "5da1317df4f0038d08c006000a49bd6d4d97da091b109a3d77e028a4704fe915"; 453 } 454 { 455 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ro/firefox-136.0.3.tar.xz"; 456 locale = "ro"; 457 arch = "linux-x86_64"; 458 + sha256 = "05aa1441ceda8e815c5adb291e42cbde7e6f821012344ba4db1520e45d3a4bfb"; 459 } 460 { 461 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ru/firefox-136.0.3.tar.xz"; 462 locale = "ru"; 463 arch = "linux-x86_64"; 464 + sha256 = "d3c7c56eb810881c6b24f6ea061d540010646c0cbb53e71ebb05e709bd3247eb"; 465 } 466 { 467 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/sat/firefox-136.0.3.tar.xz"; 468 locale = "sat"; 469 arch = "linux-x86_64"; 470 + sha256 = "ef74cf1d8a638737ad5355eaa2ffbb37411270365c87a2cbed0da06e272679e3"; 471 } 472 { 473 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/sc/firefox-136.0.3.tar.xz"; 474 locale = "sc"; 475 arch = "linux-x86_64"; 476 + sha256 = "dab6832dbbec1ab0812e52c54d2792a6c6768ec5b9ebe56c445c7160cc1d46be"; 477 } 478 { 479 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/sco/firefox-136.0.3.tar.xz"; 480 locale = "sco"; 481 arch = "linux-x86_64"; 482 + sha256 = "670205f38ca1fe59892d7a51f2b6411ac3e24173752b62be5fb306b08120895e"; 483 } 484 { 485 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/si/firefox-136.0.3.tar.xz"; 486 locale = "si"; 487 arch = "linux-x86_64"; 488 + sha256 = "83c44610a856a0739cafc3bdf6e90309a47d2c75864df7fae6f74de140c26612"; 489 } 490 { 491 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/sk/firefox-136.0.3.tar.xz"; 492 locale = "sk"; 493 arch = "linux-x86_64"; 494 + sha256 = "a6cdc39229b0ba6287e8701ebe038b6690ef2cdee4e7919d4198f1f50037d2e6"; 495 } 496 { 497 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/skr/firefox-136.0.3.tar.xz"; 498 locale = "skr"; 499 arch = "linux-x86_64"; 500 + sha256 = "24e879ae5c2938d436974eed1eff83f6efde9352e37555bedd922461522da74c"; 501 } 502 { 503 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/sl/firefox-136.0.3.tar.xz"; 504 locale = "sl"; 505 arch = "linux-x86_64"; 506 + sha256 = "80a61e562d9d4d8fbdacc0d34e5550dc89e637548bec06bd53cba521e70ae643"; 507 } 508 { 509 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/son/firefox-136.0.3.tar.xz"; 510 locale = "son"; 511 arch = "linux-x86_64"; 512 + sha256 = "13cdee2e01c35702ac9a3688c37d41ffce3cd65dd05a6833d924f0c4fdb8bcbf"; 513 } 514 { 515 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/sq/firefox-136.0.3.tar.xz"; 516 locale = "sq"; 517 arch = "linux-x86_64"; 518 + sha256 = "2f560b5efd31ecd0858c746067f054075bccb94bfab5ec013e2bb803a99ea216"; 519 } 520 { 521 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/sr/firefox-136.0.3.tar.xz"; 522 locale = "sr"; 523 arch = "linux-x86_64"; 524 + sha256 = "935393e367fb413aba8eb4d8f0f7a55a67242884dbf908c7f375486d5e24842a"; 525 } 526 { 527 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/sv-SE/firefox-136.0.3.tar.xz"; 528 locale = "sv-SE"; 529 arch = "linux-x86_64"; 530 + sha256 = "b05fcca200d7174cbcd61a2d5e8806de9d443585e19457a298f38394e6d18fd4"; 531 } 532 { 533 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/szl/firefox-136.0.3.tar.xz"; 534 locale = "szl"; 535 arch = "linux-x86_64"; 536 + sha256 = "522223a6ba871bb59bcd2e4a16ac65ca33a4d6d61ad0d3169c32cbfcbfd60580"; 537 } 538 { 539 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ta/firefox-136.0.3.tar.xz"; 540 locale = "ta"; 541 arch = "linux-x86_64"; 542 + sha256 = "6999b934670ab199c411fcf48e6ca0638b0c0e0f0b55ee5bf641580d5332b258"; 543 } 544 { 545 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/te/firefox-136.0.3.tar.xz"; 546 locale = "te"; 547 arch = "linux-x86_64"; 548 + sha256 = "a7eeecd49b958f7395721a16b93a8c4821f47ae11d1cc99a3a056c564e62520a"; 549 } 550 { 551 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/tg/firefox-136.0.3.tar.xz"; 552 locale = "tg"; 553 arch = "linux-x86_64"; 554 + sha256 = "5d8b0510c464aa19270b8f871e8ee172d4a9cf5d9eb47e78f82db6b74017c672"; 555 } 556 { 557 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/th/firefox-136.0.3.tar.xz"; 558 locale = "th"; 559 arch = "linux-x86_64"; 560 + sha256 = "66127b8403f7b03a98baad9b4806b3e008d6445b04545847d2b9d8d0fd57d2e9"; 561 } 562 { 563 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/tl/firefox-136.0.3.tar.xz"; 564 locale = "tl"; 565 arch = "linux-x86_64"; 566 + sha256 = "c70190151083513e81d99506797c039e8b811fdb7f8484433e8a5e71605b3a16"; 567 } 568 { 569 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/tr/firefox-136.0.3.tar.xz"; 570 locale = "tr"; 571 arch = "linux-x86_64"; 572 + sha256 = "b492111af41dbf2b3911c0c8601aff3b13954e0420b49b92c5fccc4ee73c30b6"; 573 } 574 { 575 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/trs/firefox-136.0.3.tar.xz"; 576 locale = "trs"; 577 arch = "linux-x86_64"; 578 + sha256 = "ce55ff5250033885ec575c15a0a97ea9b8b8c5e260b06f4af5402b8acc225e17"; 579 } 580 { 581 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/uk/firefox-136.0.3.tar.xz"; 582 locale = "uk"; 583 arch = "linux-x86_64"; 584 + sha256 = "8358b2a6037dd4ddd168a80f3afff8e91e09d3bac8d5530c9abc387c80d8e81c"; 585 } 586 { 587 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/ur/firefox-136.0.3.tar.xz"; 588 locale = "ur"; 589 arch = "linux-x86_64"; 590 + sha256 = "1a26b08ecab5712ed6aaad7f2cc0f09258651d647bdb8679a2221999f1bb7645"; 591 } 592 { 593 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/uz/firefox-136.0.3.tar.xz"; 594 locale = "uz"; 595 arch = "linux-x86_64"; 596 + sha256 = "e9ae0e31ca33ede776fad7fd879e72a9c5a8495182719c533d4d4a6844cd4a3b"; 597 } 598 { 599 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/vi/firefox-136.0.3.tar.xz"; 600 locale = "vi"; 601 arch = "linux-x86_64"; 602 + sha256 = "5674333d81308139e67e907654fac5b3f8ef5785a266c2736f332c03c1043f01"; 603 } 604 { 605 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/xh/firefox-136.0.3.tar.xz"; 606 locale = "xh"; 607 arch = "linux-x86_64"; 608 + sha256 = "d1c4b012b5ea585fb75cdc2cd14ef1f12669533ed43d366f97de9858345ea8a7"; 609 } 610 { 611 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/zh-CN/firefox-136.0.3.tar.xz"; 612 locale = "zh-CN"; 613 arch = "linux-x86_64"; 614 + sha256 = "a9427dd6b9c04dda4616c45374bdaa8cc73e0edd1deb5aeda7ec3ee7b8a2b357"; 615 } 616 { 617 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-x86_64/zh-TW/firefox-136.0.3.tar.xz"; 618 locale = "zh-TW"; 619 arch = "linux-x86_64"; 620 + sha256 = "bea88baf8daffc0c720c44d6f150682e8142b7f4ffe0cd5641e455702e685ceb"; 621 } 622 { 623 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ach/firefox-136.0.3.tar.xz"; 624 locale = "ach"; 625 arch = "linux-i686"; 626 + sha256 = "12c546498d2cf1473d5b4a75ef6e4abd8c001dc56fc9bada1578c5904df75f7b"; 627 } 628 { 629 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/af/firefox-136.0.3.tar.xz"; 630 locale = "af"; 631 arch = "linux-i686"; 632 + sha256 = "71976c1e6103d45e5abe68de310bc3f91b742f327fad45c051da3bdf17d1b6e0"; 633 } 634 { 635 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/an/firefox-136.0.3.tar.xz"; 636 locale = "an"; 637 arch = "linux-i686"; 638 + sha256 = "762e1edee7b46cec632d4628d58bfc2832ff9f38d262e0527143a5c7ac157662"; 639 } 640 { 641 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ar/firefox-136.0.3.tar.xz"; 642 locale = "ar"; 643 arch = "linux-i686"; 644 + sha256 = "13cc37a96ad0464fd6fc656892f596cd470d678b94870c5cff3bcf6211425523"; 645 } 646 { 647 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ast/firefox-136.0.3.tar.xz"; 648 locale = "ast"; 649 arch = "linux-i686"; 650 + sha256 = "e0d07d8fd7fa4002be8147e62342a38c0956e75dbed4eaf8553d988a587dbfdc"; 651 } 652 { 653 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/az/firefox-136.0.3.tar.xz"; 654 locale = "az"; 655 arch = "linux-i686"; 656 + sha256 = "da5ef313b3dc90da021c057f8c1501558ea7408b7d67c6dee94d96ad8c611cf9"; 657 } 658 { 659 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/be/firefox-136.0.3.tar.xz"; 660 locale = "be"; 661 arch = "linux-i686"; 662 + sha256 = "6ac176c8cda556851f5e0314a70340f55e7bbc40ffe526c062331b077404a15f"; 663 } 664 { 665 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/bg/firefox-136.0.3.tar.xz"; 666 locale = "bg"; 667 arch = "linux-i686"; 668 + sha256 = "60c1a7248aecaa22267154ceb07084a8bfa32112665fe44bbe8c3d22e8d81b3b"; 669 } 670 { 671 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/bn/firefox-136.0.3.tar.xz"; 672 locale = "bn"; 673 arch = "linux-i686"; 674 + sha256 = "a6f6e09bf570073bb580169722a6202a611c2799f9f3373ceedc654649b3057b"; 675 } 676 { 677 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/br/firefox-136.0.3.tar.xz"; 678 locale = "br"; 679 arch = "linux-i686"; 680 + sha256 = "14b6a596ef6cdf6e76c016cd02c2561057b0d3ff987c9b17c887147fcf01c96d"; 681 } 682 { 683 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/bs/firefox-136.0.3.tar.xz"; 684 locale = "bs"; 685 arch = "linux-i686"; 686 + sha256 = "561728042f0f590d048a23a4db3b8fcfe0737829ed3b1bf62b3ba9777eafb6ef"; 687 } 688 { 689 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ca-valencia/firefox-136.0.3.tar.xz"; 690 locale = "ca-valencia"; 691 arch = "linux-i686"; 692 + sha256 = "0b6bccf325643ca5c570ca0d98034b5335ae3fdb8a80446bcc6682175b744481"; 693 } 694 { 695 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ca/firefox-136.0.3.tar.xz"; 696 locale = "ca"; 697 arch = "linux-i686"; 698 + sha256 = "63266061361fd6094745bfc6e15914220a14da66a9d07b072ab2241df0ed20c0"; 699 } 700 { 701 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/cak/firefox-136.0.3.tar.xz"; 702 locale = "cak"; 703 arch = "linux-i686"; 704 + sha256 = "86f32016dc88545a9e8814f58ff20bddb7c976fc550ce683885e5c3663b7756f"; 705 } 706 { 707 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/cs/firefox-136.0.3.tar.xz"; 708 locale = "cs"; 709 arch = "linux-i686"; 710 + sha256 = "0bb32699f8221a46a2b54591315974e6f6566b43556aa65f2b867754a82ec106"; 711 } 712 { 713 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/cy/firefox-136.0.3.tar.xz"; 714 locale = "cy"; 715 arch = "linux-i686"; 716 + sha256 = "6f06770ac1a5bc603ef2228bb55139a7986cb88e012f068f72f339f553e46011"; 717 } 718 { 719 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/da/firefox-136.0.3.tar.xz"; 720 locale = "da"; 721 arch = "linux-i686"; 722 + sha256 = "15bf18408dbbff8682e1b52d416fd00468a1d236e8be9a9602896996834b8476"; 723 } 724 { 725 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/de/firefox-136.0.3.tar.xz"; 726 locale = "de"; 727 arch = "linux-i686"; 728 + sha256 = "18221d5f1f7e5dad1cd2f604799eff7c64360b535720000f14ea98131a6ee496"; 729 } 730 { 731 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/dsb/firefox-136.0.3.tar.xz"; 732 locale = "dsb"; 733 arch = "linux-i686"; 734 + sha256 = "7400d0f251f9f0c2bc2de32318f3a01b63c1dd729cc5988ded70629c7b8f3e3e"; 735 } 736 { 737 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/el/firefox-136.0.3.tar.xz"; 738 locale = "el"; 739 arch = "linux-i686"; 740 + sha256 = "b5126b0558b30a0f4bd6cc13b60f9de1415fd49045cf02fc487eb52b698a8a52"; 741 } 742 { 743 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/en-CA/firefox-136.0.3.tar.xz"; 744 locale = "en-CA"; 745 arch = "linux-i686"; 746 + sha256 = "a706914596c29520a24e9c0c65ee9e6fc87bf52f14f7c293e9d778c880c7ca76"; 747 } 748 { 749 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/en-GB/firefox-136.0.3.tar.xz"; 750 locale = "en-GB"; 751 arch = "linux-i686"; 752 + sha256 = "9653c8ea8b51b67e3b393857f6ce21d5ca62777502d5dd158b3a599cf1e69037"; 753 } 754 { 755 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/en-US/firefox-136.0.3.tar.xz"; 756 locale = "en-US"; 757 arch = "linux-i686"; 758 + sha256 = "368027c6890c918601a77dbc58e5bc8437862682b48f115a01e15a5e3fd067e4"; 759 } 760 { 761 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/eo/firefox-136.0.3.tar.xz"; 762 locale = "eo"; 763 arch = "linux-i686"; 764 + sha256 = "d52ad25d446da8b9d1f0b51d79df2497da8b0d77704e711c8c7f123f6bcbb922"; 765 } 766 { 767 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/es-AR/firefox-136.0.3.tar.xz"; 768 locale = "es-AR"; 769 arch = "linux-i686"; 770 + sha256 = "27bfd64a83fb52b56a1d3b2cab9334a7175434c881e4997b28498745fe2cd4a0"; 771 } 772 { 773 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/es-CL/firefox-136.0.3.tar.xz"; 774 locale = "es-CL"; 775 arch = "linux-i686"; 776 + sha256 = "925955bff8a8625b5e60ce651df8c0d10936f17cf7f7cee6f8f667ebdb8cb115"; 777 } 778 { 779 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/es-ES/firefox-136.0.3.tar.xz"; 780 locale = "es-ES"; 781 arch = "linux-i686"; 782 + sha256 = "5e40f94d6fbf03efa4be4d72a6452faa2af3e88a1cf23279e2b06448920ec57c"; 783 } 784 { 785 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/es-MX/firefox-136.0.3.tar.xz"; 786 locale = "es-MX"; 787 arch = "linux-i686"; 788 + sha256 = "2f70133849f67d01d9b05602147ef840b6821e810f83e6fe534c3aa22b78679f"; 789 } 790 { 791 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/et/firefox-136.0.3.tar.xz"; 792 locale = "et"; 793 arch = "linux-i686"; 794 + sha256 = "a2702e484f8f28db776dd8d73bdf0aa0ba48c74eab000307e5976216d04dfef9"; 795 } 796 { 797 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/eu/firefox-136.0.3.tar.xz"; 798 locale = "eu"; 799 arch = "linux-i686"; 800 + sha256 = "3446d61de28ce2db378d3e1f8fc740e4bdef7d05cb42492e1c2d3f91d1788aad"; 801 } 802 { 803 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/fa/firefox-136.0.3.tar.xz"; 804 locale = "fa"; 805 arch = "linux-i686"; 806 + sha256 = "5bc8545b23de6f003ee38de9648f1a810c4e6ce39a02691804aba149ccdd8b0d"; 807 } 808 { 809 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ff/firefox-136.0.3.tar.xz"; 810 locale = "ff"; 811 arch = "linux-i686"; 812 + sha256 = "c4713e6bb3812c76a5e0457c95d8a0e7e3dfc4c94ac8e36c4bb1d3b2eef3fd3b"; 813 } 814 { 815 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/fi/firefox-136.0.3.tar.xz"; 816 locale = "fi"; 817 arch = "linux-i686"; 818 + sha256 = "44dc8aa122ddd25721e5a04bd3c234b8ac8aaaeb774cea820b862724e13b01a9"; 819 } 820 { 821 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/fr/firefox-136.0.3.tar.xz"; 822 locale = "fr"; 823 arch = "linux-i686"; 824 + sha256 = "ce127933bce02df04f0af2b7724f648e07a2d7f0f91453e04ad0ff42811e1f4d"; 825 } 826 { 827 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/fur/firefox-136.0.3.tar.xz"; 828 locale = "fur"; 829 arch = "linux-i686"; 830 + sha256 = "79271d2c692e2213205412c390a6eec638f29787b6b8c169a7ec6acc64940305"; 831 } 832 { 833 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/fy-NL/firefox-136.0.3.tar.xz"; 834 locale = "fy-NL"; 835 arch = "linux-i686"; 836 + sha256 = "6c01c1243f1d4265245954e89a1e57227b13257caeff087fd861a4bb54562fec"; 837 } 838 { 839 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ga-IE/firefox-136.0.3.tar.xz"; 840 locale = "ga-IE"; 841 arch = "linux-i686"; 842 + sha256 = "086326cf71896b0e76b6bf74246229703af3498c1cf7b94e5623e6137312d3e7"; 843 } 844 { 845 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/gd/firefox-136.0.3.tar.xz"; 846 locale = "gd"; 847 arch = "linux-i686"; 848 + sha256 = "1e186726be337cfaead8d68dfd4d1fbca720e344168dc4a0d0439cf8e6b209ee"; 849 } 850 { 851 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/gl/firefox-136.0.3.tar.xz"; 852 locale = "gl"; 853 arch = "linux-i686"; 854 + sha256 = "e4cc933ed419ba5b5edd0e5af994f3daedf314a69d7e5908e63d3e638f9ce858"; 855 } 856 { 857 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/gn/firefox-136.0.3.tar.xz"; 858 locale = "gn"; 859 arch = "linux-i686"; 860 + sha256 = "40f22964214386830bdc9cd48aaf58b8ae5fafa215ed6c4de931830c9c4ca13f"; 861 } 862 { 863 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/gu-IN/firefox-136.0.3.tar.xz"; 864 locale = "gu-IN"; 865 arch = "linux-i686"; 866 + sha256 = "3f0d78b86c9cc7454b662c2afbbd5cd2f21e320882605f01c901407ca4f31682"; 867 } 868 { 869 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/he/firefox-136.0.3.tar.xz"; 870 locale = "he"; 871 arch = "linux-i686"; 872 + sha256 = "a47a0a49ab998b976c4f1dd0e9e63bb1f5e4f981f90aa6cf4e381c58e19fb02c"; 873 } 874 { 875 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/hi-IN/firefox-136.0.3.tar.xz"; 876 locale = "hi-IN"; 877 arch = "linux-i686"; 878 + sha256 = "6622168fa83cb3c9182c86d9264331988a5cd856a67bfd073e4af46fbcc8d01c"; 879 } 880 { 881 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/hr/firefox-136.0.3.tar.xz"; 882 locale = "hr"; 883 arch = "linux-i686"; 884 + sha256 = "cb3c3e89b400a337a1c37ae1ff2170440e1ec29ca4567196e362e574f69aaa1d"; 885 } 886 { 887 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/hsb/firefox-136.0.3.tar.xz"; 888 locale = "hsb"; 889 arch = "linux-i686"; 890 + sha256 = "cbf8bde578179d7378cd3d660cbef1fcb4e9674afdff5c239db98e3c7db31953"; 891 } 892 { 893 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/hu/firefox-136.0.3.tar.xz"; 894 locale = "hu"; 895 arch = "linux-i686"; 896 + sha256 = "c46c980107cd28101e9d810648dc40daa34166503ce5a46bf8800ed9c9465893"; 897 } 898 { 899 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/hy-AM/firefox-136.0.3.tar.xz"; 900 locale = "hy-AM"; 901 arch = "linux-i686"; 902 + sha256 = "bce41d9c64240833dc845789d9cd6c52ed9aa4d34aad46237094bc161c7db4d8"; 903 } 904 { 905 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ia/firefox-136.0.3.tar.xz"; 906 locale = "ia"; 907 arch = "linux-i686"; 908 + sha256 = "4893830c01dd56120cc392902c697efaab155207640c165e49cdf8054424c76e"; 909 } 910 { 911 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/id/firefox-136.0.3.tar.xz"; 912 locale = "id"; 913 arch = "linux-i686"; 914 + sha256 = "91c6a84d5b3af4a30a78e45f15870e79ec3352b4cd1cd3f0955ccdeb7fa3805b"; 915 } 916 { 917 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/is/firefox-136.0.3.tar.xz"; 918 locale = "is"; 919 arch = "linux-i686"; 920 + sha256 = "14f23d3ce52da9ca91085c4ff7036ca1580000611917ee5f3d4dfc5312e18175"; 921 } 922 { 923 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/it/firefox-136.0.3.tar.xz"; 924 locale = "it"; 925 arch = "linux-i686"; 926 + sha256 = "3083f9e22697d4cfc6b286d39ec05ec1a5bbc76475463f73c214ee84df2a8736"; 927 } 928 { 929 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ja/firefox-136.0.3.tar.xz"; 930 locale = "ja"; 931 arch = "linux-i686"; 932 + sha256 = "50eecbfac77fff3f8666210830f1d7ba4d0cb8b85240de4ea51d88c021991068"; 933 } 934 { 935 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ka/firefox-136.0.3.tar.xz"; 936 locale = "ka"; 937 arch = "linux-i686"; 938 + sha256 = "f3cf8f9f1632f8fd721e1614e5d83b53a6a2361236330c6eb653cdc2c079d23e"; 939 } 940 { 941 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/kab/firefox-136.0.3.tar.xz"; 942 locale = "kab"; 943 arch = "linux-i686"; 944 + sha256 = "9fc1db52bcdbeb8cdfaa8bf1c1b141202edd8461640aebbd5a98d9c99010e942"; 945 } 946 { 947 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/kk/firefox-136.0.3.tar.xz"; 948 locale = "kk"; 949 arch = "linux-i686"; 950 + sha256 = "bdde41c23c40038ffbaa08879628f186c88777769d6d259d2f770f9b2ef46727"; 951 } 952 { 953 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/km/firefox-136.0.3.tar.xz"; 954 locale = "km"; 955 arch = "linux-i686"; 956 + sha256 = "3e7221f74e9ccf4ed2899f2add72567f91a3a185a1836d4a4cbad954d86dade6"; 957 } 958 { 959 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/kn/firefox-136.0.3.tar.xz"; 960 locale = "kn"; 961 arch = "linux-i686"; 962 + sha256 = "1e7e67a46e2794ba941adf9a7e4c40bdc07138d1a3c2a64c33aad6d313b2ef33"; 963 } 964 { 965 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ko/firefox-136.0.3.tar.xz"; 966 locale = "ko"; 967 arch = "linux-i686"; 968 + sha256 = "a45d00e0f21c14597d9967673ad455886bc20232dab50b1e7988f7f9e2fbc0d4"; 969 } 970 { 971 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/lij/firefox-136.0.3.tar.xz"; 972 locale = "lij"; 973 arch = "linux-i686"; 974 + sha256 = "176d832b47b6af6700bb71512944af99d6f65c131f2cb4c853d2707c36b7f429"; 975 } 976 { 977 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/lt/firefox-136.0.3.tar.xz"; 978 locale = "lt"; 979 arch = "linux-i686"; 980 + sha256 = "43972a8505a2cdff5d7dd74e9a67bf39a09b3bb9d97ba6366f61d8484e33e797"; 981 } 982 { 983 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/lv/firefox-136.0.3.tar.xz"; 984 locale = "lv"; 985 arch = "linux-i686"; 986 + sha256 = "f0472127a865dc9c32589a43a3a2978304e686de6595a1099b05be869a5ddded"; 987 } 988 { 989 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/mk/firefox-136.0.3.tar.xz"; 990 locale = "mk"; 991 arch = "linux-i686"; 992 + sha256 = "bb33d1a925dab4da4cbe5ff5f1a97cec1eebe9a3ef19c8d78e74dabdbfad3ae3"; 993 } 994 { 995 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/mr/firefox-136.0.3.tar.xz"; 996 locale = "mr"; 997 arch = "linux-i686"; 998 + sha256 = "73519a962a99a2a66e67538833ff873b838f69580c1cf86c470d220bdc7a2a8f"; 999 } 1000 { 1001 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ms/firefox-136.0.3.tar.xz"; 1002 locale = "ms"; 1003 arch = "linux-i686"; 1004 + sha256 = "b9825812ab3ee8ce548b53e425fcfe7abe05fe87b3797bdaf819708ba5ad9293"; 1005 } 1006 { 1007 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/my/firefox-136.0.3.tar.xz"; 1008 locale = "my"; 1009 arch = "linux-i686"; 1010 + sha256 = "96fce2387a737c10dd4859f41cd8eb068b605009b7202603a5ca71d49bd2650c"; 1011 } 1012 { 1013 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/nb-NO/firefox-136.0.3.tar.xz"; 1014 locale = "nb-NO"; 1015 arch = "linux-i686"; 1016 + sha256 = "eb6d27870bc869b3c06bc1294756eecc9fe2c4e0e75e329d67827da8bcb895f6"; 1017 } 1018 { 1019 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ne-NP/firefox-136.0.3.tar.xz"; 1020 locale = "ne-NP"; 1021 arch = "linux-i686"; 1022 + sha256 = "f48fd76effecd998a51e59e5e8d89b868e8de1b90be63303757463dd75c55453"; 1023 } 1024 { 1025 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/nl/firefox-136.0.3.tar.xz"; 1026 locale = "nl"; 1027 arch = "linux-i686"; 1028 + sha256 = "6acdd0bd183ad62e43fb3d88fcf7deefb756dcf17f6ed2e33e13a7daddbe8206"; 1029 } 1030 { 1031 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/nn-NO/firefox-136.0.3.tar.xz"; 1032 locale = "nn-NO"; 1033 arch = "linux-i686"; 1034 + sha256 = "affd99b221aa15c1b0398a2d32869820c1cc86f23adc761812b5c601dc82c72d"; 1035 } 1036 { 1037 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/oc/firefox-136.0.3.tar.xz"; 1038 locale = "oc"; 1039 arch = "linux-i686"; 1040 + sha256 = "e5d8dec7232551c9b5c1da226887eca8b90804cee3333ac106690ac3ca374dd7"; 1041 } 1042 { 1043 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/pa-IN/firefox-136.0.3.tar.xz"; 1044 locale = "pa-IN"; 1045 arch = "linux-i686"; 1046 + sha256 = "3e83d158aad17897e512f58991efb4ea6d763918b60efa5ffd5867235beb1444"; 1047 } 1048 { 1049 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/pl/firefox-136.0.3.tar.xz"; 1050 locale = "pl"; 1051 arch = "linux-i686"; 1052 + sha256 = "a899b6280d540ef9b8f8c7f8ecf02b0218ef7e442d755bd1d9d73ebbc8592590"; 1053 } 1054 { 1055 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/pt-BR/firefox-136.0.3.tar.xz"; 1056 locale = "pt-BR"; 1057 arch = "linux-i686"; 1058 + sha256 = "9e9a06764d5e134d90b5866bbde4f03470a5b6b0e14c70371ab6ff388ef6431f"; 1059 } 1060 { 1061 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/pt-PT/firefox-136.0.3.tar.xz"; 1062 locale = "pt-PT"; 1063 arch = "linux-i686"; 1064 + sha256 = "e3e12d8bc46c1558a8c3840774b633d49821cfa7924021439602d716a883f4e6"; 1065 } 1066 { 1067 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/rm/firefox-136.0.3.tar.xz"; 1068 locale = "rm"; 1069 arch = "linux-i686"; 1070 + sha256 = "0db0304a878f341241f996129829e80ed943fd1c85767e45d6231ec04a8a7925"; 1071 } 1072 { 1073 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ro/firefox-136.0.3.tar.xz"; 1074 locale = "ro"; 1075 arch = "linux-i686"; 1076 + sha256 = "37cb42d7f138cd947b0c69b9f19bfceaeec380394b8e6d2a297c15fbd366f76c"; 1077 } 1078 { 1079 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ru/firefox-136.0.3.tar.xz"; 1080 locale = "ru"; 1081 arch = "linux-i686"; 1082 + sha256 = "09cd4c7ec6c63e5a842dc8964c41fc00ae9549a1b897006b98f444fdb857b7e6"; 1083 } 1084 { 1085 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/sat/firefox-136.0.3.tar.xz"; 1086 locale = "sat"; 1087 arch = "linux-i686"; 1088 + sha256 = "3cdf7cc371dac39117c7d5fdb77cc8dccceba715057557295c336cfec869664a"; 1089 } 1090 { 1091 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/sc/firefox-136.0.3.tar.xz"; 1092 locale = "sc"; 1093 arch = "linux-i686"; 1094 + sha256 = "44074b1b1ea92bd70e53acb747227d45fa9834f59ee8cb9f46d1e7e9ece537b5"; 1095 } 1096 { 1097 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/sco/firefox-136.0.3.tar.xz"; 1098 locale = "sco"; 1099 arch = "linux-i686"; 1100 + sha256 = "984e96ff6fdff0c6ac2661fad2668c15584865cd2f773d5f6f9af19a9070ac24"; 1101 } 1102 { 1103 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/si/firefox-136.0.3.tar.xz"; 1104 locale = "si"; 1105 arch = "linux-i686"; 1106 + sha256 = "bf4128cb09e9c779415341b60bbb4253ce0a5b0f889f82b83295ffe3d9c5d935"; 1107 } 1108 { 1109 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/sk/firefox-136.0.3.tar.xz"; 1110 locale = "sk"; 1111 arch = "linux-i686"; 1112 + sha256 = "0af8121a2dbbc957058a6b4e3e47052eabf87389bf5022a5a886578facf1fb11"; 1113 } 1114 { 1115 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/skr/firefox-136.0.3.tar.xz"; 1116 locale = "skr"; 1117 arch = "linux-i686"; 1118 + sha256 = "31a2a8a9e24a1f686616219b0ade58cc5b4222c57f523facd32364f93cdd5e37"; 1119 } 1120 { 1121 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/sl/firefox-136.0.3.tar.xz"; 1122 locale = "sl"; 1123 arch = "linux-i686"; 1124 + sha256 = "4f099da920179ce9b417c5b4f6c8fea99b8e0a37f09df297d2004abf88b4db9f"; 1125 } 1126 { 1127 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/son/firefox-136.0.3.tar.xz"; 1128 locale = "son"; 1129 arch = "linux-i686"; 1130 + sha256 = "b2deb9ce6ed22c0ed9f0cb46684c34ba03b6a98d0048d2963a8477f50097ae27"; 1131 } 1132 { 1133 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/sq/firefox-136.0.3.tar.xz"; 1134 locale = "sq"; 1135 arch = "linux-i686"; 1136 + sha256 = "cec2674c1d55e4fbd8d0dd99d8862f6be7a8164880ae5454f913fa122d08814b"; 1137 } 1138 { 1139 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/sr/firefox-136.0.3.tar.xz"; 1140 locale = "sr"; 1141 arch = "linux-i686"; 1142 + sha256 = "0bc61b079e3b49f244251631815a0b136b4ce24dcdba80b1867256e4de402263"; 1143 } 1144 { 1145 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/sv-SE/firefox-136.0.3.tar.xz"; 1146 locale = "sv-SE"; 1147 arch = "linux-i686"; 1148 + sha256 = "9a7186bf9892e01a9627aca06c4cb5015b63f73e7bbe5e4680cc52881a22f245"; 1149 } 1150 { 1151 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/szl/firefox-136.0.3.tar.xz"; 1152 locale = "szl"; 1153 arch = "linux-i686"; 1154 + sha256 = "4c7c598cf1c134608528ccdbf4f8550c5c208db5c790c201e0f6c17f13012e03"; 1155 } 1156 { 1157 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ta/firefox-136.0.3.tar.xz"; 1158 locale = "ta"; 1159 arch = "linux-i686"; 1160 + sha256 = "56816ba61345e77ab0fb2af7eef78de8f7774eacc4e2325578db082aa81d32e3"; 1161 } 1162 { 1163 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/te/firefox-136.0.3.tar.xz"; 1164 locale = "te"; 1165 arch = "linux-i686"; 1166 + sha256 = "7edb745dbec10d76653997676f94e68df9a9ab0a62bb690c46a406caaadb6a84"; 1167 } 1168 { 1169 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/tg/firefox-136.0.3.tar.xz"; 1170 locale = "tg"; 1171 arch = "linux-i686"; 1172 + sha256 = "cc87f5a212553fd54c19a6640fba03cb884cfe939bc8f00c50a6e87838a38e00"; 1173 } 1174 { 1175 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/th/firefox-136.0.3.tar.xz"; 1176 locale = "th"; 1177 arch = "linux-i686"; 1178 + sha256 = "424c3d9600f536fd7f1084f10d21f73e09e1d59392349d95c1420fa27b10216b"; 1179 } 1180 { 1181 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/tl/firefox-136.0.3.tar.xz"; 1182 locale = "tl"; 1183 arch = "linux-i686"; 1184 + sha256 = "2fc2a90b3c50356264b6a53e53fcba87b065489f10af3895895be7240caf8e29"; 1185 } 1186 { 1187 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/tr/firefox-136.0.3.tar.xz"; 1188 locale = "tr"; 1189 arch = "linux-i686"; 1190 + sha256 = "696cfca42c669f52b675664e8778ddf0e135db4c149ad4911eceec01c42f90fc"; 1191 } 1192 { 1193 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/trs/firefox-136.0.3.tar.xz"; 1194 locale = "trs"; 1195 arch = "linux-i686"; 1196 + sha256 = "8822fcacab6f146c0cd08a03ac133dda5cc09219ae80debe0195c05b2db835f7"; 1197 } 1198 { 1199 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/uk/firefox-136.0.3.tar.xz"; 1200 locale = "uk"; 1201 arch = "linux-i686"; 1202 + sha256 = "d19bf2c3e3e526082fdde979df5020d17919d68b11658b21b09320388a547eb2"; 1203 } 1204 { 1205 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/ur/firefox-136.0.3.tar.xz"; 1206 locale = "ur"; 1207 arch = "linux-i686"; 1208 + sha256 = "3ec9ac666badd00a78ae2f935f43fe9c7ee101faf62eb38cd023c086d01ffbb0"; 1209 } 1210 { 1211 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/uz/firefox-136.0.3.tar.xz"; 1212 locale = "uz"; 1213 arch = "linux-i686"; 1214 + sha256 = "470a11ccd4f511f58f2e7847f16198da4f4bf1da738a9f16bfa02a5ac1941871"; 1215 } 1216 { 1217 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/vi/firefox-136.0.3.tar.xz"; 1218 locale = "vi"; 1219 arch = "linux-i686"; 1220 + sha256 = "f11af15ad88f3f3b5b983a88222c8ee04be1a903e6546d08c38fce2f248afc62"; 1221 } 1222 { 1223 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/xh/firefox-136.0.3.tar.xz"; 1224 locale = "xh"; 1225 arch = "linux-i686"; 1226 + sha256 = "c6b2185e27c2ddc9d5216f64917eafa5600911356039f8b7a258a8a6d446f256"; 1227 } 1228 { 1229 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/zh-CN/firefox-136.0.3.tar.xz"; 1230 locale = "zh-CN"; 1231 arch = "linux-i686"; 1232 + sha256 = "f2594288867342f4d92e11f335c0f1a1bd4b969a3feac6b6980f8fd210206954"; 1233 } 1234 { 1235 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-i686/zh-TW/firefox-136.0.3.tar.xz"; 1236 locale = "zh-TW"; 1237 arch = "linux-i686"; 1238 + sha256 = "8ffa9034ab5723a830cc417a17310630508a90a00c609bc01890d33e11ef0b01"; 1239 } 1240 { 1241 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ach/firefox-136.0.3.tar.xz"; 1242 locale = "ach"; 1243 arch = "linux-aarch64"; 1244 + sha256 = "4906268035a2051e50dc30b958a3d406f541cc2c4f4ec9098c8d9caaa930ceb5"; 1245 } 1246 { 1247 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/af/firefox-136.0.3.tar.xz"; 1248 locale = "af"; 1249 arch = "linux-aarch64"; 1250 + sha256 = "31a892b586363972fa739e0cff8dc67a92a80304335778a2ee58eff6b166b657"; 1251 } 1252 { 1253 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/an/firefox-136.0.3.tar.xz"; 1254 locale = "an"; 1255 arch = "linux-aarch64"; 1256 + sha256 = "5474ab24ff9651d22aa4b3e0cd1671714775077f758f27ff362f43ec6100466f"; 1257 } 1258 { 1259 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ar/firefox-136.0.3.tar.xz"; 1260 locale = "ar"; 1261 arch = "linux-aarch64"; 1262 + sha256 = "98c11bc3f4d87caf41dd49a5d3f6b6ed0ea911b74e8ef1573ff2dad0ad6a8f63"; 1263 } 1264 { 1265 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ast/firefox-136.0.3.tar.xz"; 1266 locale = "ast"; 1267 arch = "linux-aarch64"; 1268 + sha256 = "5b22ec81f24007aa6454fc647c11f4396342a2f515087eaddac7e2f5f91c0728"; 1269 } 1270 { 1271 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/az/firefox-136.0.3.tar.xz"; 1272 locale = "az"; 1273 arch = "linux-aarch64"; 1274 + sha256 = "deecfbca252d8cadcb78f05f50d431688af0aaf9a067ad31a6ffe3d3469b2962"; 1275 } 1276 { 1277 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/be/firefox-136.0.3.tar.xz"; 1278 locale = "be"; 1279 arch = "linux-aarch64"; 1280 + sha256 = "26930cb14c2ca998b83353b36e6f8f99ca48f8cb3dca465012edbcf9ba2e7b50"; 1281 } 1282 { 1283 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/bg/firefox-136.0.3.tar.xz"; 1284 locale = "bg"; 1285 arch = "linux-aarch64"; 1286 + sha256 = "5913e6bb944fd8fc68345e4ecffc0988a19fd9b37f6006a0f5664fe3661c82f6"; 1287 } 1288 { 1289 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/bn/firefox-136.0.3.tar.xz"; 1290 locale = "bn"; 1291 arch = "linux-aarch64"; 1292 + sha256 = "edb4f508d773148161b6b57711eff907978e5ef9f330a916d6b836abd4dcc5e6"; 1293 } 1294 { 1295 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/br/firefox-136.0.3.tar.xz"; 1296 locale = "br"; 1297 arch = "linux-aarch64"; 1298 + sha256 = "ae087b4fff4697eb71e87c72f55b49a7922fe1f13d05f944f87ac81c51570ec8"; 1299 } 1300 { 1301 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/bs/firefox-136.0.3.tar.xz"; 1302 locale = "bs"; 1303 arch = "linux-aarch64"; 1304 + sha256 = "390aa5818c17a9351ff081f2532f2c864faef49828006f905977b9782aa8d02c"; 1305 } 1306 { 1307 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ca-valencia/firefox-136.0.3.tar.xz"; 1308 locale = "ca-valencia"; 1309 arch = "linux-aarch64"; 1310 + sha256 = "52566d90c08ee039bf0a96e656c319a15d1866c5a7074de22cdfc3c5d727858f"; 1311 } 1312 { 1313 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ca/firefox-136.0.3.tar.xz"; 1314 locale = "ca"; 1315 arch = "linux-aarch64"; 1316 + sha256 = "e650a288aab3a91cb3cbe3ac6847d5ae39bf90d7d8909b0d3cedda497f9918ef"; 1317 } 1318 { 1319 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/cak/firefox-136.0.3.tar.xz"; 1320 locale = "cak"; 1321 arch = "linux-aarch64"; 1322 + sha256 = "13abf39eabde9e492478d3e82a089ae165023edda1a0514f48332eb7e30f1565"; 1323 } 1324 { 1325 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/cs/firefox-136.0.3.tar.xz"; 1326 locale = "cs"; 1327 arch = "linux-aarch64"; 1328 + sha256 = "0e36309a46ac1c5040aa437c71644c06ffe46c6286465e22da9b0590f5551e0b"; 1329 } 1330 { 1331 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/cy/firefox-136.0.3.tar.xz"; 1332 locale = "cy"; 1333 arch = "linux-aarch64"; 1334 + sha256 = "7328b0d7d8c017b63bff2ec385f910ccb8979d8c29c4dca8eafefb064fb7d7ec"; 1335 } 1336 { 1337 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/da/firefox-136.0.3.tar.xz"; 1338 locale = "da"; 1339 arch = "linux-aarch64"; 1340 + sha256 = "f3212e68b3006c12bed1db47af98962ea69926bddbf6ae291212b33964df1de0"; 1341 } 1342 { 1343 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/de/firefox-136.0.3.tar.xz"; 1344 locale = "de"; 1345 arch = "linux-aarch64"; 1346 + sha256 = "d1ce49a12a37a33c9e87545bc102d9cf10f643ccb18aafeb3223469087c43165"; 1347 } 1348 { 1349 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/dsb/firefox-136.0.3.tar.xz"; 1350 locale = "dsb"; 1351 arch = "linux-aarch64"; 1352 + sha256 = "c5596df2d719e45392eac8534b0bc338f9fda7d9cd9d405fec9b3075c9011f91"; 1353 } 1354 { 1355 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/el/firefox-136.0.3.tar.xz"; 1356 locale = "el"; 1357 arch = "linux-aarch64"; 1358 + sha256 = "8cb1aa8635d22bee9314944d0b258008345e1bc41635b937fdaf35988ef2c562"; 1359 } 1360 { 1361 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/en-CA/firefox-136.0.3.tar.xz"; 1362 locale = "en-CA"; 1363 arch = "linux-aarch64"; 1364 + sha256 = "9703c186c933411c4bcdcc598e98a8b0b2e490c16857384781db9591cfec344c"; 1365 } 1366 { 1367 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/en-GB/firefox-136.0.3.tar.xz"; 1368 locale = "en-GB"; 1369 arch = "linux-aarch64"; 1370 + sha256 = "603361ccda4bd540b6d29da80b944054128c178b5ec6b402e2e6d1d5962f7a4e"; 1371 } 1372 { 1373 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/en-US/firefox-136.0.3.tar.xz"; 1374 locale = "en-US"; 1375 arch = "linux-aarch64"; 1376 + sha256 = "aba32d2d60c5dd6f995af34fe68eb98355ac325686910f7c78c01959721f8bdb"; 1377 } 1378 { 1379 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/eo/firefox-136.0.3.tar.xz"; 1380 locale = "eo"; 1381 arch = "linux-aarch64"; 1382 + sha256 = "e0da8cff851638aedcf1bef76d9be0d1841b49f7d6b5852bcd376cb6241a6c47"; 1383 } 1384 { 1385 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/es-AR/firefox-136.0.3.tar.xz"; 1386 locale = "es-AR"; 1387 arch = "linux-aarch64"; 1388 + sha256 = "728757a6fafb49110d79950f0ebbb81c2d7a482a26eae24f3c1bcf2e589f618c"; 1389 } 1390 { 1391 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/es-CL/firefox-136.0.3.tar.xz"; 1392 locale = "es-CL"; 1393 arch = "linux-aarch64"; 1394 + sha256 = "d82c4af1d8e15a9c3db9250c3bf8196ca9471c16a50f11347ef2af39bd581113"; 1395 } 1396 { 1397 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/es-ES/firefox-136.0.3.tar.xz"; 1398 locale = "es-ES"; 1399 arch = "linux-aarch64"; 1400 + sha256 = "eb3b5bdbaaac30211b56392bb8c27ce3e5559ef3810109e11fa7a6748060675b"; 1401 } 1402 { 1403 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/es-MX/firefox-136.0.3.tar.xz"; 1404 locale = "es-MX"; 1405 arch = "linux-aarch64"; 1406 + sha256 = "26bbb48d8d907d23c3f62145eb9ec11e95a23ec080126e703d49ce2937830803"; 1407 } 1408 { 1409 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/et/firefox-136.0.3.tar.xz"; 1410 locale = "et"; 1411 arch = "linux-aarch64"; 1412 + sha256 = "bc557dc27812840815e8f81b73995cc605e7121a1bbcbb78bbc3e54520150bb9"; 1413 } 1414 { 1415 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/eu/firefox-136.0.3.tar.xz"; 1416 locale = "eu"; 1417 arch = "linux-aarch64"; 1418 + sha256 = "95ffbee85d4d5ed62819832c1f73cf511077796592405402d4541a67e8c05230"; 1419 } 1420 { 1421 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/fa/firefox-136.0.3.tar.xz"; 1422 locale = "fa"; 1423 arch = "linux-aarch64"; 1424 + sha256 = "1e36bd897159ef3ff4c5bd43f0a77581b512d145d6e850f72f8b90f86c9e517e"; 1425 } 1426 { 1427 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ff/firefox-136.0.3.tar.xz"; 1428 locale = "ff"; 1429 arch = "linux-aarch64"; 1430 + sha256 = "6d3e399b34d52bf8e77250ef7aed0fbbd642f89bbb4e9d3c4d80ff2ac1ca2f8e"; 1431 } 1432 { 1433 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/fi/firefox-136.0.3.tar.xz"; 1434 locale = "fi"; 1435 arch = "linux-aarch64"; 1436 + sha256 = "35e0a491ea82b7a8f3ea64774ec260c7c4419904d35b6db4ae0ee3f3c9b8a392"; 1437 } 1438 { 1439 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/fr/firefox-136.0.3.tar.xz"; 1440 locale = "fr"; 1441 arch = "linux-aarch64"; 1442 + sha256 = "a9011d16c7eed4bd58ff9ac392807df7dde766910d6fad94678d2f8d3c07ef20"; 1443 } 1444 { 1445 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/fur/firefox-136.0.3.tar.xz"; 1446 locale = "fur"; 1447 arch = "linux-aarch64"; 1448 + sha256 = "a5bc4448208534eba2a734e25dee82a79b24e55618fb14af7b6eeaf36c11c6da"; 1449 } 1450 { 1451 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/fy-NL/firefox-136.0.3.tar.xz"; 1452 locale = "fy-NL"; 1453 arch = "linux-aarch64"; 1454 + sha256 = "e658e0454f6644066271d1ad5cda3dd1455987b30d7dc1848b52f9f642b87f68"; 1455 } 1456 { 1457 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ga-IE/firefox-136.0.3.tar.xz"; 1458 locale = "ga-IE"; 1459 arch = "linux-aarch64"; 1460 + sha256 = "da81a4ae0d49e61f0b43d26266c0d5de78f1aac997763d95ffbb8c4b11461dc2"; 1461 } 1462 { 1463 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/gd/firefox-136.0.3.tar.xz"; 1464 locale = "gd"; 1465 arch = "linux-aarch64"; 1466 + sha256 = "acec0e6b7f24f71abbfe89313dc18dd5c52156079f4e757881518ab9953b4c81"; 1467 } 1468 { 1469 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/gl/firefox-136.0.3.tar.xz"; 1470 locale = "gl"; 1471 arch = "linux-aarch64"; 1472 + sha256 = "cd3cf9d42c0bb4eb59f50a49a380bb87d381103d3162a0e8533c9cd46ff93b71"; 1473 } 1474 { 1475 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/gn/firefox-136.0.3.tar.xz"; 1476 locale = "gn"; 1477 arch = "linux-aarch64"; 1478 + sha256 = "e2bffeb55cbdf392379d28be98fb862a3d72662ecadac0e6ad302fe10c6f63f5"; 1479 } 1480 { 1481 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/gu-IN/firefox-136.0.3.tar.xz"; 1482 locale = "gu-IN"; 1483 arch = "linux-aarch64"; 1484 + sha256 = "185f20cc46f16b0c2b57c6855756155d8ab8e6edbba9c0cdee84c91d2aed527d"; 1485 } 1486 { 1487 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/he/firefox-136.0.3.tar.xz"; 1488 locale = "he"; 1489 arch = "linux-aarch64"; 1490 + sha256 = "a5c22a2fc82edf6a8bdf8f2c40164d6ac3859a6803c49031b0a358c6e2725a8b"; 1491 } 1492 { 1493 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/hi-IN/firefox-136.0.3.tar.xz"; 1494 locale = "hi-IN"; 1495 arch = "linux-aarch64"; 1496 + sha256 = "8031af74ae7110f23756fe0cb024f4c99e6e9953aebca2a7de0cdb6ca0556074"; 1497 } 1498 { 1499 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/hr/firefox-136.0.3.tar.xz"; 1500 locale = "hr"; 1501 arch = "linux-aarch64"; 1502 + sha256 = "0f7415a9200b667e61f261a07df620120d24d0d52a58cae4c9634db2d99a5681"; 1503 } 1504 { 1505 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/hsb/firefox-136.0.3.tar.xz"; 1506 locale = "hsb"; 1507 arch = "linux-aarch64"; 1508 + sha256 = "0e4e60a3f7b65aef6f028415eb2a8532dbc2d96195fbf0530bfa1cc367ff9c33"; 1509 } 1510 { 1511 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/hu/firefox-136.0.3.tar.xz"; 1512 locale = "hu"; 1513 arch = "linux-aarch64"; 1514 + sha256 = "44d50bcbef5205e5ad79f11e278199d4ec44c8abb42c305ff3b3c3fb3d0cf591"; 1515 } 1516 { 1517 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/hy-AM/firefox-136.0.3.tar.xz"; 1518 locale = "hy-AM"; 1519 arch = "linux-aarch64"; 1520 + sha256 = "08e70f26a2bfe3d540e4a8f28b8604fc3b36012265c29b266c484c9e690c7c64"; 1521 } 1522 { 1523 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ia/firefox-136.0.3.tar.xz"; 1524 locale = "ia"; 1525 arch = "linux-aarch64"; 1526 + sha256 = "a9bafe7aad9f965f950f04ae5a4f8801163ca64aecc268d49238158baac39d1f"; 1527 } 1528 { 1529 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/id/firefox-136.0.3.tar.xz"; 1530 locale = "id"; 1531 arch = "linux-aarch64"; 1532 + sha256 = "55cbce65d5a9c652e8df9551cb10743f6008c43d0c420c27d92b5ad3a2766890"; 1533 } 1534 { 1535 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/is/firefox-136.0.3.tar.xz"; 1536 locale = "is"; 1537 arch = "linux-aarch64"; 1538 + sha256 = "0d7f9fafdde655bb029cb0ddd19bda87ba3693e2e5c9fe782b663910f9250620"; 1539 } 1540 { 1541 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/it/firefox-136.0.3.tar.xz"; 1542 locale = "it"; 1543 arch = "linux-aarch64"; 1544 + sha256 = "2e139e8f2a19612d042b012e9b301e18677720fe956df6d7e152ea477c85be2c"; 1545 } 1546 { 1547 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ja/firefox-136.0.3.tar.xz"; 1548 locale = "ja"; 1549 arch = "linux-aarch64"; 1550 + sha256 = "1734f5b61602669007f19dde8806bf6f33fecb5355ed593e07a52f8f79baea9d"; 1551 } 1552 { 1553 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ka/firefox-136.0.3.tar.xz"; 1554 locale = "ka"; 1555 arch = "linux-aarch64"; 1556 + sha256 = "ab8a2b5f90d4fffe0814da9fbe26feaead4f2ff247cd6119b283231f6d76479b"; 1557 } 1558 { 1559 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/kab/firefox-136.0.3.tar.xz"; 1560 locale = "kab"; 1561 arch = "linux-aarch64"; 1562 + sha256 = "a273acb81901c345434fcc8efff8f5a82450d6edc3c8b0f8ad2daf4a9bc6d7fd"; 1563 } 1564 { 1565 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/kk/firefox-136.0.3.tar.xz"; 1566 locale = "kk"; 1567 arch = "linux-aarch64"; 1568 + sha256 = "cc319a8072b55bcfd246b0763481ceb6690da00215a0e24d3a1290e787bcd546"; 1569 } 1570 { 1571 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/km/firefox-136.0.3.tar.xz"; 1572 locale = "km"; 1573 arch = "linux-aarch64"; 1574 + sha256 = "404004c73d0ed7f10f9e948583712dac5d663835f23e6d51bfa6042e9135f621"; 1575 } 1576 { 1577 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/kn/firefox-136.0.3.tar.xz"; 1578 locale = "kn"; 1579 arch = "linux-aarch64"; 1580 + sha256 = "da3792703c29e21511304e6161f2a290739305ba48dfe9546a35446260b39240"; 1581 } 1582 { 1583 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ko/firefox-136.0.3.tar.xz"; 1584 locale = "ko"; 1585 arch = "linux-aarch64"; 1586 + sha256 = "e826942e7f6c1de61ccbebccd2443cfce0a02896991540627012cb52cb230235"; 1587 } 1588 { 1589 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/lij/firefox-136.0.3.tar.xz"; 1590 locale = "lij"; 1591 arch = "linux-aarch64"; 1592 + sha256 = "db57264f414f14b6a77957e104cdc444c91c9e93b568d3aff8ec7f5d01668adc"; 1593 } 1594 { 1595 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/lt/firefox-136.0.3.tar.xz"; 1596 locale = "lt"; 1597 arch = "linux-aarch64"; 1598 + sha256 = "3e567effe78d2b6992b34b537b2c2c4beaec57dfdb7a7abd84a91234d8b48e6a"; 1599 } 1600 { 1601 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/lv/firefox-136.0.3.tar.xz"; 1602 locale = "lv"; 1603 arch = "linux-aarch64"; 1604 + sha256 = "90c67abaa4aeaac5c3740406270f992032aaf3acb511634f815f573e8130d84c"; 1605 } 1606 { 1607 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/mk/firefox-136.0.3.tar.xz"; 1608 locale = "mk"; 1609 arch = "linux-aarch64"; 1610 + sha256 = "f1fe8216a1e89b42f9f164e17729bfd632263e7cafb272feab435ad898473f82"; 1611 } 1612 { 1613 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/mr/firefox-136.0.3.tar.xz"; 1614 locale = "mr"; 1615 arch = "linux-aarch64"; 1616 + sha256 = "48c192fbe61cde3cde11533647b95dbd61cd4cdfb769d896505e054038e66c6b"; 1617 } 1618 { 1619 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ms/firefox-136.0.3.tar.xz"; 1620 locale = "ms"; 1621 arch = "linux-aarch64"; 1622 + sha256 = "3bb763bf8af073442b4a1da2e60874d542a66b286f3a3fc4ce6522e51f0e221b"; 1623 } 1624 { 1625 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/my/firefox-136.0.3.tar.xz"; 1626 locale = "my"; 1627 arch = "linux-aarch64"; 1628 + sha256 = "7b7e8f2e8998fcc7867788c1e9d02976e0affd024e4af7d7a098881080ba6016"; 1629 } 1630 { 1631 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/nb-NO/firefox-136.0.3.tar.xz"; 1632 locale = "nb-NO"; 1633 arch = "linux-aarch64"; 1634 + sha256 = "185ea6ea288db45c0fe4abbc301f73669666de4eb3a87d86783fc78bd0109a0d"; 1635 } 1636 { 1637 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ne-NP/firefox-136.0.3.tar.xz"; 1638 locale = "ne-NP"; 1639 arch = "linux-aarch64"; 1640 + sha256 = "19c5bd77a359456cc0343732dfe059a922ff1d23dd948e9623f12d9b9dafe282"; 1641 } 1642 { 1643 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/nl/firefox-136.0.3.tar.xz"; 1644 locale = "nl"; 1645 arch = "linux-aarch64"; 1646 + sha256 = "a5f89d510c1fa15a1349f5ccbcb40d9ccf5cf9df78ebd0638e62e1a31166815c"; 1647 } 1648 { 1649 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/nn-NO/firefox-136.0.3.tar.xz"; 1650 locale = "nn-NO"; 1651 arch = "linux-aarch64"; 1652 + sha256 = "3fe8102a7a988a4ba69187542474d6fed3587415e373d7cd094738472e1f3dc5"; 1653 } 1654 { 1655 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/oc/firefox-136.0.3.tar.xz"; 1656 locale = "oc"; 1657 arch = "linux-aarch64"; 1658 + sha256 = "a3510e1324fdf0c28dd404d4152d2320a4cbec7e067cd064538f9059b78e1913"; 1659 } 1660 { 1661 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/pa-IN/firefox-136.0.3.tar.xz"; 1662 locale = "pa-IN"; 1663 arch = "linux-aarch64"; 1664 + sha256 = "4cefa624028961fe04fa3b8d3bffed43360f5213877d0ac70bfa0000cf02aa63"; 1665 } 1666 { 1667 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/pl/firefox-136.0.3.tar.xz"; 1668 locale = "pl"; 1669 arch = "linux-aarch64"; 1670 + sha256 = "320f9d18584e8c533f3654b7340bd803b44226a0cca583826eca856b9f98e0e6"; 1671 } 1672 { 1673 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/pt-BR/firefox-136.0.3.tar.xz"; 1674 locale = "pt-BR"; 1675 arch = "linux-aarch64"; 1676 + sha256 = "373f3d2b3a93261257f32479bf8227a24a608ee8fff404fc9b0dac66d30a3ccd"; 1677 } 1678 { 1679 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/pt-PT/firefox-136.0.3.tar.xz"; 1680 locale = "pt-PT"; 1681 arch = "linux-aarch64"; 1682 + sha256 = "15319289d2dfa2155ebf7e292778b250bb822823d2a61ca5d2ce189400e35e22"; 1683 } 1684 { 1685 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/rm/firefox-136.0.3.tar.xz"; 1686 locale = "rm"; 1687 arch = "linux-aarch64"; 1688 + sha256 = "ae8eaa18719e72d631331bb8eba8c26abc6dece173aebd23e3274334eb709a59"; 1689 } 1690 { 1691 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ro/firefox-136.0.3.tar.xz"; 1692 locale = "ro"; 1693 arch = "linux-aarch64"; 1694 + sha256 = "c1fa4f0ea78116d7273db20f5c95a332bdc6f7c530e450c2e081dbadcf5899fa"; 1695 } 1696 { 1697 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ru/firefox-136.0.3.tar.xz"; 1698 locale = "ru"; 1699 arch = "linux-aarch64"; 1700 + sha256 = "fcc823b06840b876e240950339e6a94659b8a7a63fb33f83ff97331c65e43c48"; 1701 } 1702 { 1703 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/sat/firefox-136.0.3.tar.xz"; 1704 locale = "sat"; 1705 arch = "linux-aarch64"; 1706 + sha256 = "745a3802f060ca1539f4c935a3bb5046b385e410e15d93335a0161aada11faf4"; 1707 } 1708 { 1709 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/sc/firefox-136.0.3.tar.xz"; 1710 locale = "sc"; 1711 arch = "linux-aarch64"; 1712 + sha256 = "904e259eecff6c70c71e3ed8ed9ae603ff9b1d59125e3331e80730d378c10fe4"; 1713 } 1714 { 1715 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/sco/firefox-136.0.3.tar.xz"; 1716 locale = "sco"; 1717 arch = "linux-aarch64"; 1718 + sha256 = "b4b7da75ebf28b3aa91952b0738dc3d54b12663ee6fd49410adbf917f76c5705"; 1719 } 1720 { 1721 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/si/firefox-136.0.3.tar.xz"; 1722 locale = "si"; 1723 arch = "linux-aarch64"; 1724 + sha256 = "c06cce341ee4aeef5e05e76b7b7ef296f21db1f6d31f5ba0a871ca0797313921"; 1725 } 1726 { 1727 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/sk/firefox-136.0.3.tar.xz"; 1728 locale = "sk"; 1729 arch = "linux-aarch64"; 1730 + sha256 = "2c536e53dcc620241c6ce0c6ef5eb3955a8d046d521d7639b3f7f228dd60681b"; 1731 } 1732 { 1733 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/skr/firefox-136.0.3.tar.xz"; 1734 locale = "skr"; 1735 arch = "linux-aarch64"; 1736 + sha256 = "4b72c70d49a4cc652039684c0157d5638dd6f573730824ebb4e2b79ed3b0357e"; 1737 } 1738 { 1739 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/sl/firefox-136.0.3.tar.xz"; 1740 locale = "sl"; 1741 arch = "linux-aarch64"; 1742 + sha256 = "f30e9e9cbb607c2384545195f9ca4321d9199985eea39c0f7ad5f7581c78cae7"; 1743 } 1744 { 1745 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/son/firefox-136.0.3.tar.xz"; 1746 locale = "son"; 1747 arch = "linux-aarch64"; 1748 + sha256 = "571703e481b55e46108104740049c680719010cfba81ea0694974525ba1bdffb"; 1749 } 1750 { 1751 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/sq/firefox-136.0.3.tar.xz"; 1752 locale = "sq"; 1753 arch = "linux-aarch64"; 1754 + sha256 = "7ca46cd20db72215464a46939efcc78c288e3eabc7f8be889422a54105b55ee3"; 1755 } 1756 { 1757 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/sr/firefox-136.0.3.tar.xz"; 1758 locale = "sr"; 1759 arch = "linux-aarch64"; 1760 + sha256 = "3007e60944287fa37059d80d24b90502a1bcb8ed2fab0c0cac758121bf702dbc"; 1761 } 1762 { 1763 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/sv-SE/firefox-136.0.3.tar.xz"; 1764 locale = "sv-SE"; 1765 arch = "linux-aarch64"; 1766 + sha256 = "a0409f51d3d2f0b751d776d355d44bb7e94d9ab18d92694096be6dd9255f0070"; 1767 } 1768 { 1769 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/szl/firefox-136.0.3.tar.xz"; 1770 locale = "szl"; 1771 arch = "linux-aarch64"; 1772 + sha256 = "ffe47d14f027243442fec0300d402467e7fadc0949964a65c1415efe8375740c"; 1773 } 1774 { 1775 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ta/firefox-136.0.3.tar.xz"; 1776 locale = "ta"; 1777 arch = "linux-aarch64"; 1778 + sha256 = "0e5e64d7bc474bca0c5d5cc3f3a231d98cfeb4f9a21a4af7899a167bcc32843a"; 1779 } 1780 { 1781 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/te/firefox-136.0.3.tar.xz"; 1782 locale = "te"; 1783 arch = "linux-aarch64"; 1784 + sha256 = "86d5574bc92767e76cac0c6ca13208436ce938ec381401dc967ad4de8be05dca"; 1785 } 1786 { 1787 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/tg/firefox-136.0.3.tar.xz"; 1788 locale = "tg"; 1789 arch = "linux-aarch64"; 1790 + sha256 = "27dce7bcee88d594c49658726f4b7a8ec6864f2605a5293e52f8f88ca4e75b24"; 1791 } 1792 { 1793 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/th/firefox-136.0.3.tar.xz"; 1794 locale = "th"; 1795 arch = "linux-aarch64"; 1796 + sha256 = "8909a2cbddd40c19167c7d2a5dda4cd54de5626765f30dcc6498fd53abe52a77"; 1797 } 1798 { 1799 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/tl/firefox-136.0.3.tar.xz"; 1800 locale = "tl"; 1801 arch = "linux-aarch64"; 1802 + sha256 = "6fe7f9a595326473b4d69f8744ef343d3fd52b89cb28f4746b5d95b1eb6b7040"; 1803 } 1804 { 1805 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/tr/firefox-136.0.3.tar.xz"; 1806 locale = "tr"; 1807 arch = "linux-aarch64"; 1808 + sha256 = "45e9bb08972c61db09204e55b3d56e41646c68e1a05b539990d1fcd6f5dd81b7"; 1809 } 1810 { 1811 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/trs/firefox-136.0.3.tar.xz"; 1812 locale = "trs"; 1813 arch = "linux-aarch64"; 1814 + sha256 = "b687914e095baf7e60caa04d745d421a7ec7fc1d2fd76173f5afde7f1ad81018"; 1815 } 1816 { 1817 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/uk/firefox-136.0.3.tar.xz"; 1818 locale = "uk"; 1819 arch = "linux-aarch64"; 1820 + sha256 = "60b53efc329e7f3c0e63c862923ccd8cd41b89fb22e54dd7ba6b5d6e59bab23e"; 1821 } 1822 { 1823 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/ur/firefox-136.0.3.tar.xz"; 1824 locale = "ur"; 1825 arch = "linux-aarch64"; 1826 + sha256 = "016cb26f076e87408295274944e3839860dfe8165f6b326ddddbfbf21ff714f4"; 1827 } 1828 { 1829 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/uz/firefox-136.0.3.tar.xz"; 1830 locale = "uz"; 1831 arch = "linux-aarch64"; 1832 + sha256 = "7100ab26bd974997b52e3a00e20092432a4c1de431a68fd105fa4b0419ed1921"; 1833 } 1834 { 1835 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/vi/firefox-136.0.3.tar.xz"; 1836 locale = "vi"; 1837 arch = "linux-aarch64"; 1838 + sha256 = "dbbe65eeae6329af4ddf9132f428015a9d55bc66e3a532c50dd38d11942e4631"; 1839 } 1840 { 1841 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/xh/firefox-136.0.3.tar.xz"; 1842 locale = "xh"; 1843 arch = "linux-aarch64"; 1844 + sha256 = "2216ad280c86e9f231e7a4ed68ba10308e45bbb9e25a1096c07b3ead5259a003"; 1845 } 1846 { 1847 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/zh-CN/firefox-136.0.3.tar.xz"; 1848 locale = "zh-CN"; 1849 arch = "linux-aarch64"; 1850 + sha256 = "cc69ae8fd6b680d56c6db45eea22e2049c3aa4b2b29fcf7b86c28c3f5fc6966c"; 1851 } 1852 { 1853 + url = "https://archive.mozilla.org/pub/firefox/releases/136.0.3/linux-aarch64/zh-TW/firefox-136.0.3.tar.xz"; 1854 locale = "zh-TW"; 1855 arch = "linux-aarch64"; 1856 + sha256 = "e2950d9d136e2e853cb83cf1e4b39aafc3bdc2956c51afaf9d731fccb2f93f55"; 1857 } 1858 ]; 1859 }
+2 -2
pkgs/applications/networking/browsers/firefox/packages/firefox.nix
··· 9 10 buildMozillaMach rec { 11 pname = "firefox"; 12 - version = "136.0.2"; 13 src = fetchurl { 14 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 15 - sha512 = "50dfbedb6bd513a3c6cf90558d7c6993cc78558cccc69fcc882f8e54eb8e8bec9779dce6fb7211c1a0234ac4a189438c5fa55ee9d0d06fcbae5cf44778af2ef1"; 16 }; 17 18 meta = {
··· 9 10 buildMozillaMach rec { 11 pname = "firefox"; 12 + version = "136.0.3"; 13 src = fetchurl { 14 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 15 + sha512 = "59cb54bc946aecea810169970aad4ba3f7b3092e56f15f86ff3d51fa2752c89632a057a1bda016f0005665ec5099d9b9f9a4786b9c02e3f5656eb2003b6a1747"; 16 }; 17 18 meta = {
+11 -11
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 126 "vendorHash": "sha256-zjb8SQ6ALQryN7wE4MKn3nhhqEvoeq8CyZd8PlkZJt4=" 127 }, 128 "azuread": { 129 - "hash": "sha256-UV6jgVS8tzWiEBC/C/U7/2bGZ1sqk2MnS8xNRBuL+C8=", 130 "homepage": "https://registry.terraform.io/providers/hashicorp/azuread", 131 "owner": "hashicorp", 132 "repo": "terraform-provider-azuread", 133 - "rev": "v3.1.0", 134 "spdx": "MPL-2.0", 135 "vendorHash": null 136 }, ··· 660 "vendorHash": null 661 }, 662 "incus": { 663 - "hash": "sha256-Dva5bFyJpxifsQl62xnjvqEQ5SknUmCLfGX4fFx5FAE=", 664 "homepage": "https://registry.terraform.io/providers/lxc/incus", 665 "owner": "lxc", 666 "repo": "terraform-provider-incus", 667 - "rev": "v0.2.0", 668 "spdx": "MPL-2.0", 669 - "vendorHash": "sha256-xr54yCVGOJbj0612wiljUkx1wEOSuXB1qrGbF/vCwN8=" 670 }, 671 "infoblox": { 672 "hash": "sha256-iz/Khne3wggjkZFWZOK9DVZsB8HW6nsNBCfEbsBdhzk=", ··· 994 "vendorHash": null 995 }, 996 "ovh": { 997 - "hash": "sha256-wcLzFLoMpmYJDjgkxJeZkAsdxri3s3Sg/JsP7hI0giI=", 998 "homepage": "https://registry.terraform.io/providers/ovh/ovh", 999 "owner": "ovh", 1000 "repo": "terraform-provider-ovh", 1001 - "rev": "v2.0.0", 1002 "spdx": "MPL-2.0", 1003 "vendorHash": null 1004 }, 1005 "pagerduty": { 1006 - "hash": "sha256-oQ0Y4I7Ru39v9NDuORFF0syS3SBW9GlkTdRyQ/54qPc=", 1007 "homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty", 1008 "owner": "PagerDuty", 1009 "repo": "terraform-provider-pagerduty", 1010 - "rev": "v3.22.0", 1011 "spdx": "MPL-2.0", 1012 "vendorHash": null 1013 }, ··· 1219 "vendorHash": "sha256-YFV+qXD78eajSeagJPgPu+qIktx1Vh/ZT0fUPOBuZyo=" 1220 }, 1221 "spacelift": { 1222 - "hash": "sha256-QdPn/ECwypgsk0aotgbndNWh/nGItIuKUfHKe+7FYRk=", 1223 "homepage": "https://registry.terraform.io/providers/spacelift-io/spacelift", 1224 "owner": "spacelift-io", 1225 "repo": "terraform-provider-spacelift", 1226 - "rev": "v1.20.3", 1227 "spdx": "MIT", 1228 "vendorHash": "sha256-oEamCseBGmETqeBLiBHfh81oQNUHWfTrsegkFijvb20=" 1229 },
··· 126 "vendorHash": "sha256-zjb8SQ6ALQryN7wE4MKn3nhhqEvoeq8CyZd8PlkZJt4=" 127 }, 128 "azuread": { 129 + "hash": "sha256-xU6fsJIWl9WNzmZIK8qAB4ih4wcgiICdfYbgnCLNA1Y=", 130 "homepage": "https://registry.terraform.io/providers/hashicorp/azuread", 131 "owner": "hashicorp", 132 "repo": "terraform-provider-azuread", 133 + "rev": "v3.2.0", 134 "spdx": "MPL-2.0", 135 "vendorHash": null 136 }, ··· 660 "vendorHash": null 661 }, 662 "incus": { 663 + "hash": "sha256-ARxXTh0mGA3VNqqDKgMLBRr8wNZ4D2p75/8dMxFowWU=", 664 "homepage": "https://registry.terraform.io/providers/lxc/incus", 665 "owner": "lxc", 666 "repo": "terraform-provider-incus", 667 + "rev": "v0.3.0", 668 "spdx": "MPL-2.0", 669 + "vendorHash": "sha256-BuVUDDwUgGo7FrgWDzhq4qkEudECoyqApftALBnQveE=" 670 }, 671 "infoblox": { 672 "hash": "sha256-iz/Khne3wggjkZFWZOK9DVZsB8HW6nsNBCfEbsBdhzk=", ··· 994 "vendorHash": null 995 }, 996 "ovh": { 997 + "hash": "sha256-kbKoirah2EA8Wa2/d8TFPMUZmnewPPJ/Sgx2tTLeYrM=", 998 "homepage": "https://registry.terraform.io/providers/ovh/ovh", 999 "owner": "ovh", 1000 "repo": "terraform-provider-ovh", 1001 + "rev": "v2.1.0", 1002 "spdx": "MPL-2.0", 1003 "vendorHash": null 1004 }, 1005 "pagerduty": { 1006 + "hash": "sha256-ed4i9Esj90h4bG4gzGZBqaaJJOsE2fLfip9xyneRAjg=", 1007 "homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty", 1008 "owner": "PagerDuty", 1009 "repo": "terraform-provider-pagerduty", 1010 + "rev": "v3.23.1", 1011 "spdx": "MPL-2.0", 1012 "vendorHash": null 1013 }, ··· 1219 "vendorHash": "sha256-YFV+qXD78eajSeagJPgPu+qIktx1Vh/ZT0fUPOBuZyo=" 1220 }, 1221 "spacelift": { 1222 + "hash": "sha256-ZnUQBVsNuvr0jfuJL5h8uvrqyiahq7CoMeQ7tXU/gTc=", 1223 "homepage": "https://registry.terraform.io/providers/spacelift-io/spacelift", 1224 "owner": "spacelift-io", 1225 "repo": "terraform-provider-spacelift", 1226 + "rev": "v1.20.4", 1227 "spdx": "MIT", 1228 "vendorHash": "sha256-oEamCseBGmETqeBLiBHfh81oQNUHWfTrsegkFijvb20=" 1229 },
+3 -3
pkgs/applications/networking/cluster/terraform/default.nix
··· 184 mkTerraform = attrs: pluggable (generic attrs); 185 186 terraform_1 = mkTerraform { 187 - version = "1.11.2"; 188 - hash = "sha256-HUttExqVbfk8BFMW8PB4ciSoRZP4ieE7rOdJCq4dDA0="; 189 - vendorHash = "sha256-b4KUNRTDHqdKDtMjqN8+eP9kPiLcCku6BhcP8vkf9G0="; 190 patches = [ ./provider-path-0_15.patch ]; 191 passthru = { 192 inherit plugins;
··· 184 mkTerraform = attrs: pluggable (generic attrs); 185 186 terraform_1 = mkTerraform { 187 + version = "1.11.3"; 188 + hash = "sha256-th2VaFlvRKvL0ZEcAGU9eJui+k5dTaPGtLB2u9Q/vxg="; 189 + vendorHash = "sha256-Tz01h3VITbvyEAfT8sfU7ghHd+vlCBVsMTTQS96jp7c="; 190 patches = [ ./provider-path-0_15.patch ]; 191 passthru = { 192 inherit plugins;
+2 -2
pkgs/applications/video/obs-studio/plugins/obs-replay-source.nix
··· 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "obs-replay-source"; 13 - version = "1.8.0"; 14 15 src = fetchFromGitHub { 16 owner = "exeldro"; 17 repo = "obs-replay-source"; 18 tag = finalAttrs.version; 19 - hash = "sha256-0IBH4Wb4dbbwqu7DsMb/pfnA8dYRbsW7cBW2XTjQK0U="; 20 }; 21 22 nativeBuildInputs = [ cmake ];
··· 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "obs-replay-source"; 13 + version = "1.8.1"; 14 15 src = fetchFromGitHub { 16 owner = "exeldro"; 17 repo = "obs-replay-source"; 18 tag = finalAttrs.version; 19 + hash = "sha256-+PSALDqHXPyR0J7YnLn3QgPN6eIoH3yTIm1Bp7Li8c8="; 20 }; 21 22 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/applications/window-managers/hyprwm/hyprland-plugins/hypr-dynamic-cursors.nix
··· 8 9 mkHyprlandPlugin hyprland { 10 pluginName = "hypr-dynamic-cursors"; 11 - version = "0-unstable-2025-03-06"; 12 13 src = fetchFromGitHub { 14 owner = "VirtCode"; 15 repo = "hypr-dynamic-cursors"; 16 - rev = "261bc1668f7de45b48ba6a40d5d727025575390b"; 17 - hash = "sha256-2HSbWe1r5DYulPzMXZYSluiwG/T+5904YmJSrPJ8tEo="; 18 }; 19 20 dontUseCmakeConfigure = true;
··· 8 9 mkHyprlandPlugin hyprland { 10 pluginName = "hypr-dynamic-cursors"; 11 + version = "0-unstable-2025-03-26"; 12 13 src = fetchFromGitHub { 14 owner = "VirtCode"; 15 repo = "hypr-dynamic-cursors"; 16 + rev = "e2c32d8108960b6eaf96918485503e90a016de4b"; 17 + hash = "sha256-/teXJjfdp4cZetlD7lsunettI5QB3UWeODhrrDXooOs="; 18 }; 19 20 dontUseCmakeConfigure = true;
+21 -13
pkgs/by-name/av/avisynthplus/package.nix
··· 4 fetchFromGitHub, 5 testers, 6 cmake, 7 gitUpdater, 8 - fetchpatch, 9 libdevil, 10 }: 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "avisynthplus"; 14 - version = "3.7.3"; 15 16 src = fetchFromGitHub { 17 owner = "AviSynth"; 18 repo = "AviSynthPlus"; 19 - rev = "v${finalAttrs.version}"; 20 - hash = "sha256-v/AErktcegdrwxDbD0DZ/ZAxgaZmkZD+qxR3EPFsT08="; 21 }; 22 23 - patches = [ 24 - # Remove after next release 25 - (fetchpatch { 26 - name = "fix-absolute-path.patch"; 27 - url = "https://github.com/AviSynth/AviSynthPlus/commit/818983691e962ec3e590fcad07032f8a139a6b16.patch"; 28 - hash = "sha256-4yUOnjtOroX+bhNUKbYz/giKaslzYdwPaaJWNkrTBr4="; 29 - }) 30 ]; 31 32 - buildInputs = [ libdevil ]; 33 34 - nativeBuildInputs = [ cmake ]; 35 36 passthru = { 37 updateScript = gitUpdater { rev-prefix = "v"; };
··· 4 fetchFromGitHub, 5 testers, 6 cmake, 7 + pkg-config, 8 gitUpdater, 9 libdevil, 10 + soundtouch, 11 }: 12 13 stdenv.mkDerivation (finalAttrs: { 14 pname = "avisynthplus"; 15 + version = "3.7.4"; 16 17 src = fetchFromGitHub { 18 owner = "AviSynth"; 19 repo = "AviSynthPlus"; 20 + tag = "v${finalAttrs.version}"; 21 + hash = "sha256-M+F7bUSlH6kAyQLCq0RxmaE19RqHPPleTMyRuz5zqPg="; 22 }; 23 24 + patchPhase = '' 25 + substituteInPlace ./avs_core/avisynth_conf.h.in \ 26 + --replace-fail '@CORE_PLUGIN_INSTALL_PATH@' '/run/current-system/sw/lib' 27 + ''; 28 + 29 + buildInputs = [ 30 + libdevil 31 + soundtouch 32 ]; 33 34 + nativeBuildInputs = [ 35 + cmake 36 + pkg-config 37 + ]; 38 39 + outputs = [ 40 + "out" 41 + "dev" 42 + ]; 43 44 passthru = { 45 updateScript = gitUpdater { rev-prefix = "v"; };
+3 -3
pkgs/by-name/b3/b3sum/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "b3sum"; 9 - version = "1.6.1"; 10 11 src = fetchCrate { 12 inherit version pname; 13 - hash = "sha256-tl5rIDLLMOrZimkBuUl4NQfry17mFF/vdCCP/Atb9fQ="; 14 }; 15 16 useFetchCargoVendor = true; 17 - cargoHash = "sha256-0CezqiuqEvPa46uUEW2HhUuvB7TZb0YUNBnW/IwTlc8="; 18 19 meta = { 20 description = "BLAKE3 cryptographic hash function";
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "b3sum"; 9 + version = "1.7.0"; 10 11 src = fetchCrate { 12 inherit version pname; 13 + hash = "sha256-bDydKLPJgeUngkWO8L5BkJP9rGy3mx0QJhWAN2CCYhE="; 14 }; 15 16 useFetchCargoVendor = true; 17 + cargoHash = "sha256-yB0noD5eabr+HANPRhIhBEG4PCwtJPULNIy+Wx/tC3U="; 18 19 meta = { 20 description = "BLAKE3 cryptographic hash function";
+2 -2
pkgs/by-name/ca/cassowary/package.nix
··· 6 7 buildGoModule rec { 8 pname = "cassowary"; 9 - version = "0.17.0"; 10 11 src = fetchFromGitHub { 12 owner = "rogerwelin"; 13 repo = pname; 14 rev = "v${version}"; 15 - sha256 = "sha256-lC3GOS4hugRoQbJYVGv6kl3h6xMAukcOdV2m/u3Wgkk="; 16 }; 17 18 vendorHash = "sha256-YP9q9lL2A9ERhzbJBIFKsYsgvy5xYeUO3ekyQdh97f8=";
··· 6 7 buildGoModule rec { 8 pname = "cassowary"; 9 + version = "0.18.0"; 10 11 src = fetchFromGitHub { 12 owner = "rogerwelin"; 13 repo = pname; 14 rev = "v${version}"; 15 + sha256 = "sha256-zaG4HrdTGXTalMFz/huRW32RZBQx55AvUi29tz6vFD8="; 16 }; 17 18 vendorHash = "sha256-YP9q9lL2A9ERhzbJBIFKsYsgvy5xYeUO3ekyQdh97f8=";
+55
pkgs/by-name/ch/chalk/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + }: 6 + let 7 + # This derivation is adapted from the 8 + # install script that Chalk recommends: https://api.chalk.ai/install.sh 9 + chalkVersion = "1.29.4"; 10 + chalkPathPiecesByNixSystem = { 11 + "aarch64-darwin" = "Darwin/aarch64"; 12 + "x86_64-darwin" = "Darwin/x86_64"; 13 + "aarch64-linux" = "Linux/aarch64"; 14 + "x86_64-linux" = "Linux/x86_64"; 15 + }; 16 + chalkHashByNixSystem = { 17 + "aarch64-darwin" = "sha256-zHPfyeHdHfbxrUhjLJHbLkeuu7WwK4jtYX7bk5wimX0="; 18 + "x86_64-darwin" = "sha256-D6lBrnBlD+OU5kQv6b6BzK+u7vB91rTtYpz8iBUeWdA="; 19 + "aarch64-linux" = "sha256-XHaCLxVJbXjPILczDGWLFqP0q/nBO5O2A9lghkvM474="; 20 + "x86_64-linux" = "sha256-hlNljLJm+m7l+Djni+ATKyWKSGKSDP0YN3CuJ4fXmWg="; 21 + }; 22 + chalkHash = chalkHashByNixSystem."${stdenv.system}"; 23 + chalkPathPieces = chalkPathPiecesByNixSystem."${stdenv.system}"; 24 + chalkUrl = "https://api.chalk.ai/v1/install/${chalkPathPieces}/v${chalkVersion}"; 25 + in 26 + stdenv.mkDerivation { 27 + pname = "chalk"; 28 + version = chalkVersion; 29 + src = fetchurl { 30 + url = chalkUrl; 31 + hash = chalkHash; 32 + }; 33 + dontUnpack = true; 34 + 35 + installPhase = '' 36 + runHook preInstall 37 + install -Dm 555 $src $out/bin/chalk 38 + runHook postInstall 39 + ''; 40 + 41 + meta = { 42 + description = "CLI tool for interacting with the Chalk platform"; 43 + homepage = "https://docs.chalk.ai/cli"; 44 + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; 45 + license = lib.licenses.unfree; 46 + maintainers = with lib.maintainers; [ curran ]; 47 + mainProgram = "chalk"; 48 + platforms = [ 49 + "x86_64-linux" 50 + "x86_64-darwin" 51 + "aarch64-linux" 52 + "aarch64-darwin" 53 + ]; 54 + }; 55 + }
+2 -2
pkgs/by-name/ch/checkov/package.nix
··· 25 26 python3.pkgs.buildPythonApplication rec { 27 pname = "checkov"; 28 - version = "3.2.392"; 29 pyproject = true; 30 31 src = fetchFromGitHub { 32 owner = "bridgecrewio"; 33 repo = "checkov"; 34 tag = version; 35 - hash = "sha256-qCvDVfIhv01S2PV0eXijaVDqQCzRUJAH97gPg6rwjlg="; 36 }; 37 38 pythonRelaxDeps = [
··· 25 26 python3.pkgs.buildPythonApplication rec { 27 pname = "checkov"; 28 + version = "3.2.393"; 29 pyproject = true; 30 31 src = fetchFromGitHub { 32 owner = "bridgecrewio"; 33 repo = "checkov"; 34 tag = version; 35 + hash = "sha256-0yq5jBUXfQUeE+9SlzT9v2j0ldBpA9qWulYRsvzXuR8="; 36 }; 37 38 pythonRelaxDeps = [
+3 -3
pkgs/by-name/ch/cherry-studio/package.nix
··· 14 15 stdenvNoCC.mkDerivation (finalAttrs: { 16 pname = "cherry-studio"; 17 - version = "1.1.8"; 18 19 src = fetchFromGitHub { 20 owner = "CherryHQ"; 21 repo = "cherry-studio"; 22 tag = "v${finalAttrs.version}"; 23 - hash = "sha256-zZwweJso4KaJMXNUJ+kEvbkHOkhvvPv/IYu/evXzsWs="; 24 }; 25 26 yarnOfflineCache = stdenvNoCC.mkDerivation { ··· 50 ''; 51 52 outputHashMode = "recursive"; 53 - outputHash = "sha256-HKtd+zdP7e/6vmlL4NS8X8gZ8AhxThtOS7taQ+iAnK0="; 54 }; 55 56 nativeBuildInputs = [
··· 14 15 stdenvNoCC.mkDerivation (finalAttrs: { 16 pname = "cherry-studio"; 17 + version = "1.1.10"; 18 19 src = fetchFromGitHub { 20 owner = "CherryHQ"; 21 repo = "cherry-studio"; 22 tag = "v${finalAttrs.version}"; 23 + hash = "sha256-rTIUBlQemYOAT0NRS80FcZfEc1Q9jUmlMU5YW99z0QE="; 24 }; 25 26 yarnOfflineCache = stdenvNoCC.mkDerivation { ··· 50 ''; 51 52 outputHashMode = "recursive"; 53 + outputHash = "sha256-GVIa8/rNdYTcPYqaRZp8VGKeh0IiNttXzJEVvCpCAQo="; 54 }; 55 56 nativeBuildInputs = [
+2 -2
pkgs/by-name/ci/circt/package.nix
··· 19 in 20 stdenv.mkDerivation rec { 21 pname = "circt"; 22 - version = "1.109.0"; 23 src = fetchFromGitHub { 24 owner = "llvm"; 25 repo = "circt"; 26 rev = "firtool-${version}"; 27 - hash = "sha256-FFMmS5S382Dy8Ut01pY0eq1bI1uSn8I3evMS6hftSss="; 28 fetchSubmodules = true; 29 }; 30
··· 19 in 20 stdenv.mkDerivation rec { 21 pname = "circt"; 22 + version = "1.110.0"; 23 src = fetchFromGitHub { 24 owner = "llvm"; 25 repo = "circt"; 26 rev = "firtool-${version}"; 27 + hash = "sha256-v5yiUFfCFj4UkcbHXwtVYZPLCp/NFmXrA9e6YkCf6jY="; 28 fetchSubmodules = true; 29 }; 30
-2506
pkgs/by-name/cr/crunchy-cli/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.21.0" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 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 = "aho-corasick" 22 - version = "1.1.3" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 25 - dependencies = [ 26 - "memchr", 27 - ] 28 - 29 - [[package]] 30 - name = "android-tzdata" 31 - version = "0.1.1" 32 - source = "registry+https://github.com/rust-lang/crates.io-index" 33 - checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 34 - 35 - [[package]] 36 - name = "android_system_properties" 37 - version = "0.1.5" 38 - source = "registry+https://github.com/rust-lang/crates.io-index" 39 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 40 - dependencies = [ 41 - "libc", 42 - ] 43 - 44 - [[package]] 45 - name = "anstream" 46 - version = "0.6.14" 47 - source = "registry+https://github.com/rust-lang/crates.io-index" 48 - checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 49 - dependencies = [ 50 - "anstyle", 51 - "anstyle-parse", 52 - "anstyle-query", 53 - "anstyle-wincon", 54 - "colorchoice", 55 - "is_terminal_polyfill", 56 - "utf8parse", 57 - ] 58 - 59 - [[package]] 60 - name = "anstyle" 61 - version = "1.0.7" 62 - source = "registry+https://github.com/rust-lang/crates.io-index" 63 - checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 64 - 65 - [[package]] 66 - name = "anstyle-parse" 67 - version = "0.2.4" 68 - source = "registry+https://github.com/rust-lang/crates.io-index" 69 - checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 70 - dependencies = [ 71 - "utf8parse", 72 - ] 73 - 74 - [[package]] 75 - name = "anstyle-query" 76 - version = "1.0.3" 77 - source = "registry+https://github.com/rust-lang/crates.io-index" 78 - checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5" 79 - dependencies = [ 80 - "windows-sys 0.52.0", 81 - ] 82 - 83 - [[package]] 84 - name = "anstyle-wincon" 85 - version = "3.0.3" 86 - source = "registry+https://github.com/rust-lang/crates.io-index" 87 - checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 88 - dependencies = [ 89 - "anstyle", 90 - "windows-sys 0.52.0", 91 - ] 92 - 93 - [[package]] 94 - name = "anyhow" 95 - version = "1.0.86" 96 - source = "registry+https://github.com/rust-lang/crates.io-index" 97 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 98 - 99 - [[package]] 100 - name = "async-speed-limit" 101 - version = "0.4.1" 102 - source = "registry+https://github.com/rust-lang/crates.io-index" 103 - checksum = "97d287ccbfb44ae20287d2f9c72ad9e560d50810883870697db5b320c541f183" 104 - dependencies = [ 105 - "futures-core", 106 - "futures-io", 107 - "futures-timer", 108 - "pin-project-lite", 109 - ] 110 - 111 - [[package]] 112 - name = "async-trait" 113 - version = "0.1.80" 114 - source = "registry+https://github.com/rust-lang/crates.io-index" 115 - checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" 116 - dependencies = [ 117 - "proc-macro2", 118 - "quote", 119 - "syn", 120 - ] 121 - 122 - [[package]] 123 - name = "atomic-waker" 124 - version = "1.1.2" 125 - source = "registry+https://github.com/rust-lang/crates.io-index" 126 - checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 127 - 128 - [[package]] 129 - name = "autocfg" 130 - version = "1.3.0" 131 - source = "registry+https://github.com/rust-lang/crates.io-index" 132 - checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 133 - 134 - [[package]] 135 - name = "backtrace" 136 - version = "0.3.71" 137 - source = "registry+https://github.com/rust-lang/crates.io-index" 138 - checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" 139 - dependencies = [ 140 - "addr2line", 141 - "cc", 142 - "cfg-if", 143 - "libc", 144 - "miniz_oxide", 145 - "object", 146 - "rustc-demangle", 147 - ] 148 - 149 - [[package]] 150 - name = "base64" 151 - version = "0.21.7" 152 - source = "registry+https://github.com/rust-lang/crates.io-index" 153 - checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 154 - 155 - [[package]] 156 - name = "base64" 157 - version = "0.22.1" 158 - source = "registry+https://github.com/rust-lang/crates.io-index" 159 - checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 160 - 161 - [[package]] 162 - name = "base64-serde" 163 - version = "0.7.0" 164 - source = "registry+https://github.com/rust-lang/crates.io-index" 165 - checksum = "ba368df5de76a5bea49aaf0cf1b39ccfbbef176924d1ba5db3e4135216cbe3c7" 166 - dependencies = [ 167 - "base64 0.21.7", 168 - "serde", 169 - ] 170 - 171 - [[package]] 172 - name = "bitflags" 173 - version = "1.3.2" 174 - source = "registry+https://github.com/rust-lang/crates.io-index" 175 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 176 - 177 - [[package]] 178 - name = "bitflags" 179 - version = "2.5.0" 180 - source = "registry+https://github.com/rust-lang/crates.io-index" 181 - checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 182 - 183 - [[package]] 184 - name = "bumpalo" 185 - version = "3.16.0" 186 - source = "registry+https://github.com/rust-lang/crates.io-index" 187 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 188 - 189 - [[package]] 190 - name = "bytes" 191 - version = "1.6.0" 192 - source = "registry+https://github.com/rust-lang/crates.io-index" 193 - checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 194 - 195 - [[package]] 196 - name = "cc" 197 - version = "1.0.98" 198 - source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f" 200 - 201 - [[package]] 202 - name = "cfg-if" 203 - version = "1.0.0" 204 - source = "registry+https://github.com/rust-lang/crates.io-index" 205 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 206 - 207 - [[package]] 208 - name = "cfg_aliases" 209 - version = "0.1.1" 210 - source = "registry+https://github.com/rust-lang/crates.io-index" 211 - checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 212 - 213 - [[package]] 214 - name = "chrono" 215 - version = "0.4.38" 216 - source = "registry+https://github.com/rust-lang/crates.io-index" 217 - checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 218 - dependencies = [ 219 - "android-tzdata", 220 - "iana-time-zone", 221 - "js-sys", 222 - "num-traits", 223 - "serde", 224 - "wasm-bindgen", 225 - "windows-targets 0.52.5", 226 - ] 227 - 228 - [[package]] 229 - name = "clap" 230 - version = "4.5.4" 231 - source = "registry+https://github.com/rust-lang/crates.io-index" 232 - checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" 233 - dependencies = [ 234 - "clap_builder", 235 - "clap_derive", 236 - ] 237 - 238 - [[package]] 239 - name = "clap_builder" 240 - version = "4.5.2" 241 - source = "registry+https://github.com/rust-lang/crates.io-index" 242 - checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" 243 - dependencies = [ 244 - "anstream", 245 - "anstyle", 246 - "clap_lex", 247 - "strsim", 248 - ] 249 - 250 - [[package]] 251 - name = "clap_complete" 252 - version = "4.5.2" 253 - source = "registry+https://github.com/rust-lang/crates.io-index" 254 - checksum = "dd79504325bf38b10165b02e89b4347300f855f273c4cb30c4a3209e6583275e" 255 - dependencies = [ 256 - "clap", 257 - ] 258 - 259 - [[package]] 260 - name = "clap_derive" 261 - version = "4.5.4" 262 - source = "registry+https://github.com/rust-lang/crates.io-index" 263 - checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" 264 - dependencies = [ 265 - "heck", 266 - "proc-macro2", 267 - "quote", 268 - "syn", 269 - ] 270 - 271 - [[package]] 272 - name = "clap_lex" 273 - version = "0.7.0" 274 - source = "registry+https://github.com/rust-lang/crates.io-index" 275 - checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 276 - 277 - [[package]] 278 - name = "clap_mangen" 279 - version = "0.2.20" 280 - source = "registry+https://github.com/rust-lang/crates.io-index" 281 - checksum = "e1dd95b5ebb5c1c54581dd6346f3ed6a79a3eef95dd372fc2ac13d535535300e" 282 - dependencies = [ 283 - "clap", 284 - "roff", 285 - ] 286 - 287 - [[package]] 288 - name = "colorchoice" 289 - version = "1.0.1" 290 - source = "registry+https://github.com/rust-lang/crates.io-index" 291 - checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 292 - 293 - [[package]] 294 - name = "console" 295 - version = "0.15.8" 296 - source = "registry+https://github.com/rust-lang/crates.io-index" 297 - checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" 298 - dependencies = [ 299 - "encode_unicode", 300 - "lazy_static", 301 - "libc", 302 - "unicode-width", 303 - "windows-sys 0.52.0", 304 - ] 305 - 306 - [[package]] 307 - name = "cookie" 308 - version = "0.17.0" 309 - source = "registry+https://github.com/rust-lang/crates.io-index" 310 - checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24" 311 - dependencies = [ 312 - "percent-encoding", 313 - "time", 314 - "version_check", 315 - ] 316 - 317 - [[package]] 318 - name = "cookie_store" 319 - version = "0.20.0" 320 - source = "registry+https://github.com/rust-lang/crates.io-index" 321 - checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6" 322 - dependencies = [ 323 - "cookie", 324 - "idna 0.3.0", 325 - "log", 326 - "publicsuffix", 327 - "serde", 328 - "serde_derive", 329 - "serde_json", 330 - "time", 331 - "url", 332 - ] 333 - 334 - [[package]] 335 - name = "core-foundation" 336 - version = "0.9.4" 337 - source = "registry+https://github.com/rust-lang/crates.io-index" 338 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 339 - dependencies = [ 340 - "core-foundation-sys", 341 - "libc", 342 - ] 343 - 344 - [[package]] 345 - name = "core-foundation-sys" 346 - version = "0.8.6" 347 - source = "registry+https://github.com/rust-lang/crates.io-index" 348 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 349 - 350 - [[package]] 351 - name = "crunchy-cli" 352 - version = "3.6.7" 353 - dependencies = [ 354 - "chrono", 355 - "clap", 356 - "clap_complete", 357 - "clap_mangen", 358 - "crunchy-cli-core", 359 - "native-tls", 360 - "tokio", 361 - ] 362 - 363 - [[package]] 364 - name = "crunchy-cli-core" 365 - version = "3.6.7" 366 - dependencies = [ 367 - "anyhow", 368 - "async-speed-limit", 369 - "chrono", 370 - "clap", 371 - "crunchyroll-rs", 372 - "ctrlc", 373 - "derive_setters", 374 - "dialoguer", 375 - "dirs", 376 - "fs2", 377 - "futures-util", 378 - "http", 379 - "indicatif", 380 - "lazy_static", 381 - "log", 382 - "nix", 383 - "num_cpus", 384 - "regex", 385 - "reqwest", 386 - "rsubs-lib", 387 - "rustls-native-certs", 388 - "rusty-chromaprint", 389 - "serde", 390 - "serde_json", 391 - "serde_plain", 392 - "shlex", 393 - "sys-locale", 394 - "tempfile", 395 - "time", 396 - "tokio", 397 - "tokio-util", 398 - "tower-service", 399 - ] 400 - 401 - [[package]] 402 - name = "crunchyroll-rs" 403 - version = "0.11.4" 404 - source = "registry+https://github.com/rust-lang/crates.io-index" 405 - checksum = "d6e38c223aecf65c9c9bec50764beea5dc70b6c97cd7f767bf6860f2fc8e0a07" 406 - dependencies = [ 407 - "async-trait", 408 - "chrono", 409 - "crunchyroll-rs-internal", 410 - "dash-mpd", 411 - "futures-util", 412 - "jsonwebtoken", 413 - "lazy_static", 414 - "regex", 415 - "reqwest", 416 - "rustls", 417 - "serde", 418 - "serde_json", 419 - "serde_urlencoded", 420 - "smart-default", 421 - "tokio", 422 - "tower-service", 423 - "uuid", 424 - "webpki-roots", 425 - ] 426 - 427 - [[package]] 428 - name = "crunchyroll-rs-internal" 429 - version = "0.11.4" 430 - source = "registry+https://github.com/rust-lang/crates.io-index" 431 - checksum = "144a38040a21aaa456741a9f6749354527bb68ad3bb14210e0bbc40fbd95186c" 432 - dependencies = [ 433 - "darling", 434 - "quote", 435 - "syn", 436 - ] 437 - 438 - [[package]] 439 - name = "ctrlc" 440 - version = "3.4.4" 441 - source = "registry+https://github.com/rust-lang/crates.io-index" 442 - checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345" 443 - dependencies = [ 444 - "nix", 445 - "windows-sys 0.52.0", 446 - ] 447 - 448 - [[package]] 449 - name = "darling" 450 - version = "0.20.9" 451 - source = "registry+https://github.com/rust-lang/crates.io-index" 452 - checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1" 453 - dependencies = [ 454 - "darling_core", 455 - "darling_macro", 456 - ] 457 - 458 - [[package]] 459 - name = "darling_core" 460 - version = "0.20.9" 461 - source = "registry+https://github.com/rust-lang/crates.io-index" 462 - checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120" 463 - dependencies = [ 464 - "fnv", 465 - "ident_case", 466 - "proc-macro2", 467 - "quote", 468 - "strsim", 469 - "syn", 470 - ] 471 - 472 - [[package]] 473 - name = "darling_macro" 474 - version = "0.20.9" 475 - source = "registry+https://github.com/rust-lang/crates.io-index" 476 - checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178" 477 - dependencies = [ 478 - "darling_core", 479 - "quote", 480 - "syn", 481 - ] 482 - 483 - [[package]] 484 - name = "dash-mpd" 485 - version = "0.16.3" 486 - source = "registry+https://github.com/rust-lang/crates.io-index" 487 - checksum = "4618a5e165bf47b084963611bcf1d568c681f52d8a237e8862a0cd8c546ba255" 488 - dependencies = [ 489 - "base64 0.22.1", 490 - "base64-serde", 491 - "bytes", 492 - "chrono", 493 - "fs-err", 494 - "iso8601", 495 - "lazy_static", 496 - "num-traits", 497 - "quick-xml", 498 - "regex", 499 - "serde", 500 - "serde_path_to_error", 501 - "serde_with", 502 - "thiserror", 503 - "tracing", 504 - "url", 505 - "xattr", 506 - ] 507 - 508 - [[package]] 509 - name = "deranged" 510 - version = "0.3.11" 511 - source = "registry+https://github.com/rust-lang/crates.io-index" 512 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 513 - dependencies = [ 514 - "powerfmt", 515 - "serde", 516 - ] 517 - 518 - [[package]] 519 - name = "derive_setters" 520 - version = "0.1.6" 521 - source = "registry+https://github.com/rust-lang/crates.io-index" 522 - checksum = "4e8ef033054e131169b8f0f9a7af8f5533a9436fadf3c500ed547f730f07090d" 523 - dependencies = [ 524 - "darling", 525 - "proc-macro2", 526 - "quote", 527 - "syn", 528 - ] 529 - 530 - [[package]] 531 - name = "dialoguer" 532 - version = "0.11.0" 533 - source = "registry+https://github.com/rust-lang/crates.io-index" 534 - checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de" 535 - dependencies = [ 536 - "console", 537 - "shell-words", 538 - "thiserror", 539 - ] 540 - 541 - [[package]] 542 - name = "dirs" 543 - version = "5.0.1" 544 - source = "registry+https://github.com/rust-lang/crates.io-index" 545 - checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 546 - dependencies = [ 547 - "dirs-sys", 548 - ] 549 - 550 - [[package]] 551 - name = "dirs-sys" 552 - version = "0.4.1" 553 - source = "registry+https://github.com/rust-lang/crates.io-index" 554 - checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 555 - dependencies = [ 556 - "libc", 557 - "option-ext", 558 - "redox_users", 559 - "windows-sys 0.48.0", 560 - ] 561 - 562 - [[package]] 563 - name = "either" 564 - version = "1.12.0" 565 - source = "registry+https://github.com/rust-lang/crates.io-index" 566 - checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" 567 - 568 - [[package]] 569 - name = "encode_unicode" 570 - version = "0.3.6" 571 - source = "registry+https://github.com/rust-lang/crates.io-index" 572 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 573 - 574 - [[package]] 575 - name = "encoding_rs" 576 - version = "0.8.34" 577 - source = "registry+https://github.com/rust-lang/crates.io-index" 578 - checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" 579 - dependencies = [ 580 - "cfg-if", 581 - ] 582 - 583 - [[package]] 584 - name = "equivalent" 585 - version = "1.0.1" 586 - source = "registry+https://github.com/rust-lang/crates.io-index" 587 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 588 - 589 - [[package]] 590 - name = "errno" 591 - version = "0.3.9" 592 - source = "registry+https://github.com/rust-lang/crates.io-index" 593 - checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 594 - dependencies = [ 595 - "libc", 596 - "windows-sys 0.52.0", 597 - ] 598 - 599 - [[package]] 600 - name = "fastrand" 601 - version = "2.1.0" 602 - source = "registry+https://github.com/rust-lang/crates.io-index" 603 - checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 604 - 605 - [[package]] 606 - name = "fnv" 607 - version = "1.0.7" 608 - source = "registry+https://github.com/rust-lang/crates.io-index" 609 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 610 - 611 - [[package]] 612 - name = "foreign-types" 613 - version = "0.3.2" 614 - source = "registry+https://github.com/rust-lang/crates.io-index" 615 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 616 - dependencies = [ 617 - "foreign-types-shared", 618 - ] 619 - 620 - [[package]] 621 - name = "foreign-types-shared" 622 - version = "0.1.1" 623 - source = "registry+https://github.com/rust-lang/crates.io-index" 624 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 625 - 626 - [[package]] 627 - name = "form_urlencoded" 628 - version = "1.2.1" 629 - source = "registry+https://github.com/rust-lang/crates.io-index" 630 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 631 - dependencies = [ 632 - "percent-encoding", 633 - ] 634 - 635 - [[package]] 636 - name = "fs-err" 637 - version = "2.11.0" 638 - source = "registry+https://github.com/rust-lang/crates.io-index" 639 - checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41" 640 - dependencies = [ 641 - "autocfg", 642 - ] 643 - 644 - [[package]] 645 - name = "fs2" 646 - version = "0.4.3" 647 - source = "registry+https://github.com/rust-lang/crates.io-index" 648 - checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 649 - dependencies = [ 650 - "libc", 651 - "winapi", 652 - ] 653 - 654 - [[package]] 655 - name = "futures-channel" 656 - version = "0.3.30" 657 - source = "registry+https://github.com/rust-lang/crates.io-index" 658 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 659 - dependencies = [ 660 - "futures-core", 661 - ] 662 - 663 - [[package]] 664 - name = "futures-core" 665 - version = "0.3.30" 666 - source = "registry+https://github.com/rust-lang/crates.io-index" 667 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 668 - 669 - [[package]] 670 - name = "futures-io" 671 - version = "0.3.30" 672 - source = "registry+https://github.com/rust-lang/crates.io-index" 673 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 674 - 675 - [[package]] 676 - name = "futures-macro" 677 - version = "0.3.30" 678 - source = "registry+https://github.com/rust-lang/crates.io-index" 679 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 680 - dependencies = [ 681 - "proc-macro2", 682 - "quote", 683 - "syn", 684 - ] 685 - 686 - [[package]] 687 - name = "futures-sink" 688 - version = "0.3.30" 689 - source = "registry+https://github.com/rust-lang/crates.io-index" 690 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 691 - 692 - [[package]] 693 - name = "futures-task" 694 - version = "0.3.30" 695 - source = "registry+https://github.com/rust-lang/crates.io-index" 696 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 697 - 698 - [[package]] 699 - name = "futures-timer" 700 - version = "3.0.3" 701 - source = "registry+https://github.com/rust-lang/crates.io-index" 702 - checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 703 - 704 - [[package]] 705 - name = "futures-util" 706 - version = "0.3.30" 707 - source = "registry+https://github.com/rust-lang/crates.io-index" 708 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 709 - dependencies = [ 710 - "futures-core", 711 - "futures-io", 712 - "futures-macro", 713 - "futures-sink", 714 - "futures-task", 715 - "memchr", 716 - "pin-project-lite", 717 - "pin-utils", 718 - "slab", 719 - ] 720 - 721 - [[package]] 722 - name = "getrandom" 723 - version = "0.2.15" 724 - source = "registry+https://github.com/rust-lang/crates.io-index" 725 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 726 - dependencies = [ 727 - "cfg-if", 728 - "js-sys", 729 - "libc", 730 - "wasi", 731 - "wasm-bindgen", 732 - ] 733 - 734 - [[package]] 735 - name = "gimli" 736 - version = "0.28.1" 737 - source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 739 - 740 - [[package]] 741 - name = "h2" 742 - version = "0.4.5" 743 - source = "registry+https://github.com/rust-lang/crates.io-index" 744 - checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" 745 - dependencies = [ 746 - "atomic-waker", 747 - "bytes", 748 - "fnv", 749 - "futures-core", 750 - "futures-sink", 751 - "http", 752 - "indexmap 2.2.6", 753 - "slab", 754 - "tokio", 755 - "tokio-util", 756 - "tracing", 757 - ] 758 - 759 - [[package]] 760 - name = "hashbrown" 761 - version = "0.12.3" 762 - source = "registry+https://github.com/rust-lang/crates.io-index" 763 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 764 - 765 - [[package]] 766 - name = "hashbrown" 767 - version = "0.14.5" 768 - source = "registry+https://github.com/rust-lang/crates.io-index" 769 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 770 - 771 - [[package]] 772 - name = "heck" 773 - version = "0.5.0" 774 - source = "registry+https://github.com/rust-lang/crates.io-index" 775 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 776 - 777 - [[package]] 778 - name = "hermit-abi" 779 - version = "0.3.9" 780 - source = "registry+https://github.com/rust-lang/crates.io-index" 781 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 782 - 783 - [[package]] 784 - name = "hex" 785 - version = "0.4.3" 786 - source = "registry+https://github.com/rust-lang/crates.io-index" 787 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 788 - 789 - [[package]] 790 - name = "http" 791 - version = "1.1.0" 792 - source = "registry+https://github.com/rust-lang/crates.io-index" 793 - checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 794 - dependencies = [ 795 - "bytes", 796 - "fnv", 797 - "itoa", 798 - ] 799 - 800 - [[package]] 801 - name = "http-body" 802 - version = "1.0.0" 803 - source = "registry+https://github.com/rust-lang/crates.io-index" 804 - checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" 805 - dependencies = [ 806 - "bytes", 807 - "http", 808 - ] 809 - 810 - [[package]] 811 - name = "http-body-util" 812 - version = "0.1.1" 813 - source = "registry+https://github.com/rust-lang/crates.io-index" 814 - checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" 815 - dependencies = [ 816 - "bytes", 817 - "futures-core", 818 - "http", 819 - "http-body", 820 - "pin-project-lite", 821 - ] 822 - 823 - [[package]] 824 - name = "httparse" 825 - version = "1.8.0" 826 - source = "registry+https://github.com/rust-lang/crates.io-index" 827 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 828 - 829 - [[package]] 830 - name = "hyper" 831 - version = "1.3.1" 832 - source = "registry+https://github.com/rust-lang/crates.io-index" 833 - checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d" 834 - dependencies = [ 835 - "bytes", 836 - "futures-channel", 837 - "futures-util", 838 - "h2", 839 - "http", 840 - "http-body", 841 - "httparse", 842 - "itoa", 843 - "pin-project-lite", 844 - "smallvec", 845 - "tokio", 846 - "want", 847 - ] 848 - 849 - [[package]] 850 - name = "hyper-rustls" 851 - version = "0.26.0" 852 - source = "registry+https://github.com/rust-lang/crates.io-index" 853 - checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c" 854 - dependencies = [ 855 - "futures-util", 856 - "http", 857 - "hyper", 858 - "hyper-util", 859 - "rustls", 860 - "rustls-pki-types", 861 - "tokio", 862 - "tokio-rustls", 863 - "tower-service", 864 - ] 865 - 866 - [[package]] 867 - name = "hyper-tls" 868 - version = "0.6.0" 869 - source = "registry+https://github.com/rust-lang/crates.io-index" 870 - checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 871 - dependencies = [ 872 - "bytes", 873 - "http-body-util", 874 - "hyper", 875 - "hyper-util", 876 - "native-tls", 877 - "tokio", 878 - "tokio-native-tls", 879 - "tower-service", 880 - ] 881 - 882 - [[package]] 883 - name = "hyper-util" 884 - version = "0.1.3" 885 - source = "registry+https://github.com/rust-lang/crates.io-index" 886 - checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa" 887 - dependencies = [ 888 - "bytes", 889 - "futures-channel", 890 - "futures-util", 891 - "http", 892 - "http-body", 893 - "hyper", 894 - "pin-project-lite", 895 - "socket2", 896 - "tokio", 897 - "tower", 898 - "tower-service", 899 - "tracing", 900 - ] 901 - 902 - [[package]] 903 - name = "iana-time-zone" 904 - version = "0.1.60" 905 - source = "registry+https://github.com/rust-lang/crates.io-index" 906 - checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 907 - dependencies = [ 908 - "android_system_properties", 909 - "core-foundation-sys", 910 - "iana-time-zone-haiku", 911 - "js-sys", 912 - "wasm-bindgen", 913 - "windows-core", 914 - ] 915 - 916 - [[package]] 917 - name = "iana-time-zone-haiku" 918 - version = "0.1.2" 919 - source = "registry+https://github.com/rust-lang/crates.io-index" 920 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 921 - dependencies = [ 922 - "cc", 923 - ] 924 - 925 - [[package]] 926 - name = "ident_case" 927 - version = "1.0.1" 928 - source = "registry+https://github.com/rust-lang/crates.io-index" 929 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 930 - 931 - [[package]] 932 - name = "idna" 933 - version = "0.3.0" 934 - source = "registry+https://github.com/rust-lang/crates.io-index" 935 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 936 - dependencies = [ 937 - "unicode-bidi", 938 - "unicode-normalization", 939 - ] 940 - 941 - [[package]] 942 - name = "idna" 943 - version = "0.5.0" 944 - source = "registry+https://github.com/rust-lang/crates.io-index" 945 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 946 - dependencies = [ 947 - "unicode-bidi", 948 - "unicode-normalization", 949 - ] 950 - 951 - [[package]] 952 - name = "indexmap" 953 - version = "1.9.3" 954 - source = "registry+https://github.com/rust-lang/crates.io-index" 955 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 956 - dependencies = [ 957 - "autocfg", 958 - "hashbrown 0.12.3", 959 - "serde", 960 - ] 961 - 962 - [[package]] 963 - name = "indexmap" 964 - version = "2.2.6" 965 - source = "registry+https://github.com/rust-lang/crates.io-index" 966 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 967 - dependencies = [ 968 - "equivalent", 969 - "hashbrown 0.14.5", 970 - "serde", 971 - ] 972 - 973 - [[package]] 974 - name = "indicatif" 975 - version = "0.17.8" 976 - source = "registry+https://github.com/rust-lang/crates.io-index" 977 - checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" 978 - dependencies = [ 979 - "console", 980 - "instant", 981 - "number_prefix", 982 - "portable-atomic", 983 - "unicode-width", 984 - ] 985 - 986 - [[package]] 987 - name = "instant" 988 - version = "0.1.13" 989 - source = "registry+https://github.com/rust-lang/crates.io-index" 990 - checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 991 - dependencies = [ 992 - "cfg-if", 993 - ] 994 - 995 - [[package]] 996 - name = "ipnet" 997 - version = "2.9.0" 998 - source = "registry+https://github.com/rust-lang/crates.io-index" 999 - checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 1000 - 1001 - [[package]] 1002 - name = "is_terminal_polyfill" 1003 - version = "1.70.0" 1004 - source = "registry+https://github.com/rust-lang/crates.io-index" 1005 - checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 1006 - 1007 - [[package]] 1008 - name = "iso8601" 1009 - version = "0.6.1" 1010 - source = "registry+https://github.com/rust-lang/crates.io-index" 1011 - checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153" 1012 - dependencies = [ 1013 - "nom", 1014 - ] 1015 - 1016 - [[package]] 1017 - name = "itoa" 1018 - version = "1.0.11" 1019 - source = "registry+https://github.com/rust-lang/crates.io-index" 1020 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 1021 - 1022 - [[package]] 1023 - name = "js-sys" 1024 - version = "0.3.69" 1025 - source = "registry+https://github.com/rust-lang/crates.io-index" 1026 - checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 1027 - dependencies = [ 1028 - "wasm-bindgen", 1029 - ] 1030 - 1031 - [[package]] 1032 - name = "jsonwebtoken" 1033 - version = "9.3.0" 1034 - source = "registry+https://github.com/rust-lang/crates.io-index" 1035 - checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f" 1036 - dependencies = [ 1037 - "base64 0.21.7", 1038 - "js-sys", 1039 - "ring", 1040 - "serde", 1041 - "serde_json", 1042 - ] 1043 - 1044 - [[package]] 1045 - name = "lazy_static" 1046 - version = "1.4.0" 1047 - source = "registry+https://github.com/rust-lang/crates.io-index" 1048 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1049 - 1050 - [[package]] 1051 - name = "libc" 1052 - version = "0.2.155" 1053 - source = "registry+https://github.com/rust-lang/crates.io-index" 1054 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 1055 - 1056 - [[package]] 1057 - name = "libredox" 1058 - version = "0.1.3" 1059 - source = "registry+https://github.com/rust-lang/crates.io-index" 1060 - checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 1061 - dependencies = [ 1062 - "bitflags 2.5.0", 1063 - "libc", 1064 - ] 1065 - 1066 - [[package]] 1067 - name = "linux-raw-sys" 1068 - version = "0.4.14" 1069 - source = "registry+https://github.com/rust-lang/crates.io-index" 1070 - checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 1071 - 1072 - [[package]] 1073 - name = "log" 1074 - version = "0.4.21" 1075 - source = "registry+https://github.com/rust-lang/crates.io-index" 1076 - checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1077 - 1078 - [[package]] 1079 - name = "memchr" 1080 - version = "2.7.2" 1081 - source = "registry+https://github.com/rust-lang/crates.io-index" 1082 - checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 1083 - 1084 - [[package]] 1085 - name = "mime" 1086 - version = "0.3.17" 1087 - source = "registry+https://github.com/rust-lang/crates.io-index" 1088 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1089 - 1090 - [[package]] 1091 - name = "mime_guess" 1092 - version = "2.0.4" 1093 - source = "registry+https://github.com/rust-lang/crates.io-index" 1094 - checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1095 - dependencies = [ 1096 - "mime", 1097 - "unicase", 1098 - ] 1099 - 1100 - [[package]] 1101 - name = "minimal-lexical" 1102 - version = "0.2.1" 1103 - source = "registry+https://github.com/rust-lang/crates.io-index" 1104 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1105 - 1106 - [[package]] 1107 - name = "miniz_oxide" 1108 - version = "0.7.3" 1109 - source = "registry+https://github.com/rust-lang/crates.io-index" 1110 - checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae" 1111 - dependencies = [ 1112 - "adler", 1113 - ] 1114 - 1115 - [[package]] 1116 - name = "mio" 1117 - version = "0.8.11" 1118 - source = "registry+https://github.com/rust-lang/crates.io-index" 1119 - checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 1120 - dependencies = [ 1121 - "libc", 1122 - "wasi", 1123 - "windows-sys 0.48.0", 1124 - ] 1125 - 1126 - [[package]] 1127 - name = "native-tls" 1128 - version = "0.2.12" 1129 - source = "git+https://github.com/crunchy-labs/rust-not-so-native-tls.git?rev=c7ac566#c7ac566559d441bbc3e5e5bd04fb7162c38d88b0" 1130 - dependencies = [ 1131 - "libc", 1132 - "log", 1133 - "openssl", 1134 - "openssl-probe", 1135 - "openssl-sys", 1136 - "schannel", 1137 - "security-framework", 1138 - "security-framework-sys", 1139 - "tempfile", 1140 - ] 1141 - 1142 - [[package]] 1143 - name = "nix" 1144 - version = "0.28.0" 1145 - source = "registry+https://github.com/rust-lang/crates.io-index" 1146 - checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 1147 - dependencies = [ 1148 - "bitflags 2.5.0", 1149 - "cfg-if", 1150 - "cfg_aliases", 1151 - "libc", 1152 - ] 1153 - 1154 - [[package]] 1155 - name = "nom" 1156 - version = "7.1.3" 1157 - source = "registry+https://github.com/rust-lang/crates.io-index" 1158 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1159 - dependencies = [ 1160 - "memchr", 1161 - "minimal-lexical", 1162 - ] 1163 - 1164 - [[package]] 1165 - name = "num-complex" 1166 - version = "0.4.6" 1167 - source = "registry+https://github.com/rust-lang/crates.io-index" 1168 - checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 1169 - dependencies = [ 1170 - "num-traits", 1171 - ] 1172 - 1173 - [[package]] 1174 - name = "num-conv" 1175 - version = "0.1.0" 1176 - source = "registry+https://github.com/rust-lang/crates.io-index" 1177 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1178 - 1179 - [[package]] 1180 - name = "num-integer" 1181 - version = "0.1.46" 1182 - source = "registry+https://github.com/rust-lang/crates.io-index" 1183 - checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1184 - dependencies = [ 1185 - "num-traits", 1186 - ] 1187 - 1188 - [[package]] 1189 - name = "num-traits" 1190 - version = "0.2.19" 1191 - source = "registry+https://github.com/rust-lang/crates.io-index" 1192 - checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1193 - dependencies = [ 1194 - "autocfg", 1195 - ] 1196 - 1197 - [[package]] 1198 - name = "num_cpus" 1199 - version = "1.16.0" 1200 - source = "registry+https://github.com/rust-lang/crates.io-index" 1201 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1202 - dependencies = [ 1203 - "hermit-abi", 1204 - "libc", 1205 - ] 1206 - 1207 - [[package]] 1208 - name = "number_prefix" 1209 - version = "0.4.0" 1210 - source = "registry+https://github.com/rust-lang/crates.io-index" 1211 - checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 1212 - 1213 - [[package]] 1214 - name = "object" 1215 - version = "0.32.2" 1216 - source = "registry+https://github.com/rust-lang/crates.io-index" 1217 - checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 1218 - dependencies = [ 1219 - "memchr", 1220 - ] 1221 - 1222 - [[package]] 1223 - name = "once_cell" 1224 - version = "1.19.0" 1225 - source = "registry+https://github.com/rust-lang/crates.io-index" 1226 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1227 - 1228 - [[package]] 1229 - name = "openssl" 1230 - version = "0.10.64" 1231 - source = "registry+https://github.com/rust-lang/crates.io-index" 1232 - checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" 1233 - dependencies = [ 1234 - "bitflags 2.5.0", 1235 - "cfg-if", 1236 - "foreign-types", 1237 - "libc", 1238 - "once_cell", 1239 - "openssl-macros", 1240 - "openssl-sys", 1241 - ] 1242 - 1243 - [[package]] 1244 - name = "openssl-macros" 1245 - version = "0.1.1" 1246 - source = "registry+https://github.com/rust-lang/crates.io-index" 1247 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1248 - dependencies = [ 1249 - "proc-macro2", 1250 - "quote", 1251 - "syn", 1252 - ] 1253 - 1254 - [[package]] 1255 - name = "openssl-probe" 1256 - version = "0.1.5" 1257 - source = "registry+https://github.com/rust-lang/crates.io-index" 1258 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1259 - 1260 - [[package]] 1261 - name = "openssl-src" 1262 - version = "300.3.0+3.3.0" 1263 - source = "registry+https://github.com/rust-lang/crates.io-index" 1264 - checksum = "eba8804a1c5765b18c4b3f907e6897ebabeedebc9830e1a0046c4a4cf44663e1" 1265 - dependencies = [ 1266 - "cc", 1267 - ] 1268 - 1269 - [[package]] 1270 - name = "openssl-sys" 1271 - version = "0.9.102" 1272 - source = "registry+https://github.com/rust-lang/crates.io-index" 1273 - checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" 1274 - dependencies = [ 1275 - "cc", 1276 - "libc", 1277 - "openssl-src", 1278 - "pkg-config", 1279 - "vcpkg", 1280 - ] 1281 - 1282 - [[package]] 1283 - name = "option-ext" 1284 - version = "0.2.0" 1285 - source = "registry+https://github.com/rust-lang/crates.io-index" 1286 - checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 1287 - 1288 - [[package]] 1289 - name = "percent-encoding" 1290 - version = "2.3.1" 1291 - source = "registry+https://github.com/rust-lang/crates.io-index" 1292 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1293 - 1294 - [[package]] 1295 - name = "pin-project" 1296 - version = "1.1.5" 1297 - source = "registry+https://github.com/rust-lang/crates.io-index" 1298 - checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 1299 - dependencies = [ 1300 - "pin-project-internal", 1301 - ] 1302 - 1303 - [[package]] 1304 - name = "pin-project-internal" 1305 - version = "1.1.5" 1306 - source = "registry+https://github.com/rust-lang/crates.io-index" 1307 - checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 1308 - dependencies = [ 1309 - "proc-macro2", 1310 - "quote", 1311 - "syn", 1312 - ] 1313 - 1314 - [[package]] 1315 - name = "pin-project-lite" 1316 - version = "0.2.14" 1317 - source = "registry+https://github.com/rust-lang/crates.io-index" 1318 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 1319 - 1320 - [[package]] 1321 - name = "pin-utils" 1322 - version = "0.1.0" 1323 - source = "registry+https://github.com/rust-lang/crates.io-index" 1324 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1325 - 1326 - [[package]] 1327 - name = "pkg-config" 1328 - version = "0.3.30" 1329 - source = "registry+https://github.com/rust-lang/crates.io-index" 1330 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 1331 - 1332 - [[package]] 1333 - name = "portable-atomic" 1334 - version = "1.6.0" 1335 - source = "registry+https://github.com/rust-lang/crates.io-index" 1336 - checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 1337 - 1338 - [[package]] 1339 - name = "powerfmt" 1340 - version = "0.2.0" 1341 - source = "registry+https://github.com/rust-lang/crates.io-index" 1342 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1343 - 1344 - [[package]] 1345 - name = "primal-check" 1346 - version = "0.3.3" 1347 - source = "registry+https://github.com/rust-lang/crates.io-index" 1348 - checksum = "9df7f93fd637f083201473dab4fee2db4c429d32e55e3299980ab3957ab916a0" 1349 - dependencies = [ 1350 - "num-integer", 1351 - ] 1352 - 1353 - [[package]] 1354 - name = "proc-macro2" 1355 - version = "1.0.83" 1356 - source = "registry+https://github.com/rust-lang/crates.io-index" 1357 - checksum = "0b33eb56c327dec362a9e55b3ad14f9d2f0904fb5a5b03b513ab5465399e9f43" 1358 - dependencies = [ 1359 - "unicode-ident", 1360 - ] 1361 - 1362 - [[package]] 1363 - name = "psl-types" 1364 - version = "2.0.11" 1365 - source = "registry+https://github.com/rust-lang/crates.io-index" 1366 - checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" 1367 - 1368 - [[package]] 1369 - name = "publicsuffix" 1370 - version = "2.2.3" 1371 - source = "registry+https://github.com/rust-lang/crates.io-index" 1372 - checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" 1373 - dependencies = [ 1374 - "idna 0.3.0", 1375 - "psl-types", 1376 - ] 1377 - 1378 - [[package]] 1379 - name = "quick-xml" 1380 - version = "0.31.0" 1381 - source = "registry+https://github.com/rust-lang/crates.io-index" 1382 - checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33" 1383 - dependencies = [ 1384 - "memchr", 1385 - "serde", 1386 - ] 1387 - 1388 - [[package]] 1389 - name = "quote" 1390 - version = "1.0.36" 1391 - source = "registry+https://github.com/rust-lang/crates.io-index" 1392 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 1393 - dependencies = [ 1394 - "proc-macro2", 1395 - ] 1396 - 1397 - [[package]] 1398 - name = "realfft" 1399 - version = "3.3.0" 1400 - source = "registry+https://github.com/rust-lang/crates.io-index" 1401 - checksum = "953d9f7e5cdd80963547b456251296efc2626ed4e3cbf36c869d9564e0220571" 1402 - dependencies = [ 1403 - "rustfft", 1404 - ] 1405 - 1406 - [[package]] 1407 - name = "redox_users" 1408 - version = "0.4.5" 1409 - source = "registry+https://github.com/rust-lang/crates.io-index" 1410 - checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" 1411 - dependencies = [ 1412 - "getrandom", 1413 - "libredox", 1414 - "thiserror", 1415 - ] 1416 - 1417 - [[package]] 1418 - name = "regex" 1419 - version = "1.10.4" 1420 - source = "registry+https://github.com/rust-lang/crates.io-index" 1421 - checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 1422 - dependencies = [ 1423 - "aho-corasick", 1424 - "memchr", 1425 - "regex-automata", 1426 - "regex-syntax", 1427 - ] 1428 - 1429 - [[package]] 1430 - name = "regex-automata" 1431 - version = "0.4.6" 1432 - source = "registry+https://github.com/rust-lang/crates.io-index" 1433 - checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 1434 - dependencies = [ 1435 - "aho-corasick", 1436 - "memchr", 1437 - "regex-syntax", 1438 - ] 1439 - 1440 - [[package]] 1441 - name = "regex-syntax" 1442 - version = "0.8.3" 1443 - source = "registry+https://github.com/rust-lang/crates.io-index" 1444 - checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 1445 - 1446 - [[package]] 1447 - name = "reqwest" 1448 - version = "0.12.4" 1449 - source = "registry+https://github.com/rust-lang/crates.io-index" 1450 - checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10" 1451 - dependencies = [ 1452 - "base64 0.22.1", 1453 - "bytes", 1454 - "cookie", 1455 - "cookie_store", 1456 - "encoding_rs", 1457 - "futures-core", 1458 - "futures-util", 1459 - "h2", 1460 - "http", 1461 - "http-body", 1462 - "http-body-util", 1463 - "hyper", 1464 - "hyper-rustls", 1465 - "hyper-tls", 1466 - "hyper-util", 1467 - "ipnet", 1468 - "js-sys", 1469 - "log", 1470 - "mime", 1471 - "mime_guess", 1472 - "native-tls", 1473 - "once_cell", 1474 - "percent-encoding", 1475 - "pin-project-lite", 1476 - "rustls", 1477 - "rustls-pemfile", 1478 - "rustls-pki-types", 1479 - "serde", 1480 - "serde_json", 1481 - "serde_urlencoded", 1482 - "sync_wrapper", 1483 - "system-configuration", 1484 - "tokio", 1485 - "tokio-native-tls", 1486 - "tokio-rustls", 1487 - "tokio-socks", 1488 - "tokio-util", 1489 - "tower-service", 1490 - "url", 1491 - "wasm-bindgen", 1492 - "wasm-bindgen-futures", 1493 - "wasm-streams", 1494 - "web-sys", 1495 - "webpki-roots", 1496 - "winreg", 1497 - ] 1498 - 1499 - [[package]] 1500 - name = "ring" 1501 - version = "0.17.8" 1502 - source = "registry+https://github.com/rust-lang/crates.io-index" 1503 - checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 1504 - dependencies = [ 1505 - "cc", 1506 - "cfg-if", 1507 - "getrandom", 1508 - "libc", 1509 - "spin", 1510 - "untrusted", 1511 - "windows-sys 0.52.0", 1512 - ] 1513 - 1514 - [[package]] 1515 - name = "roff" 1516 - version = "0.2.1" 1517 - source = "registry+https://github.com/rust-lang/crates.io-index" 1518 - checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316" 1519 - 1520 - [[package]] 1521 - name = "rsubs-lib" 1522 - version = "0.3.2" 1523 - source = "registry+https://github.com/rust-lang/crates.io-index" 1524 - checksum = "8c9f50e3fbcbf1f0bd109954e2dd813d1715c7b4a92a7bf159a85dea49e9d863" 1525 - dependencies = [ 1526 - "regex", 1527 - "serde", 1528 - "time", 1529 - ] 1530 - 1531 - [[package]] 1532 - name = "rubato" 1533 - version = "0.14.1" 1534 - source = "registry+https://github.com/rust-lang/crates.io-index" 1535 - checksum = "e6dd52e80cfc21894deadf554a5673002938ae4625f7a283e536f9cf7c17b0d5" 1536 - dependencies = [ 1537 - "num-complex", 1538 - "num-integer", 1539 - "num-traits", 1540 - "realfft", 1541 - ] 1542 - 1543 - [[package]] 1544 - name = "rustc-demangle" 1545 - version = "0.1.24" 1546 - source = "registry+https://github.com/rust-lang/crates.io-index" 1547 - checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1548 - 1549 - [[package]] 1550 - name = "rustfft" 1551 - version = "6.2.0" 1552 - source = "registry+https://github.com/rust-lang/crates.io-index" 1553 - checksum = "43806561bc506d0c5d160643ad742e3161049ac01027b5e6d7524091fd401d86" 1554 - dependencies = [ 1555 - "num-complex", 1556 - "num-integer", 1557 - "num-traits", 1558 - "primal-check", 1559 - "strength_reduce", 1560 - "transpose", 1561 - "version_check", 1562 - ] 1563 - 1564 - [[package]] 1565 - name = "rustix" 1566 - version = "0.38.34" 1567 - source = "registry+https://github.com/rust-lang/crates.io-index" 1568 - checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 1569 - dependencies = [ 1570 - "bitflags 2.5.0", 1571 - "errno", 1572 - "libc", 1573 - "linux-raw-sys", 1574 - "windows-sys 0.52.0", 1575 - ] 1576 - 1577 - [[package]] 1578 - name = "rustls" 1579 - version = "0.22.4" 1580 - source = "registry+https://github.com/rust-lang/crates.io-index" 1581 - checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 1582 - dependencies = [ 1583 - "log", 1584 - "ring", 1585 - "rustls-pki-types", 1586 - "rustls-webpki", 1587 - "subtle", 1588 - "zeroize", 1589 - ] 1590 - 1591 - [[package]] 1592 - name = "rustls-native-certs" 1593 - version = "0.7.0" 1594 - source = "registry+https://github.com/rust-lang/crates.io-index" 1595 - checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" 1596 - dependencies = [ 1597 - "openssl-probe", 1598 - "rustls-pemfile", 1599 - "rustls-pki-types", 1600 - "schannel", 1601 - "security-framework", 1602 - ] 1603 - 1604 - [[package]] 1605 - name = "rustls-pemfile" 1606 - version = "2.1.2" 1607 - source = "registry+https://github.com/rust-lang/crates.io-index" 1608 - checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" 1609 - dependencies = [ 1610 - "base64 0.22.1", 1611 - "rustls-pki-types", 1612 - ] 1613 - 1614 - [[package]] 1615 - name = "rustls-pki-types" 1616 - version = "1.7.0" 1617 - source = "registry+https://github.com/rust-lang/crates.io-index" 1618 - checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 1619 - 1620 - [[package]] 1621 - name = "rustls-webpki" 1622 - version = "0.102.4" 1623 - source = "registry+https://github.com/rust-lang/crates.io-index" 1624 - checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e" 1625 - dependencies = [ 1626 - "ring", 1627 - "rustls-pki-types", 1628 - "untrusted", 1629 - ] 1630 - 1631 - [[package]] 1632 - name = "rusty-chromaprint" 1633 - version = "0.2.0" 1634 - source = "registry+https://github.com/rust-lang/crates.io-index" 1635 - checksum = "1755646867c36ecb391776deaa0b557a76d3badf20c142de7282630c34b20440" 1636 - dependencies = [ 1637 - "rubato", 1638 - "rustfft", 1639 - ] 1640 - 1641 - [[package]] 1642 - name = "ryu" 1643 - version = "1.0.18" 1644 - source = "registry+https://github.com/rust-lang/crates.io-index" 1645 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1646 - 1647 - [[package]] 1648 - name = "schannel" 1649 - version = "0.1.23" 1650 - source = "registry+https://github.com/rust-lang/crates.io-index" 1651 - checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 1652 - dependencies = [ 1653 - "windows-sys 0.52.0", 1654 - ] 1655 - 1656 - [[package]] 1657 - name = "security-framework" 1658 - version = "2.11.0" 1659 - source = "registry+https://github.com/rust-lang/crates.io-index" 1660 - checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" 1661 - dependencies = [ 1662 - "bitflags 2.5.0", 1663 - "core-foundation", 1664 - "core-foundation-sys", 1665 - "libc", 1666 - "security-framework-sys", 1667 - ] 1668 - 1669 - [[package]] 1670 - name = "security-framework-sys" 1671 - version = "2.11.0" 1672 - source = "registry+https://github.com/rust-lang/crates.io-index" 1673 - checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" 1674 - dependencies = [ 1675 - "core-foundation-sys", 1676 - "libc", 1677 - ] 1678 - 1679 - [[package]] 1680 - name = "serde" 1681 - version = "1.0.202" 1682 - source = "registry+https://github.com/rust-lang/crates.io-index" 1683 - checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395" 1684 - dependencies = [ 1685 - "serde_derive", 1686 - ] 1687 - 1688 - [[package]] 1689 - name = "serde_derive" 1690 - version = "1.0.202" 1691 - source = "registry+https://github.com/rust-lang/crates.io-index" 1692 - checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838" 1693 - dependencies = [ 1694 - "proc-macro2", 1695 - "quote", 1696 - "syn", 1697 - ] 1698 - 1699 - [[package]] 1700 - name = "serde_json" 1701 - version = "1.0.117" 1702 - source = "registry+https://github.com/rust-lang/crates.io-index" 1703 - checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" 1704 - dependencies = [ 1705 - "itoa", 1706 - "ryu", 1707 - "serde", 1708 - ] 1709 - 1710 - [[package]] 1711 - name = "serde_path_to_error" 1712 - version = "0.1.16" 1713 - source = "registry+https://github.com/rust-lang/crates.io-index" 1714 - checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" 1715 - dependencies = [ 1716 - "itoa", 1717 - "serde", 1718 - ] 1719 - 1720 - [[package]] 1721 - name = "serde_plain" 1722 - version = "1.0.2" 1723 - source = "registry+https://github.com/rust-lang/crates.io-index" 1724 - checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50" 1725 - dependencies = [ 1726 - "serde", 1727 - ] 1728 - 1729 - [[package]] 1730 - name = "serde_urlencoded" 1731 - version = "0.7.1" 1732 - source = "registry+https://github.com/rust-lang/crates.io-index" 1733 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1734 - dependencies = [ 1735 - "form_urlencoded", 1736 - "itoa", 1737 - "ryu", 1738 - "serde", 1739 - ] 1740 - 1741 - [[package]] 1742 - name = "serde_with" 1743 - version = "3.8.1" 1744 - source = "registry+https://github.com/rust-lang/crates.io-index" 1745 - checksum = "0ad483d2ab0149d5a5ebcd9972a3852711e0153d863bf5a5d0391d28883c4a20" 1746 - dependencies = [ 1747 - "base64 0.22.1", 1748 - "chrono", 1749 - "hex", 1750 - "indexmap 1.9.3", 1751 - "indexmap 2.2.6", 1752 - "serde", 1753 - "serde_derive", 1754 - "serde_json", 1755 - "serde_with_macros", 1756 - "time", 1757 - ] 1758 - 1759 - [[package]] 1760 - name = "serde_with_macros" 1761 - version = "3.8.1" 1762 - source = "registry+https://github.com/rust-lang/crates.io-index" 1763 - checksum = "65569b702f41443e8bc8bbb1c5779bd0450bbe723b56198980e80ec45780bce2" 1764 - dependencies = [ 1765 - "darling", 1766 - "proc-macro2", 1767 - "quote", 1768 - "syn", 1769 - ] 1770 - 1771 - [[package]] 1772 - name = "shell-words" 1773 - version = "1.1.0" 1774 - source = "registry+https://github.com/rust-lang/crates.io-index" 1775 - checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 1776 - 1777 - [[package]] 1778 - name = "shlex" 1779 - version = "1.3.0" 1780 - source = "registry+https://github.com/rust-lang/crates.io-index" 1781 - checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1782 - 1783 - [[package]] 1784 - name = "slab" 1785 - version = "0.4.9" 1786 - source = "registry+https://github.com/rust-lang/crates.io-index" 1787 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1788 - dependencies = [ 1789 - "autocfg", 1790 - ] 1791 - 1792 - [[package]] 1793 - name = "smallvec" 1794 - version = "1.13.2" 1795 - source = "registry+https://github.com/rust-lang/crates.io-index" 1796 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1797 - 1798 - [[package]] 1799 - name = "smart-default" 1800 - version = "0.7.1" 1801 - source = "registry+https://github.com/rust-lang/crates.io-index" 1802 - checksum = "0eb01866308440fc64d6c44d9e86c5cc17adfe33c4d6eed55da9145044d0ffc1" 1803 - dependencies = [ 1804 - "proc-macro2", 1805 - "quote", 1806 - "syn", 1807 - ] 1808 - 1809 - [[package]] 1810 - name = "socket2" 1811 - version = "0.5.7" 1812 - source = "registry+https://github.com/rust-lang/crates.io-index" 1813 - checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 1814 - dependencies = [ 1815 - "libc", 1816 - "windows-sys 0.52.0", 1817 - ] 1818 - 1819 - [[package]] 1820 - name = "spin" 1821 - version = "0.9.8" 1822 - source = "registry+https://github.com/rust-lang/crates.io-index" 1823 - checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 1824 - 1825 - [[package]] 1826 - name = "strength_reduce" 1827 - version = "0.2.4" 1828 - source = "registry+https://github.com/rust-lang/crates.io-index" 1829 - checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82" 1830 - 1831 - [[package]] 1832 - name = "strsim" 1833 - version = "0.11.1" 1834 - source = "registry+https://github.com/rust-lang/crates.io-index" 1835 - checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1836 - 1837 - [[package]] 1838 - name = "subtle" 1839 - version = "2.5.0" 1840 - source = "registry+https://github.com/rust-lang/crates.io-index" 1841 - checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 1842 - 1843 - [[package]] 1844 - name = "syn" 1845 - version = "2.0.65" 1846 - source = "registry+https://github.com/rust-lang/crates.io-index" 1847 - checksum = "d2863d96a84c6439701d7a38f9de935ec562c8832cc55d1dde0f513b52fad106" 1848 - dependencies = [ 1849 - "proc-macro2", 1850 - "quote", 1851 - "unicode-ident", 1852 - ] 1853 - 1854 - [[package]] 1855 - name = "sync_wrapper" 1856 - version = "0.1.2" 1857 - source = "registry+https://github.com/rust-lang/crates.io-index" 1858 - checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 1859 - 1860 - [[package]] 1861 - name = "sys-locale" 1862 - version = "0.3.1" 1863 - source = "registry+https://github.com/rust-lang/crates.io-index" 1864 - checksum = "e801cf239ecd6ccd71f03d270d67dd53d13e90aab208bf4b8fe4ad957ea949b0" 1865 - dependencies = [ 1866 - "libc", 1867 - ] 1868 - 1869 - [[package]] 1870 - name = "system-configuration" 1871 - version = "0.5.1" 1872 - source = "registry+https://github.com/rust-lang/crates.io-index" 1873 - checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 1874 - dependencies = [ 1875 - "bitflags 1.3.2", 1876 - "core-foundation", 1877 - "system-configuration-sys", 1878 - ] 1879 - 1880 - [[package]] 1881 - name = "system-configuration-sys" 1882 - version = "0.5.0" 1883 - source = "registry+https://github.com/rust-lang/crates.io-index" 1884 - checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 1885 - dependencies = [ 1886 - "core-foundation-sys", 1887 - "libc", 1888 - ] 1889 - 1890 - [[package]] 1891 - name = "tempfile" 1892 - version = "3.10.1" 1893 - source = "registry+https://github.com/rust-lang/crates.io-index" 1894 - checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 1895 - dependencies = [ 1896 - "cfg-if", 1897 - "fastrand", 1898 - "rustix", 1899 - "windows-sys 0.52.0", 1900 - ] 1901 - 1902 - [[package]] 1903 - name = "thiserror" 1904 - version = "1.0.61" 1905 - source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" 1907 - dependencies = [ 1908 - "thiserror-impl", 1909 - ] 1910 - 1911 - [[package]] 1912 - name = "thiserror-impl" 1913 - version = "1.0.61" 1914 - source = "registry+https://github.com/rust-lang/crates.io-index" 1915 - checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" 1916 - dependencies = [ 1917 - "proc-macro2", 1918 - "quote", 1919 - "syn", 1920 - ] 1921 - 1922 - [[package]] 1923 - name = "time" 1924 - version = "0.3.36" 1925 - source = "registry+https://github.com/rust-lang/crates.io-index" 1926 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 1927 - dependencies = [ 1928 - "deranged", 1929 - "itoa", 1930 - "num-conv", 1931 - "powerfmt", 1932 - "serde", 1933 - "time-core", 1934 - "time-macros", 1935 - ] 1936 - 1937 - [[package]] 1938 - name = "time-core" 1939 - version = "0.1.2" 1940 - source = "registry+https://github.com/rust-lang/crates.io-index" 1941 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 1942 - 1943 - [[package]] 1944 - name = "time-macros" 1945 - version = "0.2.18" 1946 - source = "registry+https://github.com/rust-lang/crates.io-index" 1947 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 1948 - dependencies = [ 1949 - "num-conv", 1950 - "time-core", 1951 - ] 1952 - 1953 - [[package]] 1954 - name = "tinyvec" 1955 - version = "1.6.0" 1956 - source = "registry+https://github.com/rust-lang/crates.io-index" 1957 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1958 - dependencies = [ 1959 - "tinyvec_macros", 1960 - ] 1961 - 1962 - [[package]] 1963 - name = "tinyvec_macros" 1964 - version = "0.1.1" 1965 - source = "registry+https://github.com/rust-lang/crates.io-index" 1966 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1967 - 1968 - [[package]] 1969 - name = "tokio" 1970 - version = "1.38.0" 1971 - source = "registry+https://github.com/rust-lang/crates.io-index" 1972 - checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" 1973 - dependencies = [ 1974 - "backtrace", 1975 - "bytes", 1976 - "libc", 1977 - "mio", 1978 - "num_cpus", 1979 - "pin-project-lite", 1980 - "socket2", 1981 - "tokio-macros", 1982 - "windows-sys 0.48.0", 1983 - ] 1984 - 1985 - [[package]] 1986 - name = "tokio-macros" 1987 - version = "2.3.0" 1988 - source = "registry+https://github.com/rust-lang/crates.io-index" 1989 - checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" 1990 - dependencies = [ 1991 - "proc-macro2", 1992 - "quote", 1993 - "syn", 1994 - ] 1995 - 1996 - [[package]] 1997 - name = "tokio-native-tls" 1998 - version = "0.3.1" 1999 - source = "registry+https://github.com/rust-lang/crates.io-index" 2000 - checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 2001 - dependencies = [ 2002 - "native-tls", 2003 - "tokio", 2004 - ] 2005 - 2006 - [[package]] 2007 - name = "tokio-rustls" 2008 - version = "0.25.0" 2009 - source = "registry+https://github.com/rust-lang/crates.io-index" 2010 - checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" 2011 - dependencies = [ 2012 - "rustls", 2013 - "rustls-pki-types", 2014 - "tokio", 2015 - ] 2016 - 2017 - [[package]] 2018 - name = "tokio-socks" 2019 - version = "0.5.1" 2020 - source = "registry+https://github.com/rust-lang/crates.io-index" 2021 - checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0" 2022 - dependencies = [ 2023 - "either", 2024 - "futures-util", 2025 - "thiserror", 2026 - "tokio", 2027 - ] 2028 - 2029 - [[package]] 2030 - name = "tokio-util" 2031 - version = "0.7.11" 2032 - source = "registry+https://github.com/rust-lang/crates.io-index" 2033 - checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" 2034 - dependencies = [ 2035 - "bytes", 2036 - "futures-core", 2037 - "futures-sink", 2038 - "pin-project-lite", 2039 - "tokio", 2040 - ] 2041 - 2042 - [[package]] 2043 - name = "tower" 2044 - version = "0.4.13" 2045 - source = "registry+https://github.com/rust-lang/crates.io-index" 2046 - checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 2047 - dependencies = [ 2048 - "futures-core", 2049 - "futures-util", 2050 - "pin-project", 2051 - "pin-project-lite", 2052 - "tokio", 2053 - "tower-layer", 2054 - "tower-service", 2055 - "tracing", 2056 - ] 2057 - 2058 - [[package]] 2059 - name = "tower-layer" 2060 - version = "0.3.2" 2061 - source = "registry+https://github.com/rust-lang/crates.io-index" 2062 - checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 2063 - 2064 - [[package]] 2065 - name = "tower-service" 2066 - version = "0.3.2" 2067 - source = "registry+https://github.com/rust-lang/crates.io-index" 2068 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2069 - 2070 - [[package]] 2071 - name = "tracing" 2072 - version = "0.1.40" 2073 - source = "registry+https://github.com/rust-lang/crates.io-index" 2074 - checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2075 - dependencies = [ 2076 - "log", 2077 - "pin-project-lite", 2078 - "tracing-attributes", 2079 - "tracing-core", 2080 - ] 2081 - 2082 - [[package]] 2083 - name = "tracing-attributes" 2084 - version = "0.1.27" 2085 - source = "registry+https://github.com/rust-lang/crates.io-index" 2086 - checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 2087 - dependencies = [ 2088 - "proc-macro2", 2089 - "quote", 2090 - "syn", 2091 - ] 2092 - 2093 - [[package]] 2094 - name = "tracing-core" 2095 - version = "0.1.32" 2096 - source = "registry+https://github.com/rust-lang/crates.io-index" 2097 - checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2098 - dependencies = [ 2099 - "once_cell", 2100 - ] 2101 - 2102 - [[package]] 2103 - name = "transpose" 2104 - version = "0.2.3" 2105 - source = "registry+https://github.com/rust-lang/crates.io-index" 2106 - checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e" 2107 - dependencies = [ 2108 - "num-integer", 2109 - "strength_reduce", 2110 - ] 2111 - 2112 - [[package]] 2113 - name = "try-lock" 2114 - version = "0.2.5" 2115 - source = "registry+https://github.com/rust-lang/crates.io-index" 2116 - checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 2117 - 2118 - [[package]] 2119 - name = "unicase" 2120 - version = "2.7.0" 2121 - source = "registry+https://github.com/rust-lang/crates.io-index" 2122 - checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 2123 - dependencies = [ 2124 - "version_check", 2125 - ] 2126 - 2127 - [[package]] 2128 - name = "unicode-bidi" 2129 - version = "0.3.15" 2130 - source = "registry+https://github.com/rust-lang/crates.io-index" 2131 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 2132 - 2133 - [[package]] 2134 - name = "unicode-ident" 2135 - version = "1.0.12" 2136 - source = "registry+https://github.com/rust-lang/crates.io-index" 2137 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 2138 - 2139 - [[package]] 2140 - name = "unicode-normalization" 2141 - version = "0.1.23" 2142 - source = "registry+https://github.com/rust-lang/crates.io-index" 2143 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 2144 - dependencies = [ 2145 - "tinyvec", 2146 - ] 2147 - 2148 - [[package]] 2149 - name = "unicode-width" 2150 - version = "0.1.12" 2151 - source = "registry+https://github.com/rust-lang/crates.io-index" 2152 - checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6" 2153 - 2154 - [[package]] 2155 - name = "untrusted" 2156 - version = "0.9.0" 2157 - source = "registry+https://github.com/rust-lang/crates.io-index" 2158 - checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2159 - 2160 - [[package]] 2161 - name = "url" 2162 - version = "2.5.0" 2163 - source = "registry+https://github.com/rust-lang/crates.io-index" 2164 - checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 2165 - dependencies = [ 2166 - "form_urlencoded", 2167 - "idna 0.5.0", 2168 - "percent-encoding", 2169 - ] 2170 - 2171 - [[package]] 2172 - name = "utf8parse" 2173 - version = "0.2.1" 2174 - source = "registry+https://github.com/rust-lang/crates.io-index" 2175 - checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 2176 - 2177 - [[package]] 2178 - name = "uuid" 2179 - version = "1.8.0" 2180 - source = "registry+https://github.com/rust-lang/crates.io-index" 2181 - checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" 2182 - dependencies = [ 2183 - "getrandom", 2184 - ] 2185 - 2186 - [[package]] 2187 - name = "vcpkg" 2188 - version = "0.2.15" 2189 - source = "registry+https://github.com/rust-lang/crates.io-index" 2190 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2191 - 2192 - [[package]] 2193 - name = "version_check" 2194 - version = "0.9.4" 2195 - source = "registry+https://github.com/rust-lang/crates.io-index" 2196 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2197 - 2198 - [[package]] 2199 - name = "want" 2200 - version = "0.3.1" 2201 - source = "registry+https://github.com/rust-lang/crates.io-index" 2202 - checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2203 - dependencies = [ 2204 - "try-lock", 2205 - ] 2206 - 2207 - [[package]] 2208 - name = "wasi" 2209 - version = "0.11.0+wasi-snapshot-preview1" 2210 - source = "registry+https://github.com/rust-lang/crates.io-index" 2211 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2212 - 2213 - [[package]] 2214 - name = "wasm-bindgen" 2215 - version = "0.2.92" 2216 - source = "registry+https://github.com/rust-lang/crates.io-index" 2217 - checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 2218 - dependencies = [ 2219 - "cfg-if", 2220 - "wasm-bindgen-macro", 2221 - ] 2222 - 2223 - [[package]] 2224 - name = "wasm-bindgen-backend" 2225 - version = "0.2.92" 2226 - source = "registry+https://github.com/rust-lang/crates.io-index" 2227 - checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 2228 - dependencies = [ 2229 - "bumpalo", 2230 - "log", 2231 - "once_cell", 2232 - "proc-macro2", 2233 - "quote", 2234 - "syn", 2235 - "wasm-bindgen-shared", 2236 - ] 2237 - 2238 - [[package]] 2239 - name = "wasm-bindgen-futures" 2240 - version = "0.4.42" 2241 - source = "registry+https://github.com/rust-lang/crates.io-index" 2242 - checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 2243 - dependencies = [ 2244 - "cfg-if", 2245 - "js-sys", 2246 - "wasm-bindgen", 2247 - "web-sys", 2248 - ] 2249 - 2250 - [[package]] 2251 - name = "wasm-bindgen-macro" 2252 - version = "0.2.92" 2253 - source = "registry+https://github.com/rust-lang/crates.io-index" 2254 - checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 2255 - dependencies = [ 2256 - "quote", 2257 - "wasm-bindgen-macro-support", 2258 - ] 2259 - 2260 - [[package]] 2261 - name = "wasm-bindgen-macro-support" 2262 - version = "0.2.92" 2263 - source = "registry+https://github.com/rust-lang/crates.io-index" 2264 - checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 2265 - dependencies = [ 2266 - "proc-macro2", 2267 - "quote", 2268 - "syn", 2269 - "wasm-bindgen-backend", 2270 - "wasm-bindgen-shared", 2271 - ] 2272 - 2273 - [[package]] 2274 - name = "wasm-bindgen-shared" 2275 - version = "0.2.92" 2276 - source = "registry+https://github.com/rust-lang/crates.io-index" 2277 - checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 2278 - 2279 - [[package]] 2280 - name = "wasm-streams" 2281 - version = "0.4.0" 2282 - source = "registry+https://github.com/rust-lang/crates.io-index" 2283 - checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" 2284 - dependencies = [ 2285 - "futures-util", 2286 - "js-sys", 2287 - "wasm-bindgen", 2288 - "wasm-bindgen-futures", 2289 - "web-sys", 2290 - ] 2291 - 2292 - [[package]] 2293 - name = "web-sys" 2294 - version = "0.3.69" 2295 - source = "registry+https://github.com/rust-lang/crates.io-index" 2296 - checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 2297 - dependencies = [ 2298 - "js-sys", 2299 - "wasm-bindgen", 2300 - ] 2301 - 2302 - [[package]] 2303 - name = "webpki-roots" 2304 - version = "0.26.1" 2305 - source = "registry+https://github.com/rust-lang/crates.io-index" 2306 - checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009" 2307 - dependencies = [ 2308 - "rustls-pki-types", 2309 - ] 2310 - 2311 - [[package]] 2312 - name = "winapi" 2313 - version = "0.3.9" 2314 - source = "registry+https://github.com/rust-lang/crates.io-index" 2315 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2316 - dependencies = [ 2317 - "winapi-i686-pc-windows-gnu", 2318 - "winapi-x86_64-pc-windows-gnu", 2319 - ] 2320 - 2321 - [[package]] 2322 - name = "winapi-i686-pc-windows-gnu" 2323 - version = "0.4.0" 2324 - source = "registry+https://github.com/rust-lang/crates.io-index" 2325 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2326 - 2327 - [[package]] 2328 - name = "winapi-x86_64-pc-windows-gnu" 2329 - version = "0.4.0" 2330 - source = "registry+https://github.com/rust-lang/crates.io-index" 2331 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2332 - 2333 - [[package]] 2334 - name = "windows-core" 2335 - version = "0.52.0" 2336 - source = "registry+https://github.com/rust-lang/crates.io-index" 2337 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 2338 - dependencies = [ 2339 - "windows-targets 0.52.5", 2340 - ] 2341 - 2342 - [[package]] 2343 - name = "windows-sys" 2344 - version = "0.48.0" 2345 - source = "registry+https://github.com/rust-lang/crates.io-index" 2346 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2347 - dependencies = [ 2348 - "windows-targets 0.48.5", 2349 - ] 2350 - 2351 - [[package]] 2352 - name = "windows-sys" 2353 - version = "0.52.0" 2354 - source = "registry+https://github.com/rust-lang/crates.io-index" 2355 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2356 - dependencies = [ 2357 - "windows-targets 0.52.5", 2358 - ] 2359 - 2360 - [[package]] 2361 - name = "windows-targets" 2362 - version = "0.48.5" 2363 - source = "registry+https://github.com/rust-lang/crates.io-index" 2364 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2365 - dependencies = [ 2366 - "windows_aarch64_gnullvm 0.48.5", 2367 - "windows_aarch64_msvc 0.48.5", 2368 - "windows_i686_gnu 0.48.5", 2369 - "windows_i686_msvc 0.48.5", 2370 - "windows_x86_64_gnu 0.48.5", 2371 - "windows_x86_64_gnullvm 0.48.5", 2372 - "windows_x86_64_msvc 0.48.5", 2373 - ] 2374 - 2375 - [[package]] 2376 - name = "windows-targets" 2377 - version = "0.52.5" 2378 - source = "registry+https://github.com/rust-lang/crates.io-index" 2379 - checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 2380 - dependencies = [ 2381 - "windows_aarch64_gnullvm 0.52.5", 2382 - "windows_aarch64_msvc 0.52.5", 2383 - "windows_i686_gnu 0.52.5", 2384 - "windows_i686_gnullvm", 2385 - "windows_i686_msvc 0.52.5", 2386 - "windows_x86_64_gnu 0.52.5", 2387 - "windows_x86_64_gnullvm 0.52.5", 2388 - "windows_x86_64_msvc 0.52.5", 2389 - ] 2390 - 2391 - [[package]] 2392 - name = "windows_aarch64_gnullvm" 2393 - version = "0.48.5" 2394 - source = "registry+https://github.com/rust-lang/crates.io-index" 2395 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2396 - 2397 - [[package]] 2398 - name = "windows_aarch64_gnullvm" 2399 - version = "0.52.5" 2400 - source = "registry+https://github.com/rust-lang/crates.io-index" 2401 - checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 2402 - 2403 - [[package]] 2404 - name = "windows_aarch64_msvc" 2405 - version = "0.48.5" 2406 - source = "registry+https://github.com/rust-lang/crates.io-index" 2407 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2408 - 2409 - [[package]] 2410 - name = "windows_aarch64_msvc" 2411 - version = "0.52.5" 2412 - source = "registry+https://github.com/rust-lang/crates.io-index" 2413 - checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 2414 - 2415 - [[package]] 2416 - name = "windows_i686_gnu" 2417 - version = "0.48.5" 2418 - source = "registry+https://github.com/rust-lang/crates.io-index" 2419 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2420 - 2421 - [[package]] 2422 - name = "windows_i686_gnu" 2423 - version = "0.52.5" 2424 - source = "registry+https://github.com/rust-lang/crates.io-index" 2425 - checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 2426 - 2427 - [[package]] 2428 - name = "windows_i686_gnullvm" 2429 - version = "0.52.5" 2430 - source = "registry+https://github.com/rust-lang/crates.io-index" 2431 - checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 2432 - 2433 - [[package]] 2434 - name = "windows_i686_msvc" 2435 - version = "0.48.5" 2436 - source = "registry+https://github.com/rust-lang/crates.io-index" 2437 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2438 - 2439 - [[package]] 2440 - name = "windows_i686_msvc" 2441 - version = "0.52.5" 2442 - source = "registry+https://github.com/rust-lang/crates.io-index" 2443 - checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 2444 - 2445 - [[package]] 2446 - name = "windows_x86_64_gnu" 2447 - version = "0.48.5" 2448 - source = "registry+https://github.com/rust-lang/crates.io-index" 2449 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2450 - 2451 - [[package]] 2452 - name = "windows_x86_64_gnu" 2453 - version = "0.52.5" 2454 - source = "registry+https://github.com/rust-lang/crates.io-index" 2455 - checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 2456 - 2457 - [[package]] 2458 - name = "windows_x86_64_gnullvm" 2459 - version = "0.48.5" 2460 - source = "registry+https://github.com/rust-lang/crates.io-index" 2461 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2462 - 2463 - [[package]] 2464 - name = "windows_x86_64_gnullvm" 2465 - version = "0.52.5" 2466 - source = "registry+https://github.com/rust-lang/crates.io-index" 2467 - checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 2468 - 2469 - [[package]] 2470 - name = "windows_x86_64_msvc" 2471 - version = "0.48.5" 2472 - source = "registry+https://github.com/rust-lang/crates.io-index" 2473 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2474 - 2475 - [[package]] 2476 - name = "windows_x86_64_msvc" 2477 - version = "0.52.5" 2478 - source = "registry+https://github.com/rust-lang/crates.io-index" 2479 - checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 2480 - 2481 - [[package]] 2482 - name = "winreg" 2483 - version = "0.52.0" 2484 - source = "registry+https://github.com/rust-lang/crates.io-index" 2485 - checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" 2486 - dependencies = [ 2487 - "cfg-if", 2488 - "windows-sys 0.48.0", 2489 - ] 2490 - 2491 - [[package]] 2492 - name = "xattr" 2493 - version = "1.3.1" 2494 - source = "registry+https://github.com/rust-lang/crates.io-index" 2495 - checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" 2496 - dependencies = [ 2497 - "libc", 2498 - "linux-raw-sys", 2499 - "rustix", 2500 - ] 2501 - 2502 - [[package]] 2503 - name = "zeroize" 2504 - version = "1.7.0" 2505 - source = "registry+https://github.com/rust-lang/crates.io-index" 2506 - checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
···
-55
pkgs/by-name/cr/crunchy-cli/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - darwin, 5 - fetchFromGitHub, 6 - openssl, 7 - pkg-config, 8 - rustPlatform, 9 - nix-update-script, 10 - }: 11 - 12 - rustPlatform.buildRustPackage rec { 13 - pname = "crunchy-cli"; 14 - version = "3.6.7"; 15 - 16 - src = fetchFromGitHub { 17 - owner = "crunchy-labs"; 18 - repo = "crunchy-cli"; 19 - rev = "v${version}"; 20 - hash = "sha256-qBIfDkd4a0m1GNgK4tSq2/dLP8K5Pp4m/M468eHgIAg="; 21 - }; 22 - 23 - cargoLock = { 24 - lockFile = ./Cargo.lock; 25 - outputHashes = { 26 - "native-tls-0.2.12" = "sha256-YqiX3xj2ionDlDRzkClqkt0E4HY4zt0B6+rGf850ZCk="; 27 - }; 28 - }; 29 - 30 - nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ 31 - pkg-config 32 - ]; 33 - 34 - buildInputs = 35 - lib.optionals stdenv.hostPlatform.isLinux [ 36 - openssl 37 - ] 38 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 39 - darwin.apple_sdk.frameworks.SystemConfiguration 40 - ]; 41 - 42 - env = { 43 - OPENSSL_NO_VENDOR = true; 44 - }; 45 - 46 - passthru.updateScript = nix-update-script { }; 47 - 48 - meta = { 49 - description = "Command-line downloader for Crunchyroll"; 50 - homepage = "https://github.com/crunchy-labs/crunchy-cli"; 51 - license = lib.licenses.mit; 52 - maintainers = with lib.maintainers; [ stepbrobd ]; 53 - mainProgram = "crunchy-cli"; 54 - }; 55 - }
···
+2 -2
pkgs/by-name/do/doctl/package.nix
··· 2 3 buildGoModule rec { 4 pname = "doctl"; 5 - version = "1.123.0"; 6 7 vendorHash = null; 8 ··· 31 owner = "digitalocean"; 32 repo = "doctl"; 33 rev = "v${version}"; 34 - sha256 = "sha256-B7xUo59qyftjZj2ywJROaWYPkfelqPSkY3YqR2y+/jw="; 35 }; 36 37 meta = with lib; {
··· 2 3 buildGoModule rec { 4 pname = "doctl"; 5 + version = "1.124.0"; 6 7 vendorHash = null; 8 ··· 31 owner = "digitalocean"; 32 repo = "doctl"; 33 rev = "v${version}"; 34 + sha256 = "sha256-B3qozldNmCYLCuBoWMHycf9gNKbvUvPHK2CDOvMYEt8="; 35 }; 36 37 meta = with lib; {
+3 -3
pkgs/by-name/fi/files-cli/package.nix
··· 8 9 buildGoModule rec { 10 pname = "files-cli"; 11 - version = "2.13.258"; 12 13 src = fetchFromGitHub { 14 repo = "files-cli"; 15 owner = "files-com"; 16 rev = "v${version}"; 17 - hash = "sha256-Idd0FJ/zi0S6hFvjKNw1a1cIEhccE+2e9azxaREtdiw="; 18 }; 19 20 - vendorHash = "sha256-fzDJSvYQkWyPSHrIoOeDHNLM3UWdCv9Wh8E1CxLLNhg="; 21 22 ldflags = [ 23 "-s"
··· 8 9 buildGoModule rec { 10 pname = "files-cli"; 11 + version = "2.13.266"; 12 13 src = fetchFromGitHub { 14 repo = "files-cli"; 15 owner = "files-com"; 16 rev = "v${version}"; 17 + hash = "sha256-96DSnobVyG50iS6NyCMpZ74KWEtkCyNdFyGXLwrSZxo="; 18 }; 19 20 + vendorHash = "sha256-ilof8neXlw2Oa3OVceiRbXBkj5nfw+b6VMjMWhPgJqI="; 21 22 ldflags = [ 23 "-s"
+3 -2
pkgs/by-name/fl/flexget/package.nix
··· 7 8 python3Packages.buildPythonApplication rec { 9 pname = "flexget"; 10 - version = "3.15.25"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "Flexget"; 15 repo = "Flexget"; 16 tag = "v${version}"; 17 - hash = "sha256-7+QSt+W6M3AjF3eLq1aqZPyQs2LrZD0RlVTBTUJngAc="; 18 }; 19 20 pythonRelaxDeps = true; ··· 71 cloudscraper 72 python-telegram-bot 73 boto3 74 ]; 75 76 pythonImportsCheck = [
··· 7 8 python3Packages.buildPythonApplication rec { 9 pname = "flexget"; 10 + version = "3.15.30"; 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "Flexget"; 15 repo = "Flexget"; 16 tag = "v${version}"; 17 + hash = "sha256-iGEGQxzvyyOeL/v0j1TiAjx2fa2tCZeRJ7VQByWpxJg="; 18 }; 19 20 pythonRelaxDeps = true; ··· 71 cloudscraper 72 python-telegram-bot 73 boto3 74 + libtorrent-rasterbar 75 ]; 76 77 pythonImportsCheck = [
+1
pkgs/by-name/fl/flock/package.nix
··· 33 34 meta = with lib; { 35 description = "Cross-platform version of flock(1)"; 36 maintainers = with maintainers; [ matthewbauer ]; 37 mainProgram = "flock"; 38 platforms = platforms.all;
··· 33 34 meta = with lib; { 35 description = "Cross-platform version of flock(1)"; 36 + homepage = "https://github.com/discoteq/flock"; 37 maintainers = with maintainers; [ matthewbauer ]; 38 mainProgram = "flock"; 39 platforms = platforms.all;
+3 -3
pkgs/by-name/fr/frankenphp/package.nix
··· 31 in 32 buildGoModule rec { 33 pname = "frankenphp"; 34 - version = "1.4.4"; 35 36 src = fetchFromGitHub { 37 owner = "dunglas"; 38 repo = "frankenphp"; 39 tag = "v${version}"; 40 - hash = "sha256-KuCc9IBneRst8ZnKksTX/8Z4/voVZxpymkZAXYmc37E="; 41 }; 42 43 sourceRoot = "${src.name}/caddy"; ··· 45 # frankenphp requires C code that would be removed with `go mod tidy` 46 # https://github.com/golang/go/issues/26366 47 proxyVendor = true; 48 - vendorHash = "sha256-lXVxROMrEoQuIC7DyK78UsbPtbIyZfQ5JGzkVzhOoWk="; 49 50 buildInputs = [ 51 phpUnwrapped
··· 31 in 32 buildGoModule rec { 33 pname = "frankenphp"; 34 + version = "1.5.0"; 35 36 src = fetchFromGitHub { 37 owner = "dunglas"; 38 repo = "frankenphp"; 39 tag = "v${version}"; 40 + hash = "sha256-VOvH4Ma7IRDL2U6ihC620g9hvBcbt4VKP9SQxV1n3RM="; 41 }; 42 43 sourceRoot = "${src.name}/caddy"; ··· 45 # frankenphp requires C code that would be removed with `go mod tidy` 46 # https://github.com/golang/go/issues/26366 47 proxyVendor = true; 48 + vendorHash = "sha256-ltT6RHGcEMJjCkqWWwtVrCUpPs2F8U0yBx+YbzGwfSo="; 49 50 buildInputs = [ 51 phpUnwrapped
+3 -3
pkgs/by-name/go/go-mockery/package.nix
··· 11 12 buildGoModule rec { 13 pname = "go-mockery"; 14 - version = "2.53.2"; 15 16 src = fetchFromGitHub { 17 owner = "vektra"; 18 repo = "mockery"; 19 rev = "v${version}"; 20 - sha256 = "sha256-8J9sx9rPBZXZQKmuDSAuuktONyNM2U32W8CM9jts4Hw="; 21 }; 22 23 ldflags = [ ··· 30 env.CGO_ENABLED = false; 31 32 proxyVendor = true; 33 - vendorHash = "sha256-4dZnffxyxTex5wvdWP4rRslW+I8/XC1RhhrljgI630I="; 34 35 subPackages = [ "." ]; 36
··· 11 12 buildGoModule rec { 13 pname = "go-mockery"; 14 + version = "2.53.3"; 15 16 src = fetchFromGitHub { 17 owner = "vektra"; 18 repo = "mockery"; 19 rev = "v${version}"; 20 + sha256 = "sha256-X0cHpv4o6pzgjg7+ULCuFkspeff95WFtJbVHqy4LxAg="; 21 }; 22 23 ldflags = [ ··· 30 env.CGO_ENABLED = false; 31 32 proxyVendor = true; 33 + vendorHash = "sha256-AQY4x2bLqMwHIjoKHzEm1hebR29gRs3LJN8i00Uup5o="; 34 35 subPackages = [ "." ]; 36
+3 -3
pkgs/by-name/gq/gqlgen/package.nix
··· 6 }: 7 8 let 9 - version = "0.17.67"; 10 in 11 buildGoModule { 12 pname = "gqlgen"; ··· 16 owner = "99designs"; 17 repo = "gqlgen"; 18 tag = "v${version}"; 19 - hash = "sha256-pNxV+8hkTksdOhAB+Z0pRKe1BUCk7zsZq4YaQ41jXkg="; 20 }; 21 22 - vendorHash = "sha256-uxNKI6yQ/oyBlgBHODs6CeTVEfm6PUIPwoTsezZmbRA="; 23 24 subPackages = [ "." ]; 25
··· 6 }: 7 8 let 9 + version = "0.17.68"; 10 in 11 buildGoModule { 12 pname = "gqlgen"; ··· 16 owner = "99designs"; 17 repo = "gqlgen"; 18 tag = "v${version}"; 19 + hash = "sha256-zu9Rgxua19dZNLUeJeMklKB0C95E8UVWGu/I5Lkk66E="; 20 }; 21 22 + vendorHash = "sha256-B3RiZZee6jefslUSTfHDth8WUl5rv7fmEFU0DpKkWZk="; 23 24 subPackages = [ "." ]; 25
+3 -3
pkgs/by-name/hc/hcp/package.nix
··· 8 9 buildGoModule rec { 10 pname = "hcp"; 11 - version = "0.8.0"; 12 13 src = fetchFromGitHub { 14 owner = "hashicorp"; 15 repo = "hcp"; 16 tag = "v${version}"; 17 - hash = "sha256-YOOaQh1OsRn5EV9RmUdWWdHx5bMFC+a1qFzUGb6lpew="; 18 }; 19 20 - vendorHash = "sha256-/Nf180odZB5X3Fj4cfz0TdYEfGKtkkh4qI9eRfz+meQ="; 21 22 preCheck = '' 23 export HOME=$TMPDIR
··· 8 9 buildGoModule rec { 10 pname = "hcp"; 11 + version = "0.9.0"; 12 13 src = fetchFromGitHub { 14 owner = "hashicorp"; 15 repo = "hcp"; 16 tag = "v${version}"; 17 + hash = "sha256-DyfrT4Z4pF7o6nBoacpEE0jT/dxRRm7nr3KsXJTwtOQ="; 18 }; 19 20 + vendorHash = "sha256-Tq7Lu9rZCLpy7CiZQey5/y1hZPEvdSsy1BgEFWNVeAk="; 21 22 preCheck = '' 23 export HOME=$TMPDIR
+3 -3
pkgs/by-name/he/heimdall-proxy/package.nix
··· 4 lib, 5 }: 6 let 7 - version = "0.15.9"; 8 in 9 buildGoModule { 10 pname = "heimdall-proxy"; ··· 15 owner = "dadrus"; 16 repo = "heimdall"; 17 tag = "v${version}"; 18 - hash = "sha256-nrYeNVSDvGTRywhTLFLylnSz1jhR/1OSKDaRj2sDe5o="; 19 }; 20 21 - vendorHash = "sha256-Rz1v2jusP9edDpoFaiwb7ZatuSeg9sqFS7j2JZtNJio="; 22 23 tags = [ "sqlite" ]; 24
··· 4 lib, 5 }: 6 let 7 + version = "0.15.10"; 8 in 9 buildGoModule { 10 pname = "heimdall-proxy"; ··· 15 owner = "dadrus"; 16 repo = "heimdall"; 17 tag = "v${version}"; 18 + hash = "sha256-WB8ZfuL8zNJ4UK6hbFapCjbRg/xMXxMeoajXZliLVD0="; 19 }; 20 21 + vendorHash = "sha256-WFtqZTCaL3oZArWhVjeTH085O2BkY7y1feUJuRllY7E="; 22 23 tags = [ "sqlite" ]; 24
+3 -3
pkgs/by-name/is/istioctl/package.nix
··· 7 8 buildGoModule rec { 9 pname = "istioctl"; 10 - version = "1.25.0"; 11 12 src = fetchFromGitHub { 13 owner = "istio"; 14 repo = "istio"; 15 rev = version; 16 - hash = "sha256-dTV5yjQZG7RjfUmXGil6ad46HaZzUCwk27EdP+yYbRE="; 17 }; 18 - vendorHash = "sha256-KecRVqI00F/qoLkbi1CaKotyTnSp0K/u7xKPb45TYMY="; 19 20 nativeBuildInputs = [ installShellFiles ]; 21
··· 7 8 buildGoModule rec { 9 pname = "istioctl"; 10 + version = "1.25.1"; 11 12 src = fetchFromGitHub { 13 owner = "istio"; 14 repo = "istio"; 15 rev = version; 16 + hash = "sha256-DAr7JHZsop1+BuPKC5mD+9pL4JFEp6jjjeSvX+I9uH0="; 17 }; 18 + vendorHash = "sha256-dhAJEjKq1wfti2j2xt3NoQUoVRgowIKJhUfJxsFG5yw="; 19 20 nativeBuildInputs = [ installShellFiles ]; 21
+2 -2
pkgs/by-name/jj/jjui/package.nix
··· 6 }: 7 buildGoModule rec { 8 pname = "jjui"; 9 - version = "0.7"; 10 11 src = fetchFromGitHub { 12 owner = "idursun"; 13 repo = "jjui"; 14 tag = "v${version}"; 15 - hash = "sha256-y93ANgIlHafwZJ1jOIzGxt81G6YbHO7/PFqYovgGBMc="; 16 }; 17 18 vendorHash = "sha256-84VMhT+Zbub9sw+lAKEZba1aXcRaTIbnYhJ7zJt118Y=";
··· 6 }: 7 buildGoModule rec { 8 pname = "jjui"; 9 + version = "0.7.2"; 10 11 src = fetchFromGitHub { 12 owner = "idursun"; 13 repo = "jjui"; 14 tag = "v${version}"; 15 + hash = "sha256-dtMkq94p9e6c336WWg+0noJMIezuca8mt5h+zLuYpCg="; 16 }; 17 18 vendorHash = "sha256-84VMhT+Zbub9sw+lAKEZba1aXcRaTIbnYhJ7zJt118Y=";
+2 -2
pkgs/by-name/ke/kea/package.nix
··· 24 25 stdenv.mkDerivation rec { 26 pname = "kea"; 27 - version = "2.6.1"; # only even minor versions are stable 28 29 src = fetchurl { 30 url = "https://ftp.isc.org/isc/${pname}/${version}/${pname}-${version}.tar.gz"; 31 - hash = "sha256-0s4UqRwuJIrSh24pFS1ke8xeQzvGja+tDuluwWb8+tE="; 32 }; 33 34 patches = [
··· 24 25 stdenv.mkDerivation rec { 26 pname = "kea"; 27 + version = "2.6.2"; # only even minor versions are stable 28 29 src = fetchurl { 30 url = "https://ftp.isc.org/isc/${pname}/${version}/${pname}-${version}.tar.gz"; 31 + hash = "sha256-ilC2MQNzS1nDuGGczWdm0t/uPwLjpfnzq8HNVfcPpCQ="; 32 }; 33 34 patches = [
+181 -103
pkgs/by-name/ke/key/deps.json
··· 21 "jar": "sha256-CV/R3HeIjAc/C+OaAYFW7lJnInmLCd6eKF7yE14W6sQ=", 22 "pom": "sha256-NQkZQkMk4nUKPdwvobzmqQrIziklaYpgqbTR1uSSL/4=" 23 }, 24 - "com/diffplug/spotless#com.diffplug.spotless.gradle.plugin/6.16.0": { 25 - "pom": "sha256-t7fpzal2JnrDlnQg2XKuFdCUKpaOAao/w001t4FqJB8=" 26 }, 27 - "com/diffplug/spotless#spotless-lib-extra/2.36.0": { 28 - "jar": "sha256-MZG1Gw6vUU0mzly9R+1gf9mrJj7QovAYqBkBYR+IbB4=", 29 - "module": "sha256-8aXEkvFOqReh69NvxgccnJN2Zkla5crmxIo+Gk5ydWA=", 30 - "pom": "sha256-nvcS3CwkJ9Hc7ZuCUwT2N2qsGrZbnW0weWVQaYqaJ5c=" 31 }, 32 - "com/diffplug/spotless#spotless-lib/2.36.0": { 33 - "jar": "sha256-X8YG5rHmDzRUljPq3WvjuL78W5phU4h1S2EpdShJ8W4=", 34 - "module": "sha256-aPxoow80oNLAqh/z8l9Rq9OnJZFzX7cVR4YIARJjCCE=", 35 - "pom": "sha256-XOa+58kXCmyUnZTvtzrRWbcBckyR3KT8kHWRfJ5aEMk=" 36 }, 37 - "com/diffplug/spotless#spotless-plugin-gradle/6.16.0": { 38 - "jar": "sha256-4O/38KyEdJg/vJLxYwLHgq8VZueixfHaSoyWB9pMKhs=", 39 - "module": "sha256-kT7gdWRyP7wqf62KiHFJvk8TpM65u775lF6m9fZt0Po=", 40 - "pom": "sha256-c2VdzN3MnbLEY9abWSaedUrpw8ueVIIiDc1DvsE1TKM=" 41 }, 42 "com/fasterxml#oss-parent/48": { 43 "pom": "sha256-EbuiLYYxgW4JtiOiAHR0U9ZJGmbqyPXAicc9ordJAU8=" ··· 73 "jar": "sha256-BONySYTipcv1VgbPo3KlvT08XSohUzpwBOPN5Tl2H6U=", 74 "pom": "sha256-Q8K5sULnBV0fKlgn8QlEkl0idH2XVrMlDAeqtHU4qXE=" 75 }, 76 - "com/googlecode/javaewah#JavaEWAH/1.1.13": { 77 - "jar": "sha256-TA/aKx0xd1DX6jJONscLK8SDEMCqrme5jfCRXWltcRE=", 78 - "pom": "sha256-lyWx/pxoENl3dQu4RBXqEILEtIjUqDn5cEu09ej8F/Q=" 79 }, 80 "com/mycila#license-maven-plugin-parent/3.0": { 81 "pom": "sha256-DR8XPOud8hKSZ2Z8EMiR5eXXJm2C46hQcGaNtW2wy/o=" ··· 95 "jar": "sha256-hw+TlnieL0inuPso38BwwvjnSyAHJ0ziPmm2WBEP0pQ=", 96 "pom": "sha256-64P2FpRcjH37TYDm+QnnKG9SO7EQd4ArzSFr1w6ccXo=" 97 }, 98 "commons-io#commons-io/2.11.0": { 99 "jar": "sha256-lhsvbYfbrMXVSr9Fq3puJJX4m3VZiWLYxyPOqbwhCQg=", 100 "pom": "sha256-LgFv1+MkS18sIKytg02TqkeQSG7h5FZGQTYaPoMe71k=" ··· 106 "commons-logging#commons-logging/1.1.1": { 107 "jar": "sha256-zm+RPK0fDbOq1wGG1lxbx//Mmpnj/o4LE3MSgZ98Ni8=", 108 "pom": "sha256-0PLhbQVOi7l63ZyiZSXrI0b2koCfzSooeH2ozrPDXug=" 109 }, 110 "gradle/plugin/com/hierynomus/gradle/plugins#license-gradle-plugin/0.16.1": { 111 "jar": "sha256-vTz8QElIBmJZ+vHfCRGMxU14s9VpaFSAi31bOzurpi0=", ··· 138 "org/apache#apache/27": { 139 "pom": "sha256-srD8aeIqZQw4kvHDZtdwdvKVdcZzjfTHpwpEhESEzfk=" 140 }, 141 "org/apache#apache/4": { 142 "pom": "sha256-npMjomuo6yOU7+8MltMbcN9XCAhjDcFHyrHnNUHMUZQ=" 143 }, ··· 180 }, 181 "org/apache/commons#commons-parent/52": { 182 "pom": "sha256-ddvo806Y5MP/QtquSi+etMvNO18QR9VEYKzpBtu0UC4=" 183 }, 184 "org/apache/commons#commons-pool2/2.2": { 185 "jar": "sha256-h4Czu7Mah5fnTp8wIvBD3a3Crui+Y9lPgIKmoWVGxBs=", ··· 259 "org/eclipse/jetty#jetty-bom/9.4.50.v20221201": { 260 "pom": "sha256-TN5uUz1gHq+LZazulWt3BsGBkvJ1XQI9fo0Zu31bOUM=" 261 }, 262 - "org/eclipse/jgit#org.eclipse.jgit-parent/6.4.0.202211300538-r": { 263 - "pom": "sha256-WEE7RzI80aRWLJNcZy1VGVUruaYRuQP8igcwXlQ7icU=" 264 }, 265 - "org/eclipse/jgit#org.eclipse.jgit/6.4.0.202211300538-r": { 266 - "jar": "sha256-wUh5ierbU71YpHty+waWNjl7uN/t8hOHpAqGw+ey+qw=", 267 - "pom": "sha256-9ja7QmqoCtQGzr1zKrEXw9cHLBFsupggIYRSnO+mnFY=" 268 }, 269 "org/jdom#jdom2/2.0.6.1": { 270 "jar": "sha256-CyD0XjoP2PDRLNxTFrBndukCsTZdsAEYh2+RdcYPMCw=", 271 "pom": "sha256-VXleEBi4rmR7k3lnz4EKmbCFgsI3TnhzwShzTIyRS/M=" 272 }, 273 "org/junit#junit-bom/5.7.2": { 274 "module": "sha256-87zrHFndT2mT9DBN/6WAFyuN9lp2zTb6T9ksBXjSitg=", 275 "pom": "sha256-zRSqqGmZH4ICHFhdVw0x/zQry6WLtEIztwGTdxuWSHs=" ··· 277 "org/junit#junit-bom/5.9.1": { 278 "module": "sha256-kCbBZWaQ+hRa117Og2dCEaoSrYkwqRsQfC9c3s4vGxw=", 279 "pom": "sha256-sWPBz8j8H9WLRXoA1YbATEbphtdZBOnKVMA6l9ZbSWw=" 280 }, 281 "org/ow2#ow2/1.5.1": { 282 "pom": "sha256-Mh3bt+5v5PU96mtM1tt0FU1r+kI5HB92OzYbn0hazwU=" ··· 293 "jar": "sha256-OdDis9xFr2Wgmwl5RXUKlKEm4FLhJPk0aEQ6HQ4V84E=", 294 "pom": "sha256-SDdR5I+y0fQ8Ya06sA/6Rm7cAzPY/C/bWibpXTKYI5Q=" 295 }, 296 - "org/slf4j#slf4j-api/1.7.30": { 297 - "jar": "sha256-zboHlk0btAoHYUhcax6ML4/Z6x0ZxTkorA1/lRAQXFc=", 298 - "pom": "sha256-fgdHdR6bZ+Gdy1IG8E6iLMA9JQxCJCZALq3QNRPywxQ=" 299 }, 300 - "org/slf4j#slf4j-parent/1.7.30": { 301 - "pom": "sha256-EWR5VuSKDFv7OsM/bafoPzQQAraFfv0zWlBbaHvjS3U=" 302 }, 303 "org/sonatype/forge#forge-parent/4": { 304 "pom": "sha256-GDjRMkeQBbS3RZt5jp2ZFVFQkMKICC/c2G2wsQmDokw=" ··· 335 "org/springframework#spring-parent/3.1.3.RELEASE": { 336 "pom": "sha256-ZOkRARj4KhQnWaMW0J09jY1xfV2VB51/aziO5Hn6eC8=" 337 }, 338 "org/vafer#jdependency/2.8.0": { 339 "jar": "sha256-v9LMfhv8eKqDtEwKVL8s3jikOC7CRyivaD2Y3GvngZI=", 340 "pom": "sha256-EBhn8/npJlei74mjELYE1D0JDJuQqj4LBS3NFqO78y0=" ··· 349 "jar": "sha256-9XWbf838g6UloDbe7cvTLltTa2JevCgkJvFsoTfrWQI=", 350 "pom": "sha256-dwRxCQykChe55DbuLsAIGb5CBC2m9Ahezh03kW3Aj/k=" 351 }, 352 - "ch/qos/logback#logback-classic/1.4.8": { 353 - "jar": "sha256-5tnBIIv2ZMQnufX+lwuDcveUJHRzaTw/XSRA+mt7tSc=", 354 - "pom": "sha256-GOI+XJts04m55gnu7km1XRURtdE6g+/2peAFAJPYadk=" 355 }, 356 - "ch/qos/logback#logback-core/1.4.8": { 357 - "jar": "sha256-EjRTFCtBtie8DQNdH+6MHtTer6z72svjojiTTBmgYno=", 358 - "pom": "sha256-njguj3OLVBiXfjwQwcFZJuXwHn1QDVHZmqpQxqSerMw=" 359 }, 360 - "ch/qos/logback#logback-parent/1.4.8": { 361 - "pom": "sha256-83hJR2Jabz7XbSgtoOIuYVJ/kOfvllGm1ezx0mwY2mY=" 362 }, 363 "com/beust#jcommander/1.48": { 364 "jar": "sha256-pzE/z94HCTDkDsee3zxZSM805PDSXLOgn5lj2L3YQRM=", ··· 408 "jar": "sha256-PfVyskCmjRO1zXeK0jk+iF0mQRQ0zY8JisWYfqLmTOM=", 409 "pom": "sha256-Pe8rKa9KGa2AXLFTBWklqJqQP5L77hre4S7S/BTETug=" 410 }, 411 - "com/miglayout#miglayout-core/11.1": { 412 - "jar": "sha256-6qoDeHmJuuyi1xVYVFL3oWTYydUFkXcx6Zm0+ODZywQ=", 413 - "pom": "sha256-TDxDWInIEEIAP7RqrD9Q1DqjNHCgJTaEEpFY+FmFu8I=" 414 }, 415 - "com/miglayout#miglayout-parent/11.1": { 416 - "pom": "sha256-vLy8hQYQqWkqV1US2xVPt+YMuXUrMzNKLeaqFZFP2xE=" 417 }, 418 - "com/miglayout#miglayout-swing/11.1": { 419 - "jar": "sha256-U8pq8ys32FhvuVCHZeJy30ry2Q5NWewMx/6+Jp0W2f0=", 420 - "pom": "sha256-si//ijUkv+cV545/Ze+Fv1H9jGry06FmZxfEsWt6yh4=" 421 }, 422 "com/puppycrawl/tools#checkstyle/10.6.0": { 423 "jar": "sha256-MTe8hcSBsytp9K2S0grpnZ0VKBFXwCG2VBpNup2TPBY=", ··· 439 "jar": "sha256-P2/7EM6FPvL2+TS0Z8zBPJwXCLTYOhpWZP2wfgeOjhw=", 440 "pom": "sha256-TeCd0zhFd9Vzo9lP85jNe4SUbEJkDzhSva2X9yl0YXQ=" 441 }, 442 - "junit#junit/4.13.2": { 443 - "jar": "sha256-jklbY0Rp1k+4rPo0laBly6zIoP/1XOHjEAe+TBbcV9M=", 444 - "pom": "sha256-Vptpd+5GA8llwcRsMFj6bpaSkbAWDraWTdCSzYnq3ZQ=" 445 }, 446 "net/java/dev/javacc#javacc/4.0": { 447 "jar": "sha256-z7qy1qzbN2TivLXAhCpZ9YPLXoui61wTqNuYNoqtzC8=", ··· 503 "org/antlr#antlr4-master/4.11.1": { 504 "pom": "sha256-cupd6Nq7ZhV4X9D+qqur1T3NrnD+FrzXx7lobApuAK0=" 505 }, 506 - "org/antlr#antlr4-master/4.13.0": { 507 - "pom": "sha256-IiBv17pJUVLlJvUO/sn8j03QX8tD38+PJk6Dffa2Qk8=" 508 }, 509 "org/antlr#antlr4-master/4.7.2": { 510 "pom": "sha256-upnLJdI5DzhoDHUChCoO4JWdHmQD4BPM/2mP1YVu6tE=" ··· 513 "jar": "sha256-4GxlU8HMwU02BS7EsPxvE7gIz5V7Wx3D9hv0AZlq2lk=", 514 "pom": "sha256-xFbsKVkHjFkfvX72mtlACnJ5IAaNdGmJx0q4BO1oGzQ=" 515 }, 516 - "org/antlr#antlr4-runtime/4.13.0": { 517 - "jar": "sha256-vX97XQe8CwR/EJFbMspLsd6eV9gEkJiILkRTyIwHal0=", 518 - "pom": "sha256-GY40+1rHWXsaPDGTAwHgjOlB5cpQQRbdVKOnU3iRSn8=" 519 }, 520 "org/antlr#antlr4-runtime/4.7.2": { 521 "jar": "sha256-TFGLh9S9/4tEzYy8GvgW6US2Kj/luAt4FQHPH0dZu8Q=", 522 "pom": "sha256-3AnLqYwl08BuSuxRaIXUw68DBiulX0/mKD/JzxdqYPs=" 523 }, 524 - "org/antlr#antlr4/4.13.0": { 525 - "jar": "sha256-HA3rJpklFJIvuLmWGRmPCcMveYQkbcatHDu8SYPeHTU=", 526 - "pom": "sha256-OdLSWEk8QnvL1EAGP34PQqt4j6wVp4wP73RK5hk2d8k=" 527 }, 528 "org/apache#apache/16": { 529 "pom": "sha256-n4X/L9fWyzCXqkf7QZ7n8OvoaRCfmKup9Oyj9J50pA4=" ··· 533 }, 534 "org/apache#apache/23": { 535 "pom": "sha256-vBBiTgYj82V3+sVjnKKTbTJA7RUvttjVM6tNJwVDSRw=" 536 }, 537 "org/apache/commons#commons-lang3/3.8.1": { 538 "jar": "sha256-2sgH9lsHaY/zmxsHv+89h64/1G2Ru/iivAKyqDFhb2g=", ··· 573 "module": "sha256-4IAoExN1s1fR0oc06aT7QhbahLJAZByz7358fWKCI/w=", 574 "pom": "sha256-MjVQgdEJCVw9XTdNWkO09MG3XVSemD71ByPidy5TAqA=" 575 }, 576 - "org/beanshell#bsh/1.3.0": { 577 - "jar": "sha256-mwTtx10Z21TxtOi1NV6TZDhMbPcesKG5ckwVnXeYefg=", 578 - "pom": "sha256-DyaKBXFp+qO6hALh+8K54K4Z3voYt+xeC+hSvLoGgp0=" 579 - }, 580 "org/checkerframework#checker-qual/3.27.0": { 581 "jar": "sha256-Jf2m8+su4hOf9dfTmSZn1Sbr8bD7h982/HWqNWeebas=", 582 "module": "sha256-H1L7VyqCR4PvVyPW0LejEUOz2JKpQerXur4OH/kWM30=", 583 "pom": "sha256-yXIt1Co1ywpkPGgAoo2sf8UXbYDkz2v4XBgjdzFjOrk=" 584 }, 585 - "org/hamcrest#hamcrest-core/1.3": { 586 - "jar": "sha256-Zv3vkelzk0jfeglqo4SlaF9Oh1WEzOiThqekclHE2Ok=", 587 - "pom": "sha256-/eOGp5BRc6GxA95quCBydYS1DQ4yKC4nl3h8IKZP+pM=" 588 - }, 589 - "org/hamcrest#hamcrest-parent/1.3": { 590 - "pom": "sha256-bVNflO+2Y722gsnyelAzU5RogAlkK6epZ3UEvBvkEps=" 591 - }, 592 "org/javassist#javassist/3.28.0-GA": { 593 "jar": "sha256-V9Cp6ShvgvTqqFESUYaZf4Eb784OIGD/ChWnf1qd2ac=", 594 "pom": "sha256-w2p8E9o6SFKqiBvfnbYLnk0a8UbsKvtTmPltWYP21d0=" 595 }, 596 - "org/junit#junit-bom/5.9.3": { 597 - "module": "sha256-tAH9JZAeWCpSSqU0PEs54ovFbiSWHBBpvytLv87ka5M=", 598 - "pom": "sha256-TQMpzZ5y8kIOXKFXJMv+b/puX9KIg2FRYnEZD9w0Ltc=" 599 }, 600 - "org/junit/jupiter#junit-jupiter-api/5.9.3": { 601 - "jar": "sha256-2JXj7t9PobEN4xqRvlWjAbswe/GO8yWz+l2z+A7pLRw=", 602 - "module": "sha256-ba7jABTiBFWh7MbW0LOsYERECtE+9CA5jikZCYDpuHo=", 603 - "pom": "sha256-f3KVZWK+1JEdMhf5DeCw0kDdklb4V99aJLvrAVS0FBs=" 604 }, 605 - "org/junit/jupiter#junit-jupiter-engine/5.9.3": { 606 - "jar": "sha256-tV4wSxzS6PEWwat3pdw+yoxNm0amnghLY6ylHN61Xw8=", 607 - "module": "sha256-lY9TIPRbNNCmZ24W/1ScsBDhQm3KUs/bEFh2vM9Pdog=", 608 - "pom": "sha256-D1/XZ2n95tJHMI+Dbf8TTItS9lpC5UuNCtoEFvMKc3o=" 609 }, 610 - "org/junit/jupiter#junit-jupiter-params/5.9.3": { 611 - "jar": "sha256-KvKC/pHlZJXAO4TpyucC6qIS/C9qMf2deeMcy2TNgf0=", 612 - "module": "sha256-PDb9BY560Xk2w2qHkaXvks06slUbsVsYngURPhaA848=", 613 - "pom": "sha256-HAzCQ766eIZChiVLRVKqvNUXrMMiAAJjaRxBUl/HtfY=" 614 }, 615 - "org/junit/platform#junit-platform-commons/1.9.3": { 616 - "jar": "sha256-hRkVffgTwhDoX8FBS3QQnj2F9D1wklY+1wTEPEjw1eY=", 617 - "module": "sha256-eWpB8nJB+2dgjwGazPTBw2cVe3MjinavhvbeuuNZnrQ=", 618 - "pom": "sha256-4Xof3keC8vwjtC3sp1wLBWbVwphQ0DBr5lxdpzuAIXg=" 619 }, 620 - "org/junit/platform#junit-platform-engine/1.9.3": { 621 - "jar": "sha256-DDlVPZoDUQdXIn9aHGzGUwKHsaMh7WJYRQZkh0qioWo=", 622 - "module": "sha256-nQVThnLcRrITlxJjbv3B8Xg9Q5qhwktp0Ckrgci36o8=", 623 - "pom": "sha256-HFq3/OvjpgEYOXm6r78vQOVUOIKnyiPp+etxkZWnR9U=" 624 }, 625 - "org/junit/vintage#junit-vintage-engine/5.9.3": { 626 - "jar": "sha256-a8G0IoKu2LnszbQGMc9FABr4qzrZ0Nhc/4bEXoX8WdA=", 627 - "module": "sha256-903In7pI9S/PzSKUFEQbDXn4Cz5tgTsAvIuXT1K0bZE=", 628 - "pom": "sha256-FISWCrLBD3mXJlEWmJuzsY21XJKfrFn96nS4ssd5WkY=" 629 }, 630 "org/key-project#docking-frames-base/1.1.3p1": { 631 "pom": "sha256-/MvGKkZ8j1YkC7AILbv5pM2X7wAYmstCBad/PrFbRgs=" ··· 638 "jar": "sha256-hXigFBxxS16XOpxffHemSIdXoXIIfmSBtcF04r5wBZc=", 639 "pom": "sha256-qkwVR2roScEeE8smsNB0dCJfr7r7B7wNoHkQtF6tV+c=" 640 }, 641 - "org/opentest4j#opentest4j/1.2.0": { 642 - "jar": "sha256-WIEt5giY2Xb7ge87YtoFxmBMGP1KJJ9QRCgkefwoavI=", 643 - "pom": "sha256-qW5nGBbB/4gDvex0ySQfAlvfsnfaXStO4CJmQFk2+ZQ=" 644 }, 645 "org/ow2#ow2/1.5": { 646 "pom": "sha256-D4obEW52C4/mOJxRuE5LB6cPwRCC1Pk25FO1g91QtDs=" ··· 652 "jar": "sha256-EmM2m1ninJQ5GN4R1tYVLi7GCFzmPlcQUW+MZ9No5Lw=", 653 "pom": "sha256-jqwH4p+K6oOoFW17Kfo2j26/O+z7IJyaGsNqvZBhI+A=" 654 }, 655 - "org/ow2/asm#asm/9.5": { 656 - "jar": "sha256-ti6EtZgHKXUbBFjFNM8TZvcnVCu40VhiEzVoKkYPA1M=", 657 - "pom": "sha256-LJzOuVHMZYbejZoWxnKtPkwwucMjAo16PDNmVg1WJ7E=" 658 }, 659 "org/reflections#reflections/0.10.2": { 660 "jar": "sha256-k4otCP5UBQ12ELlE2N3DoJNVcQ2ea+CqyDjbwE6aKCU=", 661 "pom": "sha256-tsqj6301vXVu1usKKoGGi408D29CJE/q5BdgrGYwbYc=" 662 }, 663 - "org/slf4j#slf4j-api/2.0.7": { 664 - "jar": "sha256-XWKYuToZBcMs2mR4gIrBTC1KR+kVNeU8Qff+64XZRvQ=", 665 - "pom": "sha256-LUA8zw4KAtXBqGZ7DiozyN/GA4qyh7lnHdaBwgUmeYE=" 666 }, 667 - "org/slf4j#slf4j-parent/2.0.7": { 668 - "pom": "sha256-wYK7Ns068ck8FgPN/v54iRV9swuotYT0pEU1/NIuRec=" 669 }, 670 "org/sonatype/oss#oss-parent/3": { 671 "pom": "sha256-DCeIkmfAlGJEYRaZcJPGcVzMAMKzqVTmZDRDDY9Nrt4="
··· 21 "jar": "sha256-CV/R3HeIjAc/C+OaAYFW7lJnInmLCd6eKF7yE14W6sQ=", 22 "pom": "sha256-NQkZQkMk4nUKPdwvobzmqQrIziklaYpgqbTR1uSSL/4=" 23 }, 24 + "com/diffplug/durian#durian-swt.os/4.2.2": { 25 + "jar": "sha256-a1Mca0vlgaizLq2GHdwVwsk7IMZl+00z4DgUg8JERfQ=", 26 + "module": "sha256-rVlQLGknZu48M0vkliigDctNka4aSPJjLitxUStDXPk=", 27 + "pom": "sha256-GzxJFP1eLM4pZq1wdWY5ZBFFwdNCB3CTV4Py3yY2kIU=" 28 + }, 29 + "com/diffplug/spotless#com.diffplug.spotless.gradle.plugin/6.25.0": { 30 + "pom": "sha256-9FyCsS+qzYWs1HTrppkyL6XeqIQIskfQ5L3pQSkIIjo=" 31 }, 32 + "com/diffplug/spotless#spotless-lib-extra/2.45.0": { 33 + "jar": "sha256-YCy7zTgo7pz7LjCn+bMDNcaScTB3FBTUzdKU0h/ly2c=", 34 + "module": "sha256-9pnkNfTlzgPbYJpHaO6wNj1uB8ZfvPrx/GKcTnbuf7A=", 35 + "pom": "sha256-5x2LkRDdSNLn9KVLi/uozlWpbmteu9T0OpJGZJz1b7A=" 36 }, 37 + "com/diffplug/spotless#spotless-lib/2.45.0": { 38 + "jar": "sha256-sllply4dmAKAyirlKRl+2bMWCq5ItQbPGTXwG9Exhmc=", 39 + "module": "sha256-+x+8+TUAczrHWcp99E8P9mVTEze0LaAS4on/CINNiQ8=", 40 + "pom": "sha256-WKd8IsQLIc8m29tCEwFu9HrM9bBwchfHkyqQ9D+PMNw=" 41 }, 42 + "com/diffplug/spotless#spotless-plugin-gradle/6.25.0": { 43 + "jar": "sha256-9euQikxdpGKZ51Q/qtoEAtLEt31Yx7Qy1Lblk0mygKM=", 44 + "module": "sha256-RoHRe/PJIF2DeOynBcAAywzJjcx40DATy2iJjGvSx0Q=", 45 + "pom": "sha256-q1ZuPYS2w/rHqPySXy279TzZdZywOvPAfQ3EN9OXqNo=" 46 }, 47 "com/fasterxml#oss-parent/48": { 48 "pom": "sha256-EbuiLYYxgW4JtiOiAHR0U9ZJGmbqyPXAicc9ordJAU8=" ··· 78 "jar": "sha256-BONySYTipcv1VgbPo3KlvT08XSohUzpwBOPN5Tl2H6U=", 79 "pom": "sha256-Q8K5sULnBV0fKlgn8QlEkl0idH2XVrMlDAeqtHU4qXE=" 80 }, 81 + "com/googlecode/javaewah#JavaEWAH/1.2.3": { 82 + "jar": "sha256-1lImlJcTxMYaeE9BxRFn57Axb5N2Q5jrup5DNrPZVMI=", 83 + "pom": "sha256-5O1sZpYgNm+ZOSBln+CsfLyD11PbwNwOseUplzr5byM=" 84 }, 85 "com/mycila#license-maven-plugin-parent/3.0": { 86 "pom": "sha256-DR8XPOud8hKSZ2Z8EMiR5eXXJm2C46hQcGaNtW2wy/o=" ··· 100 "jar": "sha256-hw+TlnieL0inuPso38BwwvjnSyAHJ0ziPmm2WBEP0pQ=", 101 "pom": "sha256-64P2FpRcjH37TYDm+QnnKG9SO7EQd4ArzSFr1w6ccXo=" 102 }, 103 + "com/squareup/okhttp3#okhttp/4.12.0": { 104 + "jar": "sha256-sQUAgbFLt6On5VpNPvAbXc+rxFO0VzpPwBl2cZHV9OA=", 105 + "module": "sha256-YH4iD/ghW5Kdgpu/VPMyiU8UWbTXlZea6vy8wc6lTPM=", 106 + "pom": "sha256-fHNwQKlBlSLnxQzAJ0FqcP58dinlKyGZNa3mtBGcfTg=" 107 + }, 108 + "com/squareup/okio#okio-jvm/3.6.0": { 109 + "jar": "sha256-Z1Q/Bzb8QirpJ+0OUEuYvF4mn9oNNQBXkzfLcT2ihBI=", 110 + "module": "sha256-scIZnhwMyWnvYcu+SvLsr5sGQRvd4By69vyRNN/gToo=", 111 + "pom": "sha256-YbTXxRWgiU/62SX9cFJiDBQlqGQz/TURO1+rDeiQpX8=" 112 + }, 113 + "com/squareup/okio#okio/3.6.0": { 114 + "module": "sha256-akesUDZOZZhFlAH7hvm2z832N7mzowRbHMM8v0xAghg=", 115 + "pom": "sha256-rrO3CiTBA+0MVFQfNfXFEdJ85gyuN2pZbX1lNpf4zJU=" 116 + }, 117 + "commons-codec#commons-codec/1.16.0": { 118 + "jar": "sha256-VllfsgsLhbyR0NUD2tULt/G5r8Du1d/6bLslkpAASE0=", 119 + "pom": "sha256-bLWVeBnfOTlW/TEaOgw/XuwevEm6Wy0J8/ROYWf6PnQ=" 120 + }, 121 "commons-io#commons-io/2.11.0": { 122 "jar": "sha256-lhsvbYfbrMXVSr9Fq3puJJX4m3VZiWLYxyPOqbwhCQg=", 123 "pom": "sha256-LgFv1+MkS18sIKytg02TqkeQSG7h5FZGQTYaPoMe71k=" ··· 129 "commons-logging#commons-logging/1.1.1": { 130 "jar": "sha256-zm+RPK0fDbOq1wGG1lxbx//Mmpnj/o4LE3MSgZ98Ni8=", 131 "pom": "sha256-0PLhbQVOi7l63ZyiZSXrI0b2koCfzSooeH2ozrPDXug=" 132 + }, 133 + "dev/equo/ide#solstice/1.7.5": { 134 + "jar": "sha256-BuFLxDrMMx2ra16iAfxnNk7RI/mCyF+lEx8IF+1lrk8=", 135 + "module": "sha256-eYp7cGdyE27iijLt2GOx6fgWE6NJhAXXS+ilyb6/9U8=", 136 + "pom": "sha256-20U7urXn2opDE5sNzTuuZykzIfKcTZH1p5XZ/2xS3d8=" 137 }, 138 "gradle/plugin/com/hierynomus/gradle/plugins#license-gradle-plugin/0.16.1": { 139 "jar": "sha256-vTz8QElIBmJZ+vHfCRGMxU14s9VpaFSAi31bOzurpi0=", ··· 166 "org/apache#apache/27": { 167 "pom": "sha256-srD8aeIqZQw4kvHDZtdwdvKVdcZzjfTHpwpEhESEzfk=" 168 }, 169 + "org/apache#apache/29": { 170 + "pom": "sha256-PkkDcXSCC70N9jQgqXclWIY5iVTCoGKR+mH3J6w1s3c=" 171 + }, 172 "org/apache#apache/4": { 173 "pom": "sha256-npMjomuo6yOU7+8MltMbcN9XCAhjDcFHyrHnNUHMUZQ=" 174 }, ··· 211 }, 212 "org/apache/commons#commons-parent/52": { 213 "pom": "sha256-ddvo806Y5MP/QtquSi+etMvNO18QR9VEYKzpBtu0UC4=" 214 + }, 215 + "org/apache/commons#commons-parent/58": { 216 + "pom": "sha256-LUsS4YiZBjq9fHUni1+pejcp2Ah4zuy2pA2UbpwNVZA=" 217 }, 218 "org/apache/commons#commons-pool2/2.2": { 219 "jar": "sha256-h4Czu7Mah5fnTp8wIvBD3a3Crui+Y9lPgIKmoWVGxBs=", ··· 293 "org/eclipse/jetty#jetty-bom/9.4.50.v20221201": { 294 "pom": "sha256-TN5uUz1gHq+LZazulWt3BsGBkvJ1XQI9fo0Zu31bOUM=" 295 }, 296 + "org/eclipse/jgit#org.eclipse.jgit-parent/6.7.0.202309050840-r": { 297 + "pom": "sha256-u56FQW2Y0HMfx2f41w6EaAQWAdZnKuItsqx5n3qjkR8=" 298 }, 299 + "org/eclipse/jgit#org.eclipse.jgit/6.7.0.202309050840-r": { 300 + "jar": "sha256-tWRHfQkiQaqrUMhKxd0aw3XAGCBE1+VlnTpgqQ4ugBo=", 301 + "pom": "sha256-BNB83b8ZjfpuRIuan7lA94HAEq2T2eqCBv4KTTplwZI=" 302 + }, 303 + "org/eclipse/platform#org.eclipse.osgi/3.18.300": { 304 + "jar": "sha256-urlD5Y7dFzCSOGctunpFrsni2svd24GKjPF3I+oT+iI=", 305 + "pom": "sha256-4nl2N1mZxUJ/y8//PzvCD77a+tiqRRArN59cL5fI/rQ=" 306 }, 307 "org/jdom#jdom2/2.0.6.1": { 308 "jar": "sha256-CyD0XjoP2PDRLNxTFrBndukCsTZdsAEYh2+RdcYPMCw=", 309 "pom": "sha256-VXleEBi4rmR7k3lnz4EKmbCFgsI3TnhzwShzTIyRS/M=" 310 }, 311 + "org/jetbrains#annotations/13.0": { 312 + "jar": "sha256-rOKhDcji1f00kl7KwD5JiLLA+FFlDJS4zvSbob0RFHg=", 313 + "pom": "sha256-llrrK+3/NpgZvd4b96CzuJuCR91pyIuGN112Fju4w5c=" 314 + }, 315 + "org/jetbrains/kotlin#kotlin-stdlib-common/1.9.10": { 316 + "jar": "sha256-zeM0G6GKK6JisLfPbFWyDJDo1DTkLJoT5qP3cNuWWog=", 317 + "pom": "sha256-fUtwVHkQZ2s738iSWojztr+yRYLJeEVCgFVEzu9JCpI=" 318 + }, 319 + "org/jetbrains/kotlin#kotlin-stdlib-jdk7/1.8.21": { 320 + "pom": "sha256-m7EH1dXjkwvFl38AekPNILfSTZGxweUo6m7g8kjxTTY=" 321 + }, 322 + "org/jetbrains/kotlin#kotlin-stdlib-jdk7/1.9.10": { 323 + "jar": "sha256-rGNhv5rR7TgsIQPZcSxHzewWYjK0kD7VluiHawaBybc=", 324 + "pom": "sha256-x/pnx5YTILidhaPKWaLhjCxlhQhFWV3K5LRq9pRe3NU=" 325 + }, 326 + "org/jetbrains/kotlin#kotlin-stdlib-jdk8/1.8.21": { 327 + "pom": "sha256-ODnXKNfDCaXDaLAnC0S08ceHj/XKXTKpogT6o0kUWdg=" 328 + }, 329 + "org/jetbrains/kotlin#kotlin-stdlib-jdk8/1.9.10": { 330 + "jar": "sha256-pMdNlNZM4avlN2D+A4ndlB9vxVjQ2rNeR8CFoR7IDyg=", 331 + "pom": "sha256-X0uU3TBlp3ZMN/oV3irW2B9A1Z+Msz8X0YHGOE+3py4=" 332 + }, 333 + "org/jetbrains/kotlin#kotlin-stdlib/1.8.21": { 334 + "pom": "sha256-/gzZ4yGT5FMzP9Kx9XfmYvtavGkHECu5Z4F7wTEoD9c=" 335 + }, 336 + "org/jetbrains/kotlin#kotlin-stdlib/1.9.10": { 337 + "jar": "sha256-VemJxRK4CQd5n4VDCfO8d4LFs9E5MkQtA3nVxHJxFQQ=", 338 + "pom": "sha256-fin79z/fceBnnT3ufmgP1XNGT6AWRKT1irgZ0sCI09I=" 339 + }, 340 "org/junit#junit-bom/5.7.2": { 341 "module": "sha256-87zrHFndT2mT9DBN/6WAFyuN9lp2zTb6T9ksBXjSitg=", 342 "pom": "sha256-zRSqqGmZH4ICHFhdVw0x/zQry6WLtEIztwGTdxuWSHs=" ··· 344 "org/junit#junit-bom/5.9.1": { 345 "module": "sha256-kCbBZWaQ+hRa117Og2dCEaoSrYkwqRsQfC9c3s4vGxw=", 346 "pom": "sha256-sWPBz8j8H9WLRXoA1YbATEbphtdZBOnKVMA6l9ZbSWw=" 347 + }, 348 + "org/junit#junit-bom/5.9.3": { 349 + "module": "sha256-tAH9JZAeWCpSSqU0PEs54ovFbiSWHBBpvytLv87ka5M=", 350 + "pom": "sha256-TQMpzZ5y8kIOXKFXJMv+b/puX9KIg2FRYnEZD9w0Ltc=" 351 }, 352 "org/ow2#ow2/1.5.1": { 353 "pom": "sha256-Mh3bt+5v5PU96mtM1tt0FU1r+kI5HB92OzYbn0hazwU=" ··· 364 "jar": "sha256-OdDis9xFr2Wgmwl5RXUKlKEm4FLhJPk0aEQ6HQ4V84E=", 365 "pom": "sha256-SDdR5I+y0fQ8Ya06sA/6Rm7cAzPY/C/bWibpXTKYI5Q=" 366 }, 367 + "org/slf4j#slf4j-api/1.7.36": { 368 + "jar": "sha256-0+9XXj5JeWeNwBvx3M5RAhSTtNEft/G+itmCh3wWocA=", 369 + "pom": "sha256-+wRqnCKUN5KLsRwtJ8i113PriiXmDL0lPZhSEN7cJoQ=" 370 }, 371 + "org/slf4j#slf4j-parent/1.7.36": { 372 + "pom": "sha256-uziNN/vN083mTDzt4hg4aTIY3EUfBAQMXfNgp47X6BI=" 373 }, 374 "org/sonatype/forge#forge-parent/4": { 375 "pom": "sha256-GDjRMkeQBbS3RZt5jp2ZFVFQkMKICC/c2G2wsQmDokw=" ··· 406 "org/springframework#spring-parent/3.1.3.RELEASE": { 407 "pom": "sha256-ZOkRARj4KhQnWaMW0J09jY1xfV2VB51/aziO5Hn6eC8=" 408 }, 409 + "org/tukaani#xz/1.9": { 410 + "jar": "sha256-IRswbPxE+Plt86Cj3a91uoxSie7XfWDXL4ibuFX1NeU=", 411 + "pom": "sha256-CTvhsDMxvOKTLWglw36YJy12Ieap6fuTKJoAJRi43Vo=" 412 + }, 413 "org/vafer#jdependency/2.8.0": { 414 "jar": "sha256-v9LMfhv8eKqDtEwKVL8s3jikOC7CRyivaD2Y3GvngZI=", 415 "pom": "sha256-EBhn8/npJlei74mjELYE1D0JDJuQqj4LBS3NFqO78y0=" ··· 424 "jar": "sha256-9XWbf838g6UloDbe7cvTLltTa2JevCgkJvFsoTfrWQI=", 425 "pom": "sha256-dwRxCQykChe55DbuLsAIGb5CBC2m9Ahezh03kW3Aj/k=" 426 }, 427 + "ch/qos/logback#logback-classic/1.5.7": { 428 + "jar": "sha256-fLF/axL9pO5pGRYEjKeprk0bDNvmgSWs+dbi2v2ywX0=", 429 + "pom": "sha256-xu/O1xfr0JOrhQE78w+G8vw8KyrpOQtbEZkzQ+GJGMM=" 430 }, 431 + "ch/qos/logback#logback-core/1.5.7": { 432 + "jar": "sha256-wyspr2nCAe/eaGIl+LQ5+QU+iOyqrBEMAvy+G0cj+tw=", 433 + "pom": "sha256-wUBD7EJzFU9mAbrmNZ+EldTDIbC51lIDEi3PqS9ozpc=" 434 }, 435 + "ch/qos/logback#logback-parent/1.5.7": { 436 + "pom": "sha256-jKYZjNN538JvvZ9nzbMR8+pF0KQXlAaQsnVEuyK8kmM=" 437 }, 438 "com/beust#jcommander/1.48": { 439 "jar": "sha256-pzE/z94HCTDkDsee3zxZSM805PDSXLOgn5lj2L3YQRM=", ··· 483 "jar": "sha256-PfVyskCmjRO1zXeK0jk+iF0mQRQ0zY8JisWYfqLmTOM=", 484 "pom": "sha256-Pe8rKa9KGa2AXLFTBWklqJqQP5L77hre4S7S/BTETug=" 485 }, 486 + "com/miglayout#miglayout-core/11.4.2": { 487 + "jar": "sha256-HCP2KNjyp6G3LI9jTGd10aj9AQD88Fv1DXoqyNr7DmI=", 488 + "pom": "sha256-VNPQ8pqW7Ox2LM5+/aCafk144UrX8akpnc2KbUIeAa0=" 489 }, 490 + "com/miglayout#miglayout-parent/11.4.2": { 491 + "pom": "sha256-s5BMe0+/4LUeW9RcmyVDkE1PKGO69DMJVT+fF0owAZc=" 492 }, 493 + "com/miglayout#miglayout-swing/11.4.2": { 494 + "jar": "sha256-A2uFMgIQkq/McVnTdWCGpfvhn2AUrIR0gX1V0Sia91Y=", 495 + "pom": "sha256-3/AMAxxS3Apf8mj0UvRRzpnrpnbOvEJvJaKXgN5Tu5A=" 496 }, 497 "com/puppycrawl/tools#checkstyle/10.6.0": { 498 "jar": "sha256-MTe8hcSBsytp9K2S0grpnZ0VKBFXwCG2VBpNup2TPBY=", ··· 514 "jar": "sha256-P2/7EM6FPvL2+TS0Z8zBPJwXCLTYOhpWZP2wfgeOjhw=", 515 "pom": "sha256-TeCd0zhFd9Vzo9lP85jNe4SUbEJkDzhSva2X9yl0YXQ=" 516 }, 517 + "io/github/eisop#checker-qual/3.42.0-eisop4": { 518 + "jar": "sha256-D/jgda/4I/dlGT+egBEtbXzYgPCeEQGU/9bZ3UIxvNY=", 519 + "module": "sha256-/mEgQEliAvzc8ztAAL/CAwrom16g1C4WcE8H7nAyCQY=", 520 + "pom": "sha256-BAVDiaDCD2+w2DRQhwx+g4OhtSpPnnH9Hp4QT0st7Dk=" 521 + }, 522 + "io/github/eisop#checker-util/3.42.0-eisop4": { 523 + "jar": "sha256-gg5SfOZqAB9Yq9uOGSMCzLI8WIRxi+HWByGRfcCHEUc=", 524 + "module": "sha256-SOvu5cjs6eEMxBDHvjrd+G/DpztaoRPZWhKrgYJwRvo=", 525 + "pom": "sha256-DoQ00PM0h6i/9JpEMbrvXzIA8P5awQnMlMGHRTdtyOk=" 526 }, 527 "net/java/dev/javacc#javacc/4.0": { 528 "jar": "sha256-z7qy1qzbN2TivLXAhCpZ9YPLXoui61wTqNuYNoqtzC8=", ··· 584 "org/antlr#antlr4-master/4.11.1": { 585 "pom": "sha256-cupd6Nq7ZhV4X9D+qqur1T3NrnD+FrzXx7lobApuAK0=" 586 }, 587 + "org/antlr#antlr4-master/4.13.2": { 588 + "pom": "sha256-Ct2gJmhYc/ZRNgF4v/xEbO7kgzCBc5466dbo8H6NkCo=" 589 }, 590 "org/antlr#antlr4-master/4.7.2": { 591 "pom": "sha256-upnLJdI5DzhoDHUChCoO4JWdHmQD4BPM/2mP1YVu6tE=" ··· 594 "jar": "sha256-4GxlU8HMwU02BS7EsPxvE7gIz5V7Wx3D9hv0AZlq2lk=", 595 "pom": "sha256-xFbsKVkHjFkfvX72mtlACnJ5IAaNdGmJx0q4BO1oGzQ=" 596 }, 597 + "org/antlr#antlr4-runtime/4.13.2": { 598 + "jar": "sha256-3T6KE6LWab+E+42DTeNc5IdfJxV2mNIGJB7ISIqtyvc=", 599 + "pom": "sha256-A84HonlsURsMlNwU/YbM3W44KMV5Z60jg94wTg0Runk=" 600 }, 601 "org/antlr#antlr4-runtime/4.7.2": { 602 "jar": "sha256-TFGLh9S9/4tEzYy8GvgW6US2Kj/luAt4FQHPH0dZu8Q=", 603 "pom": "sha256-3AnLqYwl08BuSuxRaIXUw68DBiulX0/mKD/JzxdqYPs=" 604 }, 605 + "org/antlr#antlr4/4.13.2": { 606 + "jar": "sha256-5vCxDSrSBvM4r+FoZ/xHFItnKdbjomDqKDebkfA6Nlc=", 607 + "pom": "sha256-gJ7klwbc42dJiLq/ytNrPFoOL9XPoKUSCRA5Y+hXJhs=" 608 }, 609 "org/apache#apache/16": { 610 "pom": "sha256-n4X/L9fWyzCXqkf7QZ7n8OvoaRCfmKup9Oyj9J50pA4=" ··· 614 }, 615 "org/apache#apache/23": { 616 "pom": "sha256-vBBiTgYj82V3+sVjnKKTbTJA7RUvttjVM6tNJwVDSRw=" 617 + }, 618 + "org/apache-extras/beanshell#bsh/2.0b6": { 619 + "jar": "sha256-oXlVl2BwwFcyNe5mLyeUp4CCdYthrM/86NP4rtzZEEc=", 620 + "pom": "sha256-Z5vo8Sqihk98KG9/W8usg2WFHAGCHeW5mhLW93L1IeY=" 621 }, 622 "org/apache/commons#commons-lang3/3.8.1": { 623 "jar": "sha256-2sgH9lsHaY/zmxsHv+89h64/1G2Ru/iivAKyqDFhb2g=", ··· 658 "module": "sha256-4IAoExN1s1fR0oc06aT7QhbahLJAZByz7358fWKCI/w=", 659 "pom": "sha256-MjVQgdEJCVw9XTdNWkO09MG3XVSemD71ByPidy5TAqA=" 660 }, 661 "org/checkerframework#checker-qual/3.27.0": { 662 "jar": "sha256-Jf2m8+su4hOf9dfTmSZn1Sbr8bD7h982/HWqNWeebas=", 663 "module": "sha256-H1L7VyqCR4PvVyPW0LejEUOz2JKpQerXur4OH/kWM30=", 664 "pom": "sha256-yXIt1Co1ywpkPGgAoo2sf8UXbYDkz2v4XBgjdzFjOrk=" 665 }, 666 "org/javassist#javassist/3.28.0-GA": { 667 "jar": "sha256-V9Cp6ShvgvTqqFESUYaZf4Eb784OIGD/ChWnf1qd2ac=", 668 "pom": "sha256-w2p8E9o6SFKqiBvfnbYLnk0a8UbsKvtTmPltWYP21d0=" 669 }, 670 + "org/jspecify#jspecify/1.0.0": { 671 + "jar": "sha256-H61ua+dVd4Hk0zcp1Jrhzcj92m/kd7sMxozjUer9+6s=", 672 + "module": "sha256-0wfKd6VOGKwe8artTlu+AUvS9J8p4dL4E+R8J4KDGVs=", 673 + "pom": "sha256-zauSmjuVIR9D0gkMXi0N/oRllg43i8MrNYQdqzJEM6Y=" 674 }, 675 + "org/junit#junit-bom/5.11.0": { 676 + "module": "sha256-9+2+Z/IgQnCMQQq8VHQI5cR29An1ViNqEXkiEnSi7S0=", 677 + "pom": "sha256-5nRZ1IgkJKxjdPQNscj0ouiJRrNAugcsgL6TKivkZE0=" 678 }, 679 + "org/junit/jupiter#junit-jupiter-api/5.11.0": { 680 + "jar": "sha256-QqogL8hi92zFr2W0exwLGWHN15zSIWQFpt+ivSCyCXQ=", 681 + "module": "sha256-8FlIEOl1rpHe3OqeHiIP8hlcSvnQMyJ6C2VkxsX1m4U=", 682 + "pom": "sha256-cTmgP0mFrJoYz6iUyYHkmfDkw3IFGTaMomTqhkc2Te0=" 683 }, 684 + "org/junit/jupiter#junit-jupiter-engine/5.11.0": { 685 + "jar": "sha256-cBJCM4PQx50DR8XPK9GZbDChIkD7cp4M36lUhS7Gk8w=", 686 + "module": "sha256-KHwllg0eUqQFPj8ksY8eG6tM6K7us8eY3Z+N8p4yNFM=", 687 + "pom": "sha256-wiNKZ/6wxv6pFlbG5ovSaeJGolN0jE+NBQyTj+MKn8A=" 688 }, 689 + "org/junit/jupiter#junit-jupiter-params/5.11.0": { 690 + "jar": "sha256-ksyuLXLozHrE06kS/RqP7MXjBApirGxmegem9VuAI+s=", 691 + "module": "sha256-zv6izpIZeI0B8JyDCbXcl1B6y90c6MpaYiGU7VGoTRY=", 692 + "pom": "sha256-z8SNqdJaqPhGJZOe+JaH0zUFkiVnTxag/FQzV+LRU4E=" 693 }, 694 + "org/junit/platform#junit-platform-commons/1.11.0": { 695 + "jar": "sha256-YJMzpFRfkBjrDFkHHv0wZjqen9zlKBIbZaBMJ+X8Jqc=", 696 + "module": "sha256-AjF2P88IOaIFJjYqtOEKJ8ZuvA+yICgexBweQV50vC0=", 697 + "pom": "sha256-DJ/cUOXGT0LhF5+q+aYFRXOJqC6/6Ah9us1Kgglf0LE=" 698 }, 699 + "org/junit/platform#junit-platform-engine/1.11.0": { 700 + "jar": "sha256-p+ZyecZRxRaUlRK1BpFkdabZ4oTNT0ww0Cm0rXOpRNg=", 701 + "module": "sha256-pdV2XcmtClTaDff0ggiEgxUt0JQsq1n14WqWCO5DmBI=", 702 + "pom": "sha256-uL18viaZMQUQSho0jL3Rfqmcewb4fJc4971vW7e/bPI=" 703 }, 704 "org/key-project#docking-frames-base/1.1.3p1": { 705 "pom": "sha256-/MvGKkZ8j1YkC7AILbv5pM2X7wAYmstCBad/PrFbRgs=" ··· 712 "jar": "sha256-hXigFBxxS16XOpxffHemSIdXoXIIfmSBtcF04r5wBZc=", 713 "pom": "sha256-qkwVR2roScEeE8smsNB0dCJfr7r7B7wNoHkQtF6tV+c=" 714 }, 715 + "org/opentest4j#opentest4j/1.3.0": { 716 + "jar": "sha256-SOLfY2yrZWPO1k3N/4q7I1VifLI27wvzdZhoLd90Lxs=", 717 + "module": "sha256-SL8dbItdyU90ZSvReQD2VN63FDUCSM9ej8onuQkMjg0=", 718 + "pom": "sha256-m/fP/EEPPoNywlIleN+cpW2dQ72TfjCUhwbCMqlDs1U=" 719 }, 720 "org/ow2#ow2/1.5": { 721 "pom": "sha256-D4obEW52C4/mOJxRuE5LB6cPwRCC1Pk25FO1g91QtDs=" ··· 727 "jar": "sha256-EmM2m1ninJQ5GN4R1tYVLi7GCFzmPlcQUW+MZ9No5Lw=", 728 "pom": "sha256-jqwH4p+K6oOoFW17Kfo2j26/O+z7IJyaGsNqvZBhI+A=" 729 }, 730 + "org/ow2/asm#asm/9.7": { 731 + "jar": "sha256-rfRtXjSUC98Ujs3Sap7o7qlElqcgNP9xQQZrPupcTp0=", 732 + "pom": "sha256-3gARXx2E86Cy7jpLb2GS0Gb4bRhdZ7nRUi8sgP6sXwA=" 733 }, 734 "org/reflections#reflections/0.10.2": { 735 "jar": "sha256-k4otCP5UBQ12ELlE2N3DoJNVcQ2ea+CqyDjbwE6aKCU=", 736 "pom": "sha256-tsqj6301vXVu1usKKoGGi408D29CJE/q5BdgrGYwbYc=" 737 }, 738 + "org/slf4j#slf4j-api/2.0.16": { 739 + "jar": "sha256-oSV43eG6AL2bgW04iguHmSjQC6s8g8JA9wE79BlsV5o=", 740 + "pom": "sha256-saAPWxxNvmK4BdZdI5Eab3cGOInXyx6G/oOJ1hkEc/c=" 741 + }, 742 + "org/slf4j#slf4j-bom/2.0.16": { 743 + "pom": "sha256-BWYEjsglzfKHWGIK9k2eFK44qc2HSN1vr6bfSkGUwnk=" 744 }, 745 + "org/slf4j#slf4j-parent/2.0.16": { 746 + "pom": "sha256-CaC0zIFNcnRhbJsW1MD9mq8ezIEzNN5RMeVHJxsZguU=" 747 }, 748 "org/sonatype/oss#oss-parent/3": { 749 "pom": "sha256-DCeIkmfAlGJEYRaZcJPGcVzMAMKzqVTmZDRDDY9Nrt4="
+25 -7
pkgs/by-name/ke/key/package.nix
··· 9 makeDesktopItem, 10 copyDesktopItems, 11 testers, 12 - git, 13 key, 14 }: 15 16 let ··· 19 in 20 stdenv.mkDerivation rec { 21 pname = "key"; 22 - version = "2.12.2"; 23 src = fetchFromGitHub { 24 owner = "KeYProject"; 25 repo = "key"; 26 - tag = "KeY-${version}"; 27 - hash = "sha256-veqaWyWEiTot2cAjvyPG+Ra8/pqS4i6w6iR+qhozIM4="; 28 }; 29 30 nativeBuildInputs = [ 31 jdk 32 gradle 33 makeWrapper 34 copyDesktopItems 35 - git 36 ]; 37 38 desktopItems = [ ··· 54 55 __darwinAllowLocalNetworking = true; 56 57 - # tests are broken on darwin 58 - # TODO: on update to 2.12.3+, restore to !stdenv.hostPlatform.isDarwin; 59 # (currently some tests are failing) 60 doCheck = false; 61 ··· 68 mkdir -p $out/share/icons/hicolor/256x256/apps 69 cp key.ui/src/main/resources/de/uka/ilkd/key/gui/images/key-color-icon-square.png $out/share/icons/hicolor/256x256/apps/key.png 70 makeWrapper ${lib.getExe jre} $out/bin/KeY \ 71 --add-flags "-cp $out/share/java/KeY.jar de.uka.ilkd.key.core.Main" 72 73 runHook postInstall
··· 9 makeDesktopItem, 10 copyDesktopItems, 11 testers, 12 + z3, 13 + cvc5, 14 key, 15 + substitute, 16 }: 17 18 let ··· 21 in 22 stdenv.mkDerivation rec { 23 pname = "key"; 24 + version = "2.12.3"; 25 src = fetchFromGitHub { 26 owner = "KeYProject"; 27 repo = "key"; 28 + tag = "KEY-${version}"; 29 + hash = "sha256-1pN0lmr/teVitpMIM9M9lSTkmnVcZwdAQay2pzgJDCk="; 30 }; 31 32 + patches = [ 33 + # Remove linting framework, causes issues with the update script. 34 + (substitute { 35 + src = ./remove-eisop-checker.patch; 36 + substitutions = [ 37 + "--subst-var-by" 38 + "version" 39 + version 40 + ]; 41 + }) 42 + ]; 43 + 44 nativeBuildInputs = [ 45 jdk 46 gradle 47 makeWrapper 48 copyDesktopItems 49 ]; 50 51 desktopItems = [ ··· 67 68 __darwinAllowLocalNetworking = true; 69 70 + # TODO: on update to 2.12.4+, try again 71 # (currently some tests are failing) 72 doCheck = false; 73 ··· 80 mkdir -p $out/share/icons/hicolor/256x256/apps 81 cp key.ui/src/main/resources/de/uka/ilkd/key/gui/images/key-color-icon-square.png $out/share/icons/hicolor/256x256/apps/key.png 82 makeWrapper ${lib.getExe jre} $out/bin/KeY \ 83 + --prefix PATH : ${ 84 + lib.makeBinPath [ 85 + z3 86 + cvc5 87 + ] 88 + } \ 89 --add-flags "-cp $out/share/java/KeY.jar de.uka.ilkd.key.core.Main" 90 91 runHook postInstall
+96
pkgs/by-name/ke/key/remove-eisop-checker.patch
···
··· 1 + diff --git a/build.gradle b/build.gradle 2 + index d90fe4733f..26d1e3755d 100644 3 + --- a/build.gradle 4 + +++ b/build.gradle 5 + @@ -24,7 +24,6 @@ plugins { 6 + id "com.diffplug.spotless" version "6.25.0" 7 + 8 + // EISOP Checker Framework 9 + - id "org.checkerframework" version "0.6.43" 10 + } 11 + 12 + // Configure this project for use inside IntelliJ: 13 + @@ -56,7 +55,6 @@ subprojects { 14 + apply plugin: "com.diffplug.spotless" 15 + apply plugin: "checkstyle" 16 + apply plugin: "pmd" 17 + - apply plugin: "org.checkerframework" 18 + 19 + group = rootProject.group 20 + version = rootProject.version 21 + @@ -87,7 +85,6 @@ subprojects { 22 + compileOnly "io.github.eisop:checker-qual:$eisop_version" 23 + compileOnly "io.github.eisop:checker-util:$eisop_version" 24 + testCompileOnly "io.github.eisop:checker-qual:$eisop_version" 25 + - checkerFramework "io.github.eisop:checker:$eisop_version" 26 + 27 + testImplementation("ch.qos.logback:logback-classic:1.5.7") 28 + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.0' 29 + @@ -531,6 +528,7 @@ if (jacocoEnabled.toBoolean()) { 30 + 31 + @Memoized 32 + def getChangedFiles() { 33 + + return [] 34 + // Get the target and source branch 35 + def anchor = "git merge-base HEAD origin/main".execute().getText() 36 + 37 + diff --git a/key.core/build.gradle b/key.core/build.gradle 38 + index 054104438c..8d13452edf 100644 39 + --- a/key.core/build.gradle 40 + +++ b/key.core/build.gradle 41 + @@ -196,7 +196,7 @@ task generateVersionFiles() { 42 + // find names/SHAs for commits 43 + static def gitRevParse(String args) { 44 + try { 45 + - return "git rev-parse $args".execute().text.trim() 46 + + return "@version@" 47 + } catch (Exception e) { 48 + return "" 49 + } 50 + diff --git a/key.ncore/build.gradle b/key.ncore/build.gradle 51 + index 04eabab0a8..a99e8639c1 100644 52 + --- a/key.ncore/build.gradle 53 + +++ b/key.ncore/build.gradle 54 + @@ -14,19 +14,3 @@ tasks.withType(Test) { 55 + enableAssertions = true 56 + } 57 + 58 + - 59 + -checkerFramework { 60 + - if(System.getProperty("ENABLE_NULLNESS")) { 61 + - checkers = [ 62 + - "org.checkerframework.checker.nullness.NullnessChecker", 63 + - ] 64 + - extraJavacArgs = [ 65 + - "-AonlyDefs=^org\\.key_project\\.logic", 66 + - "-Xmaxerrs", "10000", 67 + - "-Astubs=$rootDir/key.util/src/main/checkerframework:permit-nullness-assertion-exception.astub", 68 + - "-AstubNoWarnIfNotFound", 69 + - "-Werror", 70 + - "-Aversion", 71 + - ] 72 + - } 73 + -} 74 + diff --git a/key.util/build.gradle b/key.util/build.gradle 75 + index 382a103b60..7187dc0236 100644 76 + --- a/key.util/build.gradle 77 + +++ b/key.util/build.gradle 78 + @@ -4,18 +4,3 @@ dependencies { 79 + implementation("org.jspecify:jspecify:1.0.0") 80 + } 81 + 82 + -checkerFramework { 83 + - if(System.getProperty("ENABLE_NULLNESS")) { 84 + - checkers = [ 85 + - "org.checkerframework.checker.nullness.NullnessChecker", 86 + - ] 87 + - extraJavacArgs = [ 88 + - "-AonlyDefs=^org\\.key_project\\.util", 89 + - "-Xmaxerrs", "10000", 90 + - "-Astubs=$projectDir/src/main/checkerframework:permit-nullness-assertion-exception.astub:checker.jar/junit-assertions.astub", 91 + - "-AstubNoWarnIfNotFound", 92 + - "-Werror", 93 + - "-Aversion", 94 + - ] 95 + - } 96 + -}
+1 -1
pkgs/by-name/ke/keylight-cli/package.nix
··· 13 owner = "versality"; 14 repo = "keylight-cli"; 15 tag = "v${version}"; 16 - sha256 = "sha256-gzTvMBa7JVckxLnltlR5XOj6BBbfPXZei7Wj3f1n4Kw="; 17 }; 18 19 buildInputs = [ babashka ];
··· 13 owner = "versality"; 14 repo = "keylight-cli"; 15 tag = "v${version}"; 16 + hash = "sha256-boL6Sg+C9OxMEcr5tAFCn8NxCDrJ6I2nMn9/2yMOYRI="; 17 }; 18 19 buildInputs = [ babashka ];
+2 -2
pkgs/by-name/ku/kubeshark/package.nix
··· 11 12 buildGoModule rec { 13 pname = "kubeshark"; 14 - version = "52.5.0"; 15 16 src = fetchFromGitHub { 17 owner = "kubeshark"; 18 repo = "kubeshark"; 19 rev = "v${version}"; 20 - hash = "sha256-gQrxOdiW/nlhPy8DIc68Bym/uSCGOp2aId7kJfrLMlE="; 21 }; 22 23 vendorHash = "sha256-kzyQW4bVE7oMOlHVG7LKG1AMTRYa5GLiiEhdarIhMSo=";
··· 11 12 buildGoModule rec { 13 pname = "kubeshark"; 14 + version = "52.6.0"; 15 16 src = fetchFromGitHub { 17 owner = "kubeshark"; 18 repo = "kubeshark"; 19 rev = "v${version}"; 20 + hash = "sha256-Mxj42D+MxYn0/csI/ZsMdU8xOz8P/IzsHr7vtmlQPa0="; 21 }; 22 23 vendorHash = "sha256-kzyQW4bVE7oMOlHVG7LKG1AMTRYa5GLiiEhdarIhMSo=";
+4 -8
pkgs/by-name/lc/lcevcdec/package.nix
··· 1 { 2 cmake, 3 fetchFromGitHub, 4 - fmt, 5 git, 6 gitUpdater, 7 - gtest, 8 lib, 9 pkg-config, 10 python3, 11 - range-v3, 12 - rapidjson, 13 stdenv, 14 testers, 15 }: ··· 57 58 nativeBuildInputs = [ 59 cmake 60 - python3 61 git 62 pkg-config 63 ]; 64 65 buildInputs = [ 66 - rapidjson 67 - fmt 68 - range-v3 69 ]; 70 71 cmakeFlags = [ 72 (lib.cmakeFeature "VN_SDK_FFMPEG_LIBS_PACKAGE" "") 73 (lib.cmakeBool "VN_SDK_UNIT_TESTS" false) 74 (lib.cmakeBool "VN_SDK_SAMPLE_SOURCE" false) 75 (lib.cmakeBool "VN_CORE_AVX2" stdenv.hostPlatform.avx2Support) 76 # Requires avx for checking on runtime 77 (lib.cmakeBool "VN_CORE_SSE" stdenv.hostPlatform.avxSupport)
··· 1 { 2 cmake, 3 fetchFromGitHub, 4 git, 5 gitUpdater, 6 lib, 7 + nlohmann_json, 8 pkg-config, 9 python3, 10 stdenv, 11 testers, 12 }: ··· 54 55 nativeBuildInputs = [ 56 cmake 57 git 58 pkg-config 59 + python3 60 ]; 61 62 buildInputs = [ 63 + nlohmann_json 64 ]; 65 66 cmakeFlags = [ 67 (lib.cmakeFeature "VN_SDK_FFMPEG_LIBS_PACKAGE" "") 68 (lib.cmakeBool "VN_SDK_UNIT_TESTS" false) 69 (lib.cmakeBool "VN_SDK_SAMPLE_SOURCE" false) 70 + (lib.cmakeBool "VN_SDK_JSON_CONFIG" true) 71 (lib.cmakeBool "VN_CORE_AVX2" stdenv.hostPlatform.avx2Support) 72 # Requires avx for checking on runtime 73 (lib.cmakeBool "VN_CORE_SSE" stdenv.hostPlatform.avxSupport)
+1
pkgs/by-name/li/libblake3/package.nix
··· 38 ]; 39 maintainers = with lib.maintainers; [ 40 fgaz 41 silvanshade 42 ]; 43 platforms = lib.platforms.all;
··· 38 ]; 39 maintainers = with lib.maintainers; [ 40 fgaz 41 + fpletz 42 silvanshade 43 ]; 44 platforms = lib.platforms.all;
+2 -2
pkgs/by-name/li/libnbd/package.nix
··· 22 stdenv.mkDerivation 23 rec { 24 pname = "libnbd"; 25 - version = "1.20.2"; 26 27 src = fetchurl { 28 url = "https://download.libguestfs.org/libnbd/${lib.versions.majorMinor version}-stable/${pname}-${version}.tar.gz"; 29 - hash = "sha256-7DgviwGPPLccTPvomyH+0CMknXmR2wENsxpXD97OP84="; 30 }; 31 32 nativeBuildInputs =
··· 22 stdenv.mkDerivation 23 rec { 24 pname = "libnbd"; 25 + version = "1.22.1"; 26 27 src = fetchurl { 28 url = "https://download.libguestfs.org/libnbd/${lib.versions.majorMinor version}-stable/${pname}-${version}.tar.gz"; 29 + hash = "sha256-9oVJrU2YcXGnKaDf8SoHKGtG7vpH5355/DKIiYrchHI="; 30 }; 31 32 nativeBuildInputs =
+2 -2
pkgs/by-name/li/liboggz/package.nix
··· 8 9 stdenv.mkDerivation rec { 10 pname = "liboggz"; 11 - version = "1.1.2"; 12 13 src = fetchurl { 14 url = "https://downloads.xiph.org/releases/liboggz/${pname}-${version}.tar.gz"; 15 - sha256 = "sha256-yX5PunlUqfr3ndz0Bpksb3uwIU6W1JV6B6L9oCZeWrI="; 16 }; 17 18 propagatedBuildInputs = [ libogg ];
··· 8 9 stdenv.mkDerivation rec { 10 pname = "liboggz"; 11 + version = "1.1.3"; 12 13 src = fetchurl { 14 url = "https://downloads.xiph.org/releases/liboggz/${pname}-${version}.tar.gz"; 15 + sha256 = "sha256-JGbQO2fvC8ug4Q+zUtGp/9n5aRFlerzjy7a6Qpxlbi8="; 16 }; 17 18 propagatedBuildInputs = [ libogg ];
+6 -6
pkgs/by-name/li/libz/package.nix
··· 2 lib, 3 stdenv, 4 fetchFromGitLab, 5 - unstableGitUpdater, 6 }: 7 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "libz"; 10 - version = "1.2.8.2015.12.26-unstable-2018-03-31"; 11 12 src = fetchFromGitLab { 13 owner = "sortix"; 14 repo = "libz"; 15 - rev = "752c1630421502d6c837506d810f7918ac8cdd27"; 16 - hash = "sha256-AQuZ0BOl1iP5Nub+tVwctlE2tfJe4Sq/KDGkjwBbsV4="; 17 }; 18 19 outputs = [ ··· 22 ]; 23 outputDoc = "dev"; # single tiny man3 page 24 25 - passthru.updateScript = unstableGitUpdater { 26 - tagPrefix = "libz-"; 27 }; 28 29 meta = {
··· 2 lib, 3 stdenv, 4 fetchFromGitLab, 5 + gitUpdater, 6 }: 7 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "libz"; 10 + version = "1.2.8.2025.03.07"; 11 12 src = fetchFromGitLab { 13 owner = "sortix"; 14 repo = "libz"; 15 + tag = "libz-${finalAttrs.version}"; 16 + hash = "sha256-tr9r0X+iHz3LZFgIxi3JMQUnSlyTRtAIhtjwI+DIhpc="; 17 }; 18 19 outputs = [ ··· 22 ]; 23 outputDoc = "dev"; # single tiny man3 page 24 25 + passthru.updateScript = gitUpdater { 26 + rev-prefix = "libz-"; 27 }; 28 29 meta = {
+2 -2
pkgs/by-name/lx/lxgw-neoxihei/package.nix
··· 6 7 stdenvNoCC.mkDerivation rec { 8 pname = "lxgw-neoxihei"; 9 - version = "1.214"; 10 11 src = fetchurl { 12 url = "https://github.com/lxgw/LxgwNeoXiHei/releases/download/v${version}/LXGWNeoXiHei.ttf"; 13 - hash = "sha256-hIor7mkGdAo+WBDhdnT3IZGP0o3/vYtgUS7AJ5Si1PQ="; 14 }; 15 16 dontUnpack = true;
··· 6 7 stdenvNoCC.mkDerivation rec { 8 pname = "lxgw-neoxihei"; 9 + version = "1.215"; 10 11 src = fetchurl { 12 url = "https://github.com/lxgw/LxgwNeoXiHei/releases/download/v${version}/LXGWNeoXiHei.ttf"; 13 + hash = "sha256-aBmPFLc2gkf+1bI85GPrOVmFjgcCyvXd//OPbKhxVQM="; 14 }; 15 16 dontUnpack = true;
+3 -3
pkgs/by-name/ma/matrix-synapse-unwrapped/package.nix
··· 17 in 18 python3.pkgs.buildPythonApplication rec { 19 pname = "matrix-synapse"; 20 - version = "1.126.0"; 21 format = "pyproject"; 22 23 src = fetchFromGitHub { 24 owner = "element-hq"; 25 repo = "synapse"; 26 rev = "v${version}"; 27 - hash = "sha256-fEJ4gxftC9oPhmcvbMdwxbZsHVfed9NS8Sjb7BTmTQo="; 28 }; 29 30 cargoDeps = rustPlatform.fetchCargoVendor { 31 inherit src; 32 name = "${pname}-${version}"; 33 - hash = "sha256-P0JNGaRUd3fiwfPLnXQGeTDTURLgqO6g4KRIs86omYg="; 34 }; 35 36 postPatch = ''
··· 17 in 18 python3.pkgs.buildPythonApplication rec { 19 pname = "matrix-synapse"; 20 + version = "1.127.1"; 21 format = "pyproject"; 22 23 src = fetchFromGitHub { 24 owner = "element-hq"; 25 repo = "synapse"; 26 rev = "v${version}"; 27 + hash = "sha256-DNUKbb+d3BBp8guas6apQ4yFeXCc0Ilijtbt1hZkap4="; 28 }; 29 30 cargoDeps = rustPlatform.fetchCargoVendor { 31 inherit src; 32 name = "${pname}-${version}"; 33 + hash = "sha256-wI3vOfR5UpVFls2wPfgeIEj2+bmWdL3pDSsKfT+ysw8="; 34 }; 35 36 postPatch = ''
+3 -3
pkgs/by-name/md/mdsh/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "mdsh"; 9 - version = "0.9.1"; 10 11 src = fetchFromGitHub { 12 owner = "zimbatm"; 13 repo = "mdsh"; 14 rev = "v${version}"; 15 - hash = "sha256-MCudMeiqEbzOL9m50hccvogAUBaUeILm/Hu4nH04GXU="; 16 }; 17 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-73wlW8Zat3/crJIcfqZ/9mCPxGDXH+A+3jvYZBHDjUk="; 20 21 meta = with lib; { 22 description = "Markdown shell pre-processor";
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "mdsh"; 9 + version = "0.9.2"; 10 11 src = fetchFromGitHub { 12 owner = "zimbatm"; 13 repo = "mdsh"; 14 rev = "v${version}"; 15 + hash = "sha256-DQdm6911SNzVxUXpZ4mMumjonThhhEJnM/3GjbCjyuY="; 16 }; 17 18 useFetchCargoVendor = true; 19 + cargoHash = "sha256-JhrELBMGVtxJjyfPGcM6v8h1XJjdD+vOsYNfZ86Ras0="; 20 21 meta = with lib; { 22 description = "Markdown shell pre-processor";
+3 -3
pkgs/by-name/mi/millet/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "millet"; 9 - version = "0.14.8"; 10 11 src = fetchFromGitHub { 12 owner = "azdavis"; 13 repo = "millet"; 14 rev = "v${version}"; 15 - hash = "sha256-bsbdyrSRWTVSoNUg3Uns12xRGmA/EdSf+9I1tiQruSU="; 16 }; 17 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-hT7YjJGn2UvWxShdLD7VeKU6OGu8kYAIRHmORY/pAEM="; 20 21 postPatch = '' 22 rm .cargo/config.toml
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "millet"; 9 + version = "0.14.9"; 10 11 src = fetchFromGitHub { 12 owner = "azdavis"; 13 repo = "millet"; 14 rev = "v${version}"; 15 + hash = "sha256-Ffna9qsCTRHnUstgCDZxHweHteYVA/xiAtOkzCw2ltI="; 16 }; 17 18 useFetchCargoVendor = true; 19 + cargoHash = "sha256-eQobRfvVdL68FeV/P/BL824sHEibC5eQoPeo6m6XJcI="; 20 21 postPatch = '' 22 rm .cargo/config.toml
+2 -2
pkgs/by-name/mo/mob/package.nix
··· 10 11 buildGoModule rec { 12 pname = "mob"; 13 - version = "5.3.3"; 14 15 src = fetchFromGitHub { 16 owner = "remotemobprogramming"; 17 repo = "mob"; 18 rev = "v${version}"; 19 - hash = "sha256-ibsaejhqvndeIJMCDIuTwrITtFrI+LJT8IZuAlTZE3E="; 20 }; 21 22 vendorHash = null;
··· 10 11 buildGoModule rec { 12 pname = "mob"; 13 + version = "5.4.0"; 14 15 src = fetchFromGitHub { 16 owner = "remotemobprogramming"; 17 repo = "mob"; 18 rev = "v${version}"; 19 + hash = "sha256-OTKlasXswrZPfhdHD6tJt8z/e+BbgWa9LrKYhMbG/N4="; 20 }; 21 22 vendorHash = null;
+18 -10
pkgs/by-name/ne/neovim-unwrapped/package.nix
··· 9 lua, 10 pkg-config, 11 unibilium, 12 libvterm-neovim, 13 tree-sitter, 14 fetchurl, ··· 96 in 97 { 98 pname = "neovim-unwrapped"; 99 - version = "0.10.4"; 100 101 __structuredAttrs = true; 102 ··· 104 owner = "neovim"; 105 repo = "neovim"; 106 tag = "v${finalAttrs.version}"; 107 - hash = "sha256-TAuoa5GD50XB4OCHkSwP1oXfedzVrCBRutNxBp/zGLY="; 108 }; 109 110 patches = [ ··· 144 neovimLuaEnv 145 tree-sitter 146 unibilium 147 ] 148 ++ lib.optionals finalAttrs.finalPackage.doCheck [ 149 glibcLocales ··· 198 # can spot that cmake says this option was "not used by the project". 199 # That's because all dependencies were found and 200 # third-party/CMakeLists.txt is not read at all. 201 - "-DUSE_BUNDLED=OFF" 202 ] 203 - ++ lib.optional (!lua.pkgs.isLuaJIT) "-DPREFER_LUA=ON" 204 - ++ lib.optionals lua.pkgs.isLuaJIT [ 205 - "-DLUAC_PRG=${codegenLua}/bin/luajit -b -s %s -" 206 - "-DLUA_GEN_PRG=${codegenLua}/bin/luajit" 207 - "-DLUA_PRG=${neovimLuaEnvOnBuild}/bin/luajit" 208 - ]; 209 210 preConfigure = 211 '' ··· 236 versionCheckHook 237 ]; 238 versionCheckProgram = "${placeholder "out"}/bin/nvim"; 239 - versionCheckProgramArg = [ "--version" ]; 240 doInstallCheck = true; 241 242 passthru = {
··· 9 lua, 10 pkg-config, 11 unibilium, 12 + utf8proc, 13 libvterm-neovim, 14 tree-sitter, 15 fetchurl, ··· 97 in 98 { 99 pname = "neovim-unwrapped"; 100 + version = "0.11.0"; 101 102 __structuredAttrs = true; 103 ··· 105 owner = "neovim"; 106 repo = "neovim"; 107 tag = "v${finalAttrs.version}"; 108 + hash = "sha256-UVMRHqyq3AP9sV79EkPUZnVkj0FpbS+XDPPOppp2yFE="; 109 }; 110 111 patches = [ ··· 145 neovimLuaEnv 146 tree-sitter 147 unibilium 148 + utf8proc 149 ] 150 ++ lib.optionals finalAttrs.finalPackage.doCheck [ 151 glibcLocales ··· 200 # can spot that cmake says this option was "not used by the project". 201 # That's because all dependencies were found and 202 # third-party/CMakeLists.txt is not read at all. 203 + (lib.cmakeBool "USE_BUNDLED" false) 204 ] 205 + ++ ( 206 + if lua.pkgs.isLuaJIT then 207 + [ 208 + (lib.cmakeFeature "LUAC_PRG" "${lib.getExe' codegenLua "luajit"} -b -s %s -") 209 + (lib.cmakeFeature "LUA_GEN_PRG" (lib.getExe' codegenLua "luajit")) 210 + (lib.cmakeFeature "LUA_PRG" (lib.getExe' neovimLuaEnvOnBuild "luajit")) 211 + ] 212 + else 213 + [ 214 + (lib.cmakeBool "PREFER_LUA" true) 215 + ] 216 + ); 217 218 preConfigure = 219 '' ··· 244 versionCheckHook 245 ]; 246 versionCheckProgram = "${placeholder "out"}/bin/nvim"; 247 + versionCheckProgramArg = "--version"; 248 doInstallCheck = true; 249 250 passthru = {
+12 -12
pkgs/by-name/ne/neovim-unwrapped/treesitter-parsers.nix
··· 2 3 { 4 c.src = fetchurl { 5 - url = "https://github.com/tree-sitter/tree-sitter-c/archive/v0.21.3.tar.gz"; 6 - hash = "sha256:75a3780df6114cd37496761c4a7c9fd900c78bee3a2707f590d78c0ca3a24368"; 7 }; 8 lua.src = fetchurl { 9 - url = "https://github.com/tree-sitter-grammars/tree-sitter-lua/archive/v0.1.0.tar.gz"; 10 - hash = "sha256:230cfcbfa74ed1f7b8149e9a1f34c2efc4c589a71fe0f5dc8560622f8020d722"; 11 }; 12 vim.src = fetchurl { 13 - url = "https://github.com/neovim/tree-sitter-vim/archive/v0.4.0.tar.gz"; 14 - hash = "sha256:9f856f8b4a10ab43348550fa2d3cb2846ae3d8e60f45887200549c051c66f9d5"; 15 }; 16 vimdoc.src = fetchurl { 17 - url = "https://github.com/neovim/tree-sitter-vimdoc/archive/v3.0.0.tar.gz"; 18 - hash = "sha256:a639bf92bf57bfa1cdc90ca16af27bfaf26a9779064776dd4be34c1ef1453f6c"; 19 }; 20 query.src = fetchurl { 21 - url = "https://github.com/tree-sitter-grammars/tree-sitter-query/archive/v0.4.0.tar.gz"; 22 - hash = "sha256:d3a423ab66dc62b2969625e280116678a8a22582b5ff087795222108db2f6a6e"; 23 }; 24 markdown.src = fetchurl { 25 - url = "https://github.com/MDeiml/tree-sitter-markdown/archive/v0.2.3.tar.gz"; 26 - hash = "sha256:4909d6023643f1afc3ab219585d4035b7403f3a17849782ab803c5f73c8a31d5"; 27 }; 28 }
··· 2 3 { 4 c.src = fetchurl { 5 + url = "https://github.com/tree-sitter/tree-sitter-c/archive/v0.23.4.tar.gz"; 6 + hash = "sha256:b66c5043e26d84e5f17a059af71b157bcf202221069ed220aa1696d7d1d28a7a"; 7 }; 8 lua.src = fetchurl { 9 + url = "https://github.com/tree-sitter-grammars/tree-sitter-lua/archive/v0.3.0.tar.gz"; 10 + hash = "sha256:a34cc70abfd8d2d4b0fabf01403ea05f848e1a4bc37d8a4bfea7164657b35d31"; 11 }; 12 vim.src = fetchurl { 13 + url = "https://github.com/tree-sitter-grammars/tree-sitter-vim/archive/v0.5.0.tar.gz"; 14 + hash = "sha256:90019d12d2da0751c027124f27f5335babf069a050457adaed53693b5e9cf10a"; 15 }; 16 vimdoc.src = fetchurl { 17 + url = "https://github.com/neovim/tree-sitter-vimdoc/archive/v3.0.1.tar.gz"; 18 + hash = "sha256:76b65e5bee9ff78eb21256619b1995aac4d80f252c19e1c710a4839481ded09e"; 19 }; 20 query.src = fetchurl { 21 + url = "https://github.com/tree-sitter-grammars/tree-sitter-query/archive/v0.5.1.tar.gz"; 22 + hash = "sha256:fe8c712880a529d454347cd4c58336ac2db22243bae5055bdb5844fb3ea56192"; 23 }; 24 markdown.src = fetchurl { 25 + url = "https://github.com/tree-sitter-grammars/tree-sitter-markdown/archive/v0.4.1.tar.gz"; 26 + hash = "sha256:e0fdb2dca1eb3063940122e1475c9c2b069062a638c95939e374c5427eddee9f"; 27 }; 28 }
+5 -3
pkgs/by-name/ne/netdiscover/package.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "netdiscover"; 12 - version = "0.10"; 13 14 src = fetchFromGitHub { 15 owner = "netdiscover-scanner"; 16 repo = pname; 17 - rev = version; 18 - sha256 = "sha256-Pd/Rf1G9z8sBZA5i+bzuzYUCiNI0Tv7Bz0lJDJCQU9I="; 19 }; 20 21 nativeBuildInputs = [ autoreconfHook ]; 22 buildInputs = [ 23 libpcap 24 libnet ··· 29 meta = with lib; { 30 description = "Network address discovering tool, developed mainly for those wireless networks without dhcp server, it also works on hub/switched networks"; 31 homepage = "https://github.com/netdiscover-scanner/netdiscover"; 32 license = licenses.gpl3Plus; 33 maintainers = with maintainers; [ vdot0x23 ]; 34 platforms = platforms.unix;
··· 9 10 stdenv.mkDerivation rec { 11 pname = "netdiscover"; 12 + version = "0.11"; 13 14 src = fetchFromGitHub { 15 owner = "netdiscover-scanner"; 16 repo = pname; 17 + tag = version; 18 + hash = "sha256-LUM6vl6pohrTW3X9c1FaDE7j9mvMuAiDkFBKWc4KZso="; 19 }; 20 21 nativeBuildInputs = [ autoreconfHook ]; 22 + 23 buildInputs = [ 24 libpcap 25 libnet ··· 30 meta = with lib; { 31 description = "Network address discovering tool, developed mainly for those wireless networks without dhcp server, it also works on hub/switched networks"; 32 homepage = "https://github.com/netdiscover-scanner/netdiscover"; 33 + changelog = "https://github.com/netdiscover-scanner/netdiscover/releases/tag/${src.tag}"; 34 license = licenses.gpl3Plus; 35 maintainers = with maintainers; [ vdot0x23 ]; 36 platforms = platforms.unix;
+1 -1
pkgs/by-name/nt/ntfy/package.nix
··· 125 126 meta = with lib; { 127 description = "Utility for sending notifications, on demand and when commands finish"; 128 - homepage = "https://ntfy.rtfd.org/"; 129 license = licenses.gpl3; 130 maintainers = with maintainers; [ kamilchm ]; 131 mainProgram = "ntfy";
··· 125 126 meta = with lib; { 127 description = "Utility for sending notifications, on demand and when commands finish"; 128 + homepage = "https://ntfy.readthedocs.io/en/latest/"; 129 license = licenses.gpl3; 130 maintainers = with maintainers; [ kamilchm ]; 131 mainProgram = "ntfy";
+1 -1
pkgs/by-name/pe/perseus-cli/package.nix
··· 26 ''; 27 28 meta = with lib; { 29 - homepage = "https://arctic-hen7.github.io/perseus"; 30 description = "High-level web development framework for Rust with full support for server-side rendering and static generation"; 31 maintainers = with maintainers; [ max-niederman ]; 32 license = with licenses; [ mit ];
··· 26 ''; 27 28 meta = with lib; { 29 + homepage = "https://framesurge.sh/perseus/en-US"; 30 description = "High-level web development framework for Rust with full support for server-side rendering and static generation"; 31 maintainers = with maintainers; [ max-niederman ]; 32 license = with licenses; [ mit ];
+3 -3
pkgs/by-name/pr/protols/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "protols"; 9 - version = "0.9.0"; 10 11 src = fetchFromGitHub { 12 owner = "coder3101"; 13 repo = "protols"; 14 tag = version; 15 - hash = "sha256-MsQFGbUWymGYXLABWsDlSXAWBwxw0P9de/txrxdf/Lw="; 16 }; 17 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-eO35LukqPFooGFCluLhQacvqlVtreJH/XdnlBYwImbw="; 20 21 meta = { 22 description = "Protocol Buffers language server written in Rust";
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "protols"; 9 + version = "0.11.1"; 10 11 src = fetchFromGitHub { 12 owner = "coder3101"; 13 repo = "protols"; 14 tag = version; 15 + hash = "sha256-A2fa1rZvxVpJ6X0s0wTDROarGX5Fxp6zKK9cWiag7TQ="; 16 }; 17 18 useFetchCargoVendor = true; 19 + cargoHash = "sha256-Pvz15q9yGqcJecOvDWXQQCEDXuSEJbJyZ8Arj8Xbyh4="; 20 21 meta = { 22 description = "Protocol Buffers language server written in Rust";
+2 -2
pkgs/by-name/qu/quiet/package.nix
··· 7 8 appimageTools.wrapType2 rec { 9 pname = "quiet"; 10 - version = "4.0.2"; 11 12 src = fetchurl { 13 url = "https://github.com/TryQuiet/quiet/releases/download/@quiet/desktop@${version}/Quiet-${version}.AppImage"; 14 - hash = "sha256-+Ym3k7GbC2XRKs2t3Aokxh9/dtUXWzJqKqi4VZyO35g="; 15 }; 16 17 meta = {
··· 7 8 appimageTools.wrapType2 rec { 9 pname = "quiet"; 10 + version = "4.0.3"; 11 12 src = fetchurl { 13 url = "https://github.com/TryQuiet/quiet/releases/download/@quiet/desktop@${version}/Quiet-${version}.AppImage"; 14 + hash = "sha256-BeN0O/Q95M42+2iRtYoko0mM4rLFVlzeRPXdls+5zOs="; 15 }; 16 17 meta = {
+2 -2
pkgs/by-name/ra/radsecproxy/package.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "radsecproxy"; 12 - version = "1.11.1"; 13 14 src = fetchFromGitHub { 15 owner = "radsecproxy"; 16 repo = "radsecproxy"; 17 tag = version; 18 - hash = "sha256-2+NDcz2RGRa30+XXS/PT5rjjKJYEnibYY3mVWjDv7Jk="; 19 }; 20 21 nativeBuildInputs = [ autoreconfHook ];
··· 9 10 stdenv.mkDerivation rec { 11 pname = "radsecproxy"; 12 + version = "1.11.2"; 13 14 src = fetchFromGitHub { 15 owner = "radsecproxy"; 16 repo = "radsecproxy"; 17 tag = version; 18 + hash = "sha256-E7nU6NgCmwRzX5j1Zyx/LTztjLqYJKv+3VU6UE0HhZA="; 19 }; 20 21 nativeBuildInputs = [ autoreconfHook ];
+3 -3
pkgs/by-name/re/regal/package.nix
··· 6 7 buildGoModule rec { 8 name = "regal"; 9 - version = "0.31.1"; 10 11 src = fetchFromGitHub { 12 owner = "StyraInc"; 13 repo = "regal"; 14 rev = "v${version}"; 15 - hash = "sha256-hacpTx19DVm2MMm2UdfGlgcNhxZCVVskqO1Z4KDPV+M="; 16 }; 17 18 - vendorHash = "sha256-D1ti8wAJewTScWojAPva7gdgBJSZBr0Ruvd7NEXAB+k="; 19 20 ldflags = [ 21 "-s"
··· 6 7 buildGoModule rec { 8 name = "regal"; 9 + version = "0.32.0"; 10 11 src = fetchFromGitHub { 12 owner = "StyraInc"; 13 repo = "regal"; 14 rev = "v${version}"; 15 + hash = "sha256-fO/hZw5aoDshemK0vmlwUJiSqGQ2peF5egT40029aAg="; 16 }; 17 18 + vendorHash = "sha256-ExM7v2n2j8IhcuhA9S05gJvQq5x+jDjZtTcG+nXIorM="; 19 20 ldflags = [ 21 "-s"
+3 -3
pkgs/by-name/re/release-plz/package.nix
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "release-plz"; 14 - version = "0.3.125"; 15 16 src = fetchFromGitHub { 17 owner = "MarcoIeni"; 18 repo = "release-plz"; 19 rev = "release-plz-v${version}"; 20 - hash = "sha256-mtoXs9AyRzI4lOFHAaR+mqZn72y8ljhVMxZHs5GbD2o="; 21 }; 22 23 useFetchCargoVendor = true; 24 - cargoHash = "sha256-e0Yoqu1oX8kI6QC42g1YrkSo7NIitGjQ4kf9VrvKaY4="; 25 26 nativeBuildInputs = [ 27 installShellFiles
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "release-plz"; 14 + version = "0.3.128"; 15 16 src = fetchFromGitHub { 17 owner = "MarcoIeni"; 18 repo = "release-plz"; 19 rev = "release-plz-v${version}"; 20 + hash = "sha256-eWmQFF52lpdX5Vj6fcDqkP3+E64r+MJINitk3HwIy0w="; 21 }; 22 23 useFetchCargoVendor = true; 24 + cargoHash = "sha256-u8DxkktCGQrfSCuKX/2JqiD6Ug3M1xXMYJg8/0ak8f8="; 25 26 nativeBuildInputs = [ 27 installShellFiles
+3 -3
pkgs/by-name/ro/rootlesskit/package.nix
··· 8 9 buildGoModule rec { 10 pname = "rootlesskit"; 11 - version = "2.3.2"; 12 13 src = fetchFromGitHub { 14 owner = "rootless-containers"; 15 repo = "rootlesskit"; 16 rev = "v${version}"; 17 - hash = "sha256-NovlOvR+nOx1J6R63LTiXoiCy9JJBKwGtTiVV5xx/1E="; 18 }; 19 20 - vendorHash = "sha256-o4STAcsxR5iOQaHKlg41ol8gsEfDLB9Yox4wFGO0FSQ="; 21 22 passthru = { 23 updateScript = nix-update-script { };
··· 8 9 buildGoModule rec { 10 pname = "rootlesskit"; 11 + version = "2.3.4"; 12 13 src = fetchFromGitHub { 14 owner = "rootless-containers"; 15 repo = "rootlesskit"; 16 rev = "v${version}"; 17 + hash = "sha256-9jQNFjxMLjGa9m2gxmoauzLHqhljltEO/ZNsBjWjgtw="; 18 }; 19 20 + vendorHash = "sha256-8X4lwCPREwSgaRFiXNL/odhsdmGYZs2SjjDKK+Bnln0="; 21 22 passthru = { 23 updateScript = nix-update-script { };
+2 -2
pkgs/by-name/si/signalbackup-tools/package.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "signalbackup-tools"; 16 - version = "20250322"; 17 18 src = fetchFromGitHub { 19 owner = "bepaald"; 20 repo = "signalbackup-tools"; 21 rev = version; 22 - hash = "sha256-GMpZjXmrSFX8jw981NeuhYo3FMRK7u7cgllPXm+rRsg="; 23 }; 24 25 nativeBuildInputs = [
··· 13 14 stdenv.mkDerivation rec { 15 pname = "signalbackup-tools"; 16 + version = "20250326"; 17 18 src = fetchFromGitHub { 19 owner = "bepaald"; 20 repo = "signalbackup-tools"; 21 rev = version; 22 + hash = "sha256-Oi2tN44h+f2Ann5Iq8PVMTT5ea/MB4easByLryc9s4k="; 23 }; 24 25 nativeBuildInputs = [
+3 -3
pkgs/by-name/ss/ssh-to-pgp/package.nix
··· 7 8 buildGoModule rec { 9 pname = "ssh-to-pgp"; 10 - version = "1.1.4"; 11 12 src = fetchFromGitHub { 13 owner = "Mic92"; 14 repo = "ssh-to-pgp"; 15 rev = version; 16 - sha256 = "sha256-Pd/bbXwvWHjU2ETKlcODO1F6211JnlK7pU74Mu01UvU="; 17 }; 18 19 - vendorHash = "sha256-69XsFBg7SdvSieQaKUDUESLtAh8cigyt47NQBO3mHpo="; 20 21 nativeCheckInputs = [ gnupg ]; 22 checkPhase = ''
··· 7 8 buildGoModule rec { 9 pname = "ssh-to-pgp"; 10 + version = "1.1.6"; 11 12 src = fetchFromGitHub { 13 owner = "Mic92"; 14 repo = "ssh-to-pgp"; 15 rev = version; 16 + sha256 = "sha256-h1/KWkbHpROkMRJ3pMN42/9+thlfY8BtWoOvqt7rxII="; 17 }; 18 19 + vendorHash = "sha256-2FKOonSdsAQPYttABW5xBkmXraqbTRc8ck882fmtlcI="; 20 21 nativeCheckInputs = [ gnupg ]; 22 checkPhase = ''
+3 -3
pkgs/by-name/st/storj-uplink/package.nix
··· 6 7 buildGoModule rec { 8 pname = "storj-uplink"; 9 - version = "1.124.4"; 10 11 src = fetchFromGitHub { 12 owner = "storj"; 13 repo = "storj"; 14 rev = "v${version}"; 15 - hash = "sha256-3VrmFSE5YdZYxcEoWtEgonQz7ZERLfF12zcPExNToVs="; 16 }; 17 18 subPackages = [ "cmd/uplink" ]; 19 20 - vendorHash = "sha256-d/ddvixerg30JZtQGNWycUR93Qeaha89W8unKUFPkDg="; 21 22 ldflags = [ 23 "-s"
··· 6 7 buildGoModule rec { 8 pname = "storj-uplink"; 9 + version = "1.125.2"; 10 11 src = fetchFromGitHub { 12 owner = "storj"; 13 repo = "storj"; 14 rev = "v${version}"; 15 + hash = "sha256-O4lp6NsUpxaikjpcDfpS+FZZHKOxjOn1Lr052PlD0W4="; 16 }; 17 18 subPackages = [ "cmd/uplink" ]; 19 20 + vendorHash = "sha256-OhYxrRTVbAbpPz25g27wgM30AQmQf3Uxh03ax8znFYY="; 21 22 ldflags = [ 23 "-s"
+3 -3
pkgs/by-name/ty/typos/package.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "typos"; 11 - version = "1.30.2"; 12 13 src = fetchFromGitHub { 14 owner = "crate-ci"; 15 repo = "typos"; 16 tag = "v${version}"; 17 - hash = "sha256-Dayr+mskYmbLY0yE0OLreMjy8rbyoqY3rgREtaO3+D8="; 18 }; 19 20 useFetchCargoVendor = true; 21 - cargoHash = "sha256-K5ekHIfQQxjkydghoU/8pBnzt/q8hSrYFYf1c4GInBM="; 22 23 passthru.updateScript = nix-update-script { }; 24
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "typos"; 11 + version = "1.30.3"; 12 13 src = fetchFromGitHub { 14 owner = "crate-ci"; 15 repo = "typos"; 16 tag = "v${version}"; 17 + hash = "sha256-Yzt5O24+Nkxvoim6BlaPzVQ3gSKrmPO/725dxzQ9XXk="; 18 }; 19 20 useFetchCargoVendor = true; 21 + cargoHash = "sha256-9+LFyrKy8Hv13Tu8Ko5PpdcSPh3sgGHWvixYT0km1Rs="; 22 23 passthru.updateScript = nix-update-script { }; 24
+1
pkgs/by-name/uc/ucc/package.nix
··· 112 113 meta = with lib; { 114 description = "Collective communication operations API"; 115 mainProgram = "ucc_info"; 116 license = licenses.bsd3; 117 maintainers = [ maintainers.markuskowa ];
··· 112 113 meta = with lib; { 114 description = "Collective communication operations API"; 115 + homepage = "https://openucx.github.io/ucc/"; 116 mainProgram = "ucc_info"; 117 license = licenses.bsd3; 118 maintainers = [ maintainers.markuskowa ];
+17 -17
pkgs/by-name/up/upbound/sources-stable.json
··· 8 "fetchurlAttrSet": { 9 "docker-credential-up": { 10 "aarch64-darwin": { 11 - "hash": "sha256-/KHFtDPIZUp9IkO6tb7xOx1BbgCREQo0xNgD7jYMffk=", 12 - "url": "https://cli.upbound.io/stable/v0.38.1/bundle/docker-credential-up/darwin_arm64.tar.gz" 13 }, 14 "aarch64-linux": { 15 - "hash": "sha256-2NR9KMdTSRsS4Stc1mXfL0rp/IXVaABbnk0hfTq0/Z8=", 16 - "url": "https://cli.upbound.io/stable/v0.38.1/bundle/docker-credential-up/linux_arm64.tar.gz" 17 }, 18 "x86_64-darwin": { 19 - "hash": "sha256-RUbefciA1t7DO84M0fzkrDLLdQlguPNHpWujWB2O1lY=", 20 - "url": "https://cli.upbound.io/stable/v0.38.1/bundle/docker-credential-up/darwin_amd64.tar.gz" 21 }, 22 "x86_64-linux": { 23 - "hash": "sha256-j7G5yi+HS/O36sMDPHaJ3QVnbqtDXDEU9JUvEcm3s+g=", 24 - "url": "https://cli.upbound.io/stable/v0.38.1/bundle/docker-credential-up/linux_amd64.tar.gz" 25 } 26 }, 27 "up": { 28 "aarch64-darwin": { 29 - "hash": "sha256-dT7FmnR6CFf2fihqUFOA4zOxlY3CA2xtLnWwPa1lTtc=", 30 - "url": "https://cli.upbound.io/stable/v0.38.1/bundle/up/darwin_arm64.tar.gz" 31 }, 32 "aarch64-linux": { 33 - "hash": "sha256-uYjuisoB3/j2fFjlTg4WyYNgbStjs3gbQIhXVOyNiPk=", 34 - "url": "https://cli.upbound.io/stable/v0.38.1/bundle/up/linux_arm64.tar.gz" 35 }, 36 "x86_64-darwin": { 37 - "hash": "sha256-nM2NGy3JGeywZJBPbl98m1R7j4H14q0QVah3zQaQZtQ=", 38 - "url": "https://cli.upbound.io/stable/v0.38.1/bundle/up/darwin_amd64.tar.gz" 39 }, 40 "x86_64-linux": { 41 - "hash": "sha256-nFEef9UNVSs+igCxbK55PchCaBrf31yw45NFNYhpoBo=", 42 - "url": "https://cli.upbound.io/stable/v0.38.1/bundle/up/linux_amd64.tar.gz" 43 } 44 } 45 }, ··· 49 "x86_64-darwin", 50 "x86_64-linux" 51 ], 52 - "version": "0.38.1" 53 }
··· 8 "fetchurlAttrSet": { 9 "docker-credential-up": { 10 "aarch64-darwin": { 11 + "hash": "sha256-hQpZdqE27jCXIGp+Y7fdVocBPM6PJ50Z9/ly0QvFsok=", 12 + "url": "https://cli.upbound.io/stable/v0.38.4/bundle/docker-credential-up/darwin_arm64.tar.gz" 13 }, 14 "aarch64-linux": { 15 + "hash": "sha256-SHjYjf4wC8G6KpF+W86ULI1CwVH93bgKLTof5M9wvZ4=", 16 + "url": "https://cli.upbound.io/stable/v0.38.4/bundle/docker-credential-up/linux_arm64.tar.gz" 17 }, 18 "x86_64-darwin": { 19 + "hash": "sha256-XiiyEMVb8bhjmJrofE2T/Vgg+pNBNxUv0yKKm9rIx+4=", 20 + "url": "https://cli.upbound.io/stable/v0.38.4/bundle/docker-credential-up/darwin_amd64.tar.gz" 21 }, 22 "x86_64-linux": { 23 + "hash": "sha256-R3pgYboerb8gVc1sDmZVHY541yO0A3hIYeIiZ1wrTzg=", 24 + "url": "https://cli.upbound.io/stable/v0.38.4/bundle/docker-credential-up/linux_amd64.tar.gz" 25 } 26 }, 27 "up": { 28 "aarch64-darwin": { 29 + "hash": "sha256-6DTIUGeT4LGRVyfUl463y9b2zGJawWzXp/Y0aNWoYPI=", 30 + "url": "https://cli.upbound.io/stable/v0.38.4/bundle/up/darwin_arm64.tar.gz" 31 }, 32 "aarch64-linux": { 33 + "hash": "sha256-bgR9OSHRWFQG50TWt7b8r9Gdb/xE0ps5yu33C58k31I=", 34 + "url": "https://cli.upbound.io/stable/v0.38.4/bundle/up/linux_arm64.tar.gz" 35 }, 36 "x86_64-darwin": { 37 + "hash": "sha256-zMpYwYncghWCr+sNbXvjcwWcimv4ouc8EsKmK50i9zU=", 38 + "url": "https://cli.upbound.io/stable/v0.38.4/bundle/up/darwin_amd64.tar.gz" 39 }, 40 "x86_64-linux": { 41 + "hash": "sha256-f6ggEUV9CRWVcG/RkYzmwaOUljxnJeoVshwkOZL3Toc=", 42 + "url": "https://cli.upbound.io/stable/v0.38.4/bundle/up/linux_amd64.tar.gz" 43 } 44 } 45 }, ··· 49 "x86_64-darwin", 50 "x86_64-linux" 51 ], 52 + "version": "0.38.4" 53 }
+3 -3
pkgs/by-name/uv/uv/package.nix
··· 20 21 rustPlatform.buildRustPackage (finalAttrs: { 22 pname = "uv"; 23 - version = "0.6.9"; 24 25 src = fetchFromGitHub { 26 owner = "astral-sh"; 27 repo = "uv"; 28 tag = finalAttrs.version; 29 - hash = "sha256-i/NnJpLAf7pDxzIuV+30yhbPJT9+2iZcr8x4qDfxUXc="; 30 }; 31 32 useFetchCargoVendor = true; 33 - cargoHash = "sha256-NcSXp0KhNREyqA59MmzcZJ6UzJzlynGz+PUXA22pLi8="; 34 35 buildInputs = [ 36 rust-jemalloc-sys
··· 20 21 rustPlatform.buildRustPackage (finalAttrs: { 22 pname = "uv"; 23 + version = "0.6.10"; 24 25 src = fetchFromGitHub { 26 owner = "astral-sh"; 27 repo = "uv"; 28 tag = finalAttrs.version; 29 + hash = "sha256-IvHMueDY8sT+hLaySOwZ6sI3Jcb1Ht1Wpfzv17NCfI8="; 30 }; 31 32 useFetchCargoVendor = true; 33 + cargoHash = "sha256-YNeZt4Zcw0hiYiKwtuEHk5OuH041iILtFyY88/4Db3w="; 34 35 buildInputs = [ 36 rust-jemalloc-sys
+1
pkgs/by-name/vl/vlan/package.nix
··· 30 31 meta = with lib; { 32 description = "User mode programs to enable VLANs on Ethernet devices"; 33 platforms = platforms.linux; 34 license = licenses.gpl2Plus; 35 mainProgram = "vconfig";
··· 30 31 meta = with lib; { 32 description = "User mode programs to enable VLANs on Ethernet devices"; 33 + homepage = "https://www.candelatech.com/~greear/vlan.html"; 34 platforms = platforms.linux; 35 license = licenses.gpl2Plus; 36 mainProgram = "vconfig";
+7 -3
pkgs/by-name/vv/vvenc/package.nix
··· 5 gitUpdater, 6 testers, 7 cmake, 8 }: 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "vvenc"; 12 - version = "1.13.0"; 13 14 outputs = [ 15 "out" ··· 20 src = fetchFromGitHub { 21 owner = "fraunhoferhhi"; 22 repo = "vvenc"; 23 - rev = "v${finalAttrs.version}"; 24 - hash = "sha256-9fWKunafTniBsY9hK09+xYwvB7IgGPhZmgqauPHgB/g="; 25 }; 26 27 patches = [ ./unset-darwin-cmake-flags.patch ]; ··· 33 ] 34 ); 35 36 nativeBuildInputs = [ cmake ]; 37 38 cmakeFlags = [ 39 (lib.cmakeBool "VVENC_INSTALL_FULLFEATURE_APP" true) 40 (lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) 41 ]; 42
··· 5 gitUpdater, 6 testers, 7 cmake, 8 + nlohmann_json, 9 }: 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "vvenc"; 13 + version = "1.13.1"; 14 15 outputs = [ 16 "out" ··· 21 src = fetchFromGitHub { 22 owner = "fraunhoferhhi"; 23 repo = "vvenc"; 24 + tag = "v${finalAttrs.version}"; 25 + hash = "sha256-DPR1HmUYTjhKI+gTHERtxqThZ5oKKMoqYsfE709IrhA="; 26 }; 27 28 patches = [ ./unset-darwin-cmake-flags.patch ]; ··· 34 ] 35 ); 36 37 + buildInputs = [ nlohmann_json ]; 38 + 39 nativeBuildInputs = [ cmake ]; 40 41 cmakeFlags = [ 42 (lib.cmakeBool "VVENC_INSTALL_FULLFEATURE_APP" true) 43 + (lib.cmakeBool "VVENC_ENABLE_THIRDPARTY_JSON" true) 44 (lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic)) 45 ]; 46
+4 -4
pkgs/by-name/wa/watson/package.nix
··· 13 version = "2.1.0"; 14 15 src = fetchFromGitHub { 16 - owner = "TailorDev"; 17 repo = "Watson"; 18 rev = version; 19 sha256 = "sha256-/AASYeMkt18KPJljAjNPRYOpg/T5xuM10LJq4LrFD0g="; 20 }; 21 22 patches = [ 23 - # https://github.com/TailorDev/Watson/pull/473 24 (fetchpatch { 25 name = "fix-completion.patch"; 26 - url = "https://github.com/TailorDev/Watson/commit/43ad061a981eb401c161266f497e34df891a5038.patch"; 27 sha256 = "sha256-v8/asP1wooHKjyy9XXB4Rtf6x+qmGDHpRoHEne/ZCxc="; 28 }) 29 ]; ··· 49 nativeBuildInputs = [ installShellFiles ]; 50 51 meta = with lib; { 52 - homepage = "https://tailordev.github.io/Watson/"; 53 description = "Wonderful CLI to track your time!"; 54 mainProgram = "watson"; 55 license = licenses.mit;
··· 13 version = "2.1.0"; 14 15 src = fetchFromGitHub { 16 + owner = "jazzband"; 17 repo = "Watson"; 18 rev = version; 19 sha256 = "sha256-/AASYeMkt18KPJljAjNPRYOpg/T5xuM10LJq4LrFD0g="; 20 }; 21 22 patches = [ 23 + # https://github.com/jazzband/Watson/pull/473 24 (fetchpatch { 25 name = "fix-completion.patch"; 26 + url = "https://github.com/jazzband/Watson/commit/43ad061a981eb401c161266f497e34df891a5038.patch"; 27 sha256 = "sha256-v8/asP1wooHKjyy9XXB4Rtf6x+qmGDHpRoHEne/ZCxc="; 28 }) 29 ]; ··· 49 nativeBuildInputs = [ installShellFiles ]; 50 51 meta = with lib; { 52 + homepage = "https://github.com/jazzband/Watson"; 53 description = "Wonderful CLI to track your time!"; 54 mainProgram = "watson"; 55 license = licenses.mit;
+1 -1
pkgs/by-name/xb/xbase/package.nix
··· 31 ]; 32 33 meta = with lib; { 34 - homepage = "http://linux.techass.com/projects/xdb/"; 35 description = "C++ class library formerly known as XDB"; 36 platforms = platforms.linux; 37 license = licenses.lgpl2;
··· 31 ]; 32 33 meta = with lib; { 34 + homepage = "https://sourceforge.net/projects/xdb/"; 35 description = "C++ class library formerly known as XDB"; 36 platforms = platforms.linux; 37 license = licenses.lgpl2;
+2 -2
pkgs/by-name/xp/xpra-html5/package.nix
··· 8 }: 9 stdenvNoCC.mkDerivation (finalAttrs: { 10 name = "xpra-html5"; 11 - version = "17"; 12 13 src = fetchFromGitHub { 14 owner = "Xpra-org"; 15 repo = "xpra-html5"; 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-SwP7NazsiUyDD4LUziCwN0X9GTQVq0lYM2jXqNaXLEA="; 18 }; 19 20 buildInputs = [
··· 8 }: 9 stdenvNoCC.mkDerivation (finalAttrs: { 10 name = "xpra-html5"; 11 + version = "17.1"; 12 13 src = fetchFromGitHub { 14 owner = "Xpra-org"; 15 repo = "xpra-html5"; 16 tag = "v${finalAttrs.version}"; 17 + hash = "sha256-vmv3L5Fcq1GF/txqHV6pCT530SFKm0RpfGmI4BLGGp0="; 18 }; 19 20 buildInputs = [
+59 -3
pkgs/development/cuda-modules/cuda/overrides.nix
··· 296 297 cuda_sanitizer_api = _: _: { outputs = [ "out" ]; }; 298 299 nsight_compute = 300 { 301 lib, 302 qt5 ? null, 303 qt6 ? null, 304 }: 305 prevAttrs: 306 let 307 inherit (lib.strings) versionOlder versionAtLeast; 308 inherit (prevAttrs) version; 309 qt = if versionOlder version "2022.2.0" then qt5 else qt6; 310 inherit (qt) wrapQtAppsHook qtwebview; 311 in 312 { 313 nativeBuildInputs = prevAttrs.nativeBuildInputs ++ [ wrapQtAppsHook ]; 314 - buildInputs = prevAttrs.buildInputs ++ [ qtwebview ]; 315 brokenConditions = prevAttrs.brokenConditions // { 316 "Qt 5 missing (<2022.2.0)" = !(versionOlder version "2022.2.0" -> qt5 != null); 317 "Qt 6 missing (>=2022.2.0)" = !(versionAtLeast version "2022.2.0" -> qt6 != null); ··· 320 321 nsight_systems = 322 { 323 cuda_cudart, 324 cudaOlder, 325 gst_all_1, ··· 354 "nsight-systems/*/*/lib{ssl,ssh,crypto}*" 355 "nsight-systems/*/*/libboost*" 356 "nsight-systems/*/*/libexec" 357 - "nsight-systems/*/*/libQt*" 358 "nsight-systems/*/*/libstdc*" 359 "nsight-systems/*/*/libgbm" 360 - "nsight-systems/*/*/Plugins" 361 "nsight-systems/*/*/python/bin/python" 362 ]; 363 postPatch = 364 prevAttrs.postPatch or "" ··· 366 for path in $rmPatterns; do 367 rm -r "$path" 368 done 369 ''; 370 nativeBuildInputs = prevAttrs.nativeBuildInputs ++ [ qt.wrapQtAppsHook ]; 371 buildInputs = prevAttrs.buildInputs ++ [ 372 (qt.qtdeclarative or qt.full) 373 (qt.qtsvg or qt.full) 374 cuda_cudart.stubs 375 gst_all_1.gst-plugins-base 376 gst_all_1.gstreamer ··· 386 xorg.libXdamage 387 xorg.libXrandr 388 xorg.libXtst 389 ]; 390 391 brokenConditions = prevAttrs.brokenConditions // {
··· 296 297 cuda_sanitizer_api = _: _: { outputs = [ "out" ]; }; 298 299 + fabricmanager = { zlib }: prevAttrs: { buildInputs = prevAttrs.buildInputs ++ [ zlib ]; }; 300 + 301 + imex = { zlib }: prevAttrs: { buildInputs = prevAttrs.buildInputs ++ [ zlib ]; }; 302 + 303 nsight_compute = 304 { 305 lib, 306 qt5 ? null, 307 qt6 ? null, 308 + rdma-core, 309 }: 310 prevAttrs: 311 let 312 inherit (lib.strings) versionOlder versionAtLeast; 313 inherit (prevAttrs) version; 314 qt = if versionOlder version "2022.2.0" then qt5 else qt6; 315 + qtwayland = 316 + if lib.versions.major qt.qtbase.version == "5" then 317 + lib.getBin qt.qtwayland 318 + else 319 + lib.getLib qt.qtwayland; 320 inherit (qt) wrapQtAppsHook qtwebview; 321 in 322 { 323 nativeBuildInputs = prevAttrs.nativeBuildInputs ++ [ wrapQtAppsHook ]; 324 + buildInputs = prevAttrs.buildInputs ++ [ 325 + qtwayland 326 + qtwebview 327 + (qt.qtwebengine or qt.full) 328 + rdma-core 329 + ]; 330 + dontWrapQtApps = true; 331 + postInstall = '' 332 + moveToOutput 'ncu' "''${!outputBin}/bin" 333 + moveToOutput 'ncu-ui' "''${!outputBin}/bin" 334 + moveToOutput 'host/*' "''${!outputBin}/bin" 335 + moveToOutput 'target/*' "''${!outputBin}/bin" 336 + wrapQtApp "''${!outputBin}/bin/host/linux-desktop-glibc_2_11_3-x64/ncu-ui.bin" 337 + ''; 338 + autoPatchelfIgnoreMissingDeps = prevAttrs.autoPatchelfIgnoreMissingDeps ++ [ 339 + "libnvidia-ml.so.1" 340 + "libtiff.so.5" 341 + ]; 342 brokenConditions = prevAttrs.brokenConditions // { 343 "Qt 5 missing (<2022.2.0)" = !(versionOlder version "2022.2.0" -> qt5 != null); 344 "Qt 6 missing (>=2022.2.0)" = !(versionAtLeast version "2022.2.0" -> qt6 != null); ··· 347 348 nsight_systems = 349 { 350 + boost178, 351 cuda_cudart, 352 cudaOlder, 353 gst_all_1, ··· 382 "nsight-systems/*/*/lib{ssl,ssh,crypto}*" 383 "nsight-systems/*/*/libboost*" 384 "nsight-systems/*/*/libexec" 385 "nsight-systems/*/*/libstdc*" 386 "nsight-systems/*/*/libgbm" 387 "nsight-systems/*/*/python/bin/python" 388 + "nsight-systems/*/*/Mesa" 389 ]; 390 postPatch = 391 prevAttrs.postPatch or "" ··· 393 for path in $rmPatterns; do 394 rm -r "$path" 395 done 396 + patchShebangs nsight-systems 397 ''; 398 nativeBuildInputs = prevAttrs.nativeBuildInputs ++ [ qt.wrapQtAppsHook ]; 399 + dontWrapQtApps = true; 400 buildInputs = prevAttrs.buildInputs ++ [ 401 (qt.qtdeclarative or qt.full) 402 (qt.qtsvg or qt.full) 403 + (qt.qtimageformats or qt.full) 404 + (qt.qtpositioning or qt.full) 405 + (qt.qtscxml or qt.full) 406 + (qt.qttools or qt.full) 407 + (qt.qtwebengine or qt.full) 408 + (qt.qtwayland or qt.full) 409 + boost178 410 cuda_cudart.stubs 411 gst_all_1.gst-plugins-base 412 gst_all_1.gstreamer ··· 422 xorg.libXdamage 423 xorg.libXrandr 424 xorg.libXtst 425 + ]; 426 + 427 + postInstall = 428 + # 1. Move dependencies of nsys, nsys-ui binaries to bin output 429 + # 2. Fix paths in wrapper scripts 430 + let 431 + versionString = with lib.versions; "${majorMinor version}.${patch version}"; 432 + in 433 + '' 434 + moveToOutput 'nsight-systems/${versionString}/host-linux-*' "''${!outputBin}" 435 + moveToOutput 'nsight-systems/${versionString}/target-linux-*' "''${!outputBin}" 436 + moveToOutput 'nsight-systems/${versionString}/bin' "''${!outputBin}" 437 + substituteInPlace $bin/bin/nsys $bin/bin/nsys-ui \ 438 + --replace-fail 'nsight-systems-#VERSION_RSPLIT#' nsight-systems/${versionString} 439 + wrapQtApp "$bin/nsight-systems/${versionString}/host-linux-x64/nsys-ui.bin" 440 + ''; 441 + 442 + autoPatchelfIgnoreMissingDeps = prevAttrs.autoPatchelfIgnoreMissingDeps ++ [ 443 + "libnvidia-ml.so.1" 444 + "libtiff.so.5" 445 ]; 446 447 brokenConditions = prevAttrs.brokenConditions // {
+7 -2
pkgs/development/cuda-modules/nccl-tests/default.nix
··· 25 backendStdenv.mkDerivation (finalAttrs: { 26 27 pname = "nccl-tests"; 28 - version = "2.13.11"; 29 30 src = fetchFromGitHub { 31 owner = "NVIDIA"; 32 repo = "nccl-tests"; 33 rev = "v${finalAttrs.version}"; 34 - hash = "sha256-HHshp4fYW+dlyL9FZRxX761UCFR/pOBKNHfVme2TfJg="; 35 }; 36 37 strictDeps = true; 38
··· 25 backendStdenv.mkDerivation (finalAttrs: { 26 27 pname = "nccl-tests"; 28 + version = "2.14.1"; 29 30 src = fetchFromGitHub { 31 owner = "NVIDIA"; 32 repo = "nccl-tests"; 33 rev = "v${finalAttrs.version}"; 34 + hash = "sha256-PntD5seMq7s0x4hOO/wBDQdElhKCY6mFrTf073mf7zM="; 35 }; 36 + 37 + postPatch = '' 38 + # fix build failure with GCC14 39 + substituteInPlace src/Makefile --replace-fail "-std=c++11" "-std=c++14" 40 + ''; 41 42 strictDeps = true; 43
+2 -2
pkgs/development/interpreters/babashka/clojure-tools.nix
··· 7 }: 8 clojure.overrideAttrs (previousAttrs: { 9 pname = "babashka-clojure-tools"; 10 - version = "1.12.0.1488"; 11 12 src = fetchurl { 13 url = previousAttrs.src.url; 14 - hash = "sha256-vBm+ABC+8EIcJv077HvDvKCMGSgo1ZoVGEVCLcRCB0I="; 15 }; 16 })
··· 7 }: 8 clojure.overrideAttrs (previousAttrs: { 9 pname = "babashka-clojure-tools"; 10 + version = "1.12.0.1517"; 11 12 src = fetchurl { 13 url = previousAttrs.src.url; 14 + hash = "sha256-OGlOh2x6U2DBb0t9LDmTtyMgHFgibQk4zQIXZeM6Ue8="; 15 }; 16 })
+2 -2
pkgs/development/interpreters/babashka/default.nix
··· 9 let 10 babashka-unwrapped = buildGraalvmNativeImage rec { 11 pname = "babashka-unwrapped"; 12 - version = "1.12.196"; 13 14 src = fetchurl { 15 url = "https://github.com/babashka/babashka/releases/download/v${version}/babashka-${version}-standalone.jar"; 16 - sha256 = "sha256-11HrLQi/BYX+LqqUAN3mZx13775dzXCDFxpJP33bKQY="; 17 }; 18 19 graalvmDrv = graalvmPackages.graalvm-ce;
··· 9 let 10 babashka-unwrapped = buildGraalvmNativeImage rec { 11 pname = "babashka-unwrapped"; 12 + version = "1.12.197"; 13 14 src = fetchurl { 15 url = "https://github.com/babashka/babashka/releases/download/v${version}/babashka-${version}-standalone.jar"; 16 + sha256 = "sha256-ek2z1YqA7UU6LbvBCEWGgcefnv7MncJ/hDTYFJZKezU="; 17 }; 18 19 graalvmDrv = graalvmPackages.graalvm-ce;
+4
pkgs/development/node-packages/aliases.nix
··· 163 npm = pkgs.nodejs.overrideAttrs (old: { meta = old.meta // { mainProgram = "npm"; }; }); # added 2024-10-04 164 inherit (pkgs) npm-check-updates; # added 2023-08-22 165 ocaml-language-server = throw "ocaml-language-server was removed because it was abandoned upstream"; # added 2023-09-04 166 parcel = throw "parcel has been removed because it was broken"; # added 2025-03-12 167 parcel-bundler = self.parcel; # added 2023-09-04 168 inherit (pkgs) patch-package; # added 2024-06-29 ··· 170 inherit (pkgs) pm2; # added 2024-01-22 171 inherit (pkgs) pnpm; # added 2024-06-26 172 prettier_d_slim = pkgs.prettier-d-slim; # added 2023-09-14 173 inherit (pkgs) prisma; # added 2024-08-31 174 inherit (pkgs) pxder; # added 2023-09-26 175 inherit (pkgs) quicktype; # added 2023-09-09 ··· 179 readability-cli = pkgs.readability-cli; # Added 2023-06-12 180 inherit (pkgs) redoc-cli; # added 2023-09-12 181 remod-cli = pkgs.remod; # added 2024-12-04 182 reveal-md = pkgs.reveal-md; # added 2023-07-31 183 inherit (pkgs) rtlcss; # added 2023-08-29 184 s3http = throw "s3http was removed because it was abandoned upstream"; # added 2023-08-18 185 inherit (pkgs) serverless; # Added 2023-11-29 186 shout = throw "shout was removed because it was deprecated upstream in favor of thelounge."; # Added 2024-10-19 187 inherit (pkgs) snyk; # Added 2023-08-30 188 inherit (pkgs) sql-formatter; # added 2024-06-29 189 "@squoosh/cli" = throw "@squoosh/cli was removed because it was abandoned upstream"; # added 2023-09-02 190 ssb-server = throw "ssb-server was removed because it was broken"; # added 2023-08-21
··· 163 npm = pkgs.nodejs.overrideAttrs (old: { meta = old.meta // { mainProgram = "npm"; }; }); # added 2024-10-04 164 inherit (pkgs) npm-check-updates; # added 2023-08-22 165 ocaml-language-server = throw "ocaml-language-server was removed because it was abandoned upstream"; # added 2023-09-04 166 + orval = throw "orval has been removed because it was broken"; # added 2025-03-23 167 parcel = throw "parcel has been removed because it was broken"; # added 2025-03-12 168 parcel-bundler = self.parcel; # added 2023-09-04 169 inherit (pkgs) patch-package; # added 2024-06-29 ··· 171 inherit (pkgs) pm2; # added 2024-01-22 172 inherit (pkgs) pnpm; # added 2024-06-26 173 prettier_d_slim = pkgs.prettier-d-slim; # added 2023-09-14 174 + prettier-plugin-toml = throw "prettier-plugin-toml was removed because it provides no executable"; # added 2025-03-23 175 inherit (pkgs) prisma; # added 2024-08-31 176 inherit (pkgs) pxder; # added 2023-09-26 177 inherit (pkgs) quicktype; # added 2023-09-09 ··· 181 readability-cli = pkgs.readability-cli; # Added 2023-06-12 182 inherit (pkgs) redoc-cli; # added 2023-09-12 183 remod-cli = pkgs.remod; # added 2024-12-04 184 + "reveal.js" = throw "reveal.js was removed because it provides no executable"; # added 2025-03-23 185 reveal-md = pkgs.reveal-md; # added 2023-07-31 186 inherit (pkgs) rtlcss; # added 2023-08-29 187 s3http = throw "s3http was removed because it was abandoned upstream"; # added 2023-08-18 188 inherit (pkgs) serverless; # Added 2023-11-29 189 shout = throw "shout was removed because it was deprecated upstream in favor of thelounge."; # Added 2024-10-19 190 inherit (pkgs) snyk; # Added 2023-08-30 191 + "socket.io" = throw "socket.io was removed because it provides no executable"; # added 2025-03-23 192 inherit (pkgs) sql-formatter; # added 2024-06-29 193 "@squoosh/cli" = throw "@squoosh/cli was removed because it was abandoned upstream"; # added 2023-09-02 194 ssb-server = throw "ssb-server was removed because it was broken"; # added 2023-08-21
-4
pkgs/development/node-packages/node-packages.json
··· 124 , "np" 125 , "npm-merge-driver" 126 , "nrm" 127 - , "orval" 128 , "parsoid" 129 , "peerflix" 130 , "peerflix-server" ··· 133 , "postcss-cli" 134 , "prebuild-install" 135 , "prettier" 136 - , "prettier-plugin-toml" 137 , "@prisma/language-server" 138 , "pscid" 139 , "pulp" ··· 141 , "purescript-psa" 142 , "purs-tidy" 143 , "purty" 144 - , "reveal.js" 145 , "rimraf" 146 , "rollup" 147 , "sass" ··· 149 , "serve" 150 , "sloc" 151 , "smartdc" 152 - , "socket.io" 153 , "speed-test" 154 , "svelte-check" 155 , "svgo"
··· 124 , "np" 125 , "npm-merge-driver" 126 , "nrm" 127 , "parsoid" 128 , "peerflix" 129 , "peerflix-server" ··· 132 , "postcss-cli" 133 , "prebuild-install" 134 , "prettier" 135 , "@prisma/language-server" 136 , "pscid" 137 , "pulp" ··· 139 , "purescript-psa" 140 , "purs-tidy" 141 , "purty" 142 , "rimraf" 143 , "rollup" 144 , "sass" ··· 146 , "serve" 147 , "sloc" 148 , "smartdc" 149 , "speed-test" 150 , "svelte-check" 151 , "svgo"
-482
pkgs/development/node-packages/node-packages.nix
··· 60139 bypassCache = true; 60140 reconstructLock = true; 60141 }; 60142 - orval = nodeEnv.buildNodePackage { 60143 - name = "orval"; 60144 - packageName = "orval"; 60145 - version = "7.7.0"; 60146 - src = fetchurl { 60147 - url = "https://registry.npmjs.org/orval/-/orval-7.7.0.tgz"; 60148 - sha512 = "P7hwxaMteeiscUBQvA8SjsDdZ14HFRk/e4kynCZEwh0j1A0U2mfSdJ4dUXcjhPWuC0ZgCEbByhay0YguViLfPg=="; 60149 - }; 60150 - dependencies = [ 60151 - sources."@apidevtools/json-schema-ref-parser-11.7.2" 60152 - sources."@apidevtools/openapi-schemas-2.1.0" 60153 - sources."@apidevtools/swagger-methods-3.0.2" 60154 - sources."@apidevtools/swagger-parser-10.1.1" 60155 - sources."@asyncapi/specs-6.8.1" 60156 - sources."@exodus/schemasafe-1.3.0" 60157 - sources."@gerrit0/mini-shiki-1.27.2" 60158 - sources."@ibm-cloud/openapi-ruleset-1.29.2" 60159 - sources."@ibm-cloud/openapi-ruleset-utilities-1.7.1" 60160 - sources."@jsdevtools/ono-7.1.3" 60161 - sources."@jsep-plugin/assignment-1.3.0" 60162 - sources."@jsep-plugin/regex-1.0.4" 60163 - sources."@jsep-plugin/ternary-1.1.4" 60164 - sources."@nodelib/fs.scandir-2.1.5" 60165 - sources."@nodelib/fs.stat-2.0.5" 60166 - sources."@nodelib/fs.walk-1.2.8" 60167 - sources."@orval/angular-7.7.0" 60168 - sources."@orval/axios-7.7.0" 60169 - ( 60170 - sources."@orval/core-7.7.0" 60171 - // { 60172 - dependencies = [ 60173 - sources."openapi3-ts-4.4.0" 60174 - ]; 60175 - } 60176 - ) 60177 - sources."@orval/fetch-7.7.0" 60178 - sources."@orval/hono-7.7.0" 60179 - sources."@orval/mock-7.7.0" 60180 - sources."@orval/query-7.7.0" 60181 - sources."@orval/swr-7.7.0" 60182 - sources."@orval/zod-7.7.0" 60183 - sources."@shikijs/engine-oniguruma-1.29.2" 60184 - sources."@shikijs/types-1.29.2" 60185 - sources."@shikijs/vscode-textmate-10.0.2" 60186 - sources."@stoplight/better-ajv-errors-1.0.3" 60187 - sources."@stoplight/json-3.21.7" 60188 - ( 60189 - sources."@stoplight/json-ref-readers-1.2.2" 60190 - // { 60191 - dependencies = [ 60192 - sources."tslib-1.14.1" 60193 - ]; 60194 - } 60195 - ) 60196 - sources."@stoplight/json-ref-resolver-3.1.6" 60197 - sources."@stoplight/ordered-object-literal-1.0.5" 60198 - sources."@stoplight/path-1.3.2" 60199 - ( 60200 - sources."@stoplight/spectral-core-1.19.5" 60201 - // { 60202 - dependencies = [ 60203 - sources."@stoplight/types-13.6.0" 60204 - sources."minimatch-3.1.2" 60205 - ]; 60206 - } 60207 - ) 60208 - sources."@stoplight/spectral-formats-1.8.2" 60209 - sources."@stoplight/spectral-functions-1.9.4" 60210 - ( 60211 - sources."@stoplight/spectral-parsers-1.0.5" 60212 - // { 60213 - dependencies = [ 60214 - sources."@stoplight/types-14.1.1" 60215 - ]; 60216 - } 60217 - ) 60218 - sources."@stoplight/spectral-ref-resolver-1.0.5" 60219 - sources."@stoplight/spectral-rulesets-1.21.4" 60220 - sources."@stoplight/spectral-runtime-1.1.4" 60221 - sources."@stoplight/types-13.20.0" 60222 - ( 60223 - sources."@stoplight/yaml-4.3.0" 60224 - // { 60225 - dependencies = [ 60226 - sources."@stoplight/types-14.1.1" 60227 - ]; 60228 - } 60229 - ) 60230 - sources."@stoplight/yaml-ast-parser-0.0.50" 60231 - sources."@types/es-aggregate-error-1.0.6" 60232 - sources."@types/hast-3.0.4" 60233 - sources."@types/json-schema-7.0.15" 60234 - sources."@types/node-22.13.10" 60235 - sources."@types/unist-3.0.3" 60236 - sources."@types/urijs-1.19.25" 60237 - sources."abort-controller-3.0.0" 60238 - sources."acorn-8.14.1" 60239 - sources."ajv-8.17.1" 60240 - sources."ajv-draft-04-1.0.0" 60241 - sources."ajv-errors-3.0.0" 60242 - sources."ajv-formats-2.1.1" 60243 - sources."ansi-colors-4.1.3" 60244 - sources."ansi-regex-5.0.1" 60245 - sources."ansi-styles-4.3.0" 60246 - sources."argparse-2.0.1" 60247 - sources."array-buffer-byte-length-1.0.2" 60248 - sources."array-union-2.1.0" 60249 - sources."arraybuffer.prototype.slice-1.0.4" 60250 - sources."astring-1.9.0" 60251 - sources."async-function-1.0.0" 60252 - sources."available-typed-arrays-1.0.7" 60253 - sources."balanced-match-1.0.2" 60254 - sources."brace-expansion-1.1.11" 60255 - sources."braces-3.0.3" 60256 - sources."cac-6.7.14" 60257 - sources."call-bind-1.0.8" 60258 - sources."call-bind-apply-helpers-1.0.2" 60259 - sources."call-bound-1.0.4" 60260 - sources."call-me-maybe-1.0.2" 60261 - sources."chalk-4.1.2" 60262 - sources."chokidar-4.0.3" 60263 - sources."cliui-8.0.1" 60264 - sources."color-convert-2.0.1" 60265 - sources."color-name-1.1.4" 60266 - sources."compare-versions-6.1.1" 60267 - sources."concat-map-0.0.1" 60268 - sources."cross-spawn-7.0.6" 60269 - sources."data-view-buffer-1.0.2" 60270 - sources."data-view-byte-length-1.0.2" 60271 - sources."data-view-byte-offset-1.0.1" 60272 - sources."debug-4.4.0" 60273 - sources."define-data-property-1.1.4" 60274 - sources."define-properties-1.2.1" 60275 - sources."dependency-graph-0.11.0" 60276 - sources."dir-glob-3.0.1" 60277 - sources."dunder-proto-1.0.1" 60278 - sources."emoji-regex-8.0.0" 60279 - sources."encoding-0.1.13" 60280 - sources."enquirer-2.4.1" 60281 - sources."entities-4.5.0" 60282 - sources."es-abstract-1.23.9" 60283 - sources."es-aggregate-error-1.0.13" 60284 - sources."es-define-property-1.0.1" 60285 - sources."es-errors-1.3.0" 60286 - sources."es-object-atoms-1.1.1" 60287 - sources."es-set-tostringtag-2.1.0" 60288 - sources."es-to-primitive-1.3.0" 60289 - sources."es6-promise-3.3.1" 60290 - sources."esbuild-0.25.1" 60291 - sources."escalade-3.2.0" 60292 - sources."esutils-2.0.3" 60293 - sources."event-target-shim-5.0.1" 60294 - sources."execa-5.1.1" 60295 - sources."fast-deep-equal-3.1.3" 60296 - sources."fast-glob-3.3.3" 60297 - sources."fast-memoize-2.5.2" 60298 - sources."fast-safe-stringify-2.1.1" 60299 - sources."fast-uri-3.0.6" 60300 - sources."fastq-1.19.1" 60301 - sources."fill-range-7.1.1" 60302 - sources."find-up-5.0.0" 60303 - sources."for-each-0.3.5" 60304 - sources."fs-extra-11.3.0" 60305 - sources."function-bind-1.1.2" 60306 - sources."function.prototype.name-1.1.8" 60307 - sources."functions-have-names-1.2.3" 60308 - sources."get-caller-file-2.0.5" 60309 - sources."get-intrinsic-1.3.0" 60310 - sources."get-proto-1.0.1" 60311 - sources."get-stream-6.0.1" 60312 - sources."get-symbol-description-1.1.0" 60313 - sources."glob-parent-5.1.2" 60314 - sources."globalthis-1.0.4" 60315 - sources."globby-11.1.0" 60316 - sources."gopd-1.2.0" 60317 - sources."graceful-fs-4.2.11" 60318 - sources."has-bigints-1.1.0" 60319 - sources."has-flag-4.0.0" 60320 - sources."has-property-descriptors-1.0.2" 60321 - sources."has-proto-1.2.0" 60322 - sources."has-symbols-1.1.0" 60323 - sources."has-tostringtag-1.0.2" 60324 - sources."hasown-2.0.2" 60325 - sources."http2-client-1.3.5" 60326 - sources."human-signals-2.1.0" 60327 - sources."iconv-lite-0.6.3" 60328 - sources."ignore-5.3.2" 60329 - sources."immer-9.0.21" 60330 - sources."internal-slot-1.1.0" 60331 - sources."is-array-buffer-3.0.5" 60332 - sources."is-async-function-2.1.1" 60333 - sources."is-bigint-1.1.0" 60334 - sources."is-boolean-object-1.2.2" 60335 - sources."is-callable-1.2.7" 60336 - sources."is-data-view-1.0.2" 60337 - sources."is-date-object-1.1.0" 60338 - sources."is-extglob-2.1.1" 60339 - sources."is-finalizationregistry-1.1.1" 60340 - sources."is-fullwidth-code-point-3.0.0" 60341 - sources."is-generator-function-1.1.0" 60342 - sources."is-glob-4.0.3" 60343 - sources."is-map-2.0.3" 60344 - sources."is-number-7.0.0" 60345 - sources."is-number-object-1.1.1" 60346 - sources."is-regex-1.2.1" 60347 - sources."is-set-2.0.3" 60348 - sources."is-shared-array-buffer-1.0.4" 60349 - sources."is-stream-2.0.1" 60350 - sources."is-string-1.1.1" 60351 - sources."is-symbol-1.1.1" 60352 - sources."is-typed-array-1.1.15" 60353 - sources."is-weakmap-2.0.2" 60354 - sources."is-weakref-1.1.1" 60355 - sources."is-weakset-2.0.4" 60356 - sources."isarray-2.0.5" 60357 - sources."isexe-2.0.0" 60358 - sources."js-yaml-4.1.0" 60359 - sources."jsep-1.4.0" 60360 - sources."json-schema-traverse-1.0.0" 60361 - sources."jsonc-parser-2.2.1" 60362 - sources."jsonfile-6.1.0" 60363 - sources."jsonpath-plus-10.3.0" 60364 - sources."jsonpointer-5.0.1" 60365 - sources."jsonschema-1.5.0" 60366 - sources."leven-3.1.0" 60367 - sources."linkify-it-5.0.0" 60368 - sources."locate-path-6.0.0" 60369 - sources."lodash-4.17.21" 60370 - sources."lodash.isempty-4.4.0" 60371 - sources."lodash.omitby-4.6.0" 60372 - sources."lodash.topath-4.5.2" 60373 - sources."lodash.uniq-4.5.0" 60374 - sources."lodash.uniqby-4.7.0" 60375 - sources."lodash.uniqwith-4.5.0" 60376 - sources."loglevel-1.9.2" 60377 - sources."loglevel-plugin-prefix-0.8.4" 60378 - sources."lunr-2.3.9" 60379 - sources."markdown-it-14.1.0" 60380 - sources."math-intrinsics-1.1.0" 60381 - sources."mdurl-2.0.0" 60382 - sources."merge-stream-2.0.0" 60383 - sources."merge2-1.4.1" 60384 - sources."micromatch-4.0.8" 60385 - sources."mimic-fn-2.1.0" 60386 - ( 60387 - sources."minimatch-6.2.0" 60388 - // { 60389 - dependencies = [ 60390 - sources."brace-expansion-2.0.1" 60391 - ]; 60392 - } 60393 - ) 60394 - sources."ms-2.1.3" 60395 - sources."nimma-0.2.3" 60396 - sources."node-fetch-2.7.0" 60397 - sources."node-fetch-h2-2.3.0" 60398 - sources."node-readfiles-0.2.0" 60399 - sources."npm-run-path-4.0.1" 60400 - sources."oas-kit-common-1.0.8" 60401 - ( 60402 - sources."oas-linter-3.2.2" 60403 - // { 60404 - dependencies = [ 60405 - sources."yaml-1.10.2" 60406 - ]; 60407 - } 60408 - ) 60409 - ( 60410 - sources."oas-resolver-2.5.6" 60411 - // { 60412 - dependencies = [ 60413 - sources."yaml-1.10.2" 60414 - ]; 60415 - } 60416 - ) 60417 - sources."oas-schema-walker-1.1.5" 60418 - ( 60419 - sources."oas-validator-5.0.8" 60420 - // { 60421 - dependencies = [ 60422 - sources."yaml-1.10.2" 60423 - ]; 60424 - } 60425 - ) 60426 - sources."object-inspect-1.13.4" 60427 - sources."object-keys-1.1.1" 60428 - sources."object.assign-4.1.7" 60429 - sources."onetime-5.1.2" 60430 - sources."openapi-types-12.1.3" 60431 - sources."openapi3-ts-4.2.2" 60432 - sources."own-keys-1.0.1" 60433 - sources."p-limit-3.1.0" 60434 - sources."p-locate-5.0.0" 60435 - sources."path-exists-4.0.0" 60436 - sources."path-key-3.1.1" 60437 - sources."path-type-4.0.0" 60438 - sources."picomatch-2.3.1" 60439 - sources."pony-cause-1.1.1" 60440 - sources."possible-typed-array-names-1.1.0" 60441 - sources."punycode.js-2.3.1" 60442 - sources."queue-microtask-1.2.3" 60443 - sources."readdirp-4.1.2" 60444 - sources."reflect.getprototypeof-1.0.10" 60445 - sources."reftools-1.1.9" 60446 - sources."regexp.prototype.flags-1.5.4" 60447 - sources."require-directory-2.1.1" 60448 - sources."require-from-string-2.0.2" 60449 - sources."reusify-1.1.0" 60450 - sources."run-parallel-1.2.0" 60451 - sources."safe-array-concat-1.1.3" 60452 - sources."safe-push-apply-1.0.0" 60453 - sources."safe-regex-test-1.1.0" 60454 - sources."safe-stable-stringify-1.1.1" 60455 - sources."safer-buffer-2.1.2" 60456 - sources."set-function-length-1.2.2" 60457 - sources."set-function-name-2.0.2" 60458 - sources."set-proto-1.0.0" 60459 - sources."shebang-command-2.0.0" 60460 - sources."shebang-regex-3.0.0" 60461 - sources."should-13.2.3" 60462 - sources."should-equal-2.0.0" 60463 - sources."should-format-3.0.3" 60464 - sources."should-type-1.4.0" 60465 - sources."should-type-adaptors-1.1.0" 60466 - sources."should-util-1.0.1" 60467 - sources."side-channel-1.1.0" 60468 - sources."side-channel-list-1.0.0" 60469 - sources."side-channel-map-1.0.1" 60470 - sources."side-channel-weakmap-1.0.2" 60471 - sources."signal-exit-3.0.7" 60472 - sources."simple-eval-1.0.1" 60473 - sources."slash-3.0.0" 60474 - sources."string-argv-0.3.2" 60475 - sources."string-width-4.2.3" 60476 - sources."string.prototype.trim-1.2.10" 60477 - sources."string.prototype.trimend-1.0.9" 60478 - sources."string.prototype.trimstart-1.0.8" 60479 - sources."strip-ansi-6.0.1" 60480 - sources."strip-final-newline-2.0.0" 60481 - sources."supports-color-7.2.0" 60482 - ( 60483 - sources."swagger2openapi-7.0.8" 60484 - // { 60485 - dependencies = [ 60486 - sources."yaml-1.10.2" 60487 - ]; 60488 - } 60489 - ) 60490 - sources."to-regex-range-5.0.1" 60491 - sources."tr46-0.0.3" 60492 - sources."tsconfck-2.1.2" 60493 - sources."tslib-2.8.1" 60494 - sources."typed-array-buffer-1.0.3" 60495 - sources."typed-array-byte-length-1.0.3" 60496 - sources."typed-array-byte-offset-1.0.4" 60497 - sources."typed-array-length-1.0.7" 60498 - ( 60499 - sources."typedoc-0.27.9" 60500 - // { 60501 - dependencies = [ 60502 - sources."brace-expansion-2.0.1" 60503 - sources."minimatch-9.0.5" 60504 - ]; 60505 - } 60506 - ) 60507 - sources."typedoc-plugin-markdown-4.4.2" 60508 - sources."typescript-5.8.2" 60509 - sources."uc.micro-2.1.0" 60510 - sources."unbox-primitive-1.1.0" 60511 - sources."undici-types-6.20.0" 60512 - sources."universalify-2.0.1" 60513 - sources."urijs-1.19.11" 60514 - sources."utility-types-3.11.0" 60515 - sources."validator-13.12.0" 60516 - sources."webidl-conversions-3.0.1" 60517 - sources."whatwg-url-5.0.0" 60518 - sources."which-2.0.2" 60519 - sources."which-boxed-primitive-1.1.1" 60520 - sources."which-builtin-type-1.2.1" 60521 - sources."which-collection-1.0.2" 60522 - sources."which-typed-array-1.1.19" 60523 - sources."wrap-ansi-7.0.0" 60524 - sources."y18n-5.0.8" 60525 - sources."yaml-2.7.0" 60526 - sources."yargs-17.7.2" 60527 - sources."yargs-parser-21.1.1" 60528 - sources."yocto-queue-0.1.0" 60529 - ]; 60530 - buildInputs = globalBuildInputs; 60531 - meta = { 60532 - description = "A swagger client generator for typescript"; 60533 - homepage = "https://github.com/orval-labs/orval#readme"; 60534 - license = "MIT"; 60535 - }; 60536 - production = true; 60537 - bypassCache = true; 60538 - reconstructLock = true; 60539 - }; 60540 parsoid = nodeEnv.buildNodePackage { 60541 name = "parsoid"; 60542 packageName = "parsoid"; ··· 61961 bypassCache = true; 61962 reconstructLock = true; 61963 }; 61964 - prettier-plugin-toml = nodeEnv.buildNodePackage { 61965 - name = "prettier-plugin-toml"; 61966 - packageName = "prettier-plugin-toml"; 61967 - version = "2.0.2"; 61968 - src = fetchurl { 61969 - url = "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-2.0.2.tgz"; 61970 - sha512 = "tUIIhyfdVX5DMsLGKX/2qaEwi3W48OkUSR7XC91PRI5jFzhexmaYWkrSP1Xh/eWUcEc0TVMQenM3lB09xLQstQ=="; 61971 - }; 61972 - dependencies = [ 61973 - sources."@taplo/core-0.1.1" 61974 - sources."@taplo/lib-0.4.0-alpha.2" 61975 - sources."prettier-3.5.3" 61976 - ]; 61977 - buildInputs = globalBuildInputs; 61978 - meta = { 61979 - description = "An opinionated `toml` formatter plugin for Prettier"; 61980 - homepage = "https://github.com/un-ts/prettier/tree/master/packages/toml"; 61981 - license = "MIT"; 61982 - }; 61983 - production = true; 61984 - bypassCache = true; 61985 - reconstructLock = true; 61986 - }; 61987 "@prisma/language-server" = nodeEnv.buildNodePackage { 61988 name = "_at_prisma_slash_language-server"; 61989 packageName = "@prisma/language-server"; ··· 62560 bypassCache = true; 62561 reconstructLock = true; 62562 }; 62563 - "reveal.js" = nodeEnv.buildNodePackage { 62564 - name = "reveal.js"; 62565 - packageName = "reveal.js"; 62566 - version = "5.1.0"; 62567 - src = fetchurl { 62568 - url = "https://registry.npmjs.org/reveal.js/-/reveal.js-5.1.0.tgz"; 62569 - sha512 = "KDt7m0+xwKV6nAZt4CNPVFBf42sTKRQapg0bGGKB5PKO5XvChnMfwlZkybydHiQJ7p5+6LbHKRGrhXODdoNIaA=="; 62570 - }; 62571 - buildInputs = globalBuildInputs; 62572 - meta = { 62573 - description = "The HTML Presentation Framework"; 62574 - homepage = "https://revealjs.com"; 62575 - license = "MIT"; 62576 - }; 62577 - production = true; 62578 - bypassCache = true; 62579 - reconstructLock = true; 62580 - }; 62581 rimraf = nodeEnv.buildNodePackage { 62582 name = "rimraf"; 62583 packageName = "rimraf"; ··· 63047 meta = { 63048 description = "Old Client SDK and CLI for the Joyent SmartDataCenter API"; 63049 homepage = "https://github.com/joyent/node-smartdc#readme"; 63050 - }; 63051 - production = true; 63052 - bypassCache = true; 63053 - reconstructLock = true; 63054 - }; 63055 - "socket.io" = nodeEnv.buildNodePackage { 63056 - name = "socket.io"; 63057 - packageName = "socket.io"; 63058 - version = "4.8.1"; 63059 - src = fetchurl { 63060 - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.8.1.tgz"; 63061 - sha512 = "oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg=="; 63062 - }; 63063 - dependencies = [ 63064 - sources."@socket.io/component-emitter-3.1.2" 63065 - sources."@types/cors-2.8.17" 63066 - sources."@types/node-22.13.10" 63067 - sources."accepts-1.3.8" 63068 - sources."base64id-2.0.0" 63069 - sources."bufferutil-4.0.9" 63070 - sources."cookie-0.7.2" 63071 - sources."cors-2.8.5" 63072 - sources."debug-4.3.7" 63073 - sources."engine.io-6.6.4" 63074 - sources."engine.io-parser-5.2.3" 63075 - sources."mime-db-1.52.0" 63076 - sources."mime-types-2.1.35" 63077 - sources."ms-2.1.3" 63078 - sources."negotiator-0.6.3" 63079 - sources."node-gyp-build-4.8.4" 63080 - sources."object-assign-4.1.1" 63081 - sources."socket.io-adapter-2.5.5" 63082 - sources."socket.io-parser-4.2.4" 63083 - sources."undici-types-6.20.0" 63084 - sources."utf-8-validate-6.0.5" 63085 - sources."vary-1.1.2" 63086 - sources."ws-8.17.1" 63087 - ]; 63088 - buildInputs = globalBuildInputs; 63089 - meta = { 63090 - description = "node.js realtime framework server"; 63091 - homepage = "https://github.com/socketio/socket.io/tree/main/packages/socket.io#readme"; 63092 - license = "MIT"; 63093 }; 63094 production = true; 63095 bypassCache = true;
··· 60139 bypassCache = true; 60140 reconstructLock = true; 60141 }; 60142 parsoid = nodeEnv.buildNodePackage { 60143 name = "parsoid"; 60144 packageName = "parsoid"; ··· 61563 bypassCache = true; 61564 reconstructLock = true; 61565 }; 61566 "@prisma/language-server" = nodeEnv.buildNodePackage { 61567 name = "_at_prisma_slash_language-server"; 61568 packageName = "@prisma/language-server"; ··· 62139 bypassCache = true; 62140 reconstructLock = true; 62141 }; 62142 rimraf = nodeEnv.buildNodePackage { 62143 name = "rimraf"; 62144 packageName = "rimraf"; ··· 62608 meta = { 62609 description = "Old Client SDK and CLI for the Joyent SmartDataCenter API"; 62610 homepage = "https://github.com/joyent/node-smartdc#readme"; 62611 }; 62612 production = true; 62613 bypassCache = true;
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "ailment"; 14 - version = "9.2.147"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.11"; ··· 20 owner = "angr"; 21 repo = "ailment"; 22 tag = "v${version}"; 23 - hash = "sha256-WrqkTNFhttpLG1dG05+nnqzoPUQPZUG15JooChBIKEA="; 24 }; 25 26 build-system = [ setuptools ];
··· 11 12 buildPythonPackage rec { 13 pname = "ailment"; 14 + version = "9.2.148"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.11"; ··· 20 owner = "angr"; 21 repo = "ailment"; 22 tag = "v${version}"; 23 + hash = "sha256-mUxpogD1fKKKocT7q9cdHNufkU/oUO+J1ULl9Hp9Lp4="; 24 }; 25 26 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 38 39 buildPythonPackage rec { 40 pname = "angr"; 41 - version = "9.2.147"; 42 pyproject = true; 43 44 disabled = pythonOlder "3.11"; ··· 47 owner = "angr"; 48 repo = "angr"; 49 tag = "v${version}"; 50 - hash = "sha256-ndD0NnaJtxzvb33O7/UaKi2xRuC8VRArndynZp8zCr4="; 51 }; 52 53 pythonRelaxDeps = [ "capstone" ];
··· 38 39 buildPythonPackage rec { 40 pname = "angr"; 41 + version = "9.2.148"; 42 pyproject = true; 43 44 disabled = pythonOlder "3.11"; ··· 47 owner = "angr"; 48 repo = "angr"; 49 tag = "v${version}"; 50 + hash = "sha256-WObd/zpoRn4OQO1PWcuv/6odJ0qZnKW7uFx8Z0dUmv8="; 51 }; 52 53 pythonRelaxDeps = [ "capstone" ];
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "archinfo"; 14 - version = "9.2.147"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 20 owner = "angr"; 21 repo = "archinfo"; 22 tag = "v${version}"; 23 - hash = "sha256-YDELaSIK4Bx0E6lxQsTd1zqyTsFrB9qxT6awuwUREXE="; 24 }; 25 26 build-system = [ setuptools ];
··· 11 12 buildPythonPackage rec { 13 pname = "archinfo"; 14 + version = "9.2.148"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 20 owner = "angr"; 21 repo = "archinfo"; 22 tag = "v${version}"; 23 + hash = "sha256-htg7lZVRSPnPAcPzTddT/lQ7/9LfHEV40usKASA3EsE="; 24 }; 25 26 build-system = [ setuptools ];
+44 -9
pkgs/development/python-modules/audiotools/default.nix
··· 7 AudioToolbox, 8 AudioUnit, 9 CoreServices, 10 }: 11 12 - buildPythonPackage rec { 13 pname = "audiotools"; 14 - version = "3.1.1"; 15 pyproject = true; 16 17 - build-system = [ setuptools ]; 18 19 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 20 - AudioToolbox 21 - AudioUnit 22 - CoreServices 23 ]; 24 25 src = fetchFromGitHub { 26 owner = "tuffy"; 27 repo = "python-audio-tools"; 28 - rev = "v${version}"; 29 - hash = "sha256-y+EiK9BktyTWowOiJvOb2YjtbPa7R62Wb5zinkyt1OM="; 30 }; 31 32 meta = with lib; {
··· 7 AudioToolbox, 8 AudioUnit, 9 CoreServices, 10 + pkg-config, 11 + libmpg123, 12 + lame, 13 + twolame, 14 + libopus, 15 + opusfile, 16 + libvorbis, 17 + libcdio, 18 + libcdio-paranoia, 19 }: 20 21 + buildPythonPackage { 22 pname = "audiotools"; 23 + version = "3.1.1-unstable-2020-07-29"; 24 pyproject = true; 25 26 + build-system = [ 27 + setuptools 28 + ]; 29 30 + nativeBuildInputs = [ 31 + pkg-config 32 ]; 33 34 + buildInputs = 35 + [ 36 + libmpg123 # MP2/MP3 decoding 37 + lame # MP3 encoding 38 + twolame # MP2 encoding 39 + opusfile # opus decoding 40 + libopus # opus encoding 41 + libvorbis # ogg encoding/decoding 42 + libcdio # CD reading 43 + libcdio-paranoia # CD reading 44 + ] 45 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 46 + AudioToolbox 47 + AudioUnit 48 + CoreServices 49 + ]; 50 + 51 + preConfigure = '' 52 + # need to change probe to yes because mp3lame is not reported in pkg-config 53 + substituteInPlace setup.cfg \ 54 + --replace-fail "mp3lame: probe" "mp3lame: yes" 55 + ''; 56 + 57 + # the python code contains #variant formats, PY_SSIZE_T_CLEAN must be defined 58 + # before including Python.h for 3.10 or newer 59 + # the last released version does not contain the required fix for python 3.10 60 src = fetchFromGitHub { 61 owner = "tuffy"; 62 repo = "python-audio-tools"; 63 + rev = "de55488dc982e3f6375cde2d0c2ea6aad1b1c31c"; 64 + hash = "sha256-iRakeV4Sg4oU0JtiA0O3jnmLJt99d89Hg6v9onUaSnw="; 65 }; 66 67 meta = with lib; {
+2 -17
pkgs/development/python-modules/betterproto/default.nix
··· 12 python, 13 pydantic, 14 pytest7CheckHook, 15 - pytest-asyncio, 16 pytest-mock, 17 typing-extensions, 18 tomlkit, 19 grpcio-tools, 20 }: 21 - 22 - let 23 - # using a older version of pytest-asyncio only for tests 24 - # https://github.com/pytest-dev/pytest-asyncio/issues/928 25 - pytest-asyncio_23_8 = ( 26 - pytest-asyncio.overridePythonAttrs (old: rec { 27 - version = "0.23.8"; 28 - src = fetchFromGitHub { 29 - inherit (old.src) owner repo; 30 - tag = "v${version}"; 31 - hash = "sha256-kMv0crYuYHi1LF+VlXizZkG87kSL7xzsKq9tP9LgFVY="; 32 - }; 33 - }) 34 - ); 35 - in 36 37 buildPythonPackage rec { 38 pname = "betterproto"; ··· 70 nativeCheckInputs = [ 71 grpcio-tools 72 pydantic 73 - pytest-asyncio_23_8 74 pytest-mock 75 pytest7CheckHook 76 tomlkit
··· 12 python, 13 pydantic, 14 pytest7CheckHook, 15 + pytest-asyncio_0_21, 16 pytest-mock, 17 typing-extensions, 18 tomlkit, 19 grpcio-tools, 20 }: 21 22 buildPythonPackage rec { 23 pname = "betterproto"; ··· 55 nativeCheckInputs = [ 56 grpcio-tools 57 pydantic 58 + pytest-asyncio_0_21 59 pytest-mock 60 pytest7CheckHook 61 tomlkit
+2 -2
pkgs/development/python-modules/blivet/default.nix
··· 35 in 36 buildPythonPackage rec { 37 pname = "blivet"; 38 - version = "3.12.0"; 39 format = "setuptools"; 40 41 src = fetchFromGitHub { 42 owner = "storaged-project"; 43 repo = "blivet"; 44 tag = "blivet-${version}"; 45 - hash = "sha256-09Fs9lwZksfAIH26bHyewr7ALuVo/cpMhb5xWaifXUg="; 46 }; 47 48 postPatch = ''
··· 35 in 36 buildPythonPackage rec { 37 pname = "blivet"; 38 + version = "3.12.1"; 39 format = "setuptools"; 40 41 src = fetchFromGitHub { 42 owner = "storaged-project"; 43 repo = "blivet"; 44 tag = "blivet-${version}"; 45 + hash = "sha256-ppX2rd1rFkRhca7F56JVQUDEQzW7Cg8ifV60URs2IMY="; 46 }; 47 48 postPatch = ''
+2 -2
pkgs/development/python-modules/boltztrap2/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "boltztrap2"; 20 - version = "25.2.1"; 21 22 pyproject = true; 23 ··· 31 src = fetchPypi { 32 pname = "boltztrap2"; 33 inherit version; 34 - hash = "sha256-vsg3VsN4sea+NFNwTk/5KiT/vwftDYRSAIflK+rwbQs="; 35 }; 36 37 postPatch = ''
··· 17 18 buildPythonPackage rec { 19 pname = "boltztrap2"; 20 + version = "25.3.1"; 21 22 pyproject = true; 23 ··· 31 src = fetchPypi { 32 pname = "boltztrap2"; 33 inherit version; 34 + hash = "sha256-JUIGh/6AF+xYLmF3QN47/A5E9zPKdhO2lhn97giZJ48="; 35 }; 36 37 postPatch = ''
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 359 360 buildPythonPackage rec { 361 pname = "boto3-stubs"; 362 - version = "1.37.19"; 363 pyproject = true; 364 365 disabled = pythonOlder "3.7"; ··· 367 src = fetchPypi { 368 pname = "boto3_stubs"; 369 inherit version; 370 - hash = "sha256-lcZlsTdbZXgGf9w6eFS1jspxCyiCQL0c0smxlU4/X10="; 371 }; 372 373 build-system = [ setuptools ];
··· 359 360 buildPythonPackage rec { 361 pname = "boto3-stubs"; 362 + version = "1.37.20"; 363 pyproject = true; 364 365 disabled = pythonOlder "3.7"; ··· 367 src = fetchPypi { 368 pname = "boto3_stubs"; 369 inherit version; 370 + hash = "sha256-fkGik7zbvqmbIdanOAgi58ijGZL21n2ImJrrums1zcI="; 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.37.19"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "botocore_stubs"; 20 inherit version; 21 - hash = "sha256-2Pz5QdEP+a9xz3pL2ksuT0WNeA98aR+TgRoTDWNpY/E="; 22 }; 23 24 nativeBuildInputs = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "botocore-stubs"; 13 + version = "1.37.20"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "botocore_stubs"; 20 inherit version; 21 + hash = "sha256-KVuSGMCocfk5JuAMG71pVvArOsmwWKRb27AL9ssEVAI="; 22 }; 23 24 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "claripy"; 18 - version = "9.2.147"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.11"; ··· 24 owner = "angr"; 25 repo = "claripy"; 26 tag = "v${version}"; 27 - hash = "sha256-Ml7BPlx4TT/jPXE0TRp2GeghB68AsanitsjD7lmEphk="; 28 }; 29 30 # z3 does not provide a dist-info, so python-runtime-deps-check will fail
··· 15 16 buildPythonPackage rec { 17 pname = "claripy"; 18 + version = "9.2.148"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.11"; ··· 24 owner = "angr"; 25 repo = "claripy"; 26 tag = "v${version}"; 27 + hash = "sha256-WfDsitb3Ziw3Ss7/zOblBhzfD+foZSGfyD0rGAI+HcA="; 28 }; 29 30 # z3 does not provide a dist-info, so python-runtime-deps-check will fail
+3 -3
pkgs/development/python-modules/cle/default.nix
··· 17 18 let 19 # The binaries are following the argr projects release cycle 20 - version = "9.2.147"; 21 22 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 23 binaries = fetchFromGitHub { 24 owner = "angr"; 25 repo = "binaries"; 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-Hj56jvyKceDCqYg+JdItxTKuE66ykhhSbYSUWCL5ux4="; 28 }; 29 in 30 buildPythonPackage rec { ··· 38 owner = "angr"; 39 repo = "cle"; 40 rev = "refs/tags/v${version}"; 41 - hash = "sha256-f4N97MFx/rfz1epFTbIQpPBGK+ioFRLZ99bINIbhktk="; 42 }; 43 44 build-system = [ setuptools ];
··· 17 18 let 19 # The binaries are following the argr projects release cycle 20 + version = "9.2.148"; 21 22 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 23 binaries = fetchFromGitHub { 24 owner = "angr"; 25 repo = "binaries"; 26 rev = "refs/tags/v${version}"; 27 + hash = "sha256-0D77TWGrrqRuGyfGoV46MuOt2P9w/wGSY6C6uzBGVz8="; 28 }; 29 in 30 buildPythonPackage rec { ··· 38 owner = "angr"; 39 repo = "cle"; 40 rev = "refs/tags/v${version}"; 41 + hash = "sha256-TUJUEaf4ishADsbFCBpVk9M5ntbKf/XxyXiPOaBHyC4="; 42 }; 43 44 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/coredis/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "coredis"; 18 - version = "4.18.0"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "alisaifee"; 25 repo = pname; 26 tag = version; 27 - hash = "sha256-QZKE6/pkHdhpl3uBaY+tOg7FzUzzfxYzkqbEY+HhAYQ="; 28 }; 29 30 postPatch = ''
··· 15 16 buildPythonPackage rec { 17 pname = "coredis"; 18 + version = "4.20.0"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "alisaifee"; 25 repo = pname; 26 tag = version; 27 + hash = "sha256-N7RQEgpBnXa+xtthySfec1Xw3JHtGCT2ZjmOK7H5B+A="; 28 }; 29 30 postPatch = ''
+4 -4
pkgs/development/python-modules/db-dtypes/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "db-dtypes"; 16 - version = "1.3.1"; 17 pyproject = true; 18 19 - disabled = pythonOlder "3.7"; 20 21 src = fetchFromGitHub { 22 owner = "googleapis"; 23 repo = "python-db-dtypes-pandas"; 24 tag = "v${version}"; 25 - hash = "sha256-InotzUk1lEuTD1tAojpEGfFyjrCDoGaa8JMDUdRd+Hw="; 26 }; 27 28 build-system = [ setuptools ]; ··· 41 meta = with lib; { 42 description = "Pandas Data Types for SQL systems (BigQuery, Spanner)"; 43 homepage = "https://github.com/googleapis/python-db-dtypes-pandas"; 44 - changelog = "https://github.com/googleapis/python-db-dtypes-pandas/blob/v${version}/CHANGELOG.md"; 45 license = licenses.asl20; 46 maintainers = [ ]; 47 };
··· 13 14 buildPythonPackage rec { 15 pname = "db-dtypes"; 16 + version = "1.4.2"; 17 pyproject = true; 18 19 + disabled = pythonOlder "3.8"; 20 21 src = fetchFromGitHub { 22 owner = "googleapis"; 23 repo = "python-db-dtypes-pandas"; 24 tag = "v${version}"; 25 + hash = "sha256-CW8BgUZu6EGOXEwapwXadjySbzlo8j9I8ft7OuSMVqs="; 26 }; 27 28 build-system = [ setuptools ]; ··· 41 meta = with lib; { 42 description = "Pandas Data Types for SQL systems (BigQuery, Spanner)"; 43 homepage = "https://github.com/googleapis/python-db-dtypes-pandas"; 44 + changelog = "https://github.com/googleapis/python-db-dtypes-pandas/blob/${src.tag}/CHANGELOG.md"; 45 license = licenses.asl20; 46 maintainers = [ ]; 47 };
+2 -2
pkgs/development/python-modules/dbt-core/default.nix
··· 29 30 buildPythonPackage rec { 31 pname = "dbt-core"; 32 - version = "1.9.2"; 33 pyproject = true; 34 35 disabled = pythonOlder "3.9"; ··· 38 owner = "dbt-labs"; 39 repo = "dbt-core"; 40 tag = "v${version}"; 41 - hash = "sha256-kCYQgWR9eMI7d7tM6c73dTFOyvcdmjHflTA1JdRJvvM="; 42 }; 43 44 sourceRoot = "${src.name}/core";
··· 29 30 buildPythonPackage rec { 31 pname = "dbt-core"; 32 + version = "1.9.3"; 33 pyproject = true; 34 35 disabled = pythonOlder "3.9"; ··· 38 owner = "dbt-labs"; 39 repo = "dbt-core"; 40 tag = "v${version}"; 41 + hash = "sha256-kJyeXKETYYZIHyx1LeOVcC1ELQ9NkHFhkd8gb6cuzZc="; 42 }; 43 44 sourceRoot = "${src.name}/core";
+3 -5
pkgs/development/python-modules/django-simple-captcha/default.nix
··· 9 # dependencies 10 django, 11 django-ranged-response, 12 - djangorestframework, 13 pillow, 14 15 # tests ··· 21 22 buildPythonPackage rec { 23 pname = "django-simple-captcha"; 24 - version = "0.6.1"; 25 pyproject = true; 26 27 src = fetchFromGitHub { 28 owner = "mbi"; 29 repo = "django-simple-captcha"; 30 tag = "v${version}"; 31 - hash = "sha256-2/DDiGvQmNoC8SJabngt8RaHHo48ZDD+62Gb39aeCsg="; 32 }; 33 34 build-system = [ setuptools ]; ··· 37 django 38 pillow 39 django-ranged-response 40 - djangorestframework 41 ]; 42 43 nativeCheckInputs = [ ··· 58 meta = with lib; { 59 description = "Customizable Django application to add captcha images to any Django form"; 60 homepage = "https://github.com/mbi/django-simple-captcha"; 61 - changelog = "https://github.com/mbi/django-simple-captcha/blob/v${version}/CHANGES"; 62 license = licenses.mit; 63 maintainers = with maintainers; [ 64 mrmebelman
··· 9 # dependencies 10 django, 11 django-ranged-response, 12 pillow, 13 14 # tests ··· 20 21 buildPythonPackage rec { 22 pname = "django-simple-captcha"; 23 + version = "0.6.2"; 24 pyproject = true; 25 26 src = fetchFromGitHub { 27 owner = "mbi"; 28 repo = "django-simple-captcha"; 29 tag = "v${version}"; 30 + hash = "sha256-hOvZQCAAlMYaNpAN+junhfgWej92shto7ejhKUPqbX0="; 31 }; 32 33 build-system = [ setuptools ]; ··· 36 django 37 pillow 38 django-ranged-response 39 ]; 40 41 nativeCheckInputs = [ ··· 56 meta = with lib; { 57 description = "Customizable Django application to add captcha images to any Django form"; 58 homepage = "https://github.com/mbi/django-simple-captcha"; 59 + changelog = "https://github.com/mbi/django-simple-captcha/blob/${src.tag}/CHANGES"; 60 license = licenses.mit; 61 maintainers = with maintainers; [ 62 mrmebelman
-21
pkgs/development/python-modules/dm-tree/0003-don-t-configure-apple.patch
··· 1 - diff --git a/tree/CMakeLists.txt b/tree/CMakeLists.txt 2 - index 4fd1b1a..2d1d9d3 100644 3 - --- a/tree/CMakeLists.txt 4 - +++ b/tree/CMakeLists.txt 5 - @@ -40,16 +40,6 @@ if (NOT (WIN32 OR MSVC)) 6 - endif() 7 - endif() 8 - 9 - -if(APPLE) 10 - - # On MacOS: 11 - - # -undefined dynamic_lookup is necessary for pybind11 linking 12 - - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-everything -w -undefined dynamic_lookup") 13 - - 14 - - # On MacOS, we need this so that CMake will use the right Python if the user 15 - - # has a virtual environment active 16 - - set (CMAKE_FIND_FRAMEWORK LAST) 17 - -endif() 18 - - 19 - # Fetch pybind to be able to use pybind11_add_module symbol. 20 - set(PYBIND_VER v2.10.1) 21 - include(FetchContent)
···
+4 -1
pkgs/development/python-modules/dm-tree/default.nix
··· 30 tag = version; 31 hash = "sha256-cHuaqA89r90TCPVHNP7B1cfK+WxqmfTXndJ/dRdmM24="; 32 }; 33 - 34 # Allows to forward cmake args through the conventional `cmakeFlags` 35 postPatch = '' 36 substituteInPlace setup.py \ 37 --replace-fail \ 38 "cmake_args = [" \ 39 'cmake_args = [ *os.environ.get("cmakeFlags", "").split(),' 40 ''; 41 cmakeFlags = [ 42 (lib.cmakeBool "USE_SYSTEM_ABSEIL" true)
··· 30 tag = version; 31 hash = "sha256-cHuaqA89r90TCPVHNP7B1cfK+WxqmfTXndJ/dRdmM24="; 32 }; 33 # Allows to forward cmake args through the conventional `cmakeFlags` 34 postPatch = '' 35 substituteInPlace setup.py \ 36 --replace-fail \ 37 "cmake_args = [" \ 38 'cmake_args = [ *os.environ.get("cmakeFlags", "").split(),' 39 + substituteInPlace tree/CMakeLists.txt \ 40 + --replace-fail \ 41 + "CMAKE_CXX_STANDARD 14" \ 42 + "CMAKE_CXX_STANDARD 17" 43 ''; 44 cmakeFlags = [ 45 (lib.cmakeBool "USE_SYSTEM_ABSEIL" true)
+4 -4
pkgs/development/python-modules/dohq-artifactory/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "dohq-artifactory"; 17 - version = "0.10.3"; 18 19 src = fetchFromGitHub { 20 owner = "devopshq"; 21 repo = "artifactory"; 22 tag = version; 23 - hash = "sha256-AlC5WtYnMrrI8yR1io84QtblndlZLsGGiicc10tpnF8="; 24 }; 25 26 - # https://github.com/devopshq/artifactory/issues/430 27 - disabled = pythonAtLeast "3.12"; 28 29 pyproject = true; 30
··· 14 15 buildPythonPackage rec { 16 pname = "dohq-artifactory"; 17 + version = "1.0.0"; 18 19 src = fetchFromGitHub { 20 owner = "devopshq"; 21 repo = "artifactory"; 22 tag = version; 23 + hash = "sha256-g6FozwSieurnXS76+yu/lBeL4yIWXdoyl9cUyUpMJx0="; 24 }; 25 26 + # https://github.com/devopshq/artifactory/issues/470 27 + disabled = pythonAtLeast "3.13"; 28 29 pyproject = true; 30
+3 -3
pkgs/development/python-modules/es-client/default.nix
··· 21 22 buildPythonPackage rec { 23 pname = "es-client"; 24 - version = "8.17.1"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.8"; ··· 30 owner = "untergeek"; 31 repo = "es_client"; 32 tag = "v${version}"; 33 - hash = "sha256-j7yaN7FOrGlRjZSBugRCtecfUw/3dNuI252VO/eYnzk="; 34 }; 35 36 pythonRelaxDeps = true; ··· 73 meta = with lib; { 74 description = "Module for building Elasticsearch client objects"; 75 homepage = "https://github.com/untergeek/es_client"; 76 - changelog = "https://github.com/untergeek/es_client/releases/tag/v${version}"; 77 license = licenses.asl20; 78 maintainers = with maintainers; [ fab ]; 79 };
··· 21 22 buildPythonPackage rec { 23 pname = "es-client"; 24 + version = "8.17.4"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.8"; ··· 30 owner = "untergeek"; 31 repo = "es_client"; 32 tag = "v${version}"; 33 + hash = "sha256-43LB0QceljuS3k+yYtJCbJsstsFr3d2h2Gnjal2HcdQ="; 34 }; 35 36 pythonRelaxDeps = true; ··· 73 meta = with lib; { 74 description = "Module for building Elasticsearch client objects"; 75 homepage = "https://github.com/untergeek/es_client"; 76 + changelog = "https://github.com/untergeek/es_client/releases/tag/${src.tag}"; 77 license = licenses.asl20; 78 maintainers = with maintainers; [ fab ]; 79 };
+2 -2
pkgs/development/python-modules/gassist-text/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "gassist-text"; 17 - version = "0.0.11"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.7"; ··· 23 owner = "tronikos"; 24 repo = "gassist_text"; 25 tag = version; 26 - hash = "sha256-XFHyI48TuPBJjHA4dLSpYv62Y5zK0knrIqNKBoWnEeU="; 27 }; 28 29 nativeBuildInputs = [ setuptools ];
··· 14 15 buildPythonPackage rec { 16 pname = "gassist-text"; 17 + version = "0.0.12"; 18 format = "pyproject"; 19 20 disabled = pythonOlder "3.7"; ··· 23 owner = "tronikos"; 24 repo = "gassist_text"; 25 tag = version; 26 + hash = "sha256-ToHkep+jcPcl5t05jmzRTX2QAhJRW2R+Qyhwt/zpIfc="; 27 }; 28 29 nativeBuildInputs = [ setuptools ];
+4 -4
pkgs/development/python-modules/google-cloud-audit-log/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "google-cloud-audit-log"; 13 - version = "0.3.0"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "google_cloud_audit_log"; 20 inherit version; 21 - hash = "sha256-kBQoslcCDYwdETPg+gBBZKVV5aOVx8o827hIZRPfOmU="; 22 }; 23 24 build-system = [ setuptools ]; ··· 35 36 meta = with lib; { 37 description = "Google Cloud Audit Protos"; 38 - homepage = "https://github.com/googleapis/python-audit-log"; 39 - changelog = "https://github.com/googleapis/python-audit-log/blob/v${version}/CHANGELOG.md"; 40 license = licenses.asl20; 41 maintainers = [ ]; 42 };
··· 10 11 buildPythonPackage rec { 12 pname = "google-cloud-audit-log"; 13 + version = "0.3.2"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "google_cloud_audit_log"; 20 inherit version; 21 + hash = "sha256-JZjxUzp9fN1se/RIwS5VGcHVMWLXh4ThC83R32d5G8M="; 22 }; 23 24 build-system = [ setuptools ]; ··· 35 36 meta = with lib; { 37 description = "Google Cloud Audit Protos"; 38 + homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-audit-log"; 39 + changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-audit-log-v${version}/packages/google-cloud-audit-log/CHANGELOG.md"; 40 license = licenses.asl20; 41 maintainers = [ ]; 42 };
+2 -2
pkgs/development/python-modules/harlequin-postgres/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "harlequin-postgres"; 11 - version = "1.1.1"; 12 pyproject = true; 13 14 src = fetchPypi { 15 pname = "harlequin_postgres"; 16 inherit version; 17 - hash = "sha256-O6CYGzsXqnKYS7NuoW3B6sM5it4jxZ/RSsb4g+HKNps="; 18 }; 19 20 build-system = [
··· 8 9 buildPythonPackage rec { 10 pname = "harlequin-postgres"; 11 + version = "1.2.0"; 12 pyproject = true; 13 14 src = fetchPypi { 15 pname = "harlequin_postgres"; 16 inherit version; 17 + hash = "sha256-9US0aaXP2F+UVM9pY43KpnB05KC0/uDxrpZAYOJ+RR0="; 18 }; 19 20 build-system = [
+2 -2
pkgs/development/python-modules/influxdb3-python/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "influxdb3-python"; 18 - version = "0.11.0"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "InfluxCommunity"; 25 repo = "influxdb3-python"; 26 tag = "v${version}"; 27 - hash = "sha256-B4+ctx+74tl4vPgpu1pwZTb2AJ26PGTWQI8cZ2QolwY="; 28 }; 29 30 postPatch = ''
··· 15 16 buildPythonPackage rec { 17 pname = "influxdb3-python"; 18 + version = "0.12.0"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.8"; ··· 24 owner = "InfluxCommunity"; 25 repo = "influxdb3-python"; 26 tag = "v${version}"; 27 + hash = "sha256-WD4andK52w3daIqTEzBRouEqfTrrVV63Hm220RdQr8o="; 28 }; 29 30 postPatch = ''
+2 -2
pkgs/development/python-modules/ipyvuetify/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "ipyvuetify"; 12 - version = "1.11.0"; 13 pyproject = true; 14 15 # GitHub version tries to run npm (Node JS) 16 src = fetchPypi { 17 inherit pname version; 18 - hash = "sha256-j3LUVLNaioVa4ul9RkRApt4oH8CFrObQLipDcfW7fkQ="; 19 }; 20 21 # drop pynpm which tries to install node_modules
··· 9 10 buildPythonPackage rec { 11 pname = "ipyvuetify"; 12 + version = "1.11.1"; 13 pyproject = true; 14 15 # GitHub version tries to run npm (Node JS) 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-voAD6ZrUL2Vjx3jMYECEhPtdffsXlSuU2wWu3S8NoYs="; 19 }; 20 21 # drop pynpm which tries to install node_modules
+2 -2
pkgs/development/python-modules/jsonargparse/default.nix
··· 24 25 buildPythonPackage rec { 26 pname = "jsonargparse"; 27 - version = "4.37.0"; 28 pyproject = true; 29 30 disabled = pythonOlder "3.11"; ··· 33 owner = "omni-us"; 34 repo = "jsonargparse"; 35 tag = "v${version}"; 36 - hash = "sha256-ApM4M4VMAvhrZ2KFk7js3snBx+hV5xzufGFuuN14iQM="; 37 }; 38 39 build-system = [ setuptools ];
··· 24 25 buildPythonPackage rec { 26 pname = "jsonargparse"; 27 + version = "4.38.0"; 28 pyproject = true; 29 30 disabled = pythonOlder "3.11"; ··· 33 owner = "omni-us"; 34 repo = "jsonargparse"; 35 tag = "v${version}"; 36 + hash = "sha256-DrziZ+zkfWYP0NqWNJvOaKnkRE/Qf5ENoHmvXW/5WEw="; 37 }; 38 39 build-system = [ setuptools ];
+4 -4
pkgs/development/python-modules/language-tool-python/default.nix
··· 6 }: 7 buildPythonPackage rec { 8 pname = "language-tool-python"; 9 - version = "2.8.0"; 10 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "jxmorris12"; 15 repo = "language_tool_python"; 16 - tag = "${version}"; 17 - hash = "sha256-v82RCg2lE0/ETJTiMogrI09fZ28tq1jhzFhbC89kbTU="; 18 }; 19 20 build-system = [ python3.pkgs.setuptools ]; ··· 32 license = lib.licenses.gpl3; 33 maintainers = with lib.maintainers; [ justdeeevin ]; 34 platforms = lib.platforms.all; 35 - changelog = "https://github.com/jxmorris12/language_tool_python/releases/tag/${version}"; 36 }; 37 }
··· 6 }: 7 buildPythonPackage rec { 8 pname = "language-tool-python"; 9 + version = "2.9.0"; 10 11 pyproject = true; 12 13 src = fetchFromGitHub { 14 owner = "jxmorris12"; 15 repo = "language_tool_python"; 16 + tag = version; 17 + hash = "sha256-CiKwuCMfgU7Vo0rwbKyI++EJBuKBrN1q7alwYGKuXXQ="; 18 }; 19 20 build-system = [ python3.pkgs.setuptools ]; ··· 32 license = lib.licenses.gpl3; 33 maintainers = with lib.maintainers; [ justdeeevin ]; 34 platforms = lib.platforms.all; 35 + changelog = "https://github.com/jxmorris12/language_tool_python/releases/tag/${src.tag}"; 36 }; 37 }
+2 -2
pkgs/development/python-modules/ledger-bitcoin/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "ledger-bitcoin"; 15 - version = "0.3.0"; 16 format = "pyproject"; 17 18 src = fetchPypi { 19 inherit version; 20 pname = "ledger_bitcoin"; 21 - hash = "sha256-rZzerzOkVWK71brmdRAluGmi+B1usCZ90GKgH1klpNU="; 22 }; 23 24 nativeBuildInputs = [ setuptools ];
··· 12 13 buildPythonPackage rec { 14 pname = "ledger-bitcoin"; 15 + version = "0.4.0"; 16 format = "pyproject"; 17 18 src = fetchPypi { 19 inherit version; 20 pname = "ledger_bitcoin"; 21 + hash = "sha256-IkJFLnjPS1fIuNNQnoMYYP1IUbChv6uV8vXj9H1NFQA="; 22 }; 23 24 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/libretranslate/default.nix
··· 30 31 buildPythonPackage rec { 32 pname = "libretranslate"; 33 - version = "1.6.4"; 34 pyproject = true; 35 36 src = fetchFromGitHub { 37 owner = "LibreTranslate"; 38 repo = "LibreTranslate"; 39 tag = "v${version}"; 40 - hash = "sha256-HEN+3hwfgPmXS5POK6jHGLWF5Tp4rCPKVbA9nWN3Q9I="; 41 }; 42 43 build-system = [
··· 30 31 buildPythonPackage rec { 32 pname = "libretranslate"; 33 + version = "1.6.5"; 34 pyproject = true; 35 36 src = fetchFromGitHub { 37 owner = "LibreTranslate"; 38 repo = "LibreTranslate"; 39 tag = "v${version}"; 40 + hash = "sha256-fzBVEJnj7sCkfNIIFZXHB0VQt94z0U9lbtW6+abAMpA="; 41 }; 42 43 build-system = [
+2 -2
pkgs/development/python-modules/metaflow/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "metaflow"; 13 - version = "2.15.0"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "Netflix"; 18 repo = "metaflow"; 19 tag = version; 20 - hash = "sha256-9e88rucxjgcRMOFAbHkboep9gDNeArBVi6C2Weyyz0I="; 21 }; 22 23 build-system = [
··· 10 11 buildPythonPackage rec { 12 pname = "metaflow"; 13 + version = "2.15.6"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "Netflix"; 18 repo = "metaflow"; 19 tag = version; 20 + hash = "sha256-E4RnfV6P0QZ9gOvuBTRjaDHJVElKkSq/KYy1x8b2syQ="; 21 }; 22 23 build-system = [
+2 -2
pkgs/development/python-modules/mlflow/default.nix
··· 71 72 buildPythonPackage rec { 73 pname = "mlflow"; 74 - version = "2.20.2"; 75 pyproject = true; 76 77 src = fetchFromGitHub { 78 owner = "mlflow"; 79 repo = "mlflow"; 80 tag = "v${version}"; 81 - hash = "sha256-ozwA8oHOcrlML/ArhpiELymb95MBA5Um/hnE3Wy8hTg="; 82 }; 83 84 pythonRelaxDeps = [
··· 71 72 buildPythonPackage rec { 73 pname = "mlflow"; 74 + version = "2.20.3"; 75 pyproject = true; 76 77 src = fetchFromGitHub { 78 owner = "mlflow"; 79 repo = "mlflow"; 80 tag = "v${version}"; 81 + hash = "sha256-kgohENAx5PpLQ9pBfl/zSq65l/DqJfufBf0gWR1WJHY="; 82 }; 83 84 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/monzopy/default.nix
··· 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 tag = "v${version}"; 21 - hash = "sha256-bWuWc2+80Og9mjzgqatGeR028CD3oqwKrw/BRTz3KXg="; 22 }; 23 24 build-system = [ setuptools ];
··· 9 10 buildPythonPackage rec { 11 pname = "monzopy"; 12 + version = "1.5.1"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.10"; ··· 18 owner = "JakeMartin-ICL"; 19 repo = "monzopy"; 20 tag = "v${version}"; 21 + hash = "sha256-LMg3hCaNa9LF3pZEQ/uQgt81V6qKmOwZnKHdsI8MHLY="; 22 }; 23 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/myfitnesspal/default.nix
··· 21 22 buildPythonPackage rec { 23 pname = "myfitnesspal"; 24 - version = "2.1.0"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.7"; 28 29 src = fetchPypi { 30 inherit pname version; 31 - hash = "sha256-H9oKSio+2x4TDCB4YN5mmERUEeETLKahPlW3TDDFE/E="; 32 }; 33 34 nativeBuildInputs = [ setuptools ];
··· 21 22 buildPythonPackage rec { 23 pname = "myfitnesspal"; 24 + version = "2.1.2"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.7"; 28 29 src = fetchPypi { 30 inherit pname version; 31 + hash = "sha256-eE807M8qFDlSMAcE+GFJyve1YfmlWmB3ML9VJhMUeIE="; 32 }; 33 34 nativeBuildInputs = [ setuptools ];
+10 -10
pkgs/development/python-modules/mypy-boto3/default.nix
··· 470 "sha256-uKccWDS0zhFrs6CQ9ve6by4rYL43T6iFZ3rjNy7SiyI="; 471 472 mypy-boto3-eks = 473 - buildMypyBoto3Package "eks" "1.37.4" 474 - "sha256-KuV/D7dQ87HL+smlqSrpGgi3/uw0zbP/SZ2PHgH1h/s="; 475 476 mypy-boto3-elastic-inference = 477 buildMypyBoto3Package "elastic-inference" "1.36.0" ··· 726 "sha256-WL8F1hFsE+GyJvWY8CFrDHN14KD98RcsSv3+1uwAVQM="; 727 728 mypy-boto3-keyspaces = 729 - buildMypyBoto3Package "keyspaces" "1.37.0" 730 - "sha256-VuV6WmCMyUIbMm84kjAvxE8Pd9xUpSF9RkO3XHVg6PU="; 731 732 mypy-boto3-kinesis = 733 buildMypyBoto3Package "kinesis" "1.37.0" ··· 850 "sha256-c8b/bdAfTYFJPJaK3q8+N5jQvV6/aMsoDbOxGY1OZL0="; 851 852 mypy-boto3-marketplace-entitlement = 853 - buildMypyBoto3Package "marketplace-entitlement" "1.37.0" 854 - "sha256-f7Ds+IyF+94s563loNxTAiOv1bPqTLEjckk/mPXJ+r8="; 855 856 mypy-boto3-marketplacecommerceanalytics = 857 buildMypyBoto3Package "marketplacecommerceanalytics" "1.37.0" ··· 902 "sha256-88OSler+2SJ2zDYtLmM5NeOPafKIf5zaLV8MMLRb5es="; 903 904 mypy-boto3-meteringmarketplace = 905 - buildMypyBoto3Package "meteringmarketplace" "1.37.0" 906 - "sha256-0lsfrJZ0a7+otX7jd2uSwBbbL5ogyFbnsibRI1bowPs="; 907 908 mypy-boto3-mgh = 909 buildMypyBoto3Package "mgh" "1.37.0" ··· 1174 "sha256-c0vXkW5sR7JkdzvsS/rMFme9EwY1x5eZAbRWYKew0v4="; 1175 1176 mypy-boto3-sagemaker = 1177 - buildMypyBoto3Package "sagemaker" "1.37.18" 1178 - "sha256-kgcGaU90+TvFcxPCotm8dutYkk/GL2qTOtmMyxNzkgs="; 1179 1180 mypy-boto3-sagemaker-a2i-runtime = 1181 buildMypyBoto3Package "sagemaker-a2i-runtime" "1.37.0"
··· 470 "sha256-uKccWDS0zhFrs6CQ9ve6by4rYL43T6iFZ3rjNy7SiyI="; 471 472 mypy-boto3-eks = 473 + buildMypyBoto3Package "eks" "1.37.20" 474 + "sha256-jFap7gKOZHeBtIKRz7BfEbm2EidERQhU7qohKjnYb9Y="; 475 476 mypy-boto3-elastic-inference = 477 buildMypyBoto3Package "elastic-inference" "1.36.0" ··· 726 "sha256-WL8F1hFsE+GyJvWY8CFrDHN14KD98RcsSv3+1uwAVQM="; 727 728 mypy-boto3-keyspaces = 729 + buildMypyBoto3Package "keyspaces" "1.37.20" 730 + "sha256-zHtz1D1IqSJseHBWTQFekj6QlhsiHInPy15Wd35yjng="; 731 732 mypy-boto3-kinesis = 733 buildMypyBoto3Package "kinesis" "1.37.0" ··· 850 "sha256-c8b/bdAfTYFJPJaK3q8+N5jQvV6/aMsoDbOxGY1OZL0="; 851 852 mypy-boto3-marketplace-entitlement = 853 + buildMypyBoto3Package "marketplace-entitlement" "1.37.20" 854 + "sha256-+B/0n8wPQ6OixrHwCzHUeMZiFPFf2MgRdImqonyRvbQ="; 855 856 mypy-boto3-marketplacecommerceanalytics = 857 buildMypyBoto3Package "marketplacecommerceanalytics" "1.37.0" ··· 902 "sha256-88OSler+2SJ2zDYtLmM5NeOPafKIf5zaLV8MMLRb5es="; 903 904 mypy-boto3-meteringmarketplace = 905 + buildMypyBoto3Package "meteringmarketplace" "1.37.20" 906 + "sha256-Bpcsx33TRawi+ZzseMkkYxVbkTo+PYahe8kj7TwcwIs="; 907 908 mypy-boto3-mgh = 909 buildMypyBoto3Package "mgh" "1.37.0" ··· 1174 "sha256-c0vXkW5sR7JkdzvsS/rMFme9EwY1x5eZAbRWYKew0v4="; 1175 1176 mypy-boto3-sagemaker = 1177 + buildMypyBoto3Package "sagemaker" "1.37.20" 1178 + "sha256-fncIq3N1qd+d0cvnecyn9LKd6ehjqwE8/EVnPhk/t5E="; 1179 1180 mypy-boto3-sagemaker-a2i-runtime = 1181 buildMypyBoto3Package "sagemaker-a2i-runtime" "1.37.0"
+2 -2
pkgs/development/python-modules/oracledb/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "oracledb"; 14 - version = "2.5.1"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - hash = "sha256-Y9F+u5X5Ep0KuThstjLJ5mfjvix2cnjMEajkWFRo3jM="; 22 }; 23 24 build-system = [
··· 11 12 buildPythonPackage rec { 13 pname = "oracledb"; 14 + version = "3.0.0"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + hash = "sha256-ZNyG7lwDL+vFVnmLBuewAO9oKLsCUghPat2srTNj24U="; 22 }; 23 24 build-system = [
+2 -2
pkgs/development/python-modules/oras/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "oras"; 14 - version = "0.2.25"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "oras-project"; 21 repo = "oras-py"; 22 tag = version; 23 - hash = "sha256-o9PSd5vZ5qllL73WPSlSaLA5QmKKLshGgfidiM4h+5g="; 24 }; 25 26 build-system = [ setuptools ];
··· 11 12 buildPythonPackage rec { 13 pname = "oras"; 14 + version = "0.2.27"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "oras-project"; 21 repo = "oras-py"; 22 tag = version; 23 + hash = "sha256-ysbjLiGRRYGqYUS+jlY0DDzzTXUZYu+/dajHv2O0V9o="; 24 }; 25 26 build-system = [ setuptools ];
+3 -3
pkgs/development/python-modules/psd-tools/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "psd-tools"; 22 - version = "1.10.4"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; ··· 28 owner = "psd-tools"; 29 repo = pname; 30 tag = "v${version}"; 31 - hash = "sha256-62Q8eMPPW12HnoBDwAM3+48BEarEqLzEnHcG3TR5XDc="; 32 }; 33 34 build-system = [ ··· 58 description = "Python package for reading Adobe Photoshop PSD files"; 59 mainProgram = "psd-tools"; 60 homepage = "https://github.com/kmike/psd-tools"; 61 - changelog = "https://github.com/psd-tools/psd-tools/blob/v${version}/CHANGES.rst"; 62 license = licenses.mit; 63 maintainers = with maintainers; [ onny ]; 64 };
··· 19 20 buildPythonPackage rec { 21 pname = "psd-tools"; 22 + version = "1.10.7"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.7"; ··· 28 owner = "psd-tools"; 29 repo = pname; 30 tag = "v${version}"; 31 + hash = "sha256-n3OqyItvKXD6NjCm/FgEuu1G5apTmUypwKJ+Y2DCmEg="; 32 }; 33 34 build-system = [ ··· 58 description = "Python package for reading Adobe Photoshop PSD files"; 59 mainProgram = "psd-tools"; 60 homepage = "https://github.com/kmike/psd-tools"; 61 + changelog = "https://github.com/psd-tools/psd-tools/blob/${src.tag}/CHANGES.rst"; 62 license = licenses.mit; 63 maintainers = with maintainers; [ onny ]; 64 };
+2 -2
pkgs/development/python-modules/pygerber/default.nix
··· 36 37 buildPythonPackage rec { 38 pname = "pygerber"; 39 - version = "2.4.2"; 40 pyproject = true; 41 42 disabled = pythonOlder "3.8"; ··· 45 owner = "Argmaster"; 46 repo = "pygerber"; 47 tag = "v${version}"; 48 - hash = "sha256-N+9I59WiWXSXr7RrPzb7GFSqfjrd0q51AzalNFV4xEQ="; 49 }; 50 51 build-system = [ poetry-core ];
··· 36 37 buildPythonPackage rec { 38 pname = "pygerber"; 39 + version = "2.4.3"; 40 pyproject = true; 41 42 disabled = pythonOlder "3.8"; ··· 45 owner = "Argmaster"; 46 repo = "pygerber"; 47 tag = "v${version}"; 48 + hash = "sha256-0AoRmIN1FNlummJSHdysO2IDBHtfNPhVnh9j0lyWNFI="; 49 }; 50 51 build-system = [ poetry-core ];
+14 -8
pkgs/development/python-modules/pyspiflash/default.nix
··· 1 { 2 lib, 3 buildPythonPackage, 4 - fetchPypi, 5 pyftdi, 6 }: 7 8 buildPythonPackage rec { 9 pname = "pyspiflash"; 10 - version = "0.6.3"; 11 - format = "setuptools"; 12 13 - src = fetchPypi { 14 - inherit pname version; 15 - sha256 = "0ifnw1qm4nssb03af93qw6vpa92rmyc2hisw9m4043pm9ryqcmpc"; 16 }; 17 18 - propagatedBuildInputs = [ pyftdi ]; 19 20 # tests are not shipped with the PyPI source 21 doCheck = false; ··· 25 meta = with lib; { 26 description = "SPI data flash device drivers in Python"; 27 homepage = "https://github.com/eblot/pyspiflash"; 28 - license = with licenses; [ mit ]; 29 maintainers = with maintainers; [ fab ]; 30 }; 31 }
··· 1 { 2 lib, 3 buildPythonPackage, 4 + fetchFromGitHub, 5 pyftdi, 6 + setuptools, 7 }: 8 9 buildPythonPackage rec { 10 pname = "pyspiflash"; 11 + version = "0.6.5"; 12 + pyproject = true; 13 14 + src = fetchFromGitHub { 15 + owner = "eblot"; 16 + repo = "pyspiflash"; 17 + tag = "v${version}"; 18 + hash = "sha256-NXYXvGSRhsTHu10pDYaZF84+d4QyPKECpuKpmgFstg0="; 19 }; 20 21 + build-system = [ setuptools ]; 22 + 23 + dependencies = [ pyftdi ]; 24 25 # tests are not shipped with the PyPI source 26 doCheck = false; ··· 30 meta = with lib; { 31 description = "SPI data flash device drivers in Python"; 32 homepage = "https://github.com/eblot/pyspiflash"; 33 + changelog = "https://github.com/eblot/pyspiflash/releases/tag/${src.tag}"; 34 + license = licenses.mit; 35 maintainers = with maintainers; [ fab ]; 36 }; 37 }
+2 -2
pkgs/development/python-modules/pyswitchbot/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "pyswitchbot"; 19 - version = "0.57.1"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.8"; ··· 25 owner = "Danielhiversen"; 26 repo = "pySwitchbot"; 27 tag = version; 28 - hash = "sha256-bG0jRGhioNm0QNe7ymRKYO4hdgkiZypul79+gxN3Gsk="; 29 }; 30 31 build-system = [ setuptools ];
··· 16 17 buildPythonPackage rec { 18 pname = "pyswitchbot"; 19 + version = "0.58.0"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.8"; ··· 25 owner = "Danielhiversen"; 26 repo = "pySwitchbot"; 27 tag = version; 28 + hash = "sha256-9J7s22BViQw6KaJD8wQYi6Rb/AkbPNiksap+zmuNNHc="; 29 }; 30 31 build-system = [ setuptools ];
+5 -12
pkgs/development/python-modules/python-picnic-api2/default.nix
··· 1 { 2 buildPythonPackage, 3 fetchFromGitHub, 4 lib, 5 - poetry-core, 6 pytestCheckHook, 7 python-dotenv, 8 requests, ··· 11 12 buildPythonPackage rec { 13 pname = "python-picnic-api2"; 14 - version = "1.2.2"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "codesalatdev"; 19 repo = "python-picnic-api"; 20 tag = "v${version}"; 21 - hash = "sha256-pO0aIdMKSC8AT/Bu5axl1NZbbF8IM/cOygLRT8eRKlU="; 22 }; 23 24 - build-system = [ poetry-core ]; 25 26 dependencies = [ 27 requests ··· 30 31 pythonImportsCheck = [ "python_picnic_api2" ]; 32 33 - nativeCheckInputs = [ 34 - pytestCheckHook 35 - ]; 36 37 disabledTestPaths = [ 38 # tests access the actual API 39 "integration_tests" 40 - ]; 41 - 42 - disabledTests = [ 43 - # tests don't expect requests to come with the br transfer-encoding 44 - "test_update_auth_token" 45 ]; 46 47 meta = {
··· 1 { 2 buildPythonPackage, 3 fetchFromGitHub, 4 + hatchling, 5 lib, 6 pytestCheckHook, 7 python-dotenv, 8 requests, ··· 11 12 buildPythonPackage rec { 13 pname = "python-picnic-api2"; 14 + version = "1.2.4"; 15 pyproject = true; 16 17 src = fetchFromGitHub { 18 owner = "codesalatdev"; 19 repo = "python-picnic-api"; 20 tag = "v${version}"; 21 + hash = "sha256-vlb53f+k+oX9ycyTe/63u0qoqIn8kHKtCehl82Ks9wY="; 22 }; 23 24 + build-system = [ hatchling ]; 25 26 dependencies = [ 27 requests ··· 30 31 pythonImportsCheck = [ "python_picnic_api2" ]; 32 33 + nativeCheckInputs = [ pytestCheckHook ]; 34 35 disabledTestPaths = [ 36 # tests access the actual API 37 "integration_tests" 38 ]; 39 40 meta = {
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "pyvex"; 16 - version = "9.2.147"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.11"; 20 21 src = fetchPypi { 22 inherit pname version; 23 - hash = "sha256-TC7jmGibYJ/FfTb4Btmv10O4Dt741f3SrcTWmw6d7ho="; 24 }; 25 26 build-system = [ setuptools ];
··· 13 14 buildPythonPackage rec { 15 pname = "pyvex"; 16 + version = "9.2.148"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.11"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-hr0XPtLVjz4DwVAQlobos9dMdjklQ+JXziVTvoDsM40="; 24 }; 25 26 build-system = [ setuptools ];
+4 -4
pkgs/development/python-modules/pywbem/default.nix
··· 25 26 buildPythonPackage rec { 27 pname = "pywbem"; 28 - version = "1.7.2"; 29 - format = "setuptools"; 30 31 disabled = pythonOlder "3.7"; 32 33 src = fetchPypi { 34 inherit pname version; 35 - hash = "sha256-3Dt4WEABf1/LY4HFZoJZjOu/yEUYUXaPheIxioTga2g="; 36 }; 37 38 propagatedBuildInputs = [ ··· 42 pbr 43 ply 44 pyyaml 45 six 46 yamlloader 47 ]; ··· 54 lxml 55 pytest 56 pytz 57 - requests 58 requests-mock 59 testfixtures 60 ];
··· 25 26 buildPythonPackage rec { 27 pname = "pywbem"; 28 + version = "1.7.3"; 29 + pyproject = true; 30 31 disabled = pythonOlder "3.7"; 32 33 src = fetchPypi { 34 inherit pname version; 35 + hash = "sha256-0fCi69T/7e+NBnrzhVIW21GQx/byfI0tzUZ+CXAckLA="; 36 }; 37 38 propagatedBuildInputs = [ ··· 42 pbr 43 ply 44 pyyaml 45 + requests 46 six 47 yamlloader 48 ]; ··· 55 lxml 56 pytest 57 pytz 58 requests-mock 59 testfixtures 60 ];
+59
pkgs/development/python-modules/rio-stac/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + 6 + # build system 7 + flit, 8 + 9 + # dependencies 10 + pystac, 11 + rasterio, 12 + 13 + # test 14 + jsonschema, 15 + pytestCheckHook, 16 + versionCheckHook, 17 + }: 18 + 19 + buildPythonPackage rec { 20 + pname = "rio-stac"; 21 + version = "0.10.1"; 22 + pyproject = true; 23 + 24 + src = fetchFromGitHub { 25 + owner = "developmentseed"; 26 + repo = "rio-stac"; 27 + tag = version; 28 + hash = "sha256-sK03AWDwsUanxl756z/MrroF3cm7hV3dpPhVQ/1cs3E="; 29 + }; 30 + 31 + build-system = [ flit ]; 32 + 33 + dependencies = [ 34 + pystac 35 + rasterio 36 + ]; 37 + 38 + nativeCheckInputs = [ 39 + jsonschema 40 + pytestCheckHook 41 + ]; 42 + 43 + pythonImportsCheck = [ "rio_stac" ]; 44 + 45 + disabledTests = [ 46 + # urllib url open error 47 + "test_create_item" 48 + ]; 49 + 50 + # the build should should also generate a program for cli, but nothing is installed in $out/bin 51 + # related comment: https://github.com/NixOS/nixpkgs/pull/392056#issuecomment-2751934248 52 + meta = { 53 + description = "Create STAC Items from raster datasets"; 54 + homepage = "https://github.com/developmentseed/rio-stac"; 55 + changelog = "https://github.com/developmentseed/rio-stac/tag/${src.tag}"; 56 + license = lib.licenses.mit; 57 + maintainers = with lib.maintainers; [ daspk04 ]; 58 + }; 59 + }
+3 -3
pkgs/development/python-modules/rmscene/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "rmscene"; 14 - version = "0.6.1"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.10"; ··· 20 owner = "ricklupton"; 21 repo = "rmscene"; 22 tag = "v${version}"; 23 - hash = "sha256-mgEjGfoQW73DcwMEXflR3/Ole4c5uXZJVJ699KNSqKg="; 24 }; 25 26 build-system = [ ··· 39 ]; 40 41 meta = { 42 - changelog = "https://github.com/ricklupton/rmscene/blob/${src.rev}/README.md#changelog"; 43 description = "Read v6 .rm files from the reMarkable tablet"; 44 homepage = "https://github.com/ricklupton/rmscene"; 45 license = lib.licenses.mit;
··· 11 12 buildPythonPackage rec { 13 pname = "rmscene"; 14 + version = "0.7.0"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.10"; ··· 20 owner = "ricklupton"; 21 repo = "rmscene"; 22 tag = "v${version}"; 23 + hash = "sha256-LaUzWEptzCGir6ZOgyMfP3Uf+jERT+cTb7Wx/eean1I="; 24 }; 25 26 build-system = [ ··· 39 ]; 40 41 meta = { 42 + changelog = "https://github.com/ricklupton/rmscene/blob/${src.tag}/README.md#changelog"; 43 description = "Read v6 .rm files from the reMarkable tablet"; 44 homepage = "https://github.com/ricklupton/rmscene"; 45 license = lib.licenses.mit;
+15 -4
pkgs/development/python-modules/sagemaker-core/default.nix
··· 21 pandas, 22 pylint, 23 pytest, 24 }: 25 26 buildPythonPackage rec { ··· 69 "sagemaker_core" 70 ]; 71 72 - # Only a single test which fails with: 73 - # ValueError: Must setup local AWS configuration with a region supported by SageMaker. 74 - doCheck = false; 75 76 meta = { 77 - description = "Python SDK designed to provide an object-oriented interface for interacting with Amazon SageMaker resources"; 78 homepage = "https://github.com/aws/sagemaker-core"; 79 changelog = "https://github.com/aws/sagemaker-core/blob/v${version}/CHANGELOG.md"; 80 license = lib.licenses.asl20;
··· 21 pandas, 22 pylint, 23 pytest, 24 + 25 + # tests 26 + pytestCheckHook, 27 }: 28 29 buildPythonPackage rec { ··· 72 "sagemaker_core" 73 ]; 74 75 + nativeCheckInputs = [ 76 + pytestCheckHook 77 + ] ++ lib.flatten (lib.attrValues optional-dependencies); 78 + 79 + disabledTestPaths = [ 80 + # Tries to import deprecated `sklearn` 81 + "integ/test_codegen.py" 82 + 83 + # botocore.exceptions.NoRegionError: You must specify a region 84 + "tst/generated/test_logs.py" 85 + ]; 86 87 meta = { 88 + description = "Python object-oriented interface for interacting with Amazon SageMaker resources"; 89 homepage = "https://github.com/aws/sagemaker-core"; 90 changelog = "https://github.com/aws/sagemaker-core/blob/v${version}/CHANGELOG.md"; 91 license = lib.licenses.asl20;
+2 -2
pkgs/development/python-modules/scripttest/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "scripttest"; 10 - version = "1.3"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "951cfc25219b0cd003493a565f2e621fd791beaae9f9a3bdd7024d8626419c38"; 16 }; 17 18 buildInputs = [ pytest ];
··· 7 8 buildPythonPackage rec { 9 pname = "scripttest"; 10 + version = "2.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + sha256 = "sha256-xbFdNcRlwLxjcCvYS6Q2U+EXl+rtx31er4bvwgEpk2A="; 16 }; 17 18 buildInputs = [ pytest ];
+2 -2
pkgs/development/python-modules/sopel/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "sopel"; 23 - version = "8.0.1"; 24 pyproject = true; 25 26 disabled = isPyPy || pythonOlder "3.7"; 27 28 src = fetchPypi { 29 inherit pname version; 30 - hash = "sha256-Z9Tcn2lb5a7c6aVbhPjuO6trrZQwSBA1iaMiDzpe+DA="; 31 }; 32 33 build-system = [ setuptools ];
··· 20 21 buildPythonPackage rec { 22 pname = "sopel"; 23 + version = "8.0.2"; 24 pyproject = true; 25 26 disabled = isPyPy || pythonOlder "3.7"; 27 28 src = fetchPypi { 29 inherit pname version; 30 + hash = "sha256-7LNbnSri+yjH2Nw8rBCTO8Lg84VXY6A+xMXscEkUVK8="; 31 }; 32 33 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.1345"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.9"; ··· 19 owner = "TencentCloud"; 20 repo = "tencentcloud-sdk-python"; 21 tag = version; 22 - hash = "sha256-sqWGrXuM8cUzVPKzpCeVRdE6uVg6hMG/tl4TEjT23So="; 23 }; 24 25 build-system = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "tencentcloud-sdk-python"; 13 + version = "3.0.1347"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.9"; ··· 19 owner = "TencentCloud"; 20 repo = "tencentcloud-sdk-python"; 21 tag = version; 22 + hash = "sha256-0YCO8fYfXfLeCxszJ9RXJHV1wuPFaV18Ty6+j+c1kCw="; 23 }; 24 25 build-system = [ setuptools ];
+4 -4
pkgs/development/python-modules/treelib/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "treelib"; 11 - version = "1.7.0"; 12 format = "setuptools"; 13 14 src = fetchFromGitHub { 15 owner = "caesar0301"; 16 repo = "treelib"; 17 - rev = "v${version}"; 18 - hash = "sha256-FIdJWpkOmUVZb+IkYocu1nn+oSPROrkcHeiw9wZupgM="; 19 }; 20 21 propagatedBuildInputs = [ six ]; ··· 27 meta = with lib; { 28 description = "Efficient implementation of tree data structure in python 2/3"; 29 homepage = "https://github.com/caesar0301/treelib"; 30 - changelog = "https://github.com/caesar0301/treelib/releases/tag/${src.rev}"; 31 license = licenses.asl20; 32 maintainers = with maintainers; [ mbalatsko ]; 33 };
··· 8 9 buildPythonPackage rec { 10 pname = "treelib"; 11 + version = "1.7.1"; 12 format = "setuptools"; 13 14 src = fetchFromGitHub { 15 owner = "caesar0301"; 16 repo = "treelib"; 17 + tag = "v${version}"; 18 + hash = "sha256-+6Ur2hEhUxHccZLdWHCyCkdI6Zr/wGTBIIzzbpEEiSY="; 19 }; 20 21 propagatedBuildInputs = [ six ]; ··· 27 meta = with lib; { 28 description = "Efficient implementation of tree data structure in python 2/3"; 29 homepage = "https://github.com/caesar0301/treelib"; 30 + changelog = "https://github.com/caesar0301/treelib/releases/tag/${src.tag}"; 31 license = licenses.asl20; 32 maintainers = with maintainers; [ mbalatsko ]; 33 };
+3 -3
pkgs/development/tools/godot/4.4/default.nix
··· 1 { 2 - version = "4.4-stable"; 3 - hash = "sha256-lCWz0FLSlqUZLA4APgcxuc4wupkMcXcvZ9TUzREAM4U="; 4 - exportTemplatesHash = "sha256-ayY1euO7WJJhZcF0NfobuD1Pcr8LeV/3g/opaZ2wniQ="; 5 nugetDeps = ./deps.json; 6 }
··· 1 { 2 + version = "4.4.1-stable"; 3 + hash = "sha256-O4TdPYu1K2zWKMBP/7xd0UPLDb7/4dBnkGM7QydD3Yo="; 4 + exportTemplatesHash = "sha256-KV4sDBZPiMf7IORaNFR2uEK1midnyyjCUfG9hl6AwHY="; 5 nugetDeps = ./deps.json; 6 }
+2 -2
pkgs/development/tools/pnpm/default.nix
··· 16 hash = "sha256-z4anrXZEBjldQoam0J1zBxFyCsxtk+nc6ax6xNxKKKc="; 17 }; 18 "10" = { 19 - version = "10.6.5"; 20 - hash = "sha256-R8i8pCtLSFNLWxso1XPFBnc5N7AvaOUpkvvYJpExxcg="; 21 }; 22 }; 23
··· 16 hash = "sha256-z4anrXZEBjldQoam0J1zBxFyCsxtk+nc6ax6xNxKKKc="; 17 }; 18 "10" = { 19 + version = "10.7.0"; 20 + hash = "sha256-NcqyaVO/kIR+eYg521jJoqgtUmt68Xn9KhA8GCQsrcY="; 21 }; 22 }; 23
+3 -3
pkgs/misc/fastly/default.nix
··· 10 11 buildGoModule rec { 12 pname = "fastly"; 13 - version = "10.19.0"; 14 15 src = fetchFromGitHub { 16 owner = "fastly"; 17 repo = "cli"; 18 tag = "v${version}"; 19 - hash = "sha256-uHF8YjA1j3bbAmdqthObeewmJGepyGsf/o4UBjXt3l8="; 20 # The git commit is part of the `fastly version` original output; 21 # leave that output the same in nixpkgs. Use the `.git` directory 22 # to retrieve the commit SHA, and remove the directory afterwards, ··· 33 "cmd/fastly" 34 ]; 35 36 - vendorHash = "sha256-FfJFbgjrBddAtSq8eLsCM+GXMWbSNU4EyjExv7C8W54="; 37 38 nativeBuildInputs = [ 39 installShellFiles
··· 10 11 buildGoModule rec { 12 pname = "fastly"; 13 + version = "11.0.0"; 14 15 src = fetchFromGitHub { 16 owner = "fastly"; 17 repo = "cli"; 18 tag = "v${version}"; 19 + hash = "sha256-6j8r4Rh/FrHSp/Frearot4DSabqU0UHUE13xhkLVI1c="; 20 # The git commit is part of the `fastly version` original output; 21 # leave that output the same in nixpkgs. Use the `.git` directory 22 # to retrieve the commit SHA, and remove the directory afterwards, ··· 33 "cmd/fastly" 34 ]; 35 36 + vendorHash = "sha256-Q/L9Q78vOM9loSGFqSkcKqAmaffxEnGVjYrgA6TpepE="; 37 38 nativeBuildInputs = [ 39 installShellFiles
+2 -2
pkgs/os-specific/linux/evdi/default.nix
··· 17 in 18 stdenv.mkDerivation (finalAttrs: { 19 pname = "evdi"; 20 - version = "1.14.8"; 21 22 src = fetchFromGitHub { 23 owner = "DisplayLink"; 24 repo = "evdi"; 25 tag = "v${finalAttrs.version}"; 26 - hash = "sha256-57DP8kKsPEK1C5A6QfoZZDmm76pn4SaUKEKu9cicyKI="; 27 }; 28 29 env.NIX_CFLAGS_COMPILE = toString [
··· 17 in 18 stdenv.mkDerivation (finalAttrs: { 19 pname = "evdi"; 20 + version = "1.14.9"; 21 22 src = fetchFromGitHub { 23 owner = "DisplayLink"; 24 repo = "evdi"; 25 tag = "v${finalAttrs.version}"; 26 + hash = "sha256-tkDsVa2A8DQkMAYerx7CEtPUQYG7RomNc/UsN9tZpqo="; 27 }; 28 29 env.NIX_CFLAGS_COMPILE = toString [
+3 -3
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 102 # Vulkan developer beta driver 103 # See here for more information: https://developer.nvidia.com/vulkan-driver 104 vulkan_beta = generic rec { 105 - version = "570.123.06"; 106 persistencedVersion = "550.142"; 107 settingsVersion = "550.142"; 108 - sha256_64bit = "sha256-3FwT5B51P+ktNM2UZw6nQDuS7EMpbfV0qkuRtohhNnk="; 109 - openSha256 = "sha256-a1l2+dRJRU46sn9w1vFT3pLSLDOxAlYB0B1aXM5J6rE="; 110 settingsSha256 = "sha256-Wk6IlVvs23cB4s0aMeZzSvbOQqB1RnxGMv3HkKBoIgY="; 111 persistencedSha256 = "sha256-yQFrVk4i2dwReN0XoplkJ++iA1WFhnIkP7ns4ORmkFA="; 112 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitVersion version)}-linux";
··· 102 # Vulkan developer beta driver 103 # See here for more information: https://developer.nvidia.com/vulkan-driver 104 vulkan_beta = generic rec { 105 + version = "570.123.07"; 106 persistencedVersion = "550.142"; 107 settingsVersion = "550.142"; 108 + sha256_64bit = "sha256-R07uGDxgMC+VGRO2UAeu1lky1IU1yEtk/IpR/xrxmNE="; 109 + openSha256 = "sha256-h6MtnyyqpIn/STB0vUIjrNus9gOCPR3aYGiyABNUlkk="; 110 settingsSha256 = "sha256-Wk6IlVvs23cB4s0aMeZzSvbOQqB1RnxGMv3HkKBoIgY="; 111 persistencedSha256 = "sha256-yQFrVk4i2dwReN0XoplkJ++iA1WFhnIkP7ns4ORmkFA="; 112 url = "https://developer.nvidia.com/downloads/vulkan-beta-${lib.concatStrings (lib.splitVersion version)}-linux";
+3 -3
pkgs/servers/monitoring/prometheus/nut-exporter.nix
··· 6 7 buildGoModule rec { 8 pname = "nut-exporter"; 9 - version = "3.1.3"; 10 11 src = fetchFromGitHub { 12 owner = "DRuggeri"; 13 repo = "nut_exporter"; 14 rev = "v${version}"; 15 - sha256 = "sha256-sX0yNuUg/x8BtMLbbq1gz+4//Cce+n5Qi/zspC7/scI="; 16 }; 17 18 - vendorHash = "sha256-DGCNYklINPPzC7kCdEUS7TqVvg2SnKFqe0qHs5RSmzY="; 19 20 meta = with lib; { 21 description = "Prometheus exporter for Network UPS Tools";
··· 6 7 buildGoModule rec { 8 pname = "nut-exporter"; 9 + version = "3.2.0"; 10 11 src = fetchFromGitHub { 12 owner = "DRuggeri"; 13 repo = "nut_exporter"; 14 rev = "v${version}"; 15 + sha256 = "sha256-6qexTBCLitL+dgT1Ff+414AUQqgn9s+CP5J5MkByb7s="; 16 }; 17 18 + vendorHash = "sha256-cMZ4GSal03LIZi7ESr/sQx8zLHNepOTZGEEsdvsNhec="; 19 20 meta = with lib; { 21 description = "Prometheus exporter for Network UPS Tools";
+2 -2
pkgs/servers/sql/percona-server/8_4.nix
··· 51 52 stdenv.mkDerivation (finalAttrs: { 53 pname = "percona-server"; 54 - version = "8.4.3-3"; 55 56 src = fetchurl { 57 url = "https://downloads.percona.com/downloads/Percona-Server-${lib.versions.majorMinor finalAttrs.version}/Percona-Server-${finalAttrs.version}/source/tarball/percona-server-${finalAttrs.version}.tar.gz"; 58 - hash = "sha256-37W0b8zYKErToJBU+aYtCmQjorcDtvuG0YbOwJzuZgo="; 59 }; 60 61 nativeBuildInputs = [
··· 51 52 stdenv.mkDerivation (finalAttrs: { 53 pname = "percona-server"; 54 + version = "8.4.4-4"; 55 56 src = fetchurl { 57 url = "https://downloads.percona.com/downloads/Percona-Server-${lib.versions.majorMinor finalAttrs.version}/Percona-Server-${finalAttrs.version}/source/tarball/percona-server-${finalAttrs.version}.tar.gz"; 58 + hash = "sha256-10QYJQeCY3pFHmtBIQ72rsagicNJgHvNtbLPvjjUyg4="; 59 }; 60 61 nativeBuildInputs = [
+1 -1
pkgs/tools/package-management/nix/common.nix
··· 5 , hash ? null 6 , src ? fetchFromGitHub { owner = "NixOS"; repo = "nix"; rev = version; inherit hash; } 7 , patches ? [ ] 8 - , maintainers ? with lib.maintainers; [ eelco lovesegfault artturin ] 9 , self_attribute_name 10 }@args: 11 assert (hash == null) -> (src != null);
··· 5 , hash ? null 6 , src ? fetchFromGitHub { owner = "NixOS"; repo = "nix"; rev = version; inherit hash; } 7 , patches ? [ ] 8 + , maintainers ? lib.teams.nix.members ++ [ lib.maintainers.lovesegfault lib.maintainers.artturin ] 9 , self_attribute_name 10 }@args: 11 assert (hash == null) -> (src != null);
+256 -180
pkgs/tools/package-management/nix/default.nix
··· 1 - { lib 2 - , config 3 - , stdenv 4 - , aws-sdk-cpp 5 - , boehmgc 6 - , libgit2 7 - , callPackage 8 - , fetchFromGitHub 9 - , fetchpatch2 10 - , runCommand 11 - , Security 12 - , pkgs 13 - , pkgsi686Linux 14 - , pkgsStatic 15 - , nixosTests 16 17 - , storeDir ? "/nix/store" 18 - , stateDir ? "/nix/var" 19 - , confDir ? "/etc" 20 }: 21 let 22 boehmgc-nix_2_3 = boehmgc.override { enableLargeConfig = true; }; ··· 29 }); 30 31 # old nix fails to build with newer aws-sdk-cpp and the patch doesn't apply 32 - aws-sdk-cpp-old-nix = (aws-sdk-cpp.override { 33 - apis = [ "s3" "transfer" ]; 34 - customMemoryManagement = false; 35 - }).overrideAttrs (args: rec { 36 - # intentionally overriding postPatch 37 - version = "1.9.294"; 38 39 - src = fetchFromGitHub { 40 - owner = "aws"; 41 - repo = "aws-sdk-cpp"; 42 - rev = version; 43 - hash = "sha256-Z1eRKW+8nVD53GkNyYlZjCcT74MqFqqRMeMc33eIQ9g="; 44 - }; 45 - postPatch = '' 46 - # Avoid blanket -Werror to evade build failures on less 47 - # tested compilers. 48 - substituteInPlace cmake/compiler_settings.cmake \ 49 - --replace '"-Werror"' ' ' 50 - 51 - # Missing includes for GCC11 52 - sed '5i#include <thread>' -i \ 53 - aws-cpp-sdk-cloudfront-integration-tests/CloudfrontOperationTest.cpp \ 54 - aws-cpp-sdk-cognitoidentity-integration-tests/IdentityPoolOperationTest.cpp \ 55 - aws-cpp-sdk-dynamodb-integration-tests/TableOperationTest.cpp \ 56 - aws-cpp-sdk-elasticfilesystem-integration-tests/ElasticFileSystemTest.cpp \ 57 - aws-cpp-sdk-lambda-integration-tests/FunctionTest.cpp \ 58 - aws-cpp-sdk-mediastore-data-integration-tests/MediaStoreDataTest.cpp \ 59 - aws-cpp-sdk-queues/source/sqs/SQSQueue.cpp \ 60 - aws-cpp-sdk-redshift-integration-tests/RedshiftClientTest.cpp \ 61 - aws-cpp-sdk-s3-crt-integration-tests/BucketAndObjectOperationTest.cpp \ 62 - aws-cpp-sdk-s3-integration-tests/BucketAndObjectOperationTest.cpp \ 63 - aws-cpp-sdk-s3control-integration-tests/S3ControlTest.cpp \ 64 - aws-cpp-sdk-sqs-integration-tests/QueueOperationTest.cpp \ 65 - aws-cpp-sdk-transfer-tests/TransferTests.cpp 66 - # Flaky on Hydra 67 - rm aws-cpp-sdk-core-tests/aws/auth/AWSCredentialsProviderTest.cpp 68 - # Includes aws-c-auth private headers, so only works with submodule build 69 - rm aws-cpp-sdk-core-tests/aws/auth/AWSAuthSignerTest.cpp 70 - # TestRandomURLMultiThreaded fails 71 - rm aws-cpp-sdk-core-tests/http/HttpClientTest.cpp 72 - '' + lib.optionalString aws-sdk-cpp.stdenv.hostPlatform.isi686 '' 73 - # EPSILON is exceeded 74 - rm aws-cpp-sdk-core-tests/aws/client/AdaptiveRetryStrategyTest.cpp 75 - ''; 76 77 - patches = (args.patches or [ ]) ++ [ ./patches/aws-sdk-cpp-TransferManager-ContentEncoding.patch ]; 78 79 - # only a stripped down version is build which takes a lot less resources to build 80 - requiredSystemFeatures = [ ]; 81 - }); 82 83 - aws-sdk-cpp-nix = (aws-sdk-cpp.override { 84 - apis = [ "s3" "transfer" ]; 85 - customMemoryManagement = false; 86 - }).overrideAttrs { 87 - # only a stripped down version is build which takes a lot less resources to build 88 - requiredSystemFeatures = [ ]; 89 - }; 90 91 - common = args: 92 - callPackage 93 - (import ./common.nix ({ inherit lib fetchFromGitHub; } // args)) 94 { 95 - inherit Security storeDir stateDir confDir; 96 - boehmgc = boehmgc-nix; 97 - aws-sdk-cpp = if lib.versionAtLeast args.version "2.12pre" then aws-sdk-cpp-nix else aws-sdk-cpp-old-nix; 98 }; 99 100 # https://github.com/NixOS/nix/pull/7585 101 patch-monitorfdhup = fetchpatch2 { 102 name = "nix-7585-monitor-fd-hup.patch"; ··· 106 107 # Intentionally does not support overrideAttrs etc 108 # Use only for tests that are about the package relation to `pkgs` and/or NixOS. 109 - addTestsShallowly = tests: pkg: pkg // { 110 - tests = pkg.tests // tests; 111 - # In case someone reads the wrong attribute 112 - passthru.tests = pkg.tests // tests; 113 - }; 114 115 - addFallbackPathsCheck = pkg: addTestsShallowly 116 - { nix-fallback-paths = 117 - runCommand "test-nix-fallback-paths-version-equals-nix-stable" { 118 - paths = lib.concatStringsSep "\n" (builtins.attrValues (import ../../../../nixos/modules/installer/tools/nix-fallback-paths.nix)); 119 - } '' 120 - # NOTE: name may contain cross compilation details between the pname 121 - # and version this is permitted thanks to ([^-]*-)* 122 - if [[ "" != $(grep -vE 'nix-([^-]*-)*${lib.strings.replaceStrings ["."] ["\\."] pkg.version}$' <<< "$paths") ]]; then 123 - echo "nix-fallback-paths not up to date with nixVersions.stable (nix-${pkg.version})" 124 - echo "The following paths are not up to date:" 125 - grep -v 'nix-${pkg.version}$' <<< "$paths" 126 - echo 127 - echo "Fix it by running in nixpkgs:" 128 - echo 129 - echo "curl https://releases.nixos.org/nix/nix-${pkg.version}/fallback-paths.nix >nixos/modules/installer/tools/nix-fallback-paths.nix" 130 - echo 131 - exit 1 132 - else 133 - echo "nix-fallback-paths versions up to date" 134 - touch $out 135 - fi 136 - ''; 137 - } 138 - pkg; 139 140 # (meson based packaging) 141 # Add passthru tests to the package, and re-expose package set overriding 142 # functions. This will not incorporate the tests into the package set. 143 # TODO (roberth): add package-set level overriding to the "everything" package. 144 - addTests = selfAttributeName: pkg: 145 let 146 tests = 147 - pkg.tests or {} 148 // import ./tests.nix { 149 - inherit runCommand lib stdenv pkgs pkgsi686Linux pkgsStatic nixosTests; 150 inherit (pkg) version src; 151 nix = pkg; 152 self_attribute_name = selfAttributeName; 153 }; 154 in 155 # preserve old pkg, including overrideSource, etc 156 - pkg // { 157 - tests = pkg.tests or {} // tests; 158 - passthru = pkg.passthru or {} // { 159 - tests = lib.warn "nix.passthru.tests is deprecated. Use nix.tests instead." pkg.passthru.tests or {} // tests; 160 }; 161 }; 162 163 - in lib.makeExtensible (self: ({ 164 - nix_2_3 = ((common { 165 - version = "2.3.18"; 166 - hash = "sha256-jBz2Ub65eFYG+aWgSI3AJYvLSghio77fWQiIW1svA9U="; 167 - patches = [ 168 - patch-monitorfdhup 169 ]; 170 - self_attribute_name = "nix_2_3"; 171 - maintainers = with lib.maintainers; [ flokli ]; 172 - }).override { boehmgc = boehmgc-nix_2_3; }).overrideAttrs { 173 - # https://github.com/NixOS/nix/issues/10222 174 - # spurious test/add.sh failures 175 - enableParallelChecking = false; 176 - }; 177 178 - nix_2_24 = common { 179 - version = "2.24.12"; 180 - hash = "sha256-lPiheE0D146tstoUInOUf1451stezrd8j6H6w7+RCv8="; 181 - self_attribute_name = "nix_2_24"; 182 - }; 183 184 - nix_2_25 = common { 185 - version = "2.25.5"; 186 - hash = "sha256-9xrQhrqHCSqWsQveykZvG/ZMu0se66fUQw3xVSg6BpQ="; 187 - self_attribute_name = "nix_2_25"; 188 - }; 189 190 - nix_2_26 = addTests "nix_2_26" (callPackage ./vendor/2_26/componentized.nix { inherit (self.nix_2_24.meta) maintainers; }); 191 192 - git = common rec { 193 - version = "2.25.0"; 194 - suffix = "pre20241101_${lib.substring 0 8 src.rev}"; 195 - src = fetchFromGitHub { 196 - owner = "NixOS"; 197 - repo = "nix"; 198 - rev = "2e5759e3778c460efc5f7cfc4cb0b84827b5ffbe"; 199 - hash = "sha256-E1Sp0JHtbD1CaGO3UbBH6QajCtOGqcrVfPSKL0n63yo="; 200 - }; 201 - self_attribute_name = "git"; 202 - }; 203 204 - latest = self.nix_2_26; 205 206 - # The minimum Nix version supported by Nixpkgs 207 - # Note that some functionality *might* have been backported into this Nix version, 208 - # making this package an inaccurate representation of what features are available 209 - # in the actual lowest minver.nix *patch* version. 210 - minimum = 211 - let 212 - minver = import ../../../../lib/minver.nix; 213 - major = lib.versions.major minver; 214 - minor = lib.versions.minor minver; 215 - attribute = "nix_${major}_${minor}"; 216 - nix = self.${attribute}; 217 - in 218 - if ! self ? ${attribute} then 219 - throw "The minimum supported Nix version is ${minver} (declared in lib/minver.nix), but pkgs.nixVersions.${attribute} does not exist." 220 - else 221 - nix; 222 223 - # Read ./README.md before bumping a major release 224 - stable = addFallbackPathsCheck self.nix_2_24; 225 - } // lib.optionalAttrs config.allowAliases ( 226 - lib.listToAttrs (map ( 227 - minor: 228 - let 229 - attr = "nix_2_${toString minor}"; 230 - in 231 - lib.nameValuePair attr (throw "${attr} has been removed") 232 - ) (lib.range 4 23)) 233 - // { 234 - unstable = throw "nixVersions.unstable has been removed. For bleeding edge (Nix master, roughly weekly updated) use nixVersions.git, otherwise use nixVersions.latest."; 235 - } 236 - )))
··· 1 + { 2 + lib, 3 + config, 4 + stdenv, 5 + aws-sdk-cpp, 6 + boehmgc, 7 + callPackage, 8 + generateSplicesForMkScope, 9 + fetchFromGitHub, 10 + fetchpatch2, 11 + runCommand, 12 + Security, 13 + pkgs, 14 + pkgsi686Linux, 15 + pkgsStatic, 16 + nixosTests, 17 18 + storeDir ? "/nix/store", 19 + stateDir ? "/nix/var", 20 + confDir ? "/etc", 21 }: 22 let 23 boehmgc-nix_2_3 = boehmgc.override { enableLargeConfig = true; }; ··· 30 }); 31 32 # old nix fails to build with newer aws-sdk-cpp and the patch doesn't apply 33 + aws-sdk-cpp-old-nix = 34 + (aws-sdk-cpp.override { 35 + apis = [ 36 + "s3" 37 + "transfer" 38 + ]; 39 + customMemoryManagement = false; 40 + }).overrideAttrs 41 + (args: rec { 42 + # intentionally overriding postPatch 43 + version = "1.9.294"; 44 45 + src = fetchFromGitHub { 46 + owner = "aws"; 47 + repo = "aws-sdk-cpp"; 48 + rev = version; 49 + hash = "sha256-Z1eRKW+8nVD53GkNyYlZjCcT74MqFqqRMeMc33eIQ9g="; 50 + }; 51 + postPatch = 52 + '' 53 + # Avoid blanket -Werror to evade build failures on less 54 + # tested compilers. 55 + substituteInPlace cmake/compiler_settings.cmake \ 56 + --replace '"-Werror"' ' ' 57 58 + # Missing includes for GCC11 59 + sed '5i#include <thread>' -i \ 60 + aws-cpp-sdk-cloudfront-integration-tests/CloudfrontOperationTest.cpp \ 61 + aws-cpp-sdk-cognitoidentity-integration-tests/IdentityPoolOperationTest.cpp \ 62 + aws-cpp-sdk-dynamodb-integration-tests/TableOperationTest.cpp \ 63 + aws-cpp-sdk-elasticfilesystem-integration-tests/ElasticFileSystemTest.cpp \ 64 + aws-cpp-sdk-lambda-integration-tests/FunctionTest.cpp \ 65 + aws-cpp-sdk-mediastore-data-integration-tests/MediaStoreDataTest.cpp \ 66 + aws-cpp-sdk-queues/source/sqs/SQSQueue.cpp \ 67 + aws-cpp-sdk-redshift-integration-tests/RedshiftClientTest.cpp \ 68 + aws-cpp-sdk-s3-crt-integration-tests/BucketAndObjectOperationTest.cpp \ 69 + aws-cpp-sdk-s3-integration-tests/BucketAndObjectOperationTest.cpp \ 70 + aws-cpp-sdk-s3control-integration-tests/S3ControlTest.cpp \ 71 + aws-cpp-sdk-sqs-integration-tests/QueueOperationTest.cpp \ 72 + aws-cpp-sdk-transfer-tests/TransferTests.cpp 73 + # Flaky on Hydra 74 + rm aws-cpp-sdk-core-tests/aws/auth/AWSCredentialsProviderTest.cpp 75 + # Includes aws-c-auth private headers, so only works with submodule build 76 + rm aws-cpp-sdk-core-tests/aws/auth/AWSAuthSignerTest.cpp 77 + # TestRandomURLMultiThreaded fails 78 + rm aws-cpp-sdk-core-tests/http/HttpClientTest.cpp 79 + '' 80 + + lib.optionalString aws-sdk-cpp.stdenv.hostPlatform.isi686 '' 81 + # EPSILON is exceeded 82 + rm aws-cpp-sdk-core-tests/aws/client/AdaptiveRetryStrategyTest.cpp 83 + ''; 84 85 + patches = (args.patches or [ ]) ++ [ ./patches/aws-sdk-cpp-TransferManager-ContentEncoding.patch ]; 86 87 + # only a stripped down version is build which takes a lot less resources to build 88 + requiredSystemFeatures = [ ]; 89 + }); 90 91 + aws-sdk-cpp-nix = 92 + (aws-sdk-cpp.override { 93 + apis = [ 94 + "s3" 95 + "transfer" 96 + ]; 97 + customMemoryManagement = false; 98 + }).overrideAttrs 99 { 100 + # only a stripped down version is build which takes a lot less resources to build 101 + requiredSystemFeatures = [ ]; 102 }; 103 104 + common = 105 + args: 106 + callPackage (import ./common.nix ({ inherit lib fetchFromGitHub; } // args)) { 107 + inherit 108 + Security 109 + storeDir 110 + stateDir 111 + confDir 112 + ; 113 + boehmgc = boehmgc-nix; 114 + aws-sdk-cpp = 115 + if lib.versionAtLeast args.version "2.12pre" then aws-sdk-cpp-nix else aws-sdk-cpp-old-nix; 116 + }; 117 + 118 # https://github.com/NixOS/nix/pull/7585 119 patch-monitorfdhup = fetchpatch2 { 120 name = "nix-7585-monitor-fd-hup.patch"; ··· 124 125 # Intentionally does not support overrideAttrs etc 126 # Use only for tests that are about the package relation to `pkgs` and/or NixOS. 127 + addTestsShallowly = 128 + tests: pkg: 129 + pkg 130 + // { 131 + tests = pkg.tests // tests; 132 + # In case someone reads the wrong attribute 133 + passthru.tests = pkg.tests // tests; 134 + }; 135 136 + addFallbackPathsCheck = 137 + pkg: 138 + addTestsShallowly { 139 + nix-fallback-paths = 140 + runCommand "test-nix-fallback-paths-version-equals-nix-stable" 141 + { 142 + paths = lib.concatStringsSep "\n" ( 143 + builtins.attrValues (import ../../../../nixos/modules/installer/tools/nix-fallback-paths.nix) 144 + ); 145 + } 146 + '' 147 + # NOTE: name may contain cross compilation details between the pname 148 + # and version this is permitted thanks to ([^-]*-)* 149 + if [[ "" != $(grep -vE 'nix-([^-]*-)*${ 150 + lib.strings.replaceStrings [ "." ] [ "\\." ] pkg.version 151 + }$' <<< "$paths") ]]; then 152 + echo "nix-fallback-paths not up to date with nixVersions.stable (nix-${pkg.version})" 153 + echo "The following paths are not up to date:" 154 + grep -v 'nix-${pkg.version}$' <<< "$paths" 155 + echo 156 + echo "Fix it by running in nixpkgs:" 157 + echo 158 + echo "curl https://releases.nixos.org/nix/nix-${pkg.version}/fallback-paths.nix >nixos/modules/installer/tools/nix-fallback-paths.nix" 159 + echo 160 + exit 1 161 + else 162 + echo "nix-fallback-paths versions up to date" 163 + touch $out 164 + fi 165 + ''; 166 + } pkg; 167 168 # (meson based packaging) 169 # Add passthru tests to the package, and re-expose package set overriding 170 # functions. This will not incorporate the tests into the package set. 171 # TODO (roberth): add package-set level overriding to the "everything" package. 172 + addTests = 173 + selfAttributeName: pkg: 174 let 175 tests = 176 + pkg.tests or { } 177 // import ./tests.nix { 178 + inherit 179 + runCommand 180 + lib 181 + stdenv 182 + pkgs 183 + pkgsi686Linux 184 + pkgsStatic 185 + nixosTests 186 + ; 187 inherit (pkg) version src; 188 nix = pkg; 189 self_attribute_name = selfAttributeName; 190 }; 191 in 192 # preserve old pkg, including overrideSource, etc 193 + pkg 194 + // { 195 + tests = pkg.tests or { } // tests; 196 + passthru = pkg.passthru or { } // { 197 + tests = 198 + lib.warn "nix.passthru.tests is deprecated. Use nix.tests instead." pkg.passthru.tests or { } 199 + // tests; 200 }; 201 }; 202 203 + # Factored out for when we have package sets for multiple versions of 204 + # Nix. 205 + # 206 + # `nixPackages_*` would be the most regular name, analogous to 207 + # `linuxPackages_*`, especially if we put other 3rd-party software in 208 + # here, but `nixPackages_*` would also be *very* confusing to humans! 209 + generateSplicesForNixComponents = 210 + nixComponentsAttributeName: 211 + generateSplicesForMkScope [ 212 + "nixVersions" 213 + nixComponentsAttributeName 214 ]; 215 216 + in 217 + lib.makeExtensible ( 218 + self: 219 + ( 220 + { 221 + nix_2_3 = 222 + ( 223 + (common { 224 + version = "2.3.18"; 225 + hash = "sha256-jBz2Ub65eFYG+aWgSI3AJYvLSghio77fWQiIW1svA9U="; 226 + patches = [ 227 + patch-monitorfdhup 228 + ]; 229 + self_attribute_name = "nix_2_3"; 230 + maintainers = with lib.maintainers; [ flokli ]; 231 + }).override 232 + { boehmgc = boehmgc-nix_2_3; } 233 + ).overrideAttrs 234 + { 235 + # https://github.com/NixOS/nix/issues/10222 236 + # spurious test/add.sh failures 237 + enableParallelChecking = false; 238 + }; 239 240 + nix_2_24 = common { 241 + version = "2.24.12"; 242 + hash = "sha256-lPiheE0D146tstoUInOUf1451stezrd8j6H6w7+RCv8="; 243 + self_attribute_name = "nix_2_24"; 244 + }; 245 246 + nix_2_25 = common { 247 + version = "2.25.5"; 248 + hash = "sha256-9xrQhrqHCSqWsQveykZvG/ZMu0se66fUQw3xVSg6BpQ="; 249 + self_attribute_name = "nix_2_25"; 250 + }; 251 252 + nixComponents_2_26 = ( 253 + callPackage ./vendor/2_26/componentized.nix { 254 + inherit (self.nix_2_24.meta) maintainers; 255 + otherSplices = generateSplicesForNixComponents "nixComponents_2_26"; 256 + } 257 + ); 258 + 259 + # Note, this might eventually become an alias, as packages should 260 + # depend on the components they need in `nixComponents_2_26`. 261 + nix_2_26 = addTests "nix_2_26" self.nixComponents_2_26.nix-everything; 262 + 263 + git = common rec { 264 + version = "2.25.0"; 265 + suffix = "pre20241101_${lib.substring 0 8 src.rev}"; 266 + src = fetchFromGitHub { 267 + owner = "NixOS"; 268 + repo = "nix"; 269 + rev = "2e5759e3778c460efc5f7cfc4cb0b84827b5ffbe"; 270 + hash = "sha256-E1Sp0JHtbD1CaGO3UbBH6QajCtOGqcrVfPSKL0n63yo="; 271 + }; 272 + self_attribute_name = "git"; 273 + }; 274 275 + latest = self.nix_2_26; 276 277 + # The minimum Nix version supported by Nixpkgs 278 + # Note that some functionality *might* have been backported into this Nix version, 279 + # making this package an inaccurate representation of what features are available 280 + # in the actual lowest minver.nix *patch* version. 281 + minimum = 282 + let 283 + minver = import ../../../../lib/minver.nix; 284 + major = lib.versions.major minver; 285 + minor = lib.versions.minor minver; 286 + attribute = "nix_${major}_${minor}"; 287 + nix = self.${attribute}; 288 + in 289 + if !self ? ${attribute} then 290 + throw "The minimum supported Nix version is ${minver} (declared in lib/minver.nix), but pkgs.nixVersions.${attribute} does not exist." 291 + else 292 + nix; 293 294 + # Read ./README.md before bumping a major release 295 + stable = addFallbackPathsCheck self.nix_2_24; 296 + } 297 + // lib.optionalAttrs config.allowAliases ( 298 + lib.listToAttrs ( 299 + map ( 300 + minor: 301 + let 302 + attr = "nix_2_${toString minor}"; 303 + in 304 + lib.nameValuePair attr (throw "${attr} has been removed") 305 + ) (lib.range 4 23) 306 + ) 307 + // { 308 + unstable = throw "nixVersions.unstable has been removed. For bleeding edge (Nix master, roughly weekly updated) use nixVersions.git, otherwise use nixVersions.latest."; 309 + } 310 + ) 311 + ) 312 + )
+6 -4
pkgs/tools/package-management/nix/vendor/2_26/componentized.nix
··· 7 pkgs, 8 stdenv, 9 maintainers, 10 - ... 11 }: 12 let 13 officialRelease = true; ··· 24 inherit (nixDependencies) newScope; 25 } 26 { 27 - otherSplices = generateSplicesForMkScope "nixComponents"; 28 f = import ./packaging/components.nix { 29 inherit 30 lib ··· 45 inherit newScope; # layered directly on pkgs, unlike nixComponents above 46 } 47 { 48 - otherSplices = generateSplicesForMkScope "nixDependencies"; 49 f = import ./dependencies.nix { 50 inherit pkgs; 51 inherit stdenv; 52 }; 53 }; 54 in 55 - (nixComponents.overrideSource src).nix-everything
··· 7 pkgs, 8 stdenv, 9 maintainers, 10 + otherSplices, 11 }: 12 let 13 officialRelease = true; ··· 24 inherit (nixDependencies) newScope; 25 } 26 { 27 + inherit otherSplices; 28 f = import ./packaging/components.nix { 29 inherit 30 lib ··· 45 inherit newScope; # layered directly on pkgs, unlike nixComponents above 46 } 47 { 48 + # Technically this should point to the nixDependencies set only, but 49 + # this is ok as long as the scopes don't intersect. 50 + inherit otherSplices; 51 f = import ./dependencies.nix { 52 inherit pkgs; 53 inherit stdenv; 54 }; 55 }; 56 in 57 + nixComponents.overrideSource src
+1
pkgs/top-level/aliases.nix
··· 327 crack_attack = throw "'crack_attack' has been removed due to lack of maintenance upstream."; # Added 2024-12-04 328 crackmapexec = throw "'crackmapexec' has been removed as it was unmaintained. Use 'netexec' instead"; # 2024-08-11 329 critcl = tclPackages.critcl; # Added 2024-10-02 330 cudaPackages_10_0 = throw "CUDA 10.0 has been removed from Nixpkgs, as it is unmaintained upstream and depends on unsupported compilers"; # Added 2024-11-20 331 cudaPackages_10_1 = throw "CUDA 10.1 has been removed from Nixpkgs, as it is unmaintained upstream and depends on unsupported compilers"; # Added 2024-11-20 332 cudaPackages_10_2 = throw "CUDA 10.2 has been removed from Nixpkgs, as it is unmaintained upstream and depends on unsupported compilers"; # Added 2024-11-20
··· 327 crack_attack = throw "'crack_attack' has been removed due to lack of maintenance upstream."; # Added 2024-12-04 328 crackmapexec = throw "'crackmapexec' has been removed as it was unmaintained. Use 'netexec' instead"; # 2024-08-11 329 critcl = tclPackages.critcl; # Added 2024-10-02 330 + crunchy-cli = throw "'crunchy-cli' was sunset, see <https://github.com/crunchy-labs/crunchy-cli/issues/362>"; # Added 2025-03-26 331 cudaPackages_10_0 = throw "CUDA 10.0 has been removed from Nixpkgs, as it is unmaintained upstream and depends on unsupported compilers"; # Added 2024-11-20 332 cudaPackages_10_1 = throw "CUDA 10.1 has been removed from Nixpkgs, as it is unmaintained upstream and depends on unsupported compilers"; # Added 2024-11-20 333 cudaPackages_10_2 = throw "CUDA 10.2 has been removed from Nixpkgs, as it is unmaintained upstream and depends on unsupported compilers"; # Added 2024-11-20
+3 -1
pkgs/top-level/python-packages.nix
··· 3945 dm-sonnet = callPackage ../development/python-modules/dm-sonnet { }; 3946 3947 dm-tree = callPackage ../development/python-modules/dm-tree { 3948 - abseil-cpp = pkgs.abseil-cpp.override { cxxStandard = "14"; }; 3949 }; 3950 3951 dmenu-python = callPackage ../development/python-modules/dmenu { }; ··· 15632 rigour = callPackage ../development/python-modules/rigour { }; 15633 15634 ring-doorbell = callPackage ../development/python-modules/ring-doorbell { }; 15635 15636 rio-tiler = callPackage ../development/python-modules/rio-tiler { }; 15637
··· 3945 dm-sonnet = callPackage ../development/python-modules/dm-sonnet { }; 3946 3947 dm-tree = callPackage ../development/python-modules/dm-tree { 3948 + inherit (pkgs) abseil-cpp; 3949 }; 3950 3951 dmenu-python = callPackage ../development/python-modules/dmenu { }; ··· 15632 rigour = callPackage ../development/python-modules/rigour { }; 15633 15634 ring-doorbell = callPackage ../development/python-modules/ring-doorbell { }; 15635 + 15636 + rio-stac = callPackage ../development/python-modules/rio-stac { }; 15637 15638 rio-tiler = callPackage ../development/python-modules/rio-tiler { }; 15639