lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
c58a108a 081f27f0

+1921 -1615
+3
nixos/modules/programs/chromium.nix
··· 108 # for google-chrome https://www.chromium.org/administrators/linux-quick-start 109 environment.etc."opt/chrome/policies/managed/default.json".text = builtins.toJSON defaultProfile; 110 environment.etc."opt/chrome/policies/managed/extra.json".text = builtins.toJSON cfg.extraOpts; 111 }; 112 }
··· 108 # for google-chrome https://www.chromium.org/administrators/linux-quick-start 109 environment.etc."opt/chrome/policies/managed/default.json".text = builtins.toJSON defaultProfile; 110 environment.etc."opt/chrome/policies/managed/extra.json".text = builtins.toJSON cfg.extraOpts; 111 + # for brave 112 + environment.etc."brave/policies/managed/default.json".text = builtins.toJSON defaultProfile; 113 + environment.etc."brave/policies/managed/extra.json".text = builtins.toJSON cfg.extraOpts; 114 }; 115 }
+1 -1
nixos/tests/emacs-daemon.nix
··· 33 ) 34 35 # connects to the daemon 36 - machine.succeed("emacsclient --create-frame $EDITOR >&2 &") 37 38 # checks that Emacs shows the edited filename 39 machine.wait_for_text("emacseditor")
··· 33 ) 34 35 # connects to the daemon 36 + machine.succeed("emacsclient --no-wait --frame-parameters='((display . \"'\"$DISPLAY\"'\"))' --create-frame $EDITOR >&2") 37 38 # checks that Emacs shows the edited filename 39 machine.wait_for_text("emacseditor")
-16
pkgs/applications/editors/emacs/27.nix
··· 1 - import ./generic.nix (rec { 2 - version = "27.2"; 3 - sha256 = "sha256-tKfMTnjmPzeGJOCRkhW5EK9bsqCvyBn60pgnLp9Awbk="; 4 - patches = fetchpatch: [ 5 - (fetchpatch { 6 - name = "fix-aarch64-darwin-triplet.patch"; 7 - url = "https://git.savannah.gnu.org/cgit/emacs.git/patch/?id=a88f63500e475f842e5fbdd9abba4ce122cdb082"; 8 - sha256 = "sha256-RF9b5PojFUAjh2TDUW4+HaWveV30Spy1iAXhaWf1ZVg="; 9 - }) 10 - # glibc 2.34 compat 11 - (fetchpatch { 12 - url = "https://src.fedoraproject.org/rpms/emacs/raw/181aafcdb7ee2fded9fce4cfc448f27edccc927f/f/emacs-glibc-2.34.patch"; 13 - sha256 = "sha256-2o3C/jhZPl2OW/LmVPt/fhdwbS9NOdF9lVEF1Kn9aEk="; 14 - }) 15 - ]; 16 - })
···
+5
pkgs/applications/editors/emacs/28.nix
···
··· 1 + import ./generic.nix (rec { 2 + version = "28.1"; 3 + sha256 = "sha256-KLGz0JkDegiPCkyiUdfnJi6rXqFneqv/psRCaWGtdeE="; 4 + patches = _: [ ]; 5 + })
-15
pkgs/applications/editors/emacs/at-fdcwd.patch
··· 1 - diff --git a/lib/careadlinkat.h b/lib/careadlinkat.h 2 - index 84ede3e..8e8f42e 100644 3 - --- a/lib/careadlinkat.h 4 - +++ b/lib/careadlinkat.h 5 - @@ -23,6 +23,10 @@ 6 - #include <fcntl.h> 7 - #include <unistd.h> 8 - 9 - +#ifndef AT_FDCWD 10 - +#define AT_FDCWD -2 11 - +#endif 12 - + 13 - struct allocator; 14 - 15 - /* Assuming the current directory is FD, get the symbolic link value
···
+1 -1
pkgs/applications/editors/emacs/generic.nix
··· 11 , libtiff, librsvg, gconf, libxml2, imagemagick, gnutls, libselinux 12 , alsa-lib, cairo, acl, gpm, AppKit, GSS, ImageIO, m17n_lib, libotf 13 , sigtool, jansson, harfbuzz, sqlite, nixosTests 14 - , dontRecurseIntoAttrs ,emacsPackagesFor 15 , libgccjit, targetPlatform, makeWrapper # native-comp params 16 , systemd ? null 17 , withX ? !stdenv.isDarwin
··· 11 , libtiff, librsvg, gconf, libxml2, imagemagick, gnutls, libselinux 12 , alsa-lib, cairo, acl, gpm, AppKit, GSS, ImageIO, m17n_lib, libotf 13 , sigtool, jansson, harfbuzz, sqlite, nixosTests 14 + , dontRecurseIntoAttrs, emacsPackagesFor 15 , libgccjit, targetPlatform, makeWrapper # native-comp params 16 , systemd ? null 17 , withX ? !stdenv.isDarwin
+1
pkgs/applications/editors/vim/plugins/overrides.nix
··· 1116 "coc-emmet" 1117 "coc-eslint" 1118 "coc-explorer" 1119 "coc-git" 1120 "coc-go" 1121 "coc-highlight"
··· 1116 "coc-emmet" 1117 "coc-eslint" 1118 "coc-explorer" 1119 + "coc-flutter" 1120 "coc-git" 1121 "coc-go" 1122 "coc-highlight"
+3 -3
pkgs/applications/misc/stork/default.nix
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "stork"; 12 - version = "1.4.1"; 13 14 src = fetchFromGitHub { 15 owner = "jameslittle230"; 16 repo = "stork"; 17 rev = "v${version}"; 18 - sha256 = "sha256-aBsxRLUufVUauySCxZKk/ZfcU/5KR7jOHmnx6mHmsFs="; 19 }; 20 21 - cargoSha256 = "sha256-oNoWGdXYfp47IpqU1twbORPOYrHjArNf43Zyeyat4Xs="; 22 23 nativeBuildInputs = [ pkg-config ]; 24
··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "stork"; 12 + version = "1.4.2"; 13 14 src = fetchFromGitHub { 15 owner = "jameslittle230"; 16 repo = "stork"; 17 rev = "v${version}"; 18 + sha256 = "sha256-itjRJLbRTwovK+HcNEzwViEDTJ1MoRRTvZD412XYVKk="; 19 }; 20 21 + cargoSha256 = "sha256-GaYdgC3Bf759ZPcZxoFG0nmCSz7aNHuqtyid6RS8Ui8="; 22 23 nativeBuildInputs = [ pkg-config ]; 24
+2 -2
pkgs/applications/misc/xmrig/moneroocean.nix
··· 2 3 xmrig.overrideAttrs (oldAttrs: rec { 4 pname = "xmrig-mo"; 5 - version = "6.16.4-mo1"; 6 7 src = fetchFromGitHub { 8 owner = "MoneroOcean"; 9 repo = "xmrig"; 10 rev = "v${version}"; 11 - sha256 = "sha256-OnKz/Sl/b0wpZ1tqeEXhNxNNmQJXBhv5YNnKu9aOVZA="; 12 }; 13 14 meta = with lib; {
··· 2 3 xmrig.overrideAttrs (oldAttrs: rec { 4 pname = "xmrig-mo"; 5 + version = "6.16.5-mo1"; 6 7 src = fetchFromGitHub { 8 owner = "MoneroOcean"; 9 repo = "xmrig"; 10 rev = "v${version}"; 11 + sha256 = "sha256-TNiHvRLS+eAPHa+qbnVSAyWTPGJxdp9eheQamd4i24E="; 12 }; 13 14 meta = with lib; {
+393 -393
pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
··· 1 { 2 - version = "100.0b5"; 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ach/firefox-100.0b5.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 - sha256 = "fb1b570f098ca5d80f41f14ada1f7ad6dc43e5e1c6984e1fca29cfd275dabded"; 8 } 9 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/af/firefox-100.0b5.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 - sha256 = "31322e6c45045322977b5d240350e0e4740f9c48174b719553410fea3212f475"; 13 } 14 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/an/firefox-100.0b5.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 - sha256 = "137eb68b647af950362682646f7edf754bfb51a03b20f59b777f877b3ef003c2"; 18 } 19 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ar/firefox-100.0b5.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 - sha256 = "22d24c6bad9ce2ded7634449fbc5d0bcdd4972aac15f60e04cf963ab0ee252bd"; 23 } 24 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ast/firefox-100.0b5.tar.bz2"; 25 locale = "ast"; 26 arch = "linux-x86_64"; 27 - sha256 = "e8a2e7ea146efe41105d84a667568662d029a9773855ae31768ba9c14abbdde7"; 28 } 29 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/az/firefox-100.0b5.tar.bz2"; 30 locale = "az"; 31 arch = "linux-x86_64"; 32 - sha256 = "34d76711bdc45cc45650cb4c94e553f67579be3f406c391c9878cb6de1c39bb5"; 33 } 34 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/be/firefox-100.0b5.tar.bz2"; 35 locale = "be"; 36 arch = "linux-x86_64"; 37 - sha256 = "fdd4d1cea3b71f54b58230a30c744d2ff7b0237869fd14e617ba3322c2d59f6f"; 38 } 39 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/bg/firefox-100.0b5.tar.bz2"; 40 locale = "bg"; 41 arch = "linux-x86_64"; 42 - sha256 = "e63e65a92f73a31d2adac6a0c1b6dc45f38425ed8596039332108565de43daa6"; 43 } 44 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/bn/firefox-100.0b5.tar.bz2"; 45 locale = "bn"; 46 arch = "linux-x86_64"; 47 - sha256 = "29fbffaeb7bd8750cf1fb543692855d427200d7df6e9ca92224bd96103b06b35"; 48 } 49 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/br/firefox-100.0b5.tar.bz2"; 50 locale = "br"; 51 arch = "linux-x86_64"; 52 - sha256 = "3c1bc8cace7f4d2c7522fc9dd994c42707ca4d54b74ead88726c8e83862c3757"; 53 } 54 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/bs/firefox-100.0b5.tar.bz2"; 55 locale = "bs"; 56 arch = "linux-x86_64"; 57 - sha256 = "3e6c94efea22c4bd2620225e8a339689e3e4f642d474f4580092a85d7c4a4950"; 58 } 59 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ca-valencia/firefox-100.0b5.tar.bz2"; 60 locale = "ca-valencia"; 61 arch = "linux-x86_64"; 62 - sha256 = "485b33fe034acd03412b3407338cd246077209fc1ccd566f2ac9d347c8da6308"; 63 } 64 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ca/firefox-100.0b5.tar.bz2"; 65 locale = "ca"; 66 arch = "linux-x86_64"; 67 - sha256 = "a0b2780c0a634c85a9dbdc00b6952c81b503c3173d2c2cb9df5d9c5958ab640c"; 68 } 69 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/cak/firefox-100.0b5.tar.bz2"; 70 locale = "cak"; 71 arch = "linux-x86_64"; 72 - sha256 = "360abc1da779874423792e63b545343aaeb3984201193c687c3c8b67b67cecb1"; 73 } 74 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/cs/firefox-100.0b5.tar.bz2"; 75 locale = "cs"; 76 arch = "linux-x86_64"; 77 - sha256 = "1dc722b7931908a38f43254aa1c1c78fb77ee30868c15455c0448927e658613d"; 78 } 79 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/cy/firefox-100.0b5.tar.bz2"; 80 locale = "cy"; 81 arch = "linux-x86_64"; 82 - sha256 = "55eba066d11752cbf973312d55568e51b720f21e66bf590adadbe93be386e989"; 83 } 84 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/da/firefox-100.0b5.tar.bz2"; 85 locale = "da"; 86 arch = "linux-x86_64"; 87 - sha256 = "cc3fa0c0ef8a1af9f8bb78e7196c5cc7a6c6df2d9f25c5fe8d79f47879354331"; 88 } 89 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/de/firefox-100.0b5.tar.bz2"; 90 locale = "de"; 91 arch = "linux-x86_64"; 92 - sha256 = "b745aa34eca890302b701be19bdd3affcba37e7b1af388e4844ce61c3a1244fb"; 93 } 94 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/dsb/firefox-100.0b5.tar.bz2"; 95 locale = "dsb"; 96 arch = "linux-x86_64"; 97 - sha256 = "e7a4c1390919cfd01fe13f5a81ce35fbdf0868c725783d603c7d2e210e3ba368"; 98 } 99 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/el/firefox-100.0b5.tar.bz2"; 100 locale = "el"; 101 arch = "linux-x86_64"; 102 - sha256 = "6f0b80919e22ec67f80c7c034fdd9e290cf2ec442ae828a706e780df2ec54d90"; 103 } 104 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/en-CA/firefox-100.0b5.tar.bz2"; 105 locale = "en-CA"; 106 arch = "linux-x86_64"; 107 - sha256 = "0184e33ff9582a77a5f9d61f1904f3cd097feda7576aaa276480eff92dfcb4de"; 108 } 109 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/en-GB/firefox-100.0b5.tar.bz2"; 110 locale = "en-GB"; 111 arch = "linux-x86_64"; 112 - sha256 = "b5affd31a9004c9161d6a55cb713999932b18f1340ce67d0e7f77b0c805ca785"; 113 } 114 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/en-US/firefox-100.0b5.tar.bz2"; 115 locale = "en-US"; 116 arch = "linux-x86_64"; 117 - sha256 = "635c5b79c514b9b7717c903cdabc2f6bf3f19cb9689354dc33f21cc8eed3d540"; 118 } 119 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/eo/firefox-100.0b5.tar.bz2"; 120 locale = "eo"; 121 arch = "linux-x86_64"; 122 - sha256 = "9e4a718c0932688ece8883fd2fa2d175c3483d73ac16075d8efa0e6758f4cf61"; 123 } 124 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/es-AR/firefox-100.0b5.tar.bz2"; 125 locale = "es-AR"; 126 arch = "linux-x86_64"; 127 - sha256 = "3bc0ce89dc3ab79108bf527fccc9aa9663f61e6578b2561fc7e1950dcaaed1db"; 128 } 129 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/es-CL/firefox-100.0b5.tar.bz2"; 130 locale = "es-CL"; 131 arch = "linux-x86_64"; 132 - sha256 = "966db10e384f875272ffcdb743c472a78a75a95e0990a32fb16fe2b8d5a70761"; 133 } 134 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/es-ES/firefox-100.0b5.tar.bz2"; 135 locale = "es-ES"; 136 arch = "linux-x86_64"; 137 - sha256 = "8b23f6957fb0825b973c4ab59c80ffdfeb8370a72a291ebec6ae7abff1ca3392"; 138 } 139 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/es-MX/firefox-100.0b5.tar.bz2"; 140 locale = "es-MX"; 141 arch = "linux-x86_64"; 142 - sha256 = "75102ce28fbb425fb0c13dccfdbc5095c1c92c4dd83e14140bd672fe60547603"; 143 } 144 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/et/firefox-100.0b5.tar.bz2"; 145 locale = "et"; 146 arch = "linux-x86_64"; 147 - sha256 = "ab7d6e1294e49e83307bac9541b15163263bc15693fd0845c335e523e5420623"; 148 } 149 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/eu/firefox-100.0b5.tar.bz2"; 150 locale = "eu"; 151 arch = "linux-x86_64"; 152 - sha256 = "6defedc5c4faacc9765a1d26352d9d8f30f895a6ec5bad1c3ed7c3d98ec42e16"; 153 } 154 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/fa/firefox-100.0b5.tar.bz2"; 155 locale = "fa"; 156 arch = "linux-x86_64"; 157 - sha256 = "0fe1b25b3b970e04980ca729a6630648b0923b98fd00bc81a4553235d741a6c6"; 158 } 159 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ff/firefox-100.0b5.tar.bz2"; 160 locale = "ff"; 161 arch = "linux-x86_64"; 162 - sha256 = "e8ad5c7403928bfa5e34c6bbb8958730dba8dcc6d799c9a7676d82440b8f1ab8"; 163 } 164 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/fi/firefox-100.0b5.tar.bz2"; 165 locale = "fi"; 166 arch = "linux-x86_64"; 167 - sha256 = "37e8619971dffc7c6caa43cf72f5870c5d5d1ed489bf8a3596215f285f17fa1a"; 168 } 169 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/fr/firefox-100.0b5.tar.bz2"; 170 locale = "fr"; 171 arch = "linux-x86_64"; 172 - sha256 = "90c21cec994d7fa1c4ffa6512c448a4948be5eb5d318a0f6c4ae6d6b6f801780"; 173 } 174 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/fy-NL/firefox-100.0b5.tar.bz2"; 175 locale = "fy-NL"; 176 arch = "linux-x86_64"; 177 - sha256 = "c12a1b475b4d611d4083bb11d7384573817aef22796e91c7df968b7d6d726133"; 178 } 179 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ga-IE/firefox-100.0b5.tar.bz2"; 180 locale = "ga-IE"; 181 arch = "linux-x86_64"; 182 - sha256 = "fcdf90dbd66c1c87e7f8b25d820c5c866f0d905bbe424a8b6d8c27e7cbef5677"; 183 } 184 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/gd/firefox-100.0b5.tar.bz2"; 185 locale = "gd"; 186 arch = "linux-x86_64"; 187 - sha256 = "bfbeca59a046bffa5156621946c397884998fbd383085fab5159ae775db9cc9f"; 188 } 189 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/gl/firefox-100.0b5.tar.bz2"; 190 locale = "gl"; 191 arch = "linux-x86_64"; 192 - sha256 = "c0f1de5a454ae0f8df7407d08394f73cf8e09f39342288d6670d4c0b8adf2e77"; 193 } 194 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/gn/firefox-100.0b5.tar.bz2"; 195 locale = "gn"; 196 arch = "linux-x86_64"; 197 - sha256 = "5e177db13df6f5195603d8d2acb92dccdf2989fdb721e6ef6b758120f2efff75"; 198 } 199 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/gu-IN/firefox-100.0b5.tar.bz2"; 200 locale = "gu-IN"; 201 arch = "linux-x86_64"; 202 - sha256 = "748aedc09ffe44b4f8223456afbfb43901b492ff401c6ff39127ff4267ce6123"; 203 } 204 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/he/firefox-100.0b5.tar.bz2"; 205 locale = "he"; 206 arch = "linux-x86_64"; 207 - sha256 = "91c1abfed2e942c076c6b0068edd2dca02e496321fbd79fdd39c7c2dbe7c5c2a"; 208 } 209 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/hi-IN/firefox-100.0b5.tar.bz2"; 210 locale = "hi-IN"; 211 arch = "linux-x86_64"; 212 - sha256 = "4e13080d458b980cac72cdda1f40a786db926b494fc905eab71cf3535f5383ea"; 213 } 214 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/hr/firefox-100.0b5.tar.bz2"; 215 locale = "hr"; 216 arch = "linux-x86_64"; 217 - sha256 = "583c5a5f6aa0e328c57c303ba97d1bdfc0a2a959485560d27aa2e906a0deeb8e"; 218 } 219 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/hsb/firefox-100.0b5.tar.bz2"; 220 locale = "hsb"; 221 arch = "linux-x86_64"; 222 - sha256 = "d8c10888b1e3735fce5d1213322f62732b030919ff4b5df70d12d934d348e91c"; 223 } 224 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/hu/firefox-100.0b5.tar.bz2"; 225 locale = "hu"; 226 arch = "linux-x86_64"; 227 - sha256 = "4133206571188244ddf17b96d287d5683fbfeffe2cdd5b2c8ee63fb7db56e3c2"; 228 } 229 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/hy-AM/firefox-100.0b5.tar.bz2"; 230 locale = "hy-AM"; 231 arch = "linux-x86_64"; 232 - sha256 = "7326ae0a0d0a0afc40f6aa8b0b1506dbe7ead006c641eed4812e63bbb58bdb82"; 233 } 234 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ia/firefox-100.0b5.tar.bz2"; 235 locale = "ia"; 236 arch = "linux-x86_64"; 237 - sha256 = "e61cc178ec2a648c0bb229e5145d8755343427388911bc6386fae77a5ecfae5e"; 238 } 239 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/id/firefox-100.0b5.tar.bz2"; 240 locale = "id"; 241 arch = "linux-x86_64"; 242 - sha256 = "0ac90236941c9a0a5f17e2e5e96ee14c0ef6d5e5645566bc09cb9023359db882"; 243 } 244 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/is/firefox-100.0b5.tar.bz2"; 245 locale = "is"; 246 arch = "linux-x86_64"; 247 - sha256 = "b1efef91567c6b1d52b5fcccf9fbb3c3f81b05929242ebc68168c4712e47c3b5"; 248 } 249 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/it/firefox-100.0b5.tar.bz2"; 250 locale = "it"; 251 arch = "linux-x86_64"; 252 - sha256 = "33e8282f6b1b3a9e404374f93eb6207c3110177fdc11c831469fa721c6669d93"; 253 } 254 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ja/firefox-100.0b5.tar.bz2"; 255 locale = "ja"; 256 arch = "linux-x86_64"; 257 - sha256 = "ad13269606214cc9fa7d05037db3c6ecb192a5bcc06872aa487b023c2823862d"; 258 } 259 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ka/firefox-100.0b5.tar.bz2"; 260 locale = "ka"; 261 arch = "linux-x86_64"; 262 - sha256 = "42b97eab01d92ad491e744890fe6984af4f435ce96595c5dd7bed02f6f5ff369"; 263 } 264 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/kab/firefox-100.0b5.tar.bz2"; 265 locale = "kab"; 266 arch = "linux-x86_64"; 267 - sha256 = "64c9abf3921fcf698ed5cda9724884f2e3c1ad8651cbdf9a9fbebf2d8ca930fe"; 268 } 269 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/kk/firefox-100.0b5.tar.bz2"; 270 locale = "kk"; 271 arch = "linux-x86_64"; 272 - sha256 = "9f4546b31322c74e76b13e4557bc412d5d75adddbba16f4e0b0ca8badc81f83f"; 273 } 274 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/km/firefox-100.0b5.tar.bz2"; 275 locale = "km"; 276 arch = "linux-x86_64"; 277 - sha256 = "daac53a85b255ad6b491efa2c4d021c0aa91f927e3a5f0fb0d1462ae473a9daf"; 278 } 279 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/kn/firefox-100.0b5.tar.bz2"; 280 locale = "kn"; 281 arch = "linux-x86_64"; 282 - sha256 = "20b8072ddf8fc07f5095ad97464fe0b84b10215fa02bdd9a31254a92c12541a9"; 283 } 284 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ko/firefox-100.0b5.tar.bz2"; 285 locale = "ko"; 286 arch = "linux-x86_64"; 287 - sha256 = "29be35485bf287596145f26602aac5a520d7e980f3012b564a297e13b83bf489"; 288 } 289 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/lij/firefox-100.0b5.tar.bz2"; 290 locale = "lij"; 291 arch = "linux-x86_64"; 292 - sha256 = "7023d002cc4a7081eccbd5f061bbfe295f1856ed39724be4228e727119bc0a57"; 293 } 294 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/lt/firefox-100.0b5.tar.bz2"; 295 locale = "lt"; 296 arch = "linux-x86_64"; 297 - sha256 = "d121af78fa8bddf3825a89e751d37f12ea7c7513f331e015b0a951efedd80609"; 298 } 299 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/lv/firefox-100.0b5.tar.bz2"; 300 locale = "lv"; 301 arch = "linux-x86_64"; 302 - sha256 = "3f4a005f6ba7b09766f9a9d0186c0d5c82049be965e40f58eaa9c0474fb9d5e0"; 303 } 304 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/mk/firefox-100.0b5.tar.bz2"; 305 locale = "mk"; 306 arch = "linux-x86_64"; 307 - sha256 = "d1e7703d77584b93261676bb4e5e15a9df0953012392cc52636bafad697bfda8"; 308 } 309 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/mr/firefox-100.0b5.tar.bz2"; 310 locale = "mr"; 311 arch = "linux-x86_64"; 312 - sha256 = "e7dcd45869323e949baed0e6e561a3051439e190ab3927d59af1008973e58f9b"; 313 } 314 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ms/firefox-100.0b5.tar.bz2"; 315 locale = "ms"; 316 arch = "linux-x86_64"; 317 - sha256 = "bb605564c51282e7c5c48150fa61196374b77c2de48c394f4c887c2bd0456f11"; 318 } 319 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/my/firefox-100.0b5.tar.bz2"; 320 locale = "my"; 321 arch = "linux-x86_64"; 322 - sha256 = "9c0bec027eaad1ce4e2e6abeb35e62276805fd49ef818ddc67fd826c8a95f93e"; 323 } 324 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/nb-NO/firefox-100.0b5.tar.bz2"; 325 locale = "nb-NO"; 326 arch = "linux-x86_64"; 327 - sha256 = "141aec935cb203578e819481b9548e29212c29c94a6c60dd79bad0f676633cd9"; 328 } 329 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ne-NP/firefox-100.0b5.tar.bz2"; 330 locale = "ne-NP"; 331 arch = "linux-x86_64"; 332 - sha256 = "5d3e083b078496ca6fa34960a3e480baa69b582bb737fbcded6a119c9216c0b5"; 333 } 334 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/nl/firefox-100.0b5.tar.bz2"; 335 locale = "nl"; 336 arch = "linux-x86_64"; 337 - sha256 = "f7a8257d2c2cd266e46db87b6ebd8a7530a486d503760baee3d7ab655dc5e7d2"; 338 } 339 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/nn-NO/firefox-100.0b5.tar.bz2"; 340 locale = "nn-NO"; 341 arch = "linux-x86_64"; 342 - sha256 = "30ec48d85ebccfc9314cb642a8171d5ce98dbd0ab102f6ec00cbff2d26163d0e"; 343 } 344 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/oc/firefox-100.0b5.tar.bz2"; 345 locale = "oc"; 346 arch = "linux-x86_64"; 347 - sha256 = "4d580c477ef3dab1f217114b24486d29df4ce022fa444b013a296603c3ff5936"; 348 } 349 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/pa-IN/firefox-100.0b5.tar.bz2"; 350 locale = "pa-IN"; 351 arch = "linux-x86_64"; 352 - sha256 = "02953120d3becd386ce8551fd4f97e1da930b7778906096fda8d79340e53230f"; 353 } 354 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/pl/firefox-100.0b5.tar.bz2"; 355 locale = "pl"; 356 arch = "linux-x86_64"; 357 - sha256 = "362c1d650bf4613e46384ba5837daa80a790b504fedc254c8af7cc146127fe1d"; 358 } 359 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/pt-BR/firefox-100.0b5.tar.bz2"; 360 locale = "pt-BR"; 361 arch = "linux-x86_64"; 362 - sha256 = "38ec5f6aeb156437f2925df9f1e5135bfa9d85e55d570548c56770334fe09bb1"; 363 } 364 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/pt-PT/firefox-100.0b5.tar.bz2"; 365 locale = "pt-PT"; 366 arch = "linux-x86_64"; 367 - sha256 = "9cfcd7212cd3531ee0694cc58653a53acd211494705f1d3040bbf03b4bb537f3"; 368 } 369 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/rm/firefox-100.0b5.tar.bz2"; 370 locale = "rm"; 371 arch = "linux-x86_64"; 372 - sha256 = "ffce43f1c388618b53abaec130e288210cdb1361af512eedf0780d591e7ccffe"; 373 } 374 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ro/firefox-100.0b5.tar.bz2"; 375 locale = "ro"; 376 arch = "linux-x86_64"; 377 - sha256 = "62bbfeb4a6692c25a1a2a0eb5e790e262e0141dcb74056cb55dc5e7e4a958954"; 378 } 379 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ru/firefox-100.0b5.tar.bz2"; 380 locale = "ru"; 381 arch = "linux-x86_64"; 382 - sha256 = "0acf8d6c81c1704a67c9b7b9542ac6f1bd0b929cd0f0814b84cf64a46cc38107"; 383 } 384 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sco/firefox-100.0b5.tar.bz2"; 385 locale = "sco"; 386 arch = "linux-x86_64"; 387 - sha256 = "fc172346729982645acf975a7fba8e045eb81755540faf3eea9699a7474e4ab5"; 388 } 389 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/si/firefox-100.0b5.tar.bz2"; 390 locale = "si"; 391 arch = "linux-x86_64"; 392 - sha256 = "64ef404110234acc639faefe93499578b88506e287d0e75ec2fc36be625e7025"; 393 } 394 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sk/firefox-100.0b5.tar.bz2"; 395 locale = "sk"; 396 arch = "linux-x86_64"; 397 - sha256 = "6fdeb9de76bc3d7d7b5907340368adcd69d28b0db7a46bf96ee54ab731821952"; 398 } 399 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sl/firefox-100.0b5.tar.bz2"; 400 locale = "sl"; 401 arch = "linux-x86_64"; 402 - sha256 = "259b7c2467220ed58a725006b70b1610d7b1589892e75b0eda1ed5a97ea8d65d"; 403 } 404 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/son/firefox-100.0b5.tar.bz2"; 405 locale = "son"; 406 arch = "linux-x86_64"; 407 - sha256 = "56f4d79d2e4c3df1ea6903c230d790aa2e40adb704358c6d225fcb2103122cdd"; 408 } 409 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sq/firefox-100.0b5.tar.bz2"; 410 locale = "sq"; 411 arch = "linux-x86_64"; 412 - sha256 = "73490c2374b06cb4a8fdcf5c1ed32484581b62f380aef5d8d6da8c1319caa0b2"; 413 } 414 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sr/firefox-100.0b5.tar.bz2"; 415 locale = "sr"; 416 arch = "linux-x86_64"; 417 - sha256 = "06070996a689d5cac3f97348af762834d0a9e56446b8b58ceba11235f49f17cd"; 418 } 419 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sv-SE/firefox-100.0b5.tar.bz2"; 420 locale = "sv-SE"; 421 arch = "linux-x86_64"; 422 - sha256 = "bc2b8826c8635d5e96b596aa5add0a6f6146fd9b70195323b6fac588ad4e0a88"; 423 } 424 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/szl/firefox-100.0b5.tar.bz2"; 425 locale = "szl"; 426 arch = "linux-x86_64"; 427 - sha256 = "40eb80afc5f91513f4ee96dddd842b7b424b4caa2b41cbb0542b6a9c009b2099"; 428 } 429 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ta/firefox-100.0b5.tar.bz2"; 430 locale = "ta"; 431 arch = "linux-x86_64"; 432 - sha256 = "79132eab776f5e3eba46368a837297be38123ac7036ab550c82d60037e8bc594"; 433 } 434 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/te/firefox-100.0b5.tar.bz2"; 435 locale = "te"; 436 arch = "linux-x86_64"; 437 - sha256 = "b2062d708ca2964fe0d046da13c6e763dcc6702dbffc4bb32ace4301e2653941"; 438 } 439 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/th/firefox-100.0b5.tar.bz2"; 440 locale = "th"; 441 arch = "linux-x86_64"; 442 - sha256 = "4e1ce1968f16403268a69ab85abb33422eb52cb0f36c854a16dda87d5abd941d"; 443 } 444 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/tl/firefox-100.0b5.tar.bz2"; 445 locale = "tl"; 446 arch = "linux-x86_64"; 447 - sha256 = "c1ee82d1b14be9bf7c634029884a7eb59c051f26663e00ea0bf6e5f74ef9e04c"; 448 } 449 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/tr/firefox-100.0b5.tar.bz2"; 450 locale = "tr"; 451 arch = "linux-x86_64"; 452 - sha256 = "0c58541768c627cb4d556b34ed8523f3bccfdaa757cdcde37d1fe7d19c934562"; 453 } 454 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/trs/firefox-100.0b5.tar.bz2"; 455 locale = "trs"; 456 arch = "linux-x86_64"; 457 - sha256 = "139f2a1abb08dc5ef684d51226fbe64c41e08ad4f183a8b15ff155c5fe51e922"; 458 } 459 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/uk/firefox-100.0b5.tar.bz2"; 460 locale = "uk"; 461 arch = "linux-x86_64"; 462 - sha256 = "633fa83f990bc1e8a791a0486bf9034f5b4709fd3e2d868f42895b66c5476ca7"; 463 } 464 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ur/firefox-100.0b5.tar.bz2"; 465 locale = "ur"; 466 arch = "linux-x86_64"; 467 - sha256 = "25d7518b88be9d1cbf504a8c214049f265f74a0def26bf5a1c60d562d999a5e8"; 468 } 469 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/uz/firefox-100.0b5.tar.bz2"; 470 locale = "uz"; 471 arch = "linux-x86_64"; 472 - sha256 = "39f6c200dc56585bf527e8daa59f460d9193f7d5e7194efb7b1bfbf2d4f92e4e"; 473 } 474 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/vi/firefox-100.0b5.tar.bz2"; 475 locale = "vi"; 476 arch = "linux-x86_64"; 477 - sha256 = "e4d0a5838b837d7020da1595cf77093d53aa5d7f765fcc98da20c11c0e853874"; 478 } 479 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/xh/firefox-100.0b5.tar.bz2"; 480 locale = "xh"; 481 arch = "linux-x86_64"; 482 - sha256 = "679180e00ca70e112d5053c72cabc0ca5eb92f2f16915c556aefc861188d0318"; 483 } 484 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/zh-CN/firefox-100.0b5.tar.bz2"; 485 locale = "zh-CN"; 486 arch = "linux-x86_64"; 487 - sha256 = "c280eef16ab855db69e975f8cac93a2987e125236d7df34a5a336cc837cfd901"; 488 } 489 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/zh-TW/firefox-100.0b5.tar.bz2"; 490 locale = "zh-TW"; 491 arch = "linux-x86_64"; 492 - sha256 = "2b6d0a74fd53d907a6e0f6e28be41e9cfa62e61c42dbc132d16c39f87980ad49"; 493 } 494 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ach/firefox-100.0b5.tar.bz2"; 495 locale = "ach"; 496 arch = "linux-i686"; 497 - sha256 = "579452bc9bf650c9664775a5ec438be6cf4276b807840a38e30a0c08237a777d"; 498 } 499 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/af/firefox-100.0b5.tar.bz2"; 500 locale = "af"; 501 arch = "linux-i686"; 502 - sha256 = "a9828b2f4954f63b8b4b37722da0a50f1b9e6230aa981f51597718bf05e52b54"; 503 } 504 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/an/firefox-100.0b5.tar.bz2"; 505 locale = "an"; 506 arch = "linux-i686"; 507 - sha256 = "0d7083b1feef4c8cde1be64ff26c37afdba36454802266c28b1916f760881de4"; 508 } 509 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ar/firefox-100.0b5.tar.bz2"; 510 locale = "ar"; 511 arch = "linux-i686"; 512 - sha256 = "57e5e2863caf348c475daaa6949dabe013aab0b3e63db61b3a9b9ef4049e62e9"; 513 } 514 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ast/firefox-100.0b5.tar.bz2"; 515 locale = "ast"; 516 arch = "linux-i686"; 517 - sha256 = "e954fde4dcca82fdfd8605bcd43930f0b85117c1b2dc9edeba75b435b77b121e"; 518 } 519 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/az/firefox-100.0b5.tar.bz2"; 520 locale = "az"; 521 arch = "linux-i686"; 522 - sha256 = "a893f228de842c6bdd0c41df3db328c737b57a945a55e1e56f3672a7beffbe5b"; 523 } 524 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/be/firefox-100.0b5.tar.bz2"; 525 locale = "be"; 526 arch = "linux-i686"; 527 - sha256 = "8cb4ca15ee69f9bb74cd13de82697526d6e64c6968881489b7ddbe4ad9266c54"; 528 } 529 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/bg/firefox-100.0b5.tar.bz2"; 530 locale = "bg"; 531 arch = "linux-i686"; 532 - sha256 = "2d8a566a4619f549bf6b68a2d1b0fad51843de0257da54039050affbc21de948"; 533 } 534 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/bn/firefox-100.0b5.tar.bz2"; 535 locale = "bn"; 536 arch = "linux-i686"; 537 - sha256 = "e75c5aecf6b0bd0d60423bb66980c085957b1acd1549426a44a4a7991d1f2db3"; 538 } 539 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/br/firefox-100.0b5.tar.bz2"; 540 locale = "br"; 541 arch = "linux-i686"; 542 - sha256 = "bb8794c3069989e0f06f0dbd0b7fee638bcf9e6e3d24d28ce41db3a182a83a60"; 543 } 544 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/bs/firefox-100.0b5.tar.bz2"; 545 locale = "bs"; 546 arch = "linux-i686"; 547 - sha256 = "db964f0e1eb920cac95cd0dc14175f5e20a1ec32f56a3b43554f22cc67dce752"; 548 } 549 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ca-valencia/firefox-100.0b5.tar.bz2"; 550 locale = "ca-valencia"; 551 arch = "linux-i686"; 552 - sha256 = "ca124cd11585fc521b4e2d1c4bc0c2407056abffbb2b36e46ec568c6490b28d3"; 553 } 554 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ca/firefox-100.0b5.tar.bz2"; 555 locale = "ca"; 556 arch = "linux-i686"; 557 - sha256 = "6ca6e8c905b44c09c4d061656fe2cace22d261ea4efd04917fc2aa2ce13a1cb6"; 558 } 559 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/cak/firefox-100.0b5.tar.bz2"; 560 locale = "cak"; 561 arch = "linux-i686"; 562 - sha256 = "44bfca1c2cac5eea67f68891da93604edbdf6e0eda92fd1686d83512feff2089"; 563 } 564 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/cs/firefox-100.0b5.tar.bz2"; 565 locale = "cs"; 566 arch = "linux-i686"; 567 - sha256 = "491a9c7a2471fc1a06751282340f1b6bd00118a8ea11d54420985822c0e9a19e"; 568 } 569 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/cy/firefox-100.0b5.tar.bz2"; 570 locale = "cy"; 571 arch = "linux-i686"; 572 - sha256 = "b9e55860c0f14afcd2d2cf87e5ca7d4b853fce667f93a6b493323423c16f8adc"; 573 } 574 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/da/firefox-100.0b5.tar.bz2"; 575 locale = "da"; 576 arch = "linux-i686"; 577 - sha256 = "899a53b667b4f64e953b7d1cf430eea8e67de747b28c93435cf33f008dc464eb"; 578 } 579 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/de/firefox-100.0b5.tar.bz2"; 580 locale = "de"; 581 arch = "linux-i686"; 582 - sha256 = "efecb119d1becf00b34babaf42cae5f5c586dc8cc2a29c71d410b68b7aa00cc5"; 583 } 584 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/dsb/firefox-100.0b5.tar.bz2"; 585 locale = "dsb"; 586 arch = "linux-i686"; 587 - sha256 = "b47d0bed633a6c8608c600d6b1c8c49bfe40e4b1df6f72bb7dd49e722084cf81"; 588 } 589 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/el/firefox-100.0b5.tar.bz2"; 590 locale = "el"; 591 arch = "linux-i686"; 592 - sha256 = "07b34038828ea049ea6c1bba71d27bada83ec514d8d58be92f9005ff01cd6853"; 593 } 594 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/en-CA/firefox-100.0b5.tar.bz2"; 595 locale = "en-CA"; 596 arch = "linux-i686"; 597 - sha256 = "fe1dfeca3de53837003d93aecf5fa971a51e8a585cbe9a1c44f338d8d1d7788c"; 598 } 599 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/en-GB/firefox-100.0b5.tar.bz2"; 600 locale = "en-GB"; 601 arch = "linux-i686"; 602 - sha256 = "fe4baa77504d9ed1f789726db85599d5cc634765ae19cb4604234ccf7a43b97d"; 603 } 604 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/en-US/firefox-100.0b5.tar.bz2"; 605 locale = "en-US"; 606 arch = "linux-i686"; 607 - sha256 = "6ca97f006b90f98676efae14423c8707527182e118f4d3020e51eddcb14cf8d5"; 608 } 609 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/eo/firefox-100.0b5.tar.bz2"; 610 locale = "eo"; 611 arch = "linux-i686"; 612 - sha256 = "e9fb1b7b6752629891df490ff625897ae5d929c435c824cb6c5dce18340e3273"; 613 } 614 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/es-AR/firefox-100.0b5.tar.bz2"; 615 locale = "es-AR"; 616 arch = "linux-i686"; 617 - sha256 = "b18a2fb101d28d1dae1b4a33d63906a7c6720ddf5e4418eecf8f6df0be58e017"; 618 } 619 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/es-CL/firefox-100.0b5.tar.bz2"; 620 locale = "es-CL"; 621 arch = "linux-i686"; 622 - sha256 = "37a54082b8bb69c925894718eefcb1229ad661cfe31aa95906da163a213ea4b6"; 623 } 624 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/es-ES/firefox-100.0b5.tar.bz2"; 625 locale = "es-ES"; 626 arch = "linux-i686"; 627 - sha256 = "bb38bb93c74878646f31c09d524eaadf18a1e2f6ace957abfabd05e1e63898e2"; 628 } 629 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/es-MX/firefox-100.0b5.tar.bz2"; 630 locale = "es-MX"; 631 arch = "linux-i686"; 632 - sha256 = "6c75d42e34b6fde9e8b3ad31ad3574af87dfab2f5eef71b457fbdb9ca6dbe12e"; 633 } 634 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/et/firefox-100.0b5.tar.bz2"; 635 locale = "et"; 636 arch = "linux-i686"; 637 - sha256 = "e25b97ff49fcfaef9906cee48f0f342272d2b9807a6221aa6b4fa5939bfba70e"; 638 } 639 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/eu/firefox-100.0b5.tar.bz2"; 640 locale = "eu"; 641 arch = "linux-i686"; 642 - sha256 = "f929034c74b057e32db4408ca25b9e9aff9b26d487db29cbb0c0fa0ade96748a"; 643 } 644 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/fa/firefox-100.0b5.tar.bz2"; 645 locale = "fa"; 646 arch = "linux-i686"; 647 - sha256 = "2fd4af491c79dbceee3de7e04fef413535757c0588072ece7e5ebcf252815782"; 648 } 649 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ff/firefox-100.0b5.tar.bz2"; 650 locale = "ff"; 651 arch = "linux-i686"; 652 - sha256 = "7b0f38144eef79ead877a352a03abb3d50631031b051750d3d9ab84dd8afe319"; 653 } 654 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/fi/firefox-100.0b5.tar.bz2"; 655 locale = "fi"; 656 arch = "linux-i686"; 657 - sha256 = "fefaec6affe3be2d963967397aa6b0c7495570d0fb437820d87ef6289654fd80"; 658 } 659 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/fr/firefox-100.0b5.tar.bz2"; 660 locale = "fr"; 661 arch = "linux-i686"; 662 - sha256 = "1dcb22611d288ea566f1d319b4fa8f6ec7057e05d39a1be794ae12f343e29809"; 663 } 664 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/fy-NL/firefox-100.0b5.tar.bz2"; 665 locale = "fy-NL"; 666 arch = "linux-i686"; 667 - sha256 = "fe15fecf740bdc9f9476366f394a10f2f919d7c84f64844025faafbf28fef05f"; 668 } 669 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ga-IE/firefox-100.0b5.tar.bz2"; 670 locale = "ga-IE"; 671 arch = "linux-i686"; 672 - sha256 = "06c5708ca8cf4ded0cbc7b52e0772bc4fb86ae55d822ff09088af5c35e60d917"; 673 } 674 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/gd/firefox-100.0b5.tar.bz2"; 675 locale = "gd"; 676 arch = "linux-i686"; 677 - sha256 = "fdbf7f54a4120dee131687fc81e972e4df52347de4e8473a152ca0b98d7bef92"; 678 } 679 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/gl/firefox-100.0b5.tar.bz2"; 680 locale = "gl"; 681 arch = "linux-i686"; 682 - sha256 = "807d0deda34da90207a6ddac26649f38eded1a6b2337d9cb73ed28c55bd316b4"; 683 } 684 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/gn/firefox-100.0b5.tar.bz2"; 685 locale = "gn"; 686 arch = "linux-i686"; 687 - sha256 = "a70ec6595f9ff5cfcc8ae0185d4ece632a17ff49817b98052bee8981dbd63d58"; 688 } 689 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/gu-IN/firefox-100.0b5.tar.bz2"; 690 locale = "gu-IN"; 691 arch = "linux-i686"; 692 - sha256 = "44e9a22d946e4405db84069d329b66293b0d789b59d98bed4570d98dd19b6c0f"; 693 } 694 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/he/firefox-100.0b5.tar.bz2"; 695 locale = "he"; 696 arch = "linux-i686"; 697 - sha256 = "1855cfb19d6bd857a14950399e238c30768e23c08d21a1db38b49dcedf2302bb"; 698 } 699 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/hi-IN/firefox-100.0b5.tar.bz2"; 700 locale = "hi-IN"; 701 arch = "linux-i686"; 702 - sha256 = "47fc9f90b3d52e353594bef6c84bf408ef3e37fa2d0eefe17997bab546b2f9b5"; 703 } 704 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/hr/firefox-100.0b5.tar.bz2"; 705 locale = "hr"; 706 arch = "linux-i686"; 707 - sha256 = "bcbe511cd9bf09605f1e6bdb3b65e9f8eff6c6e8cbdb904987941d2edbd10b42"; 708 } 709 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/hsb/firefox-100.0b5.tar.bz2"; 710 locale = "hsb"; 711 arch = "linux-i686"; 712 - sha256 = "5a5b5063eaeeeec63d13f138ba43280ea6cde0aeb03bcf18c6f5ed0c7ab575d6"; 713 } 714 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/hu/firefox-100.0b5.tar.bz2"; 715 locale = "hu"; 716 arch = "linux-i686"; 717 - sha256 = "7828ea71f5ecf9afcc52fad0047789ece2c8be5c7ba8d390d98a24daffebc0c1"; 718 } 719 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/hy-AM/firefox-100.0b5.tar.bz2"; 720 locale = "hy-AM"; 721 arch = "linux-i686"; 722 - sha256 = "c76b2e07e5085caf56c8c94848f7d7dc4b40c5000a792921bce762ed55b73f4a"; 723 } 724 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ia/firefox-100.0b5.tar.bz2"; 725 locale = "ia"; 726 arch = "linux-i686"; 727 - sha256 = "de9ace36727f9fb070138d30bb854bf28ad57b7a9895cff492d48231826044cd"; 728 } 729 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/id/firefox-100.0b5.tar.bz2"; 730 locale = "id"; 731 arch = "linux-i686"; 732 - sha256 = "01dcade8b0d7dd4f4ec9a408291c643bbfbcb922ba0b2cd84645799c22c46082"; 733 } 734 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/is/firefox-100.0b5.tar.bz2"; 735 locale = "is"; 736 arch = "linux-i686"; 737 - sha256 = "a8aa5de061a5414e55f45c61bece3f4471662f36e3e30163daef028cbc62a675"; 738 } 739 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/it/firefox-100.0b5.tar.bz2"; 740 locale = "it"; 741 arch = "linux-i686"; 742 - sha256 = "4610c04780fc075cb49a09e0815671dcd8f3b625a5b30913c8ff5be81cfd13cb"; 743 } 744 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ja/firefox-100.0b5.tar.bz2"; 745 locale = "ja"; 746 arch = "linux-i686"; 747 - sha256 = "7ca93bd2ab0a1e0e0aa1a41df7331c65f27747b3d511527c557e613272a736ba"; 748 } 749 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ka/firefox-100.0b5.tar.bz2"; 750 locale = "ka"; 751 arch = "linux-i686"; 752 - sha256 = "55cf179d73cfafc5526e5701de3560e4bf9c1d02c28c77cc66801b828fa9e33f"; 753 } 754 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/kab/firefox-100.0b5.tar.bz2"; 755 locale = "kab"; 756 arch = "linux-i686"; 757 - sha256 = "c7930dbea998892979a16d3e60b19db62cbbe8388e68a2ea59a11e234e8f94b9"; 758 } 759 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/kk/firefox-100.0b5.tar.bz2"; 760 locale = "kk"; 761 arch = "linux-i686"; 762 - sha256 = "771eb9217226b36cb04719555a82c3b11e783059183ebc9c295677ea06d69321"; 763 } 764 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/km/firefox-100.0b5.tar.bz2"; 765 locale = "km"; 766 arch = "linux-i686"; 767 - sha256 = "970daaec6f449ab1d6dc8688ee9f41b95d295523ed57ec14c5f34fc98ee18dee"; 768 } 769 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/kn/firefox-100.0b5.tar.bz2"; 770 locale = "kn"; 771 arch = "linux-i686"; 772 - sha256 = "fae2d5a9a428ddba10cdafb6fce6e0d591b5ba8353d2cf88ed423602fd150576"; 773 } 774 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ko/firefox-100.0b5.tar.bz2"; 775 locale = "ko"; 776 arch = "linux-i686"; 777 - sha256 = "4a66e9cec2224382645d962908218bb89fe4a499b9138c83966dd70d9d25b172"; 778 } 779 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/lij/firefox-100.0b5.tar.bz2"; 780 locale = "lij"; 781 arch = "linux-i686"; 782 - sha256 = "85ef4a63c9dc97f9b482382a83f5a7a6880c5df87acce7e142506c2d449e4f69"; 783 } 784 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/lt/firefox-100.0b5.tar.bz2"; 785 locale = "lt"; 786 arch = "linux-i686"; 787 - sha256 = "da3ccc7021eb4b62c35c716089599f714cfef218856063e083c3547d64271b4c"; 788 } 789 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/lv/firefox-100.0b5.tar.bz2"; 790 locale = "lv"; 791 arch = "linux-i686"; 792 - sha256 = "6aa1d5453d938f16330e0ed54d63bc59c5b57e7da5ddbc41a05c2f75dea68e73"; 793 } 794 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/mk/firefox-100.0b5.tar.bz2"; 795 locale = "mk"; 796 arch = "linux-i686"; 797 - sha256 = "e0cc100f8be06fd97cb029837a054e60d136272a9f6b78eaef692d3bc5d8a669"; 798 } 799 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/mr/firefox-100.0b5.tar.bz2"; 800 locale = "mr"; 801 arch = "linux-i686"; 802 - sha256 = "d3a3d72bebefc51cd8eb1a1ebc1431a9845d15af6321b76e2982a0d210397409"; 803 } 804 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ms/firefox-100.0b5.tar.bz2"; 805 locale = "ms"; 806 arch = "linux-i686"; 807 - sha256 = "c59362f1817f98ec80ea275b39f50bed7a0ee1154d6a6ea3ad6dbe8f2eb1bf79"; 808 } 809 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/my/firefox-100.0b5.tar.bz2"; 810 locale = "my"; 811 arch = "linux-i686"; 812 - sha256 = "ec1d06208223422633c2ca495bb17ca946e379d361a2e00f94ed08588b6b2263"; 813 } 814 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/nb-NO/firefox-100.0b5.tar.bz2"; 815 locale = "nb-NO"; 816 arch = "linux-i686"; 817 - sha256 = "2e31732057bda76dd2d74d8e2b3e6c38a2035bf163234fd82fc867b544d34dc1"; 818 } 819 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ne-NP/firefox-100.0b5.tar.bz2"; 820 locale = "ne-NP"; 821 arch = "linux-i686"; 822 - sha256 = "eba3a80cb0b761b68d5e318d5f8110a7d19da1261868cbc1f1a39eb47c08c018"; 823 } 824 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/nl/firefox-100.0b5.tar.bz2"; 825 locale = "nl"; 826 arch = "linux-i686"; 827 - sha256 = "1f7ae0dc78d5b30741e8d645471aa1875c2de144742383eb5c24cc2deda79f77"; 828 } 829 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/nn-NO/firefox-100.0b5.tar.bz2"; 830 locale = "nn-NO"; 831 arch = "linux-i686"; 832 - sha256 = "acd635ad253a878043ec4121984da468901c49d4fb511ec9cfad478980ecf647"; 833 } 834 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/oc/firefox-100.0b5.tar.bz2"; 835 locale = "oc"; 836 arch = "linux-i686"; 837 - sha256 = "2721c54a1bee621d9c7cf2f5c657dc48a7d9406d80c5aeb9963bf7b128c17629"; 838 } 839 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/pa-IN/firefox-100.0b5.tar.bz2"; 840 locale = "pa-IN"; 841 arch = "linux-i686"; 842 - sha256 = "97c435e09c0b56bd9bf66d50e90034a502e9af6cc1984d5acdd2d948f7556273"; 843 } 844 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/pl/firefox-100.0b5.tar.bz2"; 845 locale = "pl"; 846 arch = "linux-i686"; 847 - sha256 = "36e81c101b8cb68be0f69339c47ff4e5839397096775cf9ea46f0ff1efe5353a"; 848 } 849 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/pt-BR/firefox-100.0b5.tar.bz2"; 850 locale = "pt-BR"; 851 arch = "linux-i686"; 852 - sha256 = "fb90a3a2a303f945bc34e2a6ec397f0116ac77f02062e7a7c8dcd382606dfec0"; 853 } 854 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/pt-PT/firefox-100.0b5.tar.bz2"; 855 locale = "pt-PT"; 856 arch = "linux-i686"; 857 - sha256 = "8797c65c277cc0f46a8d8b2cafc370be55c57eccc8e9fc88d3053e2969f9de58"; 858 } 859 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/rm/firefox-100.0b5.tar.bz2"; 860 locale = "rm"; 861 arch = "linux-i686"; 862 - sha256 = "b8cd7b28f31d4e1ee874f1073065897444eb9503e207b924a875a8c3a0b21509"; 863 } 864 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ro/firefox-100.0b5.tar.bz2"; 865 locale = "ro"; 866 arch = "linux-i686"; 867 - sha256 = "3907d9aa29f56fbf97008e65f83ae25719f4156961ff3e976661a2012f16fafd"; 868 } 869 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ru/firefox-100.0b5.tar.bz2"; 870 locale = "ru"; 871 arch = "linux-i686"; 872 - sha256 = "4913bf6de1f5b14d005f20bbc0d2ef97227903d296851034735e872e28b3f065"; 873 } 874 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sco/firefox-100.0b5.tar.bz2"; 875 locale = "sco"; 876 arch = "linux-i686"; 877 - sha256 = "ac4fb9005a71ca5bd25120946b65ebc0f437d8c86b9dcdc11e9b874ade8b4dbb"; 878 } 879 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/si/firefox-100.0b5.tar.bz2"; 880 locale = "si"; 881 arch = "linux-i686"; 882 - sha256 = "8fdac92f650f10a9dc9322f817f1bb6f60b5a9fe97942cc1ca5ae694aad71523"; 883 } 884 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sk/firefox-100.0b5.tar.bz2"; 885 locale = "sk"; 886 arch = "linux-i686"; 887 - sha256 = "57987896b0e1b8846911b878dc360d139002401ed57a9b95fe47f2801c983848"; 888 } 889 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sl/firefox-100.0b5.tar.bz2"; 890 locale = "sl"; 891 arch = "linux-i686"; 892 - sha256 = "3097cfb125f9b275270955c454577b7aa5ffe68b5ee0917cf6b3e0c31d9c5b25"; 893 } 894 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/son/firefox-100.0b5.tar.bz2"; 895 locale = "son"; 896 arch = "linux-i686"; 897 - sha256 = "8588038e834177672a47530e8e86c202123606ef6f1a5d9a4d5c40cac8cb9aec"; 898 } 899 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sq/firefox-100.0b5.tar.bz2"; 900 locale = "sq"; 901 arch = "linux-i686"; 902 - sha256 = "cc229e95ce396fc37fd7103e70acae2414de501823beb04e71c702cc65c430f6"; 903 } 904 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sr/firefox-100.0b5.tar.bz2"; 905 locale = "sr"; 906 arch = "linux-i686"; 907 - sha256 = "9c134f28f92311c8c8764df4d37727134fecab10197cbbaae01d26773e2897a3"; 908 } 909 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sv-SE/firefox-100.0b5.tar.bz2"; 910 locale = "sv-SE"; 911 arch = "linux-i686"; 912 - sha256 = "40c8f4af652dae7a3eb1b1cab01f032ecb526600cbeea0dd5ccc4319b0d50310"; 913 } 914 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/szl/firefox-100.0b5.tar.bz2"; 915 locale = "szl"; 916 arch = "linux-i686"; 917 - sha256 = "d71882b04563f7f89a4c0bd2431e6b33e2af010b40b1dd50304f9daf0ca66525"; 918 } 919 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ta/firefox-100.0b5.tar.bz2"; 920 locale = "ta"; 921 arch = "linux-i686"; 922 - sha256 = "a473f9123d53de141e0592e03e8c9dd6ce8f057c57f89f55957c1436d139582f"; 923 } 924 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/te/firefox-100.0b5.tar.bz2"; 925 locale = "te"; 926 arch = "linux-i686"; 927 - sha256 = "042aae2c4d10d2b7407b3252a39600217ab8ac0c9e34045c31e70cd8e792968f"; 928 } 929 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/th/firefox-100.0b5.tar.bz2"; 930 locale = "th"; 931 arch = "linux-i686"; 932 - sha256 = "6455ef37c941c978b1380f6ff3de41c0b7f8348d498d154e78c9c7b6e8992187"; 933 } 934 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/tl/firefox-100.0b5.tar.bz2"; 935 locale = "tl"; 936 arch = "linux-i686"; 937 - sha256 = "b41d0029729bb4fa1e8d8c596232272c1e238d8bbdb675d31e42250faed54396"; 938 } 939 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/tr/firefox-100.0b5.tar.bz2"; 940 locale = "tr"; 941 arch = "linux-i686"; 942 - sha256 = "e0345c71199784d40fa159617371a72e3f3e05d2aadc041d14c6b3e450304afd"; 943 } 944 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/trs/firefox-100.0b5.tar.bz2"; 945 locale = "trs"; 946 arch = "linux-i686"; 947 - sha256 = "4a6afcbbb3d05bf6f3abe3194a21aa6ea6d2f76cc5429ef4ca0a433ab1d97f76"; 948 } 949 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/uk/firefox-100.0b5.tar.bz2"; 950 locale = "uk"; 951 arch = "linux-i686"; 952 - sha256 = "97709ab7965f859da2ce93cd4c22b875a0a94af8b8b7acabd1578d5ae82d6d85"; 953 } 954 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ur/firefox-100.0b5.tar.bz2"; 955 locale = "ur"; 956 arch = "linux-i686"; 957 - sha256 = "7c69d7f588540d0a72d9942671d40ab59f066b9798279dbe1b0b0980cfa13a06"; 958 } 959 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/uz/firefox-100.0b5.tar.bz2"; 960 locale = "uz"; 961 arch = "linux-i686"; 962 - sha256 = "53c450eeb1223c2794b9270d257fdeec50bb4deece5bf5d7d05a5819f54989c5"; 963 } 964 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/vi/firefox-100.0b5.tar.bz2"; 965 locale = "vi"; 966 arch = "linux-i686"; 967 - sha256 = "395e8ffa9c6a0145f6fdd005df0b73fd4d59410ba780818232cde2f3fc257d50"; 968 } 969 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/xh/firefox-100.0b5.tar.bz2"; 970 locale = "xh"; 971 arch = "linux-i686"; 972 - sha256 = "22359e92de488a24709445de54499c9ad49e841e4ef6ba45296b44fac089121c"; 973 } 974 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/zh-CN/firefox-100.0b5.tar.bz2"; 975 locale = "zh-CN"; 976 arch = "linux-i686"; 977 - sha256 = "7f5d0d771c546d41e835ce7842ee7659ec4a69cd78176b0c679b4b056e8d5499"; 978 } 979 - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/zh-TW/firefox-100.0b5.tar.bz2"; 980 locale = "zh-TW"; 981 arch = "linux-i686"; 982 - sha256 = "8bd0dbb9bf1a3682ea39e43da3819a4f12bc147484528d869a252d2ad000f95a"; 983 } 984 ]; 985 }
··· 1 { 2 + version = "100.0b6"; 3 sources = [ 4 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ach/firefox-100.0b6.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 + sha256 = "6b5ac2e733e44616405f31b16bc995f945740477d00988ce5dd4f16c4ec74085"; 8 } 9 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/af/firefox-100.0b6.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 + sha256 = "5b25ad2870b33002060f493368f79921046f5b19e4adf0c5e1836b7d00347790"; 13 } 14 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/an/firefox-100.0b6.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 + sha256 = "9fc4a88d9216ba0b5979e939092314f135da9e33a3d8df7cadcf142f19b0b71f"; 18 } 19 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ar/firefox-100.0b6.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 + sha256 = "23f33752d3df64ee98cdbdc569b8cb4cea2dbbae71810a3a14a82a6361f97b9e"; 23 } 24 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ast/firefox-100.0b6.tar.bz2"; 25 locale = "ast"; 26 arch = "linux-x86_64"; 27 + sha256 = "a5d357ed9b58fe0a2b7c95e24cb18659c7aee29cb1cda0071b7afdee9c3ac9eb"; 28 } 29 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/az/firefox-100.0b6.tar.bz2"; 30 locale = "az"; 31 arch = "linux-x86_64"; 32 + sha256 = "1191a7c0a3222d55a605bbb5f25d064414d08b9bfb6dc6ad74dd1de357177701"; 33 } 34 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/be/firefox-100.0b6.tar.bz2"; 35 locale = "be"; 36 arch = "linux-x86_64"; 37 + sha256 = "69445ca3cf31d63162ddd0aab1538655a08e325aad57a3d343ac310193a942a3"; 38 } 39 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/bg/firefox-100.0b6.tar.bz2"; 40 locale = "bg"; 41 arch = "linux-x86_64"; 42 + sha256 = "f2ff0a6bf22b9ed16b0656d4e0848c509cee2de9a638d556500909e1352ae5b3"; 43 } 44 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/bn/firefox-100.0b6.tar.bz2"; 45 locale = "bn"; 46 arch = "linux-x86_64"; 47 + sha256 = "1fbfdb8d6f22567eb1112c63ab6192cb439b9d2cd5e57c10401c76f9f9cd215b"; 48 } 49 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/br/firefox-100.0b6.tar.bz2"; 50 locale = "br"; 51 arch = "linux-x86_64"; 52 + sha256 = "e05895d70c72aadcb77dc6d84a6a054a8410b29e05d5da6eeac0fdee1b66b130"; 53 } 54 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/bs/firefox-100.0b6.tar.bz2"; 55 locale = "bs"; 56 arch = "linux-x86_64"; 57 + sha256 = "ba125689cbd845e9bf8df940bbfd0796326939ba9b45d4bc0c0a8ddf64dd6f61"; 58 } 59 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ca-valencia/firefox-100.0b6.tar.bz2"; 60 locale = "ca-valencia"; 61 arch = "linux-x86_64"; 62 + sha256 = "37a5ba26d10cbc2aa8222a2f19133a12710adeb389234ff53a91b43ddd5e901a"; 63 } 64 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ca/firefox-100.0b6.tar.bz2"; 65 locale = "ca"; 66 arch = "linux-x86_64"; 67 + sha256 = "5f11f3a11b93f06235981200b690cb9aaf95ed8d459ea8e1d6ac7c6a73d9d9e4"; 68 } 69 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/cak/firefox-100.0b6.tar.bz2"; 70 locale = "cak"; 71 arch = "linux-x86_64"; 72 + sha256 = "1d4a103b8c2c601b908a635d2b5edaec068c1a2e644e1924022a94e57e1b2f6a"; 73 } 74 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/cs/firefox-100.0b6.tar.bz2"; 75 locale = "cs"; 76 arch = "linux-x86_64"; 77 + sha256 = "358b2c3c3c5a9945b35f1c71eadaf7d5305d214ecfe37fda811fd37d326dfd35"; 78 } 79 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/cy/firefox-100.0b6.tar.bz2"; 80 locale = "cy"; 81 arch = "linux-x86_64"; 82 + sha256 = "bcbab842e30d22f7d646d2494451e0e676c40c16c1e3532b4c6cd6eb501fb7c2"; 83 } 84 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/da/firefox-100.0b6.tar.bz2"; 85 locale = "da"; 86 arch = "linux-x86_64"; 87 + sha256 = "3b462ea57616171ebe43e218d7fbcc8c45d508fa2b91490d5b107842bf936d25"; 88 } 89 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/de/firefox-100.0b6.tar.bz2"; 90 locale = "de"; 91 arch = "linux-x86_64"; 92 + sha256 = "067a586989c84a280366c6021daf270652d443465b63d03e0fb9ff02eeb3f3ee"; 93 } 94 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/dsb/firefox-100.0b6.tar.bz2"; 95 locale = "dsb"; 96 arch = "linux-x86_64"; 97 + sha256 = "42621cd070dc172b08bdce256c91d6faeede97b116b353f1edf2354c0e37ec3a"; 98 } 99 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/el/firefox-100.0b6.tar.bz2"; 100 locale = "el"; 101 arch = "linux-x86_64"; 102 + sha256 = "f079ccc06590277ccf09d4e34b73d3b363d79651d6e2a07d7e127a42ab552bac"; 103 } 104 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/en-CA/firefox-100.0b6.tar.bz2"; 105 locale = "en-CA"; 106 arch = "linux-x86_64"; 107 + sha256 = "e3f239da659c77662a10ba061f806d615f9a57fe89d1207ac04cacc603a9a587"; 108 } 109 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/en-GB/firefox-100.0b6.tar.bz2"; 110 locale = "en-GB"; 111 arch = "linux-x86_64"; 112 + sha256 = "e41640386bbceef99290458576da3272ea400e78641cbae73ece0e07045396ab"; 113 } 114 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/en-US/firefox-100.0b6.tar.bz2"; 115 locale = "en-US"; 116 arch = "linux-x86_64"; 117 + sha256 = "7f5888e7c0480f4f1626943f1878945166179ab94d995e23d0b8f5eb9d83ab4e"; 118 } 119 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/eo/firefox-100.0b6.tar.bz2"; 120 locale = "eo"; 121 arch = "linux-x86_64"; 122 + sha256 = "6c07749b176c7c533a824357da81a42ef10fc78f09b58e7a090d3e36fd77a6d5"; 123 } 124 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/es-AR/firefox-100.0b6.tar.bz2"; 125 locale = "es-AR"; 126 arch = "linux-x86_64"; 127 + sha256 = "2d23cfea40e6948fd330b2e72f40edab597e5261fb9abcbd539d0b9f513fd946"; 128 } 129 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/es-CL/firefox-100.0b6.tar.bz2"; 130 locale = "es-CL"; 131 arch = "linux-x86_64"; 132 + sha256 = "eef75de09e6fa7d21ca4aa799ea4b279dcdeefa79d9b4ef7f3b5266c90c2a8ff"; 133 } 134 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/es-ES/firefox-100.0b6.tar.bz2"; 135 locale = "es-ES"; 136 arch = "linux-x86_64"; 137 + sha256 = "31d985ab2af1ba15fc6b41580fed4a06fa33fb8cf3dfcf96b1a5ea4e361058f5"; 138 } 139 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/es-MX/firefox-100.0b6.tar.bz2"; 140 locale = "es-MX"; 141 arch = "linux-x86_64"; 142 + sha256 = "1fdc9e77eadf9abb55224bf0db1e555eb99f4a7c525f6021fe226ea7de9db026"; 143 } 144 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/et/firefox-100.0b6.tar.bz2"; 145 locale = "et"; 146 arch = "linux-x86_64"; 147 + sha256 = "2df8328fcf9f10b84b2110f31ec32a5dce7054845c37f7e30b023daee4701322"; 148 } 149 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/eu/firefox-100.0b6.tar.bz2"; 150 locale = "eu"; 151 arch = "linux-x86_64"; 152 + sha256 = "30037fbdb33703b894bb0e33b192d23aa1b67ab9b944b1381d27f95e0c44bdf9"; 153 } 154 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/fa/firefox-100.0b6.tar.bz2"; 155 locale = "fa"; 156 arch = "linux-x86_64"; 157 + sha256 = "37af6700e54f98541fe1f703c13ccad70a72bb7e28200762bf636bd3494b443d"; 158 } 159 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ff/firefox-100.0b6.tar.bz2"; 160 locale = "ff"; 161 arch = "linux-x86_64"; 162 + sha256 = "3612950e42cf9532bb5be99f9f73e2f6b480c58570b1092f8eb337aba1257234"; 163 } 164 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/fi/firefox-100.0b6.tar.bz2"; 165 locale = "fi"; 166 arch = "linux-x86_64"; 167 + sha256 = "a8a2bace3af643c6b82bdfb043f90d4cd6ec10abfed6ada230786ef7eaaf9ee4"; 168 } 169 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/fr/firefox-100.0b6.tar.bz2"; 170 locale = "fr"; 171 arch = "linux-x86_64"; 172 + sha256 = "296f91da1aec6481bdfecf311db4560268082d6f75f0354c6b09ab64494c211c"; 173 } 174 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/fy-NL/firefox-100.0b6.tar.bz2"; 175 locale = "fy-NL"; 176 arch = "linux-x86_64"; 177 + sha256 = "3bdd5b38483c8a8fdab13767ad8f38d60e9c12359740d8017ec8a7a83338e99d"; 178 } 179 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ga-IE/firefox-100.0b6.tar.bz2"; 180 locale = "ga-IE"; 181 arch = "linux-x86_64"; 182 + sha256 = "5f734b553ce52eaa91bc3ee1ac2afea09aefb35e886ba68d56cf3b1e55dfbebc"; 183 } 184 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/gd/firefox-100.0b6.tar.bz2"; 185 locale = "gd"; 186 arch = "linux-x86_64"; 187 + sha256 = "c2b3ef9590646143e48ffebc75d7f9c4a688ae0d3c3a648683a5f7a02aaee74c"; 188 } 189 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/gl/firefox-100.0b6.tar.bz2"; 190 locale = "gl"; 191 arch = "linux-x86_64"; 192 + sha256 = "513ca5b29b690986d0aef335cb98406d599a18ee44ed2b8fdf7687ff3dc87ba2"; 193 } 194 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/gn/firefox-100.0b6.tar.bz2"; 195 locale = "gn"; 196 arch = "linux-x86_64"; 197 + sha256 = "4a5974953f144ffff20a946073aa8891225d80e3dcc405d0230bc601973e8634"; 198 } 199 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/gu-IN/firefox-100.0b6.tar.bz2"; 200 locale = "gu-IN"; 201 arch = "linux-x86_64"; 202 + sha256 = "a2e780ccad66a9a741551b5f7425be3e91f5a225a50e39ebf5770808fac484d7"; 203 } 204 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/he/firefox-100.0b6.tar.bz2"; 205 locale = "he"; 206 arch = "linux-x86_64"; 207 + sha256 = "093fef7512fc82efe8aaef9108bf84ab7a9730e2fa94b8092206c0804068bcd5"; 208 } 209 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/hi-IN/firefox-100.0b6.tar.bz2"; 210 locale = "hi-IN"; 211 arch = "linux-x86_64"; 212 + sha256 = "1b6955622ff8fda11d439dcb4f425a3d84c16c49ee30b1e6eb246555fa07bd09"; 213 } 214 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/hr/firefox-100.0b6.tar.bz2"; 215 locale = "hr"; 216 arch = "linux-x86_64"; 217 + sha256 = "571c7bc2b25002094425eaa8878aaa4b339027a5932d5a073b23fa7d3cf9c945"; 218 } 219 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/hsb/firefox-100.0b6.tar.bz2"; 220 locale = "hsb"; 221 arch = "linux-x86_64"; 222 + sha256 = "7443ddc6143f466712de34ebffb4d41633aec8c0d7b253c3008f68b600a59b3c"; 223 } 224 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/hu/firefox-100.0b6.tar.bz2"; 225 locale = "hu"; 226 arch = "linux-x86_64"; 227 + sha256 = "7413002d74a0c2a0dbc19f783e84fb79a71c73fb28034ad4894a7d64d1745b03"; 228 } 229 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/hy-AM/firefox-100.0b6.tar.bz2"; 230 locale = "hy-AM"; 231 arch = "linux-x86_64"; 232 + sha256 = "a8169b877a7f2e85bbf363c5f0b6a05b28f2aa948689535b2b608cdb8d4c5af5"; 233 } 234 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ia/firefox-100.0b6.tar.bz2"; 235 locale = "ia"; 236 arch = "linux-x86_64"; 237 + sha256 = "54245a95072f8b98a6d556ccb79547d56291b9f915f7e5723f49ff97a1bc1098"; 238 } 239 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/id/firefox-100.0b6.tar.bz2"; 240 locale = "id"; 241 arch = "linux-x86_64"; 242 + sha256 = "43fb95f81026dfae3b889d085b2584cbee7f6b1bec6edd0378d3965b056f8c8b"; 243 } 244 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/is/firefox-100.0b6.tar.bz2"; 245 locale = "is"; 246 arch = "linux-x86_64"; 247 + sha256 = "79e94ad99e19f325915231ce35fa741ed617c5595d5a2d1233ff0b2f2cf20733"; 248 } 249 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/it/firefox-100.0b6.tar.bz2"; 250 locale = "it"; 251 arch = "linux-x86_64"; 252 + sha256 = "0f2147837a3b3d90cddd387125a8579cc576e1613a520fab8265de36ba1039c2"; 253 } 254 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ja/firefox-100.0b6.tar.bz2"; 255 locale = "ja"; 256 arch = "linux-x86_64"; 257 + sha256 = "b755262db8331612cc447c6c5c944374338cd7d52fad732803c1b2d3b8744921"; 258 } 259 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ka/firefox-100.0b6.tar.bz2"; 260 locale = "ka"; 261 arch = "linux-x86_64"; 262 + sha256 = "3dffe30c39f3fee7ef4fdd0f02e619a79f1d67eb3b49efdf35838090e0c03bd9"; 263 } 264 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/kab/firefox-100.0b6.tar.bz2"; 265 locale = "kab"; 266 arch = "linux-x86_64"; 267 + sha256 = "c675eaf355c484362f3b9586a30eac9362452f548d90fa8f70ede88f33f7b30f"; 268 } 269 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/kk/firefox-100.0b6.tar.bz2"; 270 locale = "kk"; 271 arch = "linux-x86_64"; 272 + sha256 = "cefa5aed2f200c3ebb263695c4192fd16b73861edb20085e956332f9f9c009ab"; 273 } 274 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/km/firefox-100.0b6.tar.bz2"; 275 locale = "km"; 276 arch = "linux-x86_64"; 277 + sha256 = "02f6a77a412311af0ea581fafa12826bec93c333c14ff6d1f9da0dd783c8aa0d"; 278 } 279 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/kn/firefox-100.0b6.tar.bz2"; 280 locale = "kn"; 281 arch = "linux-x86_64"; 282 + sha256 = "e6dedf44d9a0f1a8d379b8f07add326581b06223b335935f81f7c9a442bac2b0"; 283 } 284 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ko/firefox-100.0b6.tar.bz2"; 285 locale = "ko"; 286 arch = "linux-x86_64"; 287 + sha256 = "022550ce534cdf4ba489bbcd553052c535fb0ee908155b728718619f33f95630"; 288 } 289 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/lij/firefox-100.0b6.tar.bz2"; 290 locale = "lij"; 291 arch = "linux-x86_64"; 292 + sha256 = "f2e075a6ef35fd8c802cd929f9c81043d9221f947269ca13be695b58edd603b8"; 293 } 294 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/lt/firefox-100.0b6.tar.bz2"; 295 locale = "lt"; 296 arch = "linux-x86_64"; 297 + sha256 = "4ac54a885a81db97df5940cac5429c59442de591fba560c9608cc0f9ba1df74d"; 298 } 299 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/lv/firefox-100.0b6.tar.bz2"; 300 locale = "lv"; 301 arch = "linux-x86_64"; 302 + sha256 = "413dee96d7535b5a276a34871db10b37ae9b6ed233df8a81db0d9080b1cc2ae9"; 303 } 304 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/mk/firefox-100.0b6.tar.bz2"; 305 locale = "mk"; 306 arch = "linux-x86_64"; 307 + sha256 = "9fa2653fb6cbd77e874b1306c9c070097c4728deec0972edf9b7b03aa79a2b9d"; 308 } 309 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/mr/firefox-100.0b6.tar.bz2"; 310 locale = "mr"; 311 arch = "linux-x86_64"; 312 + sha256 = "e26dc9319727f9f7c0fb98efae44d89228499b52edda8f02328586bfae4c79a5"; 313 } 314 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ms/firefox-100.0b6.tar.bz2"; 315 locale = "ms"; 316 arch = "linux-x86_64"; 317 + sha256 = "0001655c4a42a6c113f428315200b5cd1eee08cc417fd82464db87c322f5e949"; 318 } 319 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/my/firefox-100.0b6.tar.bz2"; 320 locale = "my"; 321 arch = "linux-x86_64"; 322 + sha256 = "78fcac093123a0b4b6ebffb1e9f10ee5906d526b96d5be1b249a1e60acc4fcb9"; 323 } 324 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/nb-NO/firefox-100.0b6.tar.bz2"; 325 locale = "nb-NO"; 326 arch = "linux-x86_64"; 327 + sha256 = "6c218dc369434feb3ff30840cd940c19e10d3e900325246445fdb7113c22c284"; 328 } 329 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ne-NP/firefox-100.0b6.tar.bz2"; 330 locale = "ne-NP"; 331 arch = "linux-x86_64"; 332 + sha256 = "9a1a9a2380ebc3da9035066bb212b14b1b8bb6fb80feb6ed220cad1a3969ca6b"; 333 } 334 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/nl/firefox-100.0b6.tar.bz2"; 335 locale = "nl"; 336 arch = "linux-x86_64"; 337 + sha256 = "6ff75975cb1ba028e78aad213837b17fe0b06e5f522996b3b9cd450beab24b51"; 338 } 339 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/nn-NO/firefox-100.0b6.tar.bz2"; 340 locale = "nn-NO"; 341 arch = "linux-x86_64"; 342 + sha256 = "911e765ba62cfc8d69d7e4d68f1a5d44a1b311400731a3593e98ad72516c47dd"; 343 } 344 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/oc/firefox-100.0b6.tar.bz2"; 345 locale = "oc"; 346 arch = "linux-x86_64"; 347 + sha256 = "23341acf2319454172a718a0123fa15bc9367028984449c7a2cdb50644a618b7"; 348 } 349 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/pa-IN/firefox-100.0b6.tar.bz2"; 350 locale = "pa-IN"; 351 arch = "linux-x86_64"; 352 + sha256 = "bae2060e37bd636ffdab3d3f84b73078c4dc78d7ec7eb7bb9504be4dbc3398bb"; 353 } 354 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/pl/firefox-100.0b6.tar.bz2"; 355 locale = "pl"; 356 arch = "linux-x86_64"; 357 + sha256 = "cc397c80e75d00507fa6e170ec43df337450796c829e44d518523b871e33f585"; 358 } 359 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/pt-BR/firefox-100.0b6.tar.bz2"; 360 locale = "pt-BR"; 361 arch = "linux-x86_64"; 362 + sha256 = "2bcb44821f106ad7478fe7b61c7952c20be135a2efe1185d91123930729f78a4"; 363 } 364 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/pt-PT/firefox-100.0b6.tar.bz2"; 365 locale = "pt-PT"; 366 arch = "linux-x86_64"; 367 + sha256 = "7f4c5713972e5bca35b891bd850fd90fcf60d254ebc15435e5b814a212428b44"; 368 } 369 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/rm/firefox-100.0b6.tar.bz2"; 370 locale = "rm"; 371 arch = "linux-x86_64"; 372 + sha256 = "67316b932226848b73a95687e6d218983d8056a966771c3bf16344f158578a53"; 373 } 374 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ro/firefox-100.0b6.tar.bz2"; 375 locale = "ro"; 376 arch = "linux-x86_64"; 377 + sha256 = "7e61a6ce962f1ae0a74ff7a29b6edd7106fe95e4c2df399c22a17f1cf4d0dde9"; 378 } 379 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ru/firefox-100.0b6.tar.bz2"; 380 locale = "ru"; 381 arch = "linux-x86_64"; 382 + sha256 = "bcad404db75ebac101f503fb793572ac010219f41c6716d33cec0552821bb281"; 383 } 384 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sco/firefox-100.0b6.tar.bz2"; 385 locale = "sco"; 386 arch = "linux-x86_64"; 387 + sha256 = "4b01c6ae78219c122ae455627b24594966be61d335dcca8e8547784e8050051f"; 388 } 389 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/si/firefox-100.0b6.tar.bz2"; 390 locale = "si"; 391 arch = "linux-x86_64"; 392 + sha256 = "5aed65aa84e19c8a270cbf6ad3284c23c83dbff841b4639a15af6cdd9148560f"; 393 } 394 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sk/firefox-100.0b6.tar.bz2"; 395 locale = "sk"; 396 arch = "linux-x86_64"; 397 + sha256 = "a06083cf85f88232898d99dd0174e7999c3e65bc8f893c144775722975410235"; 398 } 399 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sl/firefox-100.0b6.tar.bz2"; 400 locale = "sl"; 401 arch = "linux-x86_64"; 402 + sha256 = "fce1013364e0f49f9cf56b4d50be3f17ec92d4dfe77a0ba6672404abbfd954e6"; 403 } 404 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/son/firefox-100.0b6.tar.bz2"; 405 locale = "son"; 406 arch = "linux-x86_64"; 407 + sha256 = "be37a85ae43d646b5b0249303c65d6f0e3c7e15b65986da7e221119d3b8537aa"; 408 } 409 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sq/firefox-100.0b6.tar.bz2"; 410 locale = "sq"; 411 arch = "linux-x86_64"; 412 + sha256 = "dbbcd4da798dca36965a408f74deef86001cdefdbeedd93d3d5c8c34cfd5e4e6"; 413 } 414 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sr/firefox-100.0b6.tar.bz2"; 415 locale = "sr"; 416 arch = "linux-x86_64"; 417 + sha256 = "cb8a4d3af1f8e5af4c6121afaab85eb51239d0a98e9caae0e87df435d9d746ad"; 418 } 419 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sv-SE/firefox-100.0b6.tar.bz2"; 420 locale = "sv-SE"; 421 arch = "linux-x86_64"; 422 + sha256 = "941b3175289f26cc8102c5c436a477cb04af6a35e15861d2473d55b3dc36a04b"; 423 } 424 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/szl/firefox-100.0b6.tar.bz2"; 425 locale = "szl"; 426 arch = "linux-x86_64"; 427 + sha256 = "48fb048a32877082ff1511484cc1eb7847198da4af366c136bcc260879e30970"; 428 } 429 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ta/firefox-100.0b6.tar.bz2"; 430 locale = "ta"; 431 arch = "linux-x86_64"; 432 + sha256 = "16ad13edf164a8867a56dcd59e4bb8c09d2cb3cabbab8c2d7e0a4ed0c02db587"; 433 } 434 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/te/firefox-100.0b6.tar.bz2"; 435 locale = "te"; 436 arch = "linux-x86_64"; 437 + sha256 = "9c4e9fb72917b2e7b6abec7872366d687874af3c4e0d2acd862363120e3ceae0"; 438 } 439 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/th/firefox-100.0b6.tar.bz2"; 440 locale = "th"; 441 arch = "linux-x86_64"; 442 + sha256 = "2a14cee27f951ec1e9e6e342cafee68a18513ed1b4d210e0490862296b12f0a9"; 443 } 444 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/tl/firefox-100.0b6.tar.bz2"; 445 locale = "tl"; 446 arch = "linux-x86_64"; 447 + sha256 = "dd1bf5dbb47615dc2f3a473ab541686fe53cd7d3ac3e5bedab37ce436db5fe07"; 448 } 449 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/tr/firefox-100.0b6.tar.bz2"; 450 locale = "tr"; 451 arch = "linux-x86_64"; 452 + sha256 = "eb9b3f14fa9c2c57784f1e37e198b9eb4bdb8cd3f11ebb52b2a51ba47cc10ccf"; 453 } 454 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/trs/firefox-100.0b6.tar.bz2"; 455 locale = "trs"; 456 arch = "linux-x86_64"; 457 + sha256 = "d39ad94019221ecb2cc895ca16d71f4d461a52eef741b5728447ab054ffe12aa"; 458 } 459 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/uk/firefox-100.0b6.tar.bz2"; 460 locale = "uk"; 461 arch = "linux-x86_64"; 462 + sha256 = "9fbc6fa34062cb64fc6c5eb09df6e3736865e09124efd465c6b30c1bc8329494"; 463 } 464 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ur/firefox-100.0b6.tar.bz2"; 465 locale = "ur"; 466 arch = "linux-x86_64"; 467 + sha256 = "ca1ed7e7746e5a2085328158185715b7b850e8129adf77b1d6f4e90580563563"; 468 } 469 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/uz/firefox-100.0b6.tar.bz2"; 470 locale = "uz"; 471 arch = "linux-x86_64"; 472 + sha256 = "ad05af6f178de687697e7f98b18a64c2cbcc1bad2b167d5bb35e13ac57d03880"; 473 } 474 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/vi/firefox-100.0b6.tar.bz2"; 475 locale = "vi"; 476 arch = "linux-x86_64"; 477 + sha256 = "22b133203f3bb3c901c225e1275215c0c7e3ab5714e640d218532a9db8c636eb"; 478 } 479 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/xh/firefox-100.0b6.tar.bz2"; 480 locale = "xh"; 481 arch = "linux-x86_64"; 482 + sha256 = "570c959de8351eb8ffaae05292be916bd94f34f51a1ffcc84e3176b7f23d230b"; 483 } 484 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/zh-CN/firefox-100.0b6.tar.bz2"; 485 locale = "zh-CN"; 486 arch = "linux-x86_64"; 487 + sha256 = "f0e4fa1b580f778be335285b1154abdfde0b95c6d2c67f7547ab07bcc7fd5172"; 488 } 489 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/zh-TW/firefox-100.0b6.tar.bz2"; 490 locale = "zh-TW"; 491 arch = "linux-x86_64"; 492 + sha256 = "cd49d2954a7014a926cc012c1e439926af1f58c5e11234e2f9d2489c417388f7"; 493 } 494 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ach/firefox-100.0b6.tar.bz2"; 495 locale = "ach"; 496 arch = "linux-i686"; 497 + sha256 = "a3b67450658e8c34ce17f5f3b63afc4116cccdd2d786c72958afdb468c0c7eab"; 498 } 499 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/af/firefox-100.0b6.tar.bz2"; 500 locale = "af"; 501 arch = "linux-i686"; 502 + sha256 = "c7a9ca1c35ed17fe138df0608d02b345c6e358612a03f3408bd46a792f3bed2b"; 503 } 504 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/an/firefox-100.0b6.tar.bz2"; 505 locale = "an"; 506 arch = "linux-i686"; 507 + sha256 = "242731960f5b500d25f9b328731437a4229aa4d668fc849d2111506dc4741b97"; 508 } 509 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ar/firefox-100.0b6.tar.bz2"; 510 locale = "ar"; 511 arch = "linux-i686"; 512 + sha256 = "4adf2045f911f74323a9e65b4fd2cf249a5369ad5143daa36eb0b1999b5adacc"; 513 } 514 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ast/firefox-100.0b6.tar.bz2"; 515 locale = "ast"; 516 arch = "linux-i686"; 517 + sha256 = "d0827bf52bf91304a0a17c9f5edbc6081be1f1d9eaeba6dc24b63e8b251dbe11"; 518 } 519 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/az/firefox-100.0b6.tar.bz2"; 520 locale = "az"; 521 arch = "linux-i686"; 522 + sha256 = "41de2d574563135721d0a975d8d90f4eccac60f3be51d4cca5e957473793629d"; 523 } 524 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/be/firefox-100.0b6.tar.bz2"; 525 locale = "be"; 526 arch = "linux-i686"; 527 + sha256 = "736900d6a404a97e13cfeeef68681ec7980266ba983f62c0779fd6a8b502e22b"; 528 } 529 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/bg/firefox-100.0b6.tar.bz2"; 530 locale = "bg"; 531 arch = "linux-i686"; 532 + sha256 = "77351b45bc0bd3749c54ea1efb1ebb2ba1ced97f9885906a9b86523e85eb011d"; 533 } 534 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/bn/firefox-100.0b6.tar.bz2"; 535 locale = "bn"; 536 arch = "linux-i686"; 537 + sha256 = "5d9b274d20b5137e531660f92a7ac3b481abd756870af815159ac30e7df47e8d"; 538 } 539 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/br/firefox-100.0b6.tar.bz2"; 540 locale = "br"; 541 arch = "linux-i686"; 542 + sha256 = "22239f50b370747d3029e7f4ab8ac47de15cd5aa8b6d421193299fed9f9b556e"; 543 } 544 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/bs/firefox-100.0b6.tar.bz2"; 545 locale = "bs"; 546 arch = "linux-i686"; 547 + sha256 = "5e2d51cf768f00ab8a30f8d54e2bb88eed75baf20c381e87b7186f5927447137"; 548 } 549 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ca-valencia/firefox-100.0b6.tar.bz2"; 550 locale = "ca-valencia"; 551 arch = "linux-i686"; 552 + sha256 = "cdbee7378c4584d51a7142c695401ebe21a05c87961171fae2fc71e76485e92e"; 553 } 554 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ca/firefox-100.0b6.tar.bz2"; 555 locale = "ca"; 556 arch = "linux-i686"; 557 + sha256 = "1f8f6e0a3917828f7e30deff842c6d5f0c5a2389c87969783d46950c6b072722"; 558 } 559 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/cak/firefox-100.0b6.tar.bz2"; 560 locale = "cak"; 561 arch = "linux-i686"; 562 + sha256 = "42996e08427b937cb2e2aa4d7ea569b729c9002d293be5288e02ab1588e3cbfc"; 563 } 564 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/cs/firefox-100.0b6.tar.bz2"; 565 locale = "cs"; 566 arch = "linux-i686"; 567 + sha256 = "692d99947185928b46142ae910c76d4c1ee2328aa2e67212919aef39741d67db"; 568 } 569 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/cy/firefox-100.0b6.tar.bz2"; 570 locale = "cy"; 571 arch = "linux-i686"; 572 + sha256 = "b2f7ee9c016bc107e63dee850688b048c43f5d1caca1aa81d22cde4ffbe6c964"; 573 } 574 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/da/firefox-100.0b6.tar.bz2"; 575 locale = "da"; 576 arch = "linux-i686"; 577 + sha256 = "095ae3d0657a68903c4d60a21240b9c3fc399284063e5c366ccedcf58361c80b"; 578 } 579 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/de/firefox-100.0b6.tar.bz2"; 580 locale = "de"; 581 arch = "linux-i686"; 582 + sha256 = "359364e7ee5ed03556c7b7390cdb4b1e91e027598a74231cfc20fd5d5c601b1d"; 583 } 584 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/dsb/firefox-100.0b6.tar.bz2"; 585 locale = "dsb"; 586 arch = "linux-i686"; 587 + sha256 = "24f7caf5bbc8edefa104c6b4a646a1afa254da9bb8a1965193b7e4a97ef848ae"; 588 } 589 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/el/firefox-100.0b6.tar.bz2"; 590 locale = "el"; 591 arch = "linux-i686"; 592 + sha256 = "97bfe8f01d8f6024b85a6f25ee084642dc2e2c50dc189d1b6bccfa7835120bad"; 593 } 594 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/en-CA/firefox-100.0b6.tar.bz2"; 595 locale = "en-CA"; 596 arch = "linux-i686"; 597 + sha256 = "fa534341dcfeeb5778d19d5c38fdd8a56e92e756212d256c2fd40c499435e6cc"; 598 } 599 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/en-GB/firefox-100.0b6.tar.bz2"; 600 locale = "en-GB"; 601 arch = "linux-i686"; 602 + sha256 = "a38f383c06a2cce4ddc49fd304b1b5742dcbc2cdd189dd5b6e91b1494231504a"; 603 } 604 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/en-US/firefox-100.0b6.tar.bz2"; 605 locale = "en-US"; 606 arch = "linux-i686"; 607 + sha256 = "c5ad47cc4f5829eb3d01c7031833e3f8aa24d07947415947d5e86e492be37c20"; 608 } 609 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/eo/firefox-100.0b6.tar.bz2"; 610 locale = "eo"; 611 arch = "linux-i686"; 612 + sha256 = "d96ddc5a07581ac62078cac8d702425d6764cbffd93ea1a35ddcbfa5258e01ca"; 613 } 614 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/es-AR/firefox-100.0b6.tar.bz2"; 615 locale = "es-AR"; 616 arch = "linux-i686"; 617 + sha256 = "e5c069a162cd02c3449b6b6c800c491f80270cbd9e29bb418351b40ca318d08e"; 618 } 619 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/es-CL/firefox-100.0b6.tar.bz2"; 620 locale = "es-CL"; 621 arch = "linux-i686"; 622 + sha256 = "e45ea8d1bfc96f500e1061eed4694f2c7c81fb5b5ea76411cb7bdf7df8e74b1b"; 623 } 624 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/es-ES/firefox-100.0b6.tar.bz2"; 625 locale = "es-ES"; 626 arch = "linux-i686"; 627 + sha256 = "a86e913fce09abd34f69f72f338e5d276360b39584266fcb160aa4cb5ef15e10"; 628 } 629 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/es-MX/firefox-100.0b6.tar.bz2"; 630 locale = "es-MX"; 631 arch = "linux-i686"; 632 + sha256 = "d39ac7c519aa5ab3c2b02da50f882480d657672573ac13b76ffa1620a7c31dea"; 633 } 634 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/et/firefox-100.0b6.tar.bz2"; 635 locale = "et"; 636 arch = "linux-i686"; 637 + sha256 = "2d83aecece8c35f11bd3190da1d91100779c4516292fb683792c09a9df63297b"; 638 } 639 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/eu/firefox-100.0b6.tar.bz2"; 640 locale = "eu"; 641 arch = "linux-i686"; 642 + sha256 = "acb38b6a8d2111511d31cb967da094d68eb4bc5e1fb4af613392cdb931a81b69"; 643 } 644 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/fa/firefox-100.0b6.tar.bz2"; 645 locale = "fa"; 646 arch = "linux-i686"; 647 + sha256 = "4c509afe344db0cf9eff8f3bafabdc80b25f78537dfcc931d05a326d97b3793b"; 648 } 649 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ff/firefox-100.0b6.tar.bz2"; 650 locale = "ff"; 651 arch = "linux-i686"; 652 + sha256 = "23c02e6d2f18351c72917c02f6795b1183482e35c6fa5990ecab8e724959c4ce"; 653 } 654 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/fi/firefox-100.0b6.tar.bz2"; 655 locale = "fi"; 656 arch = "linux-i686"; 657 + sha256 = "30f696e3e0b419017fed38ab434a99ffb303eaa4d9d96bd2525ad84cebb20d51"; 658 } 659 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/fr/firefox-100.0b6.tar.bz2"; 660 locale = "fr"; 661 arch = "linux-i686"; 662 + sha256 = "40d631f78caf08e8a04a4dc1286cd749d66130a9b3f887f8a74d1f15ed7247a3"; 663 } 664 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/fy-NL/firefox-100.0b6.tar.bz2"; 665 locale = "fy-NL"; 666 arch = "linux-i686"; 667 + sha256 = "62563d3d7c5755f1163d956f1bf82cb81c48b5349db293e66185c95b8e65caa6"; 668 } 669 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ga-IE/firefox-100.0b6.tar.bz2"; 670 locale = "ga-IE"; 671 arch = "linux-i686"; 672 + sha256 = "72914c49d6b5384987942a6c8127891c7eaa088d08bf9192ce448b11342f512e"; 673 } 674 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/gd/firefox-100.0b6.tar.bz2"; 675 locale = "gd"; 676 arch = "linux-i686"; 677 + sha256 = "1a127b1a4a8407476f1ed73ebd982fc5d0262e2fc413748b4228d9bc9d28a59e"; 678 } 679 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/gl/firefox-100.0b6.tar.bz2"; 680 locale = "gl"; 681 arch = "linux-i686"; 682 + sha256 = "1a84a2d00d065f69492a73e6917e07de8824b185139e3acb75b0f0dd5f82d604"; 683 } 684 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/gn/firefox-100.0b6.tar.bz2"; 685 locale = "gn"; 686 arch = "linux-i686"; 687 + sha256 = "6ddf864b2b2258d0ced011ac2d0ed13455e99d3c093642a477f95ca13a3349cc"; 688 } 689 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/gu-IN/firefox-100.0b6.tar.bz2"; 690 locale = "gu-IN"; 691 arch = "linux-i686"; 692 + sha256 = "86688035900e5bf2dabfb7e8c7320dc4ccf33b46d8c9e963216a750ba2e2b300"; 693 } 694 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/he/firefox-100.0b6.tar.bz2"; 695 locale = "he"; 696 arch = "linux-i686"; 697 + sha256 = "d35c7ac5d61d9253ab69da2a77bbaef7037e7cfa2339d4730201fe41776adc90"; 698 } 699 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/hi-IN/firefox-100.0b6.tar.bz2"; 700 locale = "hi-IN"; 701 arch = "linux-i686"; 702 + sha256 = "48872f0b68ccf4df855e58a4520f5f8347b05de318a0991d83088521b4d178e6"; 703 } 704 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/hr/firefox-100.0b6.tar.bz2"; 705 locale = "hr"; 706 arch = "linux-i686"; 707 + sha256 = "9c1c1303aadb4071a82b558fd470c96671872cd480e444686ec74f41afd46e2f"; 708 } 709 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/hsb/firefox-100.0b6.tar.bz2"; 710 locale = "hsb"; 711 arch = "linux-i686"; 712 + sha256 = "828330501590e2ad3021397cb7b37a86c015b93536e4e2383fc5c5a1e8d6a6f1"; 713 } 714 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/hu/firefox-100.0b6.tar.bz2"; 715 locale = "hu"; 716 arch = "linux-i686"; 717 + sha256 = "592c69c6377657bccbf2b81ae54bc8f37fa6d081dc36d0465c20eaf6d673f32f"; 718 } 719 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/hy-AM/firefox-100.0b6.tar.bz2"; 720 locale = "hy-AM"; 721 arch = "linux-i686"; 722 + sha256 = "a95989dbd6b7b499840f5cc65a765129ca23392455afd21c0ff865112900b5b6"; 723 } 724 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ia/firefox-100.0b6.tar.bz2"; 725 locale = "ia"; 726 arch = "linux-i686"; 727 + sha256 = "a9b225d969b0d8c621a2b545cbb42ce7188d78c09c248422d6379d83934201b6"; 728 } 729 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/id/firefox-100.0b6.tar.bz2"; 730 locale = "id"; 731 arch = "linux-i686"; 732 + sha256 = "304f4d04d3e73a477598a034d3fd016948c5e1662bc236d640219b4b96159690"; 733 } 734 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/is/firefox-100.0b6.tar.bz2"; 735 locale = "is"; 736 arch = "linux-i686"; 737 + sha256 = "3cd144b87e3ef57703ce60c57a09ea8c6ab910408a7c891f9b9b653dca51c55c"; 738 } 739 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/it/firefox-100.0b6.tar.bz2"; 740 locale = "it"; 741 arch = "linux-i686"; 742 + sha256 = "b024d3b0fe4ac5691c6cf1e0c18ce2bff91083746bb988799f2eb3ab74e22e80"; 743 } 744 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ja/firefox-100.0b6.tar.bz2"; 745 locale = "ja"; 746 arch = "linux-i686"; 747 + sha256 = "fe3d9b0c7d0e8f47e9f1bc12429200aeb951b303946365bb32f51c9d807259cf"; 748 } 749 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ka/firefox-100.0b6.tar.bz2"; 750 locale = "ka"; 751 arch = "linux-i686"; 752 + sha256 = "2e4d0f5f2eab6787db359c47a48b35a202b713de0807299a41a751b527a9ccf3"; 753 } 754 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/kab/firefox-100.0b6.tar.bz2"; 755 locale = "kab"; 756 arch = "linux-i686"; 757 + sha256 = "49166beef9b6952940d1ce420afd77777fbe84143b65693f9b75db6768b88e01"; 758 } 759 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/kk/firefox-100.0b6.tar.bz2"; 760 locale = "kk"; 761 arch = "linux-i686"; 762 + sha256 = "24aec891a8189714c9299c695346a3d0a4ea52621f08b890d5db63ba36bc627d"; 763 } 764 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/km/firefox-100.0b6.tar.bz2"; 765 locale = "km"; 766 arch = "linux-i686"; 767 + sha256 = "90f5b7811a2f0bdfefd14261d1e0e7fe85466dc96c666316134c97095606c6ce"; 768 } 769 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/kn/firefox-100.0b6.tar.bz2"; 770 locale = "kn"; 771 arch = "linux-i686"; 772 + sha256 = "e423d1231edbef812e8cbd50f53dba4b48dc9083cbd5d91825392229015c38c8"; 773 } 774 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ko/firefox-100.0b6.tar.bz2"; 775 locale = "ko"; 776 arch = "linux-i686"; 777 + sha256 = "cadd481242635d64b224e080adc1bdcfff9f7ced4715b0ea9655ab333ac7d039"; 778 } 779 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/lij/firefox-100.0b6.tar.bz2"; 780 locale = "lij"; 781 arch = "linux-i686"; 782 + sha256 = "4798691d44767027a39c1124053b2351523e615a06b32bd2bf4f9da7b858159a"; 783 } 784 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/lt/firefox-100.0b6.tar.bz2"; 785 locale = "lt"; 786 arch = "linux-i686"; 787 + sha256 = "ac49b6d34eb8caac4a6900246adb3562eb2228a50fcdc543f79903ea267b339e"; 788 } 789 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/lv/firefox-100.0b6.tar.bz2"; 790 locale = "lv"; 791 arch = "linux-i686"; 792 + sha256 = "4f6e6a26a2b8a23855dbdeabd2363ee0155914542e4c48c655d6b52da6289b34"; 793 } 794 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/mk/firefox-100.0b6.tar.bz2"; 795 locale = "mk"; 796 arch = "linux-i686"; 797 + sha256 = "522590d926022cbe833ce0050e5d23db47bab2c8de1e1e0ae3e96941b53dfb6c"; 798 } 799 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/mr/firefox-100.0b6.tar.bz2"; 800 locale = "mr"; 801 arch = "linux-i686"; 802 + sha256 = "4df57dacc8b71070aa077281beffc04bfc632666b2b26caedc1fda4e484e59d9"; 803 } 804 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ms/firefox-100.0b6.tar.bz2"; 805 locale = "ms"; 806 arch = "linux-i686"; 807 + sha256 = "005506663901ad539817197972864f67812a9f5e3f1055e7418ab4bb052ecdad"; 808 } 809 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/my/firefox-100.0b6.tar.bz2"; 810 locale = "my"; 811 arch = "linux-i686"; 812 + sha256 = "aeb8445d5425640ceb8d2b823a7dd3e79fbd355f07420d015af4559d2bf2cebe"; 813 } 814 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/nb-NO/firefox-100.0b6.tar.bz2"; 815 locale = "nb-NO"; 816 arch = "linux-i686"; 817 + sha256 = "d41588beac0fc9a3eeab9f2843b8aef53e61a7c15dcdc34eb89e73838d9dab24"; 818 } 819 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ne-NP/firefox-100.0b6.tar.bz2"; 820 locale = "ne-NP"; 821 arch = "linux-i686"; 822 + sha256 = "c3c981a5a701118e70b6b03338451d7d50325234be03838e403e57b822b6fb61"; 823 } 824 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/nl/firefox-100.0b6.tar.bz2"; 825 locale = "nl"; 826 arch = "linux-i686"; 827 + sha256 = "ee902a63548299b6ceb9cfa263991233c32b0bf8534dc5256ce84714eab01f12"; 828 } 829 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/nn-NO/firefox-100.0b6.tar.bz2"; 830 locale = "nn-NO"; 831 arch = "linux-i686"; 832 + sha256 = "e3fcf444660a2e8b3abe10d9d3a512985e9791fb7916ffafac564d9849816241"; 833 } 834 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/oc/firefox-100.0b6.tar.bz2"; 835 locale = "oc"; 836 arch = "linux-i686"; 837 + sha256 = "0b80101b082209ead23287d0d7efa136eea099b9895b9a4a8906abafb8a7dbcd"; 838 } 839 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/pa-IN/firefox-100.0b6.tar.bz2"; 840 locale = "pa-IN"; 841 arch = "linux-i686"; 842 + sha256 = "14f8fe19c6cea1d38eba2f4aff8a8787875632e7ef867b44a48bcda59ad0c32f"; 843 } 844 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/pl/firefox-100.0b6.tar.bz2"; 845 locale = "pl"; 846 arch = "linux-i686"; 847 + sha256 = "796b575f4ada12cd1aa0fdeae8b5c198eb2e6a327bd0cede066b1beff4961d96"; 848 } 849 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/pt-BR/firefox-100.0b6.tar.bz2"; 850 locale = "pt-BR"; 851 arch = "linux-i686"; 852 + sha256 = "a1a83e3e317bc7465922b40327031fd48610627c0e1554569710a7b40fedd98c"; 853 } 854 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/pt-PT/firefox-100.0b6.tar.bz2"; 855 locale = "pt-PT"; 856 arch = "linux-i686"; 857 + sha256 = "0ff375602235a96b6197366ae22f4c05cbb3c9068d48cdb08a035e3af084d3f3"; 858 } 859 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/rm/firefox-100.0b6.tar.bz2"; 860 locale = "rm"; 861 arch = "linux-i686"; 862 + sha256 = "5599c540c50162d1a79ea16196bb15fda9fed825508b60b4961d91255709593d"; 863 } 864 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ro/firefox-100.0b6.tar.bz2"; 865 locale = "ro"; 866 arch = "linux-i686"; 867 + sha256 = "771be3da68642a15baa1e054bf23e9df272d0b0ab46f1e42c6fdf35e85035b9f"; 868 } 869 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ru/firefox-100.0b6.tar.bz2"; 870 locale = "ru"; 871 arch = "linux-i686"; 872 + sha256 = "bcca4b9aace48ed4da4c881ed47b0bbc3d20fddd07273ecf1c84758633f350b4"; 873 } 874 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sco/firefox-100.0b6.tar.bz2"; 875 locale = "sco"; 876 arch = "linux-i686"; 877 + sha256 = "1ca439331c6437dee10d1f2cd72907499894bd98af036dbedc964248217ff510"; 878 } 879 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/si/firefox-100.0b6.tar.bz2"; 880 locale = "si"; 881 arch = "linux-i686"; 882 + sha256 = "b643cfd20a0bc56b1989dc1c4dc96535d6585a53bb5d13c85ca53bb1027e1732"; 883 } 884 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sk/firefox-100.0b6.tar.bz2"; 885 locale = "sk"; 886 arch = "linux-i686"; 887 + sha256 = "5aa1dc132c3d2a42b6086cf824c8b6ae7a30d8b55341a05acfc3eaaa8dd4cad0"; 888 } 889 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sl/firefox-100.0b6.tar.bz2"; 890 locale = "sl"; 891 arch = "linux-i686"; 892 + sha256 = "92b2a15a04c4cee559e0a6565509a546ac7a2c4e3fadbba0c6197356e99f71f9"; 893 } 894 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/son/firefox-100.0b6.tar.bz2"; 895 locale = "son"; 896 arch = "linux-i686"; 897 + sha256 = "8a25e8af341178bbbcc0731788b1116ab64fbb55480836b94ad6e7830b6b5f16"; 898 } 899 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sq/firefox-100.0b6.tar.bz2"; 900 locale = "sq"; 901 arch = "linux-i686"; 902 + sha256 = "66b7ea3b488b980c425576fdad6009d2c246bdb4686b24b519604a54dba6f756"; 903 } 904 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sr/firefox-100.0b6.tar.bz2"; 905 locale = "sr"; 906 arch = "linux-i686"; 907 + sha256 = "1aecc3a24dab4a843a967b8c023bbe01488dc113e451cfd7d39e7c2caac1c153"; 908 } 909 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sv-SE/firefox-100.0b6.tar.bz2"; 910 locale = "sv-SE"; 911 arch = "linux-i686"; 912 + sha256 = "d5189ed627ac49286cec9733c8658c271ee99930f2d07754993e776a58eacfa0"; 913 } 914 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/szl/firefox-100.0b6.tar.bz2"; 915 locale = "szl"; 916 arch = "linux-i686"; 917 + sha256 = "45c48d7381499d5aeca0fe340ecc8af33016821fa8f081f6c52c878a9af3640f"; 918 } 919 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ta/firefox-100.0b6.tar.bz2"; 920 locale = "ta"; 921 arch = "linux-i686"; 922 + sha256 = "1a8a9fe5eb0e9e8d213d667cc1aa478f9f381d5a444f8d2be518fb04926e4f64"; 923 } 924 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/te/firefox-100.0b6.tar.bz2"; 925 locale = "te"; 926 arch = "linux-i686"; 927 + sha256 = "1f3aa559af38662aea444f52974c2843ffede5505e71e83d73e331d2c4b92275"; 928 } 929 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/th/firefox-100.0b6.tar.bz2"; 930 locale = "th"; 931 arch = "linux-i686"; 932 + sha256 = "05bbf88a5b9e914d86244555d06d560b328e8e873e380e67d40edb6d3971d383"; 933 } 934 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/tl/firefox-100.0b6.tar.bz2"; 935 locale = "tl"; 936 arch = "linux-i686"; 937 + sha256 = "8cd7f71325ce2a54403032bc80fe366acfd7a8ce3e3871ae1a8f4e0b5315ddf9"; 938 } 939 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/tr/firefox-100.0b6.tar.bz2"; 940 locale = "tr"; 941 arch = "linux-i686"; 942 + sha256 = "41275c3dcfc9624390a2d3ce9d0aa0e746c4e3122f433924227299d46ff8ab42"; 943 } 944 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/trs/firefox-100.0b6.tar.bz2"; 945 locale = "trs"; 946 arch = "linux-i686"; 947 + sha256 = "c04aafe011c8626d749990e0ba293a22c8a623c6eab9bc4bff2782708832a648"; 948 } 949 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/uk/firefox-100.0b6.tar.bz2"; 950 locale = "uk"; 951 arch = "linux-i686"; 952 + sha256 = "965f445606d8c81d1745a7028ffd15af7cb9bf2473bfba5e673e3621afeaa6e2"; 953 } 954 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ur/firefox-100.0b6.tar.bz2"; 955 locale = "ur"; 956 arch = "linux-i686"; 957 + sha256 = "8955e64902aca993d110401fe36b56c84b53a414b2da569525653ee28801d9ca"; 958 } 959 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/uz/firefox-100.0b6.tar.bz2"; 960 locale = "uz"; 961 arch = "linux-i686"; 962 + sha256 = "e05ef7856c3c4777da187ed7212ebab01900881702d1fa8e221a86c57c6ef4f9"; 963 } 964 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/vi/firefox-100.0b6.tar.bz2"; 965 locale = "vi"; 966 arch = "linux-i686"; 967 + sha256 = "baca088760ee065eb8ad86d93c6b0325d23f88d18359693ba9c2a3971e9e5061"; 968 } 969 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/xh/firefox-100.0b6.tar.bz2"; 970 locale = "xh"; 971 arch = "linux-i686"; 972 + sha256 = "c679216fca120982454a15087890fda40d21bb269a940d96dbe37428672db65f"; 973 } 974 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/zh-CN/firefox-100.0b6.tar.bz2"; 975 locale = "zh-CN"; 976 arch = "linux-i686"; 977 + sha256 = "ba77a6dc02a406174a79a99b510c2cf7f8be6f877acc57822ee174cc5a99931d"; 978 } 979 + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/zh-TW/firefox-100.0b6.tar.bz2"; 980 locale = "zh-TW"; 981 arch = "linux-i686"; 982 + sha256 = "108fbd9c48b974cfd533c514d8459990b5d278ac5381ba5cfb8fad8d885dcfac"; 983 } 984 ]; 985 }
+5 -5
pkgs/applications/networking/browsers/firefox/librewolf/src.json
··· 1 { 2 - "packageVersion": "99.0-1", 3 "source": { 4 - "rev": "99.0-1", 5 - "sha256": "0x9c19h4l1djhdq48ylnqjrrfkk2zalfpgj57cba5jqxl2fhglx3" 6 }, 7 "firefox": { 8 - "version": "99.0", 9 - "sha512": "08f6d5a668140c4275aba6df463ed3af596043dfe5f27573583afbc1e9f6b27ebca79a52ce2c9598261c631b400b5378744e9e70f51ef9c4098b419e9904aa7c" 10 } 11 }
··· 1 { 2 + "packageVersion": "99.0.1-3", 3 "source": { 4 + "rev": "99.0.1-3", 5 + "sha256": "0ag4n86hvyp6kx3hp60yn7q45rgjbx7054frj6226ni2ribjx4ln" 6 }, 7 "firefox": { 8 + "version": "99.0.1", 9 + "sha512": "0006b773ef1057a6e0b959d4f39849ad4a79272b38d565da98062b9aaf0effd2b729349c1f9fa10fccf7d2462d2c536b02c167ae6ad4556d6e519c6d22c25a7f" 10 } 11 }
+1 -1
pkgs/applications/networking/instant-messengers/element/element-desktop-package.json
··· 2 "name": "element-desktop", 3 "productName": "Element", 4 "main": "lib/electron-main.js", 5 - "version": "1.10.9", 6 "description": "A feature-rich client for Matrix.org", 7 "author": "Element", 8 "repository": {
··· 2 "name": "element-desktop", 3 "productName": "Element", 4 "main": "lib/electron-main.js", 5 + "version": "1.10.10", 6 "description": "A feature-rich client for Matrix.org", 7 "author": "Element", 8 "repository": {
+3 -3
pkgs/applications/networking/instant-messengers/element/pin.json
··· 1 { 2 - "version": "1.10.9", 3 - "desktopSrcHash": "vbVnkb/sVW+c7JGIT8Fcjtwe7i10aY0mBoiNeAD8tvY=", 4 "desktopYarnHash": "0jm0i1yyfkg1ll11pb3qif1vdxx6rp0yl9kd8jg9nhsg2jzw66pr", 5 - "webHash": "0yp29h2cmi18y8g8scqx3zmc1l80q28gid709ysqqb349gy1kls8" 6 }
··· 1 { 2 + "version": "1.10.10", 3 + "desktopSrcHash": "Atgcu+K28pScYokS/lTu+/mMeEC+1yTcn3Akq+KZJNY=", 4 "desktopYarnHash": "0jm0i1yyfkg1ll11pb3qif1vdxx6rp0yl9kd8jg9nhsg2jzw66pr", 5 + "webHash": "1xp0rhw3k2znwvqqikhd771l2n6xyx8npcz87m9d4cisl82lpnr0" 6 }
+2 -2
pkgs/applications/networking/mailreaders/neomutt/default.nix
··· 4 }: 5 6 stdenv.mkDerivation rec { 7 - version = "20220408"; 8 pname = "neomutt"; 9 10 src = fetchFromGitHub { 11 owner = "neomutt"; 12 repo = "neomutt"; 13 rev = version; 14 - sha256 = "1aziffkjxbflw1narih0dr8ghl142knsb5z14fjb7n5ya9xpgp05"; 15 }; 16 17 buildInputs = [
··· 4 }: 5 6 stdenv.mkDerivation rec { 7 + version = "20220415"; 8 pname = "neomutt"; 9 10 src = fetchFromGitHub { 11 owner = "neomutt"; 12 repo = "neomutt"; 13 rev = version; 14 + sha256 = "sha256-iVKDgVN7YFPEMP+OISS7jRG9Whs2QG60yH1r2kw3MUQ="; 15 }; 16 17 buildInputs = [
+2 -2
pkgs/desktops/plasma-5/3rdparty/addons/bismuth/default.nix
··· 12 13 mkDerivation rec { 14 pname = "bismuth"; 15 - version = "3.1.0"; 16 17 src = fetchFromGitHub { 18 owner = "Bismuth-Forge"; 19 repo = pname; 20 rev = "v${version}"; 21 - sha256 = "sha256-kvWrhDbC7nqz810dE42xbd430OSkTN42Hkl6fXR90as="; 22 }; 23 24 cmakeFlags = [
··· 12 13 mkDerivation rec { 14 pname = "bismuth"; 15 + version = "3.1.1"; 16 17 src = fetchFromGitHub { 18 owner = "Bismuth-Forge"; 19 repo = pname; 20 rev = "v${version}"; 21 + sha256 = "sha256-SGeqTmU603gKlzCUJ6AMaG7++9JvMw5EpSATwJEqNq8="; 22 }; 23 24 cmakeFlags = [
+1
pkgs/development/node-packages/node-packages.json
··· 55 , "coc-emmet" 56 , "coc-eslint" 57 , "coc-explorer" 58 , "coc-git" 59 , "coc-go" 60 , "coc-highlight"
··· 55 , "coc-emmet" 56 , "coc-eslint" 57 , "coc-explorer" 58 + , "coc-flutter" 59 , "coc-git" 60 , "coc-go" 61 , "coc-highlight"
+1212 -947
pkgs/development/node-packages/node-packages.nix
··· 31 sha512 = "t4WmWoGV9gyzypwG3y3JlcK2t8fKLtvzBA7xEoFTj9SMPvOuLsf13uh4ikK0RRaaa9RPPWLgFUdOyIRaQvCpwQ=="; 32 }; 33 }; 34 - "@alexbosworth/caporal-1.4.1" = { 35 name = "_at_alexbosworth_slash_caporal"; 36 packageName = "@alexbosworth/caporal"; 37 - version = "1.4.1"; 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@alexbosworth/caporal/-/caporal-1.4.1.tgz"; 40 - sha512 = "oNEyHFcHc66gzmUXDUqzoqEpjcQnsp4REzXMkQNGxMF7MZDxiec3m9IVvzFmXtl0jU48bX/+ay5aZ8G3EVQV3g=="; 41 }; 42 }; 43 "@alexbosworth/cli-table3-0.6.1" = { ··· 112 sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="; 113 }; 114 }; 115 - "@angular-devkit/architect-0.1303.2" = { 116 name = "_at_angular-devkit_slash_architect"; 117 packageName = "@angular-devkit/architect"; 118 - version = "0.1303.2"; 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.2.tgz"; 121 - sha512 = "aywsRuucfZ4Tu68wtYI8ItWVbsbc9wc0xm4DB+ROtkAcmuuk4aiLgSqW2Eux6QxmGnq9U/yjFMLASOhFB8qDlw=="; 122 }; 123 }; 124 "@angular-devkit/core-13.3.2" = { ··· 130 sha512 = "wav5plcnlxQAfZ+0EUt3dvVTJnJ1au2TlKVQ0jSQJdR1LA6N7QUI49N2Ua6ZnDMwruQaQkoynitMW2l1it3qYQ=="; 131 }; 132 }; 133 "@angular-devkit/schematics-13.3.2" = { 134 name = "_at_angular-devkit_slash_schematics"; 135 packageName = "@angular-devkit/schematics"; ··· 137 src = fetchurl { 138 url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.2.tgz"; 139 sha512 = "XCLb23jmqHN0gJg9ZlICaFgfpfnCufIQp5SOsRKMKRkhjKycvDmKnfBTKDlkzb1IaUl6wQwP5k7Z69b9EX+CQw=="; 140 }; 141 }; 142 "@angular-devkit/schematics-cli-13.3.2" = { ··· 463 sha512 = "+D3xnPD5985iphgAqgUerBDs371a2WzzoEVi7eHJUMMsP/gEnSTdSH0HNxsqhYv6CW4EdKtvDAQdAwA1VtCf2A=="; 464 }; 465 }; 466 - "@aws-sdk/client-s3-3.67.0" = { 467 name = "_at_aws-sdk_slash_client-s3"; 468 packageName = "@aws-sdk/client-s3"; 469 - version = "3.67.0"; 470 src = fetchurl { 471 - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.67.0.tgz"; 472 - sha512 = "+wSWhkxXG8mY5rlsTXdDaYULpzq8AZ3B2TZKVGEXb6zs1txedyWSYeZr6ENpBoxtJepmlwXDC7oRm39eVoRixw=="; 473 }; 474 }; 475 - "@aws-sdk/client-sso-3.67.0" = { 476 name = "_at_aws-sdk_slash_client-sso"; 477 packageName = "@aws-sdk/client-sso"; 478 - version = "3.67.0"; 479 src = fetchurl { 480 - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.67.0.tgz"; 481 - sha512 = "njBLSqX2+4eTjeptODxdYgBC8cYwwNE3VwrIFgf+nosIo8Ll07evZgHhfZsyURou0cUUpxFInDf1KaAotH9lBQ=="; 482 }; 483 }; 484 - "@aws-sdk/client-sts-3.67.0" = { 485 name = "_at_aws-sdk_slash_client-sts"; 486 packageName = "@aws-sdk/client-sts"; 487 - version = "3.67.0"; 488 src = fetchurl { 489 - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.67.0.tgz"; 490 - sha512 = "gTWQU/4tPQLMJpLXgSbUss5s5dsyxpXJW2gWosvLLtX5QlchGBzWEawoA3QIxFRkNJrXqLyaVDBdFFqB+l0mVQ=="; 491 }; 492 }; 493 "@aws-sdk/config-resolver-3.58.0" = { ··· 517 sha512 = "CdtnTQ9zqLx1FbXdbgjijLbMcIWOyQM03TFaLSCjI3FNbUwyt3T7StBU9tj/LtbypHhSdXyQBpzUtXTOMWCEhg=="; 518 }; 519 }; 520 - "@aws-sdk/credential-provider-ini-3.67.0" = { 521 name = "_at_aws-sdk_slash_credential-provider-ini"; 522 packageName = "@aws-sdk/credential-provider-ini"; 523 - version = "3.67.0"; 524 src = fetchurl { 525 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.67.0.tgz"; 526 - sha512 = "47uNhLsd2eKWOa+alsyoT48TbtIfYtIJmC85APunHczqfpUC1YHOyHZ3pCzByGrgx4khjnJ323gfq9kreEHCvA=="; 527 }; 528 }; 529 - "@aws-sdk/credential-provider-node-3.67.0" = { 530 name = "_at_aws-sdk_slash_credential-provider-node"; 531 packageName = "@aws-sdk/credential-provider-node"; 532 - version = "3.67.0"; 533 src = fetchurl { 534 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.67.0.tgz"; 535 - sha512 = "nxBUJ4rANue9MWQyhrmkZwuKVVpwbUXEqyMwJD1uxEZnYXksmAoVxKW/m4vxy1nh/65wAFCCipeLmqYzwJ8m0A=="; 536 }; 537 }; 538 "@aws-sdk/credential-provider-process-3.58.0" = { ··· 544 sha512 = "npgFqPUjMhUamf1FvJjBYUdpbWx8XWkKCwJsX73I7IYQAvAi2atCOkdtKq+4rds0VWAYu6vzlaI1tXgFxjOPNQ=="; 545 }; 546 }; 547 - "@aws-sdk/credential-provider-sso-3.67.0" = { 548 name = "_at_aws-sdk_slash_credential-provider-sso"; 549 packageName = "@aws-sdk/credential-provider-sso"; 550 - version = "3.67.0"; 551 src = fetchurl { 552 - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.67.0.tgz"; 553 - sha512 = "AwS7tvA++2li0+yZkiCL1zk56EC3N6fDXWDqPEG/lKuviwyv1B+up6r/6ks7ADWbXuOKzrmslS7rn3DT2ZUkig=="; 554 }; 555 }; 556 "@aws-sdk/credential-provider-web-identity-3.55.0" = { ··· 571 sha512 = "vTdVFLIHGZTx/Anp9GpkTXVuvwSCNOecTutU5Py4i6fATgefWiSutc5Xc/FLujBSc0EhAXDGZIcTMpZC7jUpeg=="; 572 }; 573 }; 574 - "@aws-sdk/eventstream-serde-browser-3.58.0" = { 575 name = "_at_aws-sdk_slash_eventstream-serde-browser"; 576 packageName = "@aws-sdk/eventstream-serde-browser"; 577 - version = "3.58.0"; 578 src = fetchurl { 579 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.58.0.tgz"; 580 - sha512 = "oR5yoOoJrTSUKwbxZSt37bZgMXUUSsOub96E6SOb8wh8TMq2f0wvqeO8A+aaxY487gKpzuVUClp7jSQ9LgiVcw=="; 581 }; 582 }; 583 "@aws-sdk/eventstream-serde-config-resolver-3.55.0" = { ··· 589 sha512 = "NTJHLq1sbXyXAaJucKvcdN3Svr/fM2TjHEC3l8P/torFjIsX1+Ykpi8tZt8KsX8RjoUTTfKylh41AjJq0K9X4Q=="; 590 }; 591 }; 592 - "@aws-sdk/eventstream-serde-node-3.58.0" = { 593 name = "_at_aws-sdk_slash_eventstream-serde-node"; 594 packageName = "@aws-sdk/eventstream-serde-node"; 595 - version = "3.58.0"; 596 src = fetchurl { 597 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.58.0.tgz"; 598 - sha512 = "U1DnRVfvKOXty+Bei6oqhRWFzGWzxl0OFHtev9GzC7BE/E6s4Gn695o+NO+9IwQgjOlc/JsGyAcWevq3MDxymg=="; 599 }; 600 }; 601 - "@aws-sdk/eventstream-serde-universal-3.58.0" = { 602 name = "_at_aws-sdk_slash_eventstream-serde-universal"; 603 packageName = "@aws-sdk/eventstream-serde-universal"; 604 - version = "3.58.0"; 605 src = fetchurl { 606 - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.58.0.tgz"; 607 - sha512 = "w7czmMNvCCspJi8Ij0lTByCiuYBhyNzYTM1wv33vtF7dL+FJgi4W4c5WFAOtvpsPulobY013TWCjPJG+V0IPGQ=="; 608 }; 609 }; 610 "@aws-sdk/fetch-http-handler-3.58.0" = { ··· 697 sha512 = "nx6X6qLPwvbJrGoPxXSu4tsOek2eRnnjk78hhRUDfxFewpHJQLSPlyNKkXAo+C3syVALe6RJRmUYu5bShY6FfA=="; 698 }; 699 }; 700 - "@aws-sdk/middleware-flexible-checksums-3.58.0" = { 701 name = "_at_aws-sdk_slash_middleware-flexible-checksums"; 702 packageName = "@aws-sdk/middleware-flexible-checksums"; 703 - version = "3.58.0"; 704 src = fetchurl { 705 - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.58.0.tgz"; 706 - sha512 = "R8S3U1boaIb7+kYhLJBks7rv/eaGj7I5T/2CgmcGY1BJBUU0h0arjPC7eeA/5wV29EHapoxVYQvJda//706rCw=="; 707 }; 708 }; 709 "@aws-sdk/middleware-header-default-3.58.0" = { ··· 868 sha512 = "e+2FLgo+eDx7oh7ap5HngN9XSVMxredAVztLHxCcSN0lFHHHzMa8b2SpXbaowUxQHh7ziymSqvOrPYFQ71Filg=="; 869 }; 870 }; 871 - "@aws-sdk/s3-request-presigner-3.67.0" = { 872 name = "_at_aws-sdk_slash_s3-request-presigner"; 873 packageName = "@aws-sdk/s3-request-presigner"; 874 - version = "3.67.0"; 875 src = fetchurl { 876 - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.67.0.tgz"; 877 - sha512 = "GOkB+k5EVSRJg6v3th8Ynhrh89hIW4uP0CjrKChvrDpBOyU2cFN0yLYtIVKaY6FZh7wanMGLhDzCsHPnpBKmfQ=="; 878 }; 879 }; 880 "@aws-sdk/service-error-classification-3.55.0" = { ··· 913 sha512 = "Akvc8G9Del2+umg0R/5Gc/PWgQwbxxTXdnm6YTHtDzvyPPiYWBs6au6WqJQqcqk07gcQV67MLVqFFhnFuLlcVg=="; 914 }; 915 }; 916 - "@aws-sdk/smithy-client-3.55.0" = { 917 name = "_at_aws-sdk_slash_smithy-client"; 918 packageName = "@aws-sdk/smithy-client"; 919 - version = "3.55.0"; 920 src = fetchurl { 921 - url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.55.0.tgz"; 922 - sha512 = "YgBpqg6R3Qg8CH9biOP1N1lYTvh8VLGD6AoDGgy/R1dQSqRQuxgKANLl3DOVcZnIZLsw4TdB0m7U+ZPtirPR1Q=="; 923 }; 924 }; 925 "@aws-sdk/types-3.55.0" = { ··· 1003 sha512 = "30dzofQQfx6tp1jVZkZ0DGRsT0wwC15nEysKRiAcjncM64A0Cm6sra77d0os3vbKiKoPCI/lMsFr4o3533+qvQ=="; 1004 }; 1005 }; 1006 - "@aws-sdk/util-create-request-3.58.0" = { 1007 name = "_at_aws-sdk_slash_util-create-request"; 1008 packageName = "@aws-sdk/util-create-request"; 1009 - version = "3.58.0"; 1010 src = fetchurl { 1011 - url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.58.0.tgz"; 1012 - sha512 = "EP6HLQHc8RxjSJ95Ca9Ppp5F0aS6QNSQg03hbjcpmKK42h8dtuXFp5qGAu35VxUg6IRztN2x7lpa+b3d/SdDoQ=="; 1013 }; 1014 }; 1015 - "@aws-sdk/util-defaults-mode-browser-3.55.0" = { 1016 name = "_at_aws-sdk_slash_util-defaults-mode-browser"; 1017 packageName = "@aws-sdk/util-defaults-mode-browser"; 1018 - version = "3.55.0"; 1019 src = fetchurl { 1020 - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.55.0.tgz"; 1021 - sha512 = "OS3gAwR84bHz7ObhjsSJM+grfeaBq3leGrj7xiX4BH3C8J+c10GMo3fqx1pV8Fq5F+9lMmhHpfOocD63SN5Q8A=="; 1022 }; 1023 }; 1024 - "@aws-sdk/util-defaults-mode-node-3.58.0" = { 1025 name = "_at_aws-sdk_slash_util-defaults-mode-node"; 1026 packageName = "@aws-sdk/util-defaults-mode-node"; 1027 - version = "3.58.0"; 1028 src = fetchurl { 1029 - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.58.0.tgz"; 1030 - sha512 = "KNUCp0MXI+z3Z3pQCKDkx3Stdy1TXDjcUB+ZJFxRTJGIuBYwX4fV6G8s/zeFJi5Qv1ztR3CJ9fWJGsrx9mQ5EA=="; 1031 }; 1032 }; 1033 "@aws-sdk/util-format-url-3.58.0" = { ··· 2335 sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; 2336 }; 2337 }; 2338 - "@blueprintjs/colors-4.0.5" = { 2339 name = "_at_blueprintjs_slash_colors"; 2340 packageName = "@blueprintjs/colors"; 2341 - version = "4.0.5"; 2342 src = fetchurl { 2343 - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.5.tgz"; 2344 - sha512 = "5ewWnDdUzyP7hnfidIPyAykGmjHAY2xjcUPM3J2hmnAQ4FORWPv7Mr3PJ9D0D7GfZV/ACx3URRclE1MXfvVlGA=="; 2345 }; 2346 }; 2347 "@blueprintjs/core-3.54.0" = { ··· 3406 sha512 = "QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA=="; 3407 }; 3408 }; 3409 "@eslint/eslintrc-0.4.3" = { 3410 name = "_at_eslint_slash_eslintrc"; 3411 packageName = "@eslint/eslintrc"; ··· 3667 sha512 = "M4SmXu428wwQLu1iw6ST07iACjdKY5HiU+xpcgD3IQMMQazgN616GDzc6KZ1ebuBsF7B4TyQS7KZh9mfxnnldg=="; 3668 }; 3669 }; 3670 - "@fluentui/font-icons-mdl2-8.3.0" = { 3671 name = "_at_fluentui_slash_font-icons-mdl2"; 3672 packageName = "@fluentui/font-icons-mdl2"; 3673 - version = "8.3.0"; 3674 src = fetchurl { 3675 - url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.3.0.tgz"; 3676 - sha512 = "o67iMsFFqBCSL/l9D+wAguHCPOFd9xde9SztL7zwlf/c3o3+7oPRfzI/Zs1BqMxwd3WDsoKidhS2X6U8sZAuyg=="; 3677 }; 3678 }; 3679 - "@fluentui/foundation-legacy-8.2.5" = { 3680 name = "_at_fluentui_slash_foundation-legacy"; 3681 packageName = "@fluentui/foundation-legacy"; 3682 - version = "8.2.5"; 3683 src = fetchurl { 3684 - url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.5.tgz"; 3685 - sha512 = "PP8Wbw1QK9lmzReh+C7XG7A7Q3WTXAaxAMHjcBE3m2OPnhlF77Ok6IAJBkuKTWg0SZYQqJilTDSkVDnXVylGgQ=="; 3686 }; 3687 }; 3688 "@fluentui/keyboard-key-0.4.0" = { ··· 3694 sha512 = "2jcD23FzOPaSXqWtfOSCzopkKtxTXUFuHZyVt4aqVRDEjPbkQ/7p37O1WL95xweWTR/9fEPO/gPtv9kOnXrJcA=="; 3695 }; 3696 }; 3697 - "@fluentui/merge-styles-8.5.0" = { 3698 name = "_at_fluentui_slash_merge-styles"; 3699 packageName = "@fluentui/merge-styles"; 3700 - version = "8.5.0"; 3701 src = fetchurl { 3702 - url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.0.tgz"; 3703 - sha512 = "+WoaAaoYx/wfkrz1Ag40JqHvDUFfQcg+dQ3jaEOoau16y7EZGIe7oN8WYIXNMgWuMxH7r1QlanFbQZ+ziKjHmw=="; 3704 }; 3705 }; 3706 - "@fluentui/react-8.64.3" = { 3707 name = "_at_fluentui_slash_react"; 3708 packageName = "@fluentui/react"; 3709 - version = "8.64.3"; 3710 src = fetchurl { 3711 - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.64.3.tgz"; 3712 - sha512 = "zFZIydeLY5rovBXxVNvaRuDM1+TkBJ1h7s7bCGgZHuWbya0vmiWUJOEKsGL2hNJw9nppCrgau7EZU2b5d4xePQ=="; 3713 }; 3714 }; 3715 - "@fluentui/react-focus-8.5.6" = { 3716 name = "_at_fluentui_slash_react-focus"; 3717 packageName = "@fluentui/react-focus"; 3718 - version = "8.5.6"; 3719 src = fetchurl { 3720 - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.5.6.tgz"; 3721 - sha512 = "K4INgXiwlinLz0Msa5TQbhL3YoN1mtqXO3p7XChDKeIf0QepAUDTnmJCrtKXqzY5VuXauLXyqm2darcHFrotVw=="; 3722 }; 3723 }; 3724 - "@fluentui/react-hooks-8.5.3" = { 3725 name = "_at_fluentui_slash_react-hooks"; 3726 packageName = "@fluentui/react-hooks"; 3727 - version = "8.5.3"; 3728 src = fetchurl { 3729 - url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.5.3.tgz"; 3730 - sha512 = "zWiiEp/vYmKIXhw/bIVH9BnPKLT3zgWt9ryi3Tp1VVgxLEDloomM7RgDn0e2P8HZvynYRRT8GKq3XJ8H3AzAUg=="; 3731 }; 3732 }; 3733 "@fluentui/react-window-provider-2.2.0" = { ··· 3748 sha512 = "bqjpfhqaIkBy16vdYzdc7tER9Td7BTcmC+kCXuqkHOQVuG9LJfqVGRV0DA857KLhOxiy0GXwKMeDbNV5jJf6qQ=="; 3749 }; 3750 }; 3751 - "@fluentui/style-utilities-8.6.5" = { 3752 name = "_at_fluentui_slash_style-utilities"; 3753 packageName = "@fluentui/style-utilities"; 3754 - version = "8.6.5"; 3755 src = fetchurl { 3756 - url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.6.5.tgz"; 3757 - sha512 = "X0ZIreRdUlnJnRQmKtngWEbrqFuecBlEv9fkKoHJeu+27AD+AU9RPYgK4fd/QCJRFoTU9WzQJj9tWylTBK+kFA=="; 3758 }; 3759 }; 3760 - "@fluentui/theme-2.6.4" = { 3761 name = "_at_fluentui_slash_theme"; 3762 packageName = "@fluentui/theme"; 3763 - version = "2.6.4"; 3764 src = fetchurl { 3765 - url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.4.tgz"; 3766 - sha512 = "MXCY2Z5zc1nK5PCN6tqhI1nplX/LF+8lF8YsrSGvu6VDnHilxi4Rifv2dRc+jybNI13tZ50uteok2Je7jABcMA=="; 3767 }; 3768 }; 3769 - "@fluentui/utilities-8.8.1" = { 3770 name = "_at_fluentui_slash_utilities"; 3771 packageName = "@fluentui/utilities"; 3772 - version = "8.8.1"; 3773 src = fetchurl { 3774 - url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.8.1.tgz"; 3775 - sha512 = "JtICpdTINvifiyjp/LxxuDiU8BMkU73mzAP/3mz5KIhqPn3QjKG9ZeaBLPpoUXNOP/I6i9AYbAQHDvQI/ZK5tg=="; 3776 }; 3777 }; 3778 "@gar/promisify-1.1.3" = { ··· 3892 sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg=="; 3893 }; 3894 }; 3895 - "@graphql-tools/batch-execute-8.4.4" = { 3896 name = "_at_graphql-tools_slash_batch-execute"; 3897 packageName = "@graphql-tools/batch-execute"; 3898 - version = "8.4.4"; 3899 src = fetchurl { 3900 - url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.4.tgz"; 3901 - sha512 = "5B3srfrNh7qqaH4FWysiZXPDVD7snwM+qsW3Bkq8M0iRAZVUb3P9o23xJbBwS32g678TuCjKy113K0PSqHyeCw=="; 3902 }; 3903 }; 3904 "@graphql-tools/delegate-7.1.5" = { ··· 3910 sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; 3911 }; 3912 }; 3913 - "@graphql-tools/delegate-8.7.4" = { 3914 name = "_at_graphql-tools_slash_delegate"; 3915 packageName = "@graphql-tools/delegate"; 3916 - version = "8.7.4"; 3917 src = fetchurl { 3918 - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.4.tgz"; 3919 - sha512 = "OXdIHRqqUDFvBebSZ/MQAvQOJ1Kvl7gjD78ClG4bPts6qDfFHwzlX0V8QESFCo8H67VDRzB4nnqlDyOIzjVNlQ=="; 3920 }; 3921 }; 3922 "@graphql-tools/graphql-file-loader-6.2.7" = { ··· 3928 sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; 3929 }; 3930 }; 3931 - "@graphql-tools/graphql-file-loader-7.3.9" = { 3932 name = "_at_graphql-tools_slash_graphql-file-loader"; 3933 packageName = "@graphql-tools/graphql-file-loader"; 3934 - version = "7.3.9"; 3935 src = fetchurl { 3936 - url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.9.tgz"; 3937 - sha512 = "jCc4X6+PFVQlhpd+bvHxfldteYrzWvoYDNy+dzPgw3O/NYtjJ/B1wH6X2L4wXI+CDlKEdUKSEe+Dk6j9gmaItw=="; 3938 }; 3939 }; 3940 - "@graphql-tools/import-6.6.11" = { 3941 name = "_at_graphql-tools_slash_import"; 3942 packageName = "@graphql-tools/import"; 3943 - version = "6.6.11"; 3944 src = fetchurl { 3945 - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.11.tgz"; 3946 - sha512 = "lKIRTsDxqdzrJtEOnqW4pr73/QRbGhyc37xewz4EvCYoUk6FEwqilEZIrkChmdQFjOV9BnwxFCp8KaS0P+qU4A=="; 3947 }; 3948 }; 3949 "@graphql-tools/json-file-loader-6.2.6" = { ··· 3955 sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA=="; 3956 }; 3957 }; 3958 - "@graphql-tools/json-file-loader-7.3.9" = { 3959 name = "_at_graphql-tools_slash_json-file-loader"; 3960 packageName = "@graphql-tools/json-file-loader"; 3961 - version = "7.3.9"; 3962 src = fetchurl { 3963 - url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.3.9.tgz"; 3964 - sha512 = "yLX5ADmT4m8hZvgsh9zjvcfS0ijrh3C/TNroRt81thN2nFMYmglRbxmOZgHXnT5DnL8v/BiqmlVpiq4cWEeJcw=="; 3965 }; 3966 }; 3967 "@graphql-tools/load-6.2.4" = { ··· 3973 sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; 3974 }; 3975 }; 3976 - "@graphql-tools/load-7.5.8" = { 3977 name = "_at_graphql-tools_slash_load"; 3978 packageName = "@graphql-tools/load"; 3979 - version = "7.5.8"; 3980 src = fetchurl { 3981 - url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.8.tgz"; 3982 - sha512 = "+kQ7aT9GEuBmiGQlGsFU5f2e1A0hMbwCePzHYOvHR5BF8soJeToWZLiIC2hJf6z06aco+LC9x/os+6p9U9+7iQ=="; 3983 }; 3984 }; 3985 "@graphql-tools/merge-6.2.17" = { ··· 3991 sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow=="; 3992 }; 3993 }; 3994 - "@graphql-tools/merge-8.2.8" = { 3995 name = "_at_graphql-tools_slash_merge"; 3996 packageName = "@graphql-tools/merge"; 3997 - version = "8.2.8"; 3998 src = fetchurl { 3999 - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.8.tgz"; 4000 - sha512 = "e4kpzgEIlA0sC0NjJlMwUL73Iz/HoP2OgAUReDDsupvWCqW3PMxjNoviS8xmcklVnv1w8Vmr8U2tao+x40ypLA=="; 4001 }; 4002 }; 4003 "@graphql-tools/schema-7.1.5" = { ··· 4009 sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA=="; 4010 }; 4011 }; 4012 - "@graphql-tools/schema-8.3.8" = { 4013 name = "_at_graphql-tools_slash_schema"; 4014 packageName = "@graphql-tools/schema"; 4015 - version = "8.3.8"; 4016 src = fetchurl { 4017 - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.8.tgz"; 4018 - sha512 = "Bba60ali4fLOKJz/Kk39RcBrDUBtu0Wy7pjpIOmFIKQKwUBNNB0eAmfpvrjnFhRAVdO2kOkPpc8DQY+SCG+lWw=="; 4019 }; 4020 }; 4021 "@graphql-tools/url-loader-6.10.1" = { ··· 4027 sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; 4028 }; 4029 }; 4030 - "@graphql-tools/url-loader-7.9.11" = { 4031 name = "_at_graphql-tools_slash_url-loader"; 4032 packageName = "@graphql-tools/url-loader"; 4033 - version = "7.9.11"; 4034 src = fetchurl { 4035 - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.11.tgz"; 4036 - sha512 = "janH0mhUxIsttEFwjtFIDAsfQwf1A2f9qKrvBIljF1Gcr/IWVH2DB7HfaQ5jIQrxaKv2wD3VHuU+/vMz+hpyOw=="; 4037 }; 4038 }; 4039 "@graphql-tools/utils-6.2.4" = { ··· 4063 sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ=="; 4064 }; 4065 }; 4066 - "@graphql-tools/utils-8.6.7" = { 4067 name = "_at_graphql-tools_slash_utils"; 4068 packageName = "@graphql-tools/utils"; 4069 - version = "8.6.7"; 4070 src = fetchurl { 4071 - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.7.tgz"; 4072 - sha512 = "Qi3EN95Rt3hb8CyDKpPKFWOPrnc00P18cpVTXEgtKxetSP39beJBeEEtLB0R53eP/6IolsyTZOTgkET1EaERaw=="; 4073 }; 4074 }; 4075 "@graphql-tools/wrap-7.0.8" = { ··· 4081 sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; 4082 }; 4083 }; 4084 - "@graphql-tools/wrap-8.4.13" = { 4085 name = "_at_graphql-tools_slash_wrap"; 4086 packageName = "@graphql-tools/wrap"; 4087 - version = "8.4.13"; 4088 src = fetchurl { 4089 - url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.13.tgz"; 4090 - sha512 = "q0Fa0CVgcaqm4FI4GXAVLjz8TQaF6lpFOm/rlgEkMzW9wFY/ZvDs+K3fVh9BgNvpudJArnVzAZgl2+FHNdY9CA=="; 4091 }; 4092 }; 4093 "@grpc/grpc-js-1.5.10" = { ··· 4126 sha512 = "9+89Ne1K8F9u86T+l1yIV2DS+dWHYVK61SsDZN4MFTFehOOaJ4rHxa1cW8Lwdn2/6tOx7N3+SY/vfcjztOHopA=="; 4127 }; 4128 }; 4129 "@grpc/proto-loader-0.6.9" = { 4130 name = "_at_grpc_slash_proto-loader"; 4131 packageName = "@grpc/proto-loader"; ··· 5746 sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; 5747 }; 5748 }; 5749 - "@microsoft/load-themed-styles-1.10.257" = { 5750 name = "_at_microsoft_slash_load-themed-styles"; 5751 packageName = "@microsoft/load-themed-styles"; 5752 - version = "1.10.257"; 5753 src = fetchurl { 5754 - url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.257.tgz"; 5755 - sha512 = "QRWEP1re0byEdedyYr82/mL8lcKPihNiASO+YJlohX9vsa/FSUSVD5lZQ87xSpgpOjGGc37CuPHhU+xnhLsS7A=="; 5756 }; 5757 }; 5758 "@mitmaro/errors-1.0.0" = { ··· 7753 sha512 = "feQEZlyBvQsbT/fvpJ4jJ5OLGaUPpnskHYDsY8DGpPymN+HUeDQrqkBEbbKRwMKidFTI2cxk2kJNNTnvdS9jyw=="; 7754 }; 7755 }; 7756 "@request/api-0.6.0" = { 7757 name = "_at_request_slash_api"; 7758 packageName = "@request/api"; ··· 7798 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 7799 }; 7800 }; 7801 - "@schematics/angular-13.3.2" = { 7802 name = "_at_schematics_slash_angular"; 7803 packageName = "@schematics/angular"; 7804 - version = "13.3.2"; 7805 src = fetchurl { 7806 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.2.tgz"; 7807 - sha512 = "ycTrPEsaSEtJ/CR8MVBrU6jaxcdBSy1lGUW8qSElsGS0OkHFKaV7fkzS9h0gPK9ANp6grZn0Ms3Hy3gAKQkiiQ=="; 7808 }; 7809 }; 7810 "@segment/loosely-validate-event-2.0.0" = { ··· 8527 sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="; 8528 }; 8529 }; 8530 - "@types/babel__traverse-7.14.2" = { 8531 name = "_at_types_slash_babel__traverse"; 8532 packageName = "@types/babel__traverse"; 8533 - version = "7.14.2"; 8534 src = fetchurl { 8535 - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz"; 8536 - sha512 = "K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA=="; 8537 }; 8538 }; 8539 "@types/babylon-6.16.6" = { ··· 9391 sha512 = "Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ=="; 9392 }; 9393 }; 9394 - "@types/node-12.20.47" = { 9395 name = "_at_types_slash_node"; 9396 packageName = "@types/node"; 9397 - version = "12.20.47"; 9398 src = fetchurl { 9399 - url = "https://registry.npmjs.org/@types/node/-/node-12.20.47.tgz"; 9400 - sha512 = "BzcaRsnFuznzOItW1WpQrDHM7plAa7GIDMZ6b5pnMbkqEtM/6WCOhvZar39oeMQP79gwvFUWjjptE7/KGcNqFg=="; 9401 }; 9402 }; 9403 "@types/node-13.13.52" = { ··· 9418 sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg=="; 9419 }; 9420 }; 9421 - "@types/node-14.18.12" = { 9422 name = "_at_types_slash_node"; 9423 packageName = "@types/node"; 9424 - version = "14.18.12"; 9425 src = fetchurl { 9426 - url = "https://registry.npmjs.org/@types/node/-/node-14.18.12.tgz"; 9427 - sha512 = "q4jlIR71hUpWTnGhXWcakgkZeHa3CCjcQcnuzU8M891BAWA2jHiziiWEPEkdS5pFsz7H9HJiy8BrK7tBRNrY7A=="; 9428 }; 9429 }; 9430 "@types/node-15.14.9" = { ··· 9436 sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A=="; 9437 }; 9438 }; 9439 - "@types/node-16.11.26" = { 9440 name = "_at_types_slash_node"; 9441 packageName = "@types/node"; 9442 - version = "16.11.26"; 9443 src = fetchurl { 9444 - url = "https://registry.npmjs.org/@types/node/-/node-16.11.26.tgz"; 9445 - sha512 = "GZ7bu5A6+4DtG7q9GsoHXy3ALcgeIHP4NnL0Vv2wu0uUB/yQex26v0tf6/na1mm0+bS9Uw+0DFex7aaKr2qawQ=="; 9446 }; 9447 }; 9448 "@types/node-16.11.6" = { ··· 9472 sha512 = "UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw=="; 9473 }; 9474 }; 9475 "@types/node-6.14.13" = { 9476 name = "_at_types_slash_node"; 9477 packageName = "@types/node"; ··· 9616 sha512 = "+TRLFmHLnpoV0uw4O/PzqMbPT6bhQM0q2KO0l+R7M3sHYRndPpNL6kv8p7Ee9ZxgQ6noYB18/t+heQi7eijOHA=="; 9617 }; 9618 }; 9619 - "@types/react-16.14.24" = { 9620 name = "_at_types_slash_react"; 9621 packageName = "@types/react"; 9622 - version = "16.14.24"; 9623 src = fetchurl { 9624 - url = "https://registry.npmjs.org/@types/react/-/react-16.14.24.tgz"; 9625 - sha512 = "e7U2WC8XQP/xfR7bwhOhNFZKPTfW1ph+MiqtudKb8tSV8RyCsovQx2sNVtKoOryjxFKpHPPC/yNiGfdeVM5Gyw=="; 9626 }; 9627 }; 9628 "@types/react-dom-16.9.14" = { ··· 9868 sha512 = "7axfYN8SW9pWg78NgenHasSproWQee5rzyPVLC9HpaQSDgNArsnKJD88EaMfi4Pl48AyciO3agYCFqpHS1gLpg=="; 9869 }; 9870 }; 9871 - "@types/tough-cookie-4.0.1" = { 9872 name = "_at_types_slash_tough-cookie"; 9873 packageName = "@types/tough-cookie"; 9874 - version = "4.0.1"; 9875 src = fetchurl { 9876 - url = "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.1.tgz"; 9877 - sha512 = "Y0K95ThC3esLEYD6ZuqNek29lNX2EM1qxV8y2FTLUB0ff5wWrk7az+mLrnNFUnaXcgKye22+sFBRXOgpPILZNg=="; 9878 }; 9879 }; 9880 "@types/uglify-js-3.13.2" = { ··· 9994 sha512 = "XCph0RiiqFGetukCTC3KVnY1jwLcZ84illFRMbyFzCcWl90B/76ew0tSqF46oBhnLC4obNDG7dMO0JfTN0MgMQ=="; 9995 }; 9996 }; 9997 - "@types/webpack-env-1.16.3" = { 9998 name = "_at_types_slash_webpack-env"; 9999 packageName = "@types/webpack-env"; 10000 - version = "1.16.3"; 10001 src = fetchurl { 10002 - url = "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.16.3.tgz"; 10003 - sha512 = "9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw=="; 10004 }; 10005 }; 10006 "@types/webpack-sources-3.2.0" = { ··· 10021 sha512 = "B5m9aq7cbbD/5/jThEr33nUY8WEfVi6A2YKCTOvw5Ldy7mtsOkqRvGjnzy6g7iMMDsgu7xREuCzqATLDLQVKcQ=="; 10022 }; 10023 }; 10024 - "@types/websocket-1.0.5" = { 10025 - name = "_at_types_slash_websocket"; 10026 - packageName = "@types/websocket"; 10027 - version = "1.0.5"; 10028 - src = fetchurl { 10029 - url = "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.5.tgz"; 10030 - sha512 = "NbsqiNX9CnEfC1Z0Vf4mE1SgAJ07JnRYcNex7AJ9zAVzmiGHmjKFEk7O4TJIsgv2B1sLEb6owKFZrACwdYngsQ=="; 10031 - }; 10032 - }; 10033 "@types/whatwg-url-8.2.1" = { 10034 name = "_at_types_slash_whatwg-url"; 10035 packageName = "@types/whatwg-url"; ··· 10471 sha512 = "KmJUazIEZWhy0UaFHV5Uy8AXpTqJgCPizEHhtxs3f8mIkUnwWjcQFG7FGfsAW7RgsN8hwcSZ5ZFjmXhllVwrkw=="; 10472 }; 10473 }; 10474 - "@vue/compiler-core-3.2.32" = { 10475 name = "_at_vue_slash_compiler-core"; 10476 packageName = "@vue/compiler-core"; 10477 - version = "3.2.32"; 10478 src = fetchurl { 10479 - url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.32.tgz"; 10480 - sha512 = "bRQ8Rkpm/aYFElDWtKkTPHeLnX5pEkNxhPUcqu5crEJIilZH0yeFu/qUAcV4VfSE2AudNPkQSOwMZofhnuutmA=="; 10481 }; 10482 }; 10483 - "@vue/compiler-dom-3.2.32" = { 10484 name = "_at_vue_slash_compiler-dom"; 10485 packageName = "@vue/compiler-dom"; 10486 - version = "3.2.32"; 10487 src = fetchurl { 10488 - url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.32.tgz"; 10489 - sha512 = "maa3PNB/NxR17h2hDQfcmS02o1f9r9QIpN1y6fe8tWPrS1E4+q8MqrvDDQNhYVPd84rc3ybtyumrgm9D5Rf/kg=="; 10490 }; 10491 }; 10492 "@vue/component-compiler-utils-3.3.0" = { ··· 10525 sha512 = "LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ=="; 10526 }; 10527 }; 10528 - "@vue/shared-3.2.32" = { 10529 name = "_at_vue_slash_shared"; 10530 packageName = "@vue/shared"; 10531 - version = "3.2.32"; 10532 src = fetchurl { 10533 - url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.32.tgz"; 10534 - sha512 = "bjcixPErUsAnTQRQX4Z5IQnICYjIfNCyCl8p29v1M6kfVzvwOICPw+dz48nNuWlTOOx2RHhzHdazJibE8GSnsw=="; 10535 }; 10536 }; 10537 "@vue/web-component-wrapper-1.3.0" = { ··· 12928 sha512 = "iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg=="; 12929 }; 12930 }; 12931 "archiver-utils-2.1.0" = { 12932 name = "archiver-utils"; 12933 packageName = "archiver-utils"; ··· 13900 sha512 = "xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw=="; 13901 }; 13902 }; 13903 - "async-2.6.3" = { 13904 name = "async"; 13905 packageName = "async"; 13906 - version = "2.6.3"; 13907 src = fetchurl { 13908 - url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz"; 13909 - sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; 13910 }; 13911 }; 13912 "async-3.2.3" = { ··· 14269 sha512 = "fChMDiSfWcW0EUWmiqlyc+VAIXKH0w7BBruL3cVWSwO+5oA5A9juGF4NCBV2/KAHzaKaG0hXKPE49Wh6Lq74ag=="; 14270 }; 14271 }; 14272 - "aws-sdk-2.1113.0" = { 14273 name = "aws-sdk"; 14274 packageName = "aws-sdk"; 14275 - version = "2.1113.0"; 14276 src = fetchurl { 14277 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1113.0.tgz"; 14278 - sha512 = "F+B+HFnKCVIOmErZ1jJ8YL4XxDSaUI9l3JskfpIrk0XdJVcIfyHgA4XUrTUda4z5TOy1Z7eWV2IXgEpVRM4xyw=="; 14279 }; 14280 }; 14281 "aws-sign2-0.6.0" = { ··· 17132 sha512 = "c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ=="; 17133 }; 17134 }; 17135 - "buffer-from-1.1.1" = { 17136 - name = "buffer-from"; 17137 - packageName = "buffer-from"; 17138 - version = "1.1.1"; 17139 - src = fetchurl { 17140 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; 17141 - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 17142 - }; 17143 - }; 17144 "buffer-from-1.1.2" = { 17145 name = "buffer-from"; 17146 packageName = "buffer-from"; ··· 17960 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 17961 }; 17962 }; 17963 - "caniuse-lite-1.0.30001331" = { 17964 name = "caniuse-lite"; 17965 packageName = "caniuse-lite"; 17966 - version = "1.0.30001331"; 17967 src = fetchurl { 17968 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001331.tgz"; 17969 - sha512 = "Y1xk6paHpUXKP/P6YjQv1xqyTbgAP05ycHBcRdQjTcyXlWol868sJJPlmk5ylOekw2BrucWes5jk+LvVd7WZ5Q=="; 17970 }; 17971 }; 17972 "canvas-2.9.1" = { ··· 18122 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 18123 }; 18124 }; 18125 - "cdk8s-1.5.67" = { 18126 name = "cdk8s"; 18127 packageName = "cdk8s"; 18128 - version = "1.5.67"; 18129 src = fetchurl { 18130 - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.67.tgz"; 18131 - sha512 = "T64trVn18NKz3WAlYFavkFS3Cw1eGy/5DkBwNgKL/VIfbaJFfBEIBgATJysECulB1pV4zxFAFLly+h/lFAbdwA=="; 18132 }; 18133 }; 18134 - "cdk8s-plus-22-1.0.0-beta.191" = { 18135 name = "cdk8s-plus-22"; 18136 packageName = "cdk8s-plus-22"; 18137 - version = "1.0.0-beta.191"; 18138 src = fetchurl { 18139 - url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.191.tgz"; 18140 - sha512 = "zDd2VAfaumBEhRMHh0yPMcho15fDHTui8bkxx6yPYa/d8h8RhUkNPcAef2zBClarYdmquFtdo6MS24/6nduw0g=="; 18141 }; 18142 }; 18143 "cdktf-0.10.1" = { ··· 20246 sha512 = "JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw=="; 20247 }; 20248 }; 20249 - "commander-9.1.0" = { 20250 name = "commander"; 20251 packageName = "commander"; 20252 - version = "9.1.0"; 20253 src = fetchurl { 20254 - url = "https://registry.npmjs.org/commander/-/commander-9.1.0.tgz"; 20255 - sha512 = "i0/MaqBtdbnJ4XQs4Pmyb+oFQl+q0lsAmokVUH92SlSw4fkeAcG3bVon+Qt7hmtF+u3Het6o4VgrcY3qAoEB6w=="; 20256 }; 20257 }; 20258 "commandpost-1.4.0" = { ··· 20795 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 20796 }; 20797 }; 20798 - "constructs-10.0.113" = { 20799 name = "constructs"; 20800 packageName = "constructs"; 20801 - version = "10.0.113"; 20802 src = fetchurl { 20803 - url = "https://registry.npmjs.org/constructs/-/constructs-10.0.113.tgz"; 20804 - sha512 = "Q2UNZz2nGiW2ZDZz7+FLOKQNyGr0LXc6mjuAvxXJ57UMwLabbhva8lKWMv3fztdsqlVbtl1DGq1vw2htbaNNJw=="; 20805 }; 20806 }; 20807 - "constructs-3.3.266" = { 20808 name = "constructs"; 20809 packageName = "constructs"; 20810 - version = "3.3.266"; 20811 src = fetchurl { 20812 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.266.tgz"; 20813 - sha512 = "J0aAGYEaYU+4J9PTCGgqIE7cZZZrG+1tvuJhcSn7eKkYqshYVMoCglVtStjD9RXs+e8QzQjvYU0D0dJwe8uc0A=="; 20814 }; 20815 }; 20816 "consume-http-header-1.0.0" = { ··· 21408 sha512 = "YUdI3fFu4TF/2WykQ2xzSiTQdldLB4KVuL9WeAy5XONZYt5Cun/fpQvctoKbCgvPhmzADeesTk/j2Rdx77AcKQ=="; 21409 }; 21410 }; 21411 - "core-js-3.21.1" = { 21412 name = "core-js"; 21413 packageName = "core-js"; 21414 - version = "3.21.1"; 21415 src = fetchurl { 21416 - url = "https://registry.npmjs.org/core-js/-/core-js-3.21.1.tgz"; 21417 - sha512 = "FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig=="; 21418 }; 21419 }; 21420 - "core-js-compat-3.21.1" = { 21421 name = "core-js-compat"; 21422 packageName = "core-js-compat"; 21423 - version = "3.21.1"; 21424 src = fetchurl { 21425 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.1.tgz"; 21426 - sha512 = "gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g=="; 21427 }; 21428 }; 21429 - "core-js-pure-3.21.1" = { 21430 name = "core-js-pure"; 21431 packageName = "core-js-pure"; 21432 - version = "3.21.1"; 21433 src = fetchurl { 21434 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.21.1.tgz"; 21435 - sha512 = "12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ=="; 21436 }; 21437 }; 21438 "core-util-is-1.0.2" = { ··· 23559 sha512 = "eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w=="; 23560 }; 23561 }; 23562 - "date-format-4.0.6" = { 23563 name = "date-format"; 23564 packageName = "date-format"; 23565 - version = "4.0.6"; 23566 src = fetchurl { 23567 - url = "https://registry.npmjs.org/date-format/-/date-format-4.0.6.tgz"; 23568 - sha512 = "B9vvg5rHuQ8cbUXE/RMWMyX2YA5TecT3jKF5fLtGNlzPlU7zblSPmAm2OImDbWL+LDOQ6pUm+4LOFz+ywS41Zw=="; 23569 }; 23570 }; 23571 "date-now-0.1.4" = { ··· 23604 sha512 = "2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA=="; 23605 }; 23606 }; 23607 - "dayjs-1.11.0" = { 23608 name = "dayjs"; 23609 packageName = "dayjs"; 23610 - version = "1.11.0"; 23611 src = fetchurl { 23612 - url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.0.tgz"; 23613 - sha512 = "JLC809s6Y948/FuCZPm5IX8rRhQwOiyMb2TfVVQEixG7P8Lm/gt5S7yoQZmC8x1UehI9Pb7sksEt4xx14m+7Ug=="; 23614 }; 23615 }; 23616 "dayjs-1.8.36" = { ··· 24342 sha512 = "Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="; 24343 }; 24344 }; 24345 - "define-properties-1.1.3" = { 24346 name = "define-properties"; 24347 packageName = "define-properties"; 24348 - version = "1.1.3"; 24349 src = fetchurl { 24350 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"; 24351 - sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="; 24352 }; 24353 }; 24354 "define-property-0.2.5" = { ··· 24918 sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw=="; 24919 }; 24920 }; 24921 - "diff2html-3.4.16" = { 24922 name = "diff2html"; 24923 packageName = "diff2html"; 24924 - version = "3.4.16"; 24925 src = fetchurl { 24926 - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.16.tgz"; 24927 - sha512 = "KfkvEoZTJertjoGPYFLn8n0yRdvzJcHvFJpJwbIxUlHU9x6qqhRZEM+TlgtU09jdLqRZAQyWFoxPiP6HeT2IYA=="; 24928 }; 24929 }; 24930 "diff3-0.0.3" = { ··· 26007 sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw=="; 26008 }; 26009 }; 26010 - "electron-to-chromium-1.4.107" = { 26011 name = "electron-to-chromium"; 26012 packageName = "electron-to-chromium"; 26013 - version = "1.4.107"; 26014 src = fetchurl { 26015 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.107.tgz"; 26016 - sha512 = "Huen6taaVrUrSy8o7mGStByba8PfOWWluHNxSHGBrCgEdFVLtvdQDBr9LBCF9Uci8SYxh28QNNMO0oC17wbGAg=="; 26017 }; 26018 }; 26019 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 26702 sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A=="; 26703 }; 26704 }; 26705 - "es-abstract-1.19.4" = { 26706 name = "es-abstract"; 26707 packageName = "es-abstract"; 26708 - version = "1.19.4"; 26709 src = fetchurl { 26710 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.4.tgz"; 26711 - sha512 = "flV8e5g9/xulChMG48Fygk1ptpo4lQRJ0eJYtxJFgi7pklLx7EFcOJ34jnvr8pbWlaFN/AT1cZpe0hiFel9Hqg=="; 26712 }; 26713 }; 26714 "es-get-iterator-1.1.2" = { ··· 28970 sha512 = "5rOQWkBVz3FnYWTi/ELZmq4CoK1Pb+xKNZWuJRsOwo0+8DrP43CrWJtyLVvb5U7z7ggE5llahfDbLjaVNzXVJQ=="; 28971 }; 28972 }; 28973 "fetch-blob-3.1.5" = { 28974 name = "fetch-blob"; 28975 packageName = "fetch-blob"; ··· 28979 sha512 = "N64ZpKqoLejlrwkIAnb9iLSA3Vx/kjgzpcDhygcqJ2KKjky8nCgUQ+dzXtbrLaWZGZNmNfQTsiQ0weZ1svglHg=="; 28980 }; 28981 }; 28982 - "fetch-cookie-0.10.1" = { 28983 name = "fetch-cookie"; 28984 packageName = "fetch-cookie"; 28985 - version = "0.10.1"; 28986 src = fetchurl { 28987 - url = "https://registry.npmjs.org/fetch-cookie/-/fetch-cookie-0.10.1.tgz"; 28988 - sha512 = "beB+VEd4cNeVG1PY+ee74+PkuCQnik78pgLi5Ah/7qdUfov8IctU0vLUbBT8/10Ma5GMBeI4wtxhGrEfKNYs2g=="; 28989 }; 28990 }; 28991 "fetch-everywhere-1.0.5" = { ··· 29798 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 29799 }; 29800 }; 29801 - "flow-parser-0.176.0" = { 29802 name = "flow-parser"; 29803 packageName = "flow-parser"; 29804 - version = "0.176.0"; 29805 src = fetchurl { 29806 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.176.0.tgz"; 29807 - sha512 = "h3OUIHINMtdOnaMXyJH5ryqly1rft0Lt/di22dJB35FCnulSTxWvQhDtOH2dxQMU48/wtUmAOo4sv7Mj7XNyng=="; 29808 }; 29809 }; 29810 "fluent-ffmpeg-2.1.2" = { ··· 30257 sha512 = "wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g=="; 30258 }; 30259 }; 30260 - "fp-ts-2.11.9" = { 30261 name = "fp-ts"; 30262 packageName = "fp-ts"; 30263 - version = "2.11.9"; 30264 src = fetchurl { 30265 - url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.11.9.tgz"; 30266 - sha512 = "GhYlNKkCOfdjp71ocdtyaQGoqCswEoWDJLRr+2jClnBBq2dnSOtd6QxmJdALq8UhfqCyZZ0f0lxadU4OhwY9nw=="; 30267 }; 30268 }; 30269 "fraction.js-4.2.0" = { ··· 30732 src = fetchurl { 30733 url = "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; 30734 sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; 30735 }; 30736 }; 30737 "fuse.js-6.4.1" = { ··· 32004 sha512 = "mxP1gmk5Bg72biHUgH7RYAQAjqX16/e5npGYPeBScspNYdwxqK87PDkZADy3p26dlOnbZN3G7tP06xzASKb7/g=="; 32005 }; 32006 }; 32007 "gonzales-pe-4.3.0" = { 32008 name = "gonzales-pe"; 32009 packageName = "gonzales-pe"; ··· 32229 sha512 = "7a4mFIGpFZgjk1G+CbFudOX8y8J5HzHkP19eYuEcv1Dif5IITYVDoQxa5GTORL6dsmmQ/sdZQ3QXuT1DMq6gbg=="; 32230 }; 32231 }; 32232 "grant-4.7.0" = { 32233 name = "grant"; 32234 packageName = "grant"; ··· 32416 src = fetchurl { 32417 url = "https://registry.npmjs.org/graphql-language-service-utils/-/graphql-language-service-utils-2.7.1.tgz"; 32418 sha512 = "Wci5MbrQj+6d7rfvbORrA9uDlfMysBWYaG49ST5TKylNaXYFf3ixFOa74iM1KtM9eidosUbI3E1JlWi0JaidJA=="; 32419 - }; 32420 - }; 32421 - "graphql-sse-1.1.0" = { 32422 - name = "graphql-sse"; 32423 - packageName = "graphql-sse"; 32424 - version = "1.1.0"; 32425 - src = fetchurl { 32426 - url = "https://registry.npmjs.org/graphql-sse/-/graphql-sse-1.1.0.tgz"; 32427 - sha512 = "xE8AGPJa5X+g7iFmRQw/8H+7lXIDJvSkW6lou/XSSq17opPQl+dbKOMiqraHMx52VrDgS061ZVx90OSuqS6ykA=="; 32428 }; 32429 }; 32430 "graphql-subscriptions-1.2.1" = { ··· 32920 src = fetchurl { 32921 url = "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz"; 32922 sha512 = "Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ=="; 32923 }; 32924 }; 32925 "has-symbol-support-x-1.4.2" = { ··· 34182 sha512 = "3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw=="; 34183 }; 34184 }; 34185 - "http-status-1.5.0" = { 34186 name = "http-status"; 34187 packageName = "http-status"; 34188 - version = "1.5.0"; 34189 src = fetchurl { 34190 - url = "https://registry.npmjs.org/http-status/-/http-status-1.5.0.tgz"; 34191 - sha512 = "wcGvY31MpFNHIkUcXHHnvrE4IKYlpvitJw5P/1u892gMBAM46muQ+RH7UN1d+Ntnfx5apnOnVY6vcLmrWHOLwg=="; 34192 }; 34193 }; 34194 "http2-client-1.3.5" = { ··· 34261 src = fetchurl { 34262 url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz"; 34263 sha512 = "EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA=="; 34264 }; 34265 }; 34266 "hue-sdk-0.1.0" = { ··· 38431 sha512 = "aeFHXnO9hQXirgLjYqYMoAdvBGnpLOEhRVe4w7RuYjaqwsIPof4xIfSj2YvNQ9ZAWalYpg1Tm8kiLeWEyEeX6w=="; 38432 }; 38433 }; 38434 - "jsii-srcmak-0.1.529" = { 38435 name = "jsii-srcmak"; 38436 packageName = "jsii-srcmak"; 38437 - version = "0.1.529"; 38438 src = fetchurl { 38439 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.529.tgz"; 38440 - sha512 = "ldLyakH99iz5j0A0sxwXSCIWrAbeSb2QZs13D/3JU83wKzuPNx4f5zgXj/rmjkrF3o2XAkBo4H63P057In4oCQ=="; 38441 }; 38442 }; 38443 "json-bigint-1.0.0" = { ··· 38737 sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; 38738 }; 38739 }; 38740 - "json2jsii-0.2.190" = { 38741 name = "json2jsii"; 38742 packageName = "json2jsii"; 38743 - version = "0.2.190"; 38744 src = fetchurl { 38745 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.190.tgz"; 38746 - sha512 = "v8iKJmPIjmoYfoAlhPdtxOonIaRxwe0dI9mfiy7TiYqlYnNH9pKnrFglyDizlvnSeUL5XVUabGiXDkfIDtBw2w=="; 38747 }; 38748 }; 38749 "json3-3.2.6" = { ··· 40501 sha512 = "gto+BB2uEob8qRiTlOq+R3uX0YNHsX9mjxj9Sbdue/LIKqu6IlZjrsjKeGyOMquc/474GEqFyX2pdytpydp0rQ=="; 40502 }; 40503 }; 40504 - "lmdb-2.3.2" = { 40505 name = "lmdb"; 40506 packageName = "lmdb"; 40507 - version = "2.3.2"; 40508 src = fetchurl { 40509 - url = "https://registry.npmjs.org/lmdb/-/lmdb-2.3.2.tgz"; 40510 - sha512 = "kgn/zic1JeatYwz/64vpj3SLxff/qS2H1DeTj8mxDrNuF6gDSLdDS2r6YogV4T6eV6GddMu5Zn0E9d/xyo39eA=="; 40511 }; 40512 }; 40513 "lmdb-darwin-arm64-2.3.2" = { ··· 42202 sha512 = "Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw=="; 42203 }; 42204 }; 42205 - "log4js-6.4.4" = { 42206 name = "log4js"; 42207 packageName = "log4js"; 42208 - version = "6.4.4"; 42209 src = fetchurl { 42210 - url = "https://registry.npmjs.org/log4js/-/log4js-6.4.4.tgz"; 42211 - sha512 = "ncaWPsuw9Vl1CKA406hVnJLGQKy1OHx6buk8J4rE2lVW+NW5Y82G5/DIloO7NkqLOUtNPEANaWC1kZYVjXssPw=="; 42212 }; 42213 }; 42214 "logform-2.4.0" = { ··· 47280 sha512 = "NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ=="; 47281 }; 47282 }; 47283 - "node-fetch-2.6.0" = { 47284 - name = "node-fetch"; 47285 - packageName = "node-fetch"; 47286 - version = "2.6.0"; 47287 - src = fetchurl { 47288 - url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz"; 47289 - sha512 = "8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA=="; 47290 - }; 47291 - }; 47292 "node-fetch-2.6.1" = { 47293 name = "node-fetch"; 47294 packageName = "node-fetch"; ··· 48279 sha512 = "Df5QT3RaJnXYuOwtXBXS9BWs+tHH2olvkCLh6jcR/b/u3DvPMlp3J0TvvYwplPKxHMOwfg287PYih9QqaVFoKA=="; 48280 }; 48281 }; 48282 - "npm-registry-fetch-13.1.0" = { 48283 name = "npm-registry-fetch"; 48284 packageName = "npm-registry-fetch"; 48285 - version = "13.1.0"; 48286 src = fetchurl { 48287 - url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-13.1.0.tgz"; 48288 - sha512 = "TIYL5X8CcwDhbFMXFDShNcpG6OMCYK6VzvSr6MUWP20tCU2DJ4ao2qQg3DT+3Pet8mO6/cgbZpon4LMh3duYLg=="; 48289 }; 48290 }; 48291 "npm-registry-fetch-9.0.0" = { ··· 52997 sha512 = "choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ=="; 52998 }; 52999 }; 53000 - "pouchdb-abstract-mapreduce-7.2.2" = { 53001 name = "pouchdb-abstract-mapreduce"; 53002 packageName = "pouchdb-abstract-mapreduce"; 53003 - version = "7.2.2"; 53004 src = fetchurl { 53005 - url = "https://registry.npmjs.org/pouchdb-abstract-mapreduce/-/pouchdb-abstract-mapreduce-7.2.2.tgz"; 53006 - sha512 = "7HWN/2yV2JkwMnGnlp84lGvFtnm0Q55NiBUdbBcaT810+clCGKvhssBCrXnmwShD1SXTwT83aszsgiSfW+SnBA=="; 53007 }; 53008 }; 53009 "pouchdb-adapter-node-websql-7.0.0" = { ··· 53042 sha512 = "yUktdOPIPvOVouCjJN3uop+bCcpdPwePrLm9eUAZNgEYnUFu0njdx7Q0WRsZ7UJ6l75HinL5ZHk4bnvEt86FLw=="; 53043 }; 53044 }; 53045 - "pouchdb-binary-utils-7.2.2" = { 53046 name = "pouchdb-binary-utils"; 53047 packageName = "pouchdb-binary-utils"; 53048 - version = "7.2.2"; 53049 src = fetchurl { 53050 - url = "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.2.2.tgz"; 53051 - sha512 = "shacxlmyHbUrNfE6FGYpfyAJx7Q0m91lDdEAaPoKZM3SzAmbtB1i+OaDNtYFztXjJl16yeudkDb3xOeokVL3Qw=="; 53052 }; 53053 }; 53054 - "pouchdb-changes-filter-7.2.2" = { 53055 name = "pouchdb-changes-filter"; 53056 packageName = "pouchdb-changes-filter"; 53057 - version = "7.2.2"; 53058 src = fetchurl { 53059 - url = "https://registry.npmjs.org/pouchdb-changes-filter/-/pouchdb-changes-filter-7.2.2.tgz"; 53060 - sha512 = "1txJnTtL/C7zrq+spLt3pH9EDHTWmLLwp2zx8zUQrkt6eQtuLuXUI7G84xe+hfpU0rQvUzp/APYMnko0/6Rw0A=="; 53061 }; 53062 }; 53063 - "pouchdb-collate-7.2.2" = { 53064 name = "pouchdb-collate"; 53065 packageName = "pouchdb-collate"; 53066 - version = "7.2.2"; 53067 src = fetchurl { 53068 - url = "https://registry.npmjs.org/pouchdb-collate/-/pouchdb-collate-7.2.2.tgz"; 53069 - sha512 = "/SMY9GGasslknivWlCVwXMRMnQ8myKHs4WryQ5535nq1Wj/ehpqWloMwxEQGvZE1Sda3LOm7/5HwLTcB8Our+w=="; 53070 }; 53071 }; 53072 "pouchdb-collections-7.0.0" = { ··· 53078 sha512 = "DaoUr/vU24Q3gM6ghj0va9j/oBanPwkbhkvnqSyC3Dm5dgf5pculNxueLF9PKMo3ycApoWzHMh6N2N8KJbDU2Q=="; 53079 }; 53080 }; 53081 - "pouchdb-collections-7.2.2" = { 53082 name = "pouchdb-collections"; 53083 packageName = "pouchdb-collections"; 53084 - version = "7.2.2"; 53085 src = fetchurl { 53086 - url = "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.2.2.tgz"; 53087 - sha512 = "6O9zyAYlp3UdtfneiMYuOCWdUCQNo2bgdjvNsMSacQX+3g8WvIoFQCYJjZZCpTttQGb+MHeRMr8m2U95lhJTew=="; 53088 }; 53089 }; 53090 - "pouchdb-core-7.2.2" = { 53091 name = "pouchdb-core"; 53092 packageName = "pouchdb-core"; 53093 - version = "7.2.2"; 53094 src = fetchurl { 53095 - url = "https://registry.npmjs.org/pouchdb-core/-/pouchdb-core-7.2.2.tgz"; 53096 - sha512 = "AnMmSH+xx12Vk6oASDRQoElXfV9fSn8MIwfus0oa2lqkxowx4bvidofZbhZfKEiE6QgKwFEOBzs56MS3znI8TQ=="; 53097 }; 53098 }; 53099 "pouchdb-errors-7.0.0" = { ··· 53105 sha512 = "dTusY8nnTw4HIztCrNl7AoGgwvS1bVf/3/97hDaGc4ytn72V9/4dK8kTqlimi3UpaurohYRnqac0SGXYP8vgXA=="; 53106 }; 53107 }; 53108 - "pouchdb-errors-7.2.2" = { 53109 name = "pouchdb-errors"; 53110 packageName = "pouchdb-errors"; 53111 - version = "7.2.2"; 53112 src = fetchurl { 53113 - url = "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.2.2.tgz"; 53114 - sha512 = "6GQsiWc+7uPfgEHeavG+7wuzH3JZW29Dnrvz8eVbDFE50kVFxNDVm3EkYHskvo5isG7/IkOx7PV7RPTA3keG3g=="; 53115 }; 53116 }; 53117 "pouchdb-extend-0.1.2" = { ··· 53123 sha1 = "d1ce511bf704ed2e29f7bf428a416acfffa124b8"; 53124 }; 53125 }; 53126 - "pouchdb-fetch-7.2.2" = { 53127 name = "pouchdb-fetch"; 53128 packageName = "pouchdb-fetch"; 53129 - version = "7.2.2"; 53130 src = fetchurl { 53131 - url = "https://registry.npmjs.org/pouchdb-fetch/-/pouchdb-fetch-7.2.2.tgz"; 53132 - sha512 = "lUHmaG6U3zjdMkh8Vob9GvEiRGwJfXKE02aZfjiVQgew+9SLkuOxNw3y2q4d1B6mBd273y1k2Lm0IAziRNxQnA=="; 53133 }; 53134 }; 53135 - "pouchdb-find-7.2.2" = { 53136 name = "pouchdb-find"; 53137 packageName = "pouchdb-find"; 53138 - version = "7.2.2"; 53139 src = fetchurl { 53140 - url = "https://registry.npmjs.org/pouchdb-find/-/pouchdb-find-7.2.2.tgz"; 53141 - sha512 = "BmFeFVQ0kHmDehvJxNZl9OmIztCjPlZlVSdpijuFbk/Fi1EFPU1BAv3kLC+6DhZuOqU/BCoaUBY9sn66pPY2ag=="; 53142 }; 53143 }; 53144 "pouchdb-json-7.0.0" = { ··· 53150 sha512 = "w0bNRu/7VmmCrFWMYAm62n30wvJJUT2SokyzeTyj3hRohj4GFwTRg1mSZ+iAmxgRKOFE8nzZstLG/WAB4Ymjew=="; 53151 }; 53152 }; 53153 - "pouchdb-mapreduce-utils-7.2.2" = { 53154 name = "pouchdb-mapreduce-utils"; 53155 packageName = "pouchdb-mapreduce-utils"; 53156 - version = "7.2.2"; 53157 src = fetchurl { 53158 - url = "https://registry.npmjs.org/pouchdb-mapreduce-utils/-/pouchdb-mapreduce-utils-7.2.2.tgz"; 53159 - sha512 = "rAllb73hIkU8rU2LJNbzlcj91KuulpwQu804/F6xF3fhZKC/4JQMClahk+N/+VATkpmLxp1zWmvmgdlwVU4HtQ=="; 53160 }; 53161 }; 53162 "pouchdb-md5-7.0.0" = { ··· 53168 sha512 = "yaSJKhLA3QlgloKUQeb2hLdT3KmUmPfoYdryfwHZuPTpXIRKTnMQTR9qCIRUszc0ruBpDe53DRslCgNUhAyTNQ=="; 53169 }; 53170 }; 53171 - "pouchdb-md5-7.2.2" = { 53172 name = "pouchdb-md5"; 53173 packageName = "pouchdb-md5"; 53174 - version = "7.2.2"; 53175 src = fetchurl { 53176 - url = "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.2.2.tgz"; 53177 - sha512 = "c/RvLp2oSh8PLAWU5vFBnp6ejJABIdKqboZwRRUrWcfGDf+oyX8RgmJFlYlzMMOh4XQLUT1IoaDV8cwlsuryZw=="; 53178 }; 53179 }; 53180 "pouchdb-merge-7.0.0" = { ··· 53186 sha512 = "tci5u6NpznQhGcPv4ho1h0miky9rs+ds/T9zQ9meQeDZbUojXNaX1Jxsb0uYEQQ+HMqdcQs3Akdl0/u0mgwPGg=="; 53187 }; 53188 }; 53189 - "pouchdb-merge-7.2.2" = { 53190 name = "pouchdb-merge"; 53191 packageName = "pouchdb-merge"; 53192 - version = "7.2.2"; 53193 src = fetchurl { 53194 - url = "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.2.2.tgz"; 53195 - sha512 = "6yzKJfjIchBaS7Tusuk8280WJdESzFfQ0sb4jeMUNnrqs4Cx3b0DIEOYTRRD9EJDM+je7D3AZZ4AT0tFw8gb4A=="; 53196 }; 53197 }; 53198 "pouchdb-promise-5.4.3" = { ··· 53204 sha1 = "331d670b1989d5a03f268811214f27f54150cb2b"; 53205 }; 53206 }; 53207 - "pouchdb-selector-core-7.2.2" = { 53208 name = "pouchdb-selector-core"; 53209 packageName = "pouchdb-selector-core"; 53210 - version = "7.2.2"; 53211 src = fetchurl { 53212 - url = "https://registry.npmjs.org/pouchdb-selector-core/-/pouchdb-selector-core-7.2.2.tgz"; 53213 - sha512 = "XYKCNv9oiNmSXV5+CgR9pkEkTFqxQGWplnVhO3W9P154H08lU0ZoNH02+uf+NjZ2kjse7Q1fxV4r401LEcGMMg=="; 53214 }; 53215 }; 53216 "pouchdb-utils-7.0.0" = { ··· 53222 sha512 = "1bnoX1KdZYHv9wicDIFdO0PLiVIMzNDUBUZ/yOJZ+6LW6niQCB8aCv09ZztmKfSQcU5nnN3fe656tScBgP6dOQ=="; 53223 }; 53224 }; 53225 - "pouchdb-utils-7.2.2" = { 53226 name = "pouchdb-utils"; 53227 packageName = "pouchdb-utils"; 53228 - version = "7.2.2"; 53229 src = fetchurl { 53230 - url = "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.2.2.tgz"; 53231 - sha512 = "XmeM5ioB4KCfyB2MGZXu1Bb2xkElNwF1qG+zVFbQsKQij0zvepdOUfGuWvLRHxTOmt4muIuSOmWZObZa3NOgzQ=="; 53232 }; 53233 }; 53234 "pouchdb-wrappers-4.1.0" = { ··· 57083 sha512 = "1CJygtdvsfNFwiyjaMLBWtg2tfEqx/jSZ8S6TV+GlNL8kiH8rb4cm5Pb7A/C2BpyM/fA8ZJEudlCwi/jvAY+Ow=="; 57084 }; 57085 }; 57086 - "regexp.prototype.flags-1.4.2" = { 57087 name = "regexp.prototype.flags"; 57088 packageName = "regexp.prototype.flags"; 57089 - version = "1.4.2"; 57090 src = fetchurl { 57091 - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.2.tgz"; 57092 - sha512 = "Ynz8fTQW5/1elh+jWU2EDDzeoNbD0OQ0R+D1VJU5ATOkUaro4A9YEkdN2ODQl/8UQFPPpZNw91fOcLFamM7Pww=="; 57093 }; 57094 }; 57095 "regexpp-1.1.0" = { ··· 61997 sha1 = "3722227c54e2faf24b1dc6d933cc144e6f71bfef"; 61998 }; 61999 }; 62000 - "spark-md5-3.0.1" = { 62001 - name = "spark-md5"; 62002 - packageName = "spark-md5"; 62003 - version = "3.0.1"; 62004 - src = fetchurl { 62005 - url = "https://registry.npmjs.org/spark-md5/-/spark-md5-3.0.1.tgz"; 62006 - sha512 = "0tF3AGSD1ppQeuffsLDIOWlKUd3lS92tFxcsrh5Pe3ZphhnoK+oXIBTzOAThZCiuINZLvpiLH/1VS1/ANEJVig=="; 62007 - }; 62008 - }; 62009 "spark-md5-3.0.2" = { 62010 name = "spark-md5"; 62011 packageName = "spark-md5"; ··· 62862 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 62863 }; 62864 }; 62865 - "sscaff-1.2.256" = { 62866 name = "sscaff"; 62867 packageName = "sscaff"; 62868 - version = "1.2.256"; 62869 src = fetchurl { 62870 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.256.tgz"; 62871 - sha512 = "pVtKvFBNenal5UXDeEDQ98pK1n/mmEI3UYMaBmUImPVZB474uGlD99TkMGNFHUWBMmIf75zcEMezlG2FSxcJxA=="; 62872 }; 62873 }; 62874 "ssh-config-1.1.6" = { ··· 63546 sha512 = "OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ=="; 63547 }; 63548 }; 63549 - "streamroller-3.0.6" = { 63550 name = "streamroller"; 63551 packageName = "streamroller"; 63552 - version = "3.0.6"; 63553 src = fetchurl { 63554 - url = "https://registry.npmjs.org/streamroller/-/streamroller-3.0.6.tgz"; 63555 - sha512 = "Qz32plKq/MZywYyhEatxyYc8vs994Gz0Hu2MSYXXLD233UyPeIeRBZARIIGwFer4Mdb8r3Y2UqKkgyDghM6QCg=="; 63556 }; 63557 }; 63558 "streamsearch-0.1.2" = { ··· 64383 sha512 = "cVqd/URpp7si1HWu5YqQ3vqQkjuolAwHypY1B4itPlS71/lsf6TQPZ2Y0ijT22EYVkvH5ove9JFJf4u7VGPuZw=="; 64384 }; 64385 }; 64386 - "subscriptions-transport-ws-0.11.0" = { 64387 - name = "subscriptions-transport-ws"; 64388 - packageName = "subscriptions-transport-ws"; 64389 - version = "0.11.0"; 64390 - src = fetchurl { 64391 - url = "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.11.0.tgz"; 64392 - sha512 = "8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ=="; 64393 - }; 64394 - }; 64395 "subscriptions-transport-ws-0.9.18" = { 64396 name = "subscriptions-transport-ws"; 64397 packageName = "subscriptions-transport-ws"; ··· 64680 sha512 = "4JaJp3HEoTCGARRWZQIZDUanhYv0iyoHikklVHVLH9xFE9db22g4TDv7CPeNA8HD1JgjXI1vlhR1JZvvhaTu2Q=="; 64681 }; 64682 }; 64683 - "svelte-preprocess-4.10.5" = { 64684 name = "svelte-preprocess"; 64685 packageName = "svelte-preprocess"; 64686 - version = "4.10.5"; 64687 src = fetchurl { 64688 - url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.10.5.tgz"; 64689 - sha512 = "VKXPRScCzAZqeBZOGq4LLwtNrAu++mVn7XvQox3eFDV7Ciq0Lg70Q8QWjH9iXF7J+pMlXhPsSFwpCb2E+hoeyA=="; 64690 }; 64691 }; 64692 - "svelte2tsx-0.5.8" = { 64693 name = "svelte2tsx"; 64694 packageName = "svelte2tsx"; 64695 - version = "0.5.8"; 64696 src = fetchurl { 64697 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.8.tgz"; 64698 - sha512 = "z5Mfpmy/jkpFIiePAocgWxGRJg+Ka0zlxyvFlpP2X1BoQuXjFC6pnIR9CGebOTmi+W1JnSUAdxrCCj/sEMXZ8Q=="; 64699 }; 64700 }; 64701 "sver-compat-1.5.0" = { ··· 66085 sha512 = "pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw=="; 66086 }; 66087 }; 66088 "tiny-queue-0.2.1" = { 66089 name = "tiny-queue"; 66090 packageName = "tiny-queue"; ··· 73782 sha512 = "5kGSQrzDyjCk0BLuFfjkoUE9vYcoyrwZIZ+GnpOSM9vhkvPjItYiWJ1jpRSo0aU4QmsoNrFwDT4O7XS2UGcBQg=="; 73783 }; 73784 }; 73785 "yaml-ast-parser-0.0.43" = { 73786 name = "yaml-ast-parser"; 73787 packageName = "yaml-ast-parser"; ··· 74463 "@angular/cli" = nodeEnv.buildNodePackage { 74464 name = "_at_angular_slash_cli"; 74465 packageName = "@angular/cli"; 74466 - version = "13.3.2"; 74467 src = fetchurl { 74468 - url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.2.tgz"; 74469 - sha512 = "sfhMbm0wBAYmG+8YEYYZ5QkFyv2TJmMua/LbGoJE/y5UKBN+zLsMO3G/CW3D6pWThbgf04qQpi2LHonbPC/Bkg=="; 74470 }; 74471 dependencies = [ 74472 - sources."@angular-devkit/architect-0.1303.2" 74473 - sources."@angular-devkit/core-13.3.2" 74474 - sources."@angular-devkit/schematics-13.3.2" 74475 sources."@gar/promisify-1.1.3" 74476 sources."@npmcli/fs-1.1.1" 74477 sources."@npmcli/git-2.1.0" ··· 74480 sources."@npmcli/node-gyp-1.0.3" 74481 sources."@npmcli/promise-spawn-1.3.2" 74482 sources."@npmcli/run-script-2.0.0" 74483 - sources."@schematics/angular-13.3.2" 74484 sources."@tootallnate/once-1.1.2" 74485 sources."@yarnpkg/lockfile-1.1.0" 74486 sources."abbrev-1.1.1" ··· 74545 sources."hosted-git-info-4.1.0" 74546 sources."http-cache-semantics-4.1.0" 74547 sources."http-proxy-agent-4.0.1" 74548 - sources."https-proxy-agent-5.0.0" 74549 sources."humanize-ms-1.2.1" 74550 sources."iconv-lite-0.4.24" 74551 sources."ieee754-1.2.1" ··· 74852 sources."crc-32-1.2.2" 74853 sources."dateformat-4.6.3" 74854 sources."decompress-response-4.2.1" 74855 - sources."define-properties-1.1.3" 74856 sources."diff3-0.0.3" 74857 sources."duplexify-4.1.2" 74858 sources."end-of-stream-1.4.4" ··· 74883 sources."handlebars-4.7.7" 74884 sources."has-1.0.3" 74885 sources."has-flag-3.0.0" 74886 sources."has-symbols-1.0.3" 74887 sources."hpagent-0.1.2" 74888 sources."ignore-5.2.0" ··· 75060 sources."pascal-case-3.1.2" 75061 sources."source-map-0.7.3" 75062 sources."svelte-3.47.0" 75063 - sources."svelte2tsx-0.5.8" 75064 sources."tslib-2.3.1" 75065 sources."typescript-4.6.3" 75066 sources."vscode-css-languageservice-5.4.1" ··· 75399 sources."@tsconfig/node14-1.0.1" 75400 sources."@tsconfig/node16-1.0.2" 75401 sources."@types/minimist-1.2.2" 75402 - sources."@types/node-17.0.23" 75403 sources."@types/normalize-package-data-2.4.1" 75404 sources."@types/parse-json-4.0.0" 75405 sources."JSONStream-1.3.5" ··· 75629 sources."@types/json-buffer-3.0.0" 75630 sources."@types/keyv-3.1.4" 75631 sources."@types/minimatch-3.0.5" 75632 - sources."@types/node-17.0.23" 75633 sources."@types/normalize-package-data-2.4.1" 75634 sources."@types/responselike-1.0.0" 75635 sources."abort-controller-3.0.0" ··· 75717 sources."hosted-git-info-4.1.0" 75718 sources."http-cache-semantics-4.1.0" 75719 sources."http2-wrapper-1.0.3" 75720 - sources."https-proxy-agent-5.0.0" 75721 sources."iconv-lite-0.4.24" 75722 sources."ieee754-1.2.1" 75723 sources."indent-string-4.0.0" ··· 75915 sources."@hyperswarm/hypersign-2.1.1" 75916 sources."@hyperswarm/network-2.1.0" 75917 sources."@leichtgewicht/ip-codec-2.0.3" 75918 - sources."@types/node-17.0.23" 75919 sources."abstract-extension-3.1.1" 75920 sources."abstract-leveldown-6.2.3" 75921 sources."acorn-8.7.0" ··· 76311 sources."@types/markdown-it-12.2.3" 76312 sources."@types/mdurl-1.0.2" 76313 sources."@types/minimatch-3.0.5" 76314 - sources."@types/node-17.0.23" 76315 sources."@types/tough-cookie-2.3.8" 76316 sources."abbrev-1.1.1" 76317 sources."abort-controller-3.0.0" ··· 76342 sources."assert-plus-1.0.0" 76343 sources."assign-symbols-1.0.0" 76344 sources."ast-types-0.9.6" 76345 - sources."async-2.6.3" 76346 sources."async-iter-stream-1.2.0" 76347 sources."asynckit-0.4.0" 76348 sources."atob-2.1.2" ··· 76525 sources."fast-json-stable-stringify-2.1.0" 76526 sources."fast-levenshtein-2.0.6" 76527 sources."fastq-1.13.0" 76528 - sources."fetch-cookie-0.10.1" 76529 (sources."figures-2.0.0" // { 76530 dependencies = [ 76531 sources."escape-string-regexp-1.0.5" ··· 76613 sources."hash-base-3.1.0" 76614 sources."hasurl-1.0.0" 76615 sources."http-signature-1.2.0" 76616 - sources."https-proxy-agent-5.0.0" 76617 sources."iconv-lite-0.4.24" 76618 sources."ignore-5.2.0" 76619 sources."ignore-walk-3.0.4" ··· 76820 sources."pify-4.0.1" 76821 sources."pluralize-7.0.0" 76822 sources."posix-character-classes-0.1.1" 76823 - (sources."pouchdb-abstract-mapreduce-7.2.2" // { 76824 dependencies = [ 76825 - sources."buffer-from-1.1.1" 76826 sources."immediate-3.3.0" 76827 - sources."pouchdb-binary-utils-7.2.2" 76828 - sources."pouchdb-collections-7.2.2" 76829 - sources."pouchdb-errors-7.2.2" 76830 - sources."pouchdb-md5-7.2.2" 76831 - sources."pouchdb-utils-7.2.2" 76832 - sources."spark-md5-3.0.1" 76833 - sources."uuid-8.1.0" 76834 ]; 76835 }) 76836 sources."pouchdb-adapter-node-websql-7.0.0" 76837 sources."pouchdb-adapter-utils-7.0.0" 76838 sources."pouchdb-adapter-websql-core-7.0.0" 76839 sources."pouchdb-binary-utils-7.0.0" 76840 - (sources."pouchdb-changes-filter-7.2.2" // { 76841 dependencies = [ 76842 - sources."buffer-from-1.1.1" 76843 sources."immediate-3.3.0" 76844 - sources."pouchdb-binary-utils-7.2.2" 76845 - sources."pouchdb-collections-7.2.2" 76846 - sources."pouchdb-errors-7.2.2" 76847 - sources."pouchdb-md5-7.2.2" 76848 - sources."pouchdb-utils-7.2.2" 76849 - sources."spark-md5-3.0.1" 76850 - sources."uuid-8.1.0" 76851 ]; 76852 }) 76853 - sources."pouchdb-collate-7.2.2" 76854 sources."pouchdb-collections-7.0.0" 76855 - (sources."pouchdb-core-7.2.2" // { 76856 dependencies = [ 76857 - sources."buffer-from-1.1.1" 76858 sources."immediate-3.3.0" 76859 - sources."pouchdb-binary-utils-7.2.2" 76860 - sources."pouchdb-collections-7.2.2" 76861 - sources."pouchdb-errors-7.2.2" 76862 - sources."pouchdb-md5-7.2.2" 76863 - sources."pouchdb-merge-7.2.2" 76864 - sources."pouchdb-utils-7.2.2" 76865 - sources."spark-md5-3.0.1" 76866 - sources."uuid-8.1.0" 76867 ]; 76868 }) 76869 (sources."pouchdb-errors-7.0.0" // { ··· 76872 ]; 76873 }) 76874 sources."pouchdb-extend-0.1.2" 76875 - (sources."pouchdb-fetch-7.2.2" // { 76876 - dependencies = [ 76877 - sources."node-fetch-2.6.0" 76878 - ]; 76879 - }) 76880 - (sources."pouchdb-find-7.2.2" // { 76881 dependencies = [ 76882 - sources."buffer-from-1.1.1" 76883 sources."immediate-3.3.0" 76884 - sources."pouchdb-binary-utils-7.2.2" 76885 - sources."pouchdb-collections-7.2.2" 76886 - sources."pouchdb-errors-7.2.2" 76887 - sources."pouchdb-md5-7.2.2" 76888 - sources."pouchdb-utils-7.2.2" 76889 - sources."spark-md5-3.0.1" 76890 - sources."uuid-8.1.0" 76891 ]; 76892 }) 76893 sources."pouchdb-json-7.0.0" 76894 - (sources."pouchdb-mapreduce-utils-7.2.2" // { 76895 dependencies = [ 76896 - sources."buffer-from-1.1.1" 76897 sources."immediate-3.3.0" 76898 - sources."pouchdb-binary-utils-7.2.2" 76899 - sources."pouchdb-collections-7.2.2" 76900 - sources."pouchdb-errors-7.2.2" 76901 - sources."pouchdb-md5-7.2.2" 76902 - sources."pouchdb-utils-7.2.2" 76903 - sources."spark-md5-3.0.1" 76904 - sources."uuid-8.1.0" 76905 ]; 76906 }) 76907 sources."pouchdb-md5-7.0.0" 76908 sources."pouchdb-merge-7.0.0" 76909 sources."pouchdb-promise-5.4.3" 76910 - (sources."pouchdb-selector-core-7.2.2" // { 76911 dependencies = [ 76912 - sources."buffer-from-1.1.1" 76913 sources."immediate-3.3.0" 76914 - sources."pouchdb-binary-utils-7.2.2" 76915 - sources."pouchdb-collections-7.2.2" 76916 - sources."pouchdb-errors-7.2.2" 76917 - sources."pouchdb-md5-7.2.2" 76918 - sources."pouchdb-utils-7.2.2" 76919 - sources."spark-md5-3.0.1" 76920 - sources."uuid-8.1.0" 76921 ]; 76922 }) 76923 (sources."pouchdb-utils-7.0.0" // { ··· 77340 sources."@types/estree-0.0.51" 77341 sources."@types/json-schema-7.0.11" 77342 sources."@types/json5-0.0.29" 77343 - sources."@types/node-17.0.23" 77344 sources."@types/parse-json-4.0.0" 77345 sources."@webassemblyjs/ast-1.11.1" 77346 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 77379 sources."buffer-5.7.1" 77380 sources."buffer-from-1.1.2" 77381 sources."callsites-3.1.0" 77382 - sources."caniuse-lite-1.0.30001331" 77383 sources."chalk-3.0.0" 77384 sources."chardet-0.7.0" 77385 sources."chokidar-3.5.3" ··· 77398 sources."cross-spawn-7.0.3" 77399 sources."deepmerge-4.2.2" 77400 sources."defaults-1.0.3" 77401 - sources."electron-to-chromium-1.4.107" 77402 sources."emoji-regex-8.0.0" 77403 sources."end-of-stream-1.4.4" 77404 sources."enhanced-resolve-5.9.3" ··· 77783 sources."async-limiter-1.0.1" 77784 sources."asynckit-0.4.0" 77785 sources."atob-2.1.2" 77786 - (sources."aws-sdk-2.1113.0" // { 77787 dependencies = [ 77788 sources."uuid-3.3.2" 77789 ]; ··· 77828 ]; 77829 }) 77830 sources."deep-copy-1.4.2" 77831 - sources."define-properties-1.1.3" 77832 sources."delayed-stream-1.0.0" 77833 sources."denque-1.5.1" 77834 sources."depd-1.1.2" ··· 77883 sources."har-validator-5.1.5" 77884 sources."has-1.0.3" 77885 sources."has-flag-3.0.0" 77886 sources."has-symbols-1.0.3" 77887 sources."helmet-4.6.0" 77888 sources."http-errors-1.7.2" ··· 78260 sources."@types/koa-compose-3.2.5" 78261 sources."@types/long-4.0.1" 78262 sources."@types/mime-1.3.2" 78263 - sources."@types/node-17.0.23" 78264 sources."@types/normalize-package-data-2.4.1" 78265 sources."@types/qs-6.9.7" 78266 sources."@types/range-parser-1.2.4" ··· 78275 }) 78276 sources."@vue/cli-ui-addon-webpack-5.0.4" 78277 sources."@vue/cli-ui-addon-widgets-5.0.4" 78278 - sources."@vue/compiler-core-3.2.32" 78279 - sources."@vue/compiler-dom-3.2.32" 78280 - sources."@vue/shared-3.2.32" 78281 (sources."@wry/equality-0.1.11" // { 78282 dependencies = [ 78283 sources."tslib-1.14.1" ··· 78330 sources."arrify-2.0.1" 78331 sources."assign-symbols-1.0.0" 78332 sources."ast-types-0.14.2" 78333 - sources."async-2.6.3" 78334 sources."async-retry-1.3.3" 78335 sources."at-least-node-1.0.0" 78336 sources."atob-2.1.2" ··· 78386 }) 78387 sources."call-bind-1.0.2" 78388 sources."camelcase-6.3.0" 78389 - sources."caniuse-lite-1.0.30001331" 78390 sources."caw-2.0.1" 78391 sources."chalk-4.1.2" 78392 sources."chardet-0.7.0" ··· 78439 sources."cookie-0.4.2" 78440 sources."cookie-signature-1.0.6" 78441 sources."copy-descriptor-0.1.1" 78442 - (sources."core-js-compat-3.21.1" // { 78443 dependencies = [ 78444 sources."semver-7.0.0" 78445 ]; 78446 }) 78447 - sources."core-js-pure-3.21.1" 78448 sources."core-util-is-1.0.3" 78449 sources."cors-2.8.5" 78450 (sources."cross-spawn-6.0.5" // { ··· 78490 sources."deepmerge-4.2.2" 78491 sources."defaults-1.0.3" 78492 sources."define-lazy-prop-2.0.0" 78493 - sources."define-properties-1.1.3" 78494 sources."define-property-2.0.2" 78495 sources."depd-1.1.2" 78496 sources."deprecated-decorator-0.1.6" ··· 78507 sources."easy-stack-1.0.1" 78508 sources."ee-first-1.1.1" 78509 sources."ejs-3.1.6" 78510 - sources."electron-to-chromium-1.4.107" 78511 sources."emoji-regex-8.0.0" 78512 sources."encodeurl-1.0.2" 78513 sources."end-of-stream-1.4.4" 78514 sources."entities-2.2.0" 78515 sources."envinfo-7.8.1" 78516 sources."error-ex-1.3.2" 78517 - sources."es-abstract-1.19.4" 78518 sources."es-to-primitive-1.2.1" 78519 sources."escalade-3.1.1" 78520 sources."escape-html-1.0.3" ··· 78612 sources."which-2.0.2" 78613 ]; 78614 }) 78615 - sources."flow-parser-0.176.0" 78616 sources."for-each-0.3.3" 78617 sources."for-in-1.0.2" 78618 sources."forwarded-0.2.0" ··· 78669 sources."has-1.0.3" 78670 sources."has-bigints-1.0.1" 78671 sources."has-flag-4.0.0" 78672 sources."has-symbol-support-x-1.4.2" 78673 sources."has-symbols-1.0.3" 78674 sources."has-to-string-tag-x-1.4.1" ··· 79446 sources."@types/minimist-1.2.2" 79447 sources."@types/ms-0.7.31" 79448 sources."@types/nlcst-1.0.0" 79449 - sources."@types/node-17.0.23" 79450 sources."@types/normalize-package-data-2.4.1" 79451 sources."@types/parse5-6.0.3" 79452 sources."@types/supports-color-8.1.1" ··· 79953 sources."balanced-match-1.0.2" 79954 sources."brace-expansion-1.1.11" 79955 sources."browserslist-4.20.2" 79956 - sources."caniuse-lite-1.0.30001331" 79957 sources."chalk-2.4.2" 79958 sources."color-convert-1.9.3" 79959 sources."color-name-1.1.3" ··· 79963 sources."convert-source-map-1.8.0" 79964 sources."debug-4.3.4" 79965 sources."ejs-3.1.6" 79966 - sources."electron-to-chromium-1.4.107" 79967 sources."ensure-posix-path-1.1.1" 79968 sources."escalade-3.1.1" 79969 sources."escape-string-regexp-1.0.5" ··· 80069 sources."argparse-1.0.10" 80070 sources."asn1-0.2.6" 80071 sources."assert-plus-1.0.0" 80072 - sources."async-2.6.3" 80073 sources."asynckit-0.4.0" 80074 sources."aws-sign2-0.7.0" 80075 sources."aws4-1.11.0" ··· 80254 dependencies = [ 80255 sources."@types/glob-7.2.0" 80256 sources."@types/minimatch-3.0.5" 80257 - sources."@types/node-17.0.23" 80258 sources."balanced-match-1.0.2" 80259 sources."brace-expansion-1.1.11" 80260 sources."chromium-pickle-js-0.2.0" ··· 80339 }; 80340 dependencies = [ 80341 sources."browserslist-4.20.2" 80342 - sources."caniuse-lite-1.0.30001331" 80343 - sources."electron-to-chromium-1.4.107" 80344 sources."escalade-3.1.1" 80345 sources."fraction.js-4.2.0" 80346 sources."node-releases-2.0.3" ··· 80368 }; 80369 dependencies = [ 80370 sources."@tootallnate/once-1.1.2" 80371 - sources."@types/node-17.0.23" 80372 sources."@types/yauzl-2.10.0" 80373 sources."agent-base-6.0.2" 80374 sources."ansi-escapes-4.3.2" 80375 sources."ansi-regex-5.0.1" 80376 sources."ansi-styles-4.3.0" 80377 sources."ast-types-0.13.4" 80378 - (sources."aws-sdk-2.1113.0" // { 80379 dependencies = [ 80380 sources."uuid-3.3.2" 80381 ]; ··· 80454 sources."htmlparser2-6.1.0" 80455 sources."http-errors-2.0.0" 80456 sources."http-proxy-agent-4.0.1" 80457 - sources."https-proxy-agent-5.0.0" 80458 sources."iconv-lite-0.4.24" 80459 sources."ieee754-1.1.13" 80460 sources."inflight-1.0.6" ··· 80507 (sources."puppeteer-10.4.0" // { 80508 dependencies = [ 80509 sources."debug-4.3.1" 80510 ]; 80511 }) 80512 sources."querystring-0.2.0" ··· 80993 balanceofsatoshis = nodeEnv.buildNodePackage { 80994 name = "balanceofsatoshis"; 80995 packageName = "balanceofsatoshis"; 80996 - version = "11.64.2"; 80997 src = fetchurl { 80998 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.64.2.tgz"; 80999 - sha512 = "sYju0HhL1tlxwa85jBioJZ7Cgbzbuy8Xx2MrE084KZ/00KEfVOMEEKoAjtKIK4BanQCeDA/EzuBjEksDx8K9Ag=="; 81000 }; 81001 dependencies = [ 81002 - (sources."@alexbosworth/caporal-1.4.1" // { 81003 dependencies = [ 81004 sources."colorette-1.4.0" 81005 ]; ··· 81020 sources."string_decoder-1.3.0" 81021 ]; 81022 }) 81023 sources."@grammyjs/types-2.6.0" 81024 - sources."@grpc/grpc-js-1.6.1" 81025 sources."@grpc/proto-loader-0.6.9" 81026 sources."@handsontable/formulajs-2.0.2" 81027 sources."@mitmaro/errors-1.0.0" ··· 81045 sources."@types/express-serve-static-core-4.17.28" 81046 sources."@types/long-4.0.1" 81047 sources."@types/mime-1.3.2" 81048 - sources."@types/node-17.0.23" 81049 sources."@types/qs-6.9.7" 81050 sources."@types/range-parser-1.2.4" 81051 sources."@types/request-2.48.8" 81052 sources."@types/serve-static-1.13.10" 81053 - sources."@types/tough-cookie-4.0.1" 81054 - sources."@types/ws-8.5.3" 81055 sources."abort-controller-3.0.0" 81056 sources."accepts-1.3.8" 81057 (sources."agent-base-6.0.2" // { ··· 81100 dependencies = [ 81101 sources."ansi-styles-4.3.0" 81102 sources."chalk-4.1.2" 81103 sources."supports-color-7.2.0" 81104 sources."type-fest-0.20.2" 81105 ]; ··· 81136 sources."clone-1.0.4" 81137 sources."clone-response-1.0.2" 81138 sources."code-point-at-1.1.0" 81139 - sources."color-convert-2.0.1" 81140 - sources."color-name-1.1.4" 81141 sources."colorette-2.0.16" 81142 sources."colors-1.4.0" 81143 sources."combined-stream-1.0.8" 81144 sources."commander-6.2.1" 81145 sources."concat-stream-1.6.2" ··· 81158 sources."crypto-js-4.1.1" 81159 sources."crypto-random-string-2.0.0" 81160 sources."csv-parse-5.0.4" 81161 - sources."cycle-1.0.3" 81162 sources."debug-2.6.9" 81163 sources."decompress-response-3.3.0" 81164 sources."deep-extend-0.6.0" ··· 81174 sources."ecpair-2.0.1" 81175 sources."ee-first-1.1.1" 81176 sources."emoji-regex-8.0.0" 81177 sources."encodeurl-1.0.2" 81178 sources."end-of-stream-1.4.4" 81179 sources."escalade-3.1.1" ··· 81197 }) 81198 sources."extend-3.0.2" 81199 sources."external-editor-1.1.1" 81200 - sources."eyes-0.1.8" 81201 sources."fast-deep-equal-3.1.3" 81202 sources."fast-levenshtein-2.0.6" 81203 sources."figures-1.7.0" 81204 (sources."finalhandler-1.1.2" // { 81205 dependencies = [ ··· 81207 sources."statuses-1.5.0" 81208 ]; 81209 }) 81210 sources."form-data-2.5.1" 81211 sources."forwarded-0.2.0" 81212 sources."fresh-0.5.2" ··· 81220 sources."ini-2.0.0" 81221 ]; 81222 }) 81223 - (sources."goldengate-11.1.1" // { 81224 - dependencies = [ 81225 - sources."bolt07-1.8.0" 81226 - (sources."invoices-2.0.4" // { 81227 - dependencies = [ 81228 - sources."tiny-secp256k1-2.2.0" 81229 - ]; 81230 - }) 81231 - sources."ln-service-53.10.0" 81232 - ]; 81233 - }) 81234 sources."got-9.6.0" 81235 sources."graceful-fs-4.2.10" 81236 - (sources."grammy-1.7.1" // { 81237 dependencies = [ 81238 sources."debug-4.3.4" 81239 sources."ms-2.1.2" ··· 81271 sources."chalk-4.1.2" 81272 sources."cli-cursor-3.1.0" 81273 sources."cli-width-3.0.0" 81274 sources."external-editor-3.1.0" 81275 sources."figures-3.2.0" 81276 sources."mute-stream-0.0.8" ··· 81278 sources."restore-cursor-3.1.0" 81279 sources."supports-color-7.2.0" 81280 sources."tmp-0.0.33" 81281 - sources."type-fest-0.21.3" 81282 ]; 81283 }) 81284 - (sources."invoices-2.0.5" // { 81285 dependencies = [ 81286 - sources."bolt09-0.2.2" 81287 ]; 81288 }) 81289 sources."ip-1.1.5" 81290 sources."ipaddr.js-1.9.1" 81291 sources."is-accessor-descriptor-1.0.0" 81292 sources."is-buffer-1.1.6" 81293 sources."is-ci-2.0.0" 81294 sources."is-data-descriptor-1.0.0" ··· 81304 }) 81305 sources."is-obj-2.0.0" 81306 sources."is-path-inside-3.0.3" 81307 sources."is-typedarray-1.0.0" 81308 sources."is-unicode-supported-0.1.0" 81309 sources."is-yarn-global-0.3.0" 81310 sources."isarray-1.0.0" 81311 - sources."isstream-0.1.2" 81312 sources."json-buffer-3.0.0" 81313 sources."json-schema-traverse-1.0.0" 81314 sources."json2csv-5.0.7" ··· 81316 sources."jstat-1.9.5" 81317 sources."keyv-3.1.0" 81318 sources."kind-of-6.0.3" 81319 sources."latest-version-5.1.0" 81320 - (sources."lightning-5.9.0" // { 81321 dependencies = [ 81322 sources."asyncjs-util-1.2.8" 81323 sources."body-parser-1.19.2" 81324 sources."bolt07-1.8.0" 81325 sources."bolt09-0.2.2" 81326 sources."depd-1.1.2" 81327 sources."http-errors-1.8.1" 81328 - (sources."invoices-2.0.4" // { 81329 - dependencies = [ 81330 - sources."bolt09-0.2.1" 81331 - sources."tiny-secp256k1-2.2.0" 81332 - ]; 81333 - }) 81334 sources."on-finished-2.3.0" 81335 sources."psbt-2.0.0" 81336 sources."qs-6.9.7" 81337 sources."raw-body-2.4.3" 81338 sources."statuses-1.5.0" 81339 ]; 81340 }) 81341 (sources."ln-accounting-5.0.6" // { 81342 dependencies = [ 81343 sources."@grpc/grpc-js-1.5.7" 81344 - sources."@types/node-17.0.21" 81345 - sources."@types/ws-8.5.2" 81346 sources."body-parser-1.19.2" 81347 sources."bolt07-1.8.0" 81348 sources."bolt09-0.2.2" ··· 81354 ]; 81355 }) 81356 sources."http-errors-1.8.1" 81357 - sources."invoices-2.0.4" 81358 - (sources."lightning-5.8.2" // { 81359 - dependencies = [ 81360 - sources."asyncjs-util-1.2.8" 81361 - sources."tiny-secp256k1-2.2.1" 81362 - ]; 81363 - }) 81364 (sources."ln-service-53.10.0" // { 81365 dependencies = [ 81366 sources."@grpc/grpc-js-1.6.1" 81367 - sources."@types/node-17.0.23" 81368 - sources."@types/ws-8.5.3" 81369 sources."asyncjs-util-1.2.8" 81370 sources."lightning-5.9.0" 81371 - sources."tiny-secp256k1-2.2.1" 81372 - sources."type-fest-2.12.2" 81373 ]; 81374 }) 81375 sources."on-finished-2.3.0" 81376 - (sources."p2tr-1.3.0" // { 81377 - dependencies = [ 81378 - sources."tiny-secp256k1-2.2.1" 81379 - ]; 81380 - }) 81381 sources."psbt-2.0.0" 81382 sources."qs-6.9.7" 81383 sources."raw-body-2.4.3" 81384 sources."statuses-1.5.0" 81385 - sources."tiny-secp256k1-2.2.0" 81386 - sources."type-fest-2.12.0" 81387 - sources."uint8array-tools-0.0.7" 81388 ]; 81389 }) 81390 (sources."ln-service-53.11.0" // { 81391 dependencies = [ 81392 sources."@grpc/grpc-js-1.6.2" 81393 - sources."bolt09-0.2.3" 81394 - sources."lightning-5.10.1" 81395 ]; 81396 }) 81397 (sources."ln-sync-3.12.0" // { 81398 dependencies = [ 81399 - (sources."invoices-2.0.4" // { 81400 dependencies = [ 81401 sources."bolt07-1.8.0" 81402 - sources."tiny-secp256k1-2.2.0" 81403 ]; 81404 }) 81405 (sources."ln-service-53.10.0" // { ··· 81407 sources."bolt07-1.8.0" 81408 ]; 81409 }) 81410 ]; 81411 }) 81412 (sources."ln-telegram-3.21.1" // { 81413 dependencies = [ 81414 - sources."body-parser-1.19.2" 81415 sources."bolt07-1.8.0" 81416 sources."bolt09-0.2.2" 81417 sources."depd-1.1.2" 81418 sources."http-errors-1.8.1" 81419 - sources."invoices-2.0.4" 81420 - (sources."lightning-5.8.6" // { 81421 dependencies = [ 81422 sources."asyncjs-util-1.2.8" 81423 - sources."tiny-secp256k1-2.2.1" 81424 ]; 81425 }) 81426 sources."ln-service-53.10.0" 81427 (sources."ln-sync-3.11.1" // { 81428 dependencies = [ 81429 sources."asyncjs-util-1.2.8" 81430 sources."ln-service-53.9.4" 81431 - sources."tiny-secp256k1-2.2.1" 81432 ]; 81433 }) 81434 sources."on-finished-2.3.0" 81435 sources."psbt-2.0.0" 81436 sources."qs-6.9.7" 81437 sources."raw-body-2.4.3" 81438 sources."statuses-1.5.0" 81439 - sources."tiny-secp256k1-2.2.0" 81440 - sources."uint8array-tools-0.0.7" 81441 ]; 81442 }) 81443 sources."lodash-4.17.21" ··· 81453 dependencies = [ 81454 sources."ansi-styles-4.3.0" 81455 sources."chalk-4.1.2" 81456 sources."supports-color-7.2.0" 81457 ]; 81458 }) 81459 sources."long-4.0.0" 81460 sources."lowercase-keys-1.0.1" 81461 sources."lru-cache-6.0.0" ··· 81497 sources."on-finished-2.4.1" 81498 sources."on-headers-1.0.2" 81499 sources."once-1.4.0" 81500 sources."onetime-1.1.0" 81501 (sources."ora-5.4.1" // { 81502 dependencies = [ 81503 sources."ansi-styles-4.3.0" 81504 sources."chalk-4.1.2" 81505 sources."cli-cursor-3.1.0" 81506 sources."onetime-5.1.2" 81507 sources."restore-cursor-3.1.0" 81508 sources."supports-color-7.2.0" ··· 81520 (sources."paid-services-3.14.5" // { 81521 dependencies = [ 81522 sources."@alexbosworth/fiat-1.0.1" 81523 - sources."@grpc/grpc-js-1.5.7" 81524 - sources."@types/node-17.0.21" 81525 - sources."@types/ws-8.5.2" 81526 sources."asyncjs-util-1.2.8" 81527 sources."body-parser-1.19.2" 81528 sources."bolt01-1.2.3" ··· 81530 sources."bolt09-0.2.2" 81531 sources."depd-1.1.2" 81532 sources."http-errors-1.8.1" 81533 - (sources."invoices-2.0.4" // { 81534 - dependencies = [ 81535 - sources."tiny-secp256k1-2.2.0" 81536 - ]; 81537 - }) 81538 sources."lightning-5.8.6" 81539 sources."ln-service-53.9.4" 81540 (sources."ln-sync-3.11.0" // { 81541 dependencies = [ 81542 sources."lightning-5.8.2" 81543 sources."ln-service-53.9.3" 81544 ]; 81545 }) 81546 sources."on-finished-2.3.0" ··· 81548 sources."qs-6.9.7" 81549 sources."raw-body-2.4.3" 81550 sources."statuses-1.5.0" 81551 - sources."type-fest-2.12.0" 81552 ]; 81553 }) 81554 sources."parseurl-1.3.3" ··· 81587 sources."rx-4.1.0" 81588 sources."rxjs-7.5.5" 81589 sources."safe-buffer-5.1.2" 81590 sources."safer-buffer-2.1.2" 81591 sources."sanitize-filename-1.6.3" 81592 sources."semver-7.3.7" ··· 81610 sources."sha.js-2.4.11" 81611 sources."side-channel-1.0.4" 81612 sources."signal-exit-3.0.7" 81613 sources."sjcl-1.0.8" 81614 (sources."slice-ansi-4.0.0" // { 81615 dependencies = [ 81616 sources."ansi-styles-4.3.0" 81617 ]; 81618 }) 81619 sources."smart-buffer-4.2.0" ··· 81642 sources."strip-ansi-3.0.1" 81643 ]; 81644 }) 81645 sources."through-2.3.8" 81646 sources."tiny-emitter-2.1.0" 81647 - (sources."tiny-secp256k1-2.2.1" // { 81648 - dependencies = [ 81649 - sources."uint8array-tools-0.0.7" 81650 - ]; 81651 - }) 81652 sources."tmp-0.0.29" 81653 sources."to-readable-stream-1.0.0" 81654 sources."toidentifier-1.0.1" 81655 sources."tr46-0.0.3" 81656 sources."truncate-utf8-bytes-1.0.2" 81657 sources."tslib-2.3.1" 81658 sources."tweetnacl-1.0.3" 81659 sources."tweetnacl-util-0.15.1" 81660 - sources."type-fest-2.12.2" 81661 sources."type-is-1.6.18" 81662 sources."typedarray-0.0.6" 81663 sources."typedarray-to-buffer-3.1.5" 81664 sources."typeforce-1.18.0" 81665 - sources."uint8array-tools-0.0.6" 81666 sources."unique-string-2.0.0" 81667 sources."unpipe-1.0.0" 81668 (sources."update-notifier-5.1.0" // { 81669 dependencies = [ 81670 sources."ansi-styles-4.3.0" 81671 sources."chalk-4.1.2" 81672 sources."import-lazy-2.1.0" 81673 sources."supports-color-7.2.0" 81674 ]; ··· 81686 sources."widest-line-3.1.0" 81687 sources."wif-2.0.6" 81688 sources."window-size-1.1.1" 81689 - (sources."winston-2.4.5" // { 81690 dependencies = [ 81691 - sources."async-1.0.0" 81692 - sources."colors-1.0.3" 81693 ]; 81694 }) 81695 (sources."wrap-ansi-7.0.0" // { 81696 dependencies = [ 81697 sources."ansi-styles-4.3.0" 81698 ]; 81699 }) 81700 sources."wrappy-1.0.2" ··· 82236 sources."create-hmac-1.1.7" 82237 sources."crypto-browserify-3.12.0" 82238 sources."dash-ast-1.0.0" 82239 - sources."define-properties-1.1.3" 82240 sources."defined-1.0.0" 82241 sources."deps-sort-2.0.1" 82242 sources."des.js-1.0.1" ··· 82253 sources."bn.js-4.12.0" 82254 ]; 82255 }) 82256 - sources."es-abstract-1.19.4" 82257 sources."es-to-primitive-1.2.1" 82258 sources."events-3.3.0" 82259 sources."evp_bytestokey-1.0.3" ··· 82267 sources."glob-7.2.0" 82268 sources."has-1.0.3" 82269 sources."has-bigints-1.0.1" 82270 sources."has-symbols-1.0.3" 82271 sources."has-tostringtag-1.0.0" 82272 (sources."hash-base-3.1.0" // { ··· 82422 sources."@types/component-emitter-1.2.11" 82423 sources."@types/cookie-0.4.1" 82424 sources."@types/cors-2.8.12" 82425 - sources."@types/node-17.0.23" 82426 sources."accepts-1.3.8" 82427 sources."ansi-regex-2.1.1" 82428 sources."ansi-styles-2.2.1" ··· 83128 sources."@protobufjs/pool-1.1.0" 83129 sources."@protobufjs/utf8-1.1.0" 83130 sources."@types/long-4.0.1" 83131 - sources."@types/node-17.0.23" 83132 sources."addr-to-ip-port-1.5.4" 83133 sources."airplay-js-0.2.16" 83134 sources."ajv-6.12.6" ··· 83190 sources."co-3.1.0" 83191 sources."codepage-1.4.0" 83192 sources."combined-stream-1.0.8" 83193 - sources."commander-9.1.0" 83194 sources."compact2string-1.4.1" 83195 sources."concat-map-0.0.1" 83196 (sources."concat-stream-2.0.0" // { ··· 84135 cdk8s-cli = nodeEnv.buildNodePackage { 84136 name = "cdk8s-cli"; 84137 packageName = "cdk8s-cli"; 84138 - version = "1.0.146"; 84139 src = fetchurl { 84140 - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.146.tgz"; 84141 - sha512 = "DPTpfMPJFC82Qqyx7Ci5XYwJ6bOE1UWozEw9lbw70nTEPoCWfO2Yu45A/68491xVp22eRbMQ0wbP7eSHRtCS5Q=="; 84142 }; 84143 dependencies = [ 84144 sources."@jsii/check-node-1.56.0" ··· 84146 sources."@nodelib/fs.scandir-2.1.5" 84147 sources."@nodelib/fs.stat-2.0.5" 84148 sources."@nodelib/fs.walk-1.2.8" 84149 - sources."@types/node-12.20.47" 84150 sources."@xmldom/xmldom-0.8.2" 84151 sources."ajv-8.11.0" 84152 sources."ansi-regex-5.0.1" ··· 84157 sources."call-bind-1.0.2" 84158 sources."camelcase-6.3.0" 84159 sources."case-1.6.3" 84160 - sources."cdk8s-1.5.67" 84161 - sources."cdk8s-plus-22-1.0.0-beta.191" 84162 sources."chalk-4.1.2" 84163 sources."cliui-7.0.4" 84164 sources."clone-2.1.2" ··· 84171 sources."color-name-1.1.4" 84172 sources."colors-1.4.0" 84173 sources."commonmark-0.30.0" 84174 - sources."constructs-3.3.266" 84175 - sources."date-format-4.0.6" 84176 sources."debug-4.3.4" 84177 sources."decamelize-5.0.1" 84178 sources."deep-equal-2.0.5" 84179 - sources."define-properties-1.1.3" 84180 sources."detect-indent-5.0.0" 84181 sources."detect-newline-2.1.0" 84182 sources."dot-case-3.0.4" 84183 sources."emoji-regex-8.0.0" 84184 sources."entities-2.0.3" 84185 - sources."es-abstract-1.19.4" 84186 sources."es-get-iterator-1.1.2" 84187 sources."es-to-primitive-1.2.1" 84188 sources."escalade-3.1.1" ··· 84201 ]; 84202 }) 84203 sources."function-bind-1.1.1" 84204 sources."get-caller-file-2.0.5" 84205 sources."get-intrinsic-1.1.1" 84206 sources."get-symbol-description-1.0.0" ··· 84209 sources."has-1.0.3" 84210 sources."has-bigints-1.0.1" 84211 sources."has-flag-4.0.0" 84212 sources."has-symbols-1.0.3" 84213 sources."has-tostringtag-1.0.0" 84214 sources."internal-slot-1.0.3" ··· 84258 sources."yargs-16.2.0" 84259 ]; 84260 }) 84261 - (sources."jsii-srcmak-0.1.529" // { 84262 dependencies = [ 84263 sources."fs-extra-9.1.0" 84264 ]; 84265 }) 84266 sources."json-schema-0.4.0" 84267 sources."json-schema-traverse-1.0.0" 84268 - sources."json2jsii-0.2.190" 84269 sources."jsonfile-6.1.0" 84270 sources."jsonschema-1.4.0" 84271 sources."locate-path-5.0.0" 84272 - sources."log4js-6.4.4" 84273 sources."lower-case-2.0.2" 84274 sources."lru-cache-6.0.0" 84275 sources."mdurl-1.0.1" ··· 84291 sources."picomatch-2.3.1" 84292 sources."punycode-2.1.1" 84293 sources."queue-microtask-1.2.3" 84294 - sources."regexp.prototype.flags-1.4.2" 84295 sources."require-directory-2.1.1" 84296 sources."require-from-string-2.0.2" 84297 sources."require-main-filename-2.0.0" ··· 84309 sources."snake-case-3.0.4" 84310 sources."sort-json-2.0.1" 84311 sources."spdx-license-list-6.5.0" 84312 - sources."sscaff-1.2.256" 84313 - (sources."streamroller-3.0.6" // { 84314 dependencies = [ 84315 sources."fs-extra-10.0.1" 84316 ]; ··· 84391 sources."@nodelib/fs.scandir-2.1.5" 84392 sources."@nodelib/fs.stat-2.0.5" 84393 sources."@nodelib/fs.walk-1.2.8" 84394 - sources."@types/node-17.0.23" 84395 sources."@types/node-fetch-2.6.1" 84396 sources."@xmldom/xmldom-0.8.2" 84397 sources."ansi-regex-5.0.1" ··· 84420 sources."combined-stream-1.0.8" 84421 sources."commonmark-0.30.0" 84422 sources."concat-map-0.0.1" 84423 - sources."constructs-10.0.113" 84424 - sources."date-format-4.0.6" 84425 sources."debug-4.3.4" 84426 sources."decamelize-1.2.0" 84427 sources."deep-equal-2.0.5" 84428 - sources."define-properties-1.1.3" 84429 sources."delayed-stream-1.0.0" 84430 sources."detect-indent-5.0.0" 84431 sources."detect-newline-2.1.0" 84432 sources."emoji-regex-8.0.0" 84433 sources."entities-2.0.3" 84434 - sources."es-abstract-1.19.4" 84435 sources."es-get-iterator-1.1.2" 84436 sources."es-to-primitive-1.2.1" 84437 sources."escalade-3.1.1" ··· 84448 sources."fs-extra-8.1.0" 84449 sources."fs.realpath-1.0.0" 84450 sources."function-bind-1.1.1" 84451 sources."get-caller-file-2.0.5" 84452 sources."get-intrinsic-1.1.1" 84453 sources."get-symbol-description-1.0.0" ··· 84463 sources."has-1.0.3" 84464 sources."has-bigints-1.0.1" 84465 sources."has-flag-3.0.0" 84466 sources."has-symbols-1.0.3" 84467 sources."has-tostringtag-1.0.0" 84468 sources."inflight-1.0.6" ··· 84563 sources."yargs-parser-20.2.9" 84564 ]; 84565 }) 84566 - (sources."jsii-srcmak-0.1.529" // { 84567 dependencies = [ 84568 sources."fs-extra-9.1.0" 84569 sources."jsonfile-6.1.0" ··· 84575 sources."jsonschema-1.4.0" 84576 sources."locate-path-5.0.0" 84577 sources."lodash.isequal-4.5.0" 84578 - sources."log4js-6.4.4" 84579 sources."lru-cache-6.0.0" 84580 sources."mdurl-1.0.1" 84581 sources."merge2-1.4.1" ··· 84608 sources."prettier-2.6.2" 84609 sources."punycode-2.1.1" 84610 sources."queue-microtask-1.2.3" 84611 - sources."regexp.prototype.flags-1.4.2" 84612 sources."require-directory-2.1.1" 84613 sources."require-main-filename-2.0.0" 84614 sources."reserved-words-0.1.2" ··· 84627 sources."sort-json-2.0.1" 84628 sources."source-map-0.5.7" 84629 sources."spdx-license-list-6.5.0" 84630 - (sources."streamroller-3.0.6" // { 84631 dependencies = [ 84632 sources."fs-extra-10.0.1" 84633 sources."jsonfile-6.1.0" ··· 85107 bypassCache = true; 85108 reconstructLock = true; 85109 }; 85110 coc-git = nodeEnv.buildNodePackage { 85111 name = "coc-git"; 85112 packageName = "coc-git"; ··· 85306 sources."@tootallnate/once-1.1.2" 85307 sources."agent-base-6.0.2" 85308 sources."arch-2.2.0" 85309 - sources."async-2.6.3" 85310 sources."await-semaphore-0.1.3" 85311 sources."balanced-match-1.0.2" 85312 sources."big-integer-1.6.51" ··· 85331 sources."which-1.3.1" 85332 ]; 85333 }) 85334 - sources."date-format-4.0.6" 85335 sources."debounce-1.2.1" 85336 sources."debug-4.3.4" 85337 sources."deep-extend-0.6.0" 85338 - sources."define-properties-1.1.3" 85339 sources."duplexer2-0.1.4" 85340 sources."end-of-stream-1.4.4" 85341 - sources."es-abstract-1.19.4" 85342 sources."es-to-primitive-1.2.1" 85343 sources."event-lite-0.1.2" 85344 sources."execa-1.0.0" ··· 85346 sources."fb-watchman-2.0.1" 85347 sources."flatted-3.2.5" 85348 sources."follow-redirects-1.14.9" 85349 - sources."fp-ts-2.11.9" 85350 sources."fs-extra-10.0.1" 85351 sources."fs-minipass-2.1.0" 85352 sources."fs.realpath-1.0.0" ··· 85364 sources."graceful-fs-4.2.10" 85365 sources."has-1.0.3" 85366 sources."has-bigints-1.0.1" 85367 sources."has-symbols-1.0.3" 85368 sources."has-tostringtag-1.0.0" 85369 sources."http-proxy-agent-4.0.1" 85370 - sources."https-proxy-agent-5.0.0" 85371 sources."ieee754-1.2.1" 85372 sources."inflight-1.0.6" 85373 sources."inherits-2.0.4" ··· 85400 ]; 85401 }) 85402 sources."lodash-4.17.21" 85403 - sources."log4js-6.4.4" 85404 sources."lru-cache-6.0.0" 85405 sources."metals-languageclient-0.4.2" 85406 sources."minimatch-3.1.2" ··· 85450 sources."shell-quote-1.7.3" 85451 sources."side-channel-1.0.4" 85452 sources."signal-exit-3.0.7" 85453 - sources."streamroller-3.0.6" 85454 sources."string.prototype.trimend-1.0.4" 85455 sources."string.prototype.trimstart-1.0.4" 85456 (sources."string_decoder-1.1.1" // { ··· 85753 sources."callsites-3.1.0" 85754 sources."camelcase-5.3.1" 85755 sources."camelcase-keys-6.2.2" 85756 - sources."caniuse-lite-1.0.30001331" 85757 (sources."chalk-4.1.2" // { 85758 dependencies = [ 85759 sources."ansi-styles-4.3.0" ··· 85790 sources."domelementtype-1.3.1" 85791 sources."domhandler-2.4.2" 85792 sources."domutils-1.7.0" 85793 - sources."electron-to-chromium-1.4.107" 85794 sources."emoji-regex-8.0.0" 85795 sources."entities-1.1.2" 85796 sources."error-ex-1.3.2" ··· 87109 sources."array-union-2.1.0" 87110 sources."asn1-0.2.6" 87111 sources."assert-plus-1.0.0" 87112 - sources."async-2.6.3" 87113 sources."asynckit-0.4.0" 87114 sources."at-least-node-1.0.0" 87115 sources."atomically-1.7.0" ··· 87316 sources."http-errors-1.8.1" 87317 sources."http-proxy-agent-4.0.1" 87318 sources."http-signature-1.2.0" 87319 - sources."https-proxy-agent-5.0.0" 87320 sources."human-signals-2.1.0" 87321 sources."humanize-ms-1.2.1" 87322 sources."iconv-lite-0.6.3" ··· 87813 sources."@cycle/run-3.4.0" 87814 sources."@cycle/time-0.10.1" 87815 sources."@types/cookiejar-2.1.2" 87816 - sources."@types/node-17.0.23" 87817 sources."@types/superagent-3.8.2" 87818 sources."ansi-escapes-3.2.0" 87819 sources."ansi-regex-2.1.1" ··· 87842 sources."cycle-onionify-4.0.0" 87843 sources."d-1.0.1" 87844 sources."debug-3.2.7" 87845 - sources."define-properties-1.1.3" 87846 sources."delayed-stream-1.0.0" 87847 sources."es5-ext-0.10.60" 87848 sources."es6-iterator-2.0.3" ··· 87871 sources."has-1.0.3" 87872 sources."has-ansi-2.0.0" 87873 sources."has-flag-3.0.0" 87874 sources."has-symbols-1.0.3" 87875 sources."iconv-lite-0.4.24" 87876 sources."inherits-2.0.4" ··· 88150 sources."clear-module-4.1.2" 88151 sources."color-convert-2.0.1" 88152 sources."color-name-1.1.4" 88153 - sources."commander-9.1.0" 88154 sources."comment-json-4.2.2" 88155 sources."concat-map-0.0.1" 88156 sources."configstore-5.0.1" ··· 89030 sources."@babel/template-7.16.7" 89031 sources."@babel/traverse-7.17.9" 89032 sources."@babel/types-7.17.0" 89033 - sources."@blueprintjs/colors-4.0.5" 89034 sources."@blueprintjs/core-3.54.0" 89035 sources."@blueprintjs/icons-3.33.0" 89036 sources."@deltachat/message_parser_wasm-0.3.0" ··· 89062 sources."@types/mapbox-gl-0.54.5" 89063 sources."@types/mime-types-2.1.1" 89064 sources."@types/minimist-1.2.2" 89065 - sources."@types/node-14.18.12" 89066 sources."@types/node-fetch-2.6.1" 89067 sources."@types/prop-types-15.7.5" 89068 sources."@types/rc-1.2.1" 89069 - sources."@types/react-16.14.24" 89070 sources."@types/react-dom-16.9.14" 89071 sources."@types/react-window-1.8.5" 89072 sources."@types/react-window-infinite-loader-1.0.6" ··· 89119 ]; 89120 }) 89121 sources."call-bind-1.0.2" 89122 - sources."caniuse-lite-1.0.30001331" 89123 sources."chalk-2.4.2" 89124 sources."chokidar-2.1.8" 89125 (sources."class-utils-0.3.6" // { ··· 89160 ]; 89161 }) 89162 sources."copy-descriptor-0.1.1" 89163 - (sources."core-js-compat-3.21.1" // { 89164 dependencies = [ 89165 sources."semver-7.0.0" 89166 ]; ··· 89176 sources."deep-equal-1.1.1" 89177 sources."deep-extend-0.6.0" 89178 sources."defer-to-connect-1.1.3" 89179 - sources."define-properties-1.1.3" 89180 sources."define-property-2.0.2" 89181 sources."delayed-stream-1.0.0" 89182 sources."deltachat-node-1.76.0" ··· 89186 sources."duplexer3-0.1.4" 89187 sources."earcut-2.2.3" 89188 sources."electron-14.2.9" 89189 - sources."electron-to-chromium-1.4.107" 89190 sources."emoji-js-clean-4.0.0" 89191 sources."emoji-mart-3.0.1" 89192 sources."emoji-regex-9.2.2" ··· 89251 sources."fs-extra-8.1.0" 89252 sources."fsevents-1.2.13" 89253 sources."function-bind-1.1.1" 89254 sources."gensync-1.0.0-beta.2" 89255 sources."geojson-flatten-1.0.4" 89256 sources."geojson-vt-3.2.1" ··· 89283 sources."gud-1.0.0" 89284 sources."has-1.0.3" 89285 sources."has-flag-3.0.0" 89286 sources."has-symbols-1.0.3" 89287 sources."has-tostringtag-1.0.0" 89288 sources."has-value-1.0.0" ··· 89443 sources."regenerator-runtime-0.13.9" 89444 sources."regenerator-transform-0.15.0" 89445 sources."regex-not-1.0.2" 89446 - sources."regexp.prototype.flags-1.4.2" 89447 sources."regexpu-core-5.0.1" 89448 sources."regjsgen-0.6.0" 89449 (sources."regjsparser-0.8.4" // { ··· 89770 dependencies = [ 89771 sources."@fast-csv/format-4.3.5" 89772 sources."@fast-csv/parse-4.3.6" 89773 - sources."@types/node-14.18.12" 89774 sources."JSONStream-1.3.5" 89775 sources."ajv-6.12.6" 89776 sources."asn1-0.2.6" 89777 sources."assert-plus-1.0.0" 89778 - sources."async-2.6.3" 89779 sources."asynckit-0.4.0" 89780 sources."aws-sdk-2.1097.0" 89781 sources."aws-sign2-0.7.0" ··· 89807 sources."har-schema-2.0.0" 89808 sources."har-validator-5.1.5" 89809 sources."http-signature-1.2.0" 89810 - sources."http-status-1.5.0" 89811 sources."ieee754-1.1.13" 89812 sources."inherits-2.0.4" 89813 sources."ini-2.0.0" ··· 89973 sources."@types/json-buffer-3.0.0" 89974 sources."@types/keyv-3.1.4" 89975 sources."@types/minimatch-3.0.5" 89976 - sources."@types/node-17.0.23" 89977 sources."@types/responselike-1.0.0" 89978 sources."@types/yauzl-2.10.0" 89979 sources."abbrev-1.1.1" ··· 90063 sources."defaults-1.0.3" 90064 sources."defer-to-connect-2.0.1" 90065 sources."define-lazy-prop-2.0.0" 90066 - (sources."define-properties-1.1.3" // { 90067 dependencies = [ 90068 sources."object-keys-1.1.1" 90069 ]; ··· 90163 sources."gauge-4.0.4" 90164 sources."get-caller-file-2.0.5" 90165 sources."get-installed-path-2.1.1" 90166 (sources."get-package-info-1.0.0" // { 90167 dependencies = [ 90168 sources."debug-2.6.9" ··· 90187 sources."har-validator-5.1.5" 90188 sources."has-1.0.3" 90189 sources."has-flag-4.0.0" 90190 sources."has-unicode-2.0.1" 90191 sources."homedir-polyfill-1.0.3" 90192 sources."hosted-git-info-2.8.9" ··· 90194 sources."http-proxy-agent-4.0.1" 90195 sources."http-signature-1.2.0" 90196 sources."http2-wrapper-1.0.3" 90197 - sources."https-proxy-agent-5.0.0" 90198 sources."humanize-ms-1.2.1" 90199 sources."iconv-lite-0.6.3" 90200 sources."ieee754-1.2.1" ··· 90580 sources."callsites-3.1.0" 90581 sources."camelcase-5.3.1" 90582 sources."camelcase-keys-6.2.2" 90583 - sources."caniuse-lite-1.0.30001331" 90584 sources."chalk-2.4.2" 90585 sources."ci-info-2.0.0" 90586 sources."cli-boxes-2.2.1" ··· 90609 ]; 90610 }) 90611 sources."dot-prop-5.3.0" 90612 - sources."electron-to-chromium-1.4.107" 90613 sources."emoji-regex-8.0.0" 90614 sources."emojilib-2.4.0" 90615 sources."end-of-stream-1.4.4" ··· 90875 }) 90876 sources."@fluentui/date-time-utilities-8.5.0" 90877 sources."@fluentui/dom-utilities-2.2.0" 90878 - sources."@fluentui/font-icons-mdl2-8.3.0" 90879 - sources."@fluentui/foundation-legacy-8.2.5" 90880 sources."@fluentui/keyboard-key-0.4.0" 90881 - sources."@fluentui/merge-styles-8.5.0" 90882 - sources."@fluentui/react-8.64.3" 90883 - sources."@fluentui/react-focus-8.5.6" 90884 - sources."@fluentui/react-hooks-8.5.3" 90885 sources."@fluentui/react-window-provider-2.2.0" 90886 sources."@fluentui/set-version-8.2.0" 90887 - sources."@fluentui/style-utilities-8.6.5" 90888 - sources."@fluentui/theme-2.6.4" 90889 - sources."@fluentui/utilities-8.8.1" 90890 (sources."@gulp-sourcemaps/identity-map-2.0.1" // { 90891 dependencies = [ 90892 sources."acorn-6.4.2" ··· 90908 ]; 90909 }) 90910 sources."@humanwhocodes/object-schema-1.2.1" 90911 - sources."@microsoft/load-themed-styles-1.10.257" 90912 sources."@node-rs/crc32-1.5.0" 90913 sources."@node-rs/crc32-android-arm-eabi-1.5.0" 90914 sources."@node-rs/crc32-android-arm64-1.5.0" ··· 91258 }) 91259 sources."default-resolution-2.0.0" 91260 sources."defer-to-connect-1.1.3" 91261 - sources."define-properties-1.1.3" 91262 sources."define-property-2.0.2" 91263 (sources."del-6.0.0" // { 91264 dependencies = [ ··· 91606 sources."has-1.0.3" 91607 sources."has-ansi-2.0.0" 91608 sources."has-flag-4.0.0" 91609 sources."has-symbols-1.0.3" 91610 sources."has-unicode-2.0.1" 91611 sources."has-value-1.0.0" ··· 92508 sources."@types/mime-1.3.2" 92509 sources."@types/minimatch-3.0.5" 92510 sources."@types/minimist-1.2.2" 92511 - sources."@types/node-17.0.23" 92512 sources."@types/normalize-package-data-2.4.1" 92513 sources."@types/parse-json-4.0.0" 92514 sources."@types/q-1.5.5" ··· 92530 ]; 92531 }) 92532 sources."@types/webpack-dev-server-3.11.6" 92533 - sources."@types/webpack-env-1.16.3" 92534 (sources."@types/webpack-sources-3.2.0" // { 92535 dependencies = [ 92536 sources."source-map-0.7.3" ··· 92715 sources."assert-plus-1.0.0" 92716 sources."assign-symbols-1.0.0" 92717 sources."astral-regex-2.0.0" 92718 - sources."async-2.6.3" 92719 sources."async-each-1.0.3" 92720 sources."async-limiter-1.0.1" 92721 sources."asynckit-0.4.0" ··· 92823 sources."camel-case-3.0.0" 92824 sources."camelcase-5.3.1" 92825 sources."caniuse-api-3.0.0" 92826 - sources."caniuse-lite-1.0.30001331" 92827 sources."case-sensitive-paths-webpack-plugin-2.4.0" 92828 sources."caseless-0.12.0" 92829 sources."chalk-2.4.2" ··· 93013 ]; 93014 }) 93015 sources."defaults-1.0.3" 93016 - sources."define-properties-1.1.3" 93017 sources."define-property-2.0.2" 93018 (sources."del-4.1.1" // { 93019 dependencies = [ ··· 93064 sources."ecc-jsbn-0.1.2" 93065 sources."ee-first-1.1.1" 93066 sources."ejs-2.7.4" 93067 - sources."electron-to-chromium-1.4.107" 93068 (sources."elliptic-6.5.4" // { 93069 dependencies = [ 93070 sources."bn.js-4.12.0" ··· 93090 sources."errno-0.1.8" 93091 sources."error-ex-1.3.2" 93092 sources."error-stack-parser-2.0.7" 93093 - sources."es-abstract-1.19.4" 93094 sources."es-to-primitive-1.2.1" 93095 sources."es6-promise-4.2.8" 93096 sources."escalade-3.1.1" ··· 93277 sources."fsevents-2.3.2" 93278 sources."function-bind-1.1.1" 93279 sources."functional-red-black-tree-1.0.1" 93280 sources."get-caller-file-2.0.5" 93281 sources."get-intrinsic-1.1.1" 93282 sources."get-stdin-6.0.0" ··· 93307 sources."has-bigints-1.0.1" 93308 sources."has-cors-1.1.0" 93309 sources."has-flag-3.0.0" 93310 sources."has-symbols-1.0.3" 93311 sources."has-tostringtag-1.0.0" 93312 sources."has-value-1.0.0" ··· 93848 sources."rechoir-0.6.2" 93849 sources."reflect-metadata-0.1.13" 93850 sources."regex-not-1.0.2" 93851 - sources."regexp.prototype.flags-1.4.2" 93852 sources."regexpp-3.2.0" 93853 sources."relateurl-0.2.7" 93854 sources."remove-trailing-separator-1.1.0" ··· 94804 sources."@types/json-schema-7.0.11" 94805 sources."@types/keyv-3.1.4" 94806 sources."@types/minimatch-3.0.5" 94807 - sources."@types/node-17.0.23" 94808 sources."@types/q-1.5.5" 94809 sources."@types/responselike-1.0.0" 94810 sources."@types/retry-0.12.1" ··· 95009 }) 95010 sources."camelcase-6.3.0" 95011 sources."caniuse-api-3.0.0" 95012 - sources."caniuse-lite-1.0.30001331" 95013 (sources."chalk-4.1.2" // { 95014 dependencies = [ 95015 sources."ansi-styles-4.3.0" ··· 95214 sources."defaults-1.0.3" 95215 sources."defer-to-connect-2.0.1" 95216 sources."define-lazy-prop-2.0.0" 95217 - sources."define-properties-1.1.3" 95218 sources."define-property-2.0.2" 95219 (sources."del-6.0.0" // { 95220 dependencies = [ ··· 95267 sources."duplexer3-0.1.4" 95268 sources."duplexify-3.7.1" 95269 sources."ee-first-1.1.1" 95270 - sources."electron-to-chromium-1.4.107" 95271 (sources."elliptic-6.5.4" // { 95272 dependencies = [ 95273 sources."bn.js-4.12.0" ··· 95288 sources."errno-0.1.8" 95289 sources."error-ex-1.3.2" 95290 sources."errorhandler-1.5.1" 95291 - sources."es-abstract-1.19.4" 95292 sources."es-to-primitive-1.2.1" 95293 sources."escalade-3.1.1" 95294 sources."escape-html-1.0.3" ··· 95451 sources."fs.realpath-1.0.0" 95452 sources."fsevents-2.3.2" 95453 sources."function-bind-1.1.1" 95454 sources."gensync-1.0.0-beta.2" 95455 sources."get-caller-file-2.0.5" 95456 sources."get-intrinsic-1.1.1" ··· 95478 sources."has-1.0.3" 95479 sources."has-bigints-1.0.1" 95480 sources."has-flag-3.0.0" 95481 sources."has-symbols-1.0.3" 95482 sources."has-tostringtag-1.0.0" 95483 sources."has-value-1.0.0" ··· 95986 sources."pnp-webpack-plugin-1.7.0" 95987 (sources."portfinder-1.0.28" // { 95988 dependencies = [ 95989 - sources."async-2.6.3" 95990 sources."debug-3.2.7" 95991 ]; 95992 }) ··· 96203 }) 96204 sources."regenerator-runtime-0.13.9" 96205 sources."regex-not-1.0.2" 96206 - sources."regexp.prototype.flags-1.4.2" 96207 sources."registry-auth-token-3.3.2" 96208 sources."registry-url-3.1.0" 96209 sources."relateurl-0.2.7" ··· 96855 sources."@jridgewell/sourcemap-codec-1.4.11" 96856 sources."@jridgewell/trace-mapping-0.3.4" 96857 sources."@types/minimist-1.2.2" 96858 - sources."@types/node-17.0.23" 96859 sources."@types/normalize-package-data-2.4.1" 96860 sources."@types/yauzl-2.10.0" 96861 sources."@types/yoga-layout-1.9.2" ··· 96882 sources."callsites-3.1.0" 96883 sources."camelcase-5.3.1" 96884 sources."camelcase-keys-6.2.2" 96885 - sources."caniuse-lite-1.0.30001331" 96886 sources."chalk-2.4.2" 96887 sources."chownr-1.1.4" 96888 sources."ci-info-2.0.0" ··· 96907 }) 96908 sources."delay-5.0.0" 96909 sources."devtools-protocol-0.0.969999" 96910 - sources."electron-to-chromium-1.4.107" 96911 sources."emoji-regex-8.0.0" 96912 sources."end-of-stream-1.4.4" 96913 sources."error-ex-1.3.2" ··· 97535 sources."@types/duplexify-3.6.1" 97536 sources."@types/json-schema-7.0.11" 97537 sources."@types/long-4.0.1" 97538 - sources."@types/node-17.0.23" 97539 sources."abbrev-1.1.1" 97540 sources."abort-controller-3.0.0" 97541 sources."accepts-1.3.8" ··· 97894 sources."http-errors-2.0.0" 97895 sources."http-proxy-agent-4.0.1" 97896 sources."http-signature-1.2.0" 97897 - sources."https-proxy-agent-5.0.0" 97898 sources."humanize-ms-1.2.1" 97899 sources."iconv-lite-0.4.24" 97900 sources."ieee754-1.2.1" ··· 98105 sources."picomatch-2.3.1" 98106 (sources."portfinder-1.0.28" // { 98107 dependencies = [ 98108 - sources."async-2.6.3" 98109 sources."debug-3.2.7" 98110 ]; 98111 }) ··· 98636 sources."@types/atob-2.1.2" 98637 sources."@types/bn.js-5.1.0" 98638 sources."@types/inquirer-6.5.0" 98639 - sources."@types/node-17.0.23" 98640 sources."@types/pbkdf2-3.1.0" 98641 sources."@types/secp256k1-4.0.3" 98642 sources."@types/through-0.0.30" ··· 98963 sources."debug-2.6.9" 98964 sources."decode-uri-component-0.2.0" 98965 sources."deep-equal-2.0.5" 98966 - sources."define-properties-1.1.3" 98967 sources."define-property-2.0.2" 98968 sources."director-1.2.7" 98969 sources."dot-prop-4.2.1" 98970 sources."duplexer-0.1.2" 98971 sources."enabled-2.0.0" 98972 - sources."es-abstract-1.19.4" 98973 sources."es-get-iterator-1.1.2" 98974 sources."es-to-primitive-1.2.1" 98975 sources."event-stream-3.3.4" ··· 99020 sources."fs.realpath-1.0.0" 99021 sources."fsevents-1.2.13" 99022 sources."function-bind-1.1.1" 99023 sources."get-intrinsic-1.1.1" 99024 sources."get-symbol-description-1.0.0" 99025 sources."get-value-2.0.6" ··· 99032 sources."graceful-fs-4.2.10" 99033 sources."has-1.0.3" 99034 sources."has-bigints-1.0.1" 99035 sources."has-symbols-1.0.3" 99036 sources."has-tostringtag-1.0.0" 99037 sources."has-value-1.0.0" ··· 99173 }) 99174 sources."readdirp-2.2.1" 99175 sources."regex-not-1.0.2" 99176 - sources."regexp.prototype.flags-1.4.2" 99177 sources."remove-trailing-separator-1.1.0" 99178 sources."repeat-element-1.1.4" 99179 sources."repeat-string-1.6.1" ··· 99443 sources."@types/http-cache-semantics-4.0.1" 99444 sources."@types/json-buffer-3.0.0" 99445 sources."@types/keyv-3.1.4" 99446 - sources."@types/node-17.0.23" 99447 sources."@types/node-fetch-2.6.1" 99448 sources."@types/responselike-1.0.0" 99449 sources."@types/yoga-layout-1.9.2" ··· 99472 }) 99473 sources."call-bind-1.0.2" 99474 sources."camelcase-6.3.0" 99475 - sources."caniuse-lite-1.0.30001331" 99476 (sources."chalk-4.1.2" // { 99477 dependencies = [ 99478 sources."ansi-styles-4.3.0" ··· 99537 sources."domutils-2.8.0" 99538 sources."dot-prop-5.3.0" 99539 sources."duplexer3-0.1.4" 99540 - sources."electron-to-chromium-1.4.107" 99541 sources."emoji-regex-8.0.0" 99542 sources."end-of-stream-1.4.4" 99543 sources."entities-2.2.0" ··· 99640 sources."keyv-4.2.2" 99641 sources."kleur-3.0.3" 99642 sources."latest-version-5.1.0" 99643 - sources."lmdb-2.3.2" 99644 sources."lmdb-darwin-arm64-2.3.2" 99645 sources."lmdb-darwin-x64-2.3.2" 99646 sources."lmdb-linux-arm-2.3.2" ··· 100085 sha512 = "76zCOpXUl/85CMk9aJwWbBy2vGYv+Yn17PcUMhksTtMJLAUujje3eP8v7FufC2pN9SbQx88Gtr4ARXGeVWwAJA=="; 100086 }; 100087 dependencies = [ 100088 - sources."async-2.6.3" 100089 sources."debug-4.3.4" 100090 sources."lodash-4.17.21" 100091 sources."lodash.groupby-4.6.0" ··· 100330 sources."@types/http-cache-semantics-4.0.1" 100331 sources."@types/json-buffer-3.0.0" 100332 sources."@types/keyv-3.1.4" 100333 - sources."@types/node-17.0.23" 100334 sources."@types/responselike-1.0.0" 100335 sources."ansi-regex-6.0.1" 100336 sources."ansi-styles-4.3.0" ··· 100435 gitmoji-cli = nodeEnv.buildNodePackage { 100436 name = "gitmoji-cli"; 100437 packageName = "gitmoji-cli"; 100438 - version = "4.13.0"; 100439 src = fetchurl { 100440 - url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.13.0.tgz"; 100441 - sha512 = "HF4X8Ov5uw32ksrJAJb2eG/lHu2yPe1+VZg+A5vl6rWn/GeCiuQeJdvjZB2RWJ4c0yDoGd16UbLvpUdnWZk6jg=="; 100442 }; 100443 dependencies = [ 100444 sources."@babel/code-frame-7.16.7" ··· 100569 sources."http-cache-semantics-4.1.0" 100570 sources."http-errors-2.0.0" 100571 sources."http-proxy-agent-4.0.1" 100572 - sources."https-proxy-agent-5.0.0" 100573 sources."human-signals-2.1.0" 100574 sources."iconv-lite-0.4.24" 100575 sources."ieee754-1.2.1" ··· 100828 dependencies = [ 100829 sources."ansi-regex-5.0.1" 100830 sources."ansi-styles-4.3.0" 100831 - sources."async-2.6.3" 100832 sources."balanced-match-1.0.2" 100833 sources."base64-js-1.5.1" 100834 sources."bl-1.2.3" ··· 101029 sources."tslib-2.1.0" 101030 ]; 101031 }) 101032 - (sources."@graphql-tools/import-6.6.11" // { 101033 dependencies = [ 101034 - sources."@graphql-tools/utils-8.6.7" 101035 sources."tslib-2.3.1" 101036 ]; 101037 }) ··· 101056 sources."tslib-2.3.1" 101057 ]; 101058 }) 101059 - (sources."@graphql-tools/schema-8.3.8" // { 101060 dependencies = [ 101061 - sources."@graphql-tools/merge-8.2.8" 101062 - sources."@graphql-tools/utils-8.6.7" 101063 sources."tslib-2.3.1" 101064 ]; 101065 }) ··· 101090 sources."@nodelib/fs.walk-1.2.8" 101091 sources."@sindresorhus/is-0.14.0" 101092 sources."@szmarczak/http-timer-1.1.2" 101093 - sources."@types/node-17.0.23" 101094 sources."@types/parse-json-4.0.0" 101095 sources."@types/websocket-1.0.2" 101096 sources."abort-controller-3.0.0" ··· 101176 sources."deep-extend-0.6.0" 101177 sources."defaults-1.0.3" 101178 sources."defer-to-connect-1.1.3" 101179 - sources."define-properties-1.1.3" 101180 sources."delayed-stream-1.0.0" 101181 sources."dir-glob-3.0.1" 101182 sources."duplexer3-0.1.4" ··· 101184 sources."emoji-regex-8.0.0" 101185 sources."end-of-stream-1.4.4" 101186 sources."error-ex-1.3.2" 101187 - sources."es-abstract-1.19.4" 101188 sources."es-get-iterator-1.1.2" 101189 sources."es-to-primitive-1.2.1" 101190 sources."es6-promise-3.3.1" ··· 101220 sources."fs.realpath-1.0.0" 101221 sources."fullname-4.0.1" 101222 sources."function-bind-1.1.1" 101223 sources."get-caller-file-2.0.5" 101224 sources."get-intrinsic-1.1.1" 101225 sources."get-stream-4.1.0" ··· 101249 sources."has-1.0.3" 101250 sources."has-bigints-1.0.1" 101251 sources."has-flag-4.0.0" 101252 sources."has-symbols-1.0.3" 101253 sources."has-tostringtag-1.0.0" 101254 sources."http-cache-semantics-4.1.0" ··· 101448 sources."queue-microtask-1.2.3" 101449 sources."rc-1.2.8" 101450 sources."reftools-1.1.9" 101451 - sources."regexp.prototype.flags-1.4.2" 101452 sources."registry-auth-token-4.2.1" 101453 sources."registry-url-5.1.0" 101454 sources."remove-trailing-separator-1.1.0" ··· 101580 }) 101581 sources."@cronvel/get-pixels-3.4.0" 101582 sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" 101583 - sources."@graphql-tools/batch-execute-8.4.4" 101584 - sources."@graphql-tools/delegate-8.7.4" 101585 - sources."@graphql-tools/graphql-file-loader-7.3.9" 101586 - sources."@graphql-tools/import-6.6.11" 101587 - sources."@graphql-tools/json-file-loader-7.3.9" 101588 - sources."@graphql-tools/load-7.5.8" 101589 - sources."@graphql-tools/merge-8.2.8" 101590 - sources."@graphql-tools/schema-8.3.8" 101591 - (sources."@graphql-tools/url-loader-7.9.11" // { 101592 dependencies = [ 101593 - (sources."subscriptions-transport-ws-0.11.0" // { 101594 - dependencies = [ 101595 - sources."ws-7.5.7" 101596 - ]; 101597 - }) 101598 sources."ws-8.5.0" 101599 ]; 101600 }) 101601 - sources."@graphql-tools/utils-8.6.7" 101602 - sources."@graphql-tools/wrap-8.4.13" 101603 sources."@iarna/toml-2.2.5" 101604 sources."@n1ru4l/graphql-live-query-0.9.0" 101605 sources."@nodelib/fs.scandir-2.1.5" ··· 101634 ]; 101635 }) 101636 sources."@oclif/screen-1.0.4" 101637 sources."@types/json-schema-7.0.9" 101638 - sources."@types/node-17.0.23" 101639 sources."@types/parse-json-4.0.0" 101640 - sources."@types/websocket-1.0.5" 101641 sources."@types/ws-8.5.3" 101642 sources."abort-controller-3.0.0" 101643 sources."accepts-1.3.8" ··· 101761 sources."graphql-language-service-parser-1.10.4" 101762 sources."graphql-language-service-types-1.8.7" 101763 sources."graphql-language-service-utils-2.5.1" 101764 - sources."graphql-sse-1.1.0" 101765 sources."graphql-ws-5.7.0" 101766 sources."has-flag-4.0.0" 101767 sources."http-errors-1.6.3" ··· 101894 sources."symbol-observable-1.2.0" 101895 sources."sync-fetch-0.3.1" 101896 sources."terminal-kit-1.49.4" 101897 sources."to-regex-range-5.0.1" 101898 sources."tr46-0.0.3" 101899 sources."tree-kit-0.7.4" ··· 102359 ]; 102360 }) 102361 sources."default-resolution-2.0.0" 102362 - sources."define-properties-1.1.3" 102363 sources."define-property-2.0.2" 102364 sources."detect-file-1.0.0" 102365 sources."duplexify-3.7.1" ··· 102444 sources."gulp-cli-2.3.0" 102445 sources."gulplog-1.0.0" 102446 sources."has-1.0.3" 102447 sources."has-symbols-1.0.3" 102448 sources."has-value-1.0.0" 102449 (sources."has-values-1.0.0" // { ··· 102777 sources."decamelize-1.2.0" 102778 sources."decode-uri-component-0.2.0" 102779 sources."default-compare-1.0.0" 102780 - sources."define-properties-1.1.3" 102781 sources."define-property-2.0.2" 102782 sources."detect-file-1.0.0" 102783 (sources."each-props-1.3.2" // { ··· 102845 sources."graceful-fs-4.2.10" 102846 sources."gulplog-1.0.0" 102847 sources."has-1.0.3" 102848 sources."has-symbols-1.0.3" 102849 sources."has-value-1.0.0" 102850 (sources."has-values-1.0.0" // { ··· 103152 sources."chalk-4.1.2" 103153 sources."color-convert-2.0.1" 103154 sources."color-name-1.1.4" 103155 - sources."commander-9.1.0" 103156 sources."concat-map-0.0.1" 103157 sources."fs.realpath-1.0.0" 103158 sources."glob-7.2.0" ··· 103193 }; 103194 dependencies = [ 103195 sources."ansi-styles-4.3.0" 103196 - sources."async-2.6.3" 103197 sources."basic-auth-2.0.1" 103198 sources."call-bind-1.0.2" 103199 sources."chalk-4.1.2" ··· 103415 sources."@colors/colors-1.5.0" 103416 sources."@fast-csv/format-4.3.5" 103417 sources."@fast-csv/parse-4.3.6" 103418 - sources."@types/node-14.18.12" 103419 sources."ajv-6.12.6" 103420 sources."ansi-regex-5.0.1" 103421 sources."ansi-styles-4.3.0" 103422 sources."argparse-1.0.10" 103423 sources."asn1-0.2.6" 103424 sources."assert-plus-1.0.0" 103425 - sources."async-2.6.3" 103426 sources."asynckit-0.4.0" 103427 - sources."aws-sdk-2.1113.0" 103428 sources."aws-sign2-0.7.0" 103429 sources."aws4-1.11.0" 103430 sources."base64-js-1.5.1" ··· 104361 sources."has-symbols-1.0.3" 104362 sources."http-errors-2.0.0" 104363 sources."http-proxy-agent-4.0.1" 104364 - sources."https-proxy-agent-5.0.0" 104365 sources."iconv-lite-0.4.24" 104366 sources."imurmurhash-0.1.4" 104367 sources."inflight-1.0.6" ··· 104893 sources."@aws-sdk/abort-controller-3.55.0" 104894 sources."@aws-sdk/chunked-blob-reader-3.55.0" 104895 sources."@aws-sdk/chunked-blob-reader-native-3.58.0" 104896 - sources."@aws-sdk/client-s3-3.67.0" 104897 - sources."@aws-sdk/client-sso-3.67.0" 104898 - sources."@aws-sdk/client-sts-3.67.0" 104899 sources."@aws-sdk/config-resolver-3.58.0" 104900 sources."@aws-sdk/credential-provider-env-3.55.0" 104901 sources."@aws-sdk/credential-provider-imds-3.58.0" 104902 - sources."@aws-sdk/credential-provider-ini-3.67.0" 104903 - sources."@aws-sdk/credential-provider-node-3.67.0" 104904 sources."@aws-sdk/credential-provider-process-3.58.0" 104905 - sources."@aws-sdk/credential-provider-sso-3.67.0" 104906 sources."@aws-sdk/credential-provider-web-identity-3.55.0" 104907 sources."@aws-sdk/eventstream-marshaller-3.58.0" 104908 - sources."@aws-sdk/eventstream-serde-browser-3.58.0" 104909 sources."@aws-sdk/eventstream-serde-config-resolver-3.55.0" 104910 - sources."@aws-sdk/eventstream-serde-node-3.58.0" 104911 - sources."@aws-sdk/eventstream-serde-universal-3.58.0" 104912 sources."@aws-sdk/fetch-http-handler-3.58.0" 104913 sources."@aws-sdk/hash-blob-browser-3.58.0" 104914 sources."@aws-sdk/hash-node-3.55.0" ··· 104919 sources."@aws-sdk/middleware-bucket-endpoint-3.58.0" 104920 sources."@aws-sdk/middleware-content-length-3.58.0" 104921 sources."@aws-sdk/middleware-expect-continue-3.58.0" 104922 - sources."@aws-sdk/middleware-flexible-checksums-3.58.0" 104923 sources."@aws-sdk/middleware-header-default-3.58.0" 104924 sources."@aws-sdk/middleware-host-header-3.58.0" 104925 sources."@aws-sdk/middleware-location-constraint-3.55.0" ··· 104942 sources."@aws-sdk/protocol-http-3.58.0" 104943 sources."@aws-sdk/querystring-builder-3.55.0" 104944 sources."@aws-sdk/querystring-parser-3.55.0" 104945 - sources."@aws-sdk/s3-request-presigner-3.67.0" 104946 sources."@aws-sdk/service-error-classification-3.55.0" 104947 sources."@aws-sdk/shared-ini-file-loader-3.58.0" 104948 sources."@aws-sdk/signature-v4-3.58.0" 104949 sources."@aws-sdk/signature-v4-multi-region-3.66.0" 104950 - sources."@aws-sdk/smithy-client-3.55.0" 104951 sources."@aws-sdk/types-3.55.0" 104952 sources."@aws-sdk/url-parser-3.55.0" 104953 sources."@aws-sdk/util-arn-parser-3.55.0" ··· 104957 sources."@aws-sdk/util-body-length-node-3.55.0" 104958 sources."@aws-sdk/util-buffer-from-3.55.0" 104959 sources."@aws-sdk/util-config-provider-3.55.0" 104960 - sources."@aws-sdk/util-create-request-3.58.0" 104961 - sources."@aws-sdk/util-defaults-mode-browser-3.55.0" 104962 - sources."@aws-sdk/util-defaults-mode-node-3.58.0" 104963 sources."@aws-sdk/util-format-url-3.58.0" 104964 sources."@aws-sdk/util-hex-encoding-3.58.0" 104965 sources."@aws-sdk/util-locate-window-3.55.0" ··· 105075 sources."async-mutex-0.1.4" 105076 sources."asynckit-0.4.0" 105077 sources."atob-2.1.2" 105078 - (sources."aws-sdk-2.1113.0" // { 105079 dependencies = [ 105080 sources."sax-1.2.1" 105081 sources."uuid-3.3.2" ··· 105341 ]; 105342 }) 105343 sources."http-signature-1.2.0" 105344 - (sources."https-proxy-agent-5.0.0" // { 105345 dependencies = [ 105346 sources."debug-4.3.4" 105347 ]; ··· 107281 sources."@types/component-emitter-1.2.11" 107282 sources."@types/cookie-0.4.1" 107283 sources."@types/cors-2.8.12" 107284 - sources."@types/node-17.0.23" 107285 sources."accepts-1.3.8" 107286 sources."ansi-regex-5.0.1" 107287 sources."ansi-styles-4.3.0" ··· 107305 sources."cookie-0.4.2" 107306 sources."cors-2.8.5" 107307 sources."custom-event-1.0.1" 107308 - sources."date-format-4.0.6" 107309 sources."debug-2.6.9" 107310 sources."depd-2.0.0" 107311 sources."destroy-1.2.0" ··· 107359 sources."isbinaryfile-4.0.10" 107360 sources."jsonfile-6.1.0" 107361 sources."lodash-4.17.21" 107362 - (sources."log4js-6.4.4" // { 107363 dependencies = [ 107364 sources."debug-4.3.4" 107365 sources."ms-2.1.2" ··· 107409 }) 107410 sources."source-map-0.6.1" 107411 sources."statuses-2.0.1" 107412 - (sources."streamroller-3.0.6" // { 107413 dependencies = [ 107414 sources."debug-4.3.4" 107415 sources."ms-2.1.2" ··· 107579 sources."buffer-from-1.1.2" 107580 sources."bytes-3.1.2" 107581 sources."call-bind-1.0.2" 107582 - sources."caniuse-lite-1.0.30001331" 107583 sources."chalk-2.4.2" 107584 sources."chardet-1.4.0" 107585 sources."chownr-1.1.4" ··· 107608 sources."convert-source-map-1.8.0" 107609 sources."cookie-0.4.2" 107610 sources."cookie-signature-1.0.6" 107611 - sources."core-js-3.21.1" 107612 sources."core-util-is-1.0.3" 107613 sources."cors-2.8.5" 107614 sources."create-hash-1.2.0" ··· 107632 sources."decompress-response-4.2.1" 107633 sources."deep-extend-0.6.0" 107634 sources."deep-is-0.1.4" 107635 - sources."define-properties-1.1.3" 107636 sources."delayed-stream-1.0.0" 107637 sources."delegates-1.0.0" 107638 sources."depd-1.1.2" ··· 107647 }) 107648 sources."dotenv-8.6.0" 107649 sources."ee-first-1.1.1" 107650 - sources."electron-to-chromium-1.4.107" 107651 sources."emoji-regex-8.0.0" 107652 sources."encodeurl-1.0.2" 107653 sources."end-of-stream-1.4.4" 107654 sources."enquirer-2.3.6" 107655 - sources."es-abstract-1.19.4" 107656 sources."es-to-primitive-1.2.1" 107657 sources."escalade-3.1.1" 107658 sources."escape-html-1.0.3" ··· 107730 sources."has-1.0.3" 107731 sources."has-bigints-1.0.1" 107732 sources."has-flag-3.0.0" 107733 sources."has-symbols-1.0.3" 107734 sources."has-tostringtag-1.0.0" 107735 sources."has-unicode-2.0.1" ··· 107742 sources."html-encoding-sniffer-2.0.1" 107743 sources."http-errors-1.8.1" 107744 sources."http-proxy-agent-4.0.1" 107745 - sources."https-proxy-agent-5.0.0" 107746 sources."iconv-lite-0.4.24" 107747 sources."ieee754-1.2.1" 107748 sources."ignore-5.2.0" ··· 108050 sources."concat-map-0.0.1" 108051 sources."convert-source-map-1.8.0" 108052 sources."core-util-is-1.0.3" 108053 - sources."define-properties-1.1.3" 108054 sources."duplexify-3.7.1" 108055 sources."end-of-stream-1.4.4" 108056 sources."extend-3.0.2" ··· 108064 sources."glob-stream-6.1.0" 108065 sources."graceful-fs-4.2.10" 108066 sources."has-1.0.3" 108067 sources."has-symbols-1.0.3" 108068 sources."inflight-1.0.6" 108069 sources."inherits-2.0.4" ··· 108887 sources."decode-uri-component-0.2.0" 108888 sources."dedent-0.7.0" 108889 sources."defaults-1.0.3" 108890 - sources."define-properties-1.1.3" 108891 sources."delayed-stream-1.0.0" 108892 sources."delegates-1.0.0" 108893 sources."depd-1.1.2" ··· 108904 sources."envinfo-7.8.1" 108905 sources."err-code-2.0.3" 108906 sources."error-ex-1.3.2" 108907 - sources."es-abstract-1.19.4" 108908 sources."es-to-primitive-1.2.1" 108909 sources."escalade-3.1.1" 108910 sources."escape-string-regexp-1.0.5" ··· 108979 sources."has-1.0.3" 108980 sources."has-bigints-1.0.1" 108981 sources."has-flag-4.0.0" 108982 sources."has-symbols-1.0.3" 108983 sources."has-tostringtag-1.0.0" 108984 sources."has-unicode-2.0.1" ··· 108986 sources."http-cache-semantics-4.1.0" 108987 sources."http-proxy-agent-4.0.1" 108988 sources."http-signature-1.2.0" 108989 - sources."https-proxy-agent-5.0.0" 108990 sources."human-signals-2.1.0" 108991 sources."humanize-ms-1.2.1" 108992 sources."iconv-lite-0.6.3" ··· 110456 sources."@types/babel__core-7.1.19" 110457 sources."@types/babel__generator-7.6.4" 110458 sources."@types/babel__template-7.4.1" 110459 - sources."@types/babel__traverse-7.14.2" 110460 sources."@types/estree-0.0.51" 110461 sources."@types/graceful-fs-4.1.5" 110462 sources."@types/istanbul-lib-coverage-2.0.4" 110463 sources."@types/istanbul-lib-report-3.0.0" 110464 sources."@types/istanbul-reports-1.1.2" 110465 sources."@types/json-schema-7.0.11" 110466 - sources."@types/node-17.0.23" 110467 sources."@types/normalize-package-data-2.4.1" 110468 sources."@types/resolve-0.0.8" 110469 sources."@types/yargs-15.0.14" ··· 110636 sources."cached-path-relative-1.1.0" 110637 sources."call-bind-1.0.2" 110638 sources."camelcase-5.3.1" 110639 - sources."caniuse-lite-1.0.30001331" 110640 sources."capture-exit-2.0.0" 110641 sources."caseless-0.12.0" 110642 (sources."chalk-3.0.0" // { ··· 110707 }) 110708 sources."copy-descriptor-0.1.1" 110709 sources."core-js-2.6.12" 110710 - (sources."core-js-compat-3.21.1" // { 110711 dependencies = [ 110712 sources."semver-7.0.0" 110713 ]; ··· 110742 sources."debug-4.3.4" 110743 sources."decamelize-1.2.0" 110744 sources."decode-uri-component-0.2.0" 110745 - sources."define-properties-1.1.3" 110746 sources."define-property-2.0.2" 110747 sources."defined-1.0.0" 110748 sources."delayed-stream-1.0.0" ··· 110759 sources."duplexer2-0.1.4" 110760 sources."duplexify-3.7.1" 110761 sources."ecc-jsbn-0.1.2" 110762 - sources."electron-to-chromium-1.4.107" 110763 (sources."elliptic-6.5.4" // { 110764 dependencies = [ 110765 sources."bn.js-4.12.0" ··· 110890 sources."har-validator-5.1.5" 110891 sources."has-1.0.3" 110892 sources."has-flag-3.0.0" 110893 sources."has-symbols-1.0.3" 110894 sources."has-value-1.0.0" 110895 (sources."has-values-1.0.0" // { ··· 111497 sources."@types/commander-2.12.2" 111498 sources."@types/diff-3.5.5" 111499 sources."@types/get-stdin-5.0.1" 111500 - sources."@types/node-17.0.23" 111501 sources."commander-2.20.3" 111502 sources."diff-3.5.0" 111503 sources."get-stdin-5.0.1" ··· 112364 }; 112365 dependencies = [ 112366 sources."@braintree/sanitize-url-3.1.0" 112367 - sources."@types/node-17.0.23" 112368 sources."@types/yauzl-2.10.0" 112369 sources."agent-base-6.0.2" 112370 sources."ansi-styles-4.3.0" ··· 112378 sources."chownr-1.1.4" 112379 sources."color-convert-2.0.1" 112380 sources."color-name-1.1.4" 112381 - sources."commander-9.1.0" 112382 sources."concat-map-0.0.1" 112383 sources."cross-fetch-3.1.5" 112384 sources."d3-7.4.4" ··· 112843 sources."@types/istanbul-lib-coverage-2.0.4" 112844 sources."@types/istanbul-lib-report-3.0.0" 112845 sources."@types/istanbul-reports-3.0.1" 112846 - sources."@types/node-17.0.23" 112847 sources."@types/stack-utils-2.0.1" 112848 sources."@types/yargs-16.0.4" 112849 sources."@types/yargs-parser-21.0.0" ··· 113266 sources."has-unicode-2.0.1" 113267 sources."http-cache-semantics-4.1.0" 113268 sources."http-proxy-agent-5.0.0" 113269 - sources."https-proxy-agent-5.0.0" 113270 sources."humanize-ms-1.2.1" 113271 sources."iconv-lite-0.6.3" 113272 sources."imurmurhash-0.1.4" ··· 113786 sources."@types/http-cache-semantics-4.0.1" 113787 sources."@types/json-buffer-3.0.0" 113788 sources."@types/keyv-3.1.4" 113789 - sources."@types/node-17.0.23" 113790 sources."@types/responselike-1.0.0" 113791 sources."abbrev-1.1.1" 113792 sources."accepts-1.3.8" ··· 114541 sources."@types/json-buffer-3.0.0" 114542 sources."@types/keyv-3.1.4" 114543 sources."@types/minimist-1.2.2" 114544 - sources."@types/node-17.0.23" 114545 sources."@types/normalize-package-data-2.4.1" 114546 sources."@types/parse-json-4.0.0" 114547 sources."@types/responselike-1.0.0" ··· 115036 npm = nodeEnv.buildNodePackage { 115037 name = "npm"; 115038 packageName = "npm"; 115039 - version = "8.6.0"; 115040 src = fetchurl { 115041 - url = "https://registry.npmjs.org/npm/-/npm-8.6.0.tgz"; 115042 - sha512 = "icekvN8FJFESIFkLaFEVl05Nocl5Id5HnoVhJzhCUvtNY8tj9kfUlH/J527fZq/8ltsAUqpettfutwRjQYS2fA=="; 115043 }; 115044 buildInputs = globalBuildInputs; 115045 meta = { ··· 115111 sources."color-name-1.1.4" 115112 sources."color-support-1.1.3" 115113 sources."colors-1.0.3" 115114 - sources."commander-9.1.0" 115115 sources."concat-map-0.0.1" 115116 sources."configstore-5.0.1" 115117 sources."console-control-strings-1.1.0" ··· 115166 sources."hosted-git-info-5.0.0" 115167 sources."http-cache-semantics-4.1.0" 115168 sources."http-proxy-agent-5.0.0" 115169 - sources."https-proxy-agent-5.0.0" 115170 sources."humanize-ms-1.2.1" 115171 sources."iconv-lite-0.6.3" 115172 sources."ignore-5.2.0" ··· 115249 sources."npm-package-arg-9.0.2" 115250 sources."npm-packlist-5.0.0" 115251 sources."npm-pick-manifest-7.0.1" 115252 - sources."npm-registry-fetch-13.1.0" 115253 sources."npmlog-6.0.1" 115254 sources."once-1.4.0" 115255 sources."p-cancelable-1.1.0" ··· 115915 sources."caller-path-2.0.0" 115916 sources."callsites-2.0.0" 115917 sources."caniuse-api-3.0.0" 115918 - sources."caniuse-lite-1.0.30001331" 115919 sources."caseless-0.12.0" 115920 sources."chalk-2.4.2" 115921 sources."chokidar-2.1.8" ··· 115941 sources."convert-source-map-1.8.0" 115942 sources."copy-descriptor-0.1.1" 115943 sources."core-js-2.6.12" 115944 - (sources."core-js-compat-3.21.1" // { 115945 dependencies = [ 115946 sources."semver-7.0.0" 115947 ]; ··· 116006 sources."clone-1.0.4" 116007 ]; 116008 }) 116009 - sources."define-properties-1.1.3" 116010 (sources."define-property-0.2.5" // { 116011 dependencies = [ 116012 (sources."is-accessor-descriptor-0.1.6" // { ··· 116052 sources."duplexer2-0.1.4" 116053 sources."ecc-jsbn-0.1.2" 116054 sources."ee-first-1.1.1" 116055 - sources."electron-to-chromium-1.4.107" 116056 (sources."elliptic-6.5.4" // { 116057 dependencies = [ 116058 sources."bn.js-4.12.0" ··· 116062 sources."entities-2.2.0" 116063 sources."envinfo-7.8.1" 116064 sources."error-ex-1.3.2" 116065 - (sources."es-abstract-1.19.4" // { 116066 dependencies = [ 116067 sources."object-inspect-1.12.0" 116068 ]; ··· 116136 }) 116137 sources."has-bigints-1.0.1" 116138 sources."has-flag-3.0.0" 116139 sources."has-symbols-1.0.3" 116140 sources."has-tostringtag-1.0.0" 116141 sources."has-value-1.0.0" ··· 116789 sources."browserslist-4.20.2" 116790 sources."buffer-from-1.1.2" 116791 sources."callsites-3.1.0" 116792 - sources."caniuse-lite-1.0.30001331" 116793 (sources."chalk-4.1.2" // { 116794 dependencies = [ 116795 sources."ansi-styles-4.3.0" ··· 116820 sources."domutils-2.8.0" 116821 sources."dotenv-7.0.0" 116822 sources."dotenv-expand-5.1.0" 116823 - sources."electron-to-chromium-1.4.107" 116824 sources."entities-3.0.1" 116825 sources."error-ex-1.3.2" 116826 sources."escalade-3.1.1" ··· 116969 sources."dashdash-1.14.1" 116970 sources."debug-2.6.9" 116971 sources."decamelize-1.2.0" 116972 - sources."define-properties-1.1.3" 116973 sources."delayed-stream-1.0.0" 116974 sources."depd-1.1.2" 116975 sources."destroy-1.0.4" ··· 117024 sources."har-schema-2.0.0" 117025 sources."har-validator-5.1.5" 117026 sources."has-1.0.3" 117027 sources."has-symbols-1.0.3" 117028 sources."has-tostringtag-1.0.0" 117029 sources."hat-0.0.3" ··· 117342 sources."decompress-response-3.3.0" 117343 sources."deep-equal-1.1.1" 117344 sources."deep-extend-0.6.0" 117345 - sources."define-properties-1.1.3" 117346 sources."dns-equal-1.0.0" 117347 sources."dns-packet-1.3.4" 117348 sources."dns-txt-2.0.2" ··· 117362 }) 117363 sources."fs.realpath-1.0.0" 117364 sources."function-bind-1.1.1" 117365 sources."get-browser-rtc-1.1.0" 117366 sources."get-intrinsic-1.1.1" 117367 sources."get-stdin-4.0.1" ··· 117370 sources."has-1.0.3" 117371 sources."has-ansi-2.0.0" 117372 sources."has-flag-3.0.0" 117373 sources."has-symbols-1.0.3" 117374 sources."has-tostringtag-1.0.0" 117375 sources."hat-0.0.3" ··· 117493 sources."read-pkg-up-1.0.1" 117494 sources."readable-stream-2.3.7" 117495 sources."redent-1.0.0" 117496 - sources."regexp.prototype.flags-1.4.2" 117497 sources."repeating-2.0.1" 117498 sources."resolve-1.22.0" 117499 sources."restore-cursor-2.0.0" ··· 117603 sources."arraybuffer.slice-0.0.7" 117604 sources."asn1-0.2.6" 117605 sources."assert-plus-1.0.0" 117606 - sources."async-2.6.3" 117607 sources."asynckit-0.4.0" 117608 sources."aws-sign2-0.7.0" 117609 sources."aws4-1.11.0" ··· 118072 sources."has-1.0.3" 118073 sources."has-flag-4.0.0" 118074 sources."has-unicode-2.0.1" 118075 - sources."https-proxy-agent-5.0.0" 118076 sources."ieee754-1.2.1" 118077 sources."ignore-5.2.0" 118078 sources."inherits-2.0.4" ··· 118204 }) 118205 (sources."@pm2/io-5.0.0" // { 118206 dependencies = [ 118207 - sources."async-2.6.3" 118208 sources."eventemitter2-6.4.5" 118209 sources."semver-6.3.0" 118210 sources."tslib-1.9.3" ··· 118212 }) 118213 (sources."@pm2/js-api-0.6.7" // { 118214 dependencies = [ 118215 - sources."async-2.6.3" 118216 sources."eventemitter2-6.4.5" 118217 ]; 118218 }) ··· 118294 sources."has-flag-4.0.0" 118295 sources."http-errors-2.0.0" 118296 sources."http-proxy-agent-4.0.1" 118297 - sources."https-proxy-agent-5.0.0" 118298 sources."iconv-lite-0.4.24" 118299 sources."inflight-1.0.6" 118300 sources."inherits-2.0.4" ··· 118394 sources."uuid-3.4.0" 118395 (sources."vizion-2.2.1" // { 118396 dependencies = [ 118397 - sources."async-2.6.3" 118398 ]; 118399 }) 118400 sources."vm2-3.9.9" ··· 118418 pnpm = nodeEnv.buildNodePackage { 118419 name = "pnpm"; 118420 packageName = "pnpm"; 118421 - version = "6.32.6"; 118422 src = fetchurl { 118423 - url = "https://registry.npmjs.org/pnpm/-/pnpm-6.32.6.tgz"; 118424 - sha512 = "ucrdCw3F/qjjzoR9+UtLXH1jkDqsbinz+hzSz54WQOOPt/F+9uxm8irrO/mdGkmsy844kAX6vsfS85gZLTg+yA=="; 118425 }; 118426 buildInputs = globalBuildInputs; 118427 meta = { ··· 119195 sources."has-1.0.3" 119196 sources."has-symbols-1.0.3" 119197 sources."http-cache-semantics-4.1.0" 119198 - sources."https-proxy-agent-5.0.0" 119199 sources."ini-1.3.8" 119200 sources."ip-1.1.5" 119201 sources."is-docker-2.2.1" ··· 119525 sources."concat-map-0.0.1" 119526 sources."cycle-1.0.3" 119527 sources."deep-equal-2.0.5" 119528 - sources."define-properties-1.1.3" 119529 - sources."es-abstract-1.19.4" 119530 sources."es-get-iterator-1.1.2" 119531 sources."es-to-primitive-1.2.1" 119532 sources."escape-string-regexp-1.0.5" ··· 119534 sources."foreach-2.0.5" 119535 sources."fs.realpath-1.0.0" 119536 sources."function-bind-1.1.1" 119537 sources."get-intrinsic-1.1.1" 119538 sources."get-symbol-description-1.0.0" 119539 sources."glob-7.2.0" 119540 sources."has-1.0.3" 119541 sources."has-ansi-2.0.0" 119542 sources."has-bigints-1.0.1" 119543 sources."has-symbols-1.0.3" 119544 sources."has-tostringtag-1.0.0" 119545 sources."i-0.3.7" ··· 119579 sources."pkginfo-0.4.1" 119580 sources."prompt-0.2.14" 119581 sources."read-1.0.7" 119582 - sources."regexp.prototype.flags-1.4.2" 119583 sources."revalidator-0.1.8" 119584 sources."rimraf-2.7.1" 119585 sources."semver-5.7.1" ··· 119760 sources."@types/glob-7.2.0" 119761 sources."@types/json-schema-7.0.11" 119762 sources."@types/minimatch-3.0.5" 119763 - sources."@types/node-17.0.23" 119764 sources."@types/parse-json-4.0.0" 119765 sources."@types/q-1.5.5" 119766 sources."@webassemblyjs/ast-1.9.0" ··· 119828 ]; 119829 }) 119830 sources."assign-symbols-1.0.0" 119831 - sources."async-2.6.3" 119832 sources."async-each-1.0.3" 119833 sources."async-limiter-1.0.1" 119834 sources."atob-2.1.2" ··· 119952 sources."camel-case-3.0.0" 119953 sources."camelcase-5.3.1" 119954 sources."caniuse-api-3.0.0" 119955 - sources."caniuse-lite-1.0.30001331" 119956 sources."case-sensitive-paths-webpack-plugin-2.4.0" 119957 sources."caw-2.0.1" 119958 sources."chalk-2.4.2" ··· 120036 sources."copy-concurrently-1.0.5" 120037 sources."copy-descriptor-0.1.1" 120038 sources."core-js-2.6.12" 120039 - (sources."core-js-compat-3.21.1" // { 120040 dependencies = [ 120041 sources."semver-7.0.0" 120042 ]; ··· 120140 sources."pump-3.0.0" 120141 ]; 120142 }) 120143 - sources."define-properties-1.1.3" 120144 sources."define-property-2.0.2" 120145 sources."del-4.1.1" 120146 sources."depd-1.1.2" ··· 120182 sources."duplexify-3.7.1" 120183 sources."ee-first-1.1.1" 120184 sources."ejs-2.7.4" 120185 - sources."electron-to-chromium-1.4.107" 120186 (sources."elliptic-6.5.4" // { 120187 dependencies = [ 120188 sources."bn.js-4.12.0" ··· 120213 sources."entities-2.2.0" 120214 sources."errno-0.1.8" 120215 sources."error-ex-1.3.2" 120216 - sources."es-abstract-1.19.4" 120217 sources."es-to-primitive-1.2.1" 120218 sources."escalade-3.1.1" 120219 sources."escape-html-1.0.3" ··· 120330 sources."fs.realpath-1.0.0" 120331 sources."fsevents-2.3.2" 120332 sources."function-bind-1.1.1" 120333 sources."gensync-1.0.0-beta.2" 120334 sources."get-caller-file-2.0.5" 120335 sources."get-intrinsic-1.1.1" ··· 120366 }) 120367 sources."has-cors-1.1.0" 120368 sources."has-flag-3.0.0" 120369 sources."has-symbol-support-x-1.4.2" 120370 sources."has-symbols-1.0.3" 120371 sources."has-to-string-tag-x-1.4.1" ··· 120903 sources."regenerator-runtime-0.13.9" 120904 sources."regenerator-transform-0.15.0" 120905 sources."regex-not-1.0.2" 120906 - sources."regexp.prototype.flags-1.4.2" 120907 sources."regexpu-core-5.0.1" 120908 sources."registry-auth-token-3.3.2" 120909 sources."registry-url-3.1.0" ··· 121500 sources."get-caller-file-2.0.5" 121501 sources."html-encoding-sniffer-3.0.0" 121502 sources."http-proxy-agent-5.0.0" 121503 - sources."https-proxy-agent-5.0.0" 121504 sources."iconv-lite-0.6.3" 121505 sources."is-fullwidth-code-point-3.0.0" 121506 sources."is-potential-custom-element-name-1.0.1" ··· 121588 sources."@redocly/openapi-core-1.0.0-beta.94" 121589 sources."@redocly/react-dropdown-aria-2.0.12" 121590 sources."@types/json-schema-7.0.11" 121591 - sources."@types/node-14.18.12" 121592 sources."ansi-regex-5.0.1" 121593 sources."ansi-styles-3.2.1" 121594 sources."anymatch-3.1.2" ··· 122359 rollup = nodeEnv.buildNodePackage { 122360 name = "rollup"; 122361 packageName = "rollup"; 122362 - version = "2.70.1"; 122363 src = fetchurl { 122364 - url = "https://registry.npmjs.org/rollup/-/rollup-2.70.1.tgz"; 122365 - sha512 = "CRYsI5EuzLbXdxC6RnYhOuRdtz4bhejPMSWjsFLfVM/7w/85n2szZv6yExqUXsBdz5KT8eoubeyDUDjhLHEslA=="; 122366 }; 122367 dependencies = [ 122368 sources."fsevents-2.3.2" ··· 122593 sources."hosted-git-info-4.1.0" 122594 sources."htmlparser2-6.1.0" 122595 sources."http-proxy-agent-4.0.1" 122596 - sources."https-proxy-agent-5.0.0" 122597 sources."iconv-lite-0.6.3" 122598 sources."ieee754-1.2.1" 122599 sources."ignore-5.2.0" ··· 123079 serverless = nodeEnv.buildNodePackage { 123080 name = "serverless"; 123081 packageName = "serverless"; 123082 - version = "3.13.0"; 123083 src = fetchurl { 123084 - url = "https://registry.npmjs.org/serverless/-/serverless-3.13.0.tgz"; 123085 - sha512 = "IICXx9c2jAZzE+tPiO5E/DZ6J7Lglhg8PkeeYbYNozNtlzPl9rNUoeSyKkWVrZtt7DG+iQZtBaJtu8e/Y2vB2w=="; 123086 }; 123087 dependencies = [ 123088 sources."2-thenable-1.0.0" ··· 123111 sources."@types/json-buffer-3.0.0" 123112 sources."@types/keyv-3.1.4" 123113 sources."@types/lodash-4.14.181" 123114 - sources."@types/node-17.0.23" 123115 sources."@types/responselike-1.0.0" 123116 sources."adm-zip-0.5.9" 123117 sources."agent-base-6.0.2" ··· 123126 sources."file-type-4.4.0" 123127 ]; 123128 }) 123129 - (sources."archiver-5.3.0" // { 123130 dependencies = [ 123131 sources."readable-stream-3.6.0" 123132 ]; ··· 123137 sources."async-3.2.3" 123138 sources."asynckit-0.4.0" 123139 sources."at-least-node-1.0.0" 123140 - (sources."aws-sdk-2.1113.0" // { 123141 dependencies = [ 123142 sources."buffer-4.9.2" 123143 sources."ieee754-1.1.13" ··· 123230 sources."type-1.2.0" 123231 ]; 123232 }) 123233 - sources."dayjs-1.11.0" 123234 sources."debug-4.3.4" 123235 (sources."decompress-4.2.1" // { 123236 dependencies = [ ··· 123336 sources."has-symbols-1.0.3" 123337 sources."http-cache-semantics-4.1.0" 123338 sources."http2-wrapper-1.0.3" 123339 - sources."https-proxy-agent-5.0.0" 123340 sources."iconv-lite-0.4.24" 123341 sources."ieee754-1.2.1" 123342 sources."ignore-5.2.0" ··· 124202 snyk = nodeEnv.buildNodePackage { 124203 name = "snyk"; 124204 packageName = "snyk"; 124205 - version = "1.905.0"; 124206 src = fetchurl { 124207 - url = "https://registry.npmjs.org/snyk/-/snyk-1.905.0.tgz"; 124208 - sha512 = "VAUwhWBeWONI/a2ky0ONMizr74zCmEJuMej5zV8XgmowONj6KwQotm0k7kfs3l1ZH5RKHBMWREA65TulcGGObA=="; 124209 }; 124210 buildInputs = globalBuildInputs; 124211 meta = { ··· 124229 sources."@types/component-emitter-1.2.11" 124230 sources."@types/cookie-0.4.1" 124231 sources."@types/cors-2.8.12" 124232 - sources."@types/node-17.0.23" 124233 sources."accepts-1.3.8" 124234 sources."base64id-2.0.0" 124235 sources."component-emitter-1.3.0" ··· 124585 sources."abstract-leveldown-6.2.3" 124586 ]; 124587 }) 124588 - sources."define-properties-1.1.3" 124589 (sources."define-property-2.0.2" // { 124590 dependencies = [ 124591 sources."isobject-3.0.1" ··· 124607 }) 124608 sources."epidemic-broadcast-trees-7.0.0" 124609 sources."errno-0.1.8" 124610 - sources."es-abstract-1.19.4" 124611 (sources."es-get-iterator-1.1.2" // { 124612 dependencies = [ 124613 sources."isarray-2.0.5" ··· 124677 sources."fs.realpath-1.0.0" 124678 sources."fsevents-1.2.13" 124679 sources."function-bind-1.1.1" 124680 sources."get-intrinsic-1.1.1" 124681 sources."get-symbol-description-1.0.0" 124682 sources."get-value-2.0.6" ··· 124690 sources."has-ansi-2.0.0" 124691 sources."has-bigints-1.0.1" 124692 sources."has-network-0.0.1" 124693 sources."has-symbols-1.0.3" 124694 sources."has-tostringtag-1.0.0" 124695 (sources."has-value-1.0.0" // { ··· 125096 }) 125097 sources."regex-cache-0.4.4" 125098 sources."regex-not-1.0.2" 125099 - sources."regexp.prototype.flags-1.4.2" 125100 sources."relative-url-1.0.2" 125101 (sources."remark-3.2.3" // { 125102 dependencies = [ ··· 125465 sources."async-1.5.2" 125466 sources."async-limiter-1.0.1" 125467 sources."asynckit-0.4.0" 125468 - (sources."aws-sdk-2.1113.0" // { 125469 dependencies = [ 125470 sources."uuid-3.3.2" 125471 ]; ··· 126265 stylelint = nodeEnv.buildNodePackage { 126266 name = "stylelint"; 126267 packageName = "stylelint"; 126268 - version = "14.6.1"; 126269 src = fetchurl { 126270 - url = "https://registry.npmjs.org/stylelint/-/stylelint-14.6.1.tgz"; 126271 - sha512 = "FfNdvZUZdzh9KDQxDnO7Opp+prKh8OQVuSW8S13cBtxrooCbm6J6royhUeb++53WPMt04VB+ZbOz/QmzAijs6Q=="; 126272 }; 126273 dependencies = [ 126274 sources."@babel/code-frame-7.16.7" ··· 126619 svelte-check = nodeEnv.buildNodePackage { 126620 name = "svelte-check"; 126621 packageName = "svelte-check"; 126622 - version = "2.6.0"; 126623 src = fetchurl { 126624 - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.6.0.tgz"; 126625 - sha512 = "POL3IqLUuGqb9DdvuXQaSTNXYnw/odK4hqW86+2LwGcZTdbUPKBBln7pq74wXmcnRE+12bXMY1CvbcUNa2d5nw=="; 126626 }; 126627 dependencies = [ 126628 sources."@nodelib/fs.scandir-2.1.5" 126629 sources."@nodelib/fs.stat-2.0.5" 126630 sources."@nodelib/fs.walk-1.2.8" 126631 - sources."@types/node-17.0.23" 126632 sources."@types/pug-2.0.6" 126633 sources."@types/sass-1.43.1" 126634 sources."anymatch-3.1.2" ··· 126683 sources."source-map-0.7.3" 126684 sources."sourcemap-codec-1.4.8" 126685 sources."strip-indent-3.0.0" 126686 - sources."svelte-preprocess-4.10.5" 126687 sources."to-regex-range-5.0.1" 126688 sources."typescript-4.6.3" 126689 sources."wrappy-1.0.2" ··· 126701 svelte-language-server = nodeEnv.buildNodePackage { 126702 name = "svelte-language-server"; 126703 packageName = "svelte-language-server"; 126704 - version = "0.14.25"; 126705 src = fetchurl { 126706 - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.25.tgz"; 126707 - sha512 = "IdQP7sSFH0UgtFhpFu29GfWPR8obahr/k3ntXsW4AlGxplsnDTd7cLkmtkoNZe+gcXV9ixvcBi7LzR+FY3Nssg=="; 126708 }; 126709 dependencies = [ 126710 sources."@emmetio/abbreviation-2.2.3" ··· 126713 sources."@nodelib/fs.scandir-2.1.5" 126714 sources."@nodelib/fs.stat-2.0.5" 126715 sources."@nodelib/fs.walk-1.2.8" 126716 - sources."@types/node-17.0.23" 126717 sources."@types/pug-2.0.6" 126718 sources."@types/sass-1.43.1" 126719 sources."anymatch-3.1.2" ··· 126772 sources."sourcemap-codec-1.4.8" 126773 sources."strip-indent-3.0.0" 126774 sources."svelte-3.47.0" 126775 - sources."svelte-preprocess-4.10.5" 126776 - sources."svelte2tsx-0.5.8" 126777 sources."to-regex-range-5.0.1" 126778 sources."tslib-2.3.1" 126779 sources."typescript-4.6.3" ··· 127861 sources."debug-4.3.4" 127862 sources."deep-equal-1.1.1" 127863 sources."deep-is-0.1.4" 127864 - sources."define-properties-1.1.3" 127865 sources."diff-4.0.2" 127866 sources."emoji-regex-8.0.0" 127867 sources."error-ex-1.3.2" ··· 127878 sources."format-0.2.2" 127879 sources."fs.realpath-1.0.0" 127880 sources."function-bind-1.1.1" 127881 sources."get-intrinsic-1.1.1" 127882 sources."get-stdin-5.0.1" 127883 sources."glob-7.2.0" 127884 sources."graceful-fs-4.2.10" 127885 sources."has-1.0.3" 127886 sources."has-flag-4.0.0" 127887 sources."has-symbols-1.0.3" 127888 sources."has-tostringtag-1.0.0" 127889 sources."hosted-git-info-2.8.9" ··· 127975 sources."strip-bom-3.0.0" 127976 ]; 127977 }) 127978 - sources."regexp.prototype.flags-1.4.2" 127979 sources."remark-footnotes-3.0.0" 127980 sources."remark-frontmatter-3.0.0" 127981 sources."remark-gfm-1.0.0" ··· 128060 }; 128061 dependencies = [ 128062 sources."call-bind-1.0.2" 128063 - sources."define-properties-1.1.3" 128064 sources."function-bind-1.1.1" 128065 sources."get-intrinsic-1.1.1" 128066 sources."has-1.0.3" 128067 sources."has-symbols-1.0.3" 128068 sources."match-index-1.0.3" 128069 sources."object-keys-1.1.1" 128070 - sources."regexp.prototype.flags-1.4.2" 128071 ]; 128072 buildInputs = globalBuildInputs; 128073 meta = { ··· 128669 sources."array.prototype.find-2.2.0" 128670 sources."call-bind-1.0.2" 128671 sources."check-ends-with-period-1.0.1" 128672 - sources."define-properties-1.1.3" 128673 sources."emoji-regex-6.5.1" 128674 sources."end-with-1.0.2" 128675 - sources."es-abstract-1.19.4" 128676 sources."es-shim-unscopables-1.0.0" 128677 sources."es-to-primitive-1.2.1" 128678 sources."function-bind-1.1.1" ··· 128680 sources."get-symbol-description-1.0.0" 128681 sources."has-1.0.3" 128682 sources."has-bigints-1.0.1" 128683 sources."has-symbols-1.0.3" 128684 sources."has-tostringtag-1.0.0" 128685 sources."internal-slot-1.0.3" ··· 128782 dependencies = [ 128783 sources."array-includes-3.1.4" 128784 sources."call-bind-1.0.2" 128785 - sources."define-properties-1.1.3" 128786 - sources."es-abstract-1.19.4" 128787 sources."es-to-primitive-1.2.1" 128788 sources."function-bind-1.1.1" 128789 sources."get-intrinsic-1.1.1" 128790 sources."get-symbol-description-1.0.0" 128791 sources."has-1.0.3" 128792 sources."has-bigints-1.0.1" 128793 sources."has-symbols-1.0.3" 128794 sources."has-tostringtag-1.0.0" 128795 sources."internal-slot-1.0.3" ··· 128881 sources."@types/http-cache-semantics-4.0.1" 128882 sources."@types/json-buffer-3.0.0" 128883 sources."@types/keyv-3.1.4" 128884 - sources."@types/node-17.0.23" 128885 sources."@types/responselike-1.0.0" 128886 sources."abbrev-1.1.1" 128887 sources."abstract-logging-2.0.1" ··· 128933 sources."content-type-1.0.4" 128934 sources."cookie-0.4.2" 128935 sources."cookie-signature-1.0.6" 128936 - sources."core-js-3.21.1" 128937 sources."core-util-is-1.0.2" 128938 sources."cors-2.8.5" 128939 sources."css-select-4.3.0" ··· 128946 }) 128947 sources."deep-extend-0.6.0" 128948 sources."defer-to-connect-2.0.1" 128949 - sources."define-properties-1.1.3" 128950 sources."delegates-1.0.0" 128951 sources."depd-1.1.2" 128952 sources."destroy-1.0.4" ··· 128968 }) 128969 sources."engine.io-parser-5.0.3" 128970 sources."entities-2.2.0" 128971 - sources."es-abstract-1.19.4" 128972 sources."es-to-primitive-1.2.1" 128973 sources."escape-html-1.0.3" 128974 sources."escape-string-regexp-1.0.5" ··· 128997 sources."has-1.0.3" 128998 sources."has-bigints-1.0.1" 128999 sources."has-flag-4.0.0" 129000 sources."has-symbols-1.0.3" 129001 sources."has-tostringtag-1.0.0" 129002 sources."has-unicode-2.0.1" ··· 129005 sources."http-errors-1.8.1" 129006 sources."http2-wrapper-1.0.3" 129007 sources."http_ece-1.1.0" 129008 - (sources."https-proxy-agent-5.0.0" // { 129009 dependencies = [ 129010 sources."debug-4.3.4" 129011 sources."ms-2.1.2" ··· 129224 sources."@types/http-cache-semantics-4.0.1" 129225 sources."@types/json-buffer-3.0.0" 129226 sources."@types/keyv-3.1.4" 129227 - sources."@types/node-17.0.23" 129228 sources."@types/responselike-1.0.0" 129229 sources."abbrev-1.1.1" 129230 sources."abstract-logging-2.0.1" ··· 129276 sources."content-type-1.0.4" 129277 sources."cookie-0.4.2" 129278 sources."cookie-signature-1.0.6" 129279 - sources."core-js-3.21.1" 129280 sources."core-util-is-1.0.2" 129281 sources."cors-2.8.5" 129282 sources."css-select-4.3.0" ··· 129289 }) 129290 sources."deep-extend-0.6.0" 129291 sources."defer-to-connect-2.0.1" 129292 - sources."define-properties-1.1.3" 129293 sources."delegates-1.0.0" 129294 sources."depd-1.1.2" 129295 sources."destroy-1.0.4" ··· 129311 }) 129312 sources."engine.io-parser-5.0.3" 129313 sources."entities-2.2.0" 129314 - sources."es-abstract-1.19.4" 129315 sources."es-to-primitive-1.2.1" 129316 sources."escape-html-1.0.3" 129317 sources."escape-string-regexp-1.0.5" ··· 129340 sources."has-1.0.3" 129341 sources."has-bigints-1.0.1" 129342 sources."has-flag-4.0.0" 129343 sources."has-symbols-1.0.3" 129344 sources."has-tostringtag-1.0.0" 129345 sources."has-unicode-2.0.1" ··· 129348 sources."http-errors-1.8.1" 129349 sources."http2-wrapper-1.0.3" 129350 sources."http_ece-1.1.0" 129351 - (sources."https-proxy-agent-5.0.0" // { 129352 dependencies = [ 129353 sources."debug-4.3.4" 129354 sources."ms-2.1.2" ··· 129640 sources."content-type-1.0.4" 129641 sources."cookie-0.4.0" 129642 sources."cookie-signature-1.0.6" 129643 - sources."core-js-3.21.1" 129644 sources."core-util-is-1.0.2" 129645 sources."css-select-1.2.0" 129646 sources."css-what-2.1.3" ··· 130094 thelounge-theme-chord = nodeEnv.buildNodePackage { 130095 name = "thelounge-theme-chord"; 130096 packageName = "thelounge-theme-chord"; 130097 - version = "1.0.1"; 130098 src = fetchurl { 130099 - url = "https://registry.npmjs.org/thelounge-theme-chord/-/thelounge-theme-chord-1.0.1.tgz"; 130100 - sha512 = "Y9nr1ZIUAGFyDBRCXmJcZ93pEWdjzfvyFvg+4X0hPC/+mn1QmE5nfx060ExCNRY4uKl1T0muWV89X4B2FAVoHg=="; 130101 }; 130102 buildInputs = globalBuildInputs; 130103 meta = { ··· 130233 sources."@types/http-cache-semantics-4.0.1" 130234 sources."@types/json-buffer-3.0.0" 130235 sources."@types/keyv-3.1.4" 130236 - sources."@types/node-17.0.23" 130237 sources."@types/responselike-1.0.0" 130238 sources."abbrev-1.1.1" 130239 sources."abstract-logging-2.0.1" ··· 130314 sources."content-type-1.0.4" 130315 sources."cookie-0.4.0" 130316 sources."cookie-signature-1.0.6" 130317 - sources."core-js-3.21.1" 130318 sources."core-util-is-1.0.2" 130319 sources."css-select-1.2.0" 130320 sources."css-what-2.1.3" ··· 130409 sources."http-signature-1.2.0" 130410 sources."http2-wrapper-1.0.3" 130411 sources."http_ece-1.1.0" 130412 - (sources."https-proxy-agent-5.0.0" // { 130413 dependencies = [ 130414 sources."debug-4.3.4" 130415 sources."ms-2.1.2" ··· 130700 sources."@types/http-cache-semantics-4.0.1" 130701 sources."@types/json-buffer-3.0.0" 130702 sources."@types/keyv-3.1.4" 130703 - sources."@types/node-17.0.23" 130704 sources."@types/responselike-1.0.0" 130705 sources."abbrev-1.1.1" 130706 sources."abstract-logging-2.0.1" ··· 130781 sources."content-type-1.0.4" 130782 sources."cookie-0.4.0" 130783 sources."cookie-signature-1.0.6" 130784 - sources."core-js-3.21.1" 130785 sources."core-util-is-1.0.2" 130786 sources."css-select-1.2.0" 130787 sources."css-what-2.1.3" ··· 130876 sources."http-signature-1.2.0" 130877 sources."http2-wrapper-1.0.3" 130878 sources."http_ece-1.1.0" 130879 - (sources."https-proxy-agent-5.0.0" // { 130880 dependencies = [ 130881 sources."debug-4.3.4" 130882 sources."ms-2.1.2" ··· 132064 sources."brace-expansion-1.1.11" 132065 sources."braces-3.0.2" 132066 sources."clean-stack-2.2.0" 132067 - sources."commander-9.1.0" 132068 sources."concat-map-0.0.1" 132069 sources."crypto-random-string-2.0.0" 132070 sources."del-6.0.0" ··· 132196 sources."@types/http-cache-semantics-4.0.1" 132197 sources."@types/json-buffer-3.0.0" 132198 sources."@types/keyv-3.1.4" 132199 - sources."@types/node-16.11.26" 132200 sources."@types/responselike-1.0.0" 132201 sources."abbrev-1.1.1" 132202 sources."accepts-1.3.8" ··· 132255 sources."depd-1.1.2" 132256 sources."destroy-1.0.4" 132257 sources."diff-5.0.0" 132258 - sources."diff2html-3.4.16" 132259 sources."dnd-page-scroll-0.0.4" 132260 sources."ee-first-1.1.1" 132261 sources."emoji-regex-8.0.0" ··· 132284 sources."depd-2.0.0" 132285 ]; 132286 }) 132287 - sources."fecha-4.2.2" 132288 sources."finalhandler-1.1.2" 132289 sources."fn.name-1.1.0" 132290 sources."forwarded-0.2.0" ··· 132513 sources."@types/is-empty-1.2.1" 132514 sources."@types/js-yaml-4.0.5" 132515 sources."@types/ms-0.7.31" 132516 - sources."@types/node-17.0.23" 132517 sources."@types/supports-color-8.1.1" 132518 sources."@types/unist-2.0.6" 132519 sources."ansi-regex-6.0.1" ··· 132666 sources."get-caller-file-2.0.5" 132667 sources."glob-7.2.0" 132668 sources."has-unicode-2.0.1" 132669 - sources."https-proxy-agent-5.0.0" 132670 sources."iconv-lite-0.6.3" 132671 sources."inflight-1.0.6" 132672 sources."inherits-2.0.4" ··· 132826 dependencies = [ 132827 sources."@sindresorhus/is-0.14.0" 132828 sources."@szmarczak/http-timer-1.1.2" 132829 - sources."@types/node-17.0.23" 132830 sources."@vercel/build-utils-2.15.1" 132831 sources."@vercel/go-1.3.2" 132832 sources."@vercel/node-1.14.1" ··· 133324 sha512 = "HZfrlqpVu8N0UkSyjldPsGFpVFByYaDRDMmBvmKwKai2rAsd2vtde2CFnX9rOpmg3pN2vET8j3qtqZvZLzmkjQ=="; 133325 }; 133326 dependencies = [ 133327 - sources."core-js-3.21.1" 133328 sources."jsonc-parser-3.0.0" 133329 sources."regenerator-runtime-0.13.9" 133330 sources."request-light-0.5.8" ··· 133413 sources."buffer-from-1.1.2" 133414 sources."call-bind-1.0.2" 133415 sources."camelcase-6.3.0" 133416 - sources."caniuse-lite-1.0.30001331" 133417 (sources."chalk-4.1.2" // { 133418 dependencies = [ 133419 sources."supports-color-7.2.0" ··· 133453 sources."domelementtype-2.3.0" 133454 sources."domhandler-4.3.1" 133455 sources."domutils-2.8.0" 133456 - sources."electron-to-chromium-1.4.107" 133457 sources."emoji-regex-8.0.0" 133458 sources."emojis-list-3.0.0" 133459 sources."enhanced-resolve-5.9.3" ··· 133727 sources."arrify-1.0.1" 133728 sources."asn1-0.2.6" 133729 sources."assert-plus-1.0.0" 133730 - sources."async-2.6.3" 133731 sources."asynckit-0.4.0" 133732 sources."aws-sign2-0.7.0" 133733 sources."aws4-1.11.0" ··· 134028 sources."@starptech/rehype-webparser-0.10.0" 134029 sources."@starptech/webparser-0.10.0" 134030 sources."@szmarczak/http-timer-1.1.2" 134031 - sources."@types/node-17.0.23" 134032 sources."@types/unist-2.0.6" 134033 sources."@types/vfile-3.0.2" 134034 sources."@types/vfile-message-2.0.0" ··· 134989 sources."combined-stream-1.0.8" 134990 sources."concat-map-0.0.1" 134991 sources."console-control-strings-1.1.0" 134992 - sources."core-js-pure-3.21.1" 134993 sources."cssom-0.4.4" 134994 (sources."cssstyle-2.3.0" // { 134995 dependencies = [ ··· 135033 sources."has-unicode-2.0.1" 135034 sources."html-encoding-sniffer-2.0.1" 135035 sources."http-proxy-agent-4.0.1" 135036 - sources."https-proxy-agent-5.0.0" 135037 sources."iconv-lite-0.4.24" 135038 sources."inflight-1.0.6" 135039 sources."inherits-2.0.4" ··· 135186 sources."@sindresorhus/is-0.14.0" 135187 sources."@szmarczak/http-timer-1.1.2" 135188 sources."@types/minimatch-3.0.5" 135189 - sources."@types/node-17.0.23" 135190 sources."@types/yauzl-2.9.2" 135191 sources."acorn-8.7.0" 135192 sources."acorn-jsx-5.3.2" ··· 135278 sources."deepmerge-4.2.2" 135279 sources."defaults-1.0.3" 135280 sources."defer-to-connect-1.1.3" 135281 - sources."define-properties-1.1.3" 135282 sources."delayed-stream-1.0.0" 135283 sources."doctrine-3.0.0" 135284 sources."dom-serializer-1.4.1" ··· 135353 sources."fs.realpath-1.0.0" 135354 sources."function-bind-1.1.1" 135355 sources."functional-red-black-tree-1.0.1" 135356 (sources."fx-runner-1.2.0" // { 135357 dependencies = [ 135358 sources."commander-2.9.0" ··· 135381 sources."har-validator-5.1.5" 135382 sources."has-1.0.3" 135383 sources."has-flag-4.0.0" 135384 sources."has-symbols-1.0.3" 135385 sources."has-tostringtag-1.0.0" 135386 sources."has-yarn-2.1.0" ··· 135562 sources."readable-stream-3.6.0" 135563 sources."real-require-0.1.0" 135564 sources."regenerator-runtime-0.13.9" 135565 - sources."regexp.prototype.flags-1.4.2" 135566 sources."regexpp-3.2.0" 135567 sources."registry-auth-token-4.2.1" 135568 sources."registry-url-5.1.0" ··· 135712 sources."@types/eslint-scope-3.7.3" 135713 sources."@types/estree-0.0.51" 135714 sources."@types/json-schema-7.0.11" 135715 - sources."@types/node-17.0.23" 135716 sources."@webassemblyjs/ast-1.11.1" 135717 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 135718 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 135736 sources."ajv-keywords-3.5.2" 135737 sources."browserslist-4.20.2" 135738 sources."buffer-from-1.1.2" 135739 - sources."caniuse-lite-1.0.30001331" 135740 sources."chrome-trace-event-1.0.3" 135741 sources."commander-2.20.3" 135742 - sources."electron-to-chromium-1.4.107" 135743 sources."enhanced-resolve-5.9.3" 135744 sources."es-module-lexer-0.9.3" 135745 sources."escalade-3.1.1" ··· 135883 sources."@types/http-proxy-1.17.8" 135884 sources."@types/json-schema-7.0.11" 135885 sources."@types/mime-1.3.2" 135886 - sources."@types/node-17.0.23" 135887 sources."@types/qs-6.9.7" 135888 sources."@types/range-parser-1.2.4" 135889 sources."@types/retry-0.12.1" ··· 135898 sources."ansi-html-community-0.0.8" 135899 sources."anymatch-3.1.2" 135900 sources."array-flatten-2.1.2" 135901 - sources."async-2.6.3" 135902 sources."balanced-match-1.0.2" 135903 sources."batch-0.6.1" 135904 sources."binary-extensions-2.2.0" ··· 136197 sources."@protobufjs/pool-1.1.0" 136198 sources."@protobufjs/utf8-1.1.0" 136199 sources."@types/long-4.0.1" 136200 - sources."@types/node-17.0.23" 136201 sources."@webtorrent/http-node-1.3.0" 136202 sources."addr-to-ip-port-1.5.4" 136203 sources."airplay-js-0.3.0" ··· 136777 sources."asn1-0.2.6" 136778 sources."assert-plus-1.0.0" 136779 sources."astral-regex-1.0.0" 136780 - sources."async-2.6.3" 136781 sources."asynckit-0.4.0" 136782 sources."aws-sign2-0.7.0" 136783 sources."aws4-1.11.0" ··· 136856 sources."config-chain-1.1.13" 136857 sources."configstore-3.1.5" 136858 sources."console-control-strings-1.1.0" 136859 - sources."core-js-3.21.1" 136860 sources."core-util-is-1.0.3" 136861 sources."create-error-class-3.0.2" 136862 sources."cross-spawn-6.0.5" ··· 136872 sources."deep-extend-0.6.0" 136873 sources."default-uid-1.0.0" 136874 sources."defaults-1.0.3" 136875 - sources."define-properties-1.1.3" 136876 sources."delayed-stream-1.0.0" 136877 sources."delegates-1.0.0" 136878 sources."depd-1.1.2" ··· 136928 sources."fullname-4.0.1" 136929 sources."function-bind-1.1.1" 136930 sources."gauge-1.2.7" 136931 sources."get-stdin-4.0.1" 136932 sources."get-stream-4.1.0" 136933 sources."getpass-0.1.7" ··· 136959 ]; 136960 }) 136961 sources."has-flag-3.0.0" 136962 sources."has-symbol-support-x-1.4.2" 136963 sources."has-to-string-tag-x-1.4.1" 136964 sources."has-unicode-2.0.1" 136965 sources."hosted-git-info-2.8.9" ··· 136971 ]; 136972 }) 136973 sources."http-signature-1.2.0" 136974 - (sources."https-proxy-agent-5.0.0" // { 136975 dependencies = [ 136976 sources."debug-4.3.4" 136977 sources."ms-2.1.2" ··· 137659 zx = nodeEnv.buildNodePackage { 137660 name = "zx"; 137661 packageName = "zx"; 137662 - version = "6.0.7"; 137663 src = fetchurl { 137664 - url = "https://registry.npmjs.org/zx/-/zx-6.0.7.tgz"; 137665 - sha512 = "aJTTKN4m9m8wM02yQ4jMOXMp53Ni+r+VDAs0D+bo9l9x9nCMhOocNWeTjoaancHkb7LpNb4oLILp58HzTy0GpQ=="; 137666 }; 137667 dependencies = [ 137668 sources."@nodelib/fs.scandir-2.1.5" ··· 137670 sources."@nodelib/fs.walk-1.2.8" 137671 sources."@types/fs-extra-9.0.13" 137672 sources."@types/minimist-1.2.2" 137673 - sources."@types/node-17.0.23" 137674 sources."@types/which-2.0.1" 137675 sources."braces-3.0.2" 137676 sources."chalk-5.0.1" ··· 137715 sources."universalify-2.0.0" 137716 sources."web-streams-polyfill-3.2.1" 137717 sources."which-2.0.2" 137718 - sources."yaml-1.10.2" 137719 ]; 137720 buildInputs = globalBuildInputs; 137721 meta = {
··· 31 sha512 = "t4WmWoGV9gyzypwG3y3JlcK2t8fKLtvzBA7xEoFTj9SMPvOuLsf13uh4ikK0RRaaa9RPPWLgFUdOyIRaQvCpwQ=="; 32 }; 33 }; 34 + "@alexbosworth/caporal-1.4.4" = { 35 name = "_at_alexbosworth_slash_caporal"; 36 packageName = "@alexbosworth/caporal"; 37 + version = "1.4.4"; 38 src = fetchurl { 39 + url = "https://registry.npmjs.org/@alexbosworth/caporal/-/caporal-1.4.4.tgz"; 40 + sha512 = "IUxyskkgV/N3Jk2+d6SE1CbHScKlqbAaakQjxJwk8NHmXszA8Fqh914VclQ1YvTkzjDNX9mMb1tdRAIhMHC7+A=="; 41 }; 42 }; 43 "@alexbosworth/cli-table3-0.6.1" = { ··· 112 sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="; 113 }; 114 }; 115 + "@angular-devkit/architect-0.1303.3" = { 116 name = "_at_angular-devkit_slash_architect"; 117 packageName = "@angular-devkit/architect"; 118 + version = "0.1303.3"; 119 src = fetchurl { 120 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.3.tgz"; 121 + sha512 = "WRVVBCzLlMqRZVhZXGASHzNJK/OCAvl/DTGhlLuJDIjF7lVGnXHjtwNM8ilYZq949OnC3fly5Z61TfhbN/OHCg=="; 122 }; 123 }; 124 "@angular-devkit/core-13.3.2" = { ··· 130 sha512 = "wav5plcnlxQAfZ+0EUt3dvVTJnJ1au2TlKVQ0jSQJdR1LA6N7QUI49N2Ua6ZnDMwruQaQkoynitMW2l1it3qYQ=="; 131 }; 132 }; 133 + "@angular-devkit/core-13.3.3" = { 134 + name = "_at_angular-devkit_slash_core"; 135 + packageName = "@angular-devkit/core"; 136 + version = "13.3.3"; 137 + src = fetchurl { 138 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.3.tgz"; 139 + sha512 = "lfQwY9LuVRwcNVzGmyPcwOpb3CAobP4T+c3joR1LLIPS5lzcM0oeCE2bon9N52Ktn4Q/pH98dVtjWL+jSrUADw=="; 140 + }; 141 + }; 142 "@angular-devkit/schematics-13.3.2" = { 143 name = "_at_angular-devkit_slash_schematics"; 144 packageName = "@angular-devkit/schematics"; ··· 146 src = fetchurl { 147 url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.2.tgz"; 148 sha512 = "XCLb23jmqHN0gJg9ZlICaFgfpfnCufIQp5SOsRKMKRkhjKycvDmKnfBTKDlkzb1IaUl6wQwP5k7Z69b9EX+CQw=="; 149 + }; 150 + }; 151 + "@angular-devkit/schematics-13.3.3" = { 152 + name = "_at_angular-devkit_slash_schematics"; 153 + packageName = "@angular-devkit/schematics"; 154 + version = "13.3.3"; 155 + src = fetchurl { 156 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.3.tgz"; 157 + sha512 = "S8UNlw6IoR/kxBYbiwesuA7oJGSnFkD6bJwVLhpHdT6Sqrz2/IrjHcNgTJRAvhsOKIbfDtMtXRzl/PUdWEfgyw=="; 158 }; 159 }; 160 "@angular-devkit/schematics-cli-13.3.2" = { ··· 481 sha512 = "+D3xnPD5985iphgAqgUerBDs371a2WzzoEVi7eHJUMMsP/gEnSTdSH0HNxsqhYv6CW4EdKtvDAQdAwA1VtCf2A=="; 482 }; 483 }; 484 + "@aws-sdk/client-s3-3.72.0" = { 485 name = "_at_aws-sdk_slash_client-s3"; 486 packageName = "@aws-sdk/client-s3"; 487 + version = "3.72.0"; 488 src = fetchurl { 489 + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.72.0.tgz"; 490 + sha512 = "WQnNs++yTsBARaZqpxIAB3CX9BrqgxnLo4g/wT8cLqRilhL8OY1KPowe8SptXcXbo2AdAuAtcFK2GC+MYcCgmg=="; 491 }; 492 }; 493 + "@aws-sdk/client-sso-3.72.0" = { 494 name = "_at_aws-sdk_slash_client-sso"; 495 packageName = "@aws-sdk/client-sso"; 496 + version = "3.72.0"; 497 src = fetchurl { 498 + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.72.0.tgz"; 499 + sha512 = "mQ2qSy5chVTzNo17kcOtylp8gUJr2SIx7ZkaC5ZUrA9RZu673XKFm1SXvL0aBw1LQBioKU2kGNwsUSDunXulpQ=="; 500 }; 501 }; 502 + "@aws-sdk/client-sts-3.72.0" = { 503 name = "_at_aws-sdk_slash_client-sts"; 504 packageName = "@aws-sdk/client-sts"; 505 + version = "3.72.0"; 506 src = fetchurl { 507 + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.72.0.tgz"; 508 + sha512 = "m6nEXe5wi7Cx9DHBFOji+i2tn+EXNlBC2BymlFZ+KerxAfjLyu9U16Xx9VzmfnQS5dz0Fyh0DLBIcI9DY5+ywQ=="; 509 }; 510 }; 511 "@aws-sdk/config-resolver-3.58.0" = { ··· 535 sha512 = "CdtnTQ9zqLx1FbXdbgjijLbMcIWOyQM03TFaLSCjI3FNbUwyt3T7StBU9tj/LtbypHhSdXyQBpzUtXTOMWCEhg=="; 536 }; 537 }; 538 + "@aws-sdk/credential-provider-ini-3.72.0" = { 539 name = "_at_aws-sdk_slash_credential-provider-ini"; 540 packageName = "@aws-sdk/credential-provider-ini"; 541 + version = "3.72.0"; 542 src = fetchurl { 543 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.72.0.tgz"; 544 + sha512 = "KeZAywZ5CxEUIRvIpxRiOkRUwGy+rTTGTfjQz/Mz6AUj+nx+8M5WnSLRgENcwXmX59A7VdqosvD1jnRiXJjmPg=="; 545 }; 546 }; 547 + "@aws-sdk/credential-provider-node-3.72.0" = { 548 name = "_at_aws-sdk_slash_credential-provider-node"; 549 packageName = "@aws-sdk/credential-provider-node"; 550 + version = "3.72.0"; 551 src = fetchurl { 552 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.72.0.tgz"; 553 + sha512 = "8yNNILXPAD9RlcKI0aronXOgwF9vRZQqEwPuvkurCPFQFt+OM/4/HTJns2NSVmImKDMV36sG+6Ld6aJEVW4cLQ=="; 554 }; 555 }; 556 "@aws-sdk/credential-provider-process-3.58.0" = { ··· 562 sha512 = "npgFqPUjMhUamf1FvJjBYUdpbWx8XWkKCwJsX73I7IYQAvAi2atCOkdtKq+4rds0VWAYu6vzlaI1tXgFxjOPNQ=="; 563 }; 564 }; 565 + "@aws-sdk/credential-provider-sso-3.72.0" = { 566 name = "_at_aws-sdk_slash_credential-provider-sso"; 567 packageName = "@aws-sdk/credential-provider-sso"; 568 + version = "3.72.0"; 569 src = fetchurl { 570 + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.72.0.tgz"; 571 + sha512 = "2NGjF2gMls5f/9QbUQEHR9kbVGePLI7EXVOyPb1H6DvQLp54keMVdTlSzKlRIcGUNd4MBYuDJak8Slf976/UVw=="; 572 }; 573 }; 574 "@aws-sdk/credential-provider-web-identity-3.55.0" = { ··· 589 sha512 = "vTdVFLIHGZTx/Anp9GpkTXVuvwSCNOecTutU5Py4i6fATgefWiSutc5Xc/FLujBSc0EhAXDGZIcTMpZC7jUpeg=="; 590 }; 591 }; 592 + "@aws-sdk/eventstream-serde-browser-3.72.0" = { 593 name = "_at_aws-sdk_slash_eventstream-serde-browser"; 594 packageName = "@aws-sdk/eventstream-serde-browser"; 595 + version = "3.72.0"; 596 src = fetchurl { 597 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.72.0.tgz"; 598 + sha512 = "UhMZ4P60mZu7G+craAdkRgR4/n3lWAgrNp1upgN2W8RLEQwhqY3qHiUdn/kp6qvontwHnxZkXNB+5Zm5pcP8bQ=="; 599 }; 600 }; 601 "@aws-sdk/eventstream-serde-config-resolver-3.55.0" = { ··· 607 sha512 = "NTJHLq1sbXyXAaJucKvcdN3Svr/fM2TjHEC3l8P/torFjIsX1+Ykpi8tZt8KsX8RjoUTTfKylh41AjJq0K9X4Q=="; 608 }; 609 }; 610 + "@aws-sdk/eventstream-serde-node-3.72.0" = { 611 name = "_at_aws-sdk_slash_eventstream-serde-node"; 612 packageName = "@aws-sdk/eventstream-serde-node"; 613 + version = "3.72.0"; 614 src = fetchurl { 615 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.72.0.tgz"; 616 + sha512 = "woemBkQ3O7mTiT3kdJH72s3lQLhr2B7hxRhYeaa1xQf1UjLJkKXL5PEOOrcylmxLdF6rYLsFs8Y/Hr4FZfqAqA=="; 617 }; 618 }; 619 + "@aws-sdk/eventstream-serde-universal-3.72.0" = { 620 name = "_at_aws-sdk_slash_eventstream-serde-universal"; 621 packageName = "@aws-sdk/eventstream-serde-universal"; 622 + version = "3.72.0"; 623 src = fetchurl { 624 + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.72.0.tgz"; 625 + sha512 = "iIaDC/2xgK+2kLiOPJv8wMDCCtI2JB8bkeac6cQOfn4hZGQdP6fvRGFWD2R8//VR52H68N2vrhCXHvtjnF4iFg=="; 626 }; 627 }; 628 "@aws-sdk/fetch-http-handler-3.58.0" = { ··· 715 sha512 = "nx6X6qLPwvbJrGoPxXSu4tsOek2eRnnjk78hhRUDfxFewpHJQLSPlyNKkXAo+C3syVALe6RJRmUYu5bShY6FfA=="; 716 }; 717 }; 718 + "@aws-sdk/middleware-flexible-checksums-3.72.0" = { 719 name = "_at_aws-sdk_slash_middleware-flexible-checksums"; 720 packageName = "@aws-sdk/middleware-flexible-checksums"; 721 + version = "3.72.0"; 722 src = fetchurl { 723 + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.72.0.tgz"; 724 + sha512 = "lrwTmpygp6bxGRi6kbMq+EtTW5nsts+B7Wj7MA8PBIQsKU06T2tYxjDBYOyHB1MiVhltlq+vebBvacT64KsbFA=="; 725 }; 726 }; 727 "@aws-sdk/middleware-header-default-3.58.0" = { ··· 886 sha512 = "e+2FLgo+eDx7oh7ap5HngN9XSVMxredAVztLHxCcSN0lFHHHzMa8b2SpXbaowUxQHh7ziymSqvOrPYFQ71Filg=="; 887 }; 888 }; 889 + "@aws-sdk/s3-request-presigner-3.72.0" = { 890 name = "_at_aws-sdk_slash_s3-request-presigner"; 891 packageName = "@aws-sdk/s3-request-presigner"; 892 + version = "3.72.0"; 893 src = fetchurl { 894 + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.72.0.tgz"; 895 + sha512 = "6CxvI0tdamXn58OEmg59YHZPpsiLvCDtbijs9JhCYxvMblhkyPwWZglsZgcEkzIEPySe9RTZ5/BTHn6FzAe4xw=="; 896 }; 897 }; 898 "@aws-sdk/service-error-classification-3.55.0" = { ··· 931 sha512 = "Akvc8G9Del2+umg0R/5Gc/PWgQwbxxTXdnm6YTHtDzvyPPiYWBs6au6WqJQqcqk07gcQV67MLVqFFhnFuLlcVg=="; 932 }; 933 }; 934 + "@aws-sdk/smithy-client-3.72.0" = { 935 name = "_at_aws-sdk_slash_smithy-client"; 936 packageName = "@aws-sdk/smithy-client"; 937 + version = "3.72.0"; 938 src = fetchurl { 939 + url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.72.0.tgz"; 940 + sha512 = "eQ2pEzxtS1Vz1XyNKzG4Z+mtfwRzcAs4FUQP0wrrYVJMsIdI0X4vvro8gYGoBbQtOz65uY3XqQdLuXX/SabTQg=="; 941 }; 942 }; 943 "@aws-sdk/types-3.55.0" = { ··· 1021 sha512 = "30dzofQQfx6tp1jVZkZ0DGRsT0wwC15nEysKRiAcjncM64A0Cm6sra77d0os3vbKiKoPCI/lMsFr4o3533+qvQ=="; 1022 }; 1023 }; 1024 + "@aws-sdk/util-create-request-3.72.0" = { 1025 name = "_at_aws-sdk_slash_util-create-request"; 1026 packageName = "@aws-sdk/util-create-request"; 1027 + version = "3.72.0"; 1028 src = fetchurl { 1029 + url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.72.0.tgz"; 1030 + sha512 = "SRxo1RWQ9e7QonuIH8oNEiOJTtasOtYNRD5QYwbJKhNkB4Z6AaE00V28AjrdS/+rMOcb0DKugXZ8Nhbd+n+K0g=="; 1031 }; 1032 }; 1033 + "@aws-sdk/util-defaults-mode-browser-3.72.0" = { 1034 name = "_at_aws-sdk_slash_util-defaults-mode-browser"; 1035 packageName = "@aws-sdk/util-defaults-mode-browser"; 1036 + version = "3.72.0"; 1037 src = fetchurl { 1038 + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.72.0.tgz"; 1039 + sha512 = "xeoh4jdq+tpZWDwGeXeoAQI+rZaCBEicjumBcqfzkRFE3DyaeyPHn3hiKGSR13R+P6Uf86aqaRNmWAeZZjeE0w=="; 1040 }; 1041 }; 1042 + "@aws-sdk/util-defaults-mode-node-3.72.0" = { 1043 name = "_at_aws-sdk_slash_util-defaults-mode-node"; 1044 packageName = "@aws-sdk/util-defaults-mode-node"; 1045 + version = "3.72.0"; 1046 src = fetchurl { 1047 + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.72.0.tgz"; 1048 + sha512 = "Qf4BZmjWTaWaWbIhra/il8zUAdYY6G4JIcg9WMzQgnh1L/iXpCZddInfB2zT4j5rSAuBf5Ov2T6zvtw3/KOh6Q=="; 1049 }; 1050 }; 1051 "@aws-sdk/util-format-url-3.58.0" = { ··· 2353 sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; 2354 }; 2355 }; 2356 + "@blueprintjs/colors-4.1.0" = { 2357 name = "_at_blueprintjs_slash_colors"; 2358 packageName = "@blueprintjs/colors"; 2359 + version = "4.1.0"; 2360 src = fetchurl { 2361 + url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.0.tgz"; 2362 + sha512 = "aXgkEBg2oEz6lCE/sidvREUzQF7eJq2R8BvfOcQ1ICV4r/KVFszee6seA12ZtVaphfvuR4EE/raH6F1d0f4y7g=="; 2363 }; 2364 }; 2365 "@blueprintjs/core-3.54.0" = { ··· 3424 sha512 = "QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA=="; 3425 }; 3426 }; 3427 + "@envelop/core-2.3.1" = { 3428 + name = "_at_envelop_slash_core"; 3429 + packageName = "@envelop/core"; 3430 + version = "2.3.1"; 3431 + src = fetchurl { 3432 + url = "https://registry.npmjs.org/@envelop/core/-/core-2.3.1.tgz"; 3433 + sha512 = "AnYUci7EGyA8flml881lDvVDl6n/u6GQpVIOTsZVO29d4/rPqSJ2KFguDD3mjDL406doTTLNuDI4ndxfJl6fmQ=="; 3434 + }; 3435 + }; 3436 + "@envelop/disable-introspection-3.3.1" = { 3437 + name = "_at_envelop_slash_disable-introspection"; 3438 + packageName = "@envelop/disable-introspection"; 3439 + version = "3.3.1"; 3440 + src = fetchurl { 3441 + url = "https://registry.npmjs.org/@envelop/disable-introspection/-/disable-introspection-3.3.1.tgz"; 3442 + sha512 = "THR8UnRQQB5nCLmITXvebwXwSHvFjS+ThA3RRVXpFX9EupMbTFN5a4NHty7+BYD798c3VrBZ/InbMlEWqw1c9g=="; 3443 + }; 3444 + }; 3445 + "@envelop/parser-cache-4.3.1" = { 3446 + name = "_at_envelop_slash_parser-cache"; 3447 + packageName = "@envelop/parser-cache"; 3448 + version = "4.3.1"; 3449 + src = fetchurl { 3450 + url = "https://registry.npmjs.org/@envelop/parser-cache/-/parser-cache-4.3.1.tgz"; 3451 + sha512 = "IqerCVjvVTiGvSZ8qSpdEc55hhiuekufJd0+ldWtyMPznhMaYOzpLifFUhjhhD7004eJM17n9vjJQFa7fIGz8Q=="; 3452 + }; 3453 + }; 3454 + "@envelop/types-2.2.0" = { 3455 + name = "_at_envelop_slash_types"; 3456 + packageName = "@envelop/types"; 3457 + version = "2.2.0"; 3458 + src = fetchurl { 3459 + url = "https://registry.npmjs.org/@envelop/types/-/types-2.2.0.tgz"; 3460 + sha512 = "Lghvfs0kh53G5mUKpCMlB/FhHh3O8SSR4hewB7JyE9hOEu/9h/6u+GHH/OEgdaRHky1Sae5Jf4grO+h21ka4ig=="; 3461 + }; 3462 + }; 3463 + "@envelop/validation-cache-4.3.1" = { 3464 + name = "_at_envelop_slash_validation-cache"; 3465 + packageName = "@envelop/validation-cache"; 3466 + version = "4.3.1"; 3467 + src = fetchurl { 3468 + url = "https://registry.npmjs.org/@envelop/validation-cache/-/validation-cache-4.3.1.tgz"; 3469 + sha512 = "lmtu9idhdWqbYkcFoFsL1ED4y38DLvj6EDEwE9tULXWuZm4WWmlNQAmKHAwB1d3kGVQAMtxM59crkOOJGRBgHQ=="; 3470 + }; 3471 + }; 3472 "@eslint/eslintrc-0.4.3" = { 3473 name = "_at_eslint_slash_eslintrc"; 3474 packageName = "@eslint/eslintrc"; ··· 3730 sha512 = "M4SmXu428wwQLu1iw6ST07iACjdKY5HiU+xpcgD3IQMMQazgN616GDzc6KZ1ebuBsF7B4TyQS7KZh9mfxnnldg=="; 3731 }; 3732 }; 3733 + "@fluentui/font-icons-mdl2-8.3.1" = { 3734 name = "_at_fluentui_slash_font-icons-mdl2"; 3735 packageName = "@fluentui/font-icons-mdl2"; 3736 + version = "8.3.1"; 3737 src = fetchurl { 3738 + url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.3.1.tgz"; 3739 + sha512 = "L+rYMpTqj335zOhgLEf5vbzyhbSnqTXdsTbN4I9eUHZStrCzrKVcrQ57J/PvBVCZlqkqC9EAOaqhsf2CahPhBg=="; 3740 }; 3741 }; 3742 + "@fluentui/foundation-legacy-8.2.6" = { 3743 name = "_at_fluentui_slash_foundation-legacy"; 3744 packageName = "@fluentui/foundation-legacy"; 3745 + version = "8.2.6"; 3746 src = fetchurl { 3747 + url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.6.tgz"; 3748 + sha512 = "exjlFBqtxoFdz9gAg106iTtYhdtvztUHWcpxENwBGfSyFdQNKBuitQPvR5V5xO2snWxJCo/UNK3YWjgTm7UB/A=="; 3749 }; 3750 }; 3751 "@fluentui/keyboard-key-0.4.0" = { ··· 3757 sha512 = "2jcD23FzOPaSXqWtfOSCzopkKtxTXUFuHZyVt4aqVRDEjPbkQ/7p37O1WL95xweWTR/9fEPO/gPtv9kOnXrJcA=="; 3758 }; 3759 }; 3760 + "@fluentui/merge-styles-8.5.1" = { 3761 name = "_at_fluentui_slash_merge-styles"; 3762 packageName = "@fluentui/merge-styles"; 3763 + version = "8.5.1"; 3764 src = fetchurl { 3765 + url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.1.tgz"; 3766 + sha512 = "jzTyqhockpunkFKbEK+8sBP2cbgLllcmcWdTkCrxb+8CxLXD5bMWGMgUiI99Xz7+G/01QBMgAHOngKC05dVS7A=="; 3767 }; 3768 }; 3769 + "@fluentui/react-8.65.0" = { 3770 name = "_at_fluentui_slash_react"; 3771 packageName = "@fluentui/react"; 3772 + version = "8.65.0"; 3773 src = fetchurl { 3774 + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.65.0.tgz"; 3775 + sha512 = "wQqRT8RemcSLJ1cinAAwgerZaax8mYys2eO5ZQtCoO84gbKvlF2G1OLfZpjXPUnu/R06o99GdFdOqIyOnPqyDQ=="; 3776 }; 3777 }; 3778 + "@fluentui/react-focus-8.5.7" = { 3779 name = "_at_fluentui_slash_react-focus"; 3780 packageName = "@fluentui/react-focus"; 3781 + version = "8.5.7"; 3782 src = fetchurl { 3783 + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.5.7.tgz"; 3784 + sha512 = "5pL5Tbtu5eGtKMNYSHpZ7pNd/gR+Ge2Ye9r8UjphX2X3xYm0/Q0ktjRO1xdPDi7KW20I3GgLDviCW2atSxqIBw=="; 3785 }; 3786 }; 3787 + "@fluentui/react-hooks-8.5.4" = { 3788 name = "_at_fluentui_slash_react-hooks"; 3789 packageName = "@fluentui/react-hooks"; 3790 + version = "8.5.4"; 3791 src = fetchurl { 3792 + url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.5.4.tgz"; 3793 + sha512 = "WEU+NCrc080v631KFetcqNfXUBReX91cPbDyo8gi3M5babObs/m913SeV/m2llLKVCAelLVEIGw33QlQsGAK3g=="; 3794 }; 3795 }; 3796 "@fluentui/react-window-provider-2.2.0" = { ··· 3811 sha512 = "bqjpfhqaIkBy16vdYzdc7tER9Td7BTcmC+kCXuqkHOQVuG9LJfqVGRV0DA857KLhOxiy0GXwKMeDbNV5jJf6qQ=="; 3812 }; 3813 }; 3814 + "@fluentui/style-utilities-8.6.6" = { 3815 name = "_at_fluentui_slash_style-utilities"; 3816 packageName = "@fluentui/style-utilities"; 3817 + version = "8.6.6"; 3818 src = fetchurl { 3819 + url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.6.6.tgz"; 3820 + sha512 = "axMN7sq4W/YLuk0LiYPrg23e45Tkv89w9w6FCRnhj6JWja+inlK/IPh/qR2egOBkXU0iJY3g03KP0GMqqm5eWg=="; 3821 }; 3822 }; 3823 + "@fluentui/theme-2.6.5" = { 3824 name = "_at_fluentui_slash_theme"; 3825 packageName = "@fluentui/theme"; 3826 + version = "2.6.5"; 3827 src = fetchurl { 3828 + url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.5.tgz"; 3829 + sha512 = "P22JpZSZoDjIWO5AxdPNjuDixqlhHvj8eEQB4Ilf/aYKXXzMI8HTc6eBcm9vQt3NKutzHsat3h+Jrstkw9H2YA=="; 3830 }; 3831 }; 3832 + "@fluentui/utilities-8.8.2" = { 3833 name = "_at_fluentui_slash_utilities"; 3834 packageName = "@fluentui/utilities"; 3835 + version = "8.8.2"; 3836 src = fetchurl { 3837 + url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.8.2.tgz"; 3838 + sha512 = "hmPS0NiKT1QfBHRX8hM9V179jlM1nt4JxBuzkb+52+XPYwcwBYZJfb4UaX0UhMJH7Em5xwc5Dy2AjNqPCOvnIg=="; 3839 }; 3840 }; 3841 "@gar/promisify-1.1.3" = { ··· 3955 sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg=="; 3956 }; 3957 }; 3958 + "@graphql-tools/batch-execute-8.4.5" = { 3959 name = "_at_graphql-tools_slash_batch-execute"; 3960 packageName = "@graphql-tools/batch-execute"; 3961 + version = "8.4.5"; 3962 src = fetchurl { 3963 + url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.5.tgz"; 3964 + sha512 = "wx2bK3EZ5XSF/jXCQyx/IAucHxCbcQpNNE3wlIxrymZkGSVnwdz0xBfefsn17smImNXGaXgQ+pE7gPDCKmeGrw=="; 3965 }; 3966 }; 3967 "@graphql-tools/delegate-7.1.5" = { ··· 3973 sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; 3974 }; 3975 }; 3976 + "@graphql-tools/delegate-8.7.6" = { 3977 name = "_at_graphql-tools_slash_delegate"; 3978 packageName = "@graphql-tools/delegate"; 3979 + version = "8.7.6"; 3980 src = fetchurl { 3981 + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.6.tgz"; 3982 + sha512 = "x/dJzgocSANk4Tw6kaASn2aSTJpYvQoLsOSH2fVgnjiaDJkidwctbb5rpbEs6n+WjNB2gW/ldyHTdEbNREJjsw=="; 3983 }; 3984 }; 3985 "@graphql-tools/graphql-file-loader-6.2.7" = { ··· 3991 sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; 3992 }; 3993 }; 3994 + "@graphql-tools/graphql-file-loader-7.3.10" = { 3995 name = "_at_graphql-tools_slash_graphql-file-loader"; 3996 packageName = "@graphql-tools/graphql-file-loader"; 3997 + version = "7.3.10"; 3998 src = fetchurl { 3999 + url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.10.tgz"; 4000 + sha512 = "IkhBU3ho+LL9hKSwiBX/of0zIkq/T1Z3Cd8v2COZAsq1qfg07s1xJUA+gZYZPkxcaa12ThUxyNGf5SuF6T7uZA=="; 4001 }; 4002 }; 4003 + "@graphql-tools/import-6.6.12" = { 4004 name = "_at_graphql-tools_slash_import"; 4005 packageName = "@graphql-tools/import"; 4006 + version = "6.6.12"; 4007 src = fetchurl { 4008 + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.12.tgz"; 4009 + sha512 = "M0detzy3ihJGJbo7MZ6j02198o2nBhiY2MpnWEMRtUMgmZgz5ZTctK3lIxMsd+6LU96m+mc1i2MNIruTHQ6czw=="; 4010 }; 4011 }; 4012 "@graphql-tools/json-file-loader-6.2.6" = { ··· 4018 sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA=="; 4019 }; 4020 }; 4021 + "@graphql-tools/json-file-loader-7.3.10" = { 4022 name = "_at_graphql-tools_slash_json-file-loader"; 4023 packageName = "@graphql-tools/json-file-loader"; 4024 + version = "7.3.10"; 4025 src = fetchurl { 4026 + url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.3.10.tgz"; 4027 + sha512 = "wLWv0NWRJm3YG1uKkGU4dFTiw8vy6iLxsSCW6ud8f87AfEIG07vS6w2598c1kB1UlTAGqWQYG3HyJ65cjFripA=="; 4028 }; 4029 }; 4030 "@graphql-tools/load-6.2.4" = { ··· 4036 sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; 4037 }; 4038 }; 4039 + "@graphql-tools/load-7.5.9" = { 4040 name = "_at_graphql-tools_slash_load"; 4041 packageName = "@graphql-tools/load"; 4042 + version = "7.5.9"; 4043 src = fetchurl { 4044 + url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.9.tgz"; 4045 + sha512 = "khm1v76ZZseptpweCQ1SIUWi8Y17VCWKTFmKNGkaCDtFEOrwPH6B8u+/J3xS5J+ltQc9FoomMpn6ZELUOqq1dg=="; 4046 }; 4047 }; 4048 "@graphql-tools/merge-6.2.17" = { ··· 4054 sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow=="; 4055 }; 4056 }; 4057 + "@graphql-tools/merge-8.2.9" = { 4058 name = "_at_graphql-tools_slash_merge"; 4059 packageName = "@graphql-tools/merge"; 4060 + version = "8.2.9"; 4061 src = fetchurl { 4062 + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.9.tgz"; 4063 + sha512 = "mHRrqMc1NTL6MALBQK1DmAzSxJIKoaCaW7ZCk5bRGzVj/MNQz3OsqlDb/+t9/ONT0V+WI/uxBFsrLMwa4p6L7A=="; 4064 }; 4065 }; 4066 "@graphql-tools/schema-7.1.5" = { ··· 4072 sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA=="; 4073 }; 4074 }; 4075 + "@graphql-tools/schema-8.3.9" = { 4076 name = "_at_graphql-tools_slash_schema"; 4077 packageName = "@graphql-tools/schema"; 4078 + version = "8.3.9"; 4079 src = fetchurl { 4080 + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.9.tgz"; 4081 + sha512 = "9YFCzn0sYAGTWhZrVYY/neK5cie3s0dNm7Qq38tkhOh2ME5BtHW/8ZIq+UrLGKsBYwa+Qjb/UojGWUm2yG/z6Q=="; 4082 }; 4083 }; 4084 "@graphql-tools/url-loader-6.10.1" = { ··· 4090 sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; 4091 }; 4092 }; 4093 + "@graphql-tools/url-loader-7.9.13" = { 4094 name = "_at_graphql-tools_slash_url-loader"; 4095 packageName = "@graphql-tools/url-loader"; 4096 + version = "7.9.13"; 4097 src = fetchurl { 4098 + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.13.tgz"; 4099 + sha512 = "AeLCLhUyXt2Owt624v0/xjGBvBrYJLWhdNm5LJLcWrMxRoEq16B+E5/JOq3aXruDAaq3VmINjnRMM1As+FphSg=="; 4100 }; 4101 }; 4102 "@graphql-tools/utils-6.2.4" = { ··· 4126 sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ=="; 4127 }; 4128 }; 4129 + "@graphql-tools/utils-8.6.8" = { 4130 name = "_at_graphql-tools_slash_utils"; 4131 packageName = "@graphql-tools/utils"; 4132 + version = "8.6.8"; 4133 src = fetchurl { 4134 + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.8.tgz"; 4135 + sha512 = "EdUUeKi/wp/UvuknyINpQ/uXDqTM3qxPPPDIq5RpfW0zQOeCvbZcx8xHoMox0TYKvKtg3zoB7aprUtoW+iZLxw=="; 4136 }; 4137 }; 4138 "@graphql-tools/wrap-7.0.8" = { ··· 4144 sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; 4145 }; 4146 }; 4147 + "@graphql-tools/wrap-8.4.15" = { 4148 name = "_at_graphql-tools_slash_wrap"; 4149 packageName = "@graphql-tools/wrap"; 4150 + version = "8.4.15"; 4151 + src = fetchurl { 4152 + url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.15.tgz"; 4153 + sha512 = "O3a3IP2yDWqR+B+WtAodiLx166ylGWLuM86upQfZGyJgjhIGqVAEqKIZbE/FyvHUpSiuVpcKwDgwtfCV/s1qNQ=="; 4154 + }; 4155 + }; 4156 + "@graphql-typed-document-node/core-3.1.1" = { 4157 + name = "_at_graphql-typed-document-node_slash_core"; 4158 + packageName = "@graphql-typed-document-node/core"; 4159 + version = "3.1.1"; 4160 + src = fetchurl { 4161 + url = "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz"; 4162 + sha512 = "NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg=="; 4163 + }; 4164 + }; 4165 + "@graphql-yoga/common-2.3.0" = { 4166 + name = "_at_graphql-yoga_slash_common"; 4167 + packageName = "@graphql-yoga/common"; 4168 + version = "2.3.0"; 4169 + src = fetchurl { 4170 + url = "https://registry.npmjs.org/@graphql-yoga/common/-/common-2.3.0.tgz"; 4171 + sha512 = "EPKK97953c8E1FiaLHMMGqLKtoAN5H9qHr0AiAzMlruJHn0JcbMf2qFTUXklCsuk6UEwNtxeHX42zim11O/E1g=="; 4172 + }; 4173 + }; 4174 + "@graphql-yoga/node-2.3.0" = { 4175 + name = "_at_graphql-yoga_slash_node"; 4176 + packageName = "@graphql-yoga/node"; 4177 + version = "2.3.0"; 4178 + src = fetchurl { 4179 + url = "https://registry.npmjs.org/@graphql-yoga/node/-/node-2.3.0.tgz"; 4180 + sha512 = "uofEmKIDYthJuCcdhbgU0VW5i2cCqZVKIiEW/xbwvCOBJt439k46D+M6youiQYJ1miaA/m0btbuZ1sAo/TLjdQ=="; 4181 + }; 4182 + }; 4183 + "@graphql-yoga/subscription-2.0.0" = { 4184 + name = "_at_graphql-yoga_slash_subscription"; 4185 + packageName = "@graphql-yoga/subscription"; 4186 + version = "2.0.0"; 4187 src = fetchurl { 4188 + url = "https://registry.npmjs.org/@graphql-yoga/subscription/-/subscription-2.0.0.tgz"; 4189 + sha512 = "HlG+gIddjIP3/BDrMZymdzmzDjNdYuSGMxx6+1JA83gAEVRDR4yOoT4QeNKYqRhLK9xca/Hxp1PfBpquSa244Q=="; 4190 }; 4191 }; 4192 "@grpc/grpc-js-1.5.10" = { ··· 4225 sha512 = "9+89Ne1K8F9u86T+l1yIV2DS+dWHYVK61SsDZN4MFTFehOOaJ4rHxa1cW8Lwdn2/6tOx7N3+SY/vfcjztOHopA=="; 4226 }; 4227 }; 4228 + "@grpc/grpc-js-1.6.4" = { 4229 + name = "_at_grpc_slash_grpc-js"; 4230 + packageName = "@grpc/grpc-js"; 4231 + version = "1.6.4"; 4232 + src = fetchurl { 4233 + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.4.tgz"; 4234 + sha512 = "Jqq8t3ylPLPK4XXnYPj2uuESirRCAaQ0//GxRLPK6Xq2TBHb2DlmSzJUh15a6R4uUIjBwA8wI69JuKleZXz4jQ=="; 4235 + }; 4236 + }; 4237 "@grpc/proto-loader-0.6.9" = { 4238 name = "_at_grpc_slash_proto-loader"; 4239 packageName = "@grpc/proto-loader"; ··· 5854 sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; 5855 }; 5856 }; 5857 + "@microsoft/load-themed-styles-1.10.258" = { 5858 name = "_at_microsoft_slash_load-themed-styles"; 5859 packageName = "@microsoft/load-themed-styles"; 5860 + version = "1.10.258"; 5861 src = fetchurl { 5862 + url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.258.tgz"; 5863 + sha512 = "MUJGLLztVKuL7cvQcErURsqDF1XW3XR8FKJDgoxZ1g55C7k28TNZ3DkLSVLI/Z3arCB5ZbYQBx5pXAXlyKXtEA=="; 5864 }; 5865 }; 5866 "@mitmaro/errors-1.0.0" = { ··· 7861 sha512 = "feQEZlyBvQsbT/fvpJ4jJ5OLGaUPpnskHYDsY8DGpPymN+HUeDQrqkBEbbKRwMKidFTI2cxk2kJNNTnvdS9jyw=="; 7862 }; 7863 }; 7864 + "@repeaterjs/repeater-3.0.4" = { 7865 + name = "_at_repeaterjs_slash_repeater"; 7866 + packageName = "@repeaterjs/repeater"; 7867 + version = "3.0.4"; 7868 + src = fetchurl { 7869 + url = "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.4.tgz"; 7870 + sha512 = "AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA=="; 7871 + }; 7872 + }; 7873 "@request/api-0.6.0" = { 7874 name = "_at_request_slash_api"; 7875 packageName = "@request/api"; ··· 7915 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 7916 }; 7917 }; 7918 + "@schematics/angular-13.3.3" = { 7919 name = "_at_schematics_slash_angular"; 7920 packageName = "@schematics/angular"; 7921 + version = "13.3.3"; 7922 src = fetchurl { 7923 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.3.tgz"; 7924 + sha512 = "kX5ghVCmWHcMN+g0pUaFuIJzwrXsVnK4bfid8DckU4EEtfFSv3UA5I1QNJRgpCPxTPhNEAk+3ePN8nzDSjdU+w=="; 7925 }; 7926 }; 7927 "@segment/loosely-validate-event-2.0.0" = { ··· 8644 sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="; 8645 }; 8646 }; 8647 + "@types/babel__traverse-7.17.0" = { 8648 name = "_at_types_slash_babel__traverse"; 8649 packageName = "@types/babel__traverse"; 8650 + version = "7.17.0"; 8651 src = fetchurl { 8652 + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.0.tgz"; 8653 + sha512 = "r8aveDbd+rzGP+ykSdF3oPuTVRWRfbBiHl0rVDM2yNEmSMXfkObQLV46b4RnCv3Lra51OlfnZhkkFaDl2MIRaA=="; 8654 }; 8655 }; 8656 "@types/babylon-6.16.6" = { ··· 9508 sha512 = "Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ=="; 9509 }; 9510 }; 9511 + "@types/node-12.20.48" = { 9512 name = "_at_types_slash_node"; 9513 packageName = "@types/node"; 9514 + version = "12.20.48"; 9515 src = fetchurl { 9516 + url = "https://registry.npmjs.org/@types/node/-/node-12.20.48.tgz"; 9517 + sha512 = "4kxzqkrpwYtn6okJUcb2lfUu9ilnb3yhUOH6qX3nug8D2DupZ2drIkff2yJzYcNJVl3begnlcaBJ7tqiTTzjnQ=="; 9518 }; 9519 }; 9520 "@types/node-13.13.52" = { ··· 9535 sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg=="; 9536 }; 9537 }; 9538 + "@types/node-14.18.13" = { 9539 name = "_at_types_slash_node"; 9540 packageName = "@types/node"; 9541 + version = "14.18.13"; 9542 src = fetchurl { 9543 + url = "https://registry.npmjs.org/@types/node/-/node-14.18.13.tgz"; 9544 + sha512 = "Z6/KzgyWOga3pJNS42A+zayjhPbf2zM3hegRQaOPnLOzEi86VV++6FLDWgR1LGrVCRufP/ph2daa3tEa5br1zA=="; 9545 }; 9546 }; 9547 "@types/node-15.14.9" = { ··· 9553 sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A=="; 9554 }; 9555 }; 9556 + "@types/node-16.11.27" = { 9557 name = "_at_types_slash_node"; 9558 packageName = "@types/node"; 9559 + version = "16.11.27"; 9560 src = fetchurl { 9561 + url = "https://registry.npmjs.org/@types/node/-/node-16.11.27.tgz"; 9562 + sha512 = "C1pD3kgLoZ56Uuy5lhfOxie4aZlA3UMGLX9rXteq4WitEZH6Rl80mwactt9QG0w0gLFlN/kLBTFnGXtDVWvWQw=="; 9563 }; 9564 }; 9565 "@types/node-16.11.6" = { ··· 9589 sha512 = "UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw=="; 9590 }; 9591 }; 9592 + "@types/node-17.0.24" = { 9593 + name = "_at_types_slash_node"; 9594 + packageName = "@types/node"; 9595 + version = "17.0.24"; 9596 + src = fetchurl { 9597 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.24.tgz"; 9598 + sha512 = "aveCYRQbgTH9Pssp1voEP7HiuWlD2jW2BO56w+bVrJn04i61yh6mRfoKO6hEYQD9vF+W8Chkwc6j1M36uPkx4g=="; 9599 + }; 9600 + }; 9601 "@types/node-6.14.13" = { 9602 name = "_at_types_slash_node"; 9603 packageName = "@types/node"; ··· 9742 sha512 = "+TRLFmHLnpoV0uw4O/PzqMbPT6bhQM0q2KO0l+R7M3sHYRndPpNL6kv8p7Ee9ZxgQ6noYB18/t+heQi7eijOHA=="; 9743 }; 9744 }; 9745 + "@types/react-16.14.25" = { 9746 name = "_at_types_slash_react"; 9747 packageName = "@types/react"; 9748 + version = "16.14.25"; 9749 src = fetchurl { 9750 + url = "https://registry.npmjs.org/@types/react/-/react-16.14.25.tgz"; 9751 + sha512 = "cXRVHd7vBT5v1is72mmvmsg9stZrbJO04DJqFeh3Yj2tVKO6vmxg5BI+ybI6Ls7ROXRG3aFbZj9x0WA3ZAoDQw=="; 9752 }; 9753 }; 9754 "@types/react-dom-16.9.14" = { ··· 9994 sha512 = "7axfYN8SW9pWg78NgenHasSproWQee5rzyPVLC9HpaQSDgNArsnKJD88EaMfi4Pl48AyciO3agYCFqpHS1gLpg=="; 9995 }; 9996 }; 9997 + "@types/tough-cookie-4.0.2" = { 9998 name = "_at_types_slash_tough-cookie"; 9999 packageName = "@types/tough-cookie"; 10000 + version = "4.0.2"; 10001 src = fetchurl { 10002 + url = "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz"; 10003 + sha512 = "Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw=="; 10004 }; 10005 }; 10006 "@types/uglify-js-3.13.2" = { ··· 10120 sha512 = "XCph0RiiqFGetukCTC3KVnY1jwLcZ84illFRMbyFzCcWl90B/76ew0tSqF46oBhnLC4obNDG7dMO0JfTN0MgMQ=="; 10121 }; 10122 }; 10123 + "@types/webpack-env-1.16.4" = { 10124 name = "_at_types_slash_webpack-env"; 10125 packageName = "@types/webpack-env"; 10126 + version = "1.16.4"; 10127 src = fetchurl { 10128 + url = "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.16.4.tgz"; 10129 + sha512 = "llS8qveOUX3wxHnSykP5hlYFFuMfJ9p5JvIyCiBgp7WTfl6K5ZcyHj8r8JsN/J6QODkAsRRCLIcTuOCu8etkUw=="; 10130 }; 10131 }; 10132 "@types/webpack-sources-3.2.0" = { ··· 10147 sha512 = "B5m9aq7cbbD/5/jThEr33nUY8WEfVi6A2YKCTOvw5Ldy7mtsOkqRvGjnzy6g7iMMDsgu7xREuCzqATLDLQVKcQ=="; 10148 }; 10149 }; 10150 "@types/whatwg-url-8.2.1" = { 10151 name = "_at_types_slash_whatwg-url"; 10152 packageName = "@types/whatwg-url"; ··· 10588 sha512 = "KmJUazIEZWhy0UaFHV5Uy8AXpTqJgCPizEHhtxs3f8mIkUnwWjcQFG7FGfsAW7RgsN8hwcSZ5ZFjmXhllVwrkw=="; 10589 }; 10590 }; 10591 + "@vue/compiler-core-3.2.33" = { 10592 name = "_at_vue_slash_compiler-core"; 10593 packageName = "@vue/compiler-core"; 10594 + version = "3.2.33"; 10595 src = fetchurl { 10596 + url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.33.tgz"; 10597 + sha512 = "AAmr52ji3Zhk7IKIuigX2osWWsb2nQE5xsdFYjdnmtQ4gymmqXbjLvkSE174+fF3A3kstYrTgGkqgOEbsdLDpw=="; 10598 }; 10599 }; 10600 + "@vue/compiler-dom-3.2.33" = { 10601 name = "_at_vue_slash_compiler-dom"; 10602 packageName = "@vue/compiler-dom"; 10603 + version = "3.2.33"; 10604 src = fetchurl { 10605 + url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.33.tgz"; 10606 + sha512 = "GhiG1C8X98Xz9QUX/RlA6/kgPBWJkjq0Rq6//5XTAGSYrTMBgcLpP9+CnlUg1TFxnnCVughAG+KZl28XJqw8uQ=="; 10607 }; 10608 }; 10609 "@vue/component-compiler-utils-3.3.0" = { ··· 10642 sha512 = "LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ=="; 10643 }; 10644 }; 10645 + "@vue/shared-3.2.33" = { 10646 name = "_at_vue_slash_shared"; 10647 packageName = "@vue/shared"; 10648 + version = "3.2.33"; 10649 src = fetchurl { 10650 + url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.33.tgz"; 10651 + sha512 = "UBc1Pg1T3yZ97vsA2ueER0F6GbJebLHYlEi4ou1H5YL4KWvMOOWwpYo9/QpWq93wxKG6Wo13IY74Hcn/f7c7Bg=="; 10652 }; 10653 }; 10654 "@vue/web-component-wrapper-1.3.0" = { ··· 13045 sha512 = "iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg=="; 13046 }; 13047 }; 13048 + "archiver-5.3.1" = { 13049 + name = "archiver"; 13050 + packageName = "archiver"; 13051 + version = "5.3.1"; 13052 + src = fetchurl { 13053 + url = "https://registry.npmjs.org/archiver/-/archiver-5.3.1.tgz"; 13054 + sha512 = "8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w=="; 13055 + }; 13056 + }; 13057 "archiver-utils-2.1.0" = { 13058 name = "archiver-utils"; 13059 packageName = "archiver-utils"; ··· 14026 sha512 = "xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw=="; 14027 }; 14028 }; 14029 + "async-2.6.4" = { 14030 name = "async"; 14031 packageName = "async"; 14032 + version = "2.6.4"; 14033 src = fetchurl { 14034 + url = "https://registry.npmjs.org/async/-/async-2.6.4.tgz"; 14035 + sha512 = "mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="; 14036 }; 14037 }; 14038 "async-3.2.3" = { ··· 14395 sha512 = "fChMDiSfWcW0EUWmiqlyc+VAIXKH0w7BBruL3cVWSwO+5oA5A9juGF4NCBV2/KAHzaKaG0hXKPE49Wh6Lq74ag=="; 14396 }; 14397 }; 14398 + "aws-sdk-2.1115.0" = { 14399 + name = "aws-sdk"; 14400 + packageName = "aws-sdk"; 14401 + version = "2.1115.0"; 14402 + src = fetchurl { 14403 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1115.0.tgz"; 14404 + sha512 = "WuMPBkE2b0hGRcF4oYw9zhjG0PC20lFKHT5FS8PXgZgu4GK8adQ8oIK0wBYPjq3F6b+VNdhDWSy3R7a6K+ENOQ=="; 14405 + }; 14406 + }; 14407 + "aws-sdk-2.1116.0" = { 14408 name = "aws-sdk"; 14409 packageName = "aws-sdk"; 14410 + version = "2.1116.0"; 14411 src = fetchurl { 14412 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1116.0.tgz"; 14413 + sha512 = "36JFrxPPh/fRQWsgGrZZbzTxRu7dq4KyCKKXPxgVMXylEJsG/KEAVMB1f3eq4PiI5eGxYrpt2OkKoMQZQZLjPA=="; 14414 }; 14415 }; 14416 "aws-sign2-0.6.0" = { ··· 17267 sha512 = "c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ=="; 17268 }; 17269 }; 17270 "buffer-from-1.1.2" = { 17271 name = "buffer-from"; 17272 packageName = "buffer-from"; ··· 18086 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 18087 }; 18088 }; 18089 + "caniuse-lite-1.0.30001332" = { 18090 name = "caniuse-lite"; 18091 packageName = "caniuse-lite"; 18092 + version = "1.0.30001332"; 18093 src = fetchurl { 18094 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001332.tgz"; 18095 + sha512 = "10T30NYOEQtN6C11YGg411yebhvpnC6Z102+B95eAsN0oB6KUs01ivE8u+G6FMIRtIrVlYXhL+LUwQ3/hXwDWw=="; 18096 }; 18097 }; 18098 "canvas-2.9.1" = { ··· 18248 sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; 18249 }; 18250 }; 18251 + "cdk8s-1.5.69" = { 18252 name = "cdk8s"; 18253 packageName = "cdk8s"; 18254 + version = "1.5.69"; 18255 src = fetchurl { 18256 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.69.tgz"; 18257 + sha512 = "IIewuKWN2rA0eEu0F2LqbWpMDbnFWnQta4pHhJr++MUfryi+SIDBibBn4f3Yr9X2wCYQ30zQorBKLPVWSDbsXg=="; 18258 }; 18259 }; 18260 + "cdk8s-plus-22-1.0.0-beta.193" = { 18261 name = "cdk8s-plus-22"; 18262 packageName = "cdk8s-plus-22"; 18263 + version = "1.0.0-beta.193"; 18264 src = fetchurl { 18265 + url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.193.tgz"; 18266 + sha512 = "AnLYgHgNV8fuID4AYvrAL+drooU3LAcxqWONouo3nim3aIVlmCGecaNJU9K1bkVG+7P5TKoWsKiKx9QFzGBV2A=="; 18267 }; 18268 }; 18269 "cdktf-0.10.1" = { ··· 20372 sha512 = "JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw=="; 20373 }; 20374 }; 20375 + "commander-9.2.0" = { 20376 name = "commander"; 20377 packageName = "commander"; 20378 + version = "9.2.0"; 20379 src = fetchurl { 20380 + url = "https://registry.npmjs.org/commander/-/commander-9.2.0.tgz"; 20381 + sha512 = "e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w=="; 20382 }; 20383 }; 20384 "commandpost-1.4.0" = { ··· 20921 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 20922 }; 20923 }; 20924 + "constructs-10.0.115" = { 20925 name = "constructs"; 20926 packageName = "constructs"; 20927 + version = "10.0.115"; 20928 src = fetchurl { 20929 + url = "https://registry.npmjs.org/constructs/-/constructs-10.0.115.tgz"; 20930 + sha512 = "BZfiDjilEzfq+y8hNGRbh5yIYa+mK6ZAO172Q03pvN47Fe2a2PxzA1Y6dNCP+AKcajAiyzHjYg/hw98XheZh5A=="; 20931 }; 20932 }; 20933 + "constructs-3.3.268" = { 20934 name = "constructs"; 20935 packageName = "constructs"; 20936 + version = "3.3.268"; 20937 src = fetchurl { 20938 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.268.tgz"; 20939 + sha512 = "hbWMEALQbekilwintwaWTw7Hxj+EKn45lIWd3jwp1kiLFfMe1IGOh81JC/suFw3Ig9eFe3akAgZu3mcBUarkjg=="; 20940 }; 20941 }; 20942 "consume-http-header-1.0.0" = { ··· 21534 sha512 = "YUdI3fFu4TF/2WykQ2xzSiTQdldLB4KVuL9WeAy5XONZYt5Cun/fpQvctoKbCgvPhmzADeesTk/j2Rdx77AcKQ=="; 21535 }; 21536 }; 21537 + "core-js-3.22.0" = { 21538 name = "core-js"; 21539 packageName = "core-js"; 21540 + version = "3.22.0"; 21541 src = fetchurl { 21542 + url = "https://registry.npmjs.org/core-js/-/core-js-3.22.0.tgz"; 21543 + sha512 = "8h9jBweRjMiY+ORO7bdWSeWfHhLPO7whobj7Z2Bl0IDo00C228EdGgH7FE4jGumbEjzcFfkfW8bXgdkEDhnwHQ=="; 21544 }; 21545 }; 21546 + "core-js-compat-3.22.0" = { 21547 name = "core-js-compat"; 21548 packageName = "core-js-compat"; 21549 + version = "3.22.0"; 21550 src = fetchurl { 21551 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.0.tgz"; 21552 + sha512 = "WwA7xbfRGrk8BGaaHlakauVXrlYmAIkk8PNGb1FDQS+Rbrewc3pgFfwJFRw6psmJVAll7Px9UHRYE16oRQnwAQ=="; 21553 }; 21554 }; 21555 + "core-js-pure-3.22.0" = { 21556 name = "core-js-pure"; 21557 packageName = "core-js-pure"; 21558 + version = "3.22.0"; 21559 src = fetchurl { 21560 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.0.tgz"; 21561 + sha512 = "ylOC9nVy0ak1N+fPIZj00umoZHgUVqmucklP5RT5N+vJof38klKn8Ze6KGyvchdClvEBr6LcQqJpI216LUMqYA=="; 21562 }; 21563 }; 21564 "core-util-is-1.0.2" = { ··· 23685 sha512 = "eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w=="; 23686 }; 23687 }; 23688 + "date-format-4.0.7" = { 23689 name = "date-format"; 23690 packageName = "date-format"; 23691 + version = "4.0.7"; 23692 src = fetchurl { 23693 + url = "https://registry.npmjs.org/date-format/-/date-format-4.0.7.tgz"; 23694 + sha512 = "k5xqlzDGIfv2N/DHR/BR8Kc4N9CRy9ReuDkmdxeX/jNfit94QXd36emWMm40ZOEDKNm/c91yV9EO3uGPkR7wWQ=="; 23695 }; 23696 }; 23697 "date-now-0.1.4" = { ··· 23730 sha512 = "2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA=="; 23731 }; 23732 }; 23733 + "dayjs-1.11.1" = { 23734 name = "dayjs"; 23735 packageName = "dayjs"; 23736 + version = "1.11.1"; 23737 src = fetchurl { 23738 + url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.1.tgz"; 23739 + sha512 = "ER7EjqVAMkRRsxNCC5YqJ9d9VQYuWdGt7aiH2qA5R5wt8ZmWaP2dLUSIK6y/kVzLMlmh1Tvu5xUf4M/wdGJ5KA=="; 23740 }; 23741 }; 23742 "dayjs-1.8.36" = { ··· 24468 sha512 = "Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="; 24469 }; 24470 }; 24471 + "define-properties-1.1.4" = { 24472 name = "define-properties"; 24473 packageName = "define-properties"; 24474 + version = "1.1.4"; 24475 src = fetchurl { 24476 + url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"; 24477 + sha512 = "uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="; 24478 }; 24479 }; 24480 "define-property-0.2.5" = { ··· 25044 sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw=="; 25045 }; 25046 }; 25047 + "diff2html-3.4.17" = { 25048 name = "diff2html"; 25049 packageName = "diff2html"; 25050 + version = "3.4.17"; 25051 src = fetchurl { 25052 + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.17.tgz"; 25053 + sha512 = "B/H+iLRHTsRl2Ffs/7tYJ0Rg4uisXe83inIdNE8trXY83Wn7OCTslJNP7fyaUpSsLbRIzPSNgT7LqFNiIQlDyg=="; 25054 }; 25055 }; 25056 "diff3-0.0.3" = { ··· 26133 sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw=="; 26134 }; 26135 }; 26136 + "electron-to-chromium-1.4.110" = { 26137 name = "electron-to-chromium"; 26138 packageName = "electron-to-chromium"; 26139 + version = "1.4.110"; 26140 src = fetchurl { 26141 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.110.tgz"; 26142 + sha512 = "TvHZrkj9anfWkxgblHlNr4IMQdm2N6D0o8Wu1BDpSL/RKT4DHyUt/tvDFtApgZ+LGFL3U9EO4LRZ1eSlQ8xMYA=="; 26143 }; 26144 }; 26145 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 26828 sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A=="; 26829 }; 26830 }; 26831 + "es-abstract-1.19.5" = { 26832 name = "es-abstract"; 26833 packageName = "es-abstract"; 26834 + version = "1.19.5"; 26835 src = fetchurl { 26836 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.5.tgz"; 26837 + sha512 = "Aa2G2+Rd3b6kxEUKTF4TaW67czBLyAv3z7VOhYRU50YBx+bbsYZ9xQP4lMNazePuFlybXI0V4MruPos7qUo5fA=="; 26838 }; 26839 }; 26840 "es-get-iterator-1.1.2" = { ··· 29096 sha512 = "5rOQWkBVz3FnYWTi/ELZmq4CoK1Pb+xKNZWuJRsOwo0+8DrP43CrWJtyLVvb5U7z7ggE5llahfDbLjaVNzXVJQ=="; 29097 }; 29098 }; 29099 + "fecha-4.2.3" = { 29100 + name = "fecha"; 29101 + packageName = "fecha"; 29102 + version = "4.2.3"; 29103 + src = fetchurl { 29104 + url = "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz"; 29105 + sha512 = "OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw=="; 29106 + }; 29107 + }; 29108 "fetch-blob-3.1.5" = { 29109 name = "fetch-blob"; 29110 packageName = "fetch-blob"; ··· 29114 sha512 = "N64ZpKqoLejlrwkIAnb9iLSA3Vx/kjgzpcDhygcqJ2KKjky8nCgUQ+dzXtbrLaWZGZNmNfQTsiQ0weZ1svglHg=="; 29115 }; 29116 }; 29117 + "fetch-cookie-0.11.0" = { 29118 name = "fetch-cookie"; 29119 packageName = "fetch-cookie"; 29120 + version = "0.11.0"; 29121 src = fetchurl { 29122 + url = "https://registry.npmjs.org/fetch-cookie/-/fetch-cookie-0.11.0.tgz"; 29123 + sha512 = "BQm7iZLFhMWFy5CZ/162sAGjBfdNWb7a8LEqqnzsHFhxT/X/SVj/z2t2nu3aJvjlbQkrAlTUApplPRjWyH4mhA=="; 29124 }; 29125 }; 29126 "fetch-everywhere-1.0.5" = { ··· 29933 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 29934 }; 29935 }; 29936 + "flow-parser-0.176.2" = { 29937 name = "flow-parser"; 29938 packageName = "flow-parser"; 29939 + version = "0.176.2"; 29940 src = fetchurl { 29941 + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.176.2.tgz"; 29942 + sha512 = "unqoh60i18C67h2rvK0SCFUBac/waUcx7CF1a5E4D0Cwj1NErTP42RF7yb7+dy25Tpyzt7uwVtXw13Wr17VzWA=="; 29943 }; 29944 }; 29945 "fluent-ffmpeg-2.1.2" = { ··· 30392 sha512 = "wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g=="; 30393 }; 30394 }; 30395 + "fp-ts-2.11.10" = { 30396 name = "fp-ts"; 30397 packageName = "fp-ts"; 30398 + version = "2.11.10"; 30399 src = fetchurl { 30400 + url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.11.10.tgz"; 30401 + sha512 = "wtUo3eA0/+GZnT+dCjkSt5CuGCH5ZXjjrcZvYm/3BC5KGavuwgvME+eRRHYtCGYWD6I+fJ2uZ9en/JVqDEPrJw=="; 30402 }; 30403 }; 30404 "fraction.js-4.2.0" = { ··· 30867 src = fetchurl { 30868 url = "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; 30869 sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; 30870 + }; 30871 + }; 30872 + "functions-have-names-1.2.2" = { 30873 + name = "functions-have-names"; 30874 + packageName = "functions-have-names"; 30875 + version = "1.2.2"; 30876 + src = fetchurl { 30877 + url = "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.2.tgz"; 30878 + sha512 = "bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA=="; 30879 }; 30880 }; 30881 "fuse.js-6.4.1" = { ··· 32148 sha512 = "mxP1gmk5Bg72biHUgH7RYAQAjqX16/e5npGYPeBScspNYdwxqK87PDkZADy3p26dlOnbZN3G7tP06xzASKb7/g=="; 32149 }; 32150 }; 32151 + "goldengate-11.2.1" = { 32152 + name = "goldengate"; 32153 + packageName = "goldengate"; 32154 + version = "11.2.1"; 32155 + src = fetchurl { 32156 + url = "https://registry.npmjs.org/goldengate/-/goldengate-11.2.1.tgz"; 32157 + sha512 = "v0REhYrm8fUJMvDAGzYhymB3R9BqTEulUcD740zNEsH2umNc9Jv+RI4sXGygIXUtUi9FSlBrO4udVerBoRMBLQ=="; 32158 + }; 32159 + }; 32160 "gonzales-pe-4.3.0" = { 32161 name = "gonzales-pe"; 32162 packageName = "gonzales-pe"; ··· 32382 sha512 = "7a4mFIGpFZgjk1G+CbFudOX8y8J5HzHkP19eYuEcv1Dif5IITYVDoQxa5GTORL6dsmmQ/sdZQ3QXuT1DMq6gbg=="; 32383 }; 32384 }; 32385 + "grammy-1.7.3" = { 32386 + name = "grammy"; 32387 + packageName = "grammy"; 32388 + version = "1.7.3"; 32389 + src = fetchurl { 32390 + url = "https://registry.npmjs.org/grammy/-/grammy-1.7.3.tgz"; 32391 + sha512 = "vODORSFt3lHInoHB5dWKXKF1zwGAd4JogQrtkczCVCyjLkqhED3OZjOOxeMI2mQxuGYiiCPyjUomRpzqP+KoTQ=="; 32392 + }; 32393 + }; 32394 "grant-4.7.0" = { 32395 name = "grant"; 32396 packageName = "grant"; ··· 32578 src = fetchurl { 32579 url = "https://registry.npmjs.org/graphql-language-service-utils/-/graphql-language-service-utils-2.7.1.tgz"; 32580 sha512 = "Wci5MbrQj+6d7rfvbORrA9uDlfMysBWYaG49ST5TKylNaXYFf3ixFOa74iM1KtM9eidosUbI3E1JlWi0JaidJA=="; 32581 }; 32582 }; 32583 "graphql-subscriptions-1.2.1" = { ··· 33073 src = fetchurl { 33074 url = "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz"; 33075 sha512 = "Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ=="; 33076 + }; 33077 + }; 33078 + "has-property-descriptors-1.0.0" = { 33079 + name = "has-property-descriptors"; 33080 + packageName = "has-property-descriptors"; 33081 + version = "1.0.0"; 33082 + src = fetchurl { 33083 + url = "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"; 33084 + sha512 = "62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="; 33085 }; 33086 }; 33087 "has-symbol-support-x-1.4.2" = { ··· 34344 sha512 = "3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw=="; 34345 }; 34346 }; 34347 + "http-status-1.5.1" = { 34348 name = "http-status"; 34349 packageName = "http-status"; 34350 + version = "1.5.1"; 34351 src = fetchurl { 34352 + url = "https://registry.npmjs.org/http-status/-/http-status-1.5.1.tgz"; 34353 + sha512 = "EP6M4naWmtIrCHL1QfVHz6hsQb8dJLP5rDO1oPn03eAXD3CNVXgUqR5302gr3Gl8B/gVE1zz+Pmws7aJx+VMSw=="; 34354 }; 34355 }; 34356 "http2-client-1.3.5" = { ··· 34423 src = fetchurl { 34424 url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz"; 34425 sha512 = "EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA=="; 34426 + }; 34427 + }; 34428 + "https-proxy-agent-5.0.1" = { 34429 + name = "https-proxy-agent"; 34430 + packageName = "https-proxy-agent"; 34431 + version = "5.0.1"; 34432 + src = fetchurl { 34433 + url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz"; 34434 + sha512 = "dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="; 34435 }; 34436 }; 34437 "hue-sdk-0.1.0" = { ··· 38602 sha512 = "aeFHXnO9hQXirgLjYqYMoAdvBGnpLOEhRVe4w7RuYjaqwsIPof4xIfSj2YvNQ9ZAWalYpg1Tm8kiLeWEyEeX6w=="; 38603 }; 38604 }; 38605 + "jsii-srcmak-0.1.531" = { 38606 name = "jsii-srcmak"; 38607 packageName = "jsii-srcmak"; 38608 + version = "0.1.531"; 38609 src = fetchurl { 38610 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.531.tgz"; 38611 + sha512 = "Ol0Lo1h03APM5zhVwGVaBgdzZbJb+o6D3cch9J9TEjSXOcQH/G64txSb/L2afLskqca3mj4ClCcli2XSwZv3FA=="; 38612 }; 38613 }; 38614 "json-bigint-1.0.0" = { ··· 38908 sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; 38909 }; 38910 }; 38911 + "json2jsii-0.2.192" = { 38912 name = "json2jsii"; 38913 packageName = "json2jsii"; 38914 + version = "0.2.192"; 38915 src = fetchurl { 38916 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.192.tgz"; 38917 + sha512 = "6Hwlnu4J4toplfk10/lzWZV8EwwgGZiclQDqKm8CX0ghmwE7kHsD8JUIjZbdVvcb1l+s1epXUCnEmKthv0nZdQ=="; 38918 }; 38919 }; 38920 "json3-3.2.6" = { ··· 40672 sha512 = "gto+BB2uEob8qRiTlOq+R3uX0YNHsX9mjxj9Sbdue/LIKqu6IlZjrsjKeGyOMquc/474GEqFyX2pdytpydp0rQ=="; 40673 }; 40674 }; 40675 + "lmdb-2.3.3" = { 40676 name = "lmdb"; 40677 packageName = "lmdb"; 40678 + version = "2.3.3"; 40679 src = fetchurl { 40680 + url = "https://registry.npmjs.org/lmdb/-/lmdb-2.3.3.tgz"; 40681 + sha512 = "CrooSvHOzd+jPXCXpiffu2+5m90Fe6L/cw90fg+4sCWNrw3W7/ad20CGuTkMVU7mAuwXEAJAfnUwvHN2pS9Rqg=="; 40682 }; 40683 }; 40684 "lmdb-darwin-arm64-2.3.2" = { ··· 42373 sha512 = "Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw=="; 42374 }; 42375 }; 42376 + "log4js-6.4.5" = { 42377 name = "log4js"; 42378 packageName = "log4js"; 42379 + version = "6.4.5"; 42380 src = fetchurl { 42381 + url = "https://registry.npmjs.org/log4js/-/log4js-6.4.5.tgz"; 42382 + sha512 = "43RJcYZ7nfUxpPO2woTl8CJ0t5+gucLJZ43mtp2PlInT+LygCp/bl6hNJtKulCJ+++fQsjIv4EO3Mp611PfeLQ=="; 42383 }; 42384 }; 42385 "logform-2.4.0" = { ··· 47451 sha512 = "NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ=="; 47452 }; 47453 }; 47454 "node-fetch-2.6.1" = { 47455 name = "node-fetch"; 47456 packageName = "node-fetch"; ··· 48441 sha512 = "Df5QT3RaJnXYuOwtXBXS9BWs+tHH2olvkCLh6jcR/b/u3DvPMlp3J0TvvYwplPKxHMOwfg287PYih9QqaVFoKA=="; 48442 }; 48443 }; 48444 + "npm-registry-fetch-13.1.1" = { 48445 name = "npm-registry-fetch"; 48446 packageName = "npm-registry-fetch"; 48447 + version = "13.1.1"; 48448 src = fetchurl { 48449 + url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-13.1.1.tgz"; 48450 + sha512 = "5p8rwe6wQPLJ8dMqeTnA57Dp9Ox6GH9H60xkyJup07FmVlu3Mk7pf/kIIpl9gaN5bM8NM+UUx3emUWvDNTt39w=="; 48451 }; 48452 }; 48453 "npm-registry-fetch-9.0.0" = { ··· 53159 sha512 = "choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ=="; 53160 }; 53161 }; 53162 + "pouchdb-abstract-mapreduce-7.3.0" = { 53163 name = "pouchdb-abstract-mapreduce"; 53164 packageName = "pouchdb-abstract-mapreduce"; 53165 + version = "7.3.0"; 53166 src = fetchurl { 53167 + url = "https://registry.npmjs.org/pouchdb-abstract-mapreduce/-/pouchdb-abstract-mapreduce-7.3.0.tgz"; 53168 + sha512 = "+2fVt3SDh7D776lIGbYZOsKX5js1aUyUw7iJaTGitxSdQ2ObWSTrr3SUrj5Qo1CkgPXwRM3Tdoq/53JYAa2qCA=="; 53169 }; 53170 }; 53171 "pouchdb-adapter-node-websql-7.0.0" = { ··· 53204 sha512 = "yUktdOPIPvOVouCjJN3uop+bCcpdPwePrLm9eUAZNgEYnUFu0njdx7Q0WRsZ7UJ6l75HinL5ZHk4bnvEt86FLw=="; 53205 }; 53206 }; 53207 + "pouchdb-binary-utils-7.3.0" = { 53208 name = "pouchdb-binary-utils"; 53209 packageName = "pouchdb-binary-utils"; 53210 + version = "7.3.0"; 53211 src = fetchurl { 53212 + url = "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.3.0.tgz"; 53213 + sha512 = "xvBH/XGHGcou2vkEzszJxkCc7YElfRUrkLUg51Jbdmh1mogLDUO0bU3Tj6TOIIJfRkQrU/HV+dDkMAhsil0amQ=="; 53214 }; 53215 }; 53216 + "pouchdb-changes-filter-7.3.0" = { 53217 name = "pouchdb-changes-filter"; 53218 packageName = "pouchdb-changes-filter"; 53219 + version = "7.3.0"; 53220 src = fetchurl { 53221 + url = "https://registry.npmjs.org/pouchdb-changes-filter/-/pouchdb-changes-filter-7.3.0.tgz"; 53222 + sha512 = "9E/EC9BP9dH9sfqUBdcWlR5HHeDdWqP82MmdEtg5c8spgxttYPwqrPfSHa7T2n55IRnaIoQbVyndmfAoz9GsOw=="; 53223 }; 53224 }; 53225 + "pouchdb-collate-7.3.0" = { 53226 name = "pouchdb-collate"; 53227 packageName = "pouchdb-collate"; 53228 + version = "7.3.0"; 53229 src = fetchurl { 53230 + url = "https://registry.npmjs.org/pouchdb-collate/-/pouchdb-collate-7.3.0.tgz"; 53231 + sha512 = "ys7rXKtEr6cfghgUjknwFJiOkITebV6JmeTybJKCzMV0r2luXu0OoPQsKVpE/wbM/3F5LxfpbFKGFpPcfGMvTA=="; 53232 }; 53233 }; 53234 "pouchdb-collections-7.0.0" = { ··· 53240 sha512 = "DaoUr/vU24Q3gM6ghj0va9j/oBanPwkbhkvnqSyC3Dm5dgf5pculNxueLF9PKMo3ycApoWzHMh6N2N8KJbDU2Q=="; 53241 }; 53242 }; 53243 + "pouchdb-collections-7.3.0" = { 53244 name = "pouchdb-collections"; 53245 packageName = "pouchdb-collections"; 53246 + version = "7.3.0"; 53247 src = fetchurl { 53248 + url = "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.3.0.tgz"; 53249 + sha512 = "Xr54m2+fErShXn+qAT4xwqJ+8NwddNPeTMJT4z4k1sZsrwfHmZsWbsKAyGPMF04eQaaU+7DDRMciu2VzaBUXyg=="; 53250 }; 53251 }; 53252 + "pouchdb-core-7.3.0" = { 53253 name = "pouchdb-core"; 53254 packageName = "pouchdb-core"; 53255 + version = "7.3.0"; 53256 src = fetchurl { 53257 + url = "https://registry.npmjs.org/pouchdb-core/-/pouchdb-core-7.3.0.tgz"; 53258 + sha512 = "fpEbjrYzmZivSupl7V0Aa2vHivyJHi9gx7+d021Wxajx4br515eYcN6Whk/L0L4xgoDVKoqUwmv+XgEF8EZhwg=="; 53259 }; 53260 }; 53261 "pouchdb-errors-7.0.0" = { ··· 53267 sha512 = "dTusY8nnTw4HIztCrNl7AoGgwvS1bVf/3/97hDaGc4ytn72V9/4dK8kTqlimi3UpaurohYRnqac0SGXYP8vgXA=="; 53268 }; 53269 }; 53270 + "pouchdb-errors-7.3.0" = { 53271 name = "pouchdb-errors"; 53272 packageName = "pouchdb-errors"; 53273 + version = "7.3.0"; 53274 src = fetchurl { 53275 + url = "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.3.0.tgz"; 53276 + sha512 = "dTBbIC1BbCy6J9W/Csg5xROgb3wJN3HpbgAJHHSEtAkb8oA45KZmU3ZwEpNhf0AfPuQm4XgW1936PvlDlGgJiw=="; 53277 }; 53278 }; 53279 "pouchdb-extend-0.1.2" = { ··· 53285 sha1 = "d1ce511bf704ed2e29f7bf428a416acfffa124b8"; 53286 }; 53287 }; 53288 + "pouchdb-fetch-7.3.0" = { 53289 name = "pouchdb-fetch"; 53290 packageName = "pouchdb-fetch"; 53291 + version = "7.3.0"; 53292 src = fetchurl { 53293 + url = "https://registry.npmjs.org/pouchdb-fetch/-/pouchdb-fetch-7.3.0.tgz"; 53294 + sha512 = "8/lcg8iMDG+GVs1dHNXA4ktJSEpH71dHU3xesMJ25tNQOqfAaaWrkfz9j71ZYDDkveLYE6UjUzl/sDacu2hSjw=="; 53295 }; 53296 }; 53297 + "pouchdb-find-7.3.0" = { 53298 name = "pouchdb-find"; 53299 packageName = "pouchdb-find"; 53300 + version = "7.3.0"; 53301 src = fetchurl { 53302 + url = "https://registry.npmjs.org/pouchdb-find/-/pouchdb-find-7.3.0.tgz"; 53303 + sha512 = "EwhnfyxCAkKf8PG4tfndTTygEmtuz+o1LiZkxfPrflfXA3m1jo1ithib0hwBYtEwEYWuZxH6B8pRZutbLoQCGA=="; 53304 }; 53305 }; 53306 "pouchdb-json-7.0.0" = { ··· 53312 sha512 = "w0bNRu/7VmmCrFWMYAm62n30wvJJUT2SokyzeTyj3hRohj4GFwTRg1mSZ+iAmxgRKOFE8nzZstLG/WAB4Ymjew=="; 53313 }; 53314 }; 53315 + "pouchdb-mapreduce-utils-7.3.0" = { 53316 name = "pouchdb-mapreduce-utils"; 53317 packageName = "pouchdb-mapreduce-utils"; 53318 + version = "7.3.0"; 53319 src = fetchurl { 53320 + url = "https://registry.npmjs.org/pouchdb-mapreduce-utils/-/pouchdb-mapreduce-utils-7.3.0.tgz"; 53321 + sha512 = "KDVSd+H2r+XWTrQfKWV71SknDDYRjYXoeWs0ZQl3xITHCcTl+fIgqyagg/XN+Zy/U9LeLPGMe2JdgPx9H8lJgw=="; 53322 }; 53323 }; 53324 "pouchdb-md5-7.0.0" = { ··· 53330 sha512 = "yaSJKhLA3QlgloKUQeb2hLdT3KmUmPfoYdryfwHZuPTpXIRKTnMQTR9qCIRUszc0ruBpDe53DRslCgNUhAyTNQ=="; 53331 }; 53332 }; 53333 + "pouchdb-md5-7.3.0" = { 53334 name = "pouchdb-md5"; 53335 packageName = "pouchdb-md5"; 53336 + version = "7.3.0"; 53337 src = fetchurl { 53338 + url = "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.3.0.tgz"; 53339 + sha512 = "wL04QgoKyd/L/TV5gxgcvlEyCJiZoXCOEFJklTzkdza/kBQNJGPH7i0ZhKa7Sb+AvZYoWZHddf1Zgv7rBScHkA=="; 53340 }; 53341 }; 53342 "pouchdb-merge-7.0.0" = { ··· 53348 sha512 = "tci5u6NpznQhGcPv4ho1h0miky9rs+ds/T9zQ9meQeDZbUojXNaX1Jxsb0uYEQQ+HMqdcQs3Akdl0/u0mgwPGg=="; 53349 }; 53350 }; 53351 + "pouchdb-merge-7.3.0" = { 53352 name = "pouchdb-merge"; 53353 packageName = "pouchdb-merge"; 53354 + version = "7.3.0"; 53355 src = fetchurl { 53356 + url = "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.3.0.tgz"; 53357 + sha512 = "E7LmchMzwYFm6V8OBxejzARLisanpksOju2LEfuiYnotGfNDeW7MByP0qBH0/zF8BfUyyjA1cl7ByaEpsapkeQ=="; 53358 }; 53359 }; 53360 "pouchdb-promise-5.4.3" = { ··· 53366 sha1 = "331d670b1989d5a03f268811214f27f54150cb2b"; 53367 }; 53368 }; 53369 + "pouchdb-selector-core-7.3.0" = { 53370 name = "pouchdb-selector-core"; 53371 packageName = "pouchdb-selector-core"; 53372 + version = "7.3.0"; 53373 src = fetchurl { 53374 + url = "https://registry.npmjs.org/pouchdb-selector-core/-/pouchdb-selector-core-7.3.0.tgz"; 53375 + sha512 = "sK/cCrIGeL9ImcMhKGcwa54+bzX7Wv4hhVV+oUW3T1Nasaoxh+Muem1GuA+x1+SbTCE8y37rUg8i6DIOhX51ew=="; 53376 }; 53377 }; 53378 "pouchdb-utils-7.0.0" = { ··· 53384 sha512 = "1bnoX1KdZYHv9wicDIFdO0PLiVIMzNDUBUZ/yOJZ+6LW6niQCB8aCv09ZztmKfSQcU5nnN3fe656tScBgP6dOQ=="; 53385 }; 53386 }; 53387 + "pouchdb-utils-7.3.0" = { 53388 name = "pouchdb-utils"; 53389 packageName = "pouchdb-utils"; 53390 + version = "7.3.0"; 53391 src = fetchurl { 53392 + url = "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.3.0.tgz"; 53393 + sha512 = "HH+5IXXWn/ZgVCSnrlydBMYn6MabT7RS7SNoo9w8qVH9efpZSp3eLchw6yMQNLw8LQefWmbbskiHV9VgJmSVWQ=="; 53394 }; 53395 }; 53396 "pouchdb-wrappers-4.1.0" = { ··· 57245 sha512 = "1CJygtdvsfNFwiyjaMLBWtg2tfEqx/jSZ8S6TV+GlNL8kiH8rb4cm5Pb7A/C2BpyM/fA8ZJEudlCwi/jvAY+Ow=="; 57246 }; 57247 }; 57248 + "regexp.prototype.flags-1.4.3" = { 57249 name = "regexp.prototype.flags"; 57250 packageName = "regexp.prototype.flags"; 57251 + version = "1.4.3"; 57252 src = fetchurl { 57253 + url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"; 57254 + sha512 = "fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="; 57255 }; 57256 }; 57257 "regexpp-1.1.0" = { ··· 62159 sha1 = "3722227c54e2faf24b1dc6d933cc144e6f71bfef"; 62160 }; 62161 }; 62162 "spark-md5-3.0.2" = { 62163 name = "spark-md5"; 62164 packageName = "spark-md5"; ··· 63015 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 63016 }; 63017 }; 63018 + "sscaff-1.2.258" = { 63019 name = "sscaff"; 63020 packageName = "sscaff"; 63021 + version = "1.2.258"; 63022 src = fetchurl { 63023 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.258.tgz"; 63024 + sha512 = "xgzUmt9tuBjGwGXzffkOAvvXBqzWnrGDcsAbQbqXJ8uewtaWRI4SzVJsrsFJwQd18E1f7C7mPqR+eia2E4Ymuw=="; 63025 }; 63026 }; 63027 "ssh-config-1.1.6" = { ··· 63699 sha512 = "OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ=="; 63700 }; 63701 }; 63702 + "streamroller-3.0.7" = { 63703 name = "streamroller"; 63704 packageName = "streamroller"; 63705 + version = "3.0.7"; 63706 src = fetchurl { 63707 + url = "https://registry.npmjs.org/streamroller/-/streamroller-3.0.7.tgz"; 63708 + sha512 = "kh68kwiDGuIPiPDWwRbEC5us+kfARP1e9AsQiaLaSqGrctOvMn0mtL8iNY3r4/o5nIoYi3gPI1jexguZsXDlxw=="; 63709 }; 63710 }; 63711 "streamsearch-0.1.2" = { ··· 64536 sha512 = "cVqd/URpp7si1HWu5YqQ3vqQkjuolAwHypY1B4itPlS71/lsf6TQPZ2Y0ijT22EYVkvH5ove9JFJf4u7VGPuZw=="; 64537 }; 64538 }; 64539 "subscriptions-transport-ws-0.9.18" = { 64540 name = "subscriptions-transport-ws"; 64541 packageName = "subscriptions-transport-ws"; ··· 64824 sha512 = "4JaJp3HEoTCGARRWZQIZDUanhYv0iyoHikklVHVLH9xFE9db22g4TDv7CPeNA8HD1JgjXI1vlhR1JZvvhaTu2Q=="; 64825 }; 64826 }; 64827 + "svelte-preprocess-4.10.6" = { 64828 name = "svelte-preprocess"; 64829 packageName = "svelte-preprocess"; 64830 + version = "4.10.6"; 64831 src = fetchurl { 64832 + url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.10.6.tgz"; 64833 + sha512 = "I2SV1w/AveMvgIQlUF/ZOO3PYVnhxfcpNyGt8pxpUVhPfyfL/CZBkkw/KPfuFix5FJ9TnnNYMhACK3DtSaYVVQ=="; 64834 }; 64835 }; 64836 + "svelte2tsx-0.5.9" = { 64837 name = "svelte2tsx"; 64838 packageName = "svelte2tsx"; 64839 + version = "0.5.9"; 64840 src = fetchurl { 64841 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.9.tgz"; 64842 + sha512 = "xTDASjlh+rKo4QRhTRYSH87sS7fRoyX67xhGIMPKa3FYqftRHRmMes6nVgEskiuhBovslNHYYpMMg5YM5n/STg=="; 64843 }; 64844 }; 64845 "sver-compat-1.5.0" = { ··· 66229 sha512 = "pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw=="; 66230 }; 66231 }; 66232 + "tiny-lru-7.0.6" = { 66233 + name = "tiny-lru"; 66234 + packageName = "tiny-lru"; 66235 + version = "7.0.6"; 66236 + src = fetchurl { 66237 + url = "https://registry.npmjs.org/tiny-lru/-/tiny-lru-7.0.6.tgz"; 66238 + sha512 = "zNYO0Kvgn5rXzWpL0y3RS09sMK67eGaQj9805jlK9G6pSadfriTczzLHFXa/xcW4mIRfmlB9HyQ/+SgL0V1uow=="; 66239 + }; 66240 + }; 66241 "tiny-queue-0.2.1" = { 66242 name = "tiny-queue"; 66243 packageName = "tiny-queue"; ··· 73935 sha512 = "5kGSQrzDyjCk0BLuFfjkoUE9vYcoyrwZIZ+GnpOSM9vhkvPjItYiWJ1jpRSo0aU4QmsoNrFwDT4O7XS2UGcBQg=="; 73936 }; 73937 }; 73938 + "yaml-2.0.1" = { 73939 + name = "yaml"; 73940 + packageName = "yaml"; 73941 + version = "2.0.1"; 73942 + src = fetchurl { 73943 + url = "https://registry.npmjs.org/yaml/-/yaml-2.0.1.tgz"; 73944 + sha512 = "1NpAYQ3wjzIlMs0mgdBmYzLkFgWBIWrzYVDYfrixhoFNNgJ444/jT2kUT2sicRbJES3oQYRZugjB6Ro8SjKeFg=="; 73945 + }; 73946 + }; 73947 "yaml-ast-parser-0.0.43" = { 73948 name = "yaml-ast-parser"; 73949 packageName = "yaml-ast-parser"; ··· 74625 "@angular/cli" = nodeEnv.buildNodePackage { 74626 name = "_at_angular_slash_cli"; 74627 packageName = "@angular/cli"; 74628 + version = "13.3.3"; 74629 src = fetchurl { 74630 + url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.3.tgz"; 74631 + sha512 = "a+nnzFP1FfnypXpAhrHbIBaJcxzegWLZUvVzJQwt6P2z60IoHdvTVmyNbY89qI0LE1SrAokEUO1zW3Yjmu7fUw=="; 74632 }; 74633 dependencies = [ 74634 + sources."@angular-devkit/architect-0.1303.3" 74635 + sources."@angular-devkit/core-13.3.3" 74636 + sources."@angular-devkit/schematics-13.3.3" 74637 sources."@gar/promisify-1.1.3" 74638 sources."@npmcli/fs-1.1.1" 74639 sources."@npmcli/git-2.1.0" ··· 74642 sources."@npmcli/node-gyp-1.0.3" 74643 sources."@npmcli/promise-spawn-1.3.2" 74644 sources."@npmcli/run-script-2.0.0" 74645 + sources."@schematics/angular-13.3.3" 74646 sources."@tootallnate/once-1.1.2" 74647 sources."@yarnpkg/lockfile-1.1.0" 74648 sources."abbrev-1.1.1" ··· 74707 sources."hosted-git-info-4.1.0" 74708 sources."http-cache-semantics-4.1.0" 74709 sources."http-proxy-agent-4.0.1" 74710 + sources."https-proxy-agent-5.0.1" 74711 sources."humanize-ms-1.2.1" 74712 sources."iconv-lite-0.4.24" 74713 sources."ieee754-1.2.1" ··· 75014 sources."crc-32-1.2.2" 75015 sources."dateformat-4.6.3" 75016 sources."decompress-response-4.2.1" 75017 + sources."define-properties-1.1.4" 75018 sources."diff3-0.0.3" 75019 sources."duplexify-4.1.2" 75020 sources."end-of-stream-1.4.4" ··· 75045 sources."handlebars-4.7.7" 75046 sources."has-1.0.3" 75047 sources."has-flag-3.0.0" 75048 + sources."has-property-descriptors-1.0.0" 75049 sources."has-symbols-1.0.3" 75050 sources."hpagent-0.1.2" 75051 sources."ignore-5.2.0" ··· 75223 sources."pascal-case-3.1.2" 75224 sources."source-map-0.7.3" 75225 sources."svelte-3.47.0" 75226 + sources."svelte2tsx-0.5.9" 75227 sources."tslib-2.3.1" 75228 sources."typescript-4.6.3" 75229 sources."vscode-css-languageservice-5.4.1" ··· 75562 sources."@tsconfig/node14-1.0.1" 75563 sources."@tsconfig/node16-1.0.2" 75564 sources."@types/minimist-1.2.2" 75565 + sources."@types/node-17.0.24" 75566 sources."@types/normalize-package-data-2.4.1" 75567 sources."@types/parse-json-4.0.0" 75568 sources."JSONStream-1.3.5" ··· 75792 sources."@types/json-buffer-3.0.0" 75793 sources."@types/keyv-3.1.4" 75794 sources."@types/minimatch-3.0.5" 75795 + sources."@types/node-17.0.24" 75796 sources."@types/normalize-package-data-2.4.1" 75797 sources."@types/responselike-1.0.0" 75798 sources."abort-controller-3.0.0" ··· 75880 sources."hosted-git-info-4.1.0" 75881 sources."http-cache-semantics-4.1.0" 75882 sources."http2-wrapper-1.0.3" 75883 + sources."https-proxy-agent-5.0.1" 75884 sources."iconv-lite-0.4.24" 75885 sources."ieee754-1.2.1" 75886 sources."indent-string-4.0.0" ··· 76078 sources."@hyperswarm/hypersign-2.1.1" 76079 sources."@hyperswarm/network-2.1.0" 76080 sources."@leichtgewicht/ip-codec-2.0.3" 76081 + sources."@types/node-17.0.24" 76082 sources."abstract-extension-3.1.1" 76083 sources."abstract-leveldown-6.2.3" 76084 sources."acorn-8.7.0" ··· 76474 sources."@types/markdown-it-12.2.3" 76475 sources."@types/mdurl-1.0.2" 76476 sources."@types/minimatch-3.0.5" 76477 + sources."@types/node-17.0.24" 76478 sources."@types/tough-cookie-2.3.8" 76479 sources."abbrev-1.1.1" 76480 sources."abort-controller-3.0.0" ··· 76505 sources."assert-plus-1.0.0" 76506 sources."assign-symbols-1.0.0" 76507 sources."ast-types-0.9.6" 76508 + sources."async-2.6.4" 76509 sources."async-iter-stream-1.2.0" 76510 sources."asynckit-0.4.0" 76511 sources."atob-2.1.2" ··· 76688 sources."fast-json-stable-stringify-2.1.0" 76689 sources."fast-levenshtein-2.0.6" 76690 sources."fastq-1.13.0" 76691 + sources."fetch-cookie-0.11.0" 76692 (sources."figures-2.0.0" // { 76693 dependencies = [ 76694 sources."escape-string-regexp-1.0.5" ··· 76776 sources."hash-base-3.1.0" 76777 sources."hasurl-1.0.0" 76778 sources."http-signature-1.2.0" 76779 + sources."https-proxy-agent-5.0.1" 76780 sources."iconv-lite-0.4.24" 76781 sources."ignore-5.2.0" 76782 sources."ignore-walk-3.0.4" ··· 76983 sources."pify-4.0.1" 76984 sources."pluralize-7.0.0" 76985 sources."posix-character-classes-0.1.1" 76986 + (sources."pouchdb-abstract-mapreduce-7.3.0" // { 76987 dependencies = [ 76988 + sources."buffer-from-1.1.2" 76989 sources."immediate-3.3.0" 76990 + sources."pouchdb-binary-utils-7.3.0" 76991 + sources."pouchdb-collections-7.3.0" 76992 + sources."pouchdb-errors-7.3.0" 76993 + sources."pouchdb-md5-7.3.0" 76994 + sources."pouchdb-utils-7.3.0" 76995 + sources."spark-md5-3.0.2" 76996 + sources."uuid-8.3.2" 76997 ]; 76998 }) 76999 sources."pouchdb-adapter-node-websql-7.0.0" 77000 sources."pouchdb-adapter-utils-7.0.0" 77001 sources."pouchdb-adapter-websql-core-7.0.0" 77002 sources."pouchdb-binary-utils-7.0.0" 77003 + (sources."pouchdb-changes-filter-7.3.0" // { 77004 dependencies = [ 77005 + sources."buffer-from-1.1.2" 77006 sources."immediate-3.3.0" 77007 + sources."pouchdb-binary-utils-7.3.0" 77008 + sources."pouchdb-collections-7.3.0" 77009 + sources."pouchdb-errors-7.3.0" 77010 + sources."pouchdb-md5-7.3.0" 77011 + sources."pouchdb-utils-7.3.0" 77012 + sources."spark-md5-3.0.2" 77013 + sources."uuid-8.3.2" 77014 ]; 77015 }) 77016 + sources."pouchdb-collate-7.3.0" 77017 sources."pouchdb-collections-7.0.0" 77018 + (sources."pouchdb-core-7.3.0" // { 77019 dependencies = [ 77020 + sources."buffer-from-1.1.2" 77021 sources."immediate-3.3.0" 77022 + sources."pouchdb-binary-utils-7.3.0" 77023 + sources."pouchdb-collections-7.3.0" 77024 + sources."pouchdb-errors-7.3.0" 77025 + sources."pouchdb-md5-7.3.0" 77026 + sources."pouchdb-merge-7.3.0" 77027 + sources."pouchdb-utils-7.3.0" 77028 + sources."spark-md5-3.0.2" 77029 + sources."uuid-8.3.2" 77030 ]; 77031 }) 77032 (sources."pouchdb-errors-7.0.0" // { ··· 77035 ]; 77036 }) 77037 sources."pouchdb-extend-0.1.2" 77038 + sources."pouchdb-fetch-7.3.0" 77039 + (sources."pouchdb-find-7.3.0" // { 77040 dependencies = [ 77041 + sources."buffer-from-1.1.2" 77042 sources."immediate-3.3.0" 77043 + sources."pouchdb-binary-utils-7.3.0" 77044 + sources."pouchdb-collections-7.3.0" 77045 + sources."pouchdb-errors-7.3.0" 77046 + sources."pouchdb-md5-7.3.0" 77047 + sources."pouchdb-utils-7.3.0" 77048 + sources."spark-md5-3.0.2" 77049 + sources."uuid-8.3.2" 77050 ]; 77051 }) 77052 sources."pouchdb-json-7.0.0" 77053 + (sources."pouchdb-mapreduce-utils-7.3.0" // { 77054 dependencies = [ 77055 + sources."buffer-from-1.1.2" 77056 sources."immediate-3.3.0" 77057 + sources."pouchdb-binary-utils-7.3.0" 77058 + sources."pouchdb-collections-7.3.0" 77059 + sources."pouchdb-errors-7.3.0" 77060 + sources."pouchdb-md5-7.3.0" 77061 + sources."pouchdb-utils-7.3.0" 77062 + sources."spark-md5-3.0.2" 77063 + sources."uuid-8.3.2" 77064 ]; 77065 }) 77066 sources."pouchdb-md5-7.0.0" 77067 sources."pouchdb-merge-7.0.0" 77068 sources."pouchdb-promise-5.4.3" 77069 + (sources."pouchdb-selector-core-7.3.0" // { 77070 dependencies = [ 77071 + sources."buffer-from-1.1.2" 77072 sources."immediate-3.3.0" 77073 + sources."pouchdb-binary-utils-7.3.0" 77074 + sources."pouchdb-collections-7.3.0" 77075 + sources."pouchdb-errors-7.3.0" 77076 + sources."pouchdb-md5-7.3.0" 77077 + sources."pouchdb-utils-7.3.0" 77078 + sources."spark-md5-3.0.2" 77079 + sources."uuid-8.3.2" 77080 ]; 77081 }) 77082 (sources."pouchdb-utils-7.0.0" // { ··· 77499 sources."@types/estree-0.0.51" 77500 sources."@types/json-schema-7.0.11" 77501 sources."@types/json5-0.0.29" 77502 + sources."@types/node-17.0.24" 77503 sources."@types/parse-json-4.0.0" 77504 sources."@webassemblyjs/ast-1.11.1" 77505 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 77538 sources."buffer-5.7.1" 77539 sources."buffer-from-1.1.2" 77540 sources."callsites-3.1.0" 77541 + sources."caniuse-lite-1.0.30001332" 77542 sources."chalk-3.0.0" 77543 sources."chardet-0.7.0" 77544 sources."chokidar-3.5.3" ··· 77557 sources."cross-spawn-7.0.3" 77558 sources."deepmerge-4.2.2" 77559 sources."defaults-1.0.3" 77560 + sources."electron-to-chromium-1.4.110" 77561 sources."emoji-regex-8.0.0" 77562 sources."end-of-stream-1.4.4" 77563 sources."enhanced-resolve-5.9.3" ··· 77942 sources."async-limiter-1.0.1" 77943 sources."asynckit-0.4.0" 77944 sources."atob-2.1.2" 77945 + (sources."aws-sdk-2.1115.0" // { 77946 dependencies = [ 77947 sources."uuid-3.3.2" 77948 ]; ··· 77987 ]; 77988 }) 77989 sources."deep-copy-1.4.2" 77990 + sources."define-properties-1.1.4" 77991 sources."delayed-stream-1.0.0" 77992 sources."denque-1.5.1" 77993 sources."depd-1.1.2" ··· 78042 sources."har-validator-5.1.5" 78043 sources."has-1.0.3" 78044 sources."has-flag-3.0.0" 78045 + sources."has-property-descriptors-1.0.0" 78046 sources."has-symbols-1.0.3" 78047 sources."helmet-4.6.0" 78048 sources."http-errors-1.7.2" ··· 78420 sources."@types/koa-compose-3.2.5" 78421 sources."@types/long-4.0.1" 78422 sources."@types/mime-1.3.2" 78423 + sources."@types/node-17.0.24" 78424 sources."@types/normalize-package-data-2.4.1" 78425 sources."@types/qs-6.9.7" 78426 sources."@types/range-parser-1.2.4" ··· 78435 }) 78436 sources."@vue/cli-ui-addon-webpack-5.0.4" 78437 sources."@vue/cli-ui-addon-widgets-5.0.4" 78438 + sources."@vue/compiler-core-3.2.33" 78439 + sources."@vue/compiler-dom-3.2.33" 78440 + sources."@vue/shared-3.2.33" 78441 (sources."@wry/equality-0.1.11" // { 78442 dependencies = [ 78443 sources."tslib-1.14.1" ··· 78490 sources."arrify-2.0.1" 78491 sources."assign-symbols-1.0.0" 78492 sources."ast-types-0.14.2" 78493 + sources."async-2.6.4" 78494 sources."async-retry-1.3.3" 78495 sources."at-least-node-1.0.0" 78496 sources."atob-2.1.2" ··· 78546 }) 78547 sources."call-bind-1.0.2" 78548 sources."camelcase-6.3.0" 78549 + sources."caniuse-lite-1.0.30001332" 78550 sources."caw-2.0.1" 78551 sources."chalk-4.1.2" 78552 sources."chardet-0.7.0" ··· 78599 sources."cookie-0.4.2" 78600 sources."cookie-signature-1.0.6" 78601 sources."copy-descriptor-0.1.1" 78602 + (sources."core-js-compat-3.22.0" // { 78603 dependencies = [ 78604 sources."semver-7.0.0" 78605 ]; 78606 }) 78607 + sources."core-js-pure-3.22.0" 78608 sources."core-util-is-1.0.3" 78609 sources."cors-2.8.5" 78610 (sources."cross-spawn-6.0.5" // { ··· 78650 sources."deepmerge-4.2.2" 78651 sources."defaults-1.0.3" 78652 sources."define-lazy-prop-2.0.0" 78653 + sources."define-properties-1.1.4" 78654 sources."define-property-2.0.2" 78655 sources."depd-1.1.2" 78656 sources."deprecated-decorator-0.1.6" ··· 78667 sources."easy-stack-1.0.1" 78668 sources."ee-first-1.1.1" 78669 sources."ejs-3.1.6" 78670 + sources."electron-to-chromium-1.4.110" 78671 sources."emoji-regex-8.0.0" 78672 sources."encodeurl-1.0.2" 78673 sources."end-of-stream-1.4.4" 78674 sources."entities-2.2.0" 78675 sources."envinfo-7.8.1" 78676 sources."error-ex-1.3.2" 78677 + sources."es-abstract-1.19.5" 78678 sources."es-to-primitive-1.2.1" 78679 sources."escalade-3.1.1" 78680 sources."escape-html-1.0.3" ··· 78772 sources."which-2.0.2" 78773 ]; 78774 }) 78775 + sources."flow-parser-0.176.2" 78776 sources."for-each-0.3.3" 78777 sources."for-in-1.0.2" 78778 sources."forwarded-0.2.0" ··· 78829 sources."has-1.0.3" 78830 sources."has-bigints-1.0.1" 78831 sources."has-flag-4.0.0" 78832 + sources."has-property-descriptors-1.0.0" 78833 sources."has-symbol-support-x-1.4.2" 78834 sources."has-symbols-1.0.3" 78835 sources."has-to-string-tag-x-1.4.1" ··· 79607 sources."@types/minimist-1.2.2" 79608 sources."@types/ms-0.7.31" 79609 sources."@types/nlcst-1.0.0" 79610 + sources."@types/node-17.0.24" 79611 sources."@types/normalize-package-data-2.4.1" 79612 sources."@types/parse5-6.0.3" 79613 sources."@types/supports-color-8.1.1" ··· 80114 sources."balanced-match-1.0.2" 80115 sources."brace-expansion-1.1.11" 80116 sources."browserslist-4.20.2" 80117 + sources."caniuse-lite-1.0.30001332" 80118 sources."chalk-2.4.2" 80119 sources."color-convert-1.9.3" 80120 sources."color-name-1.1.3" ··· 80124 sources."convert-source-map-1.8.0" 80125 sources."debug-4.3.4" 80126 sources."ejs-3.1.6" 80127 + sources."electron-to-chromium-1.4.110" 80128 sources."ensure-posix-path-1.1.1" 80129 sources."escalade-3.1.1" 80130 sources."escape-string-regexp-1.0.5" ··· 80230 sources."argparse-1.0.10" 80231 sources."asn1-0.2.6" 80232 sources."assert-plus-1.0.0" 80233 + sources."async-2.6.4" 80234 sources."asynckit-0.4.0" 80235 sources."aws-sign2-0.7.0" 80236 sources."aws4-1.11.0" ··· 80415 dependencies = [ 80416 sources."@types/glob-7.2.0" 80417 sources."@types/minimatch-3.0.5" 80418 + sources."@types/node-17.0.24" 80419 sources."balanced-match-1.0.2" 80420 sources."brace-expansion-1.1.11" 80421 sources."chromium-pickle-js-0.2.0" ··· 80500 }; 80501 dependencies = [ 80502 sources."browserslist-4.20.2" 80503 + sources."caniuse-lite-1.0.30001332" 80504 + sources."electron-to-chromium-1.4.110" 80505 sources."escalade-3.1.1" 80506 sources."fraction.js-4.2.0" 80507 sources."node-releases-2.0.3" ··· 80529 }; 80530 dependencies = [ 80531 sources."@tootallnate/once-1.1.2" 80532 + sources."@types/node-17.0.24" 80533 sources."@types/yauzl-2.10.0" 80534 sources."agent-base-6.0.2" 80535 sources."ansi-escapes-4.3.2" 80536 sources."ansi-regex-5.0.1" 80537 sources."ansi-styles-4.3.0" 80538 sources."ast-types-0.13.4" 80539 + (sources."aws-sdk-2.1115.0" // { 80540 dependencies = [ 80541 sources."uuid-3.3.2" 80542 ]; ··· 80615 sources."htmlparser2-6.1.0" 80616 sources."http-errors-2.0.0" 80617 sources."http-proxy-agent-4.0.1" 80618 + sources."https-proxy-agent-5.0.1" 80619 sources."iconv-lite-0.4.24" 80620 sources."ieee754-1.1.13" 80621 sources."inflight-1.0.6" ··· 80668 (sources."puppeteer-10.4.0" // { 80669 dependencies = [ 80670 sources."debug-4.3.1" 80671 + sources."https-proxy-agent-5.0.0" 80672 ]; 80673 }) 80674 sources."querystring-0.2.0" ··· 81155 balanceofsatoshis = nodeEnv.buildNodePackage { 81156 name = "balanceofsatoshis"; 81157 packageName = "balanceofsatoshis"; 81158 + version = "12.1.0"; 81159 src = fetchurl { 81160 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.1.0.tgz"; 81161 + sha512 = "Kj7bXqIw9oe3zvDKSyfkqRG+5rVMUU91QEYBCf1EybHwGOyKZi3QO7rdf4M5QMM/D1wHsxyWE5h6J6mCoDitdw=="; 81162 }; 81163 dependencies = [ 81164 + (sources."@alexbosworth/caporal-1.4.4" // { 81165 dependencies = [ 81166 sources."colorette-1.4.0" 81167 ]; ··· 81182 sources."string_decoder-1.3.0" 81183 ]; 81184 }) 81185 + sources."@colors/colors-1.5.0" 81186 + sources."@dabh/diagnostics-2.0.3" 81187 sources."@grammyjs/types-2.6.0" 81188 + sources."@grpc/grpc-js-1.6.4" 81189 sources."@grpc/proto-loader-0.6.9" 81190 sources."@handsontable/formulajs-2.0.2" 81191 sources."@mitmaro/errors-1.0.0" ··· 81209 sources."@types/express-serve-static-core-4.17.28" 81210 sources."@types/long-4.0.1" 81211 sources."@types/mime-1.3.2" 81212 + sources."@types/node-17.0.24" 81213 sources."@types/qs-6.9.7" 81214 sources."@types/range-parser-1.2.4" 81215 sources."@types/request-2.48.8" 81216 sources."@types/serve-static-1.13.10" 81217 + sources."@types/tough-cookie-4.0.2" 81218 + sources."@types/ws-8.5.2" 81219 sources."abort-controller-3.0.0" 81220 sources."accepts-1.3.8" 81221 (sources."agent-base-6.0.2" // { ··· 81264 dependencies = [ 81265 sources."ansi-styles-4.3.0" 81266 sources."chalk-4.1.2" 81267 + sources."color-convert-2.0.1" 81268 + sources."color-name-1.1.4" 81269 sources."supports-color-7.2.0" 81270 sources."type-fest-0.20.2" 81271 ]; ··· 81302 sources."clone-1.0.4" 81303 sources."clone-response-1.0.2" 81304 sources."code-point-at-1.1.0" 81305 + sources."color-3.2.1" 81306 + sources."color-convert-1.9.3" 81307 + sources."color-name-1.1.3" 81308 + sources."color-string-1.9.0" 81309 sources."colorette-2.0.16" 81310 sources."colors-1.4.0" 81311 + sources."colorspace-1.1.4" 81312 sources."combined-stream-1.0.8" 81313 sources."commander-6.2.1" 81314 sources."concat-stream-1.6.2" ··· 81327 sources."crypto-js-4.1.1" 81328 sources."crypto-random-string-2.0.0" 81329 sources."csv-parse-5.0.4" 81330 sources."debug-2.6.9" 81331 sources."decompress-response-3.3.0" 81332 sources."deep-extend-0.6.0" ··· 81342 sources."ecpair-2.0.1" 81343 sources."ee-first-1.1.1" 81344 sources."emoji-regex-8.0.0" 81345 + sources."enabled-2.0.0" 81346 sources."encodeurl-1.0.2" 81347 sources."end-of-stream-1.4.4" 81348 sources."escalade-3.1.1" ··· 81366 }) 81367 sources."extend-3.0.2" 81368 sources."external-editor-1.1.1" 81369 sources."fast-deep-equal-3.1.3" 81370 sources."fast-levenshtein-2.0.6" 81371 + sources."fecha-4.2.2" 81372 sources."figures-1.7.0" 81373 (sources."finalhandler-1.1.2" // { 81374 dependencies = [ ··· 81376 sources."statuses-1.5.0" 81377 ]; 81378 }) 81379 + sources."fn.name-1.1.0" 81380 sources."form-data-2.5.1" 81381 sources."forwarded-0.2.0" 81382 sources."fresh-0.5.2" ··· 81390 sources."ini-2.0.0" 81391 ]; 81392 }) 81393 + sources."goldengate-11.2.1" 81394 sources."got-9.6.0" 81395 sources."graceful-fs-4.2.10" 81396 + (sources."grammy-1.7.3" // { 81397 dependencies = [ 81398 sources."debug-4.3.4" 81399 sources."ms-2.1.2" ··· 81431 sources."chalk-4.1.2" 81432 sources."cli-cursor-3.1.0" 81433 sources."cli-width-3.0.0" 81434 + sources."color-convert-2.0.1" 81435 + sources."color-name-1.1.4" 81436 sources."external-editor-3.1.0" 81437 sources."figures-3.2.0" 81438 sources."mute-stream-0.0.8" ··· 81440 sources."restore-cursor-3.1.0" 81441 sources."supports-color-7.2.0" 81442 sources."tmp-0.0.33" 81443 ]; 81444 }) 81445 + (sources."invoices-2.0.4" // { 81446 dependencies = [ 81447 + sources."bolt07-1.8.0" 81448 + sources."tiny-secp256k1-2.2.0" 81449 + sources."uint8array-tools-0.0.6" 81450 ]; 81451 }) 81452 sources."ip-1.1.5" 81453 sources."ipaddr.js-1.9.1" 81454 sources."is-accessor-descriptor-1.0.0" 81455 + sources."is-arrayish-0.3.2" 81456 sources."is-buffer-1.1.6" 81457 sources."is-ci-2.0.0" 81458 sources."is-data-descriptor-1.0.0" ··· 81468 }) 81469 sources."is-obj-2.0.0" 81470 sources."is-path-inside-3.0.3" 81471 + sources."is-stream-2.0.1" 81472 sources."is-typedarray-1.0.0" 81473 sources."is-unicode-supported-0.1.0" 81474 sources."is-yarn-global-0.3.0" 81475 sources."isarray-1.0.0" 81476 sources."json-buffer-3.0.0" 81477 sources."json-schema-traverse-1.0.0" 81478 sources."json2csv-5.0.7" ··· 81480 sources."jstat-1.9.5" 81481 sources."keyv-3.1.0" 81482 sources."kind-of-6.0.3" 81483 + sources."kuler-2.0.0" 81484 sources."latest-version-5.1.0" 81485 + (sources."lightning-5.8.2" // { 81486 dependencies = [ 81487 + sources."@grpc/grpc-js-1.5.7" 81488 + sources."@types/node-17.0.21" 81489 sources."asyncjs-util-1.2.8" 81490 sources."body-parser-1.19.2" 81491 sources."bolt07-1.8.0" 81492 sources."bolt09-0.2.2" 81493 sources."depd-1.1.2" 81494 sources."http-errors-1.8.1" 81495 sources."on-finished-2.3.0" 81496 sources."psbt-2.0.0" 81497 sources."qs-6.9.7" 81498 sources."raw-body-2.4.3" 81499 sources."statuses-1.5.0" 81500 + sources."type-fest-2.12.0" 81501 ]; 81502 }) 81503 (sources."ln-accounting-5.0.6" // { 81504 dependencies = [ 81505 sources."@grpc/grpc-js-1.5.7" 81506 + sources."@types/node-17.0.23" 81507 + sources."@types/ws-8.5.3" 81508 sources."body-parser-1.19.2" 81509 sources."bolt07-1.8.0" 81510 sources."bolt09-0.2.2" ··· 81516 ]; 81517 }) 81518 sources."http-errors-1.8.1" 81519 (sources."ln-service-53.10.0" // { 81520 dependencies = [ 81521 sources."@grpc/grpc-js-1.6.1" 81522 sources."asyncjs-util-1.2.8" 81523 sources."lightning-5.9.0" 81524 ]; 81525 }) 81526 sources."on-finished-2.3.0" 81527 + sources."p2tr-1.3.0" 81528 sources."psbt-2.0.0" 81529 sources."qs-6.9.7" 81530 sources."raw-body-2.4.3" 81531 sources."statuses-1.5.0" 81532 + sources."type-fest-2.12.2" 81533 ]; 81534 }) 81535 (sources."ln-service-53.11.0" // { 81536 dependencies = [ 81537 sources."@grpc/grpc-js-1.6.2" 81538 + sources."@types/node-17.0.23" 81539 + sources."@types/ws-8.5.3" 81540 + sources."bolt09-0.2.2" 81541 + sources."invoices-2.0.5" 81542 + (sources."lightning-5.10.1" // { 81543 + dependencies = [ 81544 + sources."bolt09-0.2.3" 81545 + ]; 81546 + }) 81547 + sources."type-fest-2.12.2" 81548 ]; 81549 }) 81550 (sources."ln-sync-3.12.0" // { 81551 dependencies = [ 81552 + sources."@grpc/grpc-js-1.6.1" 81553 + sources."@types/node-17.0.23" 81554 + sources."@types/ws-8.5.3" 81555 + sources."body-parser-1.19.2" 81556 + sources."bolt09-0.2.2" 81557 + sources."depd-1.1.2" 81558 + sources."http-errors-1.8.1" 81559 + (sources."lightning-5.9.0" // { 81560 dependencies = [ 81561 + sources."asyncjs-util-1.2.8" 81562 sources."bolt07-1.8.0" 81563 + sources."psbt-2.0.0" 81564 ]; 81565 }) 81566 (sources."ln-service-53.10.0" // { ··· 81568 sources."bolt07-1.8.0" 81569 ]; 81570 }) 81571 + sources."on-finished-2.3.0" 81572 + sources."qs-6.9.7" 81573 + sources."raw-body-2.4.3" 81574 + sources."statuses-1.5.0" 81575 + sources."type-fest-2.12.2" 81576 ]; 81577 }) 81578 (sources."ln-telegram-3.21.1" // { 81579 dependencies = [ 81580 + sources."@grpc/grpc-js-1.6.1" 81581 + sources."@types/node-17.0.23" 81582 + sources."@types/ws-8.5.3" 81583 + (sources."body-parser-1.19.2" // { 81584 + dependencies = [ 81585 + sources."debug-2.6.9" 81586 + sources."ms-2.0.0" 81587 + ]; 81588 + }) 81589 sources."bolt07-1.8.0" 81590 sources."bolt09-0.2.2" 81591 + sources."debug-4.3.4" 81592 sources."depd-1.1.2" 81593 + sources."goldengate-11.1.1" 81594 + sources."grammy-1.7.1" 81595 sources."http-errors-1.8.1" 81596 + (sources."lightning-5.9.0" // { 81597 dependencies = [ 81598 sources."asyncjs-util-1.2.8" 81599 ]; 81600 }) 81601 sources."ln-service-53.10.0" 81602 (sources."ln-sync-3.11.1" // { 81603 dependencies = [ 81604 sources."asyncjs-util-1.2.8" 81605 + sources."lightning-5.8.6" 81606 sources."ln-service-53.9.4" 81607 ]; 81608 }) 81609 + sources."ms-2.1.2" 81610 sources."on-finished-2.3.0" 81611 sources."psbt-2.0.0" 81612 sources."qs-6.9.7" 81613 sources."raw-body-2.4.3" 81614 sources."statuses-1.5.0" 81615 + sources."type-fest-2.12.2" 81616 ]; 81617 }) 81618 sources."lodash-4.17.21" ··· 81628 dependencies = [ 81629 sources."ansi-styles-4.3.0" 81630 sources."chalk-4.1.2" 81631 + sources."color-convert-2.0.1" 81632 + sources."color-name-1.1.4" 81633 sources."supports-color-7.2.0" 81634 ]; 81635 }) 81636 + (sources."logform-2.4.0" // { 81637 + dependencies = [ 81638 + sources."ms-2.1.3" 81639 + ]; 81640 + }) 81641 sources."long-4.0.0" 81642 sources."lowercase-keys-1.0.1" 81643 sources."lru-cache-6.0.0" ··· 81679 sources."on-finished-2.4.1" 81680 sources."on-headers-1.0.2" 81681 sources."once-1.4.0" 81682 + sources."one-time-1.0.0" 81683 sources."onetime-1.1.0" 81684 (sources."ora-5.4.1" // { 81685 dependencies = [ 81686 sources."ansi-styles-4.3.0" 81687 sources."chalk-4.1.2" 81688 sources."cli-cursor-3.1.0" 81689 + sources."color-convert-2.0.1" 81690 + sources."color-name-1.1.4" 81691 sources."onetime-5.1.2" 81692 sources."restore-cursor-3.1.0" 81693 sources."supports-color-7.2.0" ··· 81705 (sources."paid-services-3.14.5" // { 81706 dependencies = [ 81707 sources."@alexbosworth/fiat-1.0.1" 81708 + sources."@grpc/grpc-js-1.6.1" 81709 + sources."@types/node-17.0.23" 81710 + sources."@types/ws-8.5.3" 81711 sources."asyncjs-util-1.2.8" 81712 sources."body-parser-1.19.2" 81713 sources."bolt01-1.2.3" ··· 81715 sources."bolt09-0.2.2" 81716 sources."depd-1.1.2" 81717 sources."http-errors-1.8.1" 81718 sources."lightning-5.8.6" 81719 sources."ln-service-53.9.4" 81720 (sources."ln-sync-3.11.0" // { 81721 dependencies = [ 81722 + sources."@grpc/grpc-js-1.5.7" 81723 + sources."@types/node-17.0.21" 81724 + sources."@types/ws-8.5.2" 81725 sources."lightning-5.8.2" 81726 sources."ln-service-53.9.3" 81727 + sources."type-fest-2.12.0" 81728 ]; 81729 }) 81730 sources."on-finished-2.3.0" ··· 81732 sources."qs-6.9.7" 81733 sources."raw-body-2.4.3" 81734 sources."statuses-1.5.0" 81735 + sources."type-fest-2.12.2" 81736 ]; 81737 }) 81738 sources."parseurl-1.3.3" ··· 81771 sources."rx-4.1.0" 81772 sources."rxjs-7.5.5" 81773 sources."safe-buffer-5.1.2" 81774 + sources."safe-stable-stringify-2.3.1" 81775 sources."safer-buffer-2.1.2" 81776 sources."sanitize-filename-1.6.3" 81777 sources."semver-7.3.7" ··· 81795 sources."sha.js-2.4.11" 81796 sources."side-channel-1.0.4" 81797 sources."signal-exit-3.0.7" 81798 + sources."simple-swizzle-0.2.2" 81799 sources."sjcl-1.0.8" 81800 (sources."slice-ansi-4.0.0" // { 81801 dependencies = [ 81802 sources."ansi-styles-4.3.0" 81803 + sources."color-convert-2.0.1" 81804 + sources."color-name-1.1.4" 81805 ]; 81806 }) 81807 sources."smart-buffer-4.2.0" ··· 81830 sources."strip-ansi-3.0.1" 81831 ]; 81832 }) 81833 + sources."text-hex-1.0.0" 81834 sources."through-2.3.8" 81835 sources."tiny-emitter-2.1.0" 81836 + sources."tiny-secp256k1-2.2.1" 81837 sources."tmp-0.0.29" 81838 sources."to-readable-stream-1.0.0" 81839 sources."toidentifier-1.0.1" 81840 sources."tr46-0.0.3" 81841 + sources."triple-beam-1.3.0" 81842 sources."truncate-utf8-bytes-1.0.2" 81843 sources."tslib-2.3.1" 81844 sources."tweetnacl-1.0.3" 81845 sources."tweetnacl-util-0.15.1" 81846 + sources."type-fest-0.21.3" 81847 sources."type-is-1.6.18" 81848 sources."typedarray-0.0.6" 81849 sources."typedarray-to-buffer-3.1.5" 81850 sources."typeforce-1.18.0" 81851 + sources."uint8array-tools-0.0.7" 81852 sources."unique-string-2.0.0" 81853 sources."unpipe-1.0.0" 81854 (sources."update-notifier-5.1.0" // { 81855 dependencies = [ 81856 sources."ansi-styles-4.3.0" 81857 sources."chalk-4.1.2" 81858 + sources."color-convert-2.0.1" 81859 + sources."color-name-1.1.4" 81860 sources."import-lazy-2.1.0" 81861 sources."supports-color-7.2.0" 81862 ]; ··· 81874 sources."widest-line-3.1.0" 81875 sources."wif-2.0.6" 81876 sources."window-size-1.1.1" 81877 + (sources."winston-3.7.2" // { 81878 dependencies = [ 81879 + sources."readable-stream-3.6.0" 81880 + ]; 81881 + }) 81882 + (sources."winston-transport-4.5.0" // { 81883 + dependencies = [ 81884 + sources."readable-stream-3.6.0" 81885 ]; 81886 }) 81887 (sources."wrap-ansi-7.0.0" // { 81888 dependencies = [ 81889 sources."ansi-styles-4.3.0" 81890 + sources."color-convert-2.0.1" 81891 + sources."color-name-1.1.4" 81892 ]; 81893 }) 81894 sources."wrappy-1.0.2" ··· 82430 sources."create-hmac-1.1.7" 82431 sources."crypto-browserify-3.12.0" 82432 sources."dash-ast-1.0.0" 82433 + sources."define-properties-1.1.4" 82434 sources."defined-1.0.0" 82435 sources."deps-sort-2.0.1" 82436 sources."des.js-1.0.1" ··· 82447 sources."bn.js-4.12.0" 82448 ]; 82449 }) 82450 + sources."es-abstract-1.19.5" 82451 sources."es-to-primitive-1.2.1" 82452 sources."events-3.3.0" 82453 sources."evp_bytestokey-1.0.3" ··· 82461 sources."glob-7.2.0" 82462 sources."has-1.0.3" 82463 sources."has-bigints-1.0.1" 82464 + sources."has-property-descriptors-1.0.0" 82465 sources."has-symbols-1.0.3" 82466 sources."has-tostringtag-1.0.0" 82467 (sources."hash-base-3.1.0" // { ··· 82617 sources."@types/component-emitter-1.2.11" 82618 sources."@types/cookie-0.4.1" 82619 sources."@types/cors-2.8.12" 82620 + sources."@types/node-17.0.24" 82621 sources."accepts-1.3.8" 82622 sources."ansi-regex-2.1.1" 82623 sources."ansi-styles-2.2.1" ··· 83323 sources."@protobufjs/pool-1.1.0" 83324 sources."@protobufjs/utf8-1.1.0" 83325 sources."@types/long-4.0.1" 83326 + sources."@types/node-17.0.24" 83327 sources."addr-to-ip-port-1.5.4" 83328 sources."airplay-js-0.2.16" 83329 sources."ajv-6.12.6" ··· 83385 sources."co-3.1.0" 83386 sources."codepage-1.4.0" 83387 sources."combined-stream-1.0.8" 83388 + sources."commander-9.2.0" 83389 sources."compact2string-1.4.1" 83390 sources."concat-map-0.0.1" 83391 (sources."concat-stream-2.0.0" // { ··· 84330 cdk8s-cli = nodeEnv.buildNodePackage { 84331 name = "cdk8s-cli"; 84332 packageName = "cdk8s-cli"; 84333 + version = "1.0.148"; 84334 src = fetchurl { 84335 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.148.tgz"; 84336 + sha512 = "sNZPZDbxMrECsM8gr1zOprPsq+TGdZtrRlh3MIpUQuFql65nHjhJjtB5FCCCFE4h53KsdNaBvkukEcWAoilpCQ=="; 84337 }; 84338 dependencies = [ 84339 sources."@jsii/check-node-1.56.0" ··· 84341 sources."@nodelib/fs.scandir-2.1.5" 84342 sources."@nodelib/fs.stat-2.0.5" 84343 sources."@nodelib/fs.walk-1.2.8" 84344 + sources."@types/node-12.20.48" 84345 sources."@xmldom/xmldom-0.8.2" 84346 sources."ajv-8.11.0" 84347 sources."ansi-regex-5.0.1" ··· 84352 sources."call-bind-1.0.2" 84353 sources."camelcase-6.3.0" 84354 sources."case-1.6.3" 84355 + sources."cdk8s-1.5.69" 84356 + sources."cdk8s-plus-22-1.0.0-beta.193" 84357 sources."chalk-4.1.2" 84358 sources."cliui-7.0.4" 84359 sources."clone-2.1.2" ··· 84366 sources."color-name-1.1.4" 84367 sources."colors-1.4.0" 84368 sources."commonmark-0.30.0" 84369 + sources."constructs-3.3.268" 84370 + sources."date-format-4.0.7" 84371 sources."debug-4.3.4" 84372 sources."decamelize-5.0.1" 84373 sources."deep-equal-2.0.5" 84374 + sources."define-properties-1.1.4" 84375 sources."detect-indent-5.0.0" 84376 sources."detect-newline-2.1.0" 84377 sources."dot-case-3.0.4" 84378 sources."emoji-regex-8.0.0" 84379 sources."entities-2.0.3" 84380 + sources."es-abstract-1.19.5" 84381 sources."es-get-iterator-1.1.2" 84382 sources."es-to-primitive-1.2.1" 84383 sources."escalade-3.1.1" ··· 84396 ]; 84397 }) 84398 sources."function-bind-1.1.1" 84399 + sources."functions-have-names-1.2.2" 84400 sources."get-caller-file-2.0.5" 84401 sources."get-intrinsic-1.1.1" 84402 sources."get-symbol-description-1.0.0" ··· 84405 sources."has-1.0.3" 84406 sources."has-bigints-1.0.1" 84407 sources."has-flag-4.0.0" 84408 + sources."has-property-descriptors-1.0.0" 84409 sources."has-symbols-1.0.3" 84410 sources."has-tostringtag-1.0.0" 84411 sources."internal-slot-1.0.3" ··· 84455 sources."yargs-16.2.0" 84456 ]; 84457 }) 84458 + (sources."jsii-srcmak-0.1.531" // { 84459 dependencies = [ 84460 sources."fs-extra-9.1.0" 84461 ]; 84462 }) 84463 sources."json-schema-0.4.0" 84464 sources."json-schema-traverse-1.0.0" 84465 + sources."json2jsii-0.2.192" 84466 sources."jsonfile-6.1.0" 84467 sources."jsonschema-1.4.0" 84468 sources."locate-path-5.0.0" 84469 + sources."log4js-6.4.5" 84470 sources."lower-case-2.0.2" 84471 sources."lru-cache-6.0.0" 84472 sources."mdurl-1.0.1" ··· 84488 sources."picomatch-2.3.1" 84489 sources."punycode-2.1.1" 84490 sources."queue-microtask-1.2.3" 84491 + sources."regexp.prototype.flags-1.4.3" 84492 sources."require-directory-2.1.1" 84493 sources."require-from-string-2.0.2" 84494 sources."require-main-filename-2.0.0" ··· 84506 sources."snake-case-3.0.4" 84507 sources."sort-json-2.0.1" 84508 sources."spdx-license-list-6.5.0" 84509 + sources."sscaff-1.2.258" 84510 + (sources."streamroller-3.0.7" // { 84511 dependencies = [ 84512 sources."fs-extra-10.0.1" 84513 ]; ··· 84588 sources."@nodelib/fs.scandir-2.1.5" 84589 sources."@nodelib/fs.stat-2.0.5" 84590 sources."@nodelib/fs.walk-1.2.8" 84591 + sources."@types/node-17.0.24" 84592 sources."@types/node-fetch-2.6.1" 84593 sources."@xmldom/xmldom-0.8.2" 84594 sources."ansi-regex-5.0.1" ··· 84617 sources."combined-stream-1.0.8" 84618 sources."commonmark-0.30.0" 84619 sources."concat-map-0.0.1" 84620 + sources."constructs-10.0.115" 84621 + sources."date-format-4.0.7" 84622 sources."debug-4.3.4" 84623 sources."decamelize-1.2.0" 84624 sources."deep-equal-2.0.5" 84625 + sources."define-properties-1.1.4" 84626 sources."delayed-stream-1.0.0" 84627 sources."detect-indent-5.0.0" 84628 sources."detect-newline-2.1.0" 84629 sources."emoji-regex-8.0.0" 84630 sources."entities-2.0.3" 84631 + sources."es-abstract-1.19.5" 84632 sources."es-get-iterator-1.1.2" 84633 sources."es-to-primitive-1.2.1" 84634 sources."escalade-3.1.1" ··· 84645 sources."fs-extra-8.1.0" 84646 sources."fs.realpath-1.0.0" 84647 sources."function-bind-1.1.1" 84648 + sources."functions-have-names-1.2.2" 84649 sources."get-caller-file-2.0.5" 84650 sources."get-intrinsic-1.1.1" 84651 sources."get-symbol-description-1.0.0" ··· 84661 sources."has-1.0.3" 84662 sources."has-bigints-1.0.1" 84663 sources."has-flag-3.0.0" 84664 + sources."has-property-descriptors-1.0.0" 84665 sources."has-symbols-1.0.3" 84666 sources."has-tostringtag-1.0.0" 84667 sources."inflight-1.0.6" ··· 84762 sources."yargs-parser-20.2.9" 84763 ]; 84764 }) 84765 + (sources."jsii-srcmak-0.1.531" // { 84766 dependencies = [ 84767 sources."fs-extra-9.1.0" 84768 sources."jsonfile-6.1.0" ··· 84774 sources."jsonschema-1.4.0" 84775 sources."locate-path-5.0.0" 84776 sources."lodash.isequal-4.5.0" 84777 + sources."log4js-6.4.5" 84778 sources."lru-cache-6.0.0" 84779 sources."mdurl-1.0.1" 84780 sources."merge2-1.4.1" ··· 84807 sources."prettier-2.6.2" 84808 sources."punycode-2.1.1" 84809 sources."queue-microtask-1.2.3" 84810 + sources."regexp.prototype.flags-1.4.3" 84811 sources."require-directory-2.1.1" 84812 sources."require-main-filename-2.0.0" 84813 sources."reserved-words-0.1.2" ··· 84826 sources."sort-json-2.0.1" 84827 sources."source-map-0.5.7" 84828 sources."spdx-license-list-6.5.0" 84829 + (sources."streamroller-3.0.7" // { 84830 dependencies = [ 84831 sources."fs-extra-10.0.1" 84832 sources."jsonfile-6.1.0" ··· 85306 bypassCache = true; 85307 reconstructLock = true; 85308 }; 85309 + coc-flutter = nodeEnv.buildNodePackage { 85310 + name = "coc-flutter"; 85311 + packageName = "coc-flutter"; 85312 + version = "1.9.7"; 85313 + src = fetchurl { 85314 + url = "https://registry.npmjs.org/coc-flutter/-/coc-flutter-1.9.7.tgz"; 85315 + sha512 = "12tXdF76vIOKhswubUNsd69jva2QxVStJuKSL8Ul7qH664MH3Pk1H6h26V+xu+vAeJKLZYp27MFZQmlpnd82IQ=="; 85316 + }; 85317 + buildInputs = globalBuildInputs; 85318 + meta = { 85319 + description = "flutter support for (Neo)vim"; 85320 + license = "MIT"; 85321 + }; 85322 + production = true; 85323 + bypassCache = true; 85324 + reconstructLock = true; 85325 + }; 85326 coc-git = nodeEnv.buildNodePackage { 85327 name = "coc-git"; 85328 packageName = "coc-git"; ··· 85522 sources."@tootallnate/once-1.1.2" 85523 sources."agent-base-6.0.2" 85524 sources."arch-2.2.0" 85525 + sources."async-2.6.4" 85526 sources."await-semaphore-0.1.3" 85527 sources."balanced-match-1.0.2" 85528 sources."big-integer-1.6.51" ··· 85547 sources."which-1.3.1" 85548 ]; 85549 }) 85550 + sources."date-format-4.0.7" 85551 sources."debounce-1.2.1" 85552 sources."debug-4.3.4" 85553 sources."deep-extend-0.6.0" 85554 + sources."define-properties-1.1.4" 85555 sources."duplexer2-0.1.4" 85556 sources."end-of-stream-1.4.4" 85557 + sources."es-abstract-1.19.5" 85558 sources."es-to-primitive-1.2.1" 85559 sources."event-lite-0.1.2" 85560 sources."execa-1.0.0" ··· 85562 sources."fb-watchman-2.0.1" 85563 sources."flatted-3.2.5" 85564 sources."follow-redirects-1.14.9" 85565 + sources."fp-ts-2.11.10" 85566 sources."fs-extra-10.0.1" 85567 sources."fs-minipass-2.1.0" 85568 sources."fs.realpath-1.0.0" ··· 85580 sources."graceful-fs-4.2.10" 85581 sources."has-1.0.3" 85582 sources."has-bigints-1.0.1" 85583 + sources."has-property-descriptors-1.0.0" 85584 sources."has-symbols-1.0.3" 85585 sources."has-tostringtag-1.0.0" 85586 sources."http-proxy-agent-4.0.1" 85587 + sources."https-proxy-agent-5.0.1" 85588 sources."ieee754-1.2.1" 85589 sources."inflight-1.0.6" 85590 sources."inherits-2.0.4" ··· 85617 ]; 85618 }) 85619 sources."lodash-4.17.21" 85620 + sources."log4js-6.4.5" 85621 sources."lru-cache-6.0.0" 85622 sources."metals-languageclient-0.4.2" 85623 sources."minimatch-3.1.2" ··· 85667 sources."shell-quote-1.7.3" 85668 sources."side-channel-1.0.4" 85669 sources."signal-exit-3.0.7" 85670 + sources."streamroller-3.0.7" 85671 sources."string.prototype.trimend-1.0.4" 85672 sources."string.prototype.trimstart-1.0.4" 85673 (sources."string_decoder-1.1.1" // { ··· 85970 sources."callsites-3.1.0" 85971 sources."camelcase-5.3.1" 85972 sources."camelcase-keys-6.2.2" 85973 + sources."caniuse-lite-1.0.30001332" 85974 (sources."chalk-4.1.2" // { 85975 dependencies = [ 85976 sources."ansi-styles-4.3.0" ··· 86007 sources."domelementtype-1.3.1" 86008 sources."domhandler-2.4.2" 86009 sources."domutils-1.7.0" 86010 + sources."electron-to-chromium-1.4.110" 86011 sources."emoji-regex-8.0.0" 86012 sources."entities-1.1.2" 86013 sources."error-ex-1.3.2" ··· 87326 sources."array-union-2.1.0" 87327 sources."asn1-0.2.6" 87328 sources."assert-plus-1.0.0" 87329 + sources."async-2.6.4" 87330 sources."asynckit-0.4.0" 87331 sources."at-least-node-1.0.0" 87332 sources."atomically-1.7.0" ··· 87533 sources."http-errors-1.8.1" 87534 sources."http-proxy-agent-4.0.1" 87535 sources."http-signature-1.2.0" 87536 + sources."https-proxy-agent-5.0.1" 87537 sources."human-signals-2.1.0" 87538 sources."humanize-ms-1.2.1" 87539 sources."iconv-lite-0.6.3" ··· 88030 sources."@cycle/run-3.4.0" 88031 sources."@cycle/time-0.10.1" 88032 sources."@types/cookiejar-2.1.2" 88033 + sources."@types/node-17.0.24" 88034 sources."@types/superagent-3.8.2" 88035 sources."ansi-escapes-3.2.0" 88036 sources."ansi-regex-2.1.1" ··· 88059 sources."cycle-onionify-4.0.0" 88060 sources."d-1.0.1" 88061 sources."debug-3.2.7" 88062 + sources."define-properties-1.1.4" 88063 sources."delayed-stream-1.0.0" 88064 sources."es5-ext-0.10.60" 88065 sources."es6-iterator-2.0.3" ··· 88088 sources."has-1.0.3" 88089 sources."has-ansi-2.0.0" 88090 sources."has-flag-3.0.0" 88091 + sources."has-property-descriptors-1.0.0" 88092 sources."has-symbols-1.0.3" 88093 sources."iconv-lite-0.4.24" 88094 sources."inherits-2.0.4" ··· 88368 sources."clear-module-4.1.2" 88369 sources."color-convert-2.0.1" 88370 sources."color-name-1.1.4" 88371 + sources."commander-9.2.0" 88372 sources."comment-json-4.2.2" 88373 sources."concat-map-0.0.1" 88374 sources."configstore-5.0.1" ··· 89248 sources."@babel/template-7.16.7" 89249 sources."@babel/traverse-7.17.9" 89250 sources."@babel/types-7.17.0" 89251 + sources."@blueprintjs/colors-4.1.0" 89252 sources."@blueprintjs/core-3.54.0" 89253 sources."@blueprintjs/icons-3.33.0" 89254 sources."@deltachat/message_parser_wasm-0.3.0" ··· 89280 sources."@types/mapbox-gl-0.54.5" 89281 sources."@types/mime-types-2.1.1" 89282 sources."@types/minimist-1.2.2" 89283 + sources."@types/node-14.18.13" 89284 sources."@types/node-fetch-2.6.1" 89285 sources."@types/prop-types-15.7.5" 89286 sources."@types/rc-1.2.1" 89287 + sources."@types/react-16.14.25" 89288 sources."@types/react-dom-16.9.14" 89289 sources."@types/react-window-1.8.5" 89290 sources."@types/react-window-infinite-loader-1.0.6" ··· 89337 ]; 89338 }) 89339 sources."call-bind-1.0.2" 89340 + sources."caniuse-lite-1.0.30001332" 89341 sources."chalk-2.4.2" 89342 sources."chokidar-2.1.8" 89343 (sources."class-utils-0.3.6" // { ··· 89378 ]; 89379 }) 89380 sources."copy-descriptor-0.1.1" 89381 + (sources."core-js-compat-3.22.0" // { 89382 dependencies = [ 89383 sources."semver-7.0.0" 89384 ]; ··· 89394 sources."deep-equal-1.1.1" 89395 sources."deep-extend-0.6.0" 89396 sources."defer-to-connect-1.1.3" 89397 + sources."define-properties-1.1.4" 89398 sources."define-property-2.0.2" 89399 sources."delayed-stream-1.0.0" 89400 sources."deltachat-node-1.76.0" ··· 89404 sources."duplexer3-0.1.4" 89405 sources."earcut-2.2.3" 89406 sources."electron-14.2.9" 89407 + sources."electron-to-chromium-1.4.110" 89408 sources."emoji-js-clean-4.0.0" 89409 sources."emoji-mart-3.0.1" 89410 sources."emoji-regex-9.2.2" ··· 89469 sources."fs-extra-8.1.0" 89470 sources."fsevents-1.2.13" 89471 sources."function-bind-1.1.1" 89472 + sources."functions-have-names-1.2.2" 89473 sources."gensync-1.0.0-beta.2" 89474 sources."geojson-flatten-1.0.4" 89475 sources."geojson-vt-3.2.1" ··· 89502 sources."gud-1.0.0" 89503 sources."has-1.0.3" 89504 sources."has-flag-3.0.0" 89505 + sources."has-property-descriptors-1.0.0" 89506 sources."has-symbols-1.0.3" 89507 sources."has-tostringtag-1.0.0" 89508 sources."has-value-1.0.0" ··· 89663 sources."regenerator-runtime-0.13.9" 89664 sources."regenerator-transform-0.15.0" 89665 sources."regex-not-1.0.2" 89666 + sources."regexp.prototype.flags-1.4.3" 89667 sources."regexpu-core-5.0.1" 89668 sources."regjsgen-0.6.0" 89669 (sources."regjsparser-0.8.4" // { ··· 89990 dependencies = [ 89991 sources."@fast-csv/format-4.3.5" 89992 sources."@fast-csv/parse-4.3.6" 89993 + sources."@types/node-14.18.13" 89994 sources."JSONStream-1.3.5" 89995 sources."ajv-6.12.6" 89996 sources."asn1-0.2.6" 89997 sources."assert-plus-1.0.0" 89998 + sources."async-2.6.4" 89999 sources."asynckit-0.4.0" 90000 sources."aws-sdk-2.1097.0" 90001 sources."aws-sign2-0.7.0" ··· 90027 sources."har-schema-2.0.0" 90028 sources."har-validator-5.1.5" 90029 sources."http-signature-1.2.0" 90030 + sources."http-status-1.5.1" 90031 sources."ieee754-1.1.13" 90032 sources."inherits-2.0.4" 90033 sources."ini-2.0.0" ··· 90193 sources."@types/json-buffer-3.0.0" 90194 sources."@types/keyv-3.1.4" 90195 sources."@types/minimatch-3.0.5" 90196 + sources."@types/node-17.0.24" 90197 sources."@types/responselike-1.0.0" 90198 sources."@types/yauzl-2.10.0" 90199 sources."abbrev-1.1.1" ··· 90283 sources."defaults-1.0.3" 90284 sources."defer-to-connect-2.0.1" 90285 sources."define-lazy-prop-2.0.0" 90286 + (sources."define-properties-1.1.4" // { 90287 dependencies = [ 90288 sources."object-keys-1.1.1" 90289 ]; ··· 90383 sources."gauge-4.0.4" 90384 sources."get-caller-file-2.0.5" 90385 sources."get-installed-path-2.1.1" 90386 + sources."get-intrinsic-1.1.1" 90387 (sources."get-package-info-1.0.0" // { 90388 dependencies = [ 90389 sources."debug-2.6.9" ··· 90408 sources."har-validator-5.1.5" 90409 sources."has-1.0.3" 90410 sources."has-flag-4.0.0" 90411 + sources."has-property-descriptors-1.0.0" 90412 + sources."has-symbols-1.0.3" 90413 sources."has-unicode-2.0.1" 90414 sources."homedir-polyfill-1.0.3" 90415 sources."hosted-git-info-2.8.9" ··· 90417 sources."http-proxy-agent-4.0.1" 90418 sources."http-signature-1.2.0" 90419 sources."http2-wrapper-1.0.3" 90420 + sources."https-proxy-agent-5.0.1" 90421 sources."humanize-ms-1.2.1" 90422 sources."iconv-lite-0.6.3" 90423 sources."ieee754-1.2.1" ··· 90803 sources."callsites-3.1.0" 90804 sources."camelcase-5.3.1" 90805 sources."camelcase-keys-6.2.2" 90806 + sources."caniuse-lite-1.0.30001332" 90807 sources."chalk-2.4.2" 90808 sources."ci-info-2.0.0" 90809 sources."cli-boxes-2.2.1" ··· 90832 ]; 90833 }) 90834 sources."dot-prop-5.3.0" 90835 + sources."electron-to-chromium-1.4.110" 90836 sources."emoji-regex-8.0.0" 90837 sources."emojilib-2.4.0" 90838 sources."end-of-stream-1.4.4" ··· 91098 }) 91099 sources."@fluentui/date-time-utilities-8.5.0" 91100 sources."@fluentui/dom-utilities-2.2.0" 91101 + sources."@fluentui/font-icons-mdl2-8.3.1" 91102 + sources."@fluentui/foundation-legacy-8.2.6" 91103 sources."@fluentui/keyboard-key-0.4.0" 91104 + sources."@fluentui/merge-styles-8.5.1" 91105 + sources."@fluentui/react-8.65.0" 91106 + sources."@fluentui/react-focus-8.5.7" 91107 + sources."@fluentui/react-hooks-8.5.4" 91108 sources."@fluentui/react-window-provider-2.2.0" 91109 sources."@fluentui/set-version-8.2.0" 91110 + sources."@fluentui/style-utilities-8.6.6" 91111 + sources."@fluentui/theme-2.6.5" 91112 + sources."@fluentui/utilities-8.8.2" 91113 (sources."@gulp-sourcemaps/identity-map-2.0.1" // { 91114 dependencies = [ 91115 sources."acorn-6.4.2" ··· 91131 ]; 91132 }) 91133 sources."@humanwhocodes/object-schema-1.2.1" 91134 + sources."@microsoft/load-themed-styles-1.10.258" 91135 sources."@node-rs/crc32-1.5.0" 91136 sources."@node-rs/crc32-android-arm-eabi-1.5.0" 91137 sources."@node-rs/crc32-android-arm64-1.5.0" ··· 91481 }) 91482 sources."default-resolution-2.0.0" 91483 sources."defer-to-connect-1.1.3" 91484 + sources."define-properties-1.1.4" 91485 sources."define-property-2.0.2" 91486 (sources."del-6.0.0" // { 91487 dependencies = [ ··· 91829 sources."has-1.0.3" 91830 sources."has-ansi-2.0.0" 91831 sources."has-flag-4.0.0" 91832 + sources."has-property-descriptors-1.0.0" 91833 sources."has-symbols-1.0.3" 91834 sources."has-unicode-2.0.1" 91835 sources."has-value-1.0.0" ··· 92732 sources."@types/mime-1.3.2" 92733 sources."@types/minimatch-3.0.5" 92734 sources."@types/minimist-1.2.2" 92735 + sources."@types/node-17.0.24" 92736 sources."@types/normalize-package-data-2.4.1" 92737 sources."@types/parse-json-4.0.0" 92738 sources."@types/q-1.5.5" ··· 92754 ]; 92755 }) 92756 sources."@types/webpack-dev-server-3.11.6" 92757 + sources."@types/webpack-env-1.16.4" 92758 (sources."@types/webpack-sources-3.2.0" // { 92759 dependencies = [ 92760 sources."source-map-0.7.3" ··· 92939 sources."assert-plus-1.0.0" 92940 sources."assign-symbols-1.0.0" 92941 sources."astral-regex-2.0.0" 92942 + sources."async-2.6.4" 92943 sources."async-each-1.0.3" 92944 sources."async-limiter-1.0.1" 92945 sources."asynckit-0.4.0" ··· 93047 sources."camel-case-3.0.0" 93048 sources."camelcase-5.3.1" 93049 sources."caniuse-api-3.0.0" 93050 + sources."caniuse-lite-1.0.30001332" 93051 sources."case-sensitive-paths-webpack-plugin-2.4.0" 93052 sources."caseless-0.12.0" 93053 sources."chalk-2.4.2" ··· 93237 ]; 93238 }) 93239 sources."defaults-1.0.3" 93240 + sources."define-properties-1.1.4" 93241 sources."define-property-2.0.2" 93242 (sources."del-4.1.1" // { 93243 dependencies = [ ··· 93288 sources."ecc-jsbn-0.1.2" 93289 sources."ee-first-1.1.1" 93290 sources."ejs-2.7.4" 93291 + sources."electron-to-chromium-1.4.110" 93292 (sources."elliptic-6.5.4" // { 93293 dependencies = [ 93294 sources."bn.js-4.12.0" ··· 93314 sources."errno-0.1.8" 93315 sources."error-ex-1.3.2" 93316 sources."error-stack-parser-2.0.7" 93317 + sources."es-abstract-1.19.5" 93318 sources."es-to-primitive-1.2.1" 93319 sources."es6-promise-4.2.8" 93320 sources."escalade-3.1.1" ··· 93501 sources."fsevents-2.3.2" 93502 sources."function-bind-1.1.1" 93503 sources."functional-red-black-tree-1.0.1" 93504 + sources."functions-have-names-1.2.2" 93505 sources."get-caller-file-2.0.5" 93506 sources."get-intrinsic-1.1.1" 93507 sources."get-stdin-6.0.0" ··· 93532 sources."has-bigints-1.0.1" 93533 sources."has-cors-1.1.0" 93534 sources."has-flag-3.0.0" 93535 + sources."has-property-descriptors-1.0.0" 93536 sources."has-symbols-1.0.3" 93537 sources."has-tostringtag-1.0.0" 93538 sources."has-value-1.0.0" ··· 94074 sources."rechoir-0.6.2" 94075 sources."reflect-metadata-0.1.13" 94076 sources."regex-not-1.0.2" 94077 + sources."regexp.prototype.flags-1.4.3" 94078 sources."regexpp-3.2.0" 94079 sources."relateurl-0.2.7" 94080 sources."remove-trailing-separator-1.1.0" ··· 95030 sources."@types/json-schema-7.0.11" 95031 sources."@types/keyv-3.1.4" 95032 sources."@types/minimatch-3.0.5" 95033 + sources."@types/node-17.0.24" 95034 sources."@types/q-1.5.5" 95035 sources."@types/responselike-1.0.0" 95036 sources."@types/retry-0.12.1" ··· 95235 }) 95236 sources."camelcase-6.3.0" 95237 sources."caniuse-api-3.0.0" 95238 + sources."caniuse-lite-1.0.30001332" 95239 (sources."chalk-4.1.2" // { 95240 dependencies = [ 95241 sources."ansi-styles-4.3.0" ··· 95440 sources."defaults-1.0.3" 95441 sources."defer-to-connect-2.0.1" 95442 sources."define-lazy-prop-2.0.0" 95443 + sources."define-properties-1.1.4" 95444 sources."define-property-2.0.2" 95445 (sources."del-6.0.0" // { 95446 dependencies = [ ··· 95493 sources."duplexer3-0.1.4" 95494 sources."duplexify-3.7.1" 95495 sources."ee-first-1.1.1" 95496 + sources."electron-to-chromium-1.4.110" 95497 (sources."elliptic-6.5.4" // { 95498 dependencies = [ 95499 sources."bn.js-4.12.0" ··· 95514 sources."errno-0.1.8" 95515 sources."error-ex-1.3.2" 95516 sources."errorhandler-1.5.1" 95517 + sources."es-abstract-1.19.5" 95518 sources."es-to-primitive-1.2.1" 95519 sources."escalade-3.1.1" 95520 sources."escape-html-1.0.3" ··· 95677 sources."fs.realpath-1.0.0" 95678 sources."fsevents-2.3.2" 95679 sources."function-bind-1.1.1" 95680 + sources."functions-have-names-1.2.2" 95681 sources."gensync-1.0.0-beta.2" 95682 sources."get-caller-file-2.0.5" 95683 sources."get-intrinsic-1.1.1" ··· 95705 sources."has-1.0.3" 95706 sources."has-bigints-1.0.1" 95707 sources."has-flag-3.0.0" 95708 + sources."has-property-descriptors-1.0.0" 95709 sources."has-symbols-1.0.3" 95710 sources."has-tostringtag-1.0.0" 95711 sources."has-value-1.0.0" ··· 96214 sources."pnp-webpack-plugin-1.7.0" 96215 (sources."portfinder-1.0.28" // { 96216 dependencies = [ 96217 + sources."async-2.6.4" 96218 sources."debug-3.2.7" 96219 ]; 96220 }) ··· 96431 }) 96432 sources."regenerator-runtime-0.13.9" 96433 sources."regex-not-1.0.2" 96434 + sources."regexp.prototype.flags-1.4.3" 96435 sources."registry-auth-token-3.3.2" 96436 sources."registry-url-3.1.0" 96437 sources."relateurl-0.2.7" ··· 97083 sources."@jridgewell/sourcemap-codec-1.4.11" 97084 sources."@jridgewell/trace-mapping-0.3.4" 97085 sources."@types/minimist-1.2.2" 97086 + sources."@types/node-17.0.24" 97087 sources."@types/normalize-package-data-2.4.1" 97088 sources."@types/yauzl-2.10.0" 97089 sources."@types/yoga-layout-1.9.2" ··· 97110 sources."callsites-3.1.0" 97111 sources."camelcase-5.3.1" 97112 sources."camelcase-keys-6.2.2" 97113 + sources."caniuse-lite-1.0.30001332" 97114 sources."chalk-2.4.2" 97115 sources."chownr-1.1.4" 97116 sources."ci-info-2.0.0" ··· 97135 }) 97136 sources."delay-5.0.0" 97137 sources."devtools-protocol-0.0.969999" 97138 + sources."electron-to-chromium-1.4.110" 97139 sources."emoji-regex-8.0.0" 97140 sources."end-of-stream-1.4.4" 97141 sources."error-ex-1.3.2" ··· 97763 sources."@types/duplexify-3.6.1" 97764 sources."@types/json-schema-7.0.11" 97765 sources."@types/long-4.0.1" 97766 + sources."@types/node-17.0.24" 97767 sources."abbrev-1.1.1" 97768 sources."abort-controller-3.0.0" 97769 sources."accepts-1.3.8" ··· 98122 sources."http-errors-2.0.0" 98123 sources."http-proxy-agent-4.0.1" 98124 sources."http-signature-1.2.0" 98125 + sources."https-proxy-agent-5.0.1" 98126 sources."humanize-ms-1.2.1" 98127 sources."iconv-lite-0.4.24" 98128 sources."ieee754-1.2.1" ··· 98333 sources."picomatch-2.3.1" 98334 (sources."portfinder-1.0.28" // { 98335 dependencies = [ 98336 + sources."async-2.6.4" 98337 sources."debug-3.2.7" 98338 ]; 98339 }) ··· 98864 sources."@types/atob-2.1.2" 98865 sources."@types/bn.js-5.1.0" 98866 sources."@types/inquirer-6.5.0" 98867 + sources."@types/node-17.0.24" 98868 sources."@types/pbkdf2-3.1.0" 98869 sources."@types/secp256k1-4.0.3" 98870 sources."@types/through-0.0.30" ··· 99191 sources."debug-2.6.9" 99192 sources."decode-uri-component-0.2.0" 99193 sources."deep-equal-2.0.5" 99194 + sources."define-properties-1.1.4" 99195 sources."define-property-2.0.2" 99196 sources."director-1.2.7" 99197 sources."dot-prop-4.2.1" 99198 sources."duplexer-0.1.2" 99199 sources."enabled-2.0.0" 99200 + sources."es-abstract-1.19.5" 99201 sources."es-get-iterator-1.1.2" 99202 sources."es-to-primitive-1.2.1" 99203 sources."event-stream-3.3.4" ··· 99248 sources."fs.realpath-1.0.0" 99249 sources."fsevents-1.2.13" 99250 sources."function-bind-1.1.1" 99251 + sources."functions-have-names-1.2.2" 99252 sources."get-intrinsic-1.1.1" 99253 sources."get-symbol-description-1.0.0" 99254 sources."get-value-2.0.6" ··· 99261 sources."graceful-fs-4.2.10" 99262 sources."has-1.0.3" 99263 sources."has-bigints-1.0.1" 99264 + sources."has-property-descriptors-1.0.0" 99265 sources."has-symbols-1.0.3" 99266 sources."has-tostringtag-1.0.0" 99267 sources."has-value-1.0.0" ··· 99403 }) 99404 sources."readdirp-2.2.1" 99405 sources."regex-not-1.0.2" 99406 + sources."regexp.prototype.flags-1.4.3" 99407 sources."remove-trailing-separator-1.1.0" 99408 sources."repeat-element-1.1.4" 99409 sources."repeat-string-1.6.1" ··· 99673 sources."@types/http-cache-semantics-4.0.1" 99674 sources."@types/json-buffer-3.0.0" 99675 sources."@types/keyv-3.1.4" 99676 + sources."@types/node-17.0.24" 99677 sources."@types/node-fetch-2.6.1" 99678 sources."@types/responselike-1.0.0" 99679 sources."@types/yoga-layout-1.9.2" ··· 99702 }) 99703 sources."call-bind-1.0.2" 99704 sources."camelcase-6.3.0" 99705 + sources."caniuse-lite-1.0.30001332" 99706 (sources."chalk-4.1.2" // { 99707 dependencies = [ 99708 sources."ansi-styles-4.3.0" ··· 99767 sources."domutils-2.8.0" 99768 sources."dot-prop-5.3.0" 99769 sources."duplexer3-0.1.4" 99770 + sources."electron-to-chromium-1.4.110" 99771 sources."emoji-regex-8.0.0" 99772 sources."end-of-stream-1.4.4" 99773 sources."entities-2.2.0" ··· 99870 sources."keyv-4.2.2" 99871 sources."kleur-3.0.3" 99872 sources."latest-version-5.1.0" 99873 + sources."lmdb-2.3.3" 99874 sources."lmdb-darwin-arm64-2.3.2" 99875 sources."lmdb-darwin-x64-2.3.2" 99876 sources."lmdb-linux-arm-2.3.2" ··· 100315 sha512 = "76zCOpXUl/85CMk9aJwWbBy2vGYv+Yn17PcUMhksTtMJLAUujje3eP8v7FufC2pN9SbQx88Gtr4ARXGeVWwAJA=="; 100316 }; 100317 dependencies = [ 100318 + sources."async-2.6.4" 100319 sources."debug-4.3.4" 100320 sources."lodash-4.17.21" 100321 sources."lodash.groupby-4.6.0" ··· 100560 sources."@types/http-cache-semantics-4.0.1" 100561 sources."@types/json-buffer-3.0.0" 100562 sources."@types/keyv-3.1.4" 100563 + sources."@types/node-17.0.24" 100564 sources."@types/responselike-1.0.0" 100565 sources."ansi-regex-6.0.1" 100566 sources."ansi-styles-4.3.0" ··· 100665 gitmoji-cli = nodeEnv.buildNodePackage { 100666 name = "gitmoji-cli"; 100667 packageName = "gitmoji-cli"; 100668 + version = "4.13.1"; 100669 src = fetchurl { 100670 + url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.13.1.tgz"; 100671 + sha512 = "2gj+T45cAuhaT6OICHKPxRAnGSXEsYRa/tgcNM8HmhENEcyjun7x0LAgP/soRXjENJ2CgWJrATU0EVUhb9uAYA=="; 100672 }; 100673 dependencies = [ 100674 sources."@babel/code-frame-7.16.7" ··· 100799 sources."http-cache-semantics-4.1.0" 100800 sources."http-errors-2.0.0" 100801 sources."http-proxy-agent-4.0.1" 100802 + sources."https-proxy-agent-5.0.1" 100803 sources."human-signals-2.1.0" 100804 sources."iconv-lite-0.4.24" 100805 sources."ieee754-1.2.1" ··· 101058 dependencies = [ 101059 sources."ansi-regex-5.0.1" 101060 sources."ansi-styles-4.3.0" 101061 + sources."async-2.6.4" 101062 sources."balanced-match-1.0.2" 101063 sources."base64-js-1.5.1" 101064 sources."bl-1.2.3" ··· 101259 sources."tslib-2.1.0" 101260 ]; 101261 }) 101262 + (sources."@graphql-tools/import-6.6.12" // { 101263 dependencies = [ 101264 + sources."@graphql-tools/utils-8.6.8" 101265 sources."tslib-2.3.1" 101266 ]; 101267 }) ··· 101286 sources."tslib-2.3.1" 101287 ]; 101288 }) 101289 + (sources."@graphql-tools/schema-8.3.9" // { 101290 dependencies = [ 101291 + sources."@graphql-tools/merge-8.2.9" 101292 + sources."@graphql-tools/utils-8.6.8" 101293 sources."tslib-2.3.1" 101294 ]; 101295 }) ··· 101320 sources."@nodelib/fs.walk-1.2.8" 101321 sources."@sindresorhus/is-0.14.0" 101322 sources."@szmarczak/http-timer-1.1.2" 101323 + sources."@types/node-17.0.24" 101324 sources."@types/parse-json-4.0.0" 101325 sources."@types/websocket-1.0.2" 101326 sources."abort-controller-3.0.0" ··· 101406 sources."deep-extend-0.6.0" 101407 sources."defaults-1.0.3" 101408 sources."defer-to-connect-1.1.3" 101409 + sources."define-properties-1.1.4" 101410 sources."delayed-stream-1.0.0" 101411 sources."dir-glob-3.0.1" 101412 sources."duplexer3-0.1.4" ··· 101414 sources."emoji-regex-8.0.0" 101415 sources."end-of-stream-1.4.4" 101416 sources."error-ex-1.3.2" 101417 + sources."es-abstract-1.19.5" 101418 sources."es-get-iterator-1.1.2" 101419 sources."es-to-primitive-1.2.1" 101420 sources."es6-promise-3.3.1" ··· 101450 sources."fs.realpath-1.0.0" 101451 sources."fullname-4.0.1" 101452 sources."function-bind-1.1.1" 101453 + sources."functions-have-names-1.2.2" 101454 sources."get-caller-file-2.0.5" 101455 sources."get-intrinsic-1.1.1" 101456 sources."get-stream-4.1.0" ··· 101480 sources."has-1.0.3" 101481 sources."has-bigints-1.0.1" 101482 sources."has-flag-4.0.0" 101483 + sources."has-property-descriptors-1.0.0" 101484 sources."has-symbols-1.0.3" 101485 sources."has-tostringtag-1.0.0" 101486 sources."http-cache-semantics-4.1.0" ··· 101680 sources."queue-microtask-1.2.3" 101681 sources."rc-1.2.8" 101682 sources."reftools-1.1.9" 101683 + sources."regexp.prototype.flags-1.4.3" 101684 sources."registry-auth-token-4.2.1" 101685 sources."registry-url-5.1.0" 101686 sources."remove-trailing-separator-1.1.0" ··· 101812 }) 101813 sources."@cronvel/get-pixels-3.4.0" 101814 sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" 101815 + sources."@envelop/core-2.3.1" 101816 + sources."@envelop/disable-introspection-3.3.1" 101817 + sources."@envelop/parser-cache-4.3.1" 101818 + sources."@envelop/types-2.2.0" 101819 + sources."@envelop/validation-cache-4.3.1" 101820 + sources."@graphql-tools/batch-execute-8.4.5" 101821 + sources."@graphql-tools/delegate-8.7.6" 101822 + sources."@graphql-tools/graphql-file-loader-7.3.10" 101823 + sources."@graphql-tools/import-6.6.12" 101824 + sources."@graphql-tools/json-file-loader-7.3.10" 101825 + sources."@graphql-tools/load-7.5.9" 101826 + sources."@graphql-tools/merge-8.2.9" 101827 + sources."@graphql-tools/schema-8.3.9" 101828 + (sources."@graphql-tools/url-loader-7.9.13" // { 101829 dependencies = [ 101830 sources."ws-8.5.0" 101831 ]; 101832 }) 101833 + sources."@graphql-tools/utils-8.6.8" 101834 + sources."@graphql-tools/wrap-8.4.15" 101835 + sources."@graphql-typed-document-node/core-3.1.1" 101836 + sources."@graphql-yoga/common-2.3.0" 101837 + sources."@graphql-yoga/node-2.3.0" 101838 + sources."@graphql-yoga/subscription-2.0.0" 101839 sources."@iarna/toml-2.2.5" 101840 sources."@n1ru4l/graphql-live-query-0.9.0" 101841 sources."@nodelib/fs.scandir-2.1.5" ··· 101870 ]; 101871 }) 101872 sources."@oclif/screen-1.0.4" 101873 + sources."@repeaterjs/repeater-3.0.4" 101874 sources."@types/json-schema-7.0.9" 101875 + sources."@types/node-17.0.24" 101876 sources."@types/parse-json-4.0.0" 101877 sources."@types/ws-8.5.3" 101878 sources."abort-controller-3.0.0" 101879 sources."accepts-1.3.8" ··· 101997 sources."graphql-language-service-parser-1.10.4" 101998 sources."graphql-language-service-types-1.8.7" 101999 sources."graphql-language-service-utils-2.5.1" 102000 sources."graphql-ws-5.7.0" 102001 sources."has-flag-4.0.0" 102002 sources."http-errors-1.6.3" ··· 102129 sources."symbol-observable-1.2.0" 102130 sources."sync-fetch-0.3.1" 102131 sources."terminal-kit-1.49.4" 102132 + sources."tiny-lru-7.0.6" 102133 sources."to-regex-range-5.0.1" 102134 sources."tr46-0.0.3" 102135 sources."tree-kit-0.7.4" ··· 102595 ]; 102596 }) 102597 sources."default-resolution-2.0.0" 102598 + sources."define-properties-1.1.4" 102599 sources."define-property-2.0.2" 102600 sources."detect-file-1.0.0" 102601 sources."duplexify-3.7.1" ··· 102680 sources."gulp-cli-2.3.0" 102681 sources."gulplog-1.0.0" 102682 sources."has-1.0.3" 102683 + sources."has-property-descriptors-1.0.0" 102684 sources."has-symbols-1.0.3" 102685 sources."has-value-1.0.0" 102686 (sources."has-values-1.0.0" // { ··· 103014 sources."decamelize-1.2.0" 103015 sources."decode-uri-component-0.2.0" 103016 sources."default-compare-1.0.0" 103017 + sources."define-properties-1.1.4" 103018 sources."define-property-2.0.2" 103019 sources."detect-file-1.0.0" 103020 (sources."each-props-1.3.2" // { ··· 103082 sources."graceful-fs-4.2.10" 103083 sources."gulplog-1.0.0" 103084 sources."has-1.0.3" 103085 + sources."has-property-descriptors-1.0.0" 103086 sources."has-symbols-1.0.3" 103087 sources."has-value-1.0.0" 103088 (sources."has-values-1.0.0" // { ··· 103390 sources."chalk-4.1.2" 103391 sources."color-convert-2.0.1" 103392 sources."color-name-1.1.4" 103393 + sources."commander-9.2.0" 103394 sources."concat-map-0.0.1" 103395 sources."fs.realpath-1.0.0" 103396 sources."glob-7.2.0" ··· 103431 }; 103432 dependencies = [ 103433 sources."ansi-styles-4.3.0" 103434 + sources."async-2.6.4" 103435 sources."basic-auth-2.0.1" 103436 sources."call-bind-1.0.2" 103437 sources."chalk-4.1.2" ··· 103653 sources."@colors/colors-1.5.0" 103654 sources."@fast-csv/format-4.3.5" 103655 sources."@fast-csv/parse-4.3.6" 103656 + sources."@types/node-14.18.13" 103657 sources."ajv-6.12.6" 103658 sources."ansi-regex-5.0.1" 103659 sources."ansi-styles-4.3.0" 103660 sources."argparse-1.0.10" 103661 sources."asn1-0.2.6" 103662 sources."assert-plus-1.0.0" 103663 + sources."async-2.6.4" 103664 sources."asynckit-0.4.0" 103665 + sources."aws-sdk-2.1116.0" 103666 sources."aws-sign2-0.7.0" 103667 sources."aws4-1.11.0" 103668 sources."base64-js-1.5.1" ··· 104599 sources."has-symbols-1.0.3" 104600 sources."http-errors-2.0.0" 104601 sources."http-proxy-agent-4.0.1" 104602 + sources."https-proxy-agent-5.0.1" 104603 sources."iconv-lite-0.4.24" 104604 sources."imurmurhash-0.1.4" 104605 sources."inflight-1.0.6" ··· 105131 sources."@aws-sdk/abort-controller-3.55.0" 105132 sources."@aws-sdk/chunked-blob-reader-3.55.0" 105133 sources."@aws-sdk/chunked-blob-reader-native-3.58.0" 105134 + sources."@aws-sdk/client-s3-3.72.0" 105135 + sources."@aws-sdk/client-sso-3.72.0" 105136 + sources."@aws-sdk/client-sts-3.72.0" 105137 sources."@aws-sdk/config-resolver-3.58.0" 105138 sources."@aws-sdk/credential-provider-env-3.55.0" 105139 sources."@aws-sdk/credential-provider-imds-3.58.0" 105140 + sources."@aws-sdk/credential-provider-ini-3.72.0" 105141 + sources."@aws-sdk/credential-provider-node-3.72.0" 105142 sources."@aws-sdk/credential-provider-process-3.58.0" 105143 + sources."@aws-sdk/credential-provider-sso-3.72.0" 105144 sources."@aws-sdk/credential-provider-web-identity-3.55.0" 105145 sources."@aws-sdk/eventstream-marshaller-3.58.0" 105146 + sources."@aws-sdk/eventstream-serde-browser-3.72.0" 105147 sources."@aws-sdk/eventstream-serde-config-resolver-3.55.0" 105148 + sources."@aws-sdk/eventstream-serde-node-3.72.0" 105149 + sources."@aws-sdk/eventstream-serde-universal-3.72.0" 105150 sources."@aws-sdk/fetch-http-handler-3.58.0" 105151 sources."@aws-sdk/hash-blob-browser-3.58.0" 105152 sources."@aws-sdk/hash-node-3.55.0" ··· 105157 sources."@aws-sdk/middleware-bucket-endpoint-3.58.0" 105158 sources."@aws-sdk/middleware-content-length-3.58.0" 105159 sources."@aws-sdk/middleware-expect-continue-3.58.0" 105160 + sources."@aws-sdk/middleware-flexible-checksums-3.72.0" 105161 sources."@aws-sdk/middleware-header-default-3.58.0" 105162 sources."@aws-sdk/middleware-host-header-3.58.0" 105163 sources."@aws-sdk/middleware-location-constraint-3.55.0" ··· 105180 sources."@aws-sdk/protocol-http-3.58.0" 105181 sources."@aws-sdk/querystring-builder-3.55.0" 105182 sources."@aws-sdk/querystring-parser-3.55.0" 105183 + sources."@aws-sdk/s3-request-presigner-3.72.0" 105184 sources."@aws-sdk/service-error-classification-3.55.0" 105185 sources."@aws-sdk/shared-ini-file-loader-3.58.0" 105186 sources."@aws-sdk/signature-v4-3.58.0" 105187 sources."@aws-sdk/signature-v4-multi-region-3.66.0" 105188 + sources."@aws-sdk/smithy-client-3.72.0" 105189 sources."@aws-sdk/types-3.55.0" 105190 sources."@aws-sdk/url-parser-3.55.0" 105191 sources."@aws-sdk/util-arn-parser-3.55.0" ··· 105195 sources."@aws-sdk/util-body-length-node-3.55.0" 105196 sources."@aws-sdk/util-buffer-from-3.55.0" 105197 sources."@aws-sdk/util-config-provider-3.55.0" 105198 + sources."@aws-sdk/util-create-request-3.72.0" 105199 + sources."@aws-sdk/util-defaults-mode-browser-3.72.0" 105200 + sources."@aws-sdk/util-defaults-mode-node-3.72.0" 105201 sources."@aws-sdk/util-format-url-3.58.0" 105202 sources."@aws-sdk/util-hex-encoding-3.58.0" 105203 sources."@aws-sdk/util-locate-window-3.55.0" ··· 105313 sources."async-mutex-0.1.4" 105314 sources."asynckit-0.4.0" 105315 sources."atob-2.1.2" 105316 + (sources."aws-sdk-2.1116.0" // { 105317 dependencies = [ 105318 sources."sax-1.2.1" 105319 sources."uuid-3.3.2" ··· 105579 ]; 105580 }) 105581 sources."http-signature-1.2.0" 105582 + (sources."https-proxy-agent-5.0.1" // { 105583 dependencies = [ 105584 sources."debug-4.3.4" 105585 ]; ··· 107519 sources."@types/component-emitter-1.2.11" 107520 sources."@types/cookie-0.4.1" 107521 sources."@types/cors-2.8.12" 107522 + sources."@types/node-17.0.24" 107523 sources."accepts-1.3.8" 107524 sources."ansi-regex-5.0.1" 107525 sources."ansi-styles-4.3.0" ··· 107543 sources."cookie-0.4.2" 107544 sources."cors-2.8.5" 107545 sources."custom-event-1.0.1" 107546 + sources."date-format-4.0.7" 107547 sources."debug-2.6.9" 107548 sources."depd-2.0.0" 107549 sources."destroy-1.2.0" ··· 107597 sources."isbinaryfile-4.0.10" 107598 sources."jsonfile-6.1.0" 107599 sources."lodash-4.17.21" 107600 + (sources."log4js-6.4.5" // { 107601 dependencies = [ 107602 sources."debug-4.3.4" 107603 sources."ms-2.1.2" ··· 107647 }) 107648 sources."source-map-0.6.1" 107649 sources."statuses-2.0.1" 107650 + (sources."streamroller-3.0.7" // { 107651 dependencies = [ 107652 sources."debug-4.3.4" 107653 sources."ms-2.1.2" ··· 107817 sources."buffer-from-1.1.2" 107818 sources."bytes-3.1.2" 107819 sources."call-bind-1.0.2" 107820 + sources."caniuse-lite-1.0.30001332" 107821 sources."chalk-2.4.2" 107822 sources."chardet-1.4.0" 107823 sources."chownr-1.1.4" ··· 107846 sources."convert-source-map-1.8.0" 107847 sources."cookie-0.4.2" 107848 sources."cookie-signature-1.0.6" 107849 + sources."core-js-3.22.0" 107850 sources."core-util-is-1.0.3" 107851 sources."cors-2.8.5" 107852 sources."create-hash-1.2.0" ··· 107870 sources."decompress-response-4.2.1" 107871 sources."deep-extend-0.6.0" 107872 sources."deep-is-0.1.4" 107873 + sources."define-properties-1.1.4" 107874 sources."delayed-stream-1.0.0" 107875 sources."delegates-1.0.0" 107876 sources."depd-1.1.2" ··· 107885 }) 107886 sources."dotenv-8.6.0" 107887 sources."ee-first-1.1.1" 107888 + sources."electron-to-chromium-1.4.110" 107889 sources."emoji-regex-8.0.0" 107890 sources."encodeurl-1.0.2" 107891 sources."end-of-stream-1.4.4" 107892 sources."enquirer-2.3.6" 107893 + sources."es-abstract-1.19.5" 107894 sources."es-to-primitive-1.2.1" 107895 sources."escalade-3.1.1" 107896 sources."escape-html-1.0.3" ··· 107968 sources."has-1.0.3" 107969 sources."has-bigints-1.0.1" 107970 sources."has-flag-3.0.0" 107971 + sources."has-property-descriptors-1.0.0" 107972 sources."has-symbols-1.0.3" 107973 sources."has-tostringtag-1.0.0" 107974 sources."has-unicode-2.0.1" ··· 107981 sources."html-encoding-sniffer-2.0.1" 107982 sources."http-errors-1.8.1" 107983 sources."http-proxy-agent-4.0.1" 107984 + sources."https-proxy-agent-5.0.1" 107985 sources."iconv-lite-0.4.24" 107986 sources."ieee754-1.2.1" 107987 sources."ignore-5.2.0" ··· 108289 sources."concat-map-0.0.1" 108290 sources."convert-source-map-1.8.0" 108291 sources."core-util-is-1.0.3" 108292 + sources."define-properties-1.1.4" 108293 sources."duplexify-3.7.1" 108294 sources."end-of-stream-1.4.4" 108295 sources."extend-3.0.2" ··· 108303 sources."glob-stream-6.1.0" 108304 sources."graceful-fs-4.2.10" 108305 sources."has-1.0.3" 108306 + sources."has-property-descriptors-1.0.0" 108307 sources."has-symbols-1.0.3" 108308 sources."inflight-1.0.6" 108309 sources."inherits-2.0.4" ··· 109127 sources."decode-uri-component-0.2.0" 109128 sources."dedent-0.7.0" 109129 sources."defaults-1.0.3" 109130 + sources."define-properties-1.1.4" 109131 sources."delayed-stream-1.0.0" 109132 sources."delegates-1.0.0" 109133 sources."depd-1.1.2" ··· 109144 sources."envinfo-7.8.1" 109145 sources."err-code-2.0.3" 109146 sources."error-ex-1.3.2" 109147 + sources."es-abstract-1.19.5" 109148 sources."es-to-primitive-1.2.1" 109149 sources."escalade-3.1.1" 109150 sources."escape-string-regexp-1.0.5" ··· 109219 sources."has-1.0.3" 109220 sources."has-bigints-1.0.1" 109221 sources."has-flag-4.0.0" 109222 + sources."has-property-descriptors-1.0.0" 109223 sources."has-symbols-1.0.3" 109224 sources."has-tostringtag-1.0.0" 109225 sources."has-unicode-2.0.1" ··· 109227 sources."http-cache-semantics-4.1.0" 109228 sources."http-proxy-agent-4.0.1" 109229 sources."http-signature-1.2.0" 109230 + sources."https-proxy-agent-5.0.1" 109231 sources."human-signals-2.1.0" 109232 sources."humanize-ms-1.2.1" 109233 sources."iconv-lite-0.6.3" ··· 110697 sources."@types/babel__core-7.1.19" 110698 sources."@types/babel__generator-7.6.4" 110699 sources."@types/babel__template-7.4.1" 110700 + sources."@types/babel__traverse-7.17.0" 110701 sources."@types/estree-0.0.51" 110702 sources."@types/graceful-fs-4.1.5" 110703 sources."@types/istanbul-lib-coverage-2.0.4" 110704 sources."@types/istanbul-lib-report-3.0.0" 110705 sources."@types/istanbul-reports-1.1.2" 110706 sources."@types/json-schema-7.0.11" 110707 + sources."@types/node-17.0.24" 110708 sources."@types/normalize-package-data-2.4.1" 110709 sources."@types/resolve-0.0.8" 110710 sources."@types/yargs-15.0.14" ··· 110877 sources."cached-path-relative-1.1.0" 110878 sources."call-bind-1.0.2" 110879 sources."camelcase-5.3.1" 110880 + sources."caniuse-lite-1.0.30001332" 110881 sources."capture-exit-2.0.0" 110882 sources."caseless-0.12.0" 110883 (sources."chalk-3.0.0" // { ··· 110948 }) 110949 sources."copy-descriptor-0.1.1" 110950 sources."core-js-2.6.12" 110951 + (sources."core-js-compat-3.22.0" // { 110952 dependencies = [ 110953 sources."semver-7.0.0" 110954 ]; ··· 110983 sources."debug-4.3.4" 110984 sources."decamelize-1.2.0" 110985 sources."decode-uri-component-0.2.0" 110986 + sources."define-properties-1.1.4" 110987 sources."define-property-2.0.2" 110988 sources."defined-1.0.0" 110989 sources."delayed-stream-1.0.0" ··· 111000 sources."duplexer2-0.1.4" 111001 sources."duplexify-3.7.1" 111002 sources."ecc-jsbn-0.1.2" 111003 + sources."electron-to-chromium-1.4.110" 111004 (sources."elliptic-6.5.4" // { 111005 dependencies = [ 111006 sources."bn.js-4.12.0" ··· 111131 sources."har-validator-5.1.5" 111132 sources."has-1.0.3" 111133 sources."has-flag-3.0.0" 111134 + sources."has-property-descriptors-1.0.0" 111135 sources."has-symbols-1.0.3" 111136 sources."has-value-1.0.0" 111137 (sources."has-values-1.0.0" // { ··· 111739 sources."@types/commander-2.12.2" 111740 sources."@types/diff-3.5.5" 111741 sources."@types/get-stdin-5.0.1" 111742 + sources."@types/node-17.0.24" 111743 sources."commander-2.20.3" 111744 sources."diff-3.5.0" 111745 sources."get-stdin-5.0.1" ··· 112606 }; 112607 dependencies = [ 112608 sources."@braintree/sanitize-url-3.1.0" 112609 + sources."@types/node-17.0.24" 112610 sources."@types/yauzl-2.10.0" 112611 sources."agent-base-6.0.2" 112612 sources."ansi-styles-4.3.0" ··· 112620 sources."chownr-1.1.4" 112621 sources."color-convert-2.0.1" 112622 sources."color-name-1.1.4" 112623 + sources."commander-9.2.0" 112624 sources."concat-map-0.0.1" 112625 sources."cross-fetch-3.1.5" 112626 sources."d3-7.4.4" ··· 113085 sources."@types/istanbul-lib-coverage-2.0.4" 113086 sources."@types/istanbul-lib-report-3.0.0" 113087 sources."@types/istanbul-reports-3.0.1" 113088 + sources."@types/node-17.0.24" 113089 sources."@types/stack-utils-2.0.1" 113090 sources."@types/yargs-16.0.4" 113091 sources."@types/yargs-parser-21.0.0" ··· 113508 sources."has-unicode-2.0.1" 113509 sources."http-cache-semantics-4.1.0" 113510 sources."http-proxy-agent-5.0.0" 113511 + sources."https-proxy-agent-5.0.1" 113512 sources."humanize-ms-1.2.1" 113513 sources."iconv-lite-0.6.3" 113514 sources."imurmurhash-0.1.4" ··· 114028 sources."@types/http-cache-semantics-4.0.1" 114029 sources."@types/json-buffer-3.0.0" 114030 sources."@types/keyv-3.1.4" 114031 + sources."@types/node-17.0.24" 114032 sources."@types/responselike-1.0.0" 114033 sources."abbrev-1.1.1" 114034 sources."accepts-1.3.8" ··· 114783 sources."@types/json-buffer-3.0.0" 114784 sources."@types/keyv-3.1.4" 114785 sources."@types/minimist-1.2.2" 114786 + sources."@types/node-17.0.24" 114787 sources."@types/normalize-package-data-2.4.1" 114788 sources."@types/parse-json-4.0.0" 114789 sources."@types/responselike-1.0.0" ··· 115278 npm = nodeEnv.buildNodePackage { 115279 name = "npm"; 115280 packageName = "npm"; 115281 + version = "8.7.0"; 115282 src = fetchurl { 115283 + url = "https://registry.npmjs.org/npm/-/npm-8.7.0.tgz"; 115284 + sha512 = "fOSunmSa1K3dBv4YFoX54wew3PC6aYYDMGWBAonWRO4Yc7smYtk3nLrCda6+dtkTJwA8D4Tv/0wmnpYNgf5VFw=="; 115285 }; 115286 buildInputs = globalBuildInputs; 115287 meta = { ··· 115353 sources."color-name-1.1.4" 115354 sources."color-support-1.1.3" 115355 sources."colors-1.0.3" 115356 + sources."commander-9.2.0" 115357 sources."concat-map-0.0.1" 115358 sources."configstore-5.0.1" 115359 sources."console-control-strings-1.1.0" ··· 115408 sources."hosted-git-info-5.0.0" 115409 sources."http-cache-semantics-4.1.0" 115410 sources."http-proxy-agent-5.0.0" 115411 + sources."https-proxy-agent-5.0.1" 115412 sources."humanize-ms-1.2.1" 115413 sources."iconv-lite-0.6.3" 115414 sources."ignore-5.2.0" ··· 115491 sources."npm-package-arg-9.0.2" 115492 sources."npm-packlist-5.0.0" 115493 sources."npm-pick-manifest-7.0.1" 115494 + sources."npm-registry-fetch-13.1.1" 115495 sources."npmlog-6.0.1" 115496 sources."once-1.4.0" 115497 sources."p-cancelable-1.1.0" ··· 116157 sources."caller-path-2.0.0" 116158 sources."callsites-2.0.0" 116159 sources."caniuse-api-3.0.0" 116160 + sources."caniuse-lite-1.0.30001332" 116161 sources."caseless-0.12.0" 116162 sources."chalk-2.4.2" 116163 sources."chokidar-2.1.8" ··· 116183 sources."convert-source-map-1.8.0" 116184 sources."copy-descriptor-0.1.1" 116185 sources."core-js-2.6.12" 116186 + (sources."core-js-compat-3.22.0" // { 116187 dependencies = [ 116188 sources."semver-7.0.0" 116189 ]; ··· 116248 sources."clone-1.0.4" 116249 ]; 116250 }) 116251 + sources."define-properties-1.1.4" 116252 (sources."define-property-0.2.5" // { 116253 dependencies = [ 116254 (sources."is-accessor-descriptor-0.1.6" // { ··· 116294 sources."duplexer2-0.1.4" 116295 sources."ecc-jsbn-0.1.2" 116296 sources."ee-first-1.1.1" 116297 + sources."electron-to-chromium-1.4.110" 116298 (sources."elliptic-6.5.4" // { 116299 dependencies = [ 116300 sources."bn.js-4.12.0" ··· 116304 sources."entities-2.2.0" 116305 sources."envinfo-7.8.1" 116306 sources."error-ex-1.3.2" 116307 + (sources."es-abstract-1.19.5" // { 116308 dependencies = [ 116309 sources."object-inspect-1.12.0" 116310 ]; ··· 116378 }) 116379 sources."has-bigints-1.0.1" 116380 sources."has-flag-3.0.0" 116381 + sources."has-property-descriptors-1.0.0" 116382 sources."has-symbols-1.0.3" 116383 sources."has-tostringtag-1.0.0" 116384 sources."has-value-1.0.0" ··· 117032 sources."browserslist-4.20.2" 117033 sources."buffer-from-1.1.2" 117034 sources."callsites-3.1.0" 117035 + sources."caniuse-lite-1.0.30001332" 117036 (sources."chalk-4.1.2" // { 117037 dependencies = [ 117038 sources."ansi-styles-4.3.0" ··· 117063 sources."domutils-2.8.0" 117064 sources."dotenv-7.0.0" 117065 sources."dotenv-expand-5.1.0" 117066 + sources."electron-to-chromium-1.4.110" 117067 sources."entities-3.0.1" 117068 sources."error-ex-1.3.2" 117069 sources."escalade-3.1.1" ··· 117212 sources."dashdash-1.14.1" 117213 sources."debug-2.6.9" 117214 sources."decamelize-1.2.0" 117215 + sources."define-properties-1.1.4" 117216 sources."delayed-stream-1.0.0" 117217 sources."depd-1.1.2" 117218 sources."destroy-1.0.4" ··· 117267 sources."har-schema-2.0.0" 117268 sources."har-validator-5.1.5" 117269 sources."has-1.0.3" 117270 + sources."has-property-descriptors-1.0.0" 117271 sources."has-symbols-1.0.3" 117272 sources."has-tostringtag-1.0.0" 117273 sources."hat-0.0.3" ··· 117586 sources."decompress-response-3.3.0" 117587 sources."deep-equal-1.1.1" 117588 sources."deep-extend-0.6.0" 117589 + sources."define-properties-1.1.4" 117590 sources."dns-equal-1.0.0" 117591 sources."dns-packet-1.3.4" 117592 sources."dns-txt-2.0.2" ··· 117606 }) 117607 sources."fs.realpath-1.0.0" 117608 sources."function-bind-1.1.1" 117609 + sources."functions-have-names-1.2.2" 117610 sources."get-browser-rtc-1.1.0" 117611 sources."get-intrinsic-1.1.1" 117612 sources."get-stdin-4.0.1" ··· 117615 sources."has-1.0.3" 117616 sources."has-ansi-2.0.0" 117617 sources."has-flag-3.0.0" 117618 + sources."has-property-descriptors-1.0.0" 117619 sources."has-symbols-1.0.3" 117620 sources."has-tostringtag-1.0.0" 117621 sources."hat-0.0.3" ··· 117739 sources."read-pkg-up-1.0.1" 117740 sources."readable-stream-2.3.7" 117741 sources."redent-1.0.0" 117742 + sources."regexp.prototype.flags-1.4.3" 117743 sources."repeating-2.0.1" 117744 sources."resolve-1.22.0" 117745 sources."restore-cursor-2.0.0" ··· 117849 sources."arraybuffer.slice-0.0.7" 117850 sources."asn1-0.2.6" 117851 sources."assert-plus-1.0.0" 117852 + sources."async-2.6.4" 117853 sources."asynckit-0.4.0" 117854 sources."aws-sign2-0.7.0" 117855 sources."aws4-1.11.0" ··· 118318 sources."has-1.0.3" 118319 sources."has-flag-4.0.0" 118320 sources."has-unicode-2.0.1" 118321 + sources."https-proxy-agent-5.0.1" 118322 sources."ieee754-1.2.1" 118323 sources."ignore-5.2.0" 118324 sources."inherits-2.0.4" ··· 118450 }) 118451 (sources."@pm2/io-5.0.0" // { 118452 dependencies = [ 118453 + sources."async-2.6.4" 118454 sources."eventemitter2-6.4.5" 118455 sources."semver-6.3.0" 118456 sources."tslib-1.9.3" ··· 118458 }) 118459 (sources."@pm2/js-api-0.6.7" // { 118460 dependencies = [ 118461 + sources."async-2.6.4" 118462 sources."eventemitter2-6.4.5" 118463 ]; 118464 }) ··· 118540 sources."has-flag-4.0.0" 118541 sources."http-errors-2.0.0" 118542 sources."http-proxy-agent-4.0.1" 118543 + sources."https-proxy-agent-5.0.1" 118544 sources."iconv-lite-0.4.24" 118545 sources."inflight-1.0.6" 118546 sources."inherits-2.0.4" ··· 118640 sources."uuid-3.4.0" 118641 (sources."vizion-2.2.1" // { 118642 dependencies = [ 118643 + sources."async-2.6.4" 118644 ]; 118645 }) 118646 sources."vm2-3.9.9" ··· 118664 pnpm = nodeEnv.buildNodePackage { 118665 name = "pnpm"; 118666 packageName = "pnpm"; 118667 + version = "6.32.7"; 118668 src = fetchurl { 118669 + url = "https://registry.npmjs.org/pnpm/-/pnpm-6.32.7.tgz"; 118670 + sha512 = "2LtKMtQ7ffQEIW0lQn6z1WBnz2SPB416DDlyEf3WzOlXCO0BXjLr6kX2vDOTFzKyHWbhjcd45qw3ty3G92fb2Q=="; 118671 }; 118672 buildInputs = globalBuildInputs; 118673 meta = { ··· 119441 sources."has-1.0.3" 119442 sources."has-symbols-1.0.3" 119443 sources."http-cache-semantics-4.1.0" 119444 + sources."https-proxy-agent-5.0.1" 119445 sources."ini-1.3.8" 119446 sources."ip-1.1.5" 119447 sources."is-docker-2.2.1" ··· 119771 sources."concat-map-0.0.1" 119772 sources."cycle-1.0.3" 119773 sources."deep-equal-2.0.5" 119774 + sources."define-properties-1.1.4" 119775 + sources."es-abstract-1.19.5" 119776 sources."es-get-iterator-1.1.2" 119777 sources."es-to-primitive-1.2.1" 119778 sources."escape-string-regexp-1.0.5" ··· 119780 sources."foreach-2.0.5" 119781 sources."fs.realpath-1.0.0" 119782 sources."function-bind-1.1.1" 119783 + sources."functions-have-names-1.2.2" 119784 sources."get-intrinsic-1.1.1" 119785 sources."get-symbol-description-1.0.0" 119786 sources."glob-7.2.0" 119787 sources."has-1.0.3" 119788 sources."has-ansi-2.0.0" 119789 sources."has-bigints-1.0.1" 119790 + sources."has-property-descriptors-1.0.0" 119791 sources."has-symbols-1.0.3" 119792 sources."has-tostringtag-1.0.0" 119793 sources."i-0.3.7" ··· 119827 sources."pkginfo-0.4.1" 119828 sources."prompt-0.2.14" 119829 sources."read-1.0.7" 119830 + sources."regexp.prototype.flags-1.4.3" 119831 sources."revalidator-0.1.8" 119832 sources."rimraf-2.7.1" 119833 sources."semver-5.7.1" ··· 120008 sources."@types/glob-7.2.0" 120009 sources."@types/json-schema-7.0.11" 120010 sources."@types/minimatch-3.0.5" 120011 + sources."@types/node-17.0.24" 120012 sources."@types/parse-json-4.0.0" 120013 sources."@types/q-1.5.5" 120014 sources."@webassemblyjs/ast-1.9.0" ··· 120076 ]; 120077 }) 120078 sources."assign-symbols-1.0.0" 120079 + sources."async-2.6.4" 120080 sources."async-each-1.0.3" 120081 sources."async-limiter-1.0.1" 120082 sources."atob-2.1.2" ··· 120200 sources."camel-case-3.0.0" 120201 sources."camelcase-5.3.1" 120202 sources."caniuse-api-3.0.0" 120203 + sources."caniuse-lite-1.0.30001332" 120204 sources."case-sensitive-paths-webpack-plugin-2.4.0" 120205 sources."caw-2.0.1" 120206 sources."chalk-2.4.2" ··· 120284 sources."copy-concurrently-1.0.5" 120285 sources."copy-descriptor-0.1.1" 120286 sources."core-js-2.6.12" 120287 + (sources."core-js-compat-3.22.0" // { 120288 dependencies = [ 120289 sources."semver-7.0.0" 120290 ]; ··· 120388 sources."pump-3.0.0" 120389 ]; 120390 }) 120391 + sources."define-properties-1.1.4" 120392 sources."define-property-2.0.2" 120393 sources."del-4.1.1" 120394 sources."depd-1.1.2" ··· 120430 sources."duplexify-3.7.1" 120431 sources."ee-first-1.1.1" 120432 sources."ejs-2.7.4" 120433 + sources."electron-to-chromium-1.4.110" 120434 (sources."elliptic-6.5.4" // { 120435 dependencies = [ 120436 sources."bn.js-4.12.0" ··· 120461 sources."entities-2.2.0" 120462 sources."errno-0.1.8" 120463 sources."error-ex-1.3.2" 120464 + sources."es-abstract-1.19.5" 120465 sources."es-to-primitive-1.2.1" 120466 sources."escalade-3.1.1" 120467 sources."escape-html-1.0.3" ··· 120578 sources."fs.realpath-1.0.0" 120579 sources."fsevents-2.3.2" 120580 sources."function-bind-1.1.1" 120581 + sources."functions-have-names-1.2.2" 120582 sources."gensync-1.0.0-beta.2" 120583 sources."get-caller-file-2.0.5" 120584 sources."get-intrinsic-1.1.1" ··· 120615 }) 120616 sources."has-cors-1.1.0" 120617 sources."has-flag-3.0.0" 120618 + sources."has-property-descriptors-1.0.0" 120619 sources."has-symbol-support-x-1.4.2" 120620 sources."has-symbols-1.0.3" 120621 sources."has-to-string-tag-x-1.4.1" ··· 121153 sources."regenerator-runtime-0.13.9" 121154 sources."regenerator-transform-0.15.0" 121155 sources."regex-not-1.0.2" 121156 + sources."regexp.prototype.flags-1.4.3" 121157 sources."regexpu-core-5.0.1" 121158 sources."registry-auth-token-3.3.2" 121159 sources."registry-url-3.1.0" ··· 121750 sources."get-caller-file-2.0.5" 121751 sources."html-encoding-sniffer-3.0.0" 121752 sources."http-proxy-agent-5.0.0" 121753 + sources."https-proxy-agent-5.0.1" 121754 sources."iconv-lite-0.6.3" 121755 sources."is-fullwidth-code-point-3.0.0" 121756 sources."is-potential-custom-element-name-1.0.1" ··· 121838 sources."@redocly/openapi-core-1.0.0-beta.94" 121839 sources."@redocly/react-dropdown-aria-2.0.12" 121840 sources."@types/json-schema-7.0.11" 121841 + sources."@types/node-14.18.13" 121842 sources."ansi-regex-5.0.1" 121843 sources."ansi-styles-3.2.1" 121844 sources."anymatch-3.1.2" ··· 122609 rollup = nodeEnv.buildNodePackage { 122610 name = "rollup"; 122611 packageName = "rollup"; 122612 + version = "2.70.2"; 122613 src = fetchurl { 122614 + url = "https://registry.npmjs.org/rollup/-/rollup-2.70.2.tgz"; 122615 + sha512 = "EitogNZnfku65I1DD5Mxe8JYRUCy0hkK5X84IlDtUs+O6JRMpRciXTzyCUuX11b5L5pvjH+OmFXiQ3XjabcXgg=="; 122616 }; 122617 dependencies = [ 122618 sources."fsevents-2.3.2" ··· 122843 sources."hosted-git-info-4.1.0" 122844 sources."htmlparser2-6.1.0" 122845 sources."http-proxy-agent-4.0.1" 122846 + sources."https-proxy-agent-5.0.1" 122847 sources."iconv-lite-0.6.3" 122848 sources."ieee754-1.2.1" 122849 sources."ignore-5.2.0" ··· 123329 serverless = nodeEnv.buildNodePackage { 123330 name = "serverless"; 123331 packageName = "serverless"; 123332 + version = "3.14.0"; 123333 src = fetchurl { 123334 + url = "https://registry.npmjs.org/serverless/-/serverless-3.14.0.tgz"; 123335 + sha512 = "+8B26dyIfsQ9QqDubKJhVRbSjcg0qJNWlFU/fdHYoLn/nUO4u1u+4AYdnUSiku8bDyrdaAjFJp9Zk3cwPCsm9A=="; 123336 }; 123337 dependencies = [ 123338 sources."2-thenable-1.0.0" ··· 123361 sources."@types/json-buffer-3.0.0" 123362 sources."@types/keyv-3.1.4" 123363 sources."@types/lodash-4.14.181" 123364 + sources."@types/node-17.0.24" 123365 sources."@types/responselike-1.0.0" 123366 sources."adm-zip-0.5.9" 123367 sources."agent-base-6.0.2" ··· 123376 sources."file-type-4.4.0" 123377 ]; 123378 }) 123379 + (sources."archiver-5.3.1" // { 123380 dependencies = [ 123381 sources."readable-stream-3.6.0" 123382 ]; ··· 123387 sources."async-3.2.3" 123388 sources."asynckit-0.4.0" 123389 sources."at-least-node-1.0.0" 123390 + (sources."aws-sdk-2.1116.0" // { 123391 dependencies = [ 123392 sources."buffer-4.9.2" 123393 sources."ieee754-1.1.13" ··· 123480 sources."type-1.2.0" 123481 ]; 123482 }) 123483 + sources."dayjs-1.11.1" 123484 sources."debug-4.3.4" 123485 (sources."decompress-4.2.1" // { 123486 dependencies = [ ··· 123586 sources."has-symbols-1.0.3" 123587 sources."http-cache-semantics-4.1.0" 123588 sources."http2-wrapper-1.0.3" 123589 + sources."https-proxy-agent-5.0.1" 123590 sources."iconv-lite-0.4.24" 123591 sources."ieee754-1.2.1" 123592 sources."ignore-5.2.0" ··· 124452 snyk = nodeEnv.buildNodePackage { 124453 name = "snyk"; 124454 packageName = "snyk"; 124455 + version = "1.906.0"; 124456 src = fetchurl { 124457 + url = "https://registry.npmjs.org/snyk/-/snyk-1.906.0.tgz"; 124458 + sha512 = "BqHGSWBVx7LuiM9BuPE2zXRCQyAN7wJch4IEm0LFibZcLaoJ+4QWcn6X2ZynRzMCX7UJOntQUQj3q7lTmSaiug=="; 124459 }; 124460 buildInputs = globalBuildInputs; 124461 meta = { ··· 124479 sources."@types/component-emitter-1.2.11" 124480 sources."@types/cookie-0.4.1" 124481 sources."@types/cors-2.8.12" 124482 + sources."@types/node-17.0.24" 124483 sources."accepts-1.3.8" 124484 sources."base64id-2.0.0" 124485 sources."component-emitter-1.3.0" ··· 124835 sources."abstract-leveldown-6.2.3" 124836 ]; 124837 }) 124838 + sources."define-properties-1.1.4" 124839 (sources."define-property-2.0.2" // { 124840 dependencies = [ 124841 sources."isobject-3.0.1" ··· 124857 }) 124858 sources."epidemic-broadcast-trees-7.0.0" 124859 sources."errno-0.1.8" 124860 + sources."es-abstract-1.19.5" 124861 (sources."es-get-iterator-1.1.2" // { 124862 dependencies = [ 124863 sources."isarray-2.0.5" ··· 124927 sources."fs.realpath-1.0.0" 124928 sources."fsevents-1.2.13" 124929 sources."function-bind-1.1.1" 124930 + sources."functions-have-names-1.2.2" 124931 sources."get-intrinsic-1.1.1" 124932 sources."get-symbol-description-1.0.0" 124933 sources."get-value-2.0.6" ··· 124941 sources."has-ansi-2.0.0" 124942 sources."has-bigints-1.0.1" 124943 sources."has-network-0.0.1" 124944 + sources."has-property-descriptors-1.0.0" 124945 sources."has-symbols-1.0.3" 124946 sources."has-tostringtag-1.0.0" 124947 (sources."has-value-1.0.0" // { ··· 125348 }) 125349 sources."regex-cache-0.4.4" 125350 sources."regex-not-1.0.2" 125351 + sources."regexp.prototype.flags-1.4.3" 125352 sources."relative-url-1.0.2" 125353 (sources."remark-3.2.3" // { 125354 dependencies = [ ··· 125717 sources."async-1.5.2" 125718 sources."async-limiter-1.0.1" 125719 sources."asynckit-0.4.0" 125720 + (sources."aws-sdk-2.1116.0" // { 125721 dependencies = [ 125722 sources."uuid-3.3.2" 125723 ]; ··· 126517 stylelint = nodeEnv.buildNodePackage { 126518 name = "stylelint"; 126519 packageName = "stylelint"; 126520 + version = "14.7.0"; 126521 src = fetchurl { 126522 + url = "https://registry.npmjs.org/stylelint/-/stylelint-14.7.0.tgz"; 126523 + sha512 = "vAVPAYaHhcexOiuvym0S64UWIIonMKgYz1Eh+SZgXKkKFLL+wwBzzWGH7Bdnk/HLyH3KlrX+tlisFdEG8ik+Lw=="; 126524 }; 126525 dependencies = [ 126526 sources."@babel/code-frame-7.16.7" ··· 126871 svelte-check = nodeEnv.buildNodePackage { 126872 name = "svelte-check"; 126873 packageName = "svelte-check"; 126874 + version = "2.7.0"; 126875 src = fetchurl { 126876 + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.7.0.tgz"; 126877 + sha512 = "GrvG24j0+i8AOm0k0KyJ6Dqc+TAR2yzB7rtS4nljHStunVxCTr/1KYlv4EsOeoqtHLzeWMOd5D2O6nDdP/yw4A=="; 126878 }; 126879 dependencies = [ 126880 sources."@nodelib/fs.scandir-2.1.5" 126881 sources."@nodelib/fs.stat-2.0.5" 126882 sources."@nodelib/fs.walk-1.2.8" 126883 + sources."@types/node-17.0.24" 126884 sources."@types/pug-2.0.6" 126885 sources."@types/sass-1.43.1" 126886 sources."anymatch-3.1.2" ··· 126935 sources."source-map-0.7.3" 126936 sources."sourcemap-codec-1.4.8" 126937 sources."strip-indent-3.0.0" 126938 + sources."svelte-preprocess-4.10.6" 126939 sources."to-regex-range-5.0.1" 126940 sources."typescript-4.6.3" 126941 sources."wrappy-1.0.2" ··· 126953 svelte-language-server = nodeEnv.buildNodePackage { 126954 name = "svelte-language-server"; 126955 packageName = "svelte-language-server"; 126956 + version = "0.14.26"; 126957 src = fetchurl { 126958 + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.26.tgz"; 126959 + sha512 = "U4pJ0ISruXQ6z+4++szyN2fsapa9/usVb1UlPC0p6sPfWfmQgFlR4125zWsMr0nl1ScsYa8VdEweQlk7mrq6zw=="; 126960 }; 126961 dependencies = [ 126962 sources."@emmetio/abbreviation-2.2.3" ··· 126965 sources."@nodelib/fs.scandir-2.1.5" 126966 sources."@nodelib/fs.stat-2.0.5" 126967 sources."@nodelib/fs.walk-1.2.8" 126968 + sources."@types/node-17.0.24" 126969 sources."@types/pug-2.0.6" 126970 sources."@types/sass-1.43.1" 126971 sources."anymatch-3.1.2" ··· 127024 sources."sourcemap-codec-1.4.8" 127025 sources."strip-indent-3.0.0" 127026 sources."svelte-3.47.0" 127027 + sources."svelte-preprocess-4.10.6" 127028 + sources."svelte2tsx-0.5.9" 127029 sources."to-regex-range-5.0.1" 127030 sources."tslib-2.3.1" 127031 sources."typescript-4.6.3" ··· 128113 sources."debug-4.3.4" 128114 sources."deep-equal-1.1.1" 128115 sources."deep-is-0.1.4" 128116 + sources."define-properties-1.1.4" 128117 sources."diff-4.0.2" 128118 sources."emoji-regex-8.0.0" 128119 sources."error-ex-1.3.2" ··· 128130 sources."format-0.2.2" 128131 sources."fs.realpath-1.0.0" 128132 sources."function-bind-1.1.1" 128133 + sources."functions-have-names-1.2.2" 128134 sources."get-intrinsic-1.1.1" 128135 sources."get-stdin-5.0.1" 128136 sources."glob-7.2.0" 128137 sources."graceful-fs-4.2.10" 128138 sources."has-1.0.3" 128139 sources."has-flag-4.0.0" 128140 + sources."has-property-descriptors-1.0.0" 128141 sources."has-symbols-1.0.3" 128142 sources."has-tostringtag-1.0.0" 128143 sources."hosted-git-info-2.8.9" ··· 128229 sources."strip-bom-3.0.0" 128230 ]; 128231 }) 128232 + sources."regexp.prototype.flags-1.4.3" 128233 sources."remark-footnotes-3.0.0" 128234 sources."remark-frontmatter-3.0.0" 128235 sources."remark-gfm-1.0.0" ··· 128314 }; 128315 dependencies = [ 128316 sources."call-bind-1.0.2" 128317 + sources."define-properties-1.1.4" 128318 sources."function-bind-1.1.1" 128319 + sources."functions-have-names-1.2.2" 128320 sources."get-intrinsic-1.1.1" 128321 sources."has-1.0.3" 128322 + sources."has-property-descriptors-1.0.0" 128323 sources."has-symbols-1.0.3" 128324 sources."match-index-1.0.3" 128325 sources."object-keys-1.1.1" 128326 + sources."regexp.prototype.flags-1.4.3" 128327 ]; 128328 buildInputs = globalBuildInputs; 128329 meta = { ··· 128925 sources."array.prototype.find-2.2.0" 128926 sources."call-bind-1.0.2" 128927 sources."check-ends-with-period-1.0.1" 128928 + sources."define-properties-1.1.4" 128929 sources."emoji-regex-6.5.1" 128930 sources."end-with-1.0.2" 128931 + sources."es-abstract-1.19.5" 128932 sources."es-shim-unscopables-1.0.0" 128933 sources."es-to-primitive-1.2.1" 128934 sources."function-bind-1.1.1" ··· 128936 sources."get-symbol-description-1.0.0" 128937 sources."has-1.0.3" 128938 sources."has-bigints-1.0.1" 128939 + sources."has-property-descriptors-1.0.0" 128940 sources."has-symbols-1.0.3" 128941 sources."has-tostringtag-1.0.0" 128942 sources."internal-slot-1.0.3" ··· 129039 dependencies = [ 129040 sources."array-includes-3.1.4" 129041 sources."call-bind-1.0.2" 129042 + sources."define-properties-1.1.4" 129043 + sources."es-abstract-1.19.5" 129044 sources."es-to-primitive-1.2.1" 129045 sources."function-bind-1.1.1" 129046 sources."get-intrinsic-1.1.1" 129047 sources."get-symbol-description-1.0.0" 129048 sources."has-1.0.3" 129049 sources."has-bigints-1.0.1" 129050 + sources."has-property-descriptors-1.0.0" 129051 sources."has-symbols-1.0.3" 129052 sources."has-tostringtag-1.0.0" 129053 sources."internal-slot-1.0.3" ··· 129139 sources."@types/http-cache-semantics-4.0.1" 129140 sources."@types/json-buffer-3.0.0" 129141 sources."@types/keyv-3.1.4" 129142 + sources."@types/node-17.0.24" 129143 sources."@types/responselike-1.0.0" 129144 sources."abbrev-1.1.1" 129145 sources."abstract-logging-2.0.1" ··· 129191 sources."content-type-1.0.4" 129192 sources."cookie-0.4.2" 129193 sources."cookie-signature-1.0.6" 129194 + sources."core-js-3.22.0" 129195 sources."core-util-is-1.0.2" 129196 sources."cors-2.8.5" 129197 sources."css-select-4.3.0" ··· 129204 }) 129205 sources."deep-extend-0.6.0" 129206 sources."defer-to-connect-2.0.1" 129207 + sources."define-properties-1.1.4" 129208 sources."delegates-1.0.0" 129209 sources."depd-1.1.2" 129210 sources."destroy-1.0.4" ··· 129226 }) 129227 sources."engine.io-parser-5.0.3" 129228 sources."entities-2.2.0" 129229 + sources."es-abstract-1.19.5" 129230 sources."es-to-primitive-1.2.1" 129231 sources."escape-html-1.0.3" 129232 sources."escape-string-regexp-1.0.5" ··· 129255 sources."has-1.0.3" 129256 sources."has-bigints-1.0.1" 129257 sources."has-flag-4.0.0" 129258 + sources."has-property-descriptors-1.0.0" 129259 sources."has-symbols-1.0.3" 129260 sources."has-tostringtag-1.0.0" 129261 sources."has-unicode-2.0.1" ··· 129264 sources."http-errors-1.8.1" 129265 sources."http2-wrapper-1.0.3" 129266 sources."http_ece-1.1.0" 129267 + (sources."https-proxy-agent-5.0.1" // { 129268 dependencies = [ 129269 sources."debug-4.3.4" 129270 sources."ms-2.1.2" ··· 129483 sources."@types/http-cache-semantics-4.0.1" 129484 sources."@types/json-buffer-3.0.0" 129485 sources."@types/keyv-3.1.4" 129486 + sources."@types/node-17.0.24" 129487 sources."@types/responselike-1.0.0" 129488 sources."abbrev-1.1.1" 129489 sources."abstract-logging-2.0.1" ··· 129535 sources."content-type-1.0.4" 129536 sources."cookie-0.4.2" 129537 sources."cookie-signature-1.0.6" 129538 + sources."core-js-3.22.0" 129539 sources."core-util-is-1.0.2" 129540 sources."cors-2.8.5" 129541 sources."css-select-4.3.0" ··· 129548 }) 129549 sources."deep-extend-0.6.0" 129550 sources."defer-to-connect-2.0.1" 129551 + sources."define-properties-1.1.4" 129552 sources."delegates-1.0.0" 129553 sources."depd-1.1.2" 129554 sources."destroy-1.0.4" ··· 129570 }) 129571 sources."engine.io-parser-5.0.3" 129572 sources."entities-2.2.0" 129573 + sources."es-abstract-1.19.5" 129574 sources."es-to-primitive-1.2.1" 129575 sources."escape-html-1.0.3" 129576 sources."escape-string-regexp-1.0.5" ··· 129599 sources."has-1.0.3" 129600 sources."has-bigints-1.0.1" 129601 sources."has-flag-4.0.0" 129602 + sources."has-property-descriptors-1.0.0" 129603 sources."has-symbols-1.0.3" 129604 sources."has-tostringtag-1.0.0" 129605 sources."has-unicode-2.0.1" ··· 129608 sources."http-errors-1.8.1" 129609 sources."http2-wrapper-1.0.3" 129610 sources."http_ece-1.1.0" 129611 + (sources."https-proxy-agent-5.0.1" // { 129612 dependencies = [ 129613 sources."debug-4.3.4" 129614 sources."ms-2.1.2" ··· 129900 sources."content-type-1.0.4" 129901 sources."cookie-0.4.0" 129902 sources."cookie-signature-1.0.6" 129903 + sources."core-js-3.22.0" 129904 sources."core-util-is-1.0.2" 129905 sources."css-select-1.2.0" 129906 sources."css-what-2.1.3" ··· 130354 thelounge-theme-chord = nodeEnv.buildNodePackage { 130355 name = "thelounge-theme-chord"; 130356 packageName = "thelounge-theme-chord"; 130357 + version = "1.1.3"; 130358 src = fetchurl { 130359 + url = "https://registry.npmjs.org/thelounge-theme-chord/-/thelounge-theme-chord-1.1.3.tgz"; 130360 + sha512 = "1STzJ2NT68+4IxSlV82W3Z8UkVwCZV+qLdDW/z927k4ZKCjP0cWGH7nB2CwiBBJpBm4zAhBjmwa4Ip3jYWZ/eg=="; 130361 }; 130362 buildInputs = globalBuildInputs; 130363 meta = { ··· 130493 sources."@types/http-cache-semantics-4.0.1" 130494 sources."@types/json-buffer-3.0.0" 130495 sources."@types/keyv-3.1.4" 130496 + sources."@types/node-17.0.24" 130497 sources."@types/responselike-1.0.0" 130498 sources."abbrev-1.1.1" 130499 sources."abstract-logging-2.0.1" ··· 130574 sources."content-type-1.0.4" 130575 sources."cookie-0.4.0" 130576 sources."cookie-signature-1.0.6" 130577 + sources."core-js-3.22.0" 130578 sources."core-util-is-1.0.2" 130579 sources."css-select-1.2.0" 130580 sources."css-what-2.1.3" ··· 130669 sources."http-signature-1.2.0" 130670 sources."http2-wrapper-1.0.3" 130671 sources."http_ece-1.1.0" 130672 + (sources."https-proxy-agent-5.0.1" // { 130673 dependencies = [ 130674 sources."debug-4.3.4" 130675 sources."ms-2.1.2" ··· 130960 sources."@types/http-cache-semantics-4.0.1" 130961 sources."@types/json-buffer-3.0.0" 130962 sources."@types/keyv-3.1.4" 130963 + sources."@types/node-17.0.24" 130964 sources."@types/responselike-1.0.0" 130965 sources."abbrev-1.1.1" 130966 sources."abstract-logging-2.0.1" ··· 131041 sources."content-type-1.0.4" 131042 sources."cookie-0.4.0" 131043 sources."cookie-signature-1.0.6" 131044 + sources."core-js-3.22.0" 131045 sources."core-util-is-1.0.2" 131046 sources."css-select-1.2.0" 131047 sources."css-what-2.1.3" ··· 131136 sources."http-signature-1.2.0" 131137 sources."http2-wrapper-1.0.3" 131138 sources."http_ece-1.1.0" 131139 + (sources."https-proxy-agent-5.0.1" // { 131140 dependencies = [ 131141 sources."debug-4.3.4" 131142 sources."ms-2.1.2" ··· 132324 sources."brace-expansion-1.1.11" 132325 sources."braces-3.0.2" 132326 sources."clean-stack-2.2.0" 132327 + sources."commander-9.2.0" 132328 sources."concat-map-0.0.1" 132329 sources."crypto-random-string-2.0.0" 132330 sources."del-6.0.0" ··· 132456 sources."@types/http-cache-semantics-4.0.1" 132457 sources."@types/json-buffer-3.0.0" 132458 sources."@types/keyv-3.1.4" 132459 + sources."@types/node-16.11.27" 132460 sources."@types/responselike-1.0.0" 132461 sources."abbrev-1.1.1" 132462 sources."accepts-1.3.8" ··· 132515 sources."depd-1.1.2" 132516 sources."destroy-1.0.4" 132517 sources."diff-5.0.0" 132518 + sources."diff2html-3.4.17" 132519 sources."dnd-page-scroll-0.0.4" 132520 sources."ee-first-1.1.1" 132521 sources."emoji-regex-8.0.0" ··· 132544 sources."depd-2.0.0" 132545 ]; 132546 }) 132547 + sources."fecha-4.2.3" 132548 sources."finalhandler-1.1.2" 132549 sources."fn.name-1.1.0" 132550 sources."forwarded-0.2.0" ··· 132773 sources."@types/is-empty-1.2.1" 132774 sources."@types/js-yaml-4.0.5" 132775 sources."@types/ms-0.7.31" 132776 + sources."@types/node-17.0.24" 132777 sources."@types/supports-color-8.1.1" 132778 sources."@types/unist-2.0.6" 132779 sources."ansi-regex-6.0.1" ··· 132926 sources."get-caller-file-2.0.5" 132927 sources."glob-7.2.0" 132928 sources."has-unicode-2.0.1" 132929 + sources."https-proxy-agent-5.0.1" 132930 sources."iconv-lite-0.6.3" 132931 sources."inflight-1.0.6" 132932 sources."inherits-2.0.4" ··· 133086 dependencies = [ 133087 sources."@sindresorhus/is-0.14.0" 133088 sources."@szmarczak/http-timer-1.1.2" 133089 + sources."@types/node-17.0.24" 133090 sources."@vercel/build-utils-2.15.1" 133091 sources."@vercel/go-1.3.2" 133092 sources."@vercel/node-1.14.1" ··· 133584 sha512 = "HZfrlqpVu8N0UkSyjldPsGFpVFByYaDRDMmBvmKwKai2rAsd2vtde2CFnX9rOpmg3pN2vET8j3qtqZvZLzmkjQ=="; 133585 }; 133586 dependencies = [ 133587 + sources."core-js-3.22.0" 133588 sources."jsonc-parser-3.0.0" 133589 sources."regenerator-runtime-0.13.9" 133590 sources."request-light-0.5.8" ··· 133673 sources."buffer-from-1.1.2" 133674 sources."call-bind-1.0.2" 133675 sources."camelcase-6.3.0" 133676 + sources."caniuse-lite-1.0.30001332" 133677 (sources."chalk-4.1.2" // { 133678 dependencies = [ 133679 sources."supports-color-7.2.0" ··· 133713 sources."domelementtype-2.3.0" 133714 sources."domhandler-4.3.1" 133715 sources."domutils-2.8.0" 133716 + sources."electron-to-chromium-1.4.110" 133717 sources."emoji-regex-8.0.0" 133718 sources."emojis-list-3.0.0" 133719 sources."enhanced-resolve-5.9.3" ··· 133987 sources."arrify-1.0.1" 133988 sources."asn1-0.2.6" 133989 sources."assert-plus-1.0.0" 133990 + sources."async-2.6.4" 133991 sources."asynckit-0.4.0" 133992 sources."aws-sign2-0.7.0" 133993 sources."aws4-1.11.0" ··· 134288 sources."@starptech/rehype-webparser-0.10.0" 134289 sources."@starptech/webparser-0.10.0" 134290 sources."@szmarczak/http-timer-1.1.2" 134291 + sources."@types/node-17.0.24" 134292 sources."@types/unist-2.0.6" 134293 sources."@types/vfile-3.0.2" 134294 sources."@types/vfile-message-2.0.0" ··· 135249 sources."combined-stream-1.0.8" 135250 sources."concat-map-0.0.1" 135251 sources."console-control-strings-1.1.0" 135252 + sources."core-js-pure-3.22.0" 135253 sources."cssom-0.4.4" 135254 (sources."cssstyle-2.3.0" // { 135255 dependencies = [ ··· 135293 sources."has-unicode-2.0.1" 135294 sources."html-encoding-sniffer-2.0.1" 135295 sources."http-proxy-agent-4.0.1" 135296 + sources."https-proxy-agent-5.0.1" 135297 sources."iconv-lite-0.4.24" 135298 sources."inflight-1.0.6" 135299 sources."inherits-2.0.4" ··· 135446 sources."@sindresorhus/is-0.14.0" 135447 sources."@szmarczak/http-timer-1.1.2" 135448 sources."@types/minimatch-3.0.5" 135449 + sources."@types/node-17.0.24" 135450 sources."@types/yauzl-2.9.2" 135451 sources."acorn-8.7.0" 135452 sources."acorn-jsx-5.3.2" ··· 135538 sources."deepmerge-4.2.2" 135539 sources."defaults-1.0.3" 135540 sources."defer-to-connect-1.1.3" 135541 + sources."define-properties-1.1.4" 135542 sources."delayed-stream-1.0.0" 135543 sources."doctrine-3.0.0" 135544 sources."dom-serializer-1.4.1" ··· 135613 sources."fs.realpath-1.0.0" 135614 sources."function-bind-1.1.1" 135615 sources."functional-red-black-tree-1.0.1" 135616 + sources."functions-have-names-1.2.2" 135617 (sources."fx-runner-1.2.0" // { 135618 dependencies = [ 135619 sources."commander-2.9.0" ··· 135642 sources."har-validator-5.1.5" 135643 sources."has-1.0.3" 135644 sources."has-flag-4.0.0" 135645 + sources."has-property-descriptors-1.0.0" 135646 sources."has-symbols-1.0.3" 135647 sources."has-tostringtag-1.0.0" 135648 sources."has-yarn-2.1.0" ··· 135824 sources."readable-stream-3.6.0" 135825 sources."real-require-0.1.0" 135826 sources."regenerator-runtime-0.13.9" 135827 + sources."regexp.prototype.flags-1.4.3" 135828 sources."regexpp-3.2.0" 135829 sources."registry-auth-token-4.2.1" 135830 sources."registry-url-5.1.0" ··· 135974 sources."@types/eslint-scope-3.7.3" 135975 sources."@types/estree-0.0.51" 135976 sources."@types/json-schema-7.0.11" 135977 + sources."@types/node-17.0.24" 135978 sources."@webassemblyjs/ast-1.11.1" 135979 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 135980 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 135998 sources."ajv-keywords-3.5.2" 135999 sources."browserslist-4.20.2" 136000 sources."buffer-from-1.1.2" 136001 + sources."caniuse-lite-1.0.30001332" 136002 sources."chrome-trace-event-1.0.3" 136003 sources."commander-2.20.3" 136004 + sources."electron-to-chromium-1.4.110" 136005 sources."enhanced-resolve-5.9.3" 136006 sources."es-module-lexer-0.9.3" 136007 sources."escalade-3.1.1" ··· 136145 sources."@types/http-proxy-1.17.8" 136146 sources."@types/json-schema-7.0.11" 136147 sources."@types/mime-1.3.2" 136148 + sources."@types/node-17.0.24" 136149 sources."@types/qs-6.9.7" 136150 sources."@types/range-parser-1.2.4" 136151 sources."@types/retry-0.12.1" ··· 136160 sources."ansi-html-community-0.0.8" 136161 sources."anymatch-3.1.2" 136162 sources."array-flatten-2.1.2" 136163 + sources."async-2.6.4" 136164 sources."balanced-match-1.0.2" 136165 sources."batch-0.6.1" 136166 sources."binary-extensions-2.2.0" ··· 136459 sources."@protobufjs/pool-1.1.0" 136460 sources."@protobufjs/utf8-1.1.0" 136461 sources."@types/long-4.0.1" 136462 + sources."@types/node-17.0.24" 136463 sources."@webtorrent/http-node-1.3.0" 136464 sources."addr-to-ip-port-1.5.4" 136465 sources."airplay-js-0.3.0" ··· 137039 sources."asn1-0.2.6" 137040 sources."assert-plus-1.0.0" 137041 sources."astral-regex-1.0.0" 137042 + sources."async-2.6.4" 137043 sources."asynckit-0.4.0" 137044 sources."aws-sign2-0.7.0" 137045 sources."aws4-1.11.0" ··· 137118 sources."config-chain-1.1.13" 137119 sources."configstore-3.1.5" 137120 sources."console-control-strings-1.1.0" 137121 + sources."core-js-3.22.0" 137122 sources."core-util-is-1.0.3" 137123 sources."create-error-class-3.0.2" 137124 sources."cross-spawn-6.0.5" ··· 137134 sources."deep-extend-0.6.0" 137135 sources."default-uid-1.0.0" 137136 sources."defaults-1.0.3" 137137 + sources."define-properties-1.1.4" 137138 sources."delayed-stream-1.0.0" 137139 sources."delegates-1.0.0" 137140 sources."depd-1.1.2" ··· 137190 sources."fullname-4.0.1" 137191 sources."function-bind-1.1.1" 137192 sources."gauge-1.2.7" 137193 + sources."get-intrinsic-1.1.1" 137194 sources."get-stdin-4.0.1" 137195 sources."get-stream-4.1.0" 137196 sources."getpass-0.1.7" ··· 137222 ]; 137223 }) 137224 sources."has-flag-3.0.0" 137225 + sources."has-property-descriptors-1.0.0" 137226 sources."has-symbol-support-x-1.4.2" 137227 + sources."has-symbols-1.0.3" 137228 sources."has-to-string-tag-x-1.4.1" 137229 sources."has-unicode-2.0.1" 137230 sources."hosted-git-info-2.8.9" ··· 137236 ]; 137237 }) 137238 sources."http-signature-1.2.0" 137239 + (sources."https-proxy-agent-5.0.1" // { 137240 dependencies = [ 137241 sources."debug-4.3.4" 137242 sources."ms-2.1.2" ··· 137924 zx = nodeEnv.buildNodePackage { 137925 name = "zx"; 137926 packageName = "zx"; 137927 + version = "6.1.0"; 137928 src = fetchurl { 137929 + url = "https://registry.npmjs.org/zx/-/zx-6.1.0.tgz"; 137930 + sha512 = "LcvyN946APdktLPm1ta4wfNiJaDuq1iHOTDwApP69ug5hNYWzMYaVMC5Ek6Ny4nnSLpJ6wdY42feR/2LY5/nVA=="; 137931 }; 137932 dependencies = [ 137933 sources."@nodelib/fs.scandir-2.1.5" ··· 137935 sources."@nodelib/fs.walk-1.2.8" 137936 sources."@types/fs-extra-9.0.13" 137937 sources."@types/minimist-1.2.2" 137938 + sources."@types/node-17.0.24" 137939 sources."@types/which-2.0.1" 137940 sources."braces-3.0.2" 137941 sources."chalk-5.0.1" ··· 137980 sources."universalify-2.0.0" 137981 sources."web-streams-polyfill-3.2.1" 137982 sources."which-2.0.2" 137983 + sources."yaml-2.0.1" 137984 ]; 137985 buildInputs = globalBuildInputs; 137986 meta = {
+3
pkgs/development/python-modules/django-hijack-admin/default.nix
··· 34 homepage = "https://github.com/arteria/django-hijack-admin"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ lsix ]; 37 }; 38 }
··· 34 homepage = "https://github.com/arteria/django-hijack-admin"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ lsix ]; 37 + # may be unmaintained, doesn't work with recent django-hijack: 38 + # https://github.com/django-hijack/django-hijack-admin/issues/46 39 + broken = true; 40 }; 41 }
+22 -22
pkgs/development/python-modules/django-hijack/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, python, 2 - django, django_compat, django_nose 3 }: 4 buildPythonPackage rec { 5 pname = "django-hijack"; 6 - version = "2.1.10"; 7 8 - # the pypi packages don't include everything required for the tests 9 - src = fetchFromGitHub { 10 - owner = "arteria"; 11 - repo = "django-hijack"; 12 - rev = "v${version}"; 13 - sha256 = "01fwkjdzvw0yx2spwi7zc1yy64ndq1y72bfmk7kxnq5x803m2ak6"; 14 }; 15 16 - checkInputs = [ django_nose ]; 17 propagatedBuildInputs = [ django django_compat ]; 18 19 - checkPhase = '' 20 - runHook preCheck 21 - 22 - # we have to do a little bit of tinkering to convince the tests to run against the installed package, not the 23 - # source directory 24 - mkdir testbase 25 - pushd testbase 26 - mv ../runtests.py . 27 - ${python.interpreter} runtests.py hijack 28 - popd 29 - 30 - runHook postCheck 31 ''; 32 33 meta = with lib; { 34 description = "Allows superusers to hijack (=login as) and work on behalf of another user";
··· 1 + { lib 2 + , fetchPypi 3 + , buildPythonPackage 4 + , django 5 + , django_compat 6 + , pytest-django 7 + , pytestCheckHook 8 }: 9 + 10 buildPythonPackage rec { 11 pname = "django-hijack"; 12 + version = "3.2.0"; 13 14 + # the wheel comes with pre-built assets, allowing us to avoid fighting 15 + # with npm/webpack/gettext to build them ourselves. 16 + format = "wheel"; 17 + src = fetchPypi { 18 + inherit version format; 19 + pname = "django_hijack"; 20 + dist = "py3"; 21 + python = "py3"; 22 + sha256 = "1ixn7ppmbq1bgqahwv3z57hk80ql7sxpwl8jms7y8w5z1h91cn86"; 23 }; 24 25 propagatedBuildInputs = [ django django_compat ]; 26 27 + checkInputs = [ pytestCheckHook pytest-django ]; 28 + preCheck = '' 29 + export DJANGO_SETTINGS_MODULE='hijack.tests.test_app.settings' 30 ''; 31 + pytestFlagsArray = [ "--pyargs" "hijack" ]; 32 33 meta = with lib; { 34 description = "Allows superusers to hijack (=login as) and work on behalf of another user";
+45
pkgs/development/python-modules/gb-io/default.nix
···
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , rustPlatform 5 + , setuptools-rust 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "gb-io"; 10 + version = "0.1.1"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "althonos"; 14 + repo = "gb-io.py"; 15 + rev = "v${version}"; 16 + sha256 = "05fpz11rqqjrb8lc8id6ssv7sni9i1h7x1ra5v5flw9ghpf29ncm"; 17 + }; 18 + 19 + cargoDeps = rustPlatform.fetchCargoTarball { 20 + inherit src sourceRoot; 21 + name = "${pname}-${version}"; 22 + sha256 = "1qh31jysg475f2qc70b3bczmzywmg9987kn2vsmk88h8sx4nnwc5"; 23 + }; 24 + 25 + sourceRoot = "source"; 26 + 27 + nativeBuildInputs = [ setuptools-rust ] ++ (with rustPlatform; [ 28 + cargoSetupHook 29 + rust.cargo 30 + rust.rustc 31 + ]); 32 + 33 + checkPhase = '' 34 + python -m unittest discover 35 + ''; 36 + 37 + pythonImportsCheck = [ "gb_io" ]; 38 + 39 + meta = with lib; { 40 + homepage = "https://github.com/althonos/gb-io.py"; 41 + description = "A Python interface to gb-io, a fast GenBank parser written in Rust"; 42 + license = licenses.mit; 43 + maintainers = with lib.maintainers; [ dlesl ]; 44 + }; 45 + }
+2 -2
pkgs/development/python-modules/iso4217/default.nix
··· 16 in 17 buildPythonPackage rec { 18 pname = "iso4217"; 19 - version = "1.8"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "dahlia"; 26 repo = pname; 27 rev = version; 28 - hash = "sha256-L0vx6Aan6D1lusgBh/pcT373ZTxbtWpQnFKB2V0dxlA="; 29 }; 30 31 propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [
··· 16 in 17 buildPythonPackage rec { 18 pname = "iso4217"; 19 + version = "1.9"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "dahlia"; 26 repo = pname; 27 rev = version; 28 + hash = "sha256-7VrXAP/Qyzy2BDTmFwDlxHvF7HhndJsDMt/qHcsmhzs="; 29 }; 30 31 propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [
+2 -2
pkgs/development/python-modules/mechanize/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "mechanize"; 9 - version = "0.4.7"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "1773a8f5818398e0010e781dc0f942cd88b107a57424c904d545cd827c216809"; 14 }; 15 16 propagatedBuildInputs = [ html5lib ];
··· 6 7 buildPythonPackage rec { 8 pname = "mechanize"; 9 + version = "0.4.8"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-XoasB3c1fgBusEzSj37Z+BHUjf+mA9OJGsbSuSKA3JE="; 14 }; 15 16 propagatedBuildInputs = [ html5lib ];
+3 -8
pkgs/development/python-modules/pyefergy/default.nix
··· 1 { lib 2 , aiohttp 3 - , aresponses 4 , buildPythonPackage 5 , fetchFromGitHub 6 , iso4217 7 , pytest-asyncio 8 - , pytestCheckHook 9 , pythonOlder 10 , pytz 11 }: ··· 21 owner = "tkdrob"; 22 repo = pname; 23 rev = version; 24 - sha256 = "sha256-AdoM+PcVoajxhnEfkyN9UuNufChu8XGmZDLNC3mjrps="; 25 }; 26 27 propagatedBuildInputs = [ ··· 30 pytz 31 ]; 32 33 - checkInputs = [ 34 - aresponses 35 - pytest-asyncio 36 - pytestCheckHook 37 - ]; 38 39 pythonImportsCheck = [ 40 "pyefergy"
··· 1 { lib 2 , aiohttp 3 , buildPythonPackage 4 , fetchFromGitHub 5 , iso4217 6 , pytest-asyncio 7 , pythonOlder 8 , pytz 9 }: ··· 19 owner = "tkdrob"; 20 repo = pname; 21 rev = version; 22 + hash = "sha256-AdoM+PcVoajxhnEfkyN9UuNufChu8XGmZDLNC3mjrps="; 23 }; 24 25 propagatedBuildInputs = [ ··· 28 pytz 29 ]; 30 31 + # Tests require network access 32 + doCheck =false; 33 34 pythonImportsCheck = [ 35 "pyefergy"
+2 -2
pkgs/development/python-modules/pywlroots/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "pywlroots"; 21 - version = "0.15.11"; 22 23 src = fetchPypi { 24 inherit pname version; 25 - sha256 = "sha256-L+59uf3/wqWnmWpqm8RAyIEarbj2Sdwf1Pbweh/z9C8="; 26 }; 27 28 nativeBuildInputs = [ pkg-config ];
··· 18 19 buildPythonPackage rec { 20 pname = "pywlroots"; 21 + version = "0.15.12"; 22 23 src = fetchPypi { 24 inherit pname version; 25 + sha256 = "sha256-4uS47SJelkeBkqBcA6xzcTQqAXXSgcVJIZErVdR9ELY="; 26 }; 27 28 nativeBuildInputs = [ pkg-config ];
+8 -9
pkgs/development/python-modules/qiskit-aer/default.nix
··· 30 31 buildPythonPackage rec { 32 pname = "qiskit-aer"; 33 - version = "0.10.3"; 34 format = "pyproject"; 35 36 disabled = pythonOlder "3.6"; ··· 39 owner = "Qiskit"; 40 repo = "qiskit-aer"; 41 rev = version; 42 - sha256 = "sha256-COvJCj18qRNQJUXKrtlYJQGLjna44IgtNZeNVJJaIHg="; 43 }; 44 45 postPatch = '' ··· 55 cmake 56 ninja 57 scikit-build 58 - pybind11 59 ]; 60 61 buildInputs = [ 62 blas 63 catch2 64 fmt 65 muparserx 66 - nlohmann_json 67 spdlog 68 ]; 69 ··· 71 cvxpy 72 cython # generates some cython files at runtime that need to be cython-ized 73 numpy 74 ]; 75 76 preBuild = '' ··· 80 dontUseCmakeConfigure = true; 81 82 # *** Testing *** 83 - 84 pythonImportsCheck = [ 85 "qiskit.providers.aer" 86 "qiskit.providers.aer.backends.qasm_simulator" 87 "qiskit.providers.aer.backends.controller_wrappers" # Checks C++ files built correctly. Only exists if built & moved to output 88 ]; 89 - # Slow tests 90 disabledTests = [ 91 - "test_snapshot" # TODO: these ~30 tests fail on setup due to pytest fixture issues? 92 - "test_initialize_2" # TODO: simulations appear incorrect, off by >10%. 93 - # These tests fail on cvxpy >= 1.1.15 94 "test_clifford" 95 "test_approx_random" 96 97 # these fail for some builds. Haven't been able to reproduce error locally. 98 "test_kraus_gate_noise"
··· 30 31 buildPythonPackage rec { 32 pname = "qiskit-aer"; 33 + version = "0.10.4"; 34 format = "pyproject"; 35 36 disabled = pythonOlder "3.6"; ··· 39 owner = "Qiskit"; 40 repo = "qiskit-aer"; 41 rev = version; 42 + sha256 = "sha256-mf+Pgw/daFkt1bvqSeYzlO/Sd2F2MtwZcLr+h1u+eb0="; 43 }; 44 45 postPatch = '' ··· 55 cmake 56 ninja 57 scikit-build 58 ]; 59 60 buildInputs = [ 61 blas 62 catch2 63 + nlohmann_json 64 fmt 65 muparserx 66 spdlog 67 ]; 68 ··· 70 cvxpy 71 cython # generates some cython files at runtime that need to be cython-ized 72 numpy 73 + pybind11 74 ]; 75 76 preBuild = '' ··· 80 dontUseCmakeConfigure = true; 81 82 # *** Testing *** 83 pythonImportsCheck = [ 84 "qiskit.providers.aer" 85 "qiskit.providers.aer.backends.qasm_simulator" 86 "qiskit.providers.aer.backends.controller_wrappers" # Checks C++ files built correctly. Only exists if built & moved to output 87 ]; 88 disabledTests = [ 89 + # these tests don't work with cvxpy >= 1.1.15 90 "test_clifford" 91 "test_approx_random" 92 + "test_snapshot" # TODO: these ~30 tests fail on setup due to pytest fixture issues? 93 + "test_initialize_2" # TODO: simulations appear incorrect, off by >10%. 94 + "test_pauli_error_2q_gate_from_string_1qonly" 95 96 # these fail for some builds. Haven't been able to reproduce error locally. 97 "test_kraus_gate_noise"
+4
pkgs/development/python-modules/qiskit-finance/default.nix
··· 33 sha256 = "sha256-wnto3IqrJFAqIv6QAXe3BB9fvXQXe2fw/iUZe3+198M="; 34 }; 35 36 propagatedBuildInputs = [ 37 fastdtw 38 numpy
··· 33 sha256 = "sha256-wnto3IqrJFAqIv6QAXe3BB9fvXQXe2fw/iUZe3+198M="; 34 }; 35 36 + postPatch = '' 37 + substituteInPlace requirements.txt --replace "pandas<1.4.0" "pandas" 38 + ''; 39 + 40 propagatedBuildInputs = [ 41 fastdtw 42 numpy
+5 -4
pkgs/development/python-modules/qiskit-ibmq-provider/default.nix
··· 40 in 41 buildPythonPackage rec { 42 pname = "qiskit-ibmq-provider"; 43 - version = "0.18.3"; 44 45 disabled = pythonOlder "3.6"; 46 ··· 48 owner = "Qiskit"; 49 repo = pname; 50 rev = version; 51 - sha256 = "1n1w1lnq2xw94hhhn6kdvw8dqlxk5fxwpm8ng31gxbp1s3qgni17"; 52 }; 53 54 propagatedBuildInputs = [ ··· 58 requests 59 requests_ntlm 60 websocket-client 61 ] ++ lib.optionals withVisualization visualizationPackages; 62 63 postPatch = '' ··· 72 pproxy 73 qiskit-aer 74 vcrpy 75 - websockets 76 ] ++ lib.optionals (!withVisualization) visualizationPackages; 77 78 pythonImportsCheck = [ "qiskit.providers.ibmq" ]; 79 - # These disabled tests require internet connection, aren't skipped elsewhere 80 disabledTests = [ 81 "test_old_api_url" 82 "test_non_auth_url" 83 "test_non_auth_url_with_hub"
··· 40 in 41 buildPythonPackage rec { 42 pname = "qiskit-ibmq-provider"; 43 + version = "0.19.0"; 44 45 disabled = pythonOlder "3.6"; 46 ··· 48 owner = "Qiskit"; 49 repo = pname; 50 rev = version; 51 + sha256 = "sha256-ODu8OgGpzlMjRX7ebMu4DXKj6jUyohCq4Hb8aV5eWIU="; 52 }; 53 54 propagatedBuildInputs = [ ··· 58 requests 59 requests_ntlm 60 websocket-client 61 + websockets 62 ] ++ lib.optionals withVisualization visualizationPackages; 63 64 postPatch = '' ··· 73 pproxy 74 qiskit-aer 75 vcrpy 76 ] ++ lib.optionals (!withVisualization) visualizationPackages; 77 78 pythonImportsCheck = [ "qiskit.providers.ibmq" ]; 79 disabledTests = [ 80 + "test_coder_operators" # fails for some reason on nixos-21.05+ 81 + # These disabled tests require internet connection, aren't skipped elsewhere 82 "test_old_api_url" 83 "test_non_auth_url" 84 "test_non_auth_url_with_hub"
+4 -4
pkgs/development/python-modules/qiskit-nature/default.nix
··· 21 22 buildPythonPackage rec { 23 pname = "qiskit-nature"; 24 - version = "0.3.1"; 25 26 disabled = pythonOlder "3.6"; 27 28 src = fetchFromGitHub { 29 - owner = "qiskit"; 30 repo = pname; 31 rev = version; 32 - sha256 = "sha256-EkYppEOQGmRIxKC4ArXZb0b+p1gPGnP6AU8LbEbOpPo="; 33 }; 34 35 propagatedBuildInputs = [ ··· 56 ]; 57 58 disabledTests = [ 59 - "test_two_qubit_reduction" # unsure of failure reason. Might be related to recent cvxpy update? 60 ]; 61 62 meta = with lib; {
··· 21 22 buildPythonPackage rec { 23 pname = "qiskit-nature"; 24 + version = "0.3.2"; 25 26 disabled = pythonOlder "3.6"; 27 28 src = fetchFromGitHub { 29 + owner = "Qiskit"; 30 repo = pname; 31 rev = version; 32 + sha256 = "sha256-BXUVRZ8X3OJiRexNXZsnvp+Yh8ARNYohYH49/IYFYM0="; 33 }; 34 35 propagatedBuildInputs = [ ··· 56 ]; 57 58 disabledTests = [ 59 + "test_two_qubit_reduction" # failure cause unclear 60 ]; 61 62 meta = with lib; {
+20 -14
pkgs/development/python-modules/qiskit-terra/default.nix
··· 2 , pythonOlder 3 , buildPythonPackage 4 , fetchFromGitHub 5 # Python requirements 6 - , cython 7 , dill 8 , numpy 9 , networkx ··· 14 , retworkx 15 , scipy 16 , scikit-quant ? null 17 , stevedore 18 , symengine 19 , sympy ··· 54 55 buildPythonPackage rec { 56 pname = "qiskit-terra"; 57 - version = "0.19.2"; 58 59 - disabled = pythonOlder "3.6"; 60 61 src = fetchFromGitHub { 62 owner = "qiskit"; 63 repo = pname; 64 rev = version; 65 - sha256 = "sha256-P2QTdt1H9I5T/ONNoo7XEVnoHweOdq3p2NH3l3/yAn4="; 66 }; 67 68 - nativeBuildInputs = [ cython ]; 69 70 propagatedBuildInputs = [ 71 dill ··· 96 97 pythonImportsCheck = [ 98 "qiskit" 99 - "qiskit.transpiler.passes.routing.cython.stochastic_swap.swap_trial" 100 ]; 101 102 disabledTestPaths = [ ··· 109 ]; 110 pytestFlagsArray = [ "--durations=10" ]; 111 disabledTests = [ 112 - "TestUnitarySynthesisPlugin" # uses unittest mocks for transpiler.run(), seems incompatible somehow w/ pytest infrastructure 113 "test_copy" # assertNotIn doesn't seem to work as expected w/ pytest vs unittest 114 115 # Flaky tests ··· 153 "test_two_qubit_weyl_decomposition_ab0" 154 "test_sample_counts_memory_superposition" 155 "test_piecewise_polynomial_function" 156 - "test_vqe_qasm" 157 "test_piecewise_chebyshev_mutability" 158 "test_bit_conditional_no_cregbundle" 159 "test_gradient_wrapper2" 160 "test_two_qubit_weyl_decomposition_abmb" 161 "test_two_qubit_weyl_decomposition_abb" 162 - "test_two_qubit_weyl_decomposition_aac" 163 - "test_aqc" 164 - "test_gradient" 165 - "test_piecewise_polynomial_rotations_mutability" 166 - "test_confidence_intervals_1" 167 - "test_trotter_from_bound" 168 ]; 169 170 # Moves tests to $PACKAGEDIR/test. They can't be run from /build because of finding
··· 2 , pythonOlder 3 , buildPythonPackage 4 , fetchFromGitHub 5 + , rustPlatform 6 # Python requirements 7 , dill 8 , numpy 9 , networkx ··· 14 , retworkx 15 , scipy 16 , scikit-quant ? null 17 + , setuptools-rust 18 , stevedore 19 , symengine 20 , sympy ··· 55 56 buildPythonPackage rec { 57 pname = "qiskit-terra"; 58 + version = "0.20.0"; 59 60 + disabled = pythonOlder "3.7"; 61 62 src = fetchFromGitHub { 63 owner = "qiskit"; 64 repo = pname; 65 rev = version; 66 + sha256 = "sha256-/t87IgazpJlfd8NT2Pkn5b6/Ut104DcJEFCubQ/bBiw="; 67 }; 68 69 + nativeBuildInputs = [ setuptools-rust ] ++ (with rustPlatform; [ rust.rustc rust.cargo cargoSetupHook ]); 70 + 71 + cargoDeps = rustPlatform.fetchCargoTarball { 72 + inherit src; 73 + name = "${pname}-${version}"; 74 + sha256 = "sha256-tNiBXn32g1PTuTmKNXSac+4PLSc1Ao9n+oAMfvVYR30="; 75 + }; 76 77 propagatedBuildInputs = [ 78 dill ··· 103 104 pythonImportsCheck = [ 105 "qiskit" 106 + "qiskit.pulse" 107 ]; 108 109 disabledTestPaths = [ ··· 116 ]; 117 pytestFlagsArray = [ "--durations=10" ]; 118 disabledTests = [ 119 + "TestUnitarySynthesisPlugin" # use unittest mocks for transpiler.run(), seems incompatible somehow w/ pytest infrastructure 120 + # matplotlib tests seems to fail non-deterministically 121 + "TestMatplotlibDrawer" 122 + "TestGraphMatplotlibDrawer" 123 "test_copy" # assertNotIn doesn't seem to work as expected w/ pytest vs unittest 124 125 # Flaky tests ··· 163 "test_two_qubit_weyl_decomposition_ab0" 164 "test_sample_counts_memory_superposition" 165 "test_piecewise_polynomial_function" 166 "test_piecewise_chebyshev_mutability" 167 "test_bit_conditional_no_cregbundle" 168 "test_gradient_wrapper2" 169 "test_two_qubit_weyl_decomposition_abmb" 170 "test_two_qubit_weyl_decomposition_abb" 171 + "test_vqe_qasm" 172 + "test_dag_from_networkx" 173 + "test_defaults_to_dict_46" 174 ]; 175 176 # Moves tests to $PACKAGEDIR/test. They can't be run from /build because of finding
+3 -3
pkgs/development/python-modules/qiskit/default.nix
··· 28 buildPythonPackage rec { 29 pname = "qiskit"; 30 # NOTE: This version denotes a specific set of subpackages. See https://qiskit.org/documentation/release_notes.html#version-history 31 - version = "0.34.2"; 32 33 disabled = pythonOlder "3.6"; 34 35 src = fetchFromGitHub { 36 - owner = "qiskit"; 37 repo = "qiskit"; 38 rev = version; 39 - sha256 = "sha256-weL65IQs6vbjJiPJdaizU0ST6u9qDYb0LhTwC6yAdhY="; 40 }; 41 42 propagatedBuildInputs = [
··· 28 buildPythonPackage rec { 29 pname = "qiskit"; 30 # NOTE: This version denotes a specific set of subpackages. See https://qiskit.org/documentation/release_notes.html#version-history 31 + version = "0.36.0"; 32 33 disabled = pythonOlder "3.6"; 34 35 src = fetchFromGitHub { 36 + owner = "Qiskit"; 37 repo = "qiskit"; 38 rev = version; 39 + sha256 = "sha256-zTdvROru56/HNpoHKSVe3pQZeDSMFmaTCUAr1FOaE5A="; 40 }; 41 42 propagatedBuildInputs = [
-2
pkgs/os-specific/linux/libbpf/default.nix
··· 8 , nixosTests 9 }: 10 11 - with builtins; 12 - 13 stdenv.mkDerivation rec { 14 pname = "libbpf"; 15 version = "0.7.0";
··· 8 , nixosTests 9 }: 10 11 stdenv.mkDerivation rec { 12 pname = "libbpf"; 13 version = "0.7.0";
+2 -2
pkgs/os-specific/linux/rasdaemon/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "rasdaemon"; 10 - version = "0.6.7"; 11 12 src = fetchFromGitHub { 13 owner = "mchehab"; 14 repo = "rasdaemon"; 15 rev = "v${version}"; 16 - sha256 = "sha256-vyUDwqDe+HD4mka6smdQuVSM5U9uMv/TrfHkyqVJMIo="; 17 }; 18 19 nativeBuildInputs = [ autoreconfHook ];
··· 7 8 stdenv.mkDerivation rec { 9 pname = "rasdaemon"; 10 + version = "0.6.8"; 11 12 src = fetchFromGitHub { 13 owner = "mchehab"; 14 repo = "rasdaemon"; 15 rev = "v${version}"; 16 + sha256 = "sha256-gcwoc9lIJyqUiCSAHf1U8geLG58CxzjMFYFl8moaA2Q="; 17 }; 18 19 nativeBuildInputs = [ autoreconfHook ];
+3 -3
pkgs/servers/soft-serve/default.nix
··· 2 3 buildGoModule rec { 4 pname = "soft-serve"; 5 - version = "0.2.3"; 6 7 src = fetchFromGitHub { 8 owner = "charmbracelet"; 9 repo = "soft-serve"; 10 rev = "v${version}"; 11 - sha256 = "sha256-IaSXkbOBuvC7BhM+rGGYMcvk6jjKVDHH+lSs3y2UM40="; 12 }; 13 14 - vendorSha256 = "sha256-m5xwxs6XvmPffDX9dkkEG0/LdlDDm6Eq9CC0tVdauVI="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "soft-serve"; 5 + version = "0.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "charmbracelet"; 9 repo = "soft-serve"; 10 rev = "v${version}"; 11 + sha256 = "sha256-FtWlE2CmUx9ric4yFItj7lc57259/BVINyUhSuBNapo="; 12 }; 13 14 + vendorSha256 = "sha256-MwbtrtfvQ1HimLjUCmk8Twr4tpfP4eFBUlDP15IZKto="; 15 16 doCheck = false; 17
+3 -3
pkgs/servers/web-apps/discourse/default.nix
··· 11 }@args: 12 13 let 14 - version = "2.9.0.beta3"; 15 16 src = fetchFromGitHub { 17 owner = "discourse"; 18 repo = "discourse"; 19 rev = "v${version}"; 20 - sha256 = "sha256-+VYHGkISY4PFScUzk6eJ7eN9cPTjNEww/kusKcufMI0="; 21 }; 22 23 runtimeDeps = [ ··· 161 162 yarnOfflineCache = fetchYarnDeps { 163 yarnLock = src + "/app/assets/javascripts/yarn.lock"; 164 - sha256 = "0xx5gncvb2mwpwwbgi4y320ji143i38vmz946xjcx5z3jxxjkymz"; 165 }; 166 167 assets = stdenv.mkDerivation {
··· 11 }@args: 12 13 let 14 + version = "2.9.0.beta4"; 15 16 src = fetchFromGitHub { 17 owner = "discourse"; 18 repo = "discourse"; 19 rev = "v${version}"; 20 + sha256 = "sha256-DpUEBGLgjcroVzdDG8/nGvC+ym19ZkGa7qvHKZZ1mH4="; 21 }; 22 23 runtimeDeps = [ ··· 161 162 yarnOfflineCache = fetchYarnDeps { 163 yarnLock = src + "/app/assets/javascripts/yarn.lock"; 164 + sha256 = "1l4nfc14cm42lkilsawfhdcnv1ln7m7bpan9a804abv4hwrs3f52"; 165 }; 166 167 assets = stdenv.mkDerivation {
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-assign"; 8 - rev = "d8d2dc950a0512cc53885afbd1da26ea38fdf1e1"; 9 - sha256 = "sha256-FRq/zL+Hiu/Pd/8HDOmFW8Uoovw9so1gKbM4by3jSYg="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-docs";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-assign"; 8 + rev = "7a854fe5046783bcff6cc24fca818056e1b9414a"; 9 + sha256 = "sha256-SGGwj0V4mTXD33tLnH76tQD/f6IvDbacq23XbaRdLsI="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-docs";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-calendar"; 9 - rev = "c44d348c7739f08fe026f1d67dbd902cb2f4d590"; 10 - sha256 = "sha256-+876F3/nGhqtwQn2D/v3WzqchemsocnneiYYFmjqGGo="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-calendar";
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-calendar"; 9 + rev = "eb8bc3e864c6f735fa5a005e854f8c37411b6288"; 10 + sha256 = "sha256-fc3oQj2NqaTfmokJUryd2oBd/eVAcNOMMT0ZT45bU28="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-calendar";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-canned-replies/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-canned-replies"; 8 - rev = "f9d1d87e352c0d1c41c1a8e4ef26b7766e39d2f1"; 9 - sha256 = "sha256-luFPwcnH6faTJV7Bhx9nnaxkK5PHI9vqhHrFO0m49mg="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-canned-replies";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-canned-replies"; 8 + rev = "18af3367d9eda8842e8ff0de96c90aa2f0bdb0a3"; 9 + sha256 = "sha256-v8QOR0/9RUJ1zFmzhKYe/GEev3Jl4AlXWkQyuquyuJY="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-canned-replies";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-chat-integration"; 8 - rev = "0c367e19ca4c06ace067f1268c1a1a64d8da4253"; 9 - sha256 = "sha256-X7bkAjINzKTrWcVd9MPl51Vy6pOWp378ACJJTSihQRc="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-chat-integration";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-chat-integration"; 8 + rev = "eaa7de8c2b659d107c2b16ac0d469592aff79d7c"; 9 + sha256 = "sha256-7anXDbltMBM22dBnE5FFwNk7IJEUFZgDzR4Q/AYn6ng="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-chat-integration";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-checklist/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-checklist"; 8 - rev = "c4f3df0d825082eeaaa3fd9fceba0258080aa6fa"; 9 - sha256 = "sha256-VGKDpu8tohMgSjMoTzhVnPLHMfLsXOejXL3bmQQ3jWM="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-checklist";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-checklist"; 8 + rev = "68941e370e132c17fc2aa21ac40c033df72c9771"; 9 + sha256 = "sha256-jJM/01fKxc1RBcSPt9/KDxMkBMH2AOp9dINxSneNhAs="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-checklist";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-data-explorer"; 8 - rev = "e7c19ac107dcd37618c7ac7b98530e99c7fe31db"; 9 - sha256 = "sha256-w7IzniVlSArmR58Xk9U4MLolV61w/7t1C0nMqERM9J4="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-data-explorer";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-data-explorer"; 8 + rev = "baaac7ce671e716559329ae756988cc395d7079e"; 9 + sha256 = "sha256-bUCRfbKXdNbiJnU3xPMhG3s8kH7wQQoS2kV7ScHGOMQ="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-data-explorer";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-docs"; 8 - rev = "e517e69c09479654c197b1d620e6e7a5e69edca7"; 9 - sha256 = "sha256-fbkuFWyY25V3B32a7NYtTcOlBot18JZYRth6ainHDQo="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-docs";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-docs"; 8 + rev = "72b2e87e84221588bc2ff08961a492044f1f8237"; 9 + sha256 = "sha256-moR4TJYffh6JwC7oxeS4+Cyngi88Ht2eTbSEJJ4JKdY="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-docs";
+1 -1
pkgs/servers/web-apps/discourse/plugins/discourse-github/Gemfile.lock
··· 30 octokit (4.22.0) 31 faraday (>= 0.9) 32 sawyer (~> 0.8.0, >= 0.5.3) 33 - public_suffix (4.0.6) 34 ruby2_keywords (0.0.5) 35 sawyer (0.8.2) 36 addressable (>= 2.3.5)
··· 30 octokit (4.22.0) 31 faraday (>= 0.9) 32 sawyer (~> 0.8.0, >= 0.5.3) 33 + public_suffix (4.0.7) 34 ruby2_keywords (0.0.5) 35 sawyer (0.8.2) 36 addressable (>= 2.3.5)
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-github"; 9 - rev = "810105186dbe8441852e2df9a9fc2ae8b8516ec6"; 10 - sha256 = "sha256-96sqnvtEmm7sxFPAk6iDiYm7XChaQV+6HXZt/m5BtsI="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-github";
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-github"; 9 + rev = "36cbacdd32916435391b4700c024074da3bcbe74"; 10 + sha256 = "sha256-R4Kp7NFMIXYDcAZlOUdhNdN/mmQMgXlLFolzo2OZahw="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-github";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-github/gemset.nix
··· 148 platforms = []; 149 source = { 150 remotes = ["https://rubygems.org"]; 151 - sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9"; 152 type = "gem"; 153 }; 154 - version = "4.0.6"; 155 }; 156 ruby2_keywords = { 157 groups = ["default"];
··· 148 platforms = []; 149 source = { 150 remotes = ["https://rubygems.org"]; 151 + sha256 = "1f3knlwfwm05sfbaihrxm4g772b79032q14c16q4b38z8bi63qcb"; 152 type = "gem"; 153 }; 154 + version = "4.0.7"; 155 }; 156 ruby2_keywords = { 157 groups = ["default"];
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-math/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-math"; 8 - rev = "447c4811ea44d006da98dcbb6dfde142ada53567"; 9 - sha256 = "sha256-iq3wWhYhOnh+QgChEsSIlRzDmD8kXbjNerVGfuNF7uY="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-math";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-math"; 8 + rev = "b875a21b4d5225b61cb525531d30eaf852db6237"; 9 + sha256 = "sha256-UKba9ZaVjIxOqUYdl00Z2sLt3Y+exBX7MJax8EzXB1Q="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-math";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-openid-connect"; 9 - rev = "dfcdc38d77aab4010cfe032cdd4155b4ae60ed14"; 10 - sha256 = "sha256-I2cuyhA4jhhz+pJ5692/lRj6YRViP//HsoZOZjtu/e4="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-openid-connect";
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-openid-connect"; 9 + rev = "e897702139b9c0dca40b9385427ba8bad0e1eae9"; 10 + sha256 = "sha256-miosXf4to60BqGsbXYEL37G38uVHrz2/2Pizn0Rlp2o="; 11 }; 12 meta = with lib; { 13 homepage = "https://github.com/discourse/discourse-openid-connect";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-prometheus"; 9 - rev = "834f8683dfae475483c50bdeec979a5fa4a1cf04"; 10 - sha256 = "sha256-M7NnXUib/iKxQT+UTqicmrZONR/Z+oXl46BNgYf1SQM="; 11 }; 12 13 patches = [
··· 6 src = fetchFromGitHub { 7 owner = "discourse"; 8 repo = "discourse-prometheus"; 9 + rev = "43536e4a4977718972a673dc2475ae07df9a0a45"; 10 + sha256 = "sha256-7sQldPLY7YW/sr4WBHWxJVvhvRK0LwO3+52HAIJFvY4="; 11 }; 12 13 patches = [
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-saved-searches"; 8 - rev = "a7eafe288a2f93aa8cc7cf59d8173adc70c8f48a"; 9 - sha256 = "sha256-Zli+tzNxLIwp5sZome+pXqvpsvqM/kXRbe73QtH0rTc="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-saved-searches";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-saved-searches"; 8 + rev = "f008809ee3bf3a8a5c11daff0807d59ab4336a0c"; 9 + sha256 = "sha256-/OyFL/9fLdVpsFQIlnjQ6ser6hdEs4X434nAaqKCTUE="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-saved-searches";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-solved"; 8 - rev = "9aba2bd6b7efbea3e46158fd0b1ce96a975379d7"; 9 - sha256 = "sha256-RmYsDCDuVxXX91haljP6Jbx3s4Nl2RV6UU3PBQ/Xi7Y="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-solved";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-solved"; 8 + rev = "17ba805a06ddfc27c6435eb20c0f8466f1708be8"; 9 + sha256 = "sha256-G48c1khRVnCPXA8ujpDmEzL10uLC9e2sYVLVEXWIk0s="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-solved";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-spoiler-alert"; 8 - rev = "7382d74af57f4476004014598135aec530b0342f"; 9 - sha256 = "sha256-YyCG1bAfjJ9/itHlsZTBQgkRjgPKNKPzJopnP/Z7/NA="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-spoiler-alert";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-spoiler-alert"; 8 + rev = "4a07519cf9d7ac713f5e21ba770adb127524a22d"; 9 + sha256 = "sha256-pMTXdjqI4GrLNfZMbyPdeW+Jwieh6I4O/pT2Yyf4ltA="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-spoiler-alert";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-voting"; 8 - rev = "2de1fe5df1a5c25ad1e0e31e8d28adca315d9092"; 9 - sha256 = "sha256-XxrRPIc9F78wHF6p1qqUZhkPqKWSebqGZn9P5lNTDeo="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-voting";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-voting"; 8 + rev = "1da667721269ca01ef53c35ec0470486b490e72c"; 9 + sha256 = "sha256-VCMv6YWHY24v9KyO4q0YSSYK+mszOVqP46slOh8okvY="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-voting";
+2 -2
pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-yearly-review"; 8 - rev = "f2224b38c96c8772ce6cc64514b8a3edaa42ebb9"; 9 - sha256 = "sha256-dJtQXaLsADXcsADzExGPj3L2x4zlNfsQCNBk17W0a5A="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-yearly-review";
··· 5 src = fetchFromGitHub { 6 owner = "discourse"; 7 repo = "discourse-yearly-review"; 8 + rev = "ef4855f6afa16ef86013bba7da8e50a63e11b493"; 9 + sha256 = "sha256-IVKGysAKr+lKV1CO1JJIMLtzcvpK8joWjx8Bfy+dx8Y="; 10 }; 11 meta = with lib; { 12 homepage = "https://github.com/discourse/discourse-yearly-review";
+1 -3
pkgs/servers/web-apps/discourse/rubyEnv/Gemfile
··· 31 32 gem 'json' 33 34 - # TODO: At the moment Discourse does not work with Sprockets 4, we would need to correct internals 35 - # This is a desired upgrade we should get to. 36 - gem 'sprockets', '3.7.2' 37 38 # this will eventually be added to rails, 39 # allows us to precompile all our templates in the unicorn master
··· 31 32 gem 'json' 33 34 + gem 'sprockets' 35 36 # this will eventually be added to rails, 37 # allows us to precompile all our templates in the unicorn master
+23 -23
pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock
··· 92 chunky_png (1.4.0) 93 coderay (1.1.3) 94 colored2 (3.1.2) 95 - concurrent-ruby (1.1.9) 96 connection_pool (2.2.5) 97 cose (1.2.0) 98 cbor (~> 0.5.9) ··· 129 sprockets (>= 3.3, < 4.1) 130 ember-source (2.18.2) 131 erubi (1.10.0) 132 - excon (0.92.1) 133 execjs (2.8.1) 134 exifr (1.3.9) 135 - fabrication (2.27.0) 136 faker (2.20.0) 137 i18n (>= 1.8.11, < 2) 138 fakeweb (1.3.0) ··· 194 json (2.6.1) 195 json-schema (2.8.1) 196 addressable (>= 2.4) 197 - json_schemer (0.2.19) 198 ecma-re-validator (~> 0.3) 199 hana (~> 1.3) 200 regexp_parser (~> 2.0) ··· 206 rb-fsevent (~> 0.10, >= 0.10.3) 207 rb-inotify (~> 0.9, >= 0.9.10) 208 literate_randomizer (0.4.0) 209 - lograge (0.11.2) 210 actionpack (>= 4) 211 activesupport (>= 4) 212 railties (>= 4) ··· 215 logstash-logger (0.26.1) 216 logstash-event (~> 1.2) 217 logster (2.11.0) 218 - loofah (2.15.0) 219 crass (~> 1.0.2) 220 nokogiri (>= 1.5.9) 221 lru_redux (1.1.0) ··· 236 ffi (~> 1.9) 237 minitest (5.15.0) 238 mocha (1.13.0) 239 - msgpack (1.4.5) 240 multi_json (1.15.0) 241 multi_xml (0.6.0) 242 multipart-post (2.1.1) 243 mustache (1.1.1) 244 nio4r (2.5.8) 245 - nokogiri (1.13.3) 246 mini_portile2 (~> 2.8.0) 247 racc (~> 1.4) 248 oauth (0.5.8) ··· 280 openssl-signature_algorithm (1.1.1) 281 openssl (~> 2.0) 282 optimist (3.0.1) 283 - parallel (1.22.0) 284 - parallel_tests (3.7.3) 285 parallel 286 - parser (3.1.1.0) 287 ast (~> 2.4.1) 288 - pg (1.3.4) 289 progress (3.6.0) 290 pry (0.13.1) 291 coderay (~> 1.1) ··· 295 pry (~> 0.13.0) 296 pry-rails (0.3.9) 297 pry (>= 0.10.4) 298 - public_suffix (4.0.6) 299 - puma (5.6.2) 300 nio4r (~> 2.0) 301 r2 (0.2.7) 302 racc (1.6.0) ··· 339 redis (4.5.1) 340 redis-namespace (1.8.2) 341 redis (>= 3.0.4) 342 - regexp_parser (2.2.1) 343 request_store (1.5.1) 344 rack (>= 1.4) 345 rexml (3.2.5) ··· 361 rspec-html-matchers (0.9.4) 362 nokogiri (~> 1) 363 rspec (>= 3.0.0.a, < 4) 364 - rspec-mocks (3.11.0) 365 diff-lcs (>= 1.2.0, < 2.0) 366 rspec-support (~> 3.11.0) 367 rspec-rails (5.1.1) ··· 380 json-schema (~> 2.2) 381 railties (>= 3.1, < 7.1) 382 rtlit (0.0.5) 383 - rubocop (1.26.0) 384 parallel (~> 1.10) 385 parser (>= 3.1.0.0) 386 rainbow (>= 2.2.2, < 4.0) ··· 389 rubocop-ast (>= 1.16.0, < 2.0) 390 ruby-progressbar (~> 1.7) 391 unicode-display_width (>= 1.4.0, < 3.0) 392 - rubocop-ast (1.16.0) 393 parser (>= 3.1.1.0) 394 rubocop-discourse (2.5.0) 395 rubocop (>= 1.1.0) ··· 430 simplecov_json_formatter (~> 0.1) 431 simplecov-html (0.12.3) 432 simplecov_json_formatter (0.1.4) 433 - sprockets (3.7.2) 434 concurrent-ruby (~> 1.0) 435 rack (> 1, < 3) 436 sprockets-rails (3.4.2) ··· 439 sprockets (>= 3.0.0) 440 sshkey (2.0.0) 441 stackprof (0.2.19) 442 - test-prof (1.0.7) 443 thor (1.2.1) 444 tilt (2.0.10) 445 tzinfo (2.0.4) ··· 453 unicorn (6.1.0) 454 kgio (~> 2.6) 455 raindrops (~> 0.7) 456 - uniform_notifier (1.15.0) 457 uri_template (0.7.0) 458 webmock (3.14.0) 459 addressable (>= 2.8.0) ··· 583 shoulda-matchers 584 sidekiq 585 simplecov 586 - sprockets (= 3.7.2) 587 sprockets-rails 588 sshkey 589 stackprof ··· 598 yaml-lint 599 600 BUNDLED WITH 601 - 2.3.5
··· 92 chunky_png (1.4.0) 93 coderay (1.1.3) 94 colored2 (3.1.2) 95 + concurrent-ruby (1.1.10) 96 connection_pool (2.2.5) 97 cose (1.2.0) 98 cbor (~> 0.5.9) ··· 129 sprockets (>= 3.3, < 4.1) 130 ember-source (2.18.2) 131 erubi (1.10.0) 132 + excon (0.92.2) 133 execjs (2.8.1) 134 exifr (1.3.9) 135 + fabrication (2.28.0) 136 faker (2.20.0) 137 i18n (>= 1.8.11, < 2) 138 fakeweb (1.3.0) ··· 194 json (2.6.1) 195 json-schema (2.8.1) 196 addressable (>= 2.4) 197 + json_schemer (0.2.20) 198 ecma-re-validator (~> 0.3) 199 hana (~> 1.3) 200 regexp_parser (~> 2.0) ··· 206 rb-fsevent (~> 0.10, >= 0.10.3) 207 rb-inotify (~> 0.9, >= 0.9.10) 208 literate_randomizer (0.4.0) 209 + lograge (0.12.0) 210 actionpack (>= 4) 211 activesupport (>= 4) 212 railties (>= 4) ··· 215 logstash-logger (0.26.1) 216 logstash-event (~> 1.2) 217 logster (2.11.0) 218 + loofah (2.16.0) 219 crass (~> 1.0.2) 220 nokogiri (>= 1.5.9) 221 lru_redux (1.1.0) ··· 236 ffi (~> 1.9) 237 minitest (5.15.0) 238 mocha (1.13.0) 239 + msgpack (1.5.1) 240 multi_json (1.15.0) 241 multi_xml (0.6.0) 242 multipart-post (2.1.1) 243 mustache (1.1.1) 244 nio4r (2.5.8) 245 + nokogiri (1.13.4) 246 mini_portile2 (~> 2.8.0) 247 racc (~> 1.4) 248 oauth (0.5.8) ··· 280 openssl-signature_algorithm (1.1.1) 281 openssl (~> 2.0) 282 optimist (3.0.1) 283 + parallel (1.22.1) 284 + parallel_tests (3.8.1) 285 parallel 286 + parser (3.1.2.0) 287 ast (~> 2.4.1) 288 + pg (1.3.5) 289 progress (3.6.0) 290 pry (0.13.1) 291 coderay (~> 1.1) ··· 295 pry (~> 0.13.0) 296 pry-rails (0.3.9) 297 pry (>= 0.10.4) 298 + public_suffix (4.0.7) 299 + puma (5.6.4) 300 nio4r (~> 2.0) 301 r2 (0.2.7) 302 racc (1.6.0) ··· 339 redis (4.5.1) 340 redis-namespace (1.8.2) 341 redis (>= 3.0.4) 342 + regexp_parser (2.3.0) 343 request_store (1.5.1) 344 rack (>= 1.4) 345 rexml (3.2.5) ··· 361 rspec-html-matchers (0.9.4) 362 nokogiri (~> 1) 363 rspec (>= 3.0.0.a, < 4) 364 + rspec-mocks (3.11.1) 365 diff-lcs (>= 1.2.0, < 2.0) 366 rspec-support (~> 3.11.0) 367 rspec-rails (5.1.1) ··· 380 json-schema (~> 2.2) 381 railties (>= 3.1, < 7.1) 382 rtlit (0.0.5) 383 + rubocop (1.27.0) 384 parallel (~> 1.10) 385 parser (>= 3.1.0.0) 386 rainbow (>= 2.2.2, < 4.0) ··· 389 rubocop-ast (>= 1.16.0, < 2.0) 390 ruby-progressbar (~> 1.7) 391 unicode-display_width (>= 1.4.0, < 3.0) 392 + rubocop-ast (1.17.0) 393 parser (>= 3.1.1.0) 394 rubocop-discourse (2.5.0) 395 rubocop (>= 1.1.0) ··· 430 simplecov_json_formatter (~> 0.1) 431 simplecov-html (0.12.3) 432 simplecov_json_formatter (0.1.4) 433 + sprockets (4.0.3) 434 concurrent-ruby (~> 1.0) 435 rack (> 1, < 3) 436 sprockets-rails (3.4.2) ··· 439 sprockets (>= 3.0.0) 440 sshkey (2.0.0) 441 stackprof (0.2.19) 442 + test-prof (1.0.8) 443 thor (1.2.1) 444 tilt (2.0.10) 445 tzinfo (2.0.4) ··· 453 unicorn (6.1.0) 454 kgio (~> 2.6) 455 raindrops (~> 0.7) 456 + uniform_notifier (1.16.0) 457 uri_template (0.7.0) 458 webmock (3.14.0) 459 addressable (>= 2.8.0) ··· 583 shoulda-matchers 584 sidekiq 585 simplecov 586 + sprockets 587 sprockets-rails 588 sshkey 589 stackprof ··· 598 yaml-lint 599 600 BUNDLED WITH 601 + 2.3.9
+42 -42
pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix
··· 351 platforms = []; 352 source = { 353 remotes = ["https://rubygems.org"]; 354 - sha256 = "0nwad3211p7yv9sda31jmbyw6sdafzmdi2i2niaz6f0wk5nq9h0f"; 355 type = "gem"; 356 }; 357 - version = "1.1.9"; 358 }; 359 connection_pool = { 360 groups = ["default"]; ··· 573 platforms = []; 574 source = { 575 remotes = ["https://rubygems.org"]; 576 - sha256 = "12d0xkb2qkydygs4py2z2m7vzx0hygx2dnyk98ja8lkj2k348925"; 577 type = "gem"; 578 }; 579 - version = "0.92.1"; 580 }; 581 execjs = { 582 groups = ["assets" "default"]; ··· 603 platforms = []; 604 source = { 605 remotes = ["https://rubygems.org"]; 606 - sha256 = "1zmak7fgis1nk9j157g2rjzxrw9prr3jzlxap9vix3xm0gkihr53"; 607 type = "gem"; 608 }; 609 - version = "2.27.0"; 610 }; 611 faker = { 612 dependencies = ["i18n"]; ··· 1012 platforms = []; 1013 source = { 1014 remotes = ["https://rubygems.org"]; 1015 - sha256 = "03lzdfwpmywxc6l5apnhfjwl8swf9jz2ajwjgq38am0q60ggjrcf"; 1016 type = "gem"; 1017 }; 1018 - version = "0.2.19"; 1019 }; 1020 jwt = { 1021 groups = ["default"]; ··· 1080 platforms = []; 1081 source = { 1082 remotes = ["https://rubygems.org"]; 1083 - sha256 = "1vrjm4yqn5l6q5gsl72fmk95fl6j9z1a05gzbrwmsm3gp1a1bgac"; 1084 type = "gem"; 1085 }; 1086 - version = "0.11.2"; 1087 }; 1088 logstash-event = { 1089 groups = ["default"]; ··· 1122 platforms = []; 1123 source = { 1124 remotes = ["https://rubygems.org"]; 1125 - sha256 = "1yp1h1j7pdkqvnx8jl6bkzlajav3h5mhqzihgs9p6y3c8927mw23"; 1126 type = "gem"; 1127 }; 1128 - version = "2.15.0"; 1129 }; 1130 lru_redux = { 1131 groups = ["default"]; ··· 1303 }]; 1304 source = { 1305 remotes = ["https://rubygems.org"]; 1306 - sha256 = "1cshgsx3hmpgx639xyqjqa2q3hgrhlyr9rpwhsglsx529alqq125"; 1307 type = "gem"; 1308 }; 1309 - version = "1.4.5"; 1310 }; 1311 multi_json = { 1312 groups = ["default"]; ··· 1364 platforms = []; 1365 source = { 1366 remotes = ["https://rubygems.org"]; 1367 - sha256 = "1p6b3q411h2mw4dsvhjrp1hh66hha5cm69fqg85vn2lizz71n6xz"; 1368 type = "gem"; 1369 }; 1370 - version = "1.13.3"; 1371 }; 1372 oauth = { 1373 groups = ["default"]; ··· 1518 platforms = []; 1519 source = { 1520 remotes = ["https://rubygems.org"]; 1521 - sha256 = "1bncdqm62l1q8flw10gl86gcc74zm89s5vrjww73i3094jg64pam"; 1522 type = "gem"; 1523 }; 1524 - version = "1.22.0"; 1525 }; 1526 parallel_tests = { 1527 dependencies = ["parallel"]; ··· 1529 platforms = []; 1530 source = { 1531 remotes = ["https://rubygems.org"]; 1532 - sha256 = "1vsfsfd194xnzjz94ml157w61fnag8jg47b4bssc508kb3vmk20w"; 1533 type = "gem"; 1534 }; 1535 - version = "3.7.3"; 1536 }; 1537 parser = { 1538 dependencies = ["ast"]; ··· 1540 platforms = []; 1541 source = { 1542 remotes = ["https://rubygems.org"]; 1543 - sha256 = "0zaghgvva2q4jqbachg8jvpwgbg3w1jqr0d00m8rqciqznjgsw3c"; 1544 type = "gem"; 1545 }; 1546 - version = "3.1.1.0"; 1547 }; 1548 pg = { 1549 groups = ["default"]; 1550 platforms = []; 1551 source = { 1552 remotes = ["https://rubygems.org"]; 1553 - sha256 = "090c3kazlmiizp25las7dgi8wlc11s29nrs2gy3qrp1z8qikgcmb"; 1554 type = "gem"; 1555 }; 1556 - version = "1.3.4"; 1557 }; 1558 progress = { 1559 groups = ["default"]; ··· 1603 platforms = []; 1604 source = { 1605 remotes = ["https://rubygems.org"]; 1606 - sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9"; 1607 type = "gem"; 1608 }; 1609 - version = "4.0.6"; 1610 }; 1611 puma = { 1612 dependencies = ["nio4r"]; ··· 1614 platforms = []; 1615 source = { 1616 remotes = ["https://rubygems.org"]; 1617 - sha256 = "1np2myaxlk5iab1zarwgmp7zsjvm5j8ssg35ijv8b6dpvc3cjd56"; 1618 type = "gem"; 1619 }; 1620 - version = "5.6.2"; 1621 }; 1622 r2 = { 1623 groups = ["default"]; ··· 1849 platforms = []; 1850 source = { 1851 remotes = ["https://rubygems.org"]; 1852 - sha256 = "155f6cr4rrfw5bs5xd3m5kfw32qhc5fsi4nk82rhif56rc6cs0wm"; 1853 type = "gem"; 1854 }; 1855 - version = "2.2.1"; 1856 }; 1857 request_store = { 1858 dependencies = ["rack"]; ··· 1966 platforms = []; 1967 source = { 1968 remotes = ["https://rubygems.org"]; 1969 - sha256 = "0y38dc66yhnfcf4ky3k47c20xak1rax940s4a96qkjxqrniy5ys3"; 1970 type = "gem"; 1971 }; 1972 - version = "3.11.0"; 1973 }; 1974 rspec-rails = { 1975 dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; ··· 2030 platforms = []; 2031 source = { 2032 remotes = ["https://rubygems.org"]; 2033 - sha256 = "03c6v6bfqdw8vnda0if0sx7aff0iq6xnv1adyfs0bi9msgggafcr"; 2034 type = "gem"; 2035 }; 2036 - version = "1.26.0"; 2037 }; 2038 rubocop-ast = { 2039 dependencies = ["parser"]; ··· 2041 platforms = []; 2042 source = { 2043 remotes = ["https://rubygems.org"]; 2044 - sha256 = "1bd2z82ly7fix8415gvfiwzb6bjialz5rs3sr72kv1lk68rd23wv"; 2045 type = "gem"; 2046 }; 2047 - version = "1.16.0"; 2048 }; 2049 rubocop-discourse = { 2050 dependencies = ["rubocop" "rubocop-rspec"]; ··· 2226 platforms = []; 2227 source = { 2228 remotes = ["https://rubygems.org"]; 2229 - sha256 = "182jw5a0fbqah5w9jancvfmjbk88h8bxdbwnl4d3q809rpxdg8ay"; 2230 type = "gem"; 2231 }; 2232 - version = "3.7.2"; 2233 }; 2234 sprockets-rails = { 2235 dependencies = ["actionpack" "activesupport" "sprockets"]; ··· 2271 platforms = []; 2272 source = { 2273 remotes = ["https://rubygems.org"]; 2274 - sha256 = "1vg0zjfgibdcgkzb4c25v0f4v6v8mvpzvgcag194rwglmkkyrwkx"; 2275 type = "gem"; 2276 }; 2277 - version = "1.0.7"; 2278 }; 2279 thor = { 2280 groups = ["default" "development" "test"]; ··· 2371 platforms = []; 2372 source = { 2373 remotes = ["https://rubygems.org"]; 2374 - sha256 = "00dj2vsz9sq5i9wnncbiy4v5vayqbssppazzigd1ibpl60pzfxkq"; 2375 type = "gem"; 2376 }; 2377 - version = "1.15.0"; 2378 }; 2379 uri_template = { 2380 groups = ["default"];
··· 351 platforms = []; 352 source = { 353 remotes = ["https://rubygems.org"]; 354 + sha256 = "0s4fpn3mqiizpmpy2a24k4v365pv75y50292r8ajrv4i1p5b2k14"; 355 type = "gem"; 356 }; 357 + version = "1.1.10"; 358 }; 359 connection_pool = { 360 groups = ["default"]; ··· 573 platforms = []; 574 source = { 575 remotes = ["https://rubygems.org"]; 576 + sha256 = "01pcl1vx60x3f28rs6iw1lgqxycgb2yxq2p45k7b4a8liadykhba"; 577 type = "gem"; 578 }; 579 + version = "0.92.2"; 580 }; 581 execjs = { 582 groups = ["assets" "default"]; ··· 603 platforms = []; 604 source = { 605 remotes = ["https://rubygems.org"]; 606 + sha256 = "0rgbmk044akxa84z9vdl8lkmd9z4xy3na1w0vh12pz02drxd93j9"; 607 type = "gem"; 608 }; 609 + version = "2.28.0"; 610 }; 611 faker = { 612 dependencies = ["i18n"]; ··· 1012 platforms = []; 1013 source = { 1014 remotes = ["https://rubygems.org"]; 1015 + sha256 = "1ahcnfw3lchyyq7ixjfghkw709fbm8mkqsqq9yhd9in3bhzywa88"; 1016 type = "gem"; 1017 }; 1018 + version = "0.2.20"; 1019 }; 1020 jwt = { 1021 groups = ["default"]; ··· 1080 platforms = []; 1081 source = { 1082 remotes = ["https://rubygems.org"]; 1083 + sha256 = "15pjm9pa5m3mbv9xvfgfr16q4jyaznsg8y63jz9x4jqr8npw0vx3"; 1084 type = "gem"; 1085 }; 1086 + version = "0.12.0"; 1087 }; 1088 logstash-event = { 1089 groups = ["default"]; ··· 1122 platforms = []; 1123 source = { 1124 remotes = ["https://rubygems.org"]; 1125 + sha256 = "15s6z5bvhdhnqv4wg8zcz3mhbc7i4dbqskv5jvhprz33ak7682km"; 1126 type = "gem"; 1127 }; 1128 + version = "2.16.0"; 1129 }; 1130 lru_redux = { 1131 groups = ["default"]; ··· 1303 }]; 1304 source = { 1305 remotes = ["https://rubygems.org"]; 1306 + sha256 = "1i0gbypr1yxwfkaxzrk0i1wz4n6v3mw7z24k65jy3q1h5lda5xbw"; 1307 type = "gem"; 1308 }; 1309 + version = "1.5.1"; 1310 }; 1311 multi_json = { 1312 groups = ["default"]; ··· 1364 platforms = []; 1365 source = { 1366 remotes = ["https://rubygems.org"]; 1367 + sha256 = "1g43ii497cwdqhfnaxfl500bq5yfc5hfv5df1lvf6wcjnd708ihd"; 1368 type = "gem"; 1369 }; 1370 + version = "1.13.4"; 1371 }; 1372 oauth = { 1373 groups = ["default"]; ··· 1518 platforms = []; 1519 source = { 1520 remotes = ["https://rubygems.org"]; 1521 + sha256 = "07vnk6bb54k4yc06xnwck7php50l09vvlw1ga8wdz0pia461zpzb"; 1522 type = "gem"; 1523 }; 1524 + version = "1.22.1"; 1525 }; 1526 parallel_tests = { 1527 dependencies = ["parallel"]; ··· 1529 platforms = []; 1530 source = { 1531 remotes = ["https://rubygems.org"]; 1532 + sha256 = "01kzjshbim0w5ax7vcjfxvb83x2pglws7qr43x0qkd731f8w10f7"; 1533 type = "gem"; 1534 }; 1535 + version = "3.8.1"; 1536 }; 1537 parser = { 1538 dependencies = ["ast"]; ··· 1540 platforms = []; 1541 source = { 1542 remotes = ["https://rubygems.org"]; 1543 + sha256 = "0xhfghgidj8cbdnqp01f7kvnrv1f60izpkd9dhxsvpdzkfsdg97d"; 1544 type = "gem"; 1545 }; 1546 + version = "3.1.2.0"; 1547 }; 1548 pg = { 1549 groups = ["default"]; 1550 platforms = []; 1551 source = { 1552 remotes = ["https://rubygems.org"]; 1553 + sha256 = "10ryzmc3r5ja6g90a9ycsxcxsy5872xa1vf01jam0bm74zq3zmi6"; 1554 type = "gem"; 1555 }; 1556 + version = "1.3.5"; 1557 }; 1558 progress = { 1559 groups = ["default"]; ··· 1603 platforms = []; 1604 source = { 1605 remotes = ["https://rubygems.org"]; 1606 + sha256 = "1f3knlwfwm05sfbaihrxm4g772b79032q14c16q4b38z8bi63qcb"; 1607 type = "gem"; 1608 }; 1609 + version = "4.0.7"; 1610 }; 1611 puma = { 1612 dependencies = ["nio4r"]; ··· 1614 platforms = []; 1615 source = { 1616 remotes = ["https://rubygems.org"]; 1617 + sha256 = "0dgr2rybayih2naz3658mbzqwfrg9fxl80zsvhscf6b972kp3jdw"; 1618 type = "gem"; 1619 }; 1620 + version = "5.6.4"; 1621 }; 1622 r2 = { 1623 groups = ["default"]; ··· 1849 platforms = []; 1850 source = { 1851 remotes = ["https://rubygems.org"]; 1852 + sha256 = "0a6nxfq3ln1i109jx172n33s73a90l8g04h8p56bmw9phj467h9k"; 1853 type = "gem"; 1854 }; 1855 + version = "2.3.0"; 1856 }; 1857 request_store = { 1858 dependencies = ["rack"]; ··· 1966 platforms = []; 1967 source = { 1968 remotes = ["https://rubygems.org"]; 1969 + sha256 = "07vagjxdm5a6s103y8zkcnja6avpl8r196hrpiffmg7sk83dqdsm"; 1970 type = "gem"; 1971 }; 1972 + version = "3.11.1"; 1973 }; 1974 rspec-rails = { 1975 dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; ··· 2030 platforms = []; 2031 source = { 2032 remotes = ["https://rubygems.org"]; 2033 + sha256 = "00d9nzlnbxr3jqkya2b2rcahs9l22qpdk5qf3y7pws8m555l8slk"; 2034 type = "gem"; 2035 }; 2036 + version = "1.27.0"; 2037 }; 2038 rubocop-ast = { 2039 dependencies = ["parser"]; ··· 2041 platforms = []; 2042 source = { 2043 remotes = ["https://rubygems.org"]; 2044 + sha256 = "1k9izkr5rhw3zc309yjp17z7496l74j4li3zrcgpgqfnqwz695qx"; 2045 type = "gem"; 2046 }; 2047 + version = "1.17.0"; 2048 }; 2049 rubocop-discourse = { 2050 dependencies = ["rubocop" "rubocop-rspec"]; ··· 2226 platforms = []; 2227 source = { 2228 remotes = ["https://rubygems.org"]; 2229 + sha256 = "19k5cwg8gyb6lkmz4kab7c5nlplpgj64jy7vw8p5l2i2ysq5hym0"; 2230 type = "gem"; 2231 }; 2232 + version = "4.0.3"; 2233 }; 2234 sprockets-rails = { 2235 dependencies = ["actionpack" "activesupport" "sprockets"]; ··· 2271 platforms = []; 2272 source = { 2273 remotes = ["https://rubygems.org"]; 2274 + sha256 = "04yxdm2cdhwp0wsp8891f06cprp4442p3mlgpdc4pziflpfvaw05"; 2275 type = "gem"; 2276 }; 2277 + version = "1.0.8"; 2278 }; 2279 thor = { 2280 groups = ["default" "development" "test"]; ··· 2371 platforms = []; 2372 source = { 2373 remotes = ["https://rubygems.org"]; 2374 + sha256 = "1dfvqixshwvm82b9qwdidvnkavdj7s0fbdbmyd4knkl6l3j9xcwr"; 2375 type = "gem"; 2376 }; 2377 + version = "1.16.0"; 2378 }; 2379 uri_template = { 2380 groups = ["default"];
+1
pkgs/tools/X11/caffeine-ng/default.nix
··· 34 postInstall = '' 35 mkdir -p $out/share 36 cp -r share $out/ 37 # autostart file 38 cp -r $out/lib/python*/site-packages/etc $out/etc/ 39 glib-compile-schemas --strict $out/share/glib-2.0/schemas
··· 34 postInstall = '' 35 mkdir -p $out/share 36 cp -r share $out/ 37 + cp -r caffeine/assets/icons $out/share/icons 38 # autostart file 39 cp -r $out/lib/python*/site-packages/etc $out/etc/ 40 glib-compile-schemas --strict $out/share/glib-2.0/schemas
+6 -1
pkgs/tools/networking/wormhole-william/default.nix
··· 13 14 vendorSha256 = "sha256-J6iht3cagcwFekydShgaYJtkNLfEvSDqonkC7+frldM="; 15 16 - doCheck = false; 17 18 meta = with lib; { 19 homepage = "https://github.com/psanford/wormhole-william";
··· 13 14 vendorSha256 = "sha256-J6iht3cagcwFekydShgaYJtkNLfEvSDqonkC7+frldM="; 15 16 + preCheck = '' 17 + # wormhole_test.go:692: failed to establish connection 18 + substituteInPlace wormhole/wormhole_test.go \ 19 + --replace "TestWormholeDirectoryTransportSendRecvDirect" \ 20 + "SkipWormholeDirectoryTransportSendRecvDirect" 21 + ''; 22 23 meta = with lib; { 24 homepage = "https://github.com/psanford/wormhole-william";
+3 -3
pkgs/tools/security/melt/default.nix
··· 2 3 buildGoModule rec { 4 pname = "melt"; 5 - version = "0.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "charmbracelet"; 9 repo = "melt"; 10 rev = "v${version}"; 11 - sha256 = "sha256-HambmUodAwgi1/r/Nj7P7gXNK5pyBO3omMZ9ZvSK7cc=4"; 12 }; 13 14 - vendorSha256 = "sha256-1f3QBbWaTiplEp/4ihds1PwrEnoq/81TzlT46TufGFs="; 15 16 ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "melt"; 5 + version = "0.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "charmbracelet"; 9 repo = "melt"; 10 rev = "v${version}"; 11 + sha256 = "sha256-I1LNCrJo3Ihh03aTUG0QhS6ySuMqNJJGyZ8XZzClDlU="; 12 }; 13 14 + vendorSha256 = "sha256-eRFWDyXN2c5VSxYOE12sczYP3rGtzLjY9M2DQgHNFyA="; 15 16 ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; 17
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 # frozen_string_literal: true 2 source "https://rubygems.org" 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.37"
··· 1 # frozen_string_literal: true 2 source "https://rubygems.org" 3 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.38"
+10 -10
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 GIT 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: 214817055bc104e6876882ef794f1de1031edb53 4 - ref: refs/tags/6.1.37 5 specs: 6 - metasploit-framework (6.1.37) 7 actionpack (~> 6.0) 8 activerecord (~> 6.0) 9 activesupport (~> 6.0) ··· 31 metasploit-concern 32 metasploit-credential 33 metasploit-model 34 - metasploit-payloads (= 2.0.80) 35 metasploit_data_models 36 metasploit_payloads-mettle (= 1.0.18) 37 mqtt ··· 129 arel-helpers (2.14.0) 130 activerecord (>= 3.1.0, < 8) 131 aws-eventstream (1.2.0) 132 - aws-partitions (1.575.0) 133 - aws-sdk-core (3.130.0) 134 aws-eventstream (~> 1, >= 1.0.2) 135 aws-partitions (~> 1, >= 1.525.0) 136 aws-sigv4 (~> 1.1) 137 jmespath (~> 1.0) 138 - aws-sdk-ec2 (1.305.0) 139 aws-sdk-core (~> 3, >= 3.127.0) 140 aws-sigv4 (~> 1.1) 141 aws-sdk-iam (1.68.0) ··· 254 activemodel (~> 6.0) 255 activesupport (~> 6.0) 256 railties (~> 6.0) 257 - metasploit-payloads (2.0.80) 258 metasploit_data_models (5.0.5) 259 activerecord (~> 6.0) 260 activesupport (~> 6.0) ··· 308 ruby-rc4 309 ttfunk 310 pg (1.3.5) 311 - public_suffix (4.0.6) 312 puma (5.6.4) 313 nio4r (~> 2.0) 314 racc (1.6.0) ··· 388 ruby-macho (3.0.0) 389 ruby-rc4 (0.1.5) 390 ruby2_keywords (0.0.5) 391 - ruby_smb (3.0.6) 392 bindata 393 openssl-ccm 394 openssl-cmac
··· 1 GIT 2 remote: https://github.com/rapid7/metasploit-framework 3 + revision: 295599a02453423ea06e25c7f4347d88d1f2debc 4 + ref: refs/tags/6.1.38 5 specs: 6 + metasploit-framework (6.1.38) 7 actionpack (~> 6.0) 8 activerecord (~> 6.0) 9 activesupport (~> 6.0) ··· 31 metasploit-concern 32 metasploit-credential 33 metasploit-model 34 + metasploit-payloads (= 2.0.83) 35 metasploit_data_models 36 metasploit_payloads-mettle (= 1.0.18) 37 mqtt ··· 129 arel-helpers (2.14.0) 130 activerecord (>= 3.1.0, < 8) 131 aws-eventstream (1.2.0) 132 + aws-partitions (1.577.0) 133 + aws-sdk-core (3.130.1) 134 aws-eventstream (~> 1, >= 1.0.2) 135 aws-partitions (~> 1, >= 1.525.0) 136 aws-sigv4 (~> 1.1) 137 jmespath (~> 1.0) 138 + aws-sdk-ec2 (1.307.0) 139 aws-sdk-core (~> 3, >= 3.127.0) 140 aws-sigv4 (~> 1.1) 141 aws-sdk-iam (1.68.0) ··· 254 activemodel (~> 6.0) 255 activesupport (~> 6.0) 256 railties (~> 6.0) 257 + metasploit-payloads (2.0.83) 258 metasploit_data_models (5.0.5) 259 activerecord (~> 6.0) 260 activesupport (~> 6.0) ··· 308 ruby-rc4 309 ttfunk 310 pg (1.3.5) 311 + public_suffix (4.0.7) 312 puma (5.6.4) 313 nio4r (~> 2.0) 314 racc (1.6.0) ··· 388 ruby-macho (3.0.0) 389 ruby-rc4 (0.1.5) 390 ruby2_keywords (0.0.5) 391 + ruby_smb (3.1.0) 392 bindata 393 openssl-ccm 394 openssl-cmac
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 15 }; 16 in stdenv.mkDerivation rec { 17 pname = "metasploit-framework"; 18 - version = "6.1.37"; 19 20 src = fetchFromGitHub { 21 owner = "rapid7"; 22 repo = "metasploit-framework"; 23 rev = version; 24 - sha256 = "sha256-umSWJq9jJrjawP+eXkZEKcomJNHpt7IOk+ZI1iAM6OU="; 25 }; 26 27 nativeBuildInputs = [ makeWrapper ];
··· 15 }; 16 in stdenv.mkDerivation rec { 17 pname = "metasploit-framework"; 18 + version = "6.1.38"; 19 20 src = fetchFromGitHub { 21 owner = "rapid7"; 22 repo = "metasploit-framework"; 23 rev = version; 24 + sha256 = "sha256-3wpO2+ALt5sw6TSGCp7ARn5TEHVi+bBgP4uJPRwVIOM="; 25 }; 26 27 nativeBuildInputs = [ makeWrapper ];
+15 -15
pkgs/tools/security/metasploit/gemset.nix
··· 104 platforms = []; 105 source = { 106 remotes = ["https://rubygems.org"]; 107 - sha256 = "07kbrac2r883h4bsw4qhgkd97v0f4p05saqj8zsy300wx56nyssm"; 108 type = "gem"; 109 }; 110 - version = "1.575.0"; 111 }; 112 aws-sdk-core = { 113 groups = ["default"]; 114 platforms = []; 115 source = { 116 remotes = ["https://rubygems.org"]; 117 - sha256 = "14ymvp06k46gvkpvz5zaqvbvr6wd8vdka5iq25q0wd0fzdx7aivm"; 118 type = "gem"; 119 }; 120 - version = "3.130.0"; 121 }; 122 aws-sdk-ec2 = { 123 groups = ["default"]; 124 platforms = []; 125 source = { 126 remotes = ["https://rubygems.org"]; 127 - sha256 = "1dpid33sl72nsxyr7d57yqzqb9jby0dyjc0ncncdm41is7d25vki"; 128 type = "gem"; 129 }; 130 - version = "1.305.0"; 131 }; 132 aws-sdk-iam = { 133 groups = ["default"]; ··· 694 platforms = []; 695 source = { 696 fetchSubmodules = false; 697 - rev = "214817055bc104e6876882ef794f1de1031edb53"; 698 - sha256 = "1rg81hhdcj76jc7b5dz9s4j2dji98i35x7pzq3dbh9k3mwk9cr5s"; 699 type = "git"; 700 url = "https://github.com/rapid7/metasploit-framework"; 701 }; 702 - version = "6.1.37"; 703 }; 704 metasploit-model = { 705 groups = ["default"]; ··· 716 platforms = []; 717 source = { 718 remotes = ["https://rubygems.org"]; 719 - sha256 = "12xggj210fqprkcd6zb4rnis12l9q2fi42gmwh2hfdwvbm3syvzy"; 720 type = "gem"; 721 }; 722 - version = "2.0.80"; 723 }; 724 metasploit_data_models = { 725 groups = ["default"]; ··· 1017 platforms = []; 1018 source = { 1019 remotes = ["https://rubygems.org"]; 1020 - sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9"; 1021 type = "gem"; 1022 }; 1023 - version = "4.0.6"; 1024 }; 1025 puma = { 1026 groups = ["default"]; ··· 1387 platforms = []; 1388 source = { 1389 remotes = ["https://rubygems.org"]; 1390 - sha256 = "1mxm2948xz9pfl2jhngvjw89arvm9qznrf86pbqi8hi7cxfr4grk"; 1391 type = "gem"; 1392 }; 1393 - version = "3.0.6"; 1394 }; 1395 rubyntlm = { 1396 groups = ["default"];
··· 104 platforms = []; 105 source = { 106 remotes = ["https://rubygems.org"]; 107 + sha256 = "0rl0wcvcl1dnyzyxs0m6iyma0ibx2f9a2d4zac6hrdfcqf4s6zx9"; 108 type = "gem"; 109 }; 110 + version = "1.577.0"; 111 }; 112 aws-sdk-core = { 113 groups = ["default"]; 114 platforms = []; 115 source = { 116 remotes = ["https://rubygems.org"]; 117 + sha256 = "0lrmk788830adljzfdv9ws4q7cqfh0qyp7w908pja4rkgsd4baln"; 118 type = "gem"; 119 }; 120 + version = "3.130.1"; 121 }; 122 aws-sdk-ec2 = { 123 groups = ["default"]; 124 platforms = []; 125 source = { 126 remotes = ["https://rubygems.org"]; 127 + sha256 = "13dbg60p44llx4h99s6vdqngkwkx1521ixvzrlj630wrjp6dfkp2"; 128 type = "gem"; 129 }; 130 + version = "1.307.0"; 131 }; 132 aws-sdk-iam = { 133 groups = ["default"]; ··· 694 platforms = []; 695 source = { 696 fetchSubmodules = false; 697 + rev = "295599a02453423ea06e25c7f4347d88d1f2debc"; 698 + sha256 = "1qr02lf3v2cb7xhb1yb2fl856zj6q2g0m1ilx4q9pdqbw3dlw2nz"; 699 type = "git"; 700 url = "https://github.com/rapid7/metasploit-framework"; 701 }; 702 + version = "6.1.38"; 703 }; 704 metasploit-model = { 705 groups = ["default"]; ··· 716 platforms = []; 717 source = { 718 remotes = ["https://rubygems.org"]; 719 + sha256 = "15vlazx39flz2pci2yqjcgd4ljslhivbq1vvyajgsxl15q772ni0"; 720 type = "gem"; 721 }; 722 + version = "2.0.83"; 723 }; 724 metasploit_data_models = { 725 groups = ["default"]; ··· 1017 platforms = []; 1018 source = { 1019 remotes = ["https://rubygems.org"]; 1020 + sha256 = "1f3knlwfwm05sfbaihrxm4g772b79032q14c16q4b38z8bi63qcb"; 1021 type = "gem"; 1022 }; 1023 + version = "4.0.7"; 1024 }; 1025 puma = { 1026 groups = ["default"]; ··· 1387 platforms = []; 1388 source = { 1389 remotes = ["https://rubygems.org"]; 1390 + sha256 = "0j378l0zh3y2hdnxx753p2ds7nssi8v08fkv1wzm3yl5ws8zkxaf"; 1391 type = "gem"; 1392 }; 1393 + version = "3.1.0"; 1394 }; 1395 rubyntlm = { 1396 groups = ["default"];
+2 -2
pkgs/tools/video/xjadeo/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "xjadeo"; 6 - version = "0.8.10"; 7 8 src = fetchFromGitHub { 9 owner = "x42"; 10 repo = "xjadeo"; 11 rev = "v${version}"; 12 - sha256 = "0dma4cjgbrpy16x63zvfr0xss4lryl0zw7nvixvhq2f6z8day1ds"; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook pkg-config ];
··· 3 4 stdenv.mkDerivation rec { 5 pname = "xjadeo"; 6 + version = "0.8.11"; 7 8 src = fetchFromGitHub { 9 owner = "x42"; 10 repo = "xjadeo"; 11 rev = "v${version}"; 12 + sha256 = "sha256-S8eIkmfjwpcILZc+by0Mk4VPRUlbJT0GBe8NlJ1F9EI="; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook pkg-config ];
+2 -2
pkgs/top-level/aliases.nix
··· 344 electrum-dash = throw "electrum-dash has been removed from nixpkgs as the project is abandoned"; # Added 2022-01-01 345 346 # Emacs 347 - emacs27Packages = emacs27.pkgs; # Added 2020-12-18 348 - emacs27WithPackages = emacs27.pkgs.withPackages; # Added 2020-12-18 349 emacsPackages = emacs.pkgs; # Added 2020-12-18 350 emacsPackagesGen = throw "'emacsPackagesGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22 351 emacsPackagesNg = emacs.pkgs; # Added 2019-08-07
··· 344 electrum-dash = throw "electrum-dash has been removed from nixpkgs as the project is abandoned"; # Added 2022-01-01 345 346 # Emacs 347 + emacs28Packages = emacs28.pkgs; # Added 2021-10-04 348 + emacs28WithPackages = emacs28.pkgs.withPackages; # Added 2021-10-04 349 emacsPackages = emacs.pkgs; # Added 2020-12-18 350 emacsPackagesGen = throw "'emacsPackagesGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22 351 emacsPackagesNg = emacs.pkgs; # Added 2019-08-07
+9 -4
pkgs/top-level/all-packages.nix
··· 25500 25501 em = callPackage ../applications/editors/em { }; 25502 25503 - emacs = emacs27; 25504 - emacs-nox = emacs27-nox; 25505 25506 - emacs27 = callPackage ../applications/editors/emacs/27.nix { 25507 # use override to enable additional features 25508 libXaw = xorg.libXaw; 25509 Xaw3d = null; ··· 25515 inherit (darwin) sigtool; 25516 }; 25517 25518 - emacs27-nox = lowPrio (emacs27.override { 25519 withX = false; 25520 withNS = false; 25521 withGTK2 = false;
··· 25500 25501 em = callPackage ../applications/editors/em { }; 25502 25503 + emacs = emacs28; 25504 + emacsNativeComp = emacs28NativeComp; 25505 + emacs-nox = emacs28-nox; 25506 25507 + emacs28 = callPackage ../applications/editors/emacs/28.nix { 25508 # use override to enable additional features 25509 libXaw = xorg.libXaw; 25510 Xaw3d = null; ··· 25516 inherit (darwin) sigtool; 25517 }; 25518 25519 + emacs28NativeComp = emacs28.override { 25520 + nativeComp = true; 25521 + }; 25522 + 25523 + emacs28-nox = lowPrio (emacs28.override { 25524 withX = false; 25525 withNS = false; 25526 withGTK2 = false;
+1 -1
pkgs/top-level/packages-config.nix
··· 47 }; 48 49 # This is an alias which we disallow by default; explicitly allow it 50 - emacs27Packages = emacs27.pkgs; 51 }; 52 }
··· 47 }; 48 49 # This is an alias which we disallow by default; explicitly allow it 50 + emacs28Packages = emacs28.pkgs; 51 }; 52 }
+2
pkgs/top-level/python-packages.nix
··· 3215 inherit (pkgs) bluez glib pkg-config; 3216 }; 3217 3218 gbinder-python = callPackage ../development/python-modules/gbinder-python { }; 3219 3220 gcovr = callPackage ../development/python-modules/gcovr { };
··· 3215 inherit (pkgs) bluez glib pkg-config; 3216 }; 3217 3218 + gb-io = callPackage ../development/python-modules/gb-io { }; 3219 + 3220 gbinder-python = callPackage ../development/python-modules/gbinder-python { }; 3221 3222 gcovr = callPackage ../development/python-modules/gcovr { };