Merge master into staging-next

authored by github-actions[bot] and committed by GitHub dbad333a 91d5ab9b

+1501 -2161
+1 -1
lib/strings.nix
··· 89 => "usr/local/bin" 90 */ 91 concatStringsSep = builtins.concatStringsSep or (separator: list: 92 - concatStrings (intersperse separator list)); 93 94 /* Maps a function over a list of strings and then concatenates the 95 result with the specified separator interspersed between
··· 89 => "usr/local/bin" 90 */ 91 concatStringsSep = builtins.concatStringsSep or (separator: list: 92 + lib.foldl' (x: y: x + y) "" (intersperse separator list)); 93 94 /* Maps a function over a list of strings and then concatenates the 95 result with the specified separator interspersed between
+3
nixos/modules/services/misc/paperless-ng.nix
··· 284 PATH = mkForce cfg.package.path; 285 PYTHONPATH = "${cfg.package.pythonPath}:${cfg.package}/lib/paperless-ng/src"; 286 }; 287 # Bind to `paperless-ng-server` so that the web server never runs 288 # during migrations 289 bindsTo = [ "paperless-ng-server.service" ];
··· 284 PATH = mkForce cfg.package.path; 285 PYTHONPATH = "${cfg.package.pythonPath}:${cfg.package}/lib/paperless-ng/src"; 286 }; 287 + # Allow the web interface to access the private /tmp directory of the server. 288 + # This is required to support uploading files via the web interface. 289 + unitConfig.JoinsNamespaceOf = "paperless-ng-server.service"; 290 # Bind to `paperless-ng-server` so that the web server never runs 291 # during migrations 292 bindsTo = [ "paperless-ng-server.service" ];
+12 -2
nixos/tests/paperless-ng.nix
··· 25 # Wait until server accepts connections 26 machine.wait_until_succeeds("curl -fs localhost:28981") 27 28 - with subtest("Document is consumed"): 29 machine.wait_until_succeeds( 30 - "(($(curl -u admin:admin -fs localhost:28981/api/documents/ | jq .count) == 1))" 31 ) 32 assert "2005-10-16" in machine.succeed( 33 "curl -u admin:admin -fs localhost:28981/api/documents/ | jq '.results | .[0] | .created'" 34 ) 35 ''; 36 })
··· 25 # Wait until server accepts connections 26 machine.wait_until_succeeds("curl -fs localhost:28981") 27 28 + with subtest("Create web test doc"): 29 + machine.succeed( 30 + "convert -size 400x40 xc:white -font 'DejaVu-Sans' -pointsize 20 -fill black " 31 + "-annotate +5+20 'hello web 16-10-2005' /tmp/webdoc.png" 32 + ) 33 + machine.wait_until_succeeds("curl -u admin:admin -F document=@/tmp/webdoc.png -fs localhost:28981/api/documents/post_document/") 34 + 35 + with subtest("Documents are consumed"): 36 machine.wait_until_succeeds( 37 + "(($(curl -u admin:admin -fs localhost:28981/api/documents/ | jq .count) == 2))" 38 ) 39 assert "2005-10-16" in machine.succeed( 40 "curl -u admin:admin -fs localhost:28981/api/documents/ | jq '.results | .[0] | .created'" 41 + ) 42 + assert "2005-10-16" in machine.succeed( 43 + "curl -u admin:admin -fs localhost:28981/api/documents/ | jq '.results | .[1] | .created'" 44 ) 45 ''; 46 })
+2 -2
pkgs/applications/networking/nextcloud-client/default.nix
··· 21 22 mkDerivation rec { 23 pname = "nextcloud-client"; 24 - version = "3.3.1"; 25 26 src = fetchFromGitHub { 27 owner = "nextcloud"; 28 repo = "desktop"; 29 rev = "v${version}"; 30 - sha256 = "sha256-2oX3V84ScUV08/WaWJQPLJIni7KvJa/YBRBTWVdRO2U="; 31 }; 32 33 patches = [
··· 21 22 mkDerivation rec { 23 pname = "nextcloud-client"; 24 + version = "3.3.2"; 25 26 src = fetchFromGitHub { 27 owner = "nextcloud"; 28 repo = "desktop"; 29 rev = "v${version}"; 30 + sha256 = "sha256-sqoOppq0QdLcA2IFZYnixMNnFWb3x83tqTp6hqqVU14="; 31 }; 32 33 patches = [
+8 -1
pkgs/build-support/fetchgit/nix-prefetch-git
··· 300 local rev="${3:-HEAD}" 301 302 if [ -n "$fetchLFS" ]; then 303 - HOME=$TMPDIR 304 git lfs install 305 fi 306 ··· 396 "date": "$(json_escape "$commitDateStrict8601")", 397 "path": "$(json_escape "$finalPath")", 398 "$(json_escape "$hashType")": "$(json_escape "$hash")", 399 "fetchSubmodules": $([[ -n "$fetchSubmodules" ]] && echo true || echo false), 400 "deepClone": $([[ -n "$deepClone" ]] && echo true || echo false), 401 "leaveDotGit": $([[ -n "$leaveDotGit" ]] && echo true || echo false) ··· 406 407 remove_tmpPath() { 408 rm -rf "$tmpPath" 409 } 410 411 if test -n "$QUIET"; then
··· 300 local rev="${3:-HEAD}" 301 302 if [ -n "$fetchLFS" ]; then 303 + tmpHomePath="$(mktemp -d -p nix-prefetch-git-tmp-home-XXXXXXXXXX)" 304 + exit_handlers+=(remove_tmpHomePath) 305 + HOME="$tmpHomePath" 306 git lfs install 307 fi 308 ··· 398 "date": "$(json_escape "$commitDateStrict8601")", 399 "path": "$(json_escape "$finalPath")", 400 "$(json_escape "$hashType")": "$(json_escape "$hash")", 401 + "fetchLFS": $([[ -n "$fetchLFS" ]] && echo true || echo false), 402 "fetchSubmodules": $([[ -n "$fetchSubmodules" ]] && echo true || echo false), 403 "deepClone": $([[ -n "$deepClone" ]] && echo true || echo false), 404 "leaveDotGit": $([[ -n "$leaveDotGit" ]] && echo true || echo false) ··· 409 410 remove_tmpPath() { 411 rm -rf "$tmpPath" 412 + } 413 + 414 + remove_tmpHomePath() { 415 + rm -rf "$tmpHomePath" 416 } 417 418 if test -n "$QUIET"; then
+390
pkgs/development/compilers/ghc/8.10.5-binary.nix
···
··· 1 + { lib, stdenv 2 + , fetchurl, perl, gcc 3 + , ncurses5 4 + , ncurses6, gmp, libiconv, numactl 5 + , llvmPackages 6 + 7 + # minimal = true; will remove files that aren't strictly necessary for 8 + # regular builds and GHC bootstrapping. 9 + # This is "useful" for staying within hydra's output limits for at least the 10 + # aarch64-linux architecture. 11 + , minimal ? false 12 + }: 13 + 14 + # Prebuilt only does native 15 + assert stdenv.targetPlatform == stdenv.hostPlatform; 16 + 17 + let 18 + downloadsUrl = "https://downloads.haskell.org/ghc"; 19 + 20 + version = "8.10.5"; 21 + 22 + # Information about available bindists that we use in the build. 23 + # 24 + # # Bindist library checking 25 + # 26 + # The field `archSpecificLibraries` also provides a way for us get notified 27 + # early when the upstream bindist changes its dependencies (e.g. because a 28 + # newer Debian version is used that uses a new `ncurses` version). 29 + # 30 + # Usage: 31 + # 32 + # * You can find the `fileToCheckFor` of libraries by running `readelf -d` 33 + # on the compiler binary (`exePathForLibraryCheck`). 34 + # * To skip library checking for an architecture, 35 + # set `exePathForLibraryCheck = null`. 36 + # * To skip file checking for a specific arch specfic library, 37 + # set `fileToCheckFor = null`. 38 + ghcBinDists = { 39 + # Binary distributions for the default libc (e.g. glibc, or libSystem on Darwin) 40 + # nixpkgs uses for the respective system. 41 + defaultLibc = { 42 + i686-linux = { 43 + src = { 44 + url = "${downloadsUrl}/${version}/ghc-${version}-i386-deb9-linux.tar.xz"; 45 + sha256 = "17cwmhhyz952psmp4j3pkdj0yrfxah3l2dawg5s4hdr228n5pjqc"; 46 + }; 47 + exePathForLibraryCheck = "ghc/stage2/build/tmp/ghc-stage2"; 48 + archSpecificLibraries = [ 49 + # The i686-linux bindist provided by GHC HQ is currently built on Debian 9, 50 + # which link it against `libtinfo.so.5` (ncurses 5). 51 + # Other bindists are linked `libtinfo.so.6` (ncurses 6). 52 + { nixPackage = ncurses5; fileToCheckFor = "libtinfo.so.5"; } 53 + ]; 54 + }; 55 + x86_64-linux = { 56 + src = { 57 + url = "${downloadsUrl}/${version}/ghc-${version}-x86_64-deb10-linux.tar.xz"; 58 + sha256 = "11v76wgljyszc6mgz6r16i6wkifgl15a26q7ablihp2cr8h3qqmw"; 59 + }; 60 + exePathForLibraryCheck = "ghc/stage2/build/tmp/ghc-stage2"; 61 + archSpecificLibraries = [ 62 + { nixPackage = ncurses6; fileToCheckFor = "libtinfo.so.6"; } 63 + ]; 64 + }; 65 + armv7l-linux = { 66 + src = { 67 + url = "${downloadsUrl}/${version}/ghc-${version}-armv7-deb10-linux.tar.xz"; 68 + sha256 = "0v5bvhb2z9j26yr0n9gc4xdq2lm37mr98g62p5z8pqahhhd0s5sn"; 69 + }; 70 + exePathForLibraryCheck = "ghc/stage2/build/tmp/ghc-stage2"; 71 + archSpecificLibraries = [ 72 + { nixPackage = ncurses6; fileToCheckFor = "libtinfo.so.6"; } 73 + ]; 74 + }; 75 + aarch64-linux = { 76 + src = { 77 + url = "${downloadsUrl}/${version}/ghc-${version}-aarch64-deb10-linux.tar.xz"; 78 + sha256 = "1p0dgyn1m2nd8ax1g25lchaz9z2nk9jvyzf63biarq7qlzc5q24s"; 79 + }; 80 + exePathForLibraryCheck = "ghc/stage2/build/tmp/ghc-stage2"; 81 + archSpecificLibraries = [ 82 + { nixPackage = ncurses6; fileToCheckFor = "libtinfo.so.6"; } 83 + { nixPackage = numactl; fileToCheckFor = null; } 84 + ]; 85 + }; 86 + x86_64-darwin = { 87 + src = { 88 + url = "${downloadsUrl}/${version}/ghc-${version}-x86_64-apple-darwin.tar.xz"; 89 + sha256 = "08javwfqd21kglbr1bnhnbjw2cggz1n668vi8kx5hbcnz3plf3zg"; 90 + }; 91 + exePathForLibraryCheck = null; # we don't have a library check for darwin yet 92 + archSpecificLibraries = [ 93 + { nixPackage = ncurses6; fileToCheckFor = null; } 94 + { nixPackage = libiconv; fileToCheckFor = null; } 95 + ]; 96 + }; 97 + aarch64-darwin = { 98 + src = { 99 + url = "${downloadsUrl}/${version}/ghc-${version}-aarch64-apple-darwin.tar.xz"; 100 + sha256 = "02fbcrzcc6m25z3ji867isml38jkg4blry70ljwl3l03zxq4ws03"; 101 + }; 102 + exePathForLibraryCheck = null; # we don't have a library check for darwin yet 103 + archSpecificLibraries = [ 104 + { nixPackage = ncurses6; fileToCheckFor = null; } 105 + { nixPackage = libiconv; fileToCheckFor = null; } 106 + ]; 107 + }; 108 + }; 109 + # Binary distributions for the musl libc for the respective system. 110 + musl = { 111 + x86_64-linux = { 112 + src = { 113 + url = "${downloadsUrl}/${version}/ghc-${version}-x86_64-alpine3.10-linux-integer-simple.tar.xz"; 114 + sha256 = "1ql2qxywbbv0b9syvrm9kyh5d8midnl676lw4698ajras6gcvmzl"; 115 + }; 116 + exePathForLibraryCheck = "bin/ghc"; 117 + archSpecificLibraries = [ 118 + # In contrast to glibc builds, the musl-bindist uses `libncursesw.so.*` 119 + # instead of `libtinfo.so.*.` 120 + { nixPackage = ncurses6; fileToCheckFor = "libncursesw.so.6"; } 121 + ]; 122 + }; 123 + }; 124 + }; 125 + 126 + distSetName = if stdenv.hostPlatform.isMusl then "musl" else "defaultLibc"; 127 + 128 + binDistUsed = ghcBinDists.${distSetName}.${stdenv.hostPlatform.system} 129 + or (throw "cannot bootstrap GHC on this platform ('${stdenv.hostPlatform.system}' with libc '${distSetName}')"); 130 + 131 + useLLVM = !stdenv.targetPlatform.isx86; 132 + 133 + libPath = 134 + lib.makeLibraryPath ( 135 + [ 136 + gmp 137 + ] 138 + # Add arch-specific libraries. 139 + ++ map ({ nixPackage, ... }: nixPackage) binDistUsed.archSpecificLibraries 140 + ); 141 + 142 + libEnvVar = lib.optionalString stdenv.hostPlatform.isDarwin "DY" 143 + + "LD_LIBRARY_PATH"; 144 + 145 + in 146 + 147 + stdenv.mkDerivation rec { 148 + inherit version; 149 + 150 + name = "ghc-${version}-binary"; 151 + 152 + src = fetchurl binDistUsed.src; 153 + 154 + nativeBuildInputs = [ perl ]; 155 + propagatedBuildInputs = 156 + lib.optionals useLLVM [ llvmPackages.llvm ] 157 + # Because musl bindists currently provide no way to tell where 158 + # libgmp is (see not [musl bindists have no .buildinfo]), we need 159 + # to propagate `gmp`, otherwise programs built by this ghc will 160 + # fail linking with `cannot find -lgmp` errors. 161 + # Also, as of writing, the release pages of musl bindists claim 162 + # that they use `integer-simple` and do not require `gmp`; however 163 + # that is incorrect, so `gmp` is required until a release has been 164 + # made that includes https://gitlab.haskell.org/ghc/ghc/-/issues/20059. 165 + # (Note that for packaging the `-binary` compiler, nixpkgs does not care 166 + # about whether or not `gmp` is used; this comment is just here to explain 167 + # why the `gmp` dependency exists despite what the release page says.) 168 + ++ lib.optionals stdenv.hostPlatform.isMusl [ gmp ]; # musl bindist needs this 169 + 170 + # Set LD_LIBRARY_PATH or equivalent so that the programs running as part 171 + # of the bindist installer can find the libraries they expect. 172 + # Cannot patchelf beforehand due to relative RPATHs that anticipate 173 + # the final install location. 174 + ${libEnvVar} = libPath; 175 + 176 + postUnpack = 177 + # Verify our assumptions of which `libtinfo.so` (ncurses) version is used, 178 + # so that we know when ghc bindists upgrade that and we need to update the 179 + # version used in `libPath`. 180 + lib.optionalString 181 + (binDistUsed.exePathForLibraryCheck != null) 182 + # Note the `*` glob because some GHCs have a suffix when unpacked, e.g. 183 + # the musl bindist has dir `ghc-VERSION-x86_64-unknown-linux/`. 184 + # As a result, don't shell-quote this glob when splicing the string. 185 + (let buildExeGlob = ''ghc-${version}*/"${binDistUsed.exePathForLibraryCheck}"''; in 186 + lib.concatStringsSep "\n" [ 187 + ('' 188 + echo "Checking that ghc binary exists in bindist at ${buildExeGlob}" 189 + if ! test -e ${buildExeGlob}; then 190 + echo >&2 "GHC binary ${binDistUsed.exePathForLibraryCheck} could not be found in the bindist build directory (at ${buildExeGlob}) for arch ${stdenv.hostPlatform.system}, please check that ghcBinDists correctly reflect the bindist dependencies!"; exit 1; 191 + fi 192 + '') 193 + (lib.concatMapStringsSep 194 + "\n" 195 + ({ fileToCheckFor, nixPackage }: 196 + lib.optionalString (fileToCheckFor != null) '' 197 + echo "Checking bindist for ${fileToCheckFor} to ensure that is still used" 198 + if ! readelf -d ${buildExeGlob} | grep "${fileToCheckFor}"; then 199 + echo >&2 "File ${fileToCheckFor} could not be found in ${binDistUsed.exePathForLibraryCheck} for arch ${stdenv.hostPlatform.system}, please check that ghcBinDists correctly reflect the bindist dependencies!"; exit 1; 200 + fi 201 + 202 + echo "Checking that the nix package ${nixPackage} contains ${fileToCheckFor}" 203 + if ! test -e "${lib.getLib nixPackage}/lib/${fileToCheckFor}"; then 204 + echo >&2 "Nix package ${nixPackage} did not contain ${fileToCheckFor} for arch ${stdenv.hostPlatform.system}, please check that ghcBinDists correctly reflect the bindist dependencies!"; exit 1; 205 + fi 206 + '' 207 + ) 208 + binDistUsed.archSpecificLibraries 209 + ) 210 + ]) 211 + # GHC has dtrace probes, which causes ld to try to open /usr/lib/libdtrace.dylib 212 + # during linking 213 + + lib.optionalString stdenv.isDarwin '' 214 + export NIX_LDFLAGS+=" -no_dtrace_dof" 215 + # not enough room in the object files for the full path to libiconv :( 216 + for exe in $(find . -type f -executable); do 217 + isScript $exe && continue 218 + ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib 219 + install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib -change /usr/local/lib/gcc/6/libgcc_s.1.dylib ${gcc.cc.lib}/lib/libgcc_s.1.dylib $exe 220 + done 221 + '' + 222 + 223 + # Some scripts used during the build need to have their shebangs patched 224 + '' 225 + patchShebangs ghc-${version}/utils/ 226 + patchShebangs ghc-${version}/configure 227 + '' + 228 + # We have to patch the GMP paths for the integer-gmp package. 229 + # Note [musl bindists have no .buildinfo] 230 + # Note that musl bindists do not contain them; unclear if that's intended; 231 + # see: https://gitlab.haskell.org/ghc/ghc/-/issues/20073#note_363231 232 + '' 233 + find . -name integer-gmp.buildinfo \ 234 + -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp.out}/lib@" {} \; 235 + '' + lib.optionalString stdenv.isDarwin '' 236 + find . -name base.buildinfo \ 237 + -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${libiconv}/lib@" {} \; 238 + '' + 239 + # aarch64 does HAVE_NUMA so -lnuma requires it in library-dirs in rts/package.conf.in 240 + # FFI_LIB_DIR is a good indication of places it must be needed. 241 + lib.optionalString (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) '' 242 + find . -name package.conf.in \ 243 + -exec sed -i "s@FFI_LIB_DIR@FFI_LIB_DIR ${numactl.out}/lib@g" {} \; 244 + '' + 245 + # Rename needed libraries and binaries, fix interpreter 246 + lib.optionalString stdenv.isLinux '' 247 + find . -type f -executable -exec patchelf \ 248 + --interpreter ${stdenv.cc.bintools.dynamicLinker} {} \; 249 + ''; 250 + 251 + # fix for `configure: error: Your linker is affected by binutils #16177` 252 + preConfigure = lib.optionalString 253 + stdenv.targetPlatform.isAarch32 254 + "LD=ld.gold"; 255 + 256 + configurePlatforms = [ ]; 257 + configureFlags = [ 258 + "--with-gmp-includes=${lib.getDev gmp}/include" 259 + # Note `--with-gmp-libraries` does nothing for GHC bindists: 260 + # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/6124 261 + ] ++ lib.optional stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}" 262 + # From: https://github.com/NixOS/nixpkgs/pull/43369/commits 263 + ++ lib.optional stdenv.hostPlatform.isMusl "--disable-ld-override"; 264 + 265 + # No building is necessary, but calling make without flags ironically 266 + # calls install-strip ... 267 + dontBuild = true; 268 + 269 + # Apparently necessary for the ghc Alpine (musl) bindist: 270 + # When we strip, and then run the 271 + # patchelf --set-rpath "${libPath}:$(patchelf --print-rpath $p)" $p 272 + # below, running ghc (e.g. during `installCheckPhase)` gives some apparently 273 + # corrupted rpath or whatever makes the loader work on nonsensical strings: 274 + # running install tests 275 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: : symbol not found 276 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: ir6zf6c9f86pfx8sr30n2vjy-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/../lib/x86_64-linux-ghc-8.10.5/libHSexceptions-0.10.4-ghc8.10.5.so: symbol not found 277 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: y/lib/ghc-8.10.5/bin/../lib/x86_64-linux-ghc-8.10.5/libHStemplate-haskell-2.16.0.0-ghc8.10.5.so: symbol not found 278 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: 8.10.5/libHStemplate-haskell-2.16.0.0-ghc8.10.5.so: symbol not found 279 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: �: symbol not found 280 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: �?: symbol not found 281 + # Error relocating /nix/store/...-ghc-8.10.2-binary/lib/ghc-8.10.5/bin/ghc: 64-linux-ghc-8.10.5/libHSexceptions-0.10.4-ghc8.10.5.so: symbol not found 282 + # This is extremely bogus and should be investigated. 283 + dontStrip = if stdenv.hostPlatform.isMusl then true else false; # `if` for explicitness 284 + 285 + # On Linux, use patchelf to modify the executables so that they can 286 + # find editline/gmp. 287 + postFixup = lib.optionalString stdenv.isLinux 288 + (if stdenv.hostPlatform.isAarch64 then 289 + # Keep rpath as small as possible on aarch64 for patchelf#244. All Elfs 290 + # are 2 directories deep from $out/lib, so pooling symlinks there makes 291 + # a short rpath. 292 + '' 293 + (cd $out/lib; ln -s ${ncurses6.out}/lib/libtinfo.so.6) 294 + (cd $out/lib; ln -s ${gmp.out}/lib/libgmp.so.10) 295 + (cd $out/lib; ln -s ${numactl.out}/lib/libnuma.so.1) 296 + for p in $(find "$out/lib" -type f -name "*\.so*"); do 297 + (cd $out/lib; ln -s $p) 298 + done 299 + 300 + for p in $(find "$out/lib" -type f -executable); do 301 + if isELF "$p"; then 302 + echo "Patchelfing $p" 303 + patchelf --set-rpath "\$ORIGIN:\$ORIGIN/../.." $p 304 + fi 305 + done 306 + '' 307 + else 308 + '' 309 + for p in $(find "$out" -type f -executable); do 310 + if isELF "$p"; then 311 + echo "Patchelfing $p" 312 + patchelf --set-rpath "${libPath}:$(patchelf --print-rpath $p)" $p 313 + fi 314 + done 315 + '') + lib.optionalString stdenv.isDarwin '' 316 + # not enough room in the object files for the full path to libiconv :( 317 + for exe in $(find "$out" -type f -executable); do 318 + isScript $exe && continue 319 + ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib 320 + install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib -change /usr/local/lib/gcc/6/libgcc_s.1.dylib ${gcc.cc.lib}/lib/libgcc_s.1.dylib $exe 321 + done 322 + 323 + for file in $(find "$out" -name setup-config); do 324 + substituteInPlace $file --replace /usr/bin/ranlib "$(type -P ranlib)" 325 + done 326 + '' + 327 + lib.optionalString minimal '' 328 + # Remove profiling files 329 + find $out -type f -name '*.p_o' -delete 330 + find $out -type f -name '*.p_hi' -delete 331 + find $out -type f -name '*_p.a' -delete 332 + # `-f` because e.g. musl bindist does not have this file. 333 + rm -f $out/lib/ghc-*/bin/ghc-iserv-prof 334 + # Hydra will redistribute this derivation, so we have to keep the docs for 335 + # legal reasons (retaining the legal notices etc) 336 + # As a last resort we could unpack the docs separately and symlink them in. 337 + # They're in $out/share/{doc,man}. 338 + ''; 339 + 340 + # In nixpkgs, musl based builds currently enable `pie` hardening by default 341 + # (see `defaultHardeningFlags` in `make-derivation.nix`). 342 + # But GHC cannot currently produce outputs that are ready for `-pie` linking. 343 + # Thus, disable `pie` hardening, otherwise `recompile with -fPIE` errors appear. 344 + # See: 345 + # * https://github.com/NixOS/nixpkgs/issues/129247 346 + # * https://gitlab.haskell.org/ghc/ghc/-/issues/19580 347 + hardeningDisable = lib.optional stdenv.targetPlatform.isMusl "pie"; 348 + 349 + doInstallCheck = true; 350 + installCheckPhase = '' 351 + unset ${libEnvVar} 352 + # Sanity check, can ghc create executables? 353 + cd $TMP 354 + mkdir test-ghc; cd test-ghc 355 + cat > main.hs << EOF 356 + {-# LANGUAGE TemplateHaskell #-} 357 + module Main where 358 + main = putStrLn \$([|"yes"|]) 359 + EOF 360 + $out/bin/ghc --make main.hs || exit 1 361 + echo compilation ok 362 + [ $(./main) == "yes" ] 363 + ''; 364 + 365 + passthru = { 366 + targetPrefix = ""; 367 + enableShared = true; 368 + 369 + # Our Cabal compiler name 370 + haskellCompilerName = "ghc-${version}"; 371 + }; 372 + 373 + meta = rec { 374 + homepage = "http://haskell.org/ghc"; 375 + description = "The Glasgow Haskell Compiler"; 376 + license = lib.licenses.bsd3; 377 + # HACK: since we can't encode the libc / abi in platforms, we need 378 + # to make the platform list dependent on the evaluation platform 379 + # in order to avoid eval errors with musl which supports less 380 + # platforms than the default libcs (i. e. glibc / libSystem). 381 + # This is done for the benefit of Hydra, so `packagePlatforms` 382 + # won't return any platforms that would cause an evaluation 383 + # failure for `pkgsMusl.haskell.compiler.ghc8102Binary`, as 384 + # long as the evaluator runs on a platform that supports 385 + # `pkgsMusl`. 386 + platforms = builtins.attrNames ghcBinDists.${distSetName}; 387 + hydraPlatforms = builtins.filter (p: minimal || p != "aarch64-linux") platforms; 388 + maintainers = with lib.maintainers; [ lostnet ]; 389 + }; 390 + }
+4 -1
pkgs/development/compilers/ghc/8.10.6.nix
··· 2 3 # build-tools 4 , bootPkgs 5 - , autoconf, automake, coreutils, fetchpatch, fetchurl, perl, python3, m4, sphinx, xattr 6 , bash 7 8 , libiconv ? null, ncurses ··· 250 nativeBuildInputs = [ 251 perl autoconf automake m4 python3 252 ghc bootPkgs.alex bootPkgs.happy bootPkgs.hscolour 253 ] ++ lib.optionals enableDocs [ 254 sphinx 255 ];
··· 2 3 # build-tools 4 , bootPkgs 5 + , autoconf, automake, coreutils, fetchpatch, fetchurl, perl, python3, m4, sphinx 6 + , xattr, autoSignDarwinBinariesHook 7 , bash 8 9 , libiconv ? null, ncurses ··· 251 nativeBuildInputs = [ 252 perl autoconf automake m4 python3 253 ghc bootPkgs.alex bootPkgs.happy bootPkgs.hscolour 254 + ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ 255 + autoSignDarwinBinariesHook 256 ] ++ lib.optionals enableDocs [ 257 sphinx 258 ];
+2 -2
pkgs/development/compilers/llvm/13/default.nix
··· 19 20 let 21 release_version = "13.0.0"; 22 - candidate = "rc1"; # empty or "rcN" 23 dash-candidate = lib.optionalString (candidate != "") "-${candidate}"; 24 rev = ""; # When using a Git commit 25 rev-version = ""; # When using a Git commit ··· 30 owner = "llvm"; 31 repo = "llvm-project"; 32 rev = if rev != "" then rev else "llvmorg-${version}"; 33 - sha256 = "19x8yk9zkpdmn08r1jn3bk1l5ab7kgj9fi5v7lmkyahc19wxszy4"; 34 }; 35 36 llvm_meta = {
··· 19 20 let 21 release_version = "13.0.0"; 22 + candidate = "rc2"; # empty or "rcN" 23 dash-candidate = lib.optionalString (candidate != "") "-${candidate}"; 24 rev = ""; # When using a Git commit 25 rev-version = ""; # When using a Git commit ··· 30 owner = "llvm"; 31 repo = "llvm-project"; 32 rev = if rev != "" then rev else "llvmorg-${version}"; 33 + sha256 = "06cy6v231w067g310bwpk6a654j6q9rcxa0y0wz5sc5rrh61zjrn"; 34 }; 35 36 llvm_meta = {
-7
pkgs/development/compilers/llvm/13/llvm/default.nix
··· 59 sha256 = "18l6mrvm2vmwm77ckcnbjvh6ybvn72rhrb799d4qzwac4x2ifl7g"; 60 stripLen = 1; 61 }) 62 - 63 - # Fix tests on non-x86 platforms: https://reviews.llvm.org/D107020 64 - (fetchpatch { 65 - url = "https://github.com/llvm/llvm-project/commit/5060224d9eed8b8359ed5090bb7c577b8575e9e7.patch"; 66 - sha256 = "1s2n3pqa11pmlifys1jkppmw858p5i64xszpc8ppc98middv19v1"; 67 - stripLen = 1; 68 - }) 69 ] ++ lib.optional enablePolly ./gnu-install-dirs-polly.patch; 70 71 postPatch = optionalString stdenv.isDarwin ''
··· 59 sha256 = "18l6mrvm2vmwm77ckcnbjvh6ybvn72rhrb799d4qzwac4x2ifl7g"; 60 stripLen = 1; 61 }) 62 ] ++ lib.optional enablePolly ./gnu-install-dirs-polly.patch; 63 64 postPatch = optionalString stdenv.isDarwin ''
+29 -17
pkgs/development/libraries/libguestfs/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, autoreconfHook, makeWrapper 2 , ncurses, cpio, gperf, cdrkit, flex, bison, qemu, pcre, augeas, libxml2 3 , acl, libcap, libcap_ng, libconfig, systemd, fuse, yajl, libvirt, hivex, db 4 , gmp, readline, file, numactl, libapparmor, jansson ··· 12 13 stdenv.mkDerivation rec { 14 pname = "libguestfs"; 15 - version = "1.40.2"; 16 17 src = fetchurl { 18 - url = "https://libguestfs.org/download/1.40-stable/${pname}-${version}.tar.gz"; 19 - sha256 = "ad6562c48c38e922a314cb45a90996843d81045595c4917f66b02a6c2dfe8058"; 20 }; 21 22 - nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ]; 23 buildInputs = [ 24 - ncurses cpio gperf jansson 25 - cdrkit flex bison qemu pcre augeas libxml2 acl libcap libcap_ng libconfig 26 systemd fuse yajl libvirt gmp readline file hivex db 27 - numactl libapparmor getopt perlPackages.ModuleBuild 28 libtirpc 29 - ] ++ (with perlPackages; [ perl libintl_perl GetoptLong SysVirt ]) 30 - ++ (with ocamlPackages; [ ocaml findlib ocamlbuild ocaml_libvirt gettext-stub ounit ]) 31 ++ lib.optional javaSupport jdk; 32 33 prePatch = '' 34 # build-time scripts 35 substituteInPlace run.in --replace '#!/bin/bash' '#!${stdenv.shell}' 36 - substituteInPlace ocaml-link.sh --replace '#!/bin/bash' '#!${stdenv.shell}' 37 38 # $(OCAMLLIB) is read-only "${ocamlPackages.ocaml}/lib/ocaml" 39 substituteInPlace ocaml/Makefile.am --replace '$(DESTDIR)$(OCAMLLIB)' '$(out)/lib/ocaml' 40 substituteInPlace ocaml/Makefile.in --replace '$(DESTDIR)$(OCAMLLIB)' '$(out)/lib/ocaml' 41 - substituteInPlace v2v/test-harness/Makefile.am --replace '$(DESTDIR)$(OCAMLLIB)' '$(out)/lib/ocaml' 42 - substituteInPlace v2v/test-harness/Makefile.in --replace '$(DESTDIR)$(OCAMLLIB)' '$(out)/lib/ocaml' 43 44 # some scripts hardcore /usr/bin/env which is not available in the build env 45 patchShebangs . 46 ''; 47 - configureFlags = [ "--disable-appliance" "--disable-daemon" "--with-distro=NixOS" ] 48 - ++ lib.optionals (!javaSupport) [ "--disable-java" "--without-java" ]; 49 - patches = [ ./libguestfs-syms.patch ./ocaml-4.12.patch ]; 50 NIX_CFLAGS_COMPILE="-I${libxml2.dev}/include/libxml2/"; 51 installFlags = [ "REALLY_INSTALL=yes" ]; 52 enableParallelBuilding = true; ··· 87 88 meta = with lib; { 89 description = "Tools for accessing and modifying virtual machine disk images"; 90 - license = with licenses; [ gpl2 lgpl21 ]; 91 homepage = "https://libguestfs.org/"; 92 maintainers = with maintainers; [offline]; 93 platforms = platforms.linux;
··· 1 + { lib, stdenv, fetchurl, fetchpatch, pkg-config, autoreconfHook, makeWrapper 2 , ncurses, cpio, gperf, cdrkit, flex, bison, qemu, pcre, augeas, libxml2 3 , acl, libcap, libcap_ng, libconfig, systemd, fuse, yajl, libvirt, hivex, db 4 , gmp, readline, file, numactl, libapparmor, jansson ··· 12 13 stdenv.mkDerivation rec { 14 pname = "libguestfs"; 15 + version = "1.44.1"; 16 17 src = fetchurl { 18 + url = "https://libguestfs.org/download/${lib.versions.majorMinor version}-stable/${pname}-${version}.tar.gz"; 19 + sha256 = "09dhmlbfdwirlmkasa28x69vqs5xndq0lnng6b4if76s6bfxrdvj"; 20 }; 21 22 + strictDeps = true; 23 + nativeBuildInputs = [ 24 + autoreconfHook bison cdrkit cpio flex getopt gperf makeWrapper pkg-config qemu 25 + ] ++ (with perlPackages; [ perl libintl_perl GetoptLong SysVirt ]) 26 + ++ (with ocamlPackages; [ ocaml findlib ]); 27 buildInputs = [ 28 + ncurses jansson 29 + pcre augeas libxml2 acl libcap libcap_ng libconfig 30 systemd fuse yajl libvirt gmp readline file hivex db 31 + numactl libapparmor perlPackages.ModuleBuild 32 libtirpc 33 + ] ++ (with ocamlPackages; [ ocamlbuild ocaml_libvirt gettext-stub ounit ]) 34 ++ lib.optional javaSupport jdk; 35 36 prePatch = '' 37 # build-time scripts 38 substituteInPlace run.in --replace '#!/bin/bash' '#!${stdenv.shell}' 39 + substituteInPlace ocaml-link.sh.in --replace '#!/bin/bash' '#!${stdenv.shell}' 40 41 # $(OCAMLLIB) is read-only "${ocamlPackages.ocaml}/lib/ocaml" 42 substituteInPlace ocaml/Makefile.am --replace '$(DESTDIR)$(OCAMLLIB)' '$(out)/lib/ocaml' 43 substituteInPlace ocaml/Makefile.in --replace '$(DESTDIR)$(OCAMLLIB)' '$(out)/lib/ocaml' 44 45 # some scripts hardcore /usr/bin/env which is not available in the build env 46 patchShebangs . 47 ''; 48 + configureFlags = [ 49 + "--disable-appliance" 50 + "--disable-daemon" 51 + "--with-distro=NixOS" 52 + "--with-guestfs-path=${placeholder "out"}/lib/guestfs" 53 + ] ++ lib.optionals (!javaSupport) [ "--without-java" ]; 54 + patches = [ 55 + ./libguestfs-syms.patch 56 + # Set HAVE_RPM, HAVE_DPKG, HAVE_PACMAN 57 + (fetchpatch { 58 + url = "https://github.com/libguestfs/libguestfs/commit/210959cc344d6a4a1e3afa26d276b130651def74.patch"; 59 + sha256 = "121l58mk2mwhhqc3rcisdw3di7y729b30hyffc8a50mq5k7fvsdb"; 60 + }) 61 + ]; 62 NIX_CFLAGS_COMPILE="-I${libxml2.dev}/include/libxml2/"; 63 installFlags = [ "REALLY_INSTALL=yes" ]; 64 enableParallelBuilding = true; ··· 99 100 meta = with lib; { 101 description = "Tools for accessing and modifying virtual machine disk images"; 102 + license = with licenses; [ gpl2Plus lgpl21Plus ]; 103 homepage = "https://libguestfs.org/"; 104 maintainers = with maintainers; [offline]; 105 platforms = platforms.linux;
-11
pkgs/development/libraries/libguestfs/ocaml-4.12.patch
··· 1 - --- a/common/mlstdutils/std_utils.ml 2019-02-07 15:45:56.516955598 +0100 2 - +++ b/common/mlstdutils/std_utils.ml 2019-02-07 15:45:56.516955598 +0100 3 - @@ -305,7 +305,7 @@ 4 - | x::xs, y::ys, z::zs -> (x, y, z) :: combine3 xs ys zs 5 - | _ -> invalid_arg "combine3" 6 - 7 - - let rec assoc_lbl ?(cmp = compare) ~default x = function 8 - + let rec assoc_lbl ?(cmp = Pervasives.compare) ~default x = function 9 - | [] -> default 10 - | (y, y') :: _ when cmp x y = 0 -> y' 11 - | _ :: ys -> assoc_lbl ~cmp ~default x ys
···
+1
pkgs/development/node-packages/node-packages.json
··· 6 , "@commitlint/cli" 7 , "@commitlint/config-conventional" 8 , "@hyperspace/cli" 9 , "@nestjs/cli" 10 , "@squoosh/cli" 11 , "@vue/cli"
··· 6 , "@commitlint/cli" 7 , "@commitlint/config-conventional" 8 , "@hyperspace/cli" 9 + , "@nerdwallet/shepherd" 10 , "@nestjs/cli" 11 , "@squoosh/cli" 12 , "@vue/cli"
+945 -2084
pkgs/development/node-packages/node-packages.nix
··· 31 sha512 = "CXMFAyovJHtLzKlraBpGlM/8TX9bvVz081IDZkQF3IMGHePgHCAs1vQdnKM38VMGekywNCbo7kt3fHooSMgA2w=="; 32 }; 33 }; 34 - "@alexbosworth/request-2.88.3" = { 35 - name = "_at_alexbosworth_slash_request"; 36 - packageName = "@alexbosworth/request"; 37 - version = "2.88.3"; 38 - src = fetchurl { 39 - url = "https://registry.npmjs.org/@alexbosworth/request/-/request-2.88.3.tgz"; 40 - sha512 = "51/Y5x0SncVGQc274YckWMo9CooUGp7XppgV9K8v5eBwcXnw9sM/j0LpAvUFE7gjJcmZVYXDmLxtOYtgC0f2dg=="; 41 - }; 42 - }; 43 "@alexbosworth/saxophone-0.6.2" = { 44 name = "_at_alexbosworth_slash_saxophone"; 45 packageName = "@alexbosworth/saxophone"; ··· 49 sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww=="; 50 }; 51 }; 52 - "@angular-devkit/architect-0.1202.2" = { 53 name = "_at_angular-devkit_slash_architect"; 54 packageName = "@angular-devkit/architect"; 55 - version = "0.1202.2"; 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.2.tgz"; 58 - sha512 = "ylceL10SlftuhE4/rNzDeLLTm+e3Wt1PmMvBd4e+Q2bk1E+Ws/scGKpwfnYPzFaACn5kjg5qZoJOkHSprIfNlQ=="; 59 }; 60 }; 61 "@angular-devkit/core-12.0.5" = { ··· 76 sha512 = "KOzGD8JbP/7EeUwPiU5x+fo3ZEQ5R4IVW5WoH92PaO3mdpqXC7UL2MWLct8PUe9il9nqJMvrBMldSSvP9PCT2w=="; 77 }; 78 }; 79 - "@angular-devkit/core-12.2.2" = { 80 name = "_at_angular-devkit_slash_core"; 81 packageName = "@angular-devkit/core"; 82 - version = "12.2.2"; 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.2.tgz"; 85 - sha512 = "iaPQc0M9FZWvE4MmxRFm5qFNBefvyN7H96pQIIPqT2yalSoiWv1HeQg/OS0WY61lvFPSHnR1n4DZsHCvLdZrFA=="; 86 }; 87 }; 88 "@angular-devkit/schematics-12.0.5" = { ··· 103 sha512 = "yD3y3pK/K5piOgvALFoCCiPp4H8emNa3yZL+vlpEpewVLpF1MM55LeTxc0PI5s0uqtOGVnvcbA5wYgMm3YsUEA=="; 104 }; 105 }; 106 - "@angular-devkit/schematics-12.2.2" = { 107 name = "_at_angular-devkit_slash_schematics"; 108 packageName = "@angular-devkit/schematics"; 109 - version = "12.2.2"; 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.2.tgz"; 112 - sha512 = "KHPxZCSCbVFjaIlBMaxnoA96FnU62HDk8TpWRSnQY2dIkvEUU7+9UmWVodISaQ+MIYur35bFHPJ19im0YkR0tg=="; 113 }; 114 }; 115 "@angular-devkit/schematics-cli-12.1.4" = { ··· 238 sha512 = "GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w=="; 239 }; 240 }; 241 - "@apollo/client-3.4.8" = { 242 name = "_at_apollo_slash_client"; 243 packageName = "@apollo/client"; 244 - version = "3.4.8"; 245 src = fetchurl { 246 - url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.8.tgz"; 247 - sha512 = "/cNqTSwc2Dw8q6FDDjdd30+yvhP7rI0Fvl3Hbro0lTtFuhzkevfNyQaI2jAiOrjU6Jc0RbanxULaNrX7UmvjSQ=="; 248 }; 249 }; 250 "@apollo/protobufjs-1.2.2" = { ··· 2200 sha512 = "zHISeJ5jcHSo3i2bI5RHb0XEJ1JGxQ/QQzU2FLPcJxohNohJV8jHCM1FSrOUxTspyDRSSULg3iKQa1FJ4EsSiQ=="; 2201 }; 2202 }; 2203 - "@expo/apple-utils-0.0.0-alpha.20" = { 2204 name = "_at_expo_slash_apple-utils"; 2205 packageName = "@expo/apple-utils"; 2206 - version = "0.0.0-alpha.20"; 2207 src = fetchurl { 2208 - url = "https://registry.npmjs.org/@expo/apple-utils/-/apple-utils-0.0.0-alpha.20.tgz"; 2209 - sha512 = "L/M9NPNlT1e38whA3M4QdnIDCClj6Y2GPXFOxBxuwzlmh847RHwZ/ojJpVP8sLVC+is54DS1hU9vtDkiPHGPRw=="; 2210 }; 2211 }; 2212 "@expo/bunyan-4.0.0" = { ··· 2218 sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="; 2219 }; 2220 }; 2221 - "@expo/config-5.0.8" = { 2222 name = "_at_expo_slash_config"; 2223 packageName = "@expo/config"; 2224 - version = "5.0.8"; 2225 src = fetchurl { 2226 - url = "https://registry.npmjs.org/@expo/config/-/config-5.0.8.tgz"; 2227 - sha512 = "chxcjQh4H/suzvYi+p30VnGXSHbsiVsGFwEYIZbOw4ByjrCnzeD644KolbpeQ2/oWK3atci01Qcxc1TADSixHQ=="; 2228 }; 2229 }; 2230 - "@expo/config-plugins-3.0.8" = { 2231 name = "_at_expo_slash_config-plugins"; 2232 packageName = "@expo/config-plugins"; 2233 - version = "3.0.8"; 2234 src = fetchurl { 2235 - url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-3.0.8.tgz"; 2236 - sha512 = "reNYaYklOIq8QUY5ua1ubSRhVgY7hllvjingo22HHSaGhX4UvFFKDGYrjBdjcutHD6jw/eYLa8yJS74o1/rqkg=="; 2237 }; 2238 }; 2239 "@expo/config-types-42.0.0" = { ··· 2245 sha512 = "Rj02OMZke2MrGa/1Y/EScmR7VuWbDEHPJyvfFyyLbadUt+Yv6isCdeFzDt71I7gJlPR9T4fzixeYLrtXXOTq0w=="; 2246 }; 2247 }; 2248 - "@expo/dev-server-0.1.83" = { 2249 name = "_at_expo_slash_dev-server"; 2250 packageName = "@expo/dev-server"; 2251 - version = "0.1.83"; 2252 src = fetchurl { 2253 - url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.83.tgz"; 2254 - sha512 = "4slFmSvQcjwNk3Mb7keNyAAdBIzWqeb8KUqSPYsqo10NGPtEbzmt0jlfqqi/df6cxUFJSgdSo/RJG9W5FT7lAA=="; 2255 }; 2256 }; 2257 - "@expo/dev-tools-0.13.114" = { 2258 name = "_at_expo_slash_dev-tools"; 2259 packageName = "@expo/dev-tools"; 2260 - version = "0.13.114"; 2261 src = fetchurl { 2262 - url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.114.tgz"; 2263 - sha512 = "iPatLxBcGoAzHVzFp7SpP1XbBMe+Qut2K2dU9PgZwcUVOeiESVi/48CXIOgS2PTkm/AJ1qOXprgkEROLlcrnjQ=="; 2264 }; 2265 }; 2266 "@expo/devcert-1.0.0" = { ··· 2290 sha512 = "CDnhjdirUs6OdN5hOSTJ2y3i9EiJMk7Z5iDljC5xyCHCrUex7oyI8vbRsZEojAahxZccgL/PrO+CjakiFFWurg=="; 2291 }; 2292 }; 2293 - "@expo/metro-config-0.1.83" = { 2294 name = "_at_expo_slash_metro-config"; 2295 packageName = "@expo/metro-config"; 2296 - version = "0.1.83"; 2297 src = fetchurl { 2298 - url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.83.tgz"; 2299 - sha512 = "nbmHRzAjnUmUoQjbVdTh8Xq1AXABmwqDi77otD+MxxfVmppMYLKYfMteZnrl75tmWkQY4JfVLD4DfKA3K+bKGA=="; 2300 }; 2301 }; 2302 "@expo/osascript-2.0.30" = { ··· 2317 sha512 = "guFnGAiNLW/JsienEq3NkZk5khTP+RdT/czk/teJUiYLkBy0hLmMTJsNXurGgFwI33+ScEbDvFmN5IOEBGpUDQ=="; 2318 }; 2319 }; 2320 - "@expo/plist-0.0.13" = { 2321 name = "_at_expo_slash_plist"; 2322 packageName = "@expo/plist"; 2323 - version = "0.0.13"; 2324 src = fetchurl { 2325 - url = "https://registry.npmjs.org/@expo/plist/-/plist-0.0.13.tgz"; 2326 - sha512 = "zGPSq9OrCn7lWvwLLHLpHUUq2E40KptUFXn53xyZXPViI0k9lbApcR9KlonQZ95C+ELsf0BQ3gRficwK92Ivcw=="; 2327 }; 2328 }; 2329 - "@expo/prebuild-config-2.0.8" = { 2330 name = "_at_expo_slash_prebuild-config"; 2331 packageName = "@expo/prebuild-config"; 2332 - version = "2.0.8"; 2333 src = fetchurl { 2334 - url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-2.0.8.tgz"; 2335 - sha512 = "mPL7rsZkybohTskB3SdepZx27LM94No3cmS4DLPFxWbtv4gJn7RL+e4eWmIkj2vOGuDnGRwiui7Hh7SFVvRsrg=="; 2336 }; 2337 }; 2338 "@expo/results-1.0.0" = { ··· 2380 sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew=="; 2381 }; 2382 }; 2383 - "@expo/webpack-config-0.14.1" = { 2384 name = "_at_expo_slash_webpack-config"; 2385 packageName = "@expo/webpack-config"; 2386 - version = "0.14.1"; 2387 src = fetchurl { 2388 - url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.14.1.tgz"; 2389 - sha512 = "5FVcpwbTYmMoFwQ3WMyT/NP9sTuXYz7gYhtjZflPfNAWA8vVGuYlELce0P7bHkudQ/RWbpKOTG7uyRwDkjFIvA=="; 2390 }; 2391 }; 2392 "@expo/xcpretty-3.1.4" = { ··· 2452 sha512 = "+gsAnEjgoKB37o+tsMdSLtgqZ9z2PzpvnHx/2IqhRWjQQd7Xc7MbQsbZaQ5qfkioFHLnWGc/+WORpqKPy/sWrg=="; 2453 }; 2454 }; 2455 - "@fluentui/font-icons-mdl2-8.1.9" = { 2456 name = "_at_fluentui_slash_font-icons-mdl2"; 2457 packageName = "@fluentui/font-icons-mdl2"; 2458 - version = "8.1.9"; 2459 src = fetchurl { 2460 - url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.1.9.tgz"; 2461 - sha512 = "kRf14aaw/sAFl+eC6KWY0aaAI7zJAoYfWrikRZXi6yuMv/R8EJcuvYHUK1i3+LllX0wqVNJVGGwNlGXS8eMciw=="; 2462 }; 2463 }; 2464 - "@fluentui/foundation-legacy-8.1.9" = { 2465 name = "_at_fluentui_slash_foundation-legacy"; 2466 packageName = "@fluentui/foundation-legacy"; 2467 - version = "8.1.9"; 2468 src = fetchurl { 2469 - url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.1.9.tgz"; 2470 - sha512 = "jy6dqIBYIv+vTdQ0BJNqn9Je3SrmnrFAUHxxwn1QkFEYf9kIykqzF8Mt45osHER0SmWpSrqGOeGrkGKtki2vrA=="; 2471 }; 2472 }; 2473 "@fluentui/keyboard-key-0.2.17" = { ··· 2488 sha512 = "pVY2m3IC5+LLmMzsaPApX9eKTzpOzdgQwrR3FNTE6mGx3N/+QWYM7fdF+T1ldZQt87dCRSeQnmAo5kqjtxeA/w=="; 2489 }; 2490 }; 2491 - "@fluentui/merge-styles-8.1.4" = { 2492 name = "_at_fluentui_slash_merge-styles"; 2493 packageName = "@fluentui/merge-styles"; 2494 - version = "8.1.4"; 2495 src = fetchurl { 2496 - url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.1.4.tgz"; 2497 - sha512 = "zCAEjZyALk0CGW1H9YNJU+e/MW0P5sFJfrDvac27K4S/dIQvKnOwMUNOWRkNz3yUEt0R9vo0NtiO3cW04cZq3A=="; 2498 }; 2499 }; 2500 "@fluentui/react-7.174.1" = { ··· 2524 sha512 = "JkLWNDe567lhvbnIhbYv9nUWYDIVN06utc3krs0UZBI+A0YZtQmftBtY0ghXo4PSjgozZocdu9sYkkgZOgyRLg=="; 2525 }; 2526 }; 2527 - "@fluentui/react-focus-8.2.0" = { 2528 name = "_at_fluentui_slash_react-focus"; 2529 packageName = "@fluentui/react-focus"; 2530 - version = "8.2.0"; 2531 src = fetchurl { 2532 - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.2.0.tgz"; 2533 - sha512 = "mCCcKth7IKb458DJotIQ8f/NpfTb2abWVXwW6QTl8hQrOY0kp6L5Z4E/n0uNfUL9JsGrmK77Zy9zVQhOtLK2SA=="; 2534 }; 2535 }; 2536 - "@fluentui/react-hooks-8.3.0" = { 2537 name = "_at_fluentui_slash_react-hooks"; 2538 packageName = "@fluentui/react-hooks"; 2539 - version = "8.3.0"; 2540 src = fetchurl { 2541 - url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.3.0.tgz"; 2542 - sha512 = "3dpO5EsFtVQI57XVPcoJokiyqp66dU4tgjKhLEurQCJrbfM6hGA8bq3/D1fZI/FJlI4egzuQEwG1KD4XyC5odQ=="; 2543 }; 2544 }; 2545 "@fluentui/react-window-provider-1.0.2" = { ··· 2569 sha512 = "2otMyJ+s+W+hjBD4BKjwYKKinJUDeIKYKz93qKrrJS0i3fKfftNroy9dHFlIblZ7n747L334plLi3bzQO1bnvA=="; 2570 }; 2571 }; 2572 - "@fluentui/style-utilities-8.3.0" = { 2573 name = "_at_fluentui_slash_style-utilities"; 2574 packageName = "@fluentui/style-utilities"; 2575 - version = "8.3.0"; 2576 src = fetchurl { 2577 - url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.3.0.tgz"; 2578 - sha512 = "NGcT7XiEWR4LbtiPV9900N6DhQKRdG1cJm0efA1pUk640XxVFD0nnR/RmQFPtC3bkDRcVv7jK8E/0SSlRPkkbw=="; 2579 }; 2580 }; 2581 "@fluentui/theme-1.7.4" = { ··· 2587 sha512 = "o4eo7lstLxxXl1g2RR9yz18Yt8yjQO/LbQuZjsiAfv/4Bf0CRnb+3j1F7gxIdBWAchKj9gzaMpIFijfI98pvYQ=="; 2588 }; 2589 }; 2590 - "@fluentui/theme-2.3.0" = { 2591 name = "_at_fluentui_slash_theme"; 2592 packageName = "@fluentui/theme"; 2593 - version = "2.3.0"; 2594 src = fetchurl { 2595 - url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.3.0.tgz"; 2596 - sha512 = "rEx2ZOtfQv8P989l20mENfa+6e6D3peGbeYj2XGuN2BCUMXUj6mhm5kretZMzz6N77+yARfuYfsA2/pUEMRv4Q=="; 2597 }; 2598 }; 2599 - "@fluentui/utilities-8.3.0" = { 2600 name = "_at_fluentui_slash_utilities"; 2601 packageName = "@fluentui/utilities"; 2602 - version = "8.3.0"; 2603 src = fetchurl { 2604 - url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.3.0.tgz"; 2605 - sha512 = "fOvYjUtwDrj0SoZXphbXLclCyrgiJCxkBU4z15g/HaD8nwhndwc5msjllxMO0BWWeEh0CEEbUn61DqPGMot/wQ=="; 2606 }; 2607 }; 2608 "@google-cloud/paginator-3.0.5" = { ··· 2641 sha512 = "d4VSA86eL/AFTe5xtyZX+ePUjE8dIFu2T8zmdeNBSa5/kNgXPCx/o/wbFNHAGLJdGnk1vddRuMESD9HbOC8irw=="; 2642 }; 2643 }; 2644 - "@google-cloud/pubsub-2.16.6" = { 2645 name = "_at_google-cloud_slash_pubsub"; 2646 packageName = "@google-cloud/pubsub"; 2647 - version = "2.16.6"; 2648 src = fetchurl { 2649 - url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.16.6.tgz"; 2650 - sha512 = "Hsa95pbgUmgxmrAQRePqGfpCx/zEqd+ueZDdi4jjvnew6bAP3r0+i+3a1/qkNonQYcWcf0a2tJnZwVDuMznvog=="; 2651 }; 2652 }; 2653 "@graphql-cli/common-4.1.0" = { ··· 3343 sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; 3344 }; 3345 }; 3346 - "@jsii/check-node-1.33.0" = { 3347 name = "_at_jsii_slash_check-node"; 3348 packageName = "@jsii/check-node"; 3349 - version = "1.33.0"; 3350 src = fetchurl { 3351 - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.33.0.tgz"; 3352 - sha512 = "Bajxa09dhkuQ8bM1ve6qtm2oFNhW9/+GaKRh4Deewsk/G86ovLXI/rRS6TfCsSw4E0TGPFWzWy0tBeJuEDo7sw=="; 3353 }; 3354 }; 3355 - "@jsii/spec-1.33.0" = { 3356 name = "_at_jsii_slash_spec"; 3357 packageName = "@jsii/spec"; 3358 - version = "1.33.0"; 3359 src = fetchurl { 3360 - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.33.0.tgz"; 3361 - sha512 = "JUu4NhmFQiLnzegaj4gJ5xAt7YjB2fUteJppIN/J49TQJd1kWxsFFmYIMJDuUiAUzo0Gx99N4YqgcfKK3kLAbQ=="; 3362 }; 3363 }; 3364 "@kwsites/file-exists-1.1.1" = { ··· 4225 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 4226 }; 4227 }; 4228 - "@netlify/build-18.5.0" = { 4229 name = "_at_netlify_slash_build"; 4230 packageName = "@netlify/build"; 4231 - version = "18.5.0"; 4232 src = fetchurl { 4233 - url = "https://registry.npmjs.org/@netlify/build/-/build-18.5.0.tgz"; 4234 - sha512 = "csdnX7uYBTRR+dbLGzKMIRsRHhhAEtkVCBz+NmdlopaYyW7hHMhMayx7C1qxdB6rXqt7u8gP0Gq2tU9zVlgBnQ=="; 4235 }; 4236 }; 4237 "@netlify/cache-utils-2.0.3" = { ··· 4243 sha512 = "820dYhacTHXKxpYm81VlmCJ48ySGj+6GZi1oPLevdTSkMXGM1BphBKUjM/r9+GUE1ocGOh8Vdt3PsDp8f7gS4w=="; 4244 }; 4245 }; 4246 - "@netlify/config-15.4.1" = { 4247 name = "_at_netlify_slash_config"; 4248 packageName = "@netlify/config"; 4249 - version = "15.4.1"; 4250 src = fetchurl { 4251 - url = "https://registry.npmjs.org/@netlify/config/-/config-15.4.1.tgz"; 4252 - sha512 = "YGyA3EO/aiH9PNmhnzBO9qDPu297Q31ej1PQ1ed3Ecr35jmXCwSDaDr65G+6JPSjhOMjh3cuqRmzU3chctutMQ=="; 4253 }; 4254 }; 4255 "@netlify/esbuild-0.13.6" = { ··· 4691 src = fetchurl { 4692 url = "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.3.0.tgz"; 4693 sha512 = "oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q=="; 4694 }; 4695 }; 4696 "@npmcli/git-2.1.0" = { ··· 5413 sha512 = "USSjRAAQYsZFlv43FUPdD+jEGML5/8oLF0rUzPQTtK4q9kvaXr49F5ZplyLz5lox78cLZ0TxN2bIDQ1xhOkulQ=="; 5414 }; 5415 }; 5416 - "@percy/config-1.0.0-beta.65" = { 5417 - name = "_at_percy_slash_config"; 5418 - packageName = "@percy/config"; 5419 - version = "1.0.0-beta.65"; 5420 - src = fetchurl { 5421 - url = "https://registry.npmjs.org/@percy/config/-/config-1.0.0-beta.65.tgz"; 5422 - sha512 = "q6mkrBq+nmDtIDj793lNIodEYmc5wVE7ZwsQ2kNRQIAq4aiIIrD8L5CfhEOSYQ5OzhFq+qUjcZK5GptmheF0sw=="; 5423 - }; 5424 - }; 5425 - "@percy/logger-1.0.0-beta.65" = { 5426 - name = "_at_percy_slash_logger"; 5427 - packageName = "@percy/logger"; 5428 - version = "1.0.0-beta.65"; 5429 - src = fetchurl { 5430 - url = "https://registry.npmjs.org/@percy/logger/-/logger-1.0.0-beta.65.tgz"; 5431 - sha512 = "BJV0pjNlvcj4Y3nuMUGdb5RhjMduK40fRJJ9Lh/2qNk3pmnkGb9rH+GY+/0WY7quupNKxQjjyXcIP7I46/azNg=="; 5432 - }; 5433 - }; 5434 - "@percy/migrate-0.10.0" = { 5435 - name = "_at_percy_slash_migrate"; 5436 - packageName = "@percy/migrate"; 5437 - version = "0.10.0"; 5438 - src = fetchurl { 5439 - url = "https://registry.npmjs.org/@percy/migrate/-/migrate-0.10.0.tgz"; 5440 - sha512 = "3vOmOPmEeMlIZyCEDClZ2VER+4LH/Zp/YhvLkZeKH9RKxbktROF4Dnfs1u3m4YQ1gglerqK6VXFJfOjLJGyVuw=="; 5441 - }; 5442 - }; 5443 "@pm2/agent-2.0.0" = { 5444 name = "_at_pm2_slash_agent"; 5445 packageName = "@pm2/agent"; ··· 5728 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 5729 }; 5730 }; 5731 - "@schematics/angular-12.2.2" = { 5732 name = "_at_schematics_slash_angular"; 5733 packageName = "@schematics/angular"; 5734 - version = "12.2.2"; 5735 src = fetchurl { 5736 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.2.tgz"; 5737 - sha512 = "Nqw9rHOTUIzhCxAgj/J1S9C7YLhrsbLbEKJ8gVy6Aakj4jdJBJ9oqPCLnVpP+48k8hSyIZ6TA5X9eVmrUhDDWQ=="; 5738 }; 5739 }; 5740 "@segment/loosely-validate-event-2.0.0" = { ··· 5764 sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang=="; 5765 }; 5766 }; 5767 - "@serverless/components-3.15.1" = { 5768 name = "_at_serverless_slash_components"; 5769 packageName = "@serverless/components"; 5770 - version = "3.15.1"; 5771 src = fetchurl { 5772 - url = "https://registry.npmjs.org/@serverless/components/-/components-3.15.1.tgz"; 5773 - sha512 = "NTwRE6mc6GUOiN586/ikTxXYF0S7Hd8hc01LGEPYCeOelUxNHCBt7vjuSLxIkSM06RTkjEYGrZgkrkqX5KkirQ=="; 5774 }; 5775 }; 5776 "@serverless/core-1.1.2" = { ··· 5782 sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ=="; 5783 }; 5784 }; 5785 - "@serverless/dashboard-plugin-5.4.3" = { 5786 name = "_at_serverless_slash_dashboard-plugin"; 5787 packageName = "@serverless/dashboard-plugin"; 5788 - version = "5.4.3"; 5789 src = fetchurl { 5790 - url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.4.3.tgz"; 5791 - sha512 = "lgQh7NG5B0T+jr5/CWLZUvW2EqQ5Phzf+XTybM/I+Obwc5jxtpOmPgItDs52kBgyNLDJAqzUN+YRpfE/HBGsoQ=="; 5792 }; 5793 }; 5794 "@serverless/event-mocks-1.1.1" = { ··· 6412 sha512 = "8GAYQ1jDRUQkSpHzJUqXwAkYFOxuWAOGLhIR4aPd/Y/yL12Q/9m7LsKpHKlfKdNE/362Hc9wPI1Yh6opDfxVJg=="; 6413 }; 6414 }; 6415 - "@types/babel-types-7.0.10" = { 6416 name = "_at_types_slash_babel-types"; 6417 packageName = "@types/babel-types"; 6418 - version = "7.0.10"; 6419 src = fetchurl { 6420 - url = "https://registry.npmjs.org/@types/babel-types/-/babel-types-7.0.10.tgz"; 6421 - sha512 = "g7zrcqL4MiRu3jZzdZZYk0g0KcKk2fddXazSdP1PacEpmjihRsNGU50aaEKnPFuKzfN7WkRktUiCXvs4zU9XXQ=="; 6422 }; 6423 }; 6424 "@types/babel__core-7.1.15" = { ··· 6889 sha512 = "h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w=="; 6890 }; 6891 }; 6892 - "@types/http-assert-1.5.2" = { 6893 name = "_at_types_slash_http-assert"; 6894 packageName = "@types/http-assert"; 6895 - version = "1.5.2"; 6896 src = fetchurl { 6897 - url = "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.2.tgz"; 6898 - sha512 = "Ddzuzv/bB2prZnJKlS1sEYhaeT50wfJjhcTTTQLjEsEZJlk3XB4Xohieyq+P4VXIzg7lrQ1Spd/PfRnBpQsdqA=="; 6899 }; 6900 }; 6901 "@types/http-cache-semantics-4.0.1" = { ··· 6988 sha512 = "JCcp6J0GV66Y4ZMDAQCXot4xprYB+Zfd3meK9+INSJeVZwJmHAW30BBEEkPzXswMXuiyReUGOP3GxrADc9wPww=="; 6989 }; 6990 }; 6991 "@types/jscodeshift-0.7.2" = { 6992 name = "_at_types_slash_jscodeshift"; 6993 packageName = "@types/jscodeshift"; ··· 7231 sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; 7232 }; 7233 }; 7234 - "@types/node-14.17.11" = { 7235 name = "_at_types_slash_node"; 7236 packageName = "@types/node"; 7237 - version = "14.17.11"; 7238 src = fetchurl { 7239 - url = "https://registry.npmjs.org/@types/node/-/node-14.17.11.tgz"; 7240 - sha512 = "n2OQ+0Bz6WEsUjrvcHD1xZ8K+Kgo4cn9/w94s1bJS690QMUWfJPW/m7CCb7gPkA1fcYwL2UpjXP/rq/Eo41m6w=="; 7241 }; 7242 }; 7243 "@types/node-15.12.5" = { ··· 7276 sha512 = "8h7k1YgQKxKXWckzFCMfsIwn0Y61UK6tlD6y2lOb3hTOIMlK3t9/QwHOhc81TwU+RMf0As5fj7NPjroERCnejQ=="; 7277 }; 7278 }; 7279 - "@types/node-16.6.0" = { 7280 - name = "_at_types_slash_node"; 7281 - packageName = "@types/node"; 7282 - version = "16.6.0"; 7283 - src = fetchurl { 7284 - url = "https://registry.npmjs.org/@types/node/-/node-16.6.0.tgz"; 7285 - sha512 = "OyiZPohMMjZEYqcVo/UJ04GyAxXOJEZO/FpzyXxcH4r/ArrVoXHf4MbUrkLp0Tz7/p1mMKpo5zJ6ZHl8XBNthQ=="; 7286 - }; 7287 - }; 7288 "@types/node-16.6.1" = { 7289 name = "_at_types_slash_node"; 7290 packageName = "@types/node"; ··· 7294 sha512 = "Sr7BhXEAer9xyGuCN3Ek9eg9xPviCF2gfu9kTfuU2HkTVAMYSDeX40fvpmo72n5nansg3nsBjuQBrsS28r+NUw=="; 7295 }; 7296 }; 7297 - "@types/node-16.7.1" = { 7298 name = "_at_types_slash_node"; 7299 packageName = "@types/node"; 7300 - version = "16.7.1"; 7301 src = fetchurl { 7302 - url = "https://registry.npmjs.org/@types/node/-/node-16.7.1.tgz"; 7303 - sha512 = "ncRdc45SoYJ2H4eWU9ReDfp3vtFqDYhjOsKlFFUDEn8V1Bgr2RjYal8YT5byfadWIRluhPFU6JiDOl0H6Sl87A=="; 7304 }; 7305 }; 7306 "@types/node-6.14.13" = { ··· 7859 src = fetchurl { 7860 url = "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz"; 7861 sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw=="; 7862 - }; 7863 - }; 7864 - "@types/zen-observable-0.8.3" = { 7865 - name = "_at_types_slash_zen-observable"; 7866 - packageName = "@types/zen-observable"; 7867 - version = "0.8.3"; 7868 - src = fetchurl { 7869 - url = "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.8.3.tgz"; 7870 - sha512 = "fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw=="; 7871 }; 7872 }; 7873 "@typescript-eslint/eslint-plugin-4.29.3" = { ··· 10102 sha512 = "lrohEjde2TmmDTO7FlOs8x5QQbAS0Sd3/t0TaK2TWaodfzi92QAvIsq321Mol6p6oEqmjm8POIDHW1EuJd7XMA=="; 10103 }; 10104 }; 10105 - "apollo-server-core-3.2.0" = { 10106 name = "apollo-server-core"; 10107 packageName = "apollo-server-core"; 10108 - version = "3.2.0"; 10109 src = fetchurl { 10110 - url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.2.0.tgz"; 10111 - sha512 = "huNV76BOQVTsRqqLsBfZofnyKclMM3XewYDATY1dGtZ/1F7Zi/qpD1LF7S70S1d048idSC4KRLZp6F/tKIsh9w=="; 10112 }; 10113 }; 10114 "apollo-server-env-3.1.0" = { ··· 10156 sha512 = "A2gF2e85vvDugPlajbhr0A14cDFDIGX0mteNOJ8P3Z3cIM0D4hwrWxJidI+SzobefDIyIHu1dynFedJVhV0euQ=="; 10157 }; 10158 }; 10159 - "apollo-server-express-3.2.0" = { 10160 name = "apollo-server-express"; 10161 packageName = "apollo-server-express"; 10162 - version = "3.2.0"; 10163 src = fetchurl { 10164 - url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.2.0.tgz"; 10165 - sha512 = "5I5HI1//I5FHZ3Uo/WUJz/xAZkhFPgPtc8U5AgvhlqqcDPfKxwUU0PxDW4BF/0lt3HDeqsDgvoc0Etp9siNM9g=="; 10166 }; 10167 }; 10168 "apollo-server-plugin-base-0.13.0" = { ··· 11578 sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg=="; 11579 }; 11580 }; 11581 - "aws-sdk-2.974.0" = { 11582 name = "aws-sdk"; 11583 packageName = "aws-sdk"; 11584 - version = "2.974.0"; 11585 src = fetchurl { 11586 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.974.0.tgz"; 11587 - sha512 = "/oNslIqWT8f9MKgl4jMS+B/M0pIPjWYsXC+DeiFKSH6xMAaVDURr+Qtze5FqEz13mMroO5PDQKfHaC/Z/yoZ3w=="; 11588 }; 11589 }; 11590 "aws-sign2-0.6.0" = { ··· 11614 sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 11615 }; 11616 }; 11617 - "aws4-1.9.1" = { 11618 - name = "aws4"; 11619 - packageName = "aws4"; 11620 - version = "1.9.1"; 11621 - src = fetchurl { 11622 - url = "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz"; 11623 - sha512 = "wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug=="; 11624 - }; 11625 - }; 11626 "axios-0.19.2" = { 11627 name = "axios"; 11628 packageName = "axios"; ··· 14459 sha512 = "GtKwd/4etuk1hNeprXoESBO1RSeRYJMXKf+O0qHmWdUomLT8ysNEfX/4bZFXr3BK6eukpHiEnhY2uMtEHDM2ng=="; 14460 }; 14461 }; 14462 - "bull-3.29.0" = { 14463 name = "bull"; 14464 packageName = "bull"; 14465 - version = "3.29.0"; 14466 src = fetchurl { 14467 - url = "https://registry.npmjs.org/bull/-/bull-3.29.0.tgz"; 14468 - sha512 = "ad9BvfPczwzkQ9wpM6jtAUNthyAGdHoJZVpY3dTp8jPYHETH9l4LdxJYjrKNBHjT4YUeqLzj/2r1L2MYre2ETg=="; 14469 }; 14470 }; 14471 "bunyan-1.5.1" = { ··· 14657 sha512 = "a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ=="; 14658 }; 14659 }; 14660 - "cacache-15.2.0" = { 14661 name = "cacache"; 14662 packageName = "cacache"; 14663 - version = "15.2.0"; 14664 src = fetchurl { 14665 - url = "https://registry.npmjs.org/cacache/-/cacache-15.2.0.tgz"; 14666 - sha512 = "uKoJSHmnrqXgthDFx/IU6ED/5xd+NNGe+Bb+kLZy7Ku4P+BaiWEUflAKPZ7eAzsYGcsAGASJZsybXp+quEcHTw=="; 14667 }; 14668 }; 14669 "cache-base-1.0.1" = { ··· 14972 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 14973 }; 14974 }; 14975 - "caniuse-lite-1.0.30001251" = { 14976 name = "caniuse-lite"; 14977 packageName = "caniuse-lite"; 14978 - version = "1.0.30001251"; 14979 src = fetchurl { 14980 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001251.tgz"; 14981 - sha512 = "HOe1r+9VkU4TFmnU70z+r7OLmtR+/chB1rdcJUeQlAinjEeb0cKL20tlAtOagNZhbrtLnCvV19B4FmF1rgzl6A=="; 14982 }; 14983 }; 14984 "canvas-2.8.0" = { ··· 15555 src = fetchurl { 15556 url = "https://registry.npmjs.org/child-process-ext/-/child-process-ext-2.1.1.tgz"; 15557 sha512 = "0UQ55f51JBkOFa+fvR76ywRzxiPwQS3Xe8oe5bZRphpv+dIMeerW5Zn5e4cUy4COJwVtJyU0R79RMnw+aCqmGA=="; 15558 }; 15559 }; 15560 "chloride-2.4.1" = { ··· 16646 sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg=="; 16647 }; 16648 }; 16649 - "codemaker-1.33.0" = { 16650 name = "codemaker"; 16651 packageName = "codemaker"; 16652 - version = "1.33.0"; 16653 src = fetchurl { 16654 - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.33.0.tgz"; 16655 - sha512 = "u9PYqE1HaKINgMDpV7HyYVbtPDbHJNSPn1rTsYSsUkmi1DH1/3tK5nBJ7eUGNbkMP+k2hz7SQGTVcWEMRNAZ0w=="; 16656 }; 16657 }; 16658 "codepage-1.4.0" = { ··· 17699 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 17700 }; 17701 }; 17702 - "constructs-3.3.131" = { 17703 name = "constructs"; 17704 packageName = "constructs"; 17705 - version = "3.3.131"; 17706 src = fetchurl { 17707 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.131.tgz"; 17708 - sha512 = "u2c7EzT7ZIZJs4SW5lXotZkoJOoTaiUJuZr0WWG+hfiyI91MbEe1pgthS2NyrHMJuEfyDzWtLphvPHk6C06qhg=="; 17709 }; 17710 }; 17711 "consume-http-header-1.0.0" = { ··· 17781 sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578"; 17782 }; 17783 }; 17784 - "contentful-management-7.32.1" = { 17785 name = "contentful-management"; 17786 packageName = "contentful-management"; 17787 - version = "7.32.1"; 17788 src = fetchurl { 17789 - url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.32.1.tgz"; 17790 - sha512 = "h45bwyI1Zv6ZCJCtkeo/xtNJNK9LU4s6DqudqQC/FWUH6+op59xxZ4V+KWaCJ14nR8Rh+hcwXIHzF4VNhGSEmg=="; 17791 }; 17792 }; 17793 "contentful-sdk-core-6.8.0" = { ··· 18294 sha512 = "5+5VxRFmSf97nM8Jr2wzOwLqRo6zphH2aX+7KsAUONObyzakDNq2G/bgbhinxB4PoV9L3aXQYhiDKyIKWd2c8g=="; 18295 }; 18296 }; 18297 - "core-js-3.16.2" = { 18298 name = "core-js"; 18299 packageName = "core-js"; 18300 - version = "3.16.2"; 18301 src = fetchurl { 18302 - url = "https://registry.npmjs.org/core-js/-/core-js-3.16.2.tgz"; 18303 - sha512 = "P0KPukO6OjMpjBtHSceAZEWlDD1M2Cpzpg6dBbrjFqFhBHe/BwhxaP820xKOjRn/lZRQirrCusIpLS/n2sgXLQ=="; 18304 }; 18305 }; 18306 - "core-js-compat-3.16.2" = { 18307 name = "core-js-compat"; 18308 packageName = "core-js-compat"; 18309 - version = "3.16.2"; 18310 src = fetchurl { 18311 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.2.tgz"; 18312 - sha512 = "4lUshXtBXsdmp8cDWh6KKiHUg40AjiuPD3bOWkNVsr1xkAhpUqCjaZ8lB1bKx9Gb5fXcbRbFJ4f4qpRIRTuJqQ=="; 18313 }; 18314 }; 18315 - "core-js-pure-3.16.2" = { 18316 name = "core-js-pure"; 18317 packageName = "core-js-pure"; 18318 - version = "3.16.2"; 18319 src = fetchurl { 18320 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.2.tgz"; 18321 - sha512 = "oxKe64UH049mJqrKkynWp6Vu0Rlm/BTXO/bJZuN2mmR3RtOFNepLlSWDd1eo16PzHpQAoNG97rLU1V/YxesJjw=="; 18322 }; 18323 }; 18324 "core-util-is-1.0.2" = { ··· 20490 sha512 = "E1GI7jMI57hL30OX6Ht/hfQU8DO4AuB9m72WFm4c38GNbUD4Q03//XZaOIHZiY+H1xUaomcot5yk2q/qIZQkGQ=="; 20491 }; 20492 }; 20493 - "deasync-0.1.22" = { 20494 name = "deasync"; 20495 packageName = "deasync"; 20496 - version = "0.1.22"; 20497 src = fetchurl { 20498 - url = "https://registry.npmjs.org/deasync/-/deasync-0.1.22.tgz"; 20499 - sha512 = "o21R8Vhv3wX0E19jpATUJIAinQ1I2rHIlAnzRRsMynWlIrvU0HbCwjpquPIYR544Tvg9z/L+NZQev5cjVD1/nQ=="; 20500 }; 20501 }; 20502 "death-1.1.0" = { ··· 22353 sha512 = "3VdM/SXBZX2omc9JF9nOPCtDaYQ67BGp5CoLpIQlO2KCAPETs8TcDHacF26jXadGbvUteZzRTeos2fhID5+ucQ=="; 22354 }; 22355 }; 22356 - "dompurify-2.3.0" = { 22357 - name = "dompurify"; 22358 - packageName = "dompurify"; 22359 - version = "2.3.0"; 22360 - src = fetchurl { 22361 - url = "https://registry.npmjs.org/dompurify/-/dompurify-2.3.0.tgz"; 22362 - sha512 = "VV5C6Kr53YVHGOBKO/F86OYX6/iLTw2yVSI721gKetxpHCK/V5TaLEf9ODjRgl1KLSWRMY6cUhAbv/c+IUnwQw=="; 22363 - }; 22364 - }; 22365 "dompurify-2.3.1" = { 22366 name = "dompurify"; 22367 packageName = "dompurify"; ··· 22893 sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ=="; 22894 }; 22895 }; 22896 - "electron-to-chromium-1.3.816" = { 22897 name = "electron-to-chromium"; 22898 packageName = "electron-to-chromium"; 22899 - version = "1.3.816"; 22900 src = fetchurl { 22901 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.816.tgz"; 22902 - sha512 = "/AvJPIJldO0NkwkfpUD7u1e4YEGRFBQpFuvl9oGCcVgWOObsZB1loxVGeVUJB9kmvfsBUUChPYdgRzx6+AKNyg=="; 22903 }; 22904 }; 22905 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 24803 sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929"; 24804 }; 24805 }; 24806 - "expo-pwa-0.0.93" = { 24807 name = "expo-pwa"; 24808 packageName = "expo-pwa"; 24809 - version = "0.0.93"; 24810 src = fetchurl { 24811 - url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.93.tgz"; 24812 - sha512 = "WxmDFqFDtHwyzqHb0p5XDXxm0bWNTkTiViWQl48tGGAhCNKcLOVTFIfMwBK0VGrq6yWopNCNEu3E+nldnJq15g=="; 24813 }; 24814 }; 24815 "express-2.5.11" = { ··· 26736 src = fetchurl { 26737 url = "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz"; 26738 sha512 = "m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA=="; 26739 - }; 26740 - }; 26741 - "form-data-3.0.0" = { 26742 - name = "form-data"; 26743 - packageName = "form-data"; 26744 - version = "3.0.0"; 26745 - src = fetchurl { 26746 - url = "https://registry.npmjs.org/form-data/-/form-data-3.0.0.tgz"; 26747 - sha512 = "CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg=="; 26748 }; 26749 }; 26750 "form-data-3.0.1" = { ··· 28548 sha1 = "2edeeb958084d0f8ea7988e5d995b1c7dfc14777"; 28549 }; 28550 }; 28551 - "goldengate-10.1.0" = { 28552 - name = "goldengate"; 28553 - packageName = "goldengate"; 28554 - version = "10.1.0"; 28555 - src = fetchurl { 28556 - url = "https://registry.npmjs.org/goldengate/-/goldengate-10.1.0.tgz"; 28557 - sha512 = "xeMOmvY6a7MBUjU1YPmREgDr7qiM5wZWXzdAZsnJxd0/fd5T0gYNi4saJ2eGvDGSmI+TehDn1bYF1Tvlo2GiBQ=="; 28558 - }; 28559 - }; 28560 "goldengate-10.3.0" = { 28561 name = "goldengate"; 28562 packageName = "goldengate"; ··· 29232 sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; 29233 }; 29234 }; 29235 - "har-validator-5.1.3" = { 29236 - name = "har-validator"; 29237 - packageName = "har-validator"; 29238 - version = "5.1.3"; 29239 - src = fetchurl { 29240 - url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz"; 29241 - sha512 = "sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g=="; 29242 - }; 29243 - }; 29244 "har-validator-5.1.5" = { 29245 name = "har-validator"; 29246 packageName = "har-validator"; ··· 30511 sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 30512 }; 30513 }; 30514 - "http-signature-1.3.1" = { 30515 - name = "http-signature"; 30516 - packageName = "http-signature"; 30517 - version = "1.3.1"; 30518 - src = fetchurl { 30519 - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.3.1.tgz"; 30520 - sha512 = "Y29YKEc8MQsjch/VzkUVJ+2MXd9WcR42fK5u36CZf4G8bXw2DXMTWuESiB0R6m59JAWxlPPw5/Fri/t/AyyueA=="; 30521 - }; 30522 - }; 30523 "http-signature-1.3.5" = { 30524 name = "http-signature"; 30525 packageName = "http-signature"; ··· 31661 src = fetchurl { 31662 url = "https://registry.npmjs.org/inquirer-autosubmit-prompt/-/inquirer-autosubmit-prompt-0.2.0.tgz"; 31663 sha512 = "mzNrusCk5L6kSzlN0Ioddn8yzrhYNLli+Sn2ZxMuLechMYAzakiFCIULxsxlQb5YKzthLGfrFACcWoAvM7p04Q=="; 31664 - }; 31665 - }; 31666 - "inquirer-glob-prompt-0.1.0" = { 31667 - name = "inquirer-glob-prompt"; 31668 - packageName = "inquirer-glob-prompt"; 31669 - version = "0.1.0"; 31670 - src = fetchurl { 31671 - url = "https://registry.npmjs.org/inquirer-glob-prompt/-/inquirer-glob-prompt-0.1.0.tgz"; 31672 - sha512 = "Zw9XYJdrBBJ5TZjLH8Nu8PIa54huvkP0xeNOTtKh3bis0DNAJWMtdpT9PIJBkqheMUnwIPmv8jkjOr7aPKYFqg=="; 31673 }; 31674 }; 31675 "insert-module-globals-7.2.1" = { ··· 34399 sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; 34400 }; 34401 }; 34402 - "jsii-1.33.0" = { 34403 name = "jsii"; 34404 packageName = "jsii"; 34405 - version = "1.33.0"; 34406 src = fetchurl { 34407 - url = "https://registry.npmjs.org/jsii/-/jsii-1.33.0.tgz"; 34408 - sha512 = "0WIWlrRtoQNrp7iyEyNMoPRzvjd2EK8/Zgn/tWyzpjaMZur9HevZuk4lduCthTly/Gs9A7u1Ajdyp1cBrALeBQ=="; 34409 }; 34410 }; 34411 - "jsii-pacmak-1.33.0" = { 34412 name = "jsii-pacmak"; 34413 packageName = "jsii-pacmak"; 34414 - version = "1.33.0"; 34415 src = fetchurl { 34416 - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.33.0.tgz"; 34417 - sha512 = "STcsk5wmAlJSCEzl5nTPAJ5emSZLIPJYoYjBCMcwv62MI1B4zozSSsmbpI/4oPQWh9c2fD2CJIEbwyct4KTPKQ=="; 34418 }; 34419 }; 34420 - "jsii-reflect-1.33.0" = { 34421 name = "jsii-reflect"; 34422 packageName = "jsii-reflect"; 34423 - version = "1.33.0"; 34424 src = fetchurl { 34425 - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.33.0.tgz"; 34426 - sha512 = "FH3lextueMXDFezWEPRYNEmEDcFg2Tvh4Wdjs0tBi+oSmewK3I+xCAVXmnpE8CRC2RW1zOLutH9hQbQnrKtsOw=="; 34427 }; 34428 }; 34429 - "jsii-rosetta-1.33.0" = { 34430 name = "jsii-rosetta"; 34431 packageName = "jsii-rosetta"; 34432 - version = "1.33.0"; 34433 src = fetchurl { 34434 - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.33.0.tgz"; 34435 - sha512 = "cUhDs2V2wYg7LFgm/X/uken8oF9re3vRORD08s0+z9Re8tt0pEehKmCotx3HYFhYrRhCEVvm66xjQt0t62GzXg=="; 34436 }; 34437 }; 34438 - "jsii-srcmak-0.1.333" = { 34439 name = "jsii-srcmak"; 34440 packageName = "jsii-srcmak"; 34441 - version = "0.1.333"; 34442 src = fetchurl { 34443 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.333.tgz"; 34444 - sha512 = "DLPIfxoeCy5sKsxKP0kB0aENn/wrrCTG95IJy8dDUcvQbRTF3vZynMwlzDyNr72mH5l/QKHFsW2UDoz7sTzJ0Q=="; 34445 }; 34446 }; 34447 "json-bigint-1.0.0" = { ··· 34732 sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 34733 }; 34734 }; 34735 - "json2jsii-0.2.5" = { 34736 name = "json2jsii"; 34737 packageName = "json2jsii"; 34738 - version = "0.2.5"; 34739 src = fetchurl { 34740 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.5.tgz"; 34741 - sha512 = "hdeyAlmCSMocOe+VFOp5IjP/7KrZNy4b/9a4fifnb75D3FCpxvVoSwToqMF25UaUfXVisNmGe9RlBxxcAiDiLw=="; 34742 }; 34743 }; 34744 "json3-3.2.6" = { ··· 36146 sha512 = "lD6PgHipqedfFcTEf/9mDF3s4KGO/lecr02W6zHBJHohNphuBUZS1z68kKRJAl3N4iHmDEfLxt+G86PBP0jhHw=="; 36147 }; 36148 }; 36149 - "lightning-4.0.0" = { 36150 - name = "lightning"; 36151 - packageName = "lightning"; 36152 - version = "4.0.0"; 36153 - src = fetchurl { 36154 - url = "https://registry.npmjs.org/lightning/-/lightning-4.0.0.tgz"; 36155 - sha512 = "HtEF7Lsw8qdEeQTsYY6c6QK6PFrG0YV3OBPWL6VnsAr25t+HDEsH/Fna6EIivqrQ8SVDjqX5YwMcAhunTelaVA=="; 36156 - }; 36157 - }; 36158 "lightning-4.1.0" = { 36159 name = "lightning"; 36160 packageName = "lightning"; ··· 36308 sha512 = "04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw=="; 36309 }; 36310 }; 36311 - "ln-accounting-4.3.1" = { 36312 name = "ln-accounting"; 36313 packageName = "ln-accounting"; 36314 - version = "4.3.1"; 36315 src = fetchurl { 36316 - url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-4.3.1.tgz"; 36317 - sha512 = "EBEeBymqktoaViGAG5aVmgIOZpWc6IwDqxq93ZYYIw+Uc9Vy/86nUDPx8A/jJC0f8lwEGcqT+hnSIiBF4SyqeA=="; 36318 }; 36319 }; 36320 "ln-service-51.8.2" = { ··· 36335 sha512 = "1SU0eG9/LDy6k3UGXaahmoe1wOahAJkaidWpLX5Nmlfq72I0arad420smma5ZGXAW4wNlGR/gx68KZzzYI5D4A=="; 36336 }; 36337 }; 36338 - "ln-service-52.0.0" = { 36339 - name = "ln-service"; 36340 - packageName = "ln-service"; 36341 - version = "52.0.0"; 36342 - src = fetchurl { 36343 - url = "https://registry.npmjs.org/ln-service/-/ln-service-52.0.0.tgz"; 36344 - sha512 = "JxGGEqu1MJ1jnJN0cWWBsmEqi9qwbvsfM/AHslvKv7WHhMYFthp9HgGGcLn23oiYMM1boGtvqtkWuvqMf9P8AQ=="; 36345 - }; 36346 - }; 36347 "ln-service-52.0.1" = { 36348 name = "ln-service"; 36349 packageName = "ln-service"; ··· 36362 sha512 = "2yqc59OhK0affnkwhgw7iY4x2tKZTb8y8KSWxRHn6cSXL3clUJgXdTNOGr4Jp8j1TkTl0iRVnLSNZlRbtU4vVA=="; 36363 }; 36364 }; 36365 - "ln-telegram-3.2.10" = { 36366 name = "ln-telegram"; 36367 packageName = "ln-telegram"; 36368 - version = "3.2.10"; 36369 src = fetchurl { 36370 - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.10.tgz"; 36371 - sha512 = "FEI6wPb/DzpzwfWV8PPFPWq/OSWp6ETv7rEofCTCCodd/hRQGzXoJ7mDmyKFTune5TASXDBMlghol/EgZswkNg=="; 36372 }; 36373 }; 36374 "load-ip-set-2.2.1" = { ··· 39386 sha512 = "yiAivd4xFOH/WXlUi6v/nKopBh1QLzwjFi36NK88cGt/PRXI8WeBASqY+YSjIVWvQTx3hR8zHKDBMV6hWmglNA=="; 39387 }; 39388 }; 39389 - "mem-fs-editor-9.1.0" = { 39390 name = "mem-fs-editor"; 39391 packageName = "mem-fs-editor"; 39392 - version = "9.1.0"; 39393 src = fetchurl { 39394 - url = "https://registry.npmjs.org/mem-fs-editor/-/mem-fs-editor-9.1.0.tgz"; 39395 - sha512 = "BrfhBTJ2oEmE9HRCbv70e7gnpflIDnV7OvDrCt5bcgoORTyleyXz7WberDt5+S/gqMpGfXpwkoXcsGoSMfb2xg=="; 39396 }; 39397 }; 39398 "memfs-3.2.2" = { ··· 39665 sha512 = "TIurLf/ustQNMXi5foClGTcEsRvH6DCvxeAKu68OrwHMOSM/M1pgPXb7qe52Svk1ClvmZuAVpLtP5FWKzPr/sw=="; 39666 }; 39667 }; 39668 - "mermaid-8.11.5" = { 39669 name = "mermaid"; 39670 packageName = "mermaid"; 39671 - version = "8.11.5"; 39672 src = fetchurl { 39673 - url = "https://registry.npmjs.org/mermaid/-/mermaid-8.11.5.tgz"; 39674 - sha512 = "lbIaDQlFoIQLxnLy8hZgfS6L7gt2Wxlk83fudLslUEhj4yafHyVjzGOlojJQxgsLU5khEANhxLbo0xebtOrhXQ=="; 39675 }; 39676 }; 39677 "meros-1.1.4" = { ··· 40097 sha512 = "BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="; 40098 }; 40099 }; 40100 - "mime-db-1.43.0" = { 40101 - name = "mime-db"; 40102 - packageName = "mime-db"; 40103 - version = "1.43.0"; 40104 - src = fetchurl { 40105 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz"; 40106 - sha512 = "+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ=="; 40107 - }; 40108 - }; 40109 "mime-db-1.44.0" = { 40110 name = "mime-db"; 40111 packageName = "mime-db"; ··· 40131 src = fetchurl { 40132 url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz"; 40133 sha512 = "lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ=="; 40134 - }; 40135 - }; 40136 - "mime-types-2.1.26" = { 40137 - name = "mime-types"; 40138 - packageName = "mime-types"; 40139 - version = "2.1.26"; 40140 - src = fetchurl { 40141 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz"; 40142 - sha512 = "01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ=="; 40143 }; 40144 }; 40145 "mime-types-2.1.27" = { ··· 41825 sha512 = "4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg=="; 41826 }; 41827 }; 41828 - "needle-2.8.0" = { 41829 - name = "needle"; 41830 - packageName = "needle"; 41831 - version = "2.8.0"; 41832 - src = fetchurl { 41833 - url = "https://registry.npmjs.org/needle/-/needle-2.8.0.tgz"; 41834 - sha512 = "ZTq6WYkN/3782H1393me3utVYdq2XyqNUFBsprEE3VMAT0+hP/cItpnITpqsY6ep2yeFE4Tqtqwc74VqUlUYtw=="; 41835 - }; 41836 - }; 41837 "needle-2.9.0" = { 41838 name = "needle"; 41839 packageName = "needle"; ··· 41977 src = fetchurl { 41978 url = "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz"; 41979 sha512 = "dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg=="; 41980 }; 41981 }; 41982 "netrc-parser-3.1.6" = { ··· 42671 src = fetchurl { 42672 url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz"; 42673 sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907"; 42674 }; 42675 }; 42676 "node-version-alias-1.0.1" = { ··· 43997 sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; 43998 }; 43999 }; 44000 - "oo-ascii-tree-1.33.0" = { 44001 name = "oo-ascii-tree"; 44002 packageName = "oo-ascii-tree"; 44003 - version = "1.33.0"; 44004 src = fetchurl { 44005 - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.33.0.tgz"; 44006 - sha512 = "pthBVMVqOl3GZ6t9WjgLP9p24Oz4oVQCabhhIsY+nG9rywUtHOfqgmSm5AD3BbrJc0cP84dyDJFVlu/bVaKyjw=="; 44007 }; 44008 }; 44009 "opal-runtime-1.0.11" = { ··· 47814 sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; 47815 }; 47816 }; 47817 "preferred-pm-3.0.3" = { 47818 name = "preferred-pm"; 47819 packageName = "preferred-pm"; ··· 48381 sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; 48382 }; 48383 }; 48384 "promise-queue-2.2.5" = { 48385 name = "promise-queue"; 48386 packageName = "promise-queue"; ··· 48462 sha1 = "8e57123c396ab988897fb327fd3aedc3e735e4fe"; 48463 }; 48464 }; 48465 - "prompt-1.1.0" = { 48466 name = "prompt"; 48467 packageName = "prompt"; 48468 - version = "1.1.0"; 48469 src = fetchurl { 48470 - url = "https://registry.npmjs.org/prompt/-/prompt-1.1.0.tgz"; 48471 - sha512 = "ec1vUPXCplDBDUVD8uPa3XGA+OzLrO40Vxv3F1uxoiZGkZhdctlK2JotcHq5X6ExjocDOGwGdCSXloGNyU5L1Q=="; 48472 }; 48473 }; 48474 "promptly-2.2.0" = { ··· 49866 sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 49867 }; 49868 }; 49869 - "qs-6.9.1" = { 49870 - name = "qs"; 49871 - packageName = "qs"; 49872 - version = "6.9.1"; 49873 - src = fetchurl { 49874 - url = "https://registry.npmjs.org/qs/-/qs-6.9.1.tgz"; 49875 - sha512 = "Cxm7/SS/y/Z3MHWSxXb8lIFqgqBowP5JMlTUFyJN88y0SGQhVmZnqFK/PeuMX9LzUyWsqqhNxIyg0jlzq946yA=="; 49876 - }; 49877 - }; 49878 "query-string-1.0.1" = { 49879 name = "query-string"; 49880 packageName = "query-string"; ··· 50487 sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; 50488 }; 50489 }; 50490 - "react-devtools-core-4.16.0" = { 50491 name = "react-devtools-core"; 50492 packageName = "react-devtools-core"; 50493 - version = "4.16.0"; 50494 src = fetchurl { 50495 - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.16.0.tgz"; 50496 - sha512 = "fqyVbp+wVVey6O4uVBk5s3J/vTiPludp7lulr6a8asTBm7DIA0vLBbjmAOLCnOlkWcgdy4mjsqOgNCbu8uICWw=="; 50497 }; 50498 }; 50499 "react-dom-16.14.0" = { ··· 50766 sha512 = "aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng=="; 50767 }; 50768 }; 50769 - "read-package-json-4.0.0" = { 50770 name = "read-package-json"; 50771 packageName = "read-package-json"; 50772 - version = "4.0.0"; 50773 src = fetchurl { 50774 - url = "https://registry.npmjs.org/read-package-json/-/read-package-json-4.0.0.tgz"; 50775 - sha512 = "EBQiek1udd0JKvUzaViAWHYVQRuQZ0IP0LWUOqVCJaZIX92ZO86dOpvsTOO3esRIQGgl7JhFBaGqW41VI57KvQ=="; 50776 }; 50777 }; 50778 "read-package-json-fast-2.0.3" = { ··· 56409 sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung=="; 56410 }; 56411 }; 56412 - "ssb-db2-2.3.0" = { 56413 name = "ssb-db2"; 56414 packageName = "ssb-db2"; 56415 - version = "2.3.0"; 56416 src = fetchurl { 56417 - url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.3.0.tgz"; 56418 - sha512 = "D3LLv5Vp5NDYrFmszM0JQ5NwSoNNUBepDzedOULXvWZ6agcr8fRijiFrgMDGyexJN9WW9eTlJk+xN3sSiX6rag=="; 56419 }; 56420 }; 56421 "ssb-ebt-5.6.7" = { ··· 56697 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 56698 }; 56699 }; 56700 - "sscaff-1.2.52" = { 56701 name = "sscaff"; 56702 packageName = "sscaff"; 56703 - version = "1.2.52"; 56704 src = fetchurl { 56705 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.52.tgz"; 56706 - sha512 = "H9068eQM8lTFbvS6m2WdpYRNyH14VqP74dK6WGg3VCF6vBSRR3fbbPP0mTamsG4sA3h+c2efB3107y/15JfDEg=="; 56707 }; 56708 }; 56709 "ssh-config-1.1.6" = { ··· 58677 sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA=="; 58678 }; 58679 }; 58680 - "systeminformation-5.8.2" = { 58681 name = "systeminformation"; 58682 packageName = "systeminformation"; 58683 - version = "5.8.2"; 58684 src = fetchurl { 58685 - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.8.2.tgz"; 58686 - sha512 = "XxK/gHdfGFtCAv7JLwGlPoU8bfkcTHgcGSU9LqgbdURwOgwyYlfX+jailzh2eX//9r+Wg53oOv+/DE30KNK2qA=="; 58687 }; 58688 }; 58689 "table-3.8.3" = { ··· 58903 sha512 = "0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg=="; 58904 }; 58905 }; 58906 - "tar-6.1.10" = { 58907 name = "tar"; 58908 packageName = "tar"; 58909 - version = "6.1.10"; 58910 src = fetchurl { 58911 - url = "https://registry.npmjs.org/tar/-/tar-6.1.10.tgz"; 58912 - sha512 = "kvvfiVvjGMxeUNB6MyYv5z7vhfFRwbwCXJAeL0/lnbrttBVqcMOnpHUf0X42LrPMR8mMpgapkJMchFH4FSHzNA=="; 58913 }; 58914 }; 58915 "tar-6.1.2" = { ··· 61441 sha1 = "483126e11774df2f71b8b639dcd799c376162b82"; 61442 }; 61443 }; 61444 "uint48be-2.0.1" = { 61445 name = "uint48be"; 61446 packageName = "uint48be"; ··· 64043 sha512 = "fIJZJMXbaBsK0ifBb2RmSiLtzwn6NrZnKn7O+0ziIjwAY+rPvSK9St2qqQXFU3reZVRAt/I4GBp40dC/THcUDA=="; 64044 }; 64045 }; 64046 - "vscode-debugadapter-testsupport-1.48.0" = { 64047 name = "vscode-debugadapter-testsupport"; 64048 packageName = "vscode-debugadapter-testsupport"; 64049 - version = "1.48.0"; 64050 src = fetchurl { 64051 - url = "https://registry.npmjs.org/vscode-debugadapter-testsupport/-/vscode-debugadapter-testsupport-1.48.0.tgz"; 64052 - sha512 = "XSPgfFleyHEWvzL1PqleQr+/bFBcqJEKb8lp+fi4xt+JYchNi9Onom+uGpEi22R9hVLdq1J3rE67FTK1xPr1og=="; 64053 }; 64054 }; 64055 - "vscode-debugprotocol-1.48.0" = { 64056 name = "vscode-debugprotocol"; 64057 packageName = "vscode-debugprotocol"; 64058 - version = "1.48.0"; 64059 src = fetchurl { 64060 - url = "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.48.0.tgz"; 64061 - sha512 = "l2jtStdGHAca+B/ZmGAeYZtx7NHT9SY9LL6g0QeImKZjQ9P7S6wB2lcBwz1LSkgFltwLw197yFULnCr36OkLKA=="; 64062 }; 64063 }; 64064 "vscode-emmet-helper-1.2.17" = { ··· 65204 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 65205 }; 65206 }; 65207 - "webtorrent-1.5.3" = { 65208 name = "webtorrent"; 65209 packageName = "webtorrent"; 65210 - version = "1.5.3"; 65211 src = fetchurl { 65212 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.5.3.tgz"; 65213 - sha512 = "iWPFQgfVPNzpl2d3Gf2H4oycO7d15sKIpx/6lnl27WshyHXgcEPAg+RqbVL0BdXEfbiKHSYM3XplCwYiaOMUBw=="; 65214 }; 65215 }; 65216 "well-known-symbols-2.0.0" = { ··· 66131 sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ=="; 66132 }; 66133 }; 66134 - "xdl-59.0.54" = { 66135 name = "xdl"; 66136 packageName = "xdl"; 66137 - version = "59.0.54"; 66138 src = fetchurl { 66139 - url = "https://registry.npmjs.org/xdl/-/xdl-59.0.54.tgz"; 66140 - sha512 = "ucHQcVgjfzZwQqv1LavCWeubsLPtfmoTus9WpdX3/MzCvrMOt1EP7I8GQGmSOoidhpoFnV4Zqly5sMKppH5qlg=="; 66141 }; 66142 }; 66143 "xenvar-0.5.1" = { ··· 66399 src = fetchurl { 66400 url = "https://registry.npmjs.org/xmldom/-/xmldom-0.3.0.tgz"; 66401 sha512 = "z9s6k3wxE+aZHgXYxSTpGDo7BYOUfJsIRyoZiX6HTjwpwfS2wpQBQKa2fD+ShLyPkqDYo5ud7KitmLZ2Cd6r0g=="; 66402 - }; 66403 - }; 66404 - "xmldom-0.5.0" = { 66405 - name = "xmldom"; 66406 - packageName = "xmldom"; 66407 - version = "0.5.0"; 66408 - src = fetchurl { 66409 - url = "https://registry.npmjs.org/xmldom/-/xmldom-0.5.0.tgz"; 66410 - sha512 = "Foaj5FXVzgn7xFzsKeNIde9g6aFBxTPi37iwsno8QvApmtg7KYrr+OPyRHcJF7dud2a5nGRBXK3n0dL62Gf7PA=="; 66411 }; 66412 }; 66413 "xmldom-0.6.0" = { ··· 66419 sha512 = "iAcin401y58LckRZ0TkI4k0VSM1Qg0KGSc3i8rU+xrxe19A/BN1zHyVSJY7uoutVlaTSzYyk/v5AmkewAP7jtg=="; 66420 }; 66421 }; 66422 - "xmldom-git://github.com/xmldom/xmldom#0.7.0" = { 66423 - name = "xmldom"; 66424 - packageName = "xmldom"; 66425 - version = "0.7.0"; 66426 - src = fetchgit { 66427 - url = "git://github.com/xmldom/xmldom"; 66428 - rev = "c568938641cc1f121cef5b4df80fcfda1e489b6e"; 66429 - sha256 = "98ae57c19ccf66bc4d67e649250f1c28adda223064fb3c8572d245cb5aa3d440"; 66430 - }; 66431 - }; 66432 "xmlhttprequest-1.8.0" = { 66433 name = "xmlhttprequest"; 66434 packageName = "xmlhttprequest"; ··· 67168 sha512 = "Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg=="; 67169 }; 67170 }; 67171 - "zen-observable-ts-1.1.0" = { 67172 name = "zen-observable-ts"; 67173 packageName = "zen-observable-ts"; 67174 - version = "1.1.0"; 67175 src = fetchurl { 67176 - url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.1.0.tgz"; 67177 - sha512 = "1h4zlLSqI2cRLPJUHJFL8bCWHhkpuXkF+dbGkRaWjgDIG26DmzyshUMrdV/rL3UnR+mhaX4fRq8LPouq0MYYIA=="; 67178 }; 67179 }; 67180 "zeromq-5.2.8" = { ··· 67264 "@angular/cli" = nodeEnv.buildNodePackage { 67265 name = "_at_angular_slash_cli"; 67266 packageName = "@angular/cli"; 67267 - version = "12.2.2"; 67268 src = fetchurl { 67269 - url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.2.tgz"; 67270 - sha512 = "pk+UR8m0paDb1FaED6122JpN3ky+g4c/ccJx7vHZXnXa0/H76cXNoifxkZiGySjxyQyQxUCOuQwgc2cCaX8OPQ=="; 67271 }; 67272 dependencies = [ 67273 - sources."@angular-devkit/architect-0.1202.2" 67274 - sources."@angular-devkit/core-12.2.2" 67275 - sources."@angular-devkit/schematics-12.2.2" 67276 sources."@npmcli/git-2.1.0" 67277 sources."@npmcli/installed-package-contents-1.0.7" 67278 sources."@npmcli/move-file-1.1.2" 67279 sources."@npmcli/node-gyp-1.0.2" 67280 sources."@npmcli/promise-spawn-1.3.2" 67281 sources."@npmcli/run-script-1.8.6" 67282 - sources."@schematics/angular-12.2.2" 67283 sources."@tootallnate/once-1.1.2" 67284 sources."@yarnpkg/lockfile-1.1.0" 67285 sources."abbrev-1.1.1" ··· 67312 sources."brace-expansion-1.1.11" 67313 sources."buffer-5.7.1" 67314 sources."builtins-1.0.3" 67315 - sources."cacache-15.2.0" 67316 sources."caseless-0.12.0" 67317 sources."chalk-4.1.2" 67318 sources."chardet-0.7.0" ··· 67500 sources."strip-ansi-6.0.0" 67501 sources."supports-color-7.2.0" 67502 sources."symbol-observable-4.0.0" 67503 - sources."tar-6.1.10" 67504 sources."through-2.3.8" 67505 sources."tmp-0.0.33" 67506 sources."tough-cookie-2.5.0" ··· 68279 sources."@hyperswarm/hypersign-2.1.1" 68280 sources."@hyperswarm/network-2.1.0" 68281 sources."@leichtgewicht/ip-codec-2.0.3" 68282 - sources."@types/node-16.7.1" 68283 sources."abstract-extension-3.1.1" 68284 sources."abstract-leveldown-6.2.3" 68285 sources."ansi-colors-3.2.3" ··· 68770 bypassCache = true; 68771 reconstructLock = true; 68772 }; 68773 "@nestjs/cli" = nodeEnv.buildNodePackage { 68774 name = "_at_nestjs_slash_cli"; 68775 packageName = "@nestjs/cli"; ··· 68813 sources."@types/eslint-scope-3.7.1" 68814 sources."@types/estree-0.0.50" 68815 sources."@types/json-schema-7.0.9" 68816 - sources."@types/node-16.7.1" 68817 sources."@types/parse-json-4.0.0" 68818 sources."@webassemblyjs/ast-1.11.1" 68819 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 68852 sources."buffer-5.7.1" 68853 sources."buffer-from-1.1.2" 68854 sources."callsites-3.1.0" 68855 - sources."caniuse-lite-1.0.30001251" 68856 sources."chalk-3.0.0" 68857 sources."chardet-0.7.0" 68858 sources."chokidar-3.5.2" ··· 68879 sources."cross-spawn-7.0.3" 68880 sources."deepmerge-4.2.2" 68881 sources."defaults-1.0.3" 68882 - sources."electron-to-chromium-1.3.816" 68883 sources."emoji-regex-8.0.0" 68884 sources."end-of-stream-1.4.4" 68885 (sources."enhanced-resolve-5.8.2" // { ··· 69329 sources."@types/express-serve-static-core-4.17.24" 69330 sources."@types/fs-capacitor-2.0.0" 69331 sources."@types/glob-7.1.4" 69332 - sources."@types/http-assert-1.5.2" 69333 sources."@types/http-errors-1.8.1" 69334 sources."@types/inquirer-6.5.0" 69335 (sources."@types/jscodeshift-0.7.2" // { ··· 69345 sources."@types/long-4.0.1" 69346 sources."@types/mime-1.3.2" 69347 sources."@types/minimatch-3.0.5" 69348 - sources."@types/node-16.7.1" 69349 sources."@types/normalize-package-data-2.4.1" 69350 sources."@types/qs-6.9.7" 69351 sources."@types/range-parser-1.2.4" ··· 69488 sources."call-bind-1.0.2" 69489 sources."call-me-maybe-1.0.1" 69490 sources."camelcase-5.3.1" 69491 - sources."caniuse-lite-1.0.30001251" 69492 sources."caseless-0.12.0" 69493 sources."caw-2.0.1" 69494 sources."chalk-2.4.2" ··· 69545 sources."cookie-0.4.0" 69546 sources."cookie-signature-1.0.6" 69547 sources."copy-descriptor-0.1.1" 69548 - (sources."core-js-compat-3.16.2" // { 69549 dependencies = [ 69550 sources."semver-7.0.0" 69551 ]; 69552 }) 69553 - sources."core-js-pure-3.16.2" 69554 sources."core-util-is-1.0.2" 69555 sources."cors-2.8.5" 69556 (sources."cross-spawn-6.0.5" // { ··· 69616 sources."ecc-jsbn-0.1.2" 69617 sources."ee-first-1.1.1" 69618 sources."ejs-2.7.4" 69619 - sources."electron-to-chromium-1.3.816" 69620 sources."emoji-regex-7.0.3" 69621 sources."encodeurl-1.0.2" 69622 sources."end-of-stream-1.4.4" ··· 70629 sources."balanced-match-1.0.2" 70630 sources."brace-expansion-1.1.11" 70631 sources."browserslist-4.16.8" 70632 - sources."caniuse-lite-1.0.30001251" 70633 sources."chalk-2.4.2" 70634 sources."color-convert-1.9.3" 70635 sources."color-name-1.1.3" ··· 70640 sources."convert-source-map-1.8.0" 70641 sources."debug-4.3.2" 70642 sources."ejs-3.1.6" 70643 - sources."electron-to-chromium-1.3.816" 70644 sources."ensure-posix-path-1.1.1" 70645 sources."escalade-3.1.1" 70646 sources."escape-string-regexp-1.0.5" ··· 70734 dependencies = [ 70735 sources."@types/glob-7.1.4" 70736 sources."@types/minimatch-3.0.5" 70737 - sources."@types/node-16.7.1" 70738 sources."balanced-match-1.0.2" 70739 sources."brace-expansion-1.1.11" 70740 sources."chromium-pickle-js-0.2.0" ··· 70762 autoprefixer = nodeEnv.buildNodePackage { 70763 name = "autoprefixer"; 70764 packageName = "autoprefixer"; 70765 - version = "10.3.2"; 70766 src = fetchurl { 70767 - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.2.tgz"; 70768 - sha512 = "RHKq0YCvhxAn9987n0Gl6lkzLd39UKwCkUPMFE0cHhxU0SvcTjBxWG/CtkZ4/HvbqK9U5V8j03nAcGBlX3er/Q=="; 70769 }; 70770 dependencies = [ 70771 sources."browserslist-4.16.8" 70772 - sources."caniuse-lite-1.0.30001251" 70773 sources."colorette-1.3.0" 70774 - sources."electron-to-chromium-1.3.816" 70775 sources."escalade-3.1.1" 70776 sources."fraction.js-4.1.1" 70777 sources."node-releases-1.1.75" ··· 70798 }; 70799 dependencies = [ 70800 sources."@tootallnate/once-1.1.2" 70801 - sources."@types/node-16.7.1" 70802 sources."@types/yauzl-2.9.2" 70803 sources."agent-base-6.0.2" 70804 sources."ansi-escapes-4.3.2" 70805 sources."ansi-regex-5.0.0" 70806 sources."ansi-styles-4.3.0" 70807 sources."ast-types-0.13.4" 70808 - (sources."aws-sdk-2.974.0" // { 70809 dependencies = [ 70810 sources."uuid-3.3.2" 70811 ]; ··· 71009 balanceofsatoshis = nodeEnv.buildNodePackage { 71010 name = "balanceofsatoshis"; 71011 packageName = "balanceofsatoshis"; 71012 - version = "10.9.0"; 71013 src = fetchurl { 71014 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.9.0.tgz"; 71015 - sha512 = "i0ynlnvpby/GQlOhM1Qm1VD2TWruMJgb6WcdMcV//OHaUWr7IQft1+BckFUjmaLm13rSpxiXj4yP9plTL6BawQ=="; 71016 }; 71017 dependencies = [ 71018 sources."@alexbosworth/html2unicode-1.1.5" 71019 - (sources."@alexbosworth/request-2.88.3" // { 71020 - dependencies = [ 71021 - sources."safe-buffer-5.2.0" 71022 - ]; 71023 - }) 71024 sources."@alexbosworth/saxophone-0.6.2" 71025 sources."@cto.af/textdecoder-0.0.0" 71026 (sources."@grpc/grpc-js-1.3.7" // { 71027 dependencies = [ 71028 - sources."@types/node-16.7.1" 71029 ]; 71030 }) 71031 sources."@grpc/proto-loader-0.6.4" ··· 71047 sources."@types/body-parser-1.19.1" 71048 sources."@types/caseless-0.12.2" 71049 sources."@types/connect-3.4.35" 71050 - sources."@types/express-4.17.12" 71051 sources."@types/express-serve-static-core-4.17.24" 71052 sources."@types/long-4.0.1" 71053 sources."@types/mime-1.3.2" 71054 sources."@types/node-10.12.18" 71055 sources."@types/qs-6.9.7" 71056 sources."@types/range-parser-1.2.4" 71057 - (sources."@types/request-2.48.5" // { 71058 - dependencies = [ 71059 - sources."form-data-2.5.1" 71060 - ]; 71061 - }) 71062 sources."@types/serve-static-1.13.10" 71063 sources."@types/tough-cookie-4.0.1" 71064 - sources."@types/ws-7.4.4" 71065 sources."abort-controller-3.0.0" 71066 sources."accepts-1.3.7" 71067 - sources."ajv-6.12.6" 71068 sources."ansi-0.3.1" 71069 (sources."ansi-align-3.0.0" // { 71070 dependencies = [ ··· 71086 }) 71087 sources."array-flatten-1.1.1" 71088 sources."asciichart-1.5.25" 71089 - sources."asn1-0.2.4" 71090 - sources."assert-plus-1.0.0" 71091 sources."astral-regex-2.0.0" 71092 sources."async-3.2.1" 71093 (sources."asyncjs-util-1.2.6" // { ··· 71096 ]; 71097 }) 71098 sources."asynckit-0.4.0" 71099 - sources."aws-sign2-0.7.0" 71100 - sources."aws4-1.9.1" 71101 sources."base-x-3.0.8" 71102 sources."base64-js-1.5.1" 71103 (sources."basic-auth-2.0.1" // { ··· 71105 sources."safe-buffer-5.1.2" 71106 ]; 71107 }) 71108 - sources."bcrypt-pbkdf-1.0.2" 71109 sources."bech32-1.1.4" 71110 sources."bessel-1.0.2" 71111 sources."bindings-1.5.0" ··· 71119 sources."bl-4.1.0" 71120 sources."bluebird-3.7.2" 71121 sources."bn.js-4.12.0" 71122 - (sources."body-parser-1.19.0" // { 71123 - dependencies = [ 71124 - sources."qs-6.7.0" 71125 - ]; 71126 - }) 71127 (sources."bolt01-1.2.2" // { 71128 dependencies = [ 71129 sources."bn.js-5.2.0" ··· 71165 }) 71166 sources."camelcase-6.2.0" 71167 sources."caporal-1.4.0" 71168 - sources."caseless-0.12.0" 71169 sources."cbor-8.0.0" 71170 sources."cert-info-1.5.1" 71171 (sources."chalk-1.1.3" // { ··· 71223 sources."crypto-random-string-2.0.0" 71224 sources."csv-parse-4.16.0" 71225 sources."cycle-1.0.3" 71226 - sources."dashdash-1.14.1" 71227 sources."debug-2.6.9" 71228 sources."decompress-response-3.3.0" 71229 sources."deep-extend-0.6.0" ··· 71236 sources."destroy-1.0.4" 71237 sources."dot-prop-5.3.0" 71238 sources."duplexer3-0.1.4" 71239 - sources."ecc-jsbn-0.1.2" 71240 sources."ee-first-1.1.1" 71241 sources."elliptic-6.5.4" 71242 sources."emoji-regex-8.0.0" ··· 71251 sources."exit-hook-1.1.1" 71252 (sources."express-4.17.1" // { 71253 dependencies = [ 71254 - sources."qs-6.7.0" 71255 sources."safe-buffer-5.1.2" 71256 ]; 71257 }) 71258 sources."extend-3.0.2" 71259 sources."external-editor-1.1.1" 71260 - sources."extsprintf-1.3.0" 71261 sources."eyes-0.1.8" 71262 sources."fast-deep-equal-3.1.3" 71263 - sources."fast-json-stable-stringify-2.1.0" 71264 sources."fast-levenshtein-2.0.6" 71265 sources."figures-1.7.0" 71266 sources."file-uri-to-path-1.0.0" 71267 sources."finalhandler-1.1.2" 71268 - sources."forever-agent-0.6.1" 71269 - sources."form-data-3.0.0" 71270 sources."forwarded-0.2.0" 71271 sources."fresh-0.5.2" 71272 sources."gauge-1.2.7" 71273 sources."get-caller-file-2.0.5" 71274 sources."get-stream-4.1.0" 71275 - sources."getpass-0.1.7" 71276 sources."global-dirs-3.0.0" 71277 (sources."goldengate-10.3.0" // { 71278 dependencies = [ ··· 71282 }) 71283 sources."got-9.6.0" 71284 sources."graceful-fs-4.2.8" 71285 - sources."har-schema-2.0.0" 71286 - sources."har-validator-5.1.3" 71287 (sources."has-ansi-2.0.0" // { 71288 dependencies = [ 71289 sources."ansi-regex-2.1.1" ··· 71302 sources."inherits-2.0.3" 71303 ]; 71304 }) 71305 - sources."http-signature-1.3.1" 71306 sources."iconv-lite-0.4.24" 71307 sources."ieee754-1.2.1" 71308 sources."import-lazy-4.0.0" ··· 71335 sources."bn.js-5.2.0" 71336 ]; 71337 }) 71338 - sources."ip-regex-2.1.0" 71339 sources."ipaddr.js-1.9.1" 71340 sources."is-accessor-descriptor-1.0.0" 71341 sources."is-buffer-1.1.6" ··· 71359 sources."isarray-1.0.0" 71360 sources."isnumber-1.0.0" 71361 sources."isstream-0.1.2" 71362 - sources."jsbn-0.1.1" 71363 sources."json-buffer-3.0.0" 71364 - sources."json-schema-0.2.3" 71365 - sources."json-schema-traverse-0.4.1" 71366 - sources."json-stringify-safe-5.0.1" 71367 sources."json2csv-5.0.6" 71368 sources."jsonparse-1.3.1" 71369 - sources."jsprim-1.4.1" 71370 sources."jstat-1.9.5" 71371 sources."keyv-3.1.0" 71372 sources."kind-of-6.0.3" 71373 sources."latest-version-5.1.0" 71374 - (sources."lightning-3.3.9" // { 71375 - dependencies = [ 71376 - sources."@grpc/grpc-js-1.3.2" 71377 - sources."@grpc/proto-loader-0.6.2" 71378 - sources."@types/node-15.6.1" 71379 - sources."async-3.2.0" 71380 - sources."bech32-2.0.0" 71381 - sources."bn.js-5.2.0" 71382 - sources."cbor-7.0.5" 71383 - sources."invoices-1.2.1" 71384 - sources."nofilter-2.0.3" 71385 - ]; 71386 - }) 71387 - (sources."ln-accounting-4.3.1" // { 71388 - dependencies = [ 71389 - sources."@grpc/grpc-js-1.3.2" 71390 - sources."@grpc/proto-loader-0.6.2" 71391 - sources."@types/node-16.7.1" 71392 - sources."@types/ws-7.4.5" 71393 - sources."async-3.2.0" 71394 - sources."bech32-2.0.0" 71395 - sources."bn.js-5.2.0" 71396 - sources."cbor-7.0.5" 71397 - (sources."goldengate-10.1.0" // { 71398 - dependencies = [ 71399 - sources."ln-service-51.8.2" 71400 - ]; 71401 - }) 71402 - sources."invoices-1.2.1" 71403 - (sources."ln-service-51.8.5" // { 71404 - dependencies = [ 71405 - sources."@grpc/grpc-js-1.3.4" 71406 - sources."@grpc/proto-loader-0.6.3" 71407 - sources."@types/node-15.12.5" 71408 - sources."invoices-2.0.0" 71409 - sources."lightning-3.3.12" 71410 - sources."ws-7.5.0" 71411 - ]; 71412 - }) 71413 - sources."nofilter-2.0.3" 71414 - ]; 71415 - }) 71416 - (sources."ln-service-52.0.1" // { 71417 dependencies = [ 71418 - sources."@types/express-4.17.13" 71419 sources."@types/node-16.6.1" 71420 - sources."@types/request-2.48.7" 71421 - sources."@types/ws-7.4.7" 71422 sources."bn.js-5.2.0" 71423 - sources."form-data-2.5.1" 71424 - sources."lightning-4.1.0" 71425 - sources."ws-8.1.0" 71426 ]; 71427 }) 71428 (sources."ln-sync-0.4.7" // { 71429 dependencies = [ 71430 sources."@grpc/grpc-js-1.3.6" 71431 - sources."@types/express-4.17.13" 71432 sources."@types/node-16.3.3" 71433 sources."@types/request-2.48.6" 71434 - sources."@types/ws-7.4.7" 71435 sources."async-3.2.0" 71436 sources."bn.js-5.2.0" 71437 sources."cbor-7.0.6" 71438 sources."colorette-1.2.2" 71439 - sources."form-data-2.5.1" 71440 sources."lightning-3.4.0" 71441 sources."nofilter-2.0.3" 71442 ]; 71443 }) 71444 - (sources."ln-telegram-3.2.10" // { 71445 - dependencies = [ 71446 - sources."@grpc/grpc-js-1.3.2" 71447 - sources."@grpc/proto-loader-0.6.2" 71448 - sources."@types/express-4.17.13" 71449 - sources."@types/node-16.7.1" 71450 - sources."@types/request-2.48.7" 71451 - sources."@types/ws-7.4.7" 71452 - sources."bech32-2.0.0" 71453 - sources."bn.js-5.2.0" 71454 - sources."cbor-7.0.5" 71455 - sources."form-data-2.5.1" 71456 - (sources."goldengate-10.1.0" // { 71457 - dependencies = [ 71458 - sources."async-3.2.0" 71459 - sources."ln-service-51.8.2" 71460 - ]; 71461 - }) 71462 - sources."invoices-1.2.1" 71463 - (sources."lightning-4.0.0" // { 71464 - dependencies = [ 71465 - sources."@grpc/grpc-js-1.3.7" 71466 - sources."@grpc/proto-loader-0.6.4" 71467 - sources."@types/node-16.6.0" 71468 - sources."cbor-8.0.0" 71469 - sources."invoices-2.0.0" 71470 - sources."nofilter-3.0.3" 71471 - ]; 71472 - }) 71473 - (sources."ln-service-52.0.0" // { 71474 - dependencies = [ 71475 - sources."invoices-2.0.0" 71476 - ]; 71477 - }) 71478 - sources."nofilter-2.0.3" 71479 - sources."ws-8.1.0" 71480 - ]; 71481 - }) 71482 sources."lodash-4.17.21" 71483 sources."lodash.camelcase-4.3.0" 71484 sources."lodash.clonedeep-4.5.0" ··· 71500 sources."lowercase-keys-1.0.1" 71501 sources."lru-cache-6.0.0" 71502 sources."luxon-2.0.2" 71503 - (sources."macaroon-3.0.4" // { 71504 - dependencies = [ 71505 - sources."tweetnacl-1.0.3" 71506 - ]; 71507 - }) 71508 (sources."make-dir-3.1.0" // { 71509 dependencies = [ 71510 sources."semver-6.3.0" ··· 71517 sources."methods-1.1.2" 71518 sources."micromist-1.1.0" 71519 sources."mime-1.6.0" 71520 - sources."mime-db-1.43.0" 71521 - sources."mime-types-2.1.26" 71522 sources."mimic-fn-2.1.0" 71523 sources."mimic-response-1.0.1" 71524 sources."minimalistic-assert-1.0.1" ··· 71543 sources."normalize-url-4.5.1" 71544 sources."npmlog-2.0.4" 71545 sources."number-is-nan-1.0.1" 71546 - sources."oauth-sign-0.9.0" 71547 sources."object-assign-4.1.1" 71548 sources."on-finished-2.3.0" 71549 sources."on-headers-1.0.2" ··· 71574 dependencies = [ 71575 sources."@grpc/grpc-js-1.3.4" 71576 sources."@grpc/proto-loader-0.6.3" 71577 sources."@types/node-15.12.5" 71578 sources."@types/ws-7.4.5" 71579 sources."async-3.2.0" 71580 sources."bn.js-5.2.0" ··· 71587 }) 71588 sources."parseurl-1.3.3" 71589 sources."path-to-regexp-0.1.7" 71590 - sources."performance-now-2.1.0" 71591 sources."pinkie-2.0.4" 71592 sources."pinkie-promise-2.0.1" 71593 sources."prepend-http-2.0.0" 71594 sources."prettyjson-1.2.1" 71595 (sources."probing-1.3.6" // { 71596 dependencies = [ 71597 sources."async-3.2.0" 71598 sources."bech32-2.0.0" 71599 sources."bn.js-5.2.0" 71600 sources."invoices-1.2.1" 71601 sources."ln-service-51.8.2" 71602 ]; 71603 }) 71604 sources."process-nextick-args-2.0.1" 71605 (sources."protobufjs-6.11.2" // { 71606 dependencies = [ 71607 - sources."@types/node-16.7.1" 71608 ]; 71609 }) 71610 sources."proxy-addr-2.0.7" ··· 71613 sources."bn.js-5.2.0" 71614 ]; 71615 }) 71616 - sources."psl-1.8.0" 71617 sources."pump-3.0.0" 71618 sources."punycode-2.1.1" 71619 sources."pupa-2.1.1" 71620 sources."pushdata-bitcoin-1.0.1" 71621 sources."qrcode-terminal-0.12.0" 71622 - sources."qs-6.9.1" 71623 sources."randombytes-2.1.0" 71624 sources."range-parser-1.2.1" 71625 sources."raw-body-2.4.0" ··· 71668 ]; 71669 }) 71670 sources."spawn-sync-1.0.15" 71671 - sources."sshpk-1.16.1" 71672 sources."stack-trace-0.0.10" 71673 sources."stats-lite-2.2.0" 71674 sources."statuses-1.5.0" ··· 71679 sources."supports-color-2.0.0" 71680 (sources."table-6.7.1" // { 71681 dependencies = [ 71682 - sources."ajv-8.6.2" 71683 sources."ansi-regex-5.0.0" 71684 sources."is-fullwidth-code-point-3.0.0" 71685 - sources."json-schema-traverse-1.0.0" 71686 sources."string-width-4.2.2" 71687 sources."strip-ansi-6.0.0" 71688 ]; ··· 71708 sources."tmp-0.0.29" 71709 sources."to-readable-stream-1.0.0" 71710 sources."toidentifier-1.0.0" 71711 - sources."tough-cookie-3.0.1" 71712 sources."truncate-utf8-bytes-1.0.2" 71713 sources."tslib-2.1.0" 71714 - sources."tunnel-agent-0.6.0" 71715 - sources."tweetnacl-0.14.5" 71716 sources."tweetnacl-util-0.15.1" 71717 sources."type-fest-0.21.3" 71718 sources."type-is-1.6.18" ··· 71735 sources."utf8-byte-length-1.0.4" 71736 sources."util-deprecate-1.0.2" 71737 sources."utils-merge-1.0.1" 71738 - sources."uuid-3.4.0" 71739 sources."varuint-bitcoin-1.1.2" 71740 sources."vary-1.1.2" 71741 - sources."verror-1.10.0" 71742 sources."wcwidth-1.0.1" 71743 (sources."widest-line-3.1.0" // { 71744 dependencies = [ ··· 71767 }) 71768 sources."wrappy-1.0.2" 71769 sources."write-file-atomic-3.0.3" 71770 - sources."ws-7.4.6" 71771 sources."xdg-basedir-4.0.0" 71772 sources."y18n-5.0.8" 71773 sources."yallist-4.0.0" ··· 72952 sources."@protobufjs/pool-1.1.0" 72953 sources."@protobufjs/utf8-1.1.0" 72954 sources."@types/long-4.0.1" 72955 - sources."@types/node-16.7.1" 72956 sources."addr-to-ip-port-1.5.4" 72957 sources."airplay-js-0.2.16" 72958 sources."ajv-6.12.6" ··· 73360 sha512 = "4ixIu+0Fm5gv6nQ+cNhIHu5heJ95yC5HgVTU/Ad4hg5g0zWQLQcOn7s6znqgpFMDtrpH1v4RTMNp/jv10+FPiw=="; 73361 }; 73362 dependencies = [ 73363 - sources."@jsii/check-node-1.33.0" 73364 - sources."@jsii/spec-1.33.0" 73365 sources."@types/node-10.17.60" 73366 sources."ansi-regex-5.0.0" 73367 sources."ansi-styles-4.3.0" 73368 sources."at-least-node-1.0.0" ··· 73375 sources."chalk-4.1.2" 73376 sources."cliui-7.0.4" 73377 sources."clone-2.1.2" 73378 - (sources."codemaker-1.33.0" // { 73379 dependencies = [ 73380 sources."fs-extra-9.1.0" 73381 ]; ··· 73384 sources."color-name-1.1.4" 73385 sources."colors-1.4.0" 73386 sources."commonmark-0.30.0" 73387 - sources."constructs-3.3.131" 73388 sources."date-format-3.0.0" 73389 sources."debug-4.3.2" 73390 sources."decamelize-5.0.0" ··· 73436 sources."is-weakmap-2.0.1" 73437 sources."is-weakset-2.0.1" 73438 sources."isarray-2.0.5" 73439 - (sources."jsii-1.33.0" // { 73440 dependencies = [ 73441 sources."fs-extra-9.1.0" 73442 sources."yargs-16.2.0" 73443 ]; 73444 }) 73445 - (sources."jsii-pacmak-1.33.0" // { 73446 dependencies = [ 73447 sources."fs-extra-9.1.0" 73448 sources."yargs-16.2.0" 73449 ]; 73450 }) 73451 - (sources."jsii-reflect-1.33.0" // { 73452 dependencies = [ 73453 sources."fs-extra-9.1.0" 73454 sources."yargs-16.2.0" 73455 ]; 73456 }) 73457 - (sources."jsii-rosetta-1.33.0" // { 73458 dependencies = [ 73459 sources."fs-extra-9.1.0" 73460 sources."yargs-16.2.0" 73461 ]; 73462 }) 73463 - (sources."jsii-srcmak-0.1.333" // { 73464 dependencies = [ 73465 sources."fs-extra-9.1.0" 73466 ]; 73467 }) 73468 sources."json-schema-0.3.0" 73469 - sources."json2jsii-0.2.5" 73470 sources."jsonfile-6.1.0" 73471 sources."jsonschema-1.4.0" 73472 sources."locate-path-5.0.0" ··· 73482 sources."object-is-1.1.5" 73483 sources."object-keys-1.1.1" 73484 sources."object.assign-4.1.2" 73485 - sources."oo-ascii-tree-1.33.0" 73486 sources."p-limit-2.3.0" 73487 sources."p-locate-4.1.0" 73488 sources."p-try-2.2.0" ··· 73502 sources."snake-case-3.0.4" 73503 sources."sort-json-2.0.0" 73504 sources."spdx-license-list-6.4.0" 73505 - sources."sscaff-1.2.52" 73506 (sources."streamroller-2.2.4" // { 73507 dependencies = [ 73508 sources."date-format-2.1.0" ··· 73524 sources."which-typed-array-1.1.6" 73525 sources."wrap-ansi-7.0.0" 73526 sources."xmlbuilder-15.1.1" 73527 - sources."xmldom-git://github.com/xmldom/xmldom#0.7.0" 73528 sources."y18n-5.0.8" 73529 sources."yallist-4.0.0" 73530 sources."yaml-1.10.2" ··· 73558 sha512 = "53HldFlYJdptaQ9yZyx8xuN0pxmBwI7yaVImmPwGmauoOYWsO89YrAjyPIiAaR+GWI8avbQeg3jz5Z1Q+MoIGA=="; 73559 }; 73560 dependencies = [ 73561 - sources."@apollo/client-3.4.8" 73562 (sources."@apollo/protobufjs-1.2.2" // { 73563 dependencies = [ 73564 sources."@types/node-10.17.60" ··· 73622 }) 73623 sources."@graphql-typed-document-node/core-3.1.0" 73624 sources."@josephg/resolvable-1.0.1" 73625 - sources."@jsii/check-node-1.33.0" 73626 - sources."@jsii/spec-1.33.0" 73627 sources."@nodelib/fs.scandir-2.1.5" 73628 sources."@nodelib/fs.stat-2.0.5" 73629 sources."@nodelib/fs.walk-1.2.8" ··· 73647 sources."@types/express-serve-static-core-4.17.24" 73648 sources."@types/long-4.0.1" 73649 sources."@types/mime-1.3.2" 73650 - sources."@types/node-14.17.11" 73651 sources."@types/node-fetch-2.5.12" 73652 sources."@types/qs-6.9.7" 73653 sources."@types/range-parser-1.2.4" 73654 sources."@types/serve-static-1.13.10" 73655 sources."@types/yauzl-2.9.2" 73656 sources."@types/yoga-layout-1.9.2" 73657 - sources."@types/zen-observable-0.8.3" 73658 sources."@wry/context-0.6.1" 73659 sources."@wry/equality-0.5.2" 73660 sources."@wry/trie-0.3.1" 73661 sources."accepts-1.3.7" 73662 sources."address-1.1.2" 73663 (sources."ansi-escapes-4.3.2" // { ··· 73676 sources."apollo-graphql-0.9.3" 73677 sources."apollo-reporting-protobuf-3.0.0" 73678 sources."apollo-server-caching-3.1.0" 73679 - (sources."apollo-server-core-3.2.0" // { 73680 dependencies = [ 73681 sources."@graphql-tools/utils-8.1.2" 73682 ]; 73683 }) 73684 sources."apollo-server-env-4.0.3" 73685 sources."apollo-server-errors-3.1.0" 73686 - sources."apollo-server-express-3.2.0" 73687 sources."apollo-server-plugin-base-3.2.0" 73688 sources."apollo-server-types-3.2.0" 73689 sources."archiver-5.3.0" ··· 73766 ]; 73767 }) 73768 sources."concat-map-0.0.1" 73769 - sources."constructs-3.3.131" 73770 (sources."content-disposition-0.5.3" // { 73771 dependencies = [ 73772 sources."safe-buffer-5.1.2" ··· 73776 sources."convert-to-spaces-1.0.2" 73777 sources."cookie-0.4.0" 73778 sources."cookie-signature-1.0.6" 73779 - sources."core-js-pure-3.16.2" 73780 sources."core-util-is-1.0.2" 73781 sources."cors-2.8.5" 73782 sources."crc-32-1.2.0" ··· 73938 sources."iterall-1.3.0" 73939 sources."js-tokens-4.0.0" 73940 sources."jsesc-2.5.2" 73941 - (sources."jsii-1.33.0" // { 73942 dependencies = [ 73943 sources."fs-extra-9.1.0" 73944 sources."yargs-16.2.0" 73945 ]; 73946 }) 73947 - (sources."jsii-pacmak-1.33.0" // { 73948 dependencies = [ 73949 sources."clone-2.1.2" 73950 - sources."codemaker-1.33.0" 73951 sources."decamelize-5.0.0" 73952 sources."escape-string-regexp-4.0.0" 73953 sources."fs-extra-9.1.0" 73954 sources."yargs-16.2.0" 73955 ]; 73956 }) 73957 - (sources."jsii-reflect-1.33.0" // { 73958 dependencies = [ 73959 sources."fs-extra-9.1.0" 73960 sources."yargs-16.2.0" 73961 ]; 73962 }) 73963 - (sources."jsii-rosetta-1.33.0" // { 73964 dependencies = [ 73965 sources."fs-extra-9.1.0" 73966 sources."yargs-16.2.0" 73967 ]; 73968 }) 73969 - (sources."jsii-srcmak-0.1.333" // { 73970 dependencies = [ 73971 sources."fs-extra-9.1.0" 73972 ]; ··· 74031 sources."on-finished-2.3.0" 74032 sources."once-1.4.0" 74033 sources."onetime-5.1.2" 74034 - sources."oo-ascii-tree-1.33.0" 74035 sources."open-7.4.2" 74036 sources."optimism-0.16.1" 74037 sources."ora-5.4.1" ··· 74067 sources."range-parser-1.2.1" 74068 sources."raw-body-2.4.0" 74069 sources."react-16.14.0" 74070 - sources."react-devtools-core-4.16.0" 74071 sources."react-is-16.13.1" 74072 sources."react-reconciler-0.24.0" 74073 sources."readable-stream-3.6.0" ··· 74124 sources."sort-json-2.0.0" 74125 sources."source-map-0.5.7" 74126 sources."spdx-license-list-6.4.0" 74127 - sources."sscaff-1.2.52" 74128 (sources."stack-utils-2.0.3" // { 74129 dependencies = [ 74130 sources."escape-string-regexp-2.0.0" ··· 74196 sources."wrappy-1.0.2" 74197 sources."ws-7.5.3" 74198 sources."xmlbuilder-15.1.1" 74199 - sources."xmldom-git://github.com/xmldom/xmldom#0.7.0" 74200 sources."xss-1.0.9" 74201 sources."y18n-5.0.8" 74202 sources."yallist-4.0.0" ··· 74218 sources."yocto-queue-0.1.0" 74219 sources."yoga-layout-prebuilt-1.10.0" 74220 sources."zen-observable-0.8.15" 74221 - sources."zen-observable-ts-1.1.0" 74222 sources."zip-stream-4.1.0" 74223 sources."zod-1.11.17" 74224 ]; ··· 74372 dependencies = [ 74373 sources."ansi-styles-3.2.1" 74374 sources."async-0.9.2" 74375 - sources."balanced-match-1.0.2" 74376 - sources."brace-expansion-1.1.11" 74377 sources."chalk-2.4.2" 74378 sources."cli-spinner-0.2.10" 74379 sources."clubhouse-lib-0.10.0" ··· 74381 sources."color-name-1.1.3" 74382 sources."colors-1.4.0" 74383 sources."commander-2.20.3" 74384 - sources."concat-map-0.0.1" 74385 sources."cycle-1.0.3" 74386 sources."debug-4.3.2" 74387 sources."decode-uri-component-0.2.0" 74388 - sources."deep-equal-0.2.2" 74389 sources."encoding-0.1.13" 74390 sources."escape-string-regexp-1.0.5" 74391 sources."eyes-0.1.8" 74392 sources."fetch-everywhere-1.0.5" 74393 sources."filter-obj-1.1.0" 74394 - sources."fs.realpath-1.0.0" 74395 - sources."glob-7.1.7" 74396 sources."has-flag-3.0.0" 74397 sources."hasurl-1.0.0" 74398 - sources."i-0.3.6" 74399 sources."iconv-lite-0.6.3" 74400 - sources."inflight-1.0.6" 74401 - sources."inherits-2.0.4" 74402 sources."is-stream-1.1.0" 74403 sources."isstream-0.1.2" 74404 sources."lodash.sortby-4.7.0" 74405 - sources."minimatch-3.0.4" 74406 - sources."minimist-1.2.5" 74407 - sources."mkdirp-0.5.5" 74408 sources."ms-2.1.2" 74409 sources."mute-stream-0.0.8" 74410 - sources."ncp-1.0.1" 74411 sources."node-fetch-1.7.3" 74412 - sources."once-1.4.0" 74413 - sources."path-is-absolute-1.0.1" 74414 - sources."prompt-1.1.0" 74415 sources."punycode-2.1.1" 74416 sources."query-string-6.14.1" 74417 sources."read-1.0.7" 74418 sources."revalidator-0.1.8" 74419 - sources."rimraf-2.7.1" 74420 sources."safer-buffer-2.1.2" 74421 sources."split-on-first-1.1.0" 74422 sources."stack-trace-0.0.10" ··· 74424 sources."supports-color-5.5.0" 74425 sources."tr46-1.0.1" 74426 sources."universal-url-2.0.0" 74427 - sources."utile-0.3.0" 74428 sources."webidl-conversions-4.0.2" 74429 sources."whatwg-fetch-3.6.2" 74430 sources."whatwg-url-7.1.0" ··· 74434 sources."colors-1.0.3" 74435 ]; 74436 }) 74437 - sources."wrappy-1.0.2" 74438 ]; 74439 buildInputs = globalBuildInputs; 74440 meta = { ··· 74561 coc-explorer = nodeEnv.buildNodePackage { 74562 name = "coc-explorer"; 74563 packageName = "coc-explorer"; 74564 - version = "0.18.15"; 74565 src = fetchurl { 74566 - url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.15.tgz"; 74567 - sha512 = "YXwbqzvEKo2fT2srqhESG3KOzz1mZ8V4SY/T8fLo2yxY1C14m7Bol2rqP+7VI+tXwaKXWbnMoQRDgOTjgL2oxQ=="; 74568 }; 74569 dependencies = [ 74570 sources."@sindresorhus/df-3.1.1" ··· 75015 sources."string_decoder-1.1.1" 75016 sources."strip-eof-1.0.0" 75017 sources."strip-json-comments-2.0.1" 75018 - sources."tar-6.1.10" 75019 sources."traverse-0.3.9" 75020 sources."tslib-2.3.1" 75021 sources."unbox-primitive-1.0.1" ··· 75153 sources."callsites-3.1.0" 75154 sources."camelcase-2.1.1" 75155 sources."camelcase-keys-2.1.0" 75156 - sources."caniuse-lite-1.0.30001251" 75157 sources."capture-stack-trace-1.0.1" 75158 sources."ccount-1.1.0" 75159 (sources."chalk-4.1.2" // { ··· 75215 ]; 75216 }) 75217 sources."copy-descriptor-0.1.1" 75218 - sources."core-js-3.16.2" 75219 sources."cosmiconfig-3.1.0" 75220 sources."create-error-class-3.0.2" 75221 sources."cross-spawn-7.0.3" ··· 75251 sources."domutils-1.7.0" 75252 sources."dot-prop-5.3.0" 75253 sources."duplexer3-0.1.4" 75254 - sources."electron-to-chromium-1.3.816" 75255 sources."emoji-regex-8.0.0" 75256 sources."end-of-stream-1.4.4" 75257 sources."enquirer-2.3.6" ··· 76262 sources."callsites-3.1.0" 76263 sources."camelcase-5.3.1" 76264 sources."camelcase-keys-6.2.2" 76265 - sources."caniuse-lite-1.0.30001251" 76266 (sources."chalk-4.1.2" // { 76267 dependencies = [ 76268 sources."ansi-styles-4.3.0" ··· 76300 sources."domelementtype-1.3.1" 76301 sources."domhandler-2.4.2" 76302 sources."domutils-1.7.0" 76303 - sources."electron-to-chromium-1.3.816" 76304 sources."emoji-regex-8.0.0" 76305 sources."entities-1.1.2" 76306 sources."error-ex-1.3.2" ··· 77548 sha512 = "00wMcj3X9ILhKtvRG2iEwO2qly4B+vgXFhH4WhVepWg2UVbD1opl1q9jSZ+j2AaI/vsBWW8e6M2M5FAHasnuWw=="; 77549 }; 77550 dependencies = [ 77551 sources."@netflix/nerror-1.1.3" 77552 sources."@nodelib/fs.scandir-2.1.5" 77553 sources."@nodelib/fs.stat-2.0.5" 77554 sources."@nodelib/fs.walk-1.2.8" 77555 sources."@npmcli/git-2.1.0" 77556 sources."@npmcli/installed-package-contents-1.0.7" 77557 sources."@npmcli/move-file-1.1.2" ··· 77618 sources."braces-3.0.2" 77619 sources."builtins-1.0.3" 77620 sources."bytes-3.0.0" 77621 - sources."cacache-15.2.0" 77622 (sources."cacheable-request-6.1.0" // { 77623 dependencies = [ 77624 sources."lowercase-keys-2.0.0" ··· 78071 sources."strip-json-comments-2.0.1" 78072 sources."supports-color-7.2.0" 78073 sources."systeminformation-4.34.23" 78074 - sources."tar-6.1.10" 78075 sources."term-size-2.2.1" 78076 sources."through-2.3.8" 78077 sources."tmp-0.2.1" ··· 78162 sources."@types/glob-7.1.4" 78163 sources."@types/minimatch-3.0.5" 78164 sources."@types/minimist-1.2.2" 78165 - sources."@types/node-16.7.1" 78166 sources."@types/normalize-package-data-2.4.1" 78167 sources."aggregate-error-3.1.0" 78168 sources."ansi-styles-3.2.1" ··· 78533 sources."@cycle/run-3.4.0" 78534 sources."@cycle/time-0.10.1" 78535 sources."@types/cookiejar-2.1.2" 78536 - sources."@types/node-16.7.1" 78537 sources."@types/superagent-3.8.2" 78538 sources."ansi-escapes-3.2.0" 78539 sources."ansi-regex-2.1.1" ··· 78969 }) 78970 sources."decode-uri-component-0.2.0" 78971 sources."decompress-response-4.2.1" 78972 - sources."deep-equal-0.2.2" 78973 sources."deep-extend-0.6.0" 78974 sources."define-property-2.0.2" 78975 sources."delayed-stream-1.0.0" ··· 79100 sources."debug-3.2.7" 79101 ]; 79102 }) 79103 - sources."i-0.3.6" 79104 sources."import-lazy-2.1.0" 79105 sources."imurmurhash-0.1.4" 79106 sources."inflight-1.0.6" ··· 79183 sources."is-extendable-1.0.1" 79184 ]; 79185 }) 79186 - sources."mkdirp-0.5.5" 79187 sources."mkdirp-classic-0.5.3" 79188 sources."ms-2.1.3" 79189 sources."multi-random-access-2.1.1" ··· 79203 sources."nanoscheduler-1.0.3" 79204 sources."nanotiming-7.3.1" 79205 sources."napi-macros-2.0.0" 79206 - sources."ncp-1.0.1" 79207 sources."neat-input-1.11.1" 79208 sources."neat-log-3.1.0" 79209 sources."neat-spinner-1.0.0" ··· 79247 sources."process-0.11.10" 79248 sources."process-nextick-args-2.0.1" 79249 sources."progress-string-1.2.2" 79250 - sources."prompt-1.1.0" 79251 (sources."protocol-buffers-encodings-1.1.1" // { 79252 dependencies = [ 79253 sources."varint-5.0.0" ··· 79450 sources."url-parse-lax-1.0.0" 79451 sources."use-3.1.1" 79452 sources."util-deprecate-1.0.2" 79453 - sources."utile-0.3.0" 79454 (sources."utp-native-2.5.3" // { 79455 dependencies = [ 79456 sources."node-gyp-build-4.2.3" ··· 79650 sources."@types/geojson-7946.0.8" 79651 sources."@types/mapbox-gl-0.54.5" 79652 sources."@types/mime-types-2.1.1" 79653 - sources."@types/node-14.17.11" 79654 sources."@types/node-fetch-2.5.12" 79655 sources."@types/prop-types-15.7.4" 79656 sources."@types/rc-1.2.0" ··· 79707 ]; 79708 }) 79709 sources."call-bind-1.0.2" 79710 - sources."caniuse-lite-1.0.30001251" 79711 sources."chalk-2.4.2" 79712 sources."chokidar-2.1.8" 79713 (sources."class-utils-0.3.6" // { ··· 79750 ]; 79751 }) 79752 sources."copy-descriptor-0.1.1" 79753 - sources."core-js-3.16.2" 79754 - (sources."core-js-compat-3.16.2" // { 79755 dependencies = [ 79756 sources."semver-7.0.0" 79757 ]; ··· 79777 sources."duplexer3-0.1.4" 79778 sources."earcut-2.2.3" 79779 sources."electron-13.2.2" 79780 - sources."electron-to-chromium-1.3.816" 79781 sources."emoji-js-clean-4.0.0" 79782 sources."emoji-mart-3.0.1" 79783 sources."emoji-regex-9.2.2" ··· 80365 dependencies = [ 80366 sources."@fast-csv/format-4.3.5" 80367 sources."@fast-csv/parse-4.3.6" 80368 - sources."@types/node-14.17.11" 80369 sources."JSONStream-1.3.5" 80370 sources."ajv-6.12.6" 80371 sources."asn1-0.2.4" ··· 80564 sources."@types/http-cache-semantics-4.0.1" 80565 sources."@types/keyv-3.1.2" 80566 sources."@types/minimatch-3.0.5" 80567 - sources."@types/node-16.7.1" 80568 sources."@types/responselike-1.0.0" 80569 sources."@types/yauzl-2.9.2" 80570 sources."abbrev-1.1.1" ··· 80641 sources."concat-map-0.0.1" 80642 sources."config-chain-1.1.13" 80643 sources."console-control-strings-1.1.0" 80644 - sources."core-js-3.16.2" 80645 sources."core-util-is-1.0.2" 80646 sources."cross-spawn-7.0.3" 80647 (sources."cross-spawn-windows-exe-1.2.0" // { ··· 80892 sources."mkdirp-0.5.5" 80893 sources."ms-2.0.0" 80894 sources."mute-stream-0.0.8" 80895 - (sources."needle-2.8.0" // { 80896 dependencies = [ 80897 sources."debug-3.2.7" 80898 sources."ms-2.1.3" ··· 81062 sources."sudo-prompt-9.2.1" 81063 sources."sumchecker-3.0.1" 81064 sources."supports-color-7.2.0" 81065 - (sources."tar-6.1.10" // { 81066 dependencies = [ 81067 sources."chownr-2.0.0" 81068 sources."fs-minipass-2.1.0" ··· 81217 sources."@types/http-cache-semantics-4.0.1" 81218 sources."@types/keyv-3.1.2" 81219 sources."@types/minimist-1.2.2" 81220 - sources."@types/node-16.7.1" 81221 sources."@types/normalize-package-data-2.4.1" 81222 sources."@types/responselike-1.0.0" 81223 sources."@types/yoga-layout-1.9.2" ··· 81252 sources."quick-lru-4.0.1" 81253 ]; 81254 }) 81255 - sources."caniuse-lite-1.0.30001251" 81256 sources."chalk-2.4.2" 81257 sources."ci-info-2.0.0" 81258 sources."cli-boxes-2.2.1" ··· 81289 }) 81290 sources."defer-to-connect-2.0.1" 81291 sources."dot-prop-5.3.0" 81292 - sources."electron-to-chromium-1.3.816" 81293 sources."emoji-regex-8.0.0" 81294 sources."emojilib-2.4.0" 81295 sources."end-of-stream-1.4.4" ··· 81423 sources."punycode-2.1.1" 81424 sources."quick-lru-5.1.1" 81425 sources."react-16.14.0" 81426 - sources."react-devtools-core-4.16.0" 81427 sources."react-is-16.13.1" 81428 sources."react-reconciler-0.24.0" 81429 (sources."read-pkg-5.2.0" // { ··· 81547 sources."@fluentui/react-focus-7.17.6" 81548 sources."@fluentui/react-window-provider-1.0.2" 81549 sources."@fluentui/theme-1.7.4" 81550 (sources."@gulp-sourcemaps/identity-map-1.0.2" // { 81551 dependencies = [ 81552 sources."normalize-path-2.1.1" ··· 81561 sources."@nodelib/fs.scandir-2.1.5" 81562 sources."@nodelib/fs.stat-2.0.5" 81563 sources."@nodelib/fs.walk-1.2.8" 81564 (sources."@npmcli/move-file-1.1.2" // { 81565 dependencies = [ 81566 sources."rimraf-3.0.2" ··· 81791 ]; 81792 }) 81793 sources."bytes-3.1.0" 81794 - (sources."cacache-15.2.0" // { 81795 dependencies = [ 81796 sources."chownr-2.0.0" 81797 sources."fs-minipass-2.1.0" ··· 81799 sources."minizlib-2.1.2" 81800 sources."p-map-4.0.0" 81801 sources."rimraf-3.0.2" 81802 - sources."tar-6.1.10" 81803 ]; 81804 }) 81805 sources."cache-base-1.0.1" ··· 82509 }) 82510 sources."nan-2.15.0" 82511 sources."nanomatch-1.2.13" 82512 - (sources."needle-2.8.0" // { 82513 dependencies = [ 82514 sources."debug-3.2.7" 82515 sources."ms-2.1.3" ··· 83571 expo-cli = nodeEnv.buildNodePackage { 83572 name = "expo-cli"; 83573 packageName = "expo-cli"; 83574 - version = "4.10.1"; 83575 src = fetchurl { 83576 - url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.10.1.tgz"; 83577 - sha512 = "jo0wFTBIal3AtClvjYRnLbipzwnjhjC2FrErZFigRzYCd7jhh2BAvOapiaPIgcSxWvL+BKKBbNFKLRB7O4UabA=="; 83578 }; 83579 dependencies = [ 83580 sources."@babel/code-frame-7.10.4" ··· 83686 }) 83687 sources."@babel/types-7.15.0" 83688 sources."@dabh/diagnostics-2.0.2" 83689 - sources."@expo/apple-utils-0.0.0-alpha.20" 83690 sources."@expo/bunyan-4.0.0" 83691 - sources."@expo/config-5.0.8" 83692 - (sources."@expo/config-plugins-3.0.8" // { 83693 dependencies = [ 83694 sources."semver-7.3.5" 83695 ]; 83696 }) 83697 sources."@expo/config-types-42.0.0" 83698 - (sources."@expo/dev-server-0.1.83" // { 83699 dependencies = [ 83700 sources."body-parser-1.19.0" 83701 sources."bytes-3.1.0" ··· 83712 sources."temp-dir-2.0.0" 83713 ]; 83714 }) 83715 - sources."@expo/dev-tools-0.13.114" 83716 (sources."@expo/devcert-1.0.0" // { 83717 dependencies = [ 83718 sources."debug-3.2.7" ··· 83727 ]; 83728 }) 83729 sources."@expo/json-file-8.2.33" 83730 - sources."@expo/metro-config-0.1.83" 83731 sources."@expo/osascript-2.0.30" 83732 (sources."@expo/package-manager-0.0.47" // { 83733 dependencies = [ ··· 83736 sources."semver-5.7.1" 83737 ]; 83738 }) 83739 - (sources."@expo/plist-0.0.13" // { 83740 dependencies = [ 83741 sources."xmlbuilder-14.0.0" 83742 - sources."xmldom-0.5.0" 83743 ]; 83744 }) 83745 - sources."@expo/prebuild-config-2.0.8" 83746 sources."@expo/results-1.0.0" 83747 (sources."@expo/rudder-sdk-node-1.0.7" // { 83748 dependencies = [ ··· 83758 }) 83759 sources."@expo/sdk-runtime-versions-1.0.0" 83760 sources."@expo/spawn-async-1.5.0" 83761 - (sources."@expo/webpack-config-0.14.1" // { 83762 dependencies = [ 83763 (sources."@babel/core-7.9.0" // { 83764 dependencies = [ ··· 83773 sources."js-yaml-4.1.0" 83774 ]; 83775 }) 83776 sources."@hapi/hoek-9.2.0" 83777 sources."@hapi/topo-5.1.0" 83778 sources."@jest/types-26.6.2" 83779 sources."@nodelib/fs.scandir-2.1.5" 83780 sources."@nodelib/fs.stat-2.0.5" 83781 sources."@nodelib/fs.walk-1.2.8" 83782 (sources."@npmcli/git-2.1.0" // { 83783 dependencies = [ 83784 sources."mkdirp-1.0.4" ··· 83876 sources."@webassemblyjs/wast-parser-1.9.0" 83877 sources."@webassemblyjs/wast-printer-1.9.0" 83878 sources."@wry/equality-0.1.11" 83879 sources."@xtuc/ieee754-1.2.0" 83880 sources."@xtuc/long-4.2.2" 83881 sources."abbrev-1.1.1" ··· 84032 sources."buffer-xor-1.0.3" 84033 sources."builtin-status-codes-3.0.0" 84034 sources."builtins-1.0.3" 84035 - (sources."bull-3.29.0" // { 84036 dependencies = [ 84037 sources."get-port-5.1.1" 84038 sources."p-timeout-3.2.0" 84039 ]; 84040 }) 84041 sources."bytes-3.0.0" 84042 - (sources."cacache-15.2.0" // { 84043 dependencies = [ 84044 sources."minipass-3.1.3" 84045 sources."mkdirp-1.0.4" ··· 84061 }) 84062 sources."camelcase-6.2.0" 84063 sources."caniuse-api-3.0.0" 84064 - sources."caniuse-lite-1.0.30001251" 84065 sources."caseless-0.12.0" 84066 (sources."chalk-4.1.2" // { 84067 dependencies = [ ··· 84196 sources."serialize-javascript-4.0.0" 84197 ]; 84198 }) 84199 - sources."core-js-3.16.2" 84200 - (sources."core-js-compat-3.16.2" // { 84201 dependencies = [ 84202 sources."browserslist-4.16.8" 84203 sources."semver-7.0.0" ··· 84333 sources."duplexify-3.7.1" 84334 sources."ecc-jsbn-0.1.2" 84335 sources."ee-first-1.1.1" 84336 - sources."electron-to-chromium-1.3.816" 84337 (sources."elliptic-6.5.4" // { 84338 dependencies = [ 84339 sources."bn.js-4.12.0" ··· 84412 sources."ms-2.0.0" 84413 ]; 84414 }) 84415 - (sources."expo-pwa-0.0.93" // { 84416 dependencies = [ 84417 sources."commander-2.20.0" 84418 ]; ··· 84928 sources."nan-2.15.0" 84929 sources."nanomatch-1.2.13" 84930 sources."ncp-2.0.0" 84931 - (sources."needle-2.8.0" // { 84932 dependencies = [ 84933 sources."debug-3.2.7" 84934 ]; ··· 85623 }) 85624 sources."symbol-observable-1.2.0" 85625 sources."tapable-1.1.3" 85626 - (sources."tar-6.1.10" // { 85627 dependencies = [ 85628 sources."minipass-3.1.3" 85629 sources."mkdirp-1.0.4" ··· 85953 sources."uuid-7.0.3" 85954 ]; 85955 }) 85956 - (sources."xdl-59.0.54" // { 85957 dependencies = [ 85958 sources."bplist-parser-0.3.0" 85959 sources."chownr-1.1.4" ··· 86047 sources."@babel/traverse-7.15.0" 86048 sources."@babel/types-7.15.0" 86049 sources."@types/minimist-1.2.2" 86050 - sources."@types/node-16.7.1" 86051 sources."@types/normalize-package-data-2.4.1" 86052 sources."@types/yauzl-2.9.2" 86053 sources."@types/yoga-layout-1.9.2" ··· 86074 sources."callsites-2.0.0" 86075 sources."camelcase-5.3.1" 86076 sources."camelcase-keys-6.2.2" 86077 - sources."caniuse-lite-1.0.30001251" 86078 sources."chalk-2.4.2" 86079 sources."chownr-1.1.4" 86080 sources."ci-info-2.0.0" ··· 86099 }) 86100 sources."delay-5.0.0" 86101 sources."devtools-protocol-0.0.869402" 86102 - sources."electron-to-chromium-1.3.816" 86103 sources."emoji-regex-8.0.0" 86104 sources."end-of-stream-1.4.4" 86105 sources."error-ex-1.3.2" ··· 86193 sources."puppeteer-9.1.1" 86194 sources."quick-lru-4.0.1" 86195 sources."react-16.14.0" 86196 - sources."react-devtools-core-4.16.0" 86197 sources."react-is-16.13.1" 86198 sources."react-reconciler-0.24.0" 86199 (sources."read-pkg-5.2.0" // { ··· 86960 firebase-tools = nodeEnv.buildNodePackage { 86961 name = "firebase-tools"; 86962 packageName = "firebase-tools"; 86963 - version = "9.16.5"; 86964 src = fetchurl { 86965 - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.16.5.tgz"; 86966 - sha512 = "dp/cvt+39wv5CO+MzX36snmRnvn5j7Nn73QfKiIvHXAT5Ek/fRJn2pWnaxP+bhd19SuEY1Buf8PcdlMl42hzlw=="; 86967 }; 86968 dependencies = [ 86969 (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { ··· 86972 ]; 86973 }) 86974 sources."@dabh/diagnostics-2.0.2" 86975 sources."@google-cloud/paginator-3.0.5" 86976 sources."@google-cloud/precise-date-2.0.3" 86977 sources."@google-cloud/projectify-2.1.0" 86978 sources."@google-cloud/promisify-2.0.3" 86979 - (sources."@google-cloud/pubsub-2.16.6" // { 86980 dependencies = [ 86981 sources."google-auth-library-7.6.2" 86982 ]; ··· 86984 sources."@grpc/grpc-js-1.3.7" 86985 sources."@grpc/proto-loader-0.6.4" 86986 sources."@jsdevtools/ono-7.1.3" 86987 (sources."@npmcli/move-file-1.1.2" // { 86988 dependencies = [ 86989 sources."mkdirp-1.0.4" ··· 87010 sources."@types/json-schema-7.0.9" 87011 sources."@types/long-4.0.1" 87012 sources."@types/minimatch-3.0.5" 87013 - sources."@types/node-16.7.1" 87014 sources."JSONStream-1.3.5" 87015 sources."abbrev-1.1.1" 87016 sources."abort-controller-3.0.0" ··· 87097 sources."buffer-indexof-polyfill-1.0.2" 87098 sources."buffers-0.1.1" 87099 sources."bytes-3.1.0" 87100 - (sources."cacache-15.2.0" // { 87101 dependencies = [ 87102 sources."mkdirp-1.0.4" 87103 - sources."tar-6.1.10" 87104 ]; 87105 }) 87106 (sources."cacheable-request-6.1.0" // { ··· 87568 dependencies = [ 87569 sources."mkdirp-1.0.4" 87570 sources."semver-7.3.5" 87571 - sources."tar-6.1.10" 87572 sources."which-2.0.2" 87573 ]; 87574 }) ··· 88116 dependencies = [ 88117 sources."@types/atob-2.1.2" 88118 sources."@types/inquirer-6.5.0" 88119 - sources."@types/node-16.7.1" 88120 sources."@types/through-0.0.30" 88121 sources."ajv-6.12.6" 88122 sources."ansi-escapes-4.3.2" ··· 88899 sources."@types/istanbul-lib-report-3.0.0" 88900 sources."@types/istanbul-reports-1.1.2" 88901 sources."@types/json-patch-0.0.30" 88902 - sources."@types/node-16.7.1" 88903 sources."@types/node-fetch-2.5.12" 88904 sources."@types/unist-2.0.6" 88905 sources."@types/yargs-15.0.14" ··· 88966 sources."call-bind-1.0.2" 88967 sources."camel-case-4.1.2" 88968 sources."camelcase-5.3.1" 88969 - sources."caniuse-lite-1.0.30001251" 88970 sources."ccount-1.1.0" 88971 (sources."chalk-4.1.2" // { 88972 dependencies = [ ··· 89016 ]; 89017 }) 89018 sources."content-type-1.0.4" 89019 - sources."contentful-management-7.32.1" 89020 sources."contentful-sdk-core-6.8.0" 89021 sources."convert-hrtime-3.0.0" 89022 (sources."convert-source-map-1.8.0" // { ··· 89062 sources."dotenv-8.6.0" 89063 sources."duplexer3-0.1.4" 89064 sources."ee-first-1.1.1" 89065 - sources."electron-to-chromium-1.3.816" 89066 sources."emoji-regex-7.0.3" 89067 sources."encodeurl-1.0.2" 89068 sources."end-of-stream-1.4.4" ··· 90506 sources."@nodelib/fs.walk-1.2.8" 90507 sources."@sindresorhus/is-0.14.0" 90508 sources."@szmarczak/http-timer-1.1.2" 90509 - sources."@types/node-16.7.1" 90510 sources."@types/parse-json-4.0.0" 90511 sources."@types/websocket-1.0.2" 90512 sources."abort-controller-3.0.0" ··· 91252 sources."supports-color-7.2.0" 91253 ]; 91254 }) 91255 - sources."systeminformation-5.8.2" 91256 sources."term-canvas-0.0.5" 91257 sources."type-fest-0.21.3" 91258 sources."wordwrap-0.0.3" ··· 93527 sha512 = "Gg0s1NP2mRJqzv68aT8cdt2+71iSYLDTWusAmlX7c8g13ZniSzCEHXywFvpILYm76lzCWxMazPleZhEEuBjqxQ=="; 93528 }; 93529 dependencies = [ 93530 - sources."@babel/code-frame-7.14.5" 93531 - sources."@babel/compat-data-7.15.0" 93532 - (sources."@babel/core-7.15.0" // { 93533 - dependencies = [ 93534 - sources."debug-4.3.2" 93535 - sources."ms-2.1.2" 93536 - sources."semver-6.3.0" 93537 - sources."source-map-0.5.7" 93538 - ]; 93539 - }) 93540 - (sources."@babel/generator-7.15.0" // { 93541 - dependencies = [ 93542 - sources."source-map-0.5.7" 93543 - ]; 93544 - }) 93545 - sources."@babel/helper-annotate-as-pure-7.14.5" 93546 - (sources."@babel/helper-compilation-targets-7.15.0" // { 93547 - dependencies = [ 93548 - sources."semver-6.3.0" 93549 - ]; 93550 - }) 93551 - sources."@babel/helper-create-class-features-plugin-7.15.0" 93552 - sources."@babel/helper-function-name-7.14.5" 93553 - sources."@babel/helper-get-function-arity-7.14.5" 93554 - sources."@babel/helper-hoist-variables-7.14.5" 93555 - sources."@babel/helper-member-expression-to-functions-7.15.0" 93556 - sources."@babel/helper-module-imports-7.14.5" 93557 - sources."@babel/helper-module-transforms-7.15.0" 93558 - sources."@babel/helper-optimise-call-expression-7.14.5" 93559 - sources."@babel/helper-plugin-utils-7.14.5" 93560 - sources."@babel/helper-replace-supers-7.15.0" 93561 - sources."@babel/helper-simple-access-7.14.8" 93562 - sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 93563 - sources."@babel/helper-split-export-declaration-7.14.5" 93564 - sources."@babel/helper-validator-identifier-7.14.9" 93565 - sources."@babel/helper-validator-option-7.14.5" 93566 - sources."@babel/helpers-7.15.3" 93567 - (sources."@babel/highlight-7.14.5" // { 93568 - dependencies = [ 93569 - sources."ansi-styles-3.2.1" 93570 - sources."chalk-2.4.2" 93571 - sources."escape-string-regexp-1.0.5" 93572 - ]; 93573 - }) 93574 - sources."@babel/parser-7.15.3" 93575 - sources."@babel/plugin-proposal-class-properties-7.14.5" 93576 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 93577 - sources."@babel/plugin-proposal-optional-chaining-7.14.5" 93578 - sources."@babel/plugin-syntax-flow-7.14.5" 93579 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 93580 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 93581 - sources."@babel/plugin-syntax-typescript-7.14.5" 93582 - sources."@babel/plugin-transform-flow-strip-types-7.14.5" 93583 - sources."@babel/plugin-transform-modules-commonjs-7.15.0" 93584 - sources."@babel/plugin-transform-typescript-7.15.0" 93585 - sources."@babel/preset-flow-7.14.5" 93586 - sources."@babel/preset-typescript-7.15.0" 93587 - sources."@babel/register-7.15.3" 93588 - sources."@babel/template-7.14.5" 93589 - (sources."@babel/traverse-7.15.0" // { 93590 - dependencies = [ 93591 - sources."debug-4.3.2" 93592 - sources."ms-2.1.2" 93593 - ]; 93594 - }) 93595 - sources."@babel/types-7.15.0" 93596 sources."@braintree/sanitize-url-3.1.0" 93597 sources."@cronvel/get-pixels-3.4.0" 93598 sources."@joplin/fork-htmlparser2-4.1.33" ··· 93611 ]; 93612 }) 93613 sources."@joplin/turndown-plugin-gfm-1.0.37" 93614 - sources."@nodelib/fs.scandir-2.1.5" 93615 - sources."@nodelib/fs.stat-2.0.5" 93616 - sources."@nodelib/fs.walk-1.2.8" 93617 - (sources."@oclif/command-1.8.0" // { 93618 - dependencies = [ 93619 - sources."debug-4.3.2" 93620 - sources."ms-2.1.2" 93621 - ]; 93622 - }) 93623 - (sources."@oclif/config-1.17.0" // { 93624 - dependencies = [ 93625 - sources."debug-4.3.2" 93626 - sources."ms-2.1.2" 93627 - sources."tslib-2.3.1" 93628 - ]; 93629 - }) 93630 - (sources."@oclif/core-0.5.32" // { 93631 - dependencies = [ 93632 - sources."ansi-regex-5.0.0" 93633 - sources."debug-4.3.2" 93634 - sources."fs-extra-9.1.0" 93635 - sources."is-fullwidth-code-point-3.0.0" 93636 - sources."jsonfile-6.1.0" 93637 - sources."ms-2.1.2" 93638 - sources."string-width-4.2.2" 93639 - sources."strip-ansi-6.0.0" 93640 - sources."tslib-2.3.1" 93641 - sources."universalify-2.0.0" 93642 - ]; 93643 - }) 93644 - (sources."@oclif/errors-1.3.5" // { 93645 - dependencies = [ 93646 - sources."ansi-regex-5.0.0" 93647 - sources."fs-extra-8.1.0" 93648 - sources."jsonfile-4.0.0" 93649 - sources."strip-ansi-6.0.0" 93650 - ]; 93651 - }) 93652 - sources."@oclif/linewrap-1.0.0" 93653 - (sources."@oclif/parser-3.8.5" // { 93654 - dependencies = [ 93655 - sources."ansi-styles-3.2.1" 93656 - sources."chalk-2.4.2" 93657 - sources."escape-string-regexp-1.0.5" 93658 - ]; 93659 - }) 93660 - sources."@oclif/plugin-help-3.3.0" 93661 - sources."@oclif/screen-1.0.4" 93662 - (sources."@percy/config-1.0.0-beta.65" // { 93663 - dependencies = [ 93664 - sources."ajv-8.6.2" 93665 - sources."json-schema-traverse-1.0.0" 93666 - ]; 93667 - }) 93668 - sources."@percy/logger-1.0.0-beta.65" 93669 - sources."@percy/migrate-0.10.0" 93670 - sources."@types/parse-json-4.0.0" 93671 sources."abab-2.0.5" 93672 sources."abbrev-1.1.1" 93673 sources."acorn-7.4.1" ··· 93683 sources."array-back-3.1.0" 93684 ]; 93685 }) 93686 - sources."ansi-escapes-4.3.2" 93687 sources."ansi-regex-2.1.1" 93688 (sources."ansi-styles-4.3.0" // { 93689 dependencies = [ ··· 93691 sources."color-name-1.1.4" 93692 ]; 93693 }) 93694 - sources."ansicolors-0.3.2" 93695 sources."anymatch-3.1.2" 93696 sources."aproba-1.2.0" 93697 sources."are-we-there-yet-1.1.5" ··· 93700 sources."sprintf-js-1.0.3" 93701 ]; 93702 }) 93703 - sources."arr-diff-4.0.0" 93704 - sources."arr-flatten-1.1.0" 93705 - sources."arr-union-3.1.0" 93706 sources."array-back-2.0.0" 93707 sources."array-equal-1.0.0" 93708 sources."array-flatten-3.0.0" 93709 - sources."array-union-2.1.0" 93710 - sources."array-unique-0.3.2" 93711 sources."asap-2.0.6" 93712 sources."asn1-0.2.4" 93713 sources."assert-plus-1.0.0" 93714 - sources."assign-symbols-1.0.0" 93715 - (sources."ast-types-0.14.2" // { 93716 - dependencies = [ 93717 - sources."tslib-2.3.1" 93718 - ]; 93719 - }) 93720 sources."async-mutex-0.1.4" 93721 sources."asynckit-0.4.0" 93722 - sources."at-least-node-1.0.0" 93723 sources."atob-2.1.2" 93724 - (sources."aws-sdk-2.974.0" // { 93725 dependencies = [ 93726 - sources."buffer-4.9.2" 93727 - sources."ieee754-1.1.13" 93728 sources."sax-1.2.1" 93729 sources."uuid-3.3.2" 93730 sources."xml2js-0.4.19" ··· 93733 }) 93734 sources."aws-sign2-0.7.0" 93735 sources."aws4-1.11.0" 93736 - sources."babel-core-7.0.0-bridge.0" 93737 - sources."babel-plugin-dynamic-import-node-2.3.3" 93738 sources."balanced-match-1.0.2" 93739 - (sources."base-0.11.2" // { 93740 - dependencies = [ 93741 - sources."define-property-1.0.0" 93742 - sources."isobject-3.0.1" 93743 - ]; 93744 - }) 93745 sources."base-64-0.1.0" 93746 sources."base64-js-1.5.1" 93747 sources."base64-stream-1.0.0" ··· 93749 sources."binary-extensions-2.2.0" 93750 (sources."bl-4.1.0" // { 93751 dependencies = [ 93752 sources."readable-stream-3.6.0" 93753 ]; 93754 }) ··· 93756 sources."brace-expansion-1.1.11" 93757 sources."braces-3.0.2" 93758 sources."browser-process-hrtime-1.0.0" 93759 - sources."browserslist-4.16.8" 93760 - sources."buffer-5.7.1" 93761 - sources."buffer-from-1.1.2" 93762 sources."builtin-modules-3.2.0" 93763 - (sources."cache-base-1.0.1" // { 93764 - dependencies = [ 93765 - sources."isobject-3.0.1" 93766 - ]; 93767 - }) 93768 - sources."call-bind-1.0.2" 93769 - sources."callsites-3.1.0" 93770 sources."camel-case-3.0.0" 93771 sources."camelcase-4.1.0" 93772 - sources."caniuse-lite-1.0.30001251" 93773 - sources."cardinal-2.1.1" 93774 sources."caseless-0.12.0" 93775 - (sources."chalk-4.1.2" // { 93776 - dependencies = [ 93777 - sources."has-flag-4.0.0" 93778 - sources."supports-color-7.2.0" 93779 - ]; 93780 - }) 93781 - sources."chardet-0.7.0" 93782 sources."charenc-0.0.2" 93783 sources."chokidar-3.5.2" 93784 sources."chownr-1.1.4" 93785 sources."chroma-js-2.1.2" 93786 - (sources."class-utils-0.3.6" // { 93787 - dependencies = [ 93788 - sources."define-property-0.2.5" 93789 - (sources."is-accessor-descriptor-0.1.6" // { 93790 - dependencies = [ 93791 - sources."kind-of-3.2.2" 93792 - ]; 93793 - }) 93794 - (sources."is-data-descriptor-0.1.4" // { 93795 - dependencies = [ 93796 - sources."kind-of-3.2.2" 93797 - ]; 93798 - }) 93799 - sources."is-descriptor-0.1.6" 93800 - sources."isobject-3.0.1" 93801 - sources."kind-of-5.1.0" 93802 - ]; 93803 - }) 93804 sources."clean-css-4.2.3" 93805 - sources."clean-stack-3.0.1" 93806 - sources."cli-cursor-3.1.0" 93807 - (sources."cli-progress-3.9.0" // { 93808 - dependencies = [ 93809 - sources."ansi-regex-5.0.0" 93810 - sources."is-fullwidth-code-point-3.0.0" 93811 - sources."string-width-4.2.2" 93812 - sources."strip-ansi-6.0.0" 93813 - ]; 93814 - }) 93815 - sources."cli-spinners-2.6.0" 93816 - (sources."cli-ux-5.6.3" // { 93817 - dependencies = [ 93818 - sources."ansi-regex-5.0.0" 93819 - sources."fs-extra-8.1.0" 93820 - sources."has-flag-4.0.0" 93821 - sources."is-fullwidth-code-point-3.0.0" 93822 - sources."jsonfile-4.0.0" 93823 - sources."string-width-4.2.2" 93824 - sources."strip-ansi-6.0.0" 93825 - sources."supports-color-8.1.1" 93826 - sources."tslib-2.3.1" 93827 - ]; 93828 - }) 93829 - sources."cli-width-3.0.0" 93830 sources."cliss-0.0.2" 93831 - sources."clone-1.0.4" 93832 - sources."clone-deep-4.0.1" 93833 sources."code-point-at-1.1.0" 93834 - sources."collection-visit-1.0.0" 93835 sources."color-3.1.2" 93836 sources."color-convert-1.9.3" 93837 sources."color-name-1.1.3" 93838 sources."color-string-1.6.0" 93839 - sources."colorette-1.3.0" 93840 - sources."colors-1.4.0" 93841 sources."combined-stream-1.0.8" 93842 sources."command-line-usage-4.1.0" 93843 sources."commander-2.17.1" 93844 - sources."commondir-1.0.1" 93845 sources."compare-version-0.1.2" 93846 sources."compare-versions-3.6.0" 93847 - sources."component-emitter-1.3.0" 93848 sources."concat-map-0.0.1" 93849 sources."console-control-strings-1.1.0" 93850 - (sources."convert-source-map-1.8.0" // { 93851 - dependencies = [ 93852 - sources."safe-buffer-5.1.2" 93853 - ]; 93854 - }) 93855 - sources."copy-descriptor-0.1.1" 93856 sources."core-util-is-1.0.2" 93857 - sources."cosmiconfig-7.0.1" 93858 sources."cross-env-6.0.3" 93859 - (sources."cross-spawn-7.0.3" // { 93860 - dependencies = [ 93861 - sources."path-key-3.1.1" 93862 - sources."shebang-command-2.0.0" 93863 - sources."shebang-regex-3.0.0" 93864 - ]; 93865 - }) 93866 sources."crypt-0.0.2" 93867 (sources."css-3.0.0" // { 93868 dependencies = [ ··· 93876 ]; 93877 }) 93878 sources."cwise-compiler-1.1.3" 93879 - sources."d3-5.16.0" 93880 - sources."d3-array-1.2.4" 93881 - sources."d3-axis-1.0.12" 93882 - sources."d3-brush-1.1.6" 93883 - sources."d3-chord-1.0.6" 93884 sources."d3-collection-1.0.7" 93885 - sources."d3-color-1.4.1" 93886 - sources."d3-contour-1.3.2" 93887 - sources."d3-dispatch-1.0.6" 93888 - sources."d3-drag-1.2.5" 93889 - sources."d3-dsv-1.2.0" 93890 - sources."d3-ease-1.0.7" 93891 - sources."d3-fetch-1.2.0" 93892 - sources."d3-force-1.2.1" 93893 - sources."d3-format-1.4.5" 93894 - sources."d3-geo-1.12.1" 93895 - sources."d3-hierarchy-1.1.9" 93896 - sources."d3-interpolate-1.4.0" 93897 - sources."d3-path-1.0.9" 93898 - sources."d3-polygon-1.0.6" 93899 - sources."d3-quadtree-1.0.7" 93900 - sources."d3-random-1.1.2" 93901 - sources."d3-scale-2.2.2" 93902 - sources."d3-scale-chromatic-1.5.0" 93903 - sources."d3-selection-1.4.2" 93904 - sources."d3-shape-1.3.7" 93905 - sources."d3-time-1.1.0" 93906 - sources."d3-time-format-2.3.0" 93907 - sources."d3-timer-1.0.10" 93908 - sources."d3-transition-1.3.2" 93909 sources."d3-voronoi-1.1.4" 93910 - sources."d3-zoom-1.8.3" 93911 sources."dagre-0.8.5" 93912 - sources."dagre-d3-0.6.4" 93913 sources."dashdash-1.14.1" 93914 sources."data-urls-1.1.0" 93915 sources."debug-3.2.7" ··· 93918 sources."deep-extend-0.6.0" 93919 sources."deep-is-0.1.3" 93920 sources."deepmerge-2.2.1" 93921 - sources."defaults-1.0.3" 93922 - sources."define-properties-1.1.3" 93923 - (sources."define-property-2.0.2" // { 93924 - dependencies = [ 93925 - sources."isobject-3.0.1" 93926 - ]; 93927 - }) 93928 sources."delayed-stream-1.0.0" 93929 sources."delegates-1.0.0" 93930 sources."depd-1.1.2" 93931 sources."detect-libc-1.0.3" 93932 sources."diff-match-patch-1.0.5" 93933 - sources."dir-glob-3.0.1" 93934 (sources."dom-serializer-1.3.2" // { 93935 dependencies = [ 93936 sources."domhandler-4.2.0" ··· 93939 sources."domelementtype-2.2.0" 93940 sources."domexception-1.0.1" 93941 sources."domhandler-3.3.0" 93942 - sources."dompurify-2.3.0" 93943 (sources."domutils-2.7.0" // { 93944 dependencies = [ 93945 sources."domhandler-4.2.0" 93946 ]; 93947 }) 93948 sources."ecc-jsbn-0.1.2" 93949 - sources."electron-to-chromium-1.3.816" 93950 - sources."emoji-regex-8.0.0" 93951 (sources."emphasize-1.5.0" // { 93952 dependencies = [ 93953 sources."ansi-styles-2.2.1" 93954 sources."chalk-1.1.3" 93955 - sources."escape-string-regexp-1.0.5" 93956 sources."highlight.js-9.12.0" 93957 sources."strip-ansi-3.0.1" 93958 sources."supports-color-2.0.0" ··· 93965 }) 93966 sources."end-of-stream-1.4.4" 93967 sources."entities-2.2.0" 93968 - (sources."error-ex-1.3.2" // { 93969 - dependencies = [ 93970 - sources."is-arrayish-0.2.1" 93971 - ]; 93972 - }) 93973 sources."es6-promise-pool-2.5.0" 93974 - sources."escalade-3.1.1" 93975 - sources."escape-string-regexp-4.0.0" 93976 sources."escodegen-1.14.3" 93977 sources."esprima-4.0.1" 93978 sources."estraverse-4.3.0" 93979 sources."esutils-2.0.3" 93980 sources."events-1.1.1" 93981 - (sources."expand-brackets-2.1.4" // { 93982 - dependencies = [ 93983 - sources."debug-2.6.9" 93984 - sources."define-property-0.2.5" 93985 - sources."extend-shallow-2.0.1" 93986 - (sources."is-accessor-descriptor-0.1.6" // { 93987 - dependencies = [ 93988 - sources."kind-of-3.2.2" 93989 - ]; 93990 - }) 93991 - (sources."is-data-descriptor-0.1.4" // { 93992 - dependencies = [ 93993 - sources."kind-of-3.2.2" 93994 - ]; 93995 - }) 93996 - sources."is-descriptor-0.1.6" 93997 - sources."kind-of-5.1.0" 93998 - sources."ms-2.0.0" 93999 - ]; 94000 - }) 94001 sources."expand-template-2.0.3" 94002 sources."extend-3.0.2" 94003 - (sources."extend-shallow-3.0.2" // { 94004 - dependencies = [ 94005 - sources."is-extendable-1.0.1" 94006 - ]; 94007 - }) 94008 - sources."external-editor-3.1.0" 94009 - (sources."extglob-2.0.4" // { 94010 - dependencies = [ 94011 - sources."define-property-1.0.0" 94012 - sources."extend-shallow-2.0.1" 94013 - ]; 94014 - }) 94015 - sources."extract-stack-2.0.0" 94016 sources."extsprintf-1.3.0" 94017 sources."fast-deep-equal-3.1.3" 94018 - sources."fast-glob-3.2.7" 94019 sources."fast-json-stable-stringify-2.1.0" 94020 sources."fast-levenshtein-2.0.6" 94021 - sources."fastq-1.12.0" 94022 sources."fault-1.0.4" 94023 - (sources."figures-3.2.0" // { 94024 - dependencies = [ 94025 - sources."escape-string-regexp-1.0.5" 94026 - ]; 94027 - }) 94028 sources."file-type-10.11.0" 94029 sources."file-uri-to-path-1.0.0" 94030 sources."fill-range-7.0.1" 94031 - sources."find-cache-dir-2.1.0" 94032 sources."find-up-2.1.0" 94033 - sources."flow-parser-0.158.0" 94034 sources."follow-redirects-1.14.2" 94035 sources."font-awesome-filetypes-2.1.0" 94036 sources."for-each-property-0.0.4" 94037 sources."for-each-property-deep-0.0.3" 94038 - sources."for-in-1.0.2" 94039 sources."forever-agent-0.6.1" 94040 sources."form-data-2.5.1" 94041 sources."format-0.2.2" 94042 - sources."fragment-cache-0.2.1" 94043 sources."fs-constants-1.0.0" 94044 (sources."fs-extra-5.0.0" // { 94045 dependencies = [ ··· 94050 sources."fs.realpath-1.0.0" 94051 sources."fsevents-2.3.2" 94052 sources."fstream-1.0.12" 94053 - sources."function-bind-1.1.1" 94054 (sources."gauge-2.7.4" // { 94055 dependencies = [ 94056 sources."strip-ansi-3.0.1" 94057 ]; 94058 }) 94059 - sources."gensync-1.0.0-beta.2" 94060 - sources."get-intrinsic-1.1.1" 94061 - sources."get-package-type-0.1.0" 94062 sources."get-prototype-chain-1.0.1" 94063 sources."get-stdin-5.0.1" 94064 - sources."get-value-2.0.6" 94065 sources."getpass-0.1.7" 94066 sources."github-from-package-0.0.0" 94067 sources."glob-7.1.7" 94068 sources."glob-parent-5.1.2" 94069 - sources."globals-11.12.0" 94070 - sources."globby-11.0.4" 94071 sources."graceful-fs-4.2.8" 94072 sources."graphlib-2.1.8" 94073 sources."growly-1.3.0" 94074 sources."har-schema-2.0.0" 94075 sources."har-validator-5.1.5" 94076 - sources."has-1.0.3" 94077 sources."has-ansi-2.0.0" 94078 - sources."has-flag-3.0.0" 94079 - sources."has-symbols-1.0.2" 94080 sources."has-unicode-2.0.1" 94081 - (sources."has-value-1.0.0" // { 94082 - dependencies = [ 94083 - sources."isobject-3.0.1" 94084 - ]; 94085 - }) 94086 - (sources."has-values-1.0.0" // { 94087 - dependencies = [ 94088 - (sources."is-number-3.0.0" // { 94089 - dependencies = [ 94090 - sources."kind-of-3.2.2" 94091 - ]; 94092 - }) 94093 - sources."kind-of-4.0.0" 94094 - ]; 94095 - }) 94096 sources."he-1.2.0" 94097 sources."highlight.js-11.2.0" 94098 sources."html-encoding-sniffer-1.0.2" ··· 94100 sources."html-minifier-3.5.21" 94101 sources."http-errors-1.8.0" 94102 sources."http-signature-1.2.0" 94103 - sources."hyperlinker-1.0.0" 94104 sources."iconv-lite-0.4.24" 94105 - sources."ieee754-1.2.1" 94106 - sources."ignore-5.1.8" 94107 sources."ignore-walk-3.0.4" 94108 (sources."image-data-uri-2.0.1" // { 94109 dependencies = [ ··· 94112 }) 94113 sources."image-type-3.1.0" 94114 sources."immer-7.0.15" 94115 - sources."import-fresh-3.3.0" 94116 - sources."imurmurhash-0.1.4" 94117 - sources."indent-string-4.0.0" 94118 sources."inflight-1.0.6" 94119 sources."inherits-2.0.4" 94120 sources."ini-1.3.8" 94121 - (sources."inquirer-8.1.2" // { 94122 - dependencies = [ 94123 - sources."ansi-regex-5.0.0" 94124 - sources."is-fullwidth-code-point-3.0.0" 94125 - sources."string-width-4.2.2" 94126 - sources."strip-ansi-6.0.0" 94127 - ]; 94128 - }) 94129 - (sources."inquirer-glob-prompt-0.1.0" // { 94130 - dependencies = [ 94131 - sources."rxjs-6.6.7" 94132 - ]; 94133 - }) 94134 (sources."inspect-function-0.2.2" // { 94135 dependencies = [ 94136 sources."split-skip-0.0.1" ··· 94157 sources."split-skip-0.0.1" 94158 ]; 94159 }) 94160 sources."iota-array-1.0.0" 94161 sources."ip-regex-2.1.0" 94162 sources."is-absolute-0.2.6" 94163 - sources."is-accessor-descriptor-1.0.0" 94164 sources."is-arrayish-0.3.2" 94165 sources."is-binary-path-2.1.0" 94166 sources."is-buffer-1.1.6" 94167 - sources."is-data-descriptor-1.0.0" 94168 - sources."is-descriptor-1.0.2" 94169 sources."is-docker-2.2.1" 94170 - sources."is-extendable-0.1.1" 94171 sources."is-extglob-2.1.1" 94172 sources."is-fullwidth-code-point-1.0.0" 94173 sources."is-glob-4.0.1" 94174 - sources."is-interactive-1.0.0" 94175 sources."is-number-7.0.0" 94176 - (sources."is-plain-object-2.0.4" // { 94177 - dependencies = [ 94178 - sources."isobject-3.0.1" 94179 - ]; 94180 - }) 94181 sources."is-relative-0.2.1" 94182 sources."is-stream-1.1.0" 94183 sources."is-typedarray-1.0.0" 94184 sources."is-unc-path-0.1.2" 94185 - sources."is-unicode-supported-0.1.0" 94186 sources."is-windows-0.2.0" 94187 sources."is-wsl-2.2.0" 94188 (sources."is2-0.0.9" // { ··· 94197 sources."jmespath-0.15.0" 94198 sources."jpeg-js-0.4.3" 94199 sources."js-tokens-4.0.0" 94200 - sources."js-yaml-3.14.1" 94201 sources."jsbn-0.1.1" 94202 - (sources."jscodeshift-0.11.0" // { 94203 - dependencies = [ 94204 - (sources."braces-2.3.2" // { 94205 - dependencies = [ 94206 - sources."extend-shallow-2.0.1" 94207 - ]; 94208 - }) 94209 - (sources."fill-range-4.0.0" // { 94210 - dependencies = [ 94211 - sources."extend-shallow-2.0.1" 94212 - ]; 94213 - }) 94214 - sources."is-number-3.0.0" 94215 - sources."isobject-3.0.1" 94216 - sources."kind-of-3.2.2" 94217 - sources."micromatch-3.1.10" 94218 - sources."to-regex-range-2.1.1" 94219 - ]; 94220 - }) 94221 sources."jsdom-15.2.1" 94222 - sources."jsesc-2.5.2" 94223 - sources."json-parse-even-better-errors-2.3.1" 94224 sources."json-schema-0.2.3" 94225 sources."json-schema-traverse-0.4.1" 94226 sources."json-stringify-safe-5.0.1" 94227 - sources."json5-2.2.0" 94228 sources."jsonfile-2.4.0" 94229 sources."jsprim-1.4.1" 94230 (sources."katex-0.13.13" // { ··· 94234 }) 94235 sources."keytar-7.7.0" 94236 sources."khroma-1.4.1" 94237 - sources."kind-of-6.0.3" 94238 sources."klaw-1.3.1" 94239 sources."lazyness-1.2.0" 94240 sources."levenshtein-1.0.5" 94241 sources."levn-0.3.0" 94242 - sources."lines-and-columns-1.1.6" 94243 sources."linkify-it-2.2.0" 94244 sources."locate-path-2.0.0" 94245 sources."lodash-4.17.21" 94246 sources."lodash-es-4.17.21" 94247 - sources."lodash._reinterpolate-3.0.0" 94248 sources."lodash.padend-4.6.1" 94249 sources."lodash.repeat-4.1.0" 94250 sources."lodash.sortby-4.7.0" 94251 - sources."lodash.template-4.5.0" 94252 - sources."lodash.templatesettings-4.2.0" 94253 sources."lodash.toarray-4.4.0" 94254 - sources."log-symbols-4.1.0" 94255 sources."loose-envify-1.4.0" 94256 sources."lower-case-1.1.4" 94257 (sources."lowlight-1.9.2" // { ··· 94261 }) 94262 sources."lru-cache-6.0.0" 94263 sources."magicli-0.0.8" 94264 - (sources."make-dir-2.1.0" // { 94265 - dependencies = [ 94266 - sources."semver-5.7.1" 94267 - ]; 94268 - }) 94269 - sources."map-cache-0.2.2" 94270 - sources."map-visit-1.0.0" 94271 (sources."markdown-it-10.0.0" // { 94272 dependencies = [ 94273 sources."entities-2.0.3" ··· 94294 sources."md5-2.3.0" 94295 sources."md5-file-4.0.0" 94296 sources."mdurl-1.0.1" 94297 - sources."merge2-1.4.1" 94298 - sources."mermaid-8.11.5" 94299 - sources."micromatch-4.0.4" 94300 sources."mime-db-1.49.0" 94301 sources."mime-types-2.1.32" 94302 - sources."mimic-fn-2.1.0" 94303 sources."mimic-response-2.1.0" 94304 sources."minimatch-3.0.4" 94305 sources."minimist-1.2.5" ··· 94309 ]; 94310 }) 94311 sources."minizlib-1.3.3" 94312 - (sources."mixin-deep-1.3.2" // { 94313 - dependencies = [ 94314 - sources."is-extendable-1.0.1" 94315 - ]; 94316 - }) 94317 sources."mkdirp-0.5.5" 94318 sources."mkdirp-classic-0.5.3" 94319 sources."moment-2.29.1" ··· 94321 sources."ms-2.1.3" 94322 sources."multiparty-4.2.2" 94323 sources."mustache-4.2.0" 94324 - sources."mute-stream-0.0.8" 94325 sources."nanoid-3.1.25" 94326 - (sources."nanomatch-1.2.13" // { 94327 - dependencies = [ 94328 - sources."is-windows-1.0.2" 94329 - ]; 94330 - }) 94331 sources."napi-build-utils-1.0.2" 94332 - sources."natural-orderby-2.0.3" 94333 sources."ndarray-1.0.19" 94334 sources."ndarray-pack-1.2.1" 94335 - sources."needle-2.8.0" 94336 - sources."neo-async-2.6.2" 94337 sources."nextgen-events-1.5.2" 94338 - sources."nice-try-1.0.5" 94339 sources."no-case-2.3.2" 94340 (sources."node-abi-2.30.0" // { 94341 dependencies = [ ··· 94344 }) 94345 sources."node-addon-api-3.2.1" 94346 sources."node-bitmap-0.0.1" 94347 - sources."node-dir-0.1.17" 94348 sources."node-emoji-1.11.0" 94349 sources."node-fetch-1.7.3" 94350 (sources."node-gyp-3.8.0" // { ··· 94355 sources."which-1.3.1" 94356 ]; 94357 }) 94358 - sources."node-modules-regexp-1.0.0" 94359 (sources."node-notifier-8.0.2" // { 94360 dependencies = [ 94361 sources."uuid-8.3.2" ··· 94367 sources."semver-5.7.1" 94368 ]; 94369 }) 94370 - sources."node-releases-1.1.75" 94371 sources."nopt-4.0.3" 94372 sources."normalize-path-3.0.0" 94373 sources."npm-bundled-1.1.2" ··· 94378 sources."nwsapi-2.2.0" 94379 sources."oauth-sign-0.9.0" 94380 sources."object-assign-4.1.1" 94381 - (sources."object-copy-0.1.0" // { 94382 - dependencies = [ 94383 - sources."define-property-0.2.5" 94384 - sources."is-accessor-descriptor-0.1.6" 94385 - sources."is-data-descriptor-0.1.4" 94386 - (sources."is-descriptor-0.1.6" // { 94387 - dependencies = [ 94388 - sources."kind-of-5.1.0" 94389 - ]; 94390 - }) 94391 - sources."kind-of-3.2.2" 94392 - ]; 94393 - }) 94394 - sources."object-keys-1.1.1" 94395 (sources."object-to-arguments-0.0.8" // { 94396 dependencies = [ 94397 sources."inspect-parameters-declaration-0.0.10" 94398 sources."magicli-0.0.5" 94399 ]; 94400 }) 94401 - sources."object-treeify-1.1.33" 94402 - (sources."object-visit-1.0.1" // { 94403 - dependencies = [ 94404 - sources."isobject-3.0.1" 94405 - ]; 94406 - }) 94407 - sources."object.assign-4.1.2" 94408 - (sources."object.pick-1.3.0" // { 94409 - dependencies = [ 94410 - sources."isobject-3.0.1" 94411 - ]; 94412 - }) 94413 sources."omggif-1.0.10" 94414 sources."once-1.4.0" 94415 - sources."onetime-5.1.2" 94416 sources."open-7.4.2" 94417 sources."optionator-0.8.3" 94418 - (sources."ora-5.4.1" // { 94419 - dependencies = [ 94420 - sources."ansi-regex-5.0.0" 94421 - sources."strip-ansi-6.0.0" 94422 - ]; 94423 - }) 94424 sources."os-homedir-1.0.2" 94425 sources."os-tmpdir-1.0.2" 94426 sources."osenv-0.1.5" ··· 94428 sources."p-locate-2.0.0" 94429 sources."p-try-1.0.0" 94430 sources."param-case-2.1.1" 94431 - sources."parent-module-1.0.1" 94432 - sources."parse-json-5.2.0" 94433 sources."parse5-5.1.0" 94434 - sources."pascalcase-0.1.1" 94435 - (sources."password-prompt-1.1.2" // { 94436 - dependencies = [ 94437 - sources."ansi-escapes-3.2.0" 94438 - sources."cross-spawn-6.0.5" 94439 - sources."semver-5.7.1" 94440 - sources."which-1.3.1" 94441 - ]; 94442 - }) 94443 sources."path-exists-3.0.0" 94444 sources."path-is-absolute-1.0.1" 94445 - sources."path-key-2.0.1" 94446 - sources."path-type-4.0.0" 94447 sources."performance-now-2.1.0" 94448 sources."picomatch-2.3.0" 94449 - sources."pify-4.0.1" 94450 sources."pipe-functions-1.3.0" 94451 - sources."pirates-4.0.1" 94452 - (sources."pkg-dir-3.0.0" // { 94453 - dependencies = [ 94454 - sources."find-up-3.0.0" 94455 - sources."locate-path-3.0.0" 94456 - sources."p-limit-2.3.0" 94457 - sources."p-locate-3.0.0" 94458 - sources."p-try-2.2.0" 94459 - ]; 94460 - }) 94461 sources."pn-1.1.0" 94462 sources."pngjs-5.0.0" 94463 - sources."posix-character-classes-0.1.1" 94464 sources."prebuild-install-6.1.4" 94465 sources."prelude-ls-1.1.2" 94466 sources."process-nextick-args-2.0.1" ··· 94474 sources."query-string-4.3.4" 94475 sources."querystring-0.2.0" 94476 sources."querystringify-2.2.0" 94477 - sources."queue-microtask-1.2.3" 94478 sources."random-bytes-1.0.0" 94479 sources."rc-1.2.8" 94480 sources."re-reselect-4.0.0" 94481 - (sources."read-chunk-2.1.0" // { 94482 - dependencies = [ 94483 - sources."pify-3.0.0" 94484 - ]; 94485 - }) 94486 (sources."readable-stream-2.3.7" // { 94487 dependencies = [ 94488 sources."safe-buffer-5.1.2" 94489 ]; 94490 }) 94491 sources."readdirp-3.6.0" 94492 - (sources."recast-0.20.5" // { 94493 - dependencies = [ 94494 - sources."tslib-2.3.1" 94495 - ]; 94496 - }) 94497 - sources."redeyed-2.1.1" 94498 sources."reduce-flatten-1.0.1" 94499 sources."redux-3.7.2" 94500 - sources."regex-not-1.0.2" 94501 sources."relateurl-0.2.7" 94502 sources."relative-3.0.2" 94503 - sources."repeat-element-1.1.4" 94504 - sources."repeat-string-1.6.1" 94505 (sources."request-2.88.2" // { 94506 dependencies = [ 94507 sources."form-data-2.3.3" ··· 94514 sources."tough-cookie-2.5.0" 94515 ]; 94516 }) 94517 - sources."require-from-string-2.0.2" 94518 sources."requires-port-1.0.0" 94519 sources."reselect-4.0.0" 94520 - sources."resolve-from-4.0.0" 94521 sources."resolve-url-0.2.1" 94522 - sources."restore-cursor-3.1.0" 94523 - sources."ret-0.1.15" 94524 sources."retry-0.10.1" 94525 - sources."reusify-1.0.4" 94526 sources."rimraf-2.7.1" 94527 - sources."run-async-2.4.1" 94528 - sources."run-parallel-1.2.0" 94529 sources."rw-1.3.3" 94530 - (sources."rxjs-7.3.0" // { 94531 - dependencies = [ 94532 - sources."tslib-2.1.0" 94533 - ]; 94534 - }) 94535 sources."safe-buffer-5.2.1" 94536 - sources."safe-regex-1.1.0" 94537 sources."safer-buffer-2.1.2" 94538 sources."sax-1.2.4" 94539 sources."saxes-3.1.11" 94540 sources."semver-7.3.5" 94541 sources."server-destroy-1.0.1" 94542 sources."set-blocking-2.0.0" 94543 - (sources."set-value-2.0.1" // { 94544 - dependencies = [ 94545 - sources."extend-shallow-2.0.1" 94546 - ]; 94547 - }) 94548 sources."setimmediate-1.0.5" 94549 sources."setprototypeof-1.2.0" 94550 sources."seventh-0.7.40" 94551 - sources."shallow-clone-3.0.1" 94552 (sources."sharp-0.26.3" // { 94553 dependencies = [ 94554 sources."color-3.2.1" ··· 94557 sources."simple-get-4.0.0" 94558 ]; 94559 }) 94560 - sources."shebang-command-1.2.0" 94561 - sources."shebang-regex-1.0.0" 94562 sources."shellwords-0.1.1" 94563 sources."signal-exit-3.0.3" 94564 sources."simple-concat-1.0.1" 94565 sources."simple-get-3.1.0" 94566 sources."simple-swizzle-0.2.2" 94567 - sources."slash-3.0.0" 94568 (sources."slice-ansi-1.0.0" // { 94569 dependencies = [ 94570 sources."is-fullwidth-code-point-2.0.0" 94571 ]; 94572 }) 94573 - (sources."snapdragon-0.8.2" // { 94574 - dependencies = [ 94575 - sources."debug-2.6.9" 94576 - sources."define-property-0.2.5" 94577 - sources."extend-shallow-2.0.1" 94578 - (sources."is-accessor-descriptor-0.1.6" // { 94579 - dependencies = [ 94580 - sources."kind-of-3.2.2" 94581 - ]; 94582 - }) 94583 - (sources."is-data-descriptor-0.1.4" // { 94584 - dependencies = [ 94585 - sources."kind-of-3.2.2" 94586 - ]; 94587 - }) 94588 - sources."is-descriptor-0.1.6" 94589 - sources."kind-of-5.1.0" 94590 - sources."ms-2.0.0" 94591 - sources."source-map-0.5.7" 94592 - ]; 94593 - }) 94594 - (sources."snapdragon-node-2.1.1" // { 94595 - dependencies = [ 94596 - sources."define-property-1.0.0" 94597 - sources."isobject-3.0.1" 94598 - ]; 94599 - }) 94600 - (sources."snapdragon-util-3.0.1" // { 94601 - dependencies = [ 94602 - sources."kind-of-3.2.2" 94603 - ]; 94604 - }) 94605 sources."source-map-0.6.1" 94606 sources."source-map-resolve-0.5.3" 94607 - sources."source-map-support-0.5.19" 94608 sources."source-map-url-0.4.1" 94609 sources."split-skip-0.0.2" 94610 - sources."split-string-3.1.0" 94611 sources."sprintf-js-1.1.2" 94612 sources."sqlite3-5.0.2" 94613 sources."sshpk-1.16.1" 94614 - (sources."static-extend-0.1.2" // { 94615 - dependencies = [ 94616 - sources."define-property-0.2.5" 94617 - (sources."is-accessor-descriptor-0.1.6" // { 94618 - dependencies = [ 94619 - sources."kind-of-3.2.2" 94620 - ]; 94621 - }) 94622 - (sources."is-data-descriptor-0.1.4" // { 94623 - dependencies = [ 94624 - sources."kind-of-3.2.2" 94625 - ]; 94626 - }) 94627 - sources."is-descriptor-0.1.6" 94628 - sources."kind-of-5.1.0" 94629 - ]; 94630 - }) 94631 sources."statuses-1.5.0" 94632 sources."stealthy-require-1.1.1" 94633 sources."strict-uri-encode-1.1.0" ··· 94656 }) 94657 sources."strip-json-comments-2.0.1" 94658 sources."stylis-4.0.10" 94659 - sources."supports-color-5.5.0" 94660 - (sources."supports-hyperlinks-2.2.0" // { 94661 - dependencies = [ 94662 - sources."has-flag-4.0.0" 94663 - sources."supports-color-7.2.0" 94664 - ]; 94665 - }) 94666 sources."symbol-observable-1.2.0" 94667 sources."symbol-tree-3.2.4" 94668 sources."table-layout-0.4.5" ··· 94683 sources."q-0.9.7" 94684 ]; 94685 }) 94686 - (sources."temp-0.8.4" // { 94687 - dependencies = [ 94688 - sources."rimraf-2.6.3" 94689 - ]; 94690 - }) 94691 sources."terminal-kit-1.49.4" 94692 - sources."through-2.3.8" 94693 (sources."tkwidgets-0.5.26" // { 94694 dependencies = [ 94695 sources."ansi-styles-3.2.1" 94696 sources."chalk-2.4.2" 94697 - sources."escape-string-regexp-1.0.5" 94698 sources."is-fullwidth-code-point-2.0.0" 94699 sources."node-emoji-git+https://github.com/laurent22/node-emoji.git" 94700 sources."string-width-2.1.1" 94701 - sources."wrap-ansi-3.0.1" 94702 - ]; 94703 - }) 94704 - sources."tmp-0.0.33" 94705 - sources."to-fast-properties-2.0.0" 94706 - (sources."to-object-path-0.3.0" // { 94707 - dependencies = [ 94708 - sources."kind-of-3.2.2" 94709 ]; 94710 }) 94711 - sources."to-regex-3.0.2" 94712 sources."to-regex-range-5.0.1" 94713 sources."toidentifier-1.0.0" 94714 sources."tough-cookie-3.0.1" 94715 sources."tr46-1.0.1" 94716 sources."tree-kit-0.7.0" 94717 - sources."tslib-1.14.1" 94718 sources."tunnel-agent-0.6.0" 94719 sources."tweetnacl-0.14.5" 94720 sources."type-check-0.3.2" 94721 - sources."type-fest-0.21.3" 94722 sources."typical-2.6.1" 94723 sources."uc.micro-1.0.6" 94724 (sources."uglify-js-3.4.10" // { ··· 94729 sources."uglifycss-0.0.29" 94730 sources."uid-safe-2.1.5" 94731 sources."unc-path-regex-0.1.2" 94732 - sources."union-value-1.0.1" 94733 sources."uniq-1.0.1" 94734 sources."universalify-0.1.2" 94735 sources."unorm-1.6.0" 94736 sources."unpack-string-0.0.2" 94737 - (sources."unset-value-1.0.0" // { 94738 - dependencies = [ 94739 - (sources."has-value-0.3.1" // { 94740 - dependencies = [ 94741 - sources."isobject-2.1.0" 94742 - ]; 94743 - }) 94744 - sources."has-values-0.1.4" 94745 - sources."isobject-3.0.1" 94746 - ]; 94747 - }) 94748 sources."upper-case-1.1.3" 94749 sources."uri-js-4.4.1" 94750 sources."urix-0.1.0" ··· 94754 ]; 94755 }) 94756 sources."url-parse-1.5.3" 94757 - sources."use-3.1.1" 94758 sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support" 94759 sources."util-deprecate-1.0.2" 94760 sources."uuid-3.4.0" ··· 94762 sources."verror-1.10.0" 94763 sources."w3c-hr-time-1.0.2" 94764 sources."w3c-xmlserializer-1.1.2" 94765 - sources."wcwidth-1.0.1" 94766 sources."webidl-conversions-4.0.2" 94767 sources."whatwg-encoding-1.0.5" 94768 sources."whatwg-mimetype-2.3.0" 94769 sources."whatwg-url-7.1.0" 94770 sources."which-2.0.2" 94771 sources."wide-align-1.1.3" 94772 - (sources."widest-line-3.1.0" // { 94773 - dependencies = [ 94774 - sources."ansi-regex-5.0.0" 94775 - sources."is-fullwidth-code-point-3.0.0" 94776 - sources."string-width-4.2.2" 94777 - sources."strip-ansi-6.0.0" 94778 - ]; 94779 - }) 94780 sources."word-wrap-1.2.3" 94781 sources."wordwrapjs-3.0.0" 94782 - (sources."wrap-ansi-7.0.0" // { 94783 dependencies = [ 94784 - sources."ansi-regex-5.0.0" 94785 - sources."is-fullwidth-code-point-3.0.0" 94786 - sources."string-width-4.2.2" 94787 - sources."strip-ansi-6.0.0" 94788 ]; 94789 }) 94790 sources."wrappy-1.0.2" 94791 - sources."write-file-atomic-2.4.3" 94792 sources."ws-7.5.3" 94793 sources."xml-name-validator-3.0.0" 94794 sources."xml2js-0.4.23" 94795 sources."xmlbuilder-11.0.1" 94796 sources."xmlchars-2.2.0" 94797 sources."yallist-4.0.0" 94798 - sources."yaml-1.10.2" 94799 sources."yargs-parser-7.0.0" 94800 ]; 94801 buildInputs = globalBuildInputs; ··· 96190 sources."@types/component-emitter-1.2.10" 96191 sources."@types/cookie-0.4.1" 96192 sources."@types/cors-2.8.12" 96193 - sources."@types/node-16.7.1" 96194 sources."accepts-1.3.7" 96195 sources."ansi-regex-5.0.0" 96196 sources."ansi-styles-4.3.0" ··· 97226 sources."supports-color-5.5.0" 97227 ]; 97228 }) 97229 sources."@hutson/parse-repository-url-3.0.2" 97230 sources."@lerna/add-4.0.0" 97231 sources."@lerna/bootstrap-4.0.0" ··· 97325 sources."@nodelib/fs.stat-2.0.5" 97326 sources."@nodelib/fs.walk-1.2.8" 97327 sources."@npmcli/ci-detect-1.3.0" 97328 sources."@npmcli/git-2.1.0" 97329 sources."@npmcli/installed-package-contents-1.0.7" 97330 sources."@npmcli/move-file-1.1.2" ··· 97399 sources."builtins-1.0.3" 97400 sources."byline-5.0.0" 97401 sources."byte-size-7.0.1" 97402 - sources."cacache-15.2.0" 97403 sources."call-bind-1.0.2" 97404 sources."callsites-3.1.0" 97405 sources."camelcase-5.3.1" ··· 97597 (sources."init-package-json-2.0.4" // { 97598 dependencies = [ 97599 sources."normalize-package-data-3.0.3" 97600 - sources."read-package-json-4.0.0" 97601 ]; 97602 }) 97603 (sources."inquirer-7.3.3" // { ··· 97892 sources."strip-indent-3.0.0" 97893 sources."strong-log-transformer-2.1.0" 97894 sources."supports-color-7.2.0" 97895 - sources."tar-6.1.10" 97896 sources."temp-dir-1.0.0" 97897 (sources."temp-write-4.0.0" // { 97898 dependencies = [ ··· 98004 sources."make-dir-2.1.0" 98005 sources."mime-1.6.0" 98006 sources."ms-2.1.3" 98007 - sources."needle-2.8.0" 98008 sources."parse-node-version-1.0.1" 98009 sources."pify-4.0.1" 98010 sources."prr-1.0.1" ··· 99026 sources."@types/istanbul-lib-report-3.0.0" 99027 sources."@types/istanbul-reports-1.1.2" 99028 sources."@types/json-schema-7.0.9" 99029 - sources."@types/node-16.7.1" 99030 sources."@types/normalize-package-data-2.4.1" 99031 sources."@types/resolve-0.0.8" 99032 sources."@types/yargs-15.0.14" ··· 99199 sources."cached-path-relative-1.0.2" 99200 sources."call-bind-1.0.2" 99201 sources."camelcase-5.3.1" 99202 - sources."caniuse-lite-1.0.30001251" 99203 sources."capture-exit-2.0.0" 99204 sources."caseless-0.12.0" 99205 (sources."chalk-3.0.0" // { ··· 99271 }) 99272 sources."copy-descriptor-0.1.1" 99273 sources."core-js-2.6.12" 99274 - (sources."core-js-compat-3.16.2" // { 99275 dependencies = [ 99276 sources."semver-7.0.0" 99277 ]; ··· 99323 sources."duplexer2-0.1.4" 99324 sources."duplexify-3.7.1" 99325 sources."ecc-jsbn-0.1.2" 99326 - sources."electron-to-chromium-1.3.816" 99327 (sources."elliptic-6.5.4" // { 99328 dependencies = [ 99329 sources."bn.js-4.12.0" ··· 100570 sha512 = "kvOJ9VkabUFEASC0yE7KiWT7e8t2OBb6cw4YOXctXRJtbxSubLSANpfSxuy+MuaR9JJCMWcqD6sYy8FmdaPiaQ=="; 100571 }; 100572 dependencies = [ 100573 - sources."@babel/code-frame-7.14.5" 100574 - sources."@babel/compat-data-7.15.0" 100575 - (sources."@babel/core-7.15.0" // { 100576 - dependencies = [ 100577 - sources."semver-6.3.0" 100578 - ]; 100579 - }) 100580 - sources."@babel/generator-7.15.0" 100581 - sources."@babel/helper-annotate-as-pure-7.14.5" 100582 - (sources."@babel/helper-compilation-targets-7.15.0" // { 100583 - dependencies = [ 100584 - sources."semver-6.3.0" 100585 - ]; 100586 - }) 100587 - sources."@babel/helper-create-class-features-plugin-7.15.0" 100588 - sources."@babel/helper-function-name-7.14.5" 100589 - sources."@babel/helper-get-function-arity-7.14.5" 100590 - sources."@babel/helper-hoist-variables-7.14.5" 100591 - sources."@babel/helper-member-expression-to-functions-7.15.0" 100592 - sources."@babel/helper-module-imports-7.14.5" 100593 - sources."@babel/helper-module-transforms-7.15.0" 100594 - sources."@babel/helper-optimise-call-expression-7.14.5" 100595 - sources."@babel/helper-plugin-utils-7.14.5" 100596 - sources."@babel/helper-replace-supers-7.15.0" 100597 - sources."@babel/helper-simple-access-7.14.8" 100598 - sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5" 100599 - sources."@babel/helper-split-export-declaration-7.14.5" 100600 - sources."@babel/helper-validator-identifier-7.14.9" 100601 - sources."@babel/helper-validator-option-7.14.5" 100602 - sources."@babel/helpers-7.15.3" 100603 - (sources."@babel/highlight-7.14.5" // { 100604 - dependencies = [ 100605 - sources."ansi-styles-3.2.1" 100606 - sources."chalk-2.4.2" 100607 - sources."color-convert-1.9.3" 100608 - sources."color-name-1.1.3" 100609 - sources."escape-string-regexp-1.0.5" 100610 - sources."has-flag-3.0.0" 100611 - sources."supports-color-5.5.0" 100612 - ]; 100613 - }) 100614 - sources."@babel/parser-7.15.3" 100615 - sources."@babel/plugin-proposal-class-properties-7.14.5" 100616 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 100617 - sources."@babel/plugin-proposal-optional-chaining-7.14.5" 100618 - sources."@babel/plugin-syntax-flow-7.14.5" 100619 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 100620 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 100621 - sources."@babel/plugin-syntax-typescript-7.14.5" 100622 - sources."@babel/plugin-transform-flow-strip-types-7.14.5" 100623 - sources."@babel/plugin-transform-modules-commonjs-7.15.0" 100624 - sources."@babel/plugin-transform-typescript-7.15.0" 100625 - sources."@babel/preset-flow-7.14.5" 100626 - sources."@babel/preset-typescript-7.15.0" 100627 - sources."@babel/register-7.15.3" 100628 - sources."@babel/template-7.14.5" 100629 - sources."@babel/traverse-7.15.0" 100630 - sources."@babel/types-7.15.0" 100631 sources."@braintree/sanitize-url-3.1.0" 100632 - sources."@nodelib/fs.scandir-2.1.5" 100633 - sources."@nodelib/fs.stat-2.0.5" 100634 - sources."@nodelib/fs.walk-1.2.8" 100635 - sources."@oclif/command-1.8.0" 100636 - (sources."@oclif/config-1.17.0" // { 100637 - dependencies = [ 100638 - sources."tslib-2.3.1" 100639 - ]; 100640 - }) 100641 - (sources."@oclif/core-0.5.32" // { 100642 - dependencies = [ 100643 - sources."fs-extra-9.1.0" 100644 - sources."jsonfile-6.1.0" 100645 - sources."tslib-2.3.1" 100646 - sources."universalify-2.0.0" 100647 - ]; 100648 - }) 100649 - sources."@oclif/errors-1.3.5" 100650 - sources."@oclif/linewrap-1.0.0" 100651 - (sources."@oclif/parser-3.8.5" // { 100652 - dependencies = [ 100653 - sources."ansi-styles-3.2.1" 100654 - sources."chalk-2.4.2" 100655 - sources."color-convert-1.9.3" 100656 - sources."color-name-1.1.3" 100657 - sources."escape-string-regexp-1.0.5" 100658 - sources."has-flag-3.0.0" 100659 - sources."supports-color-5.5.0" 100660 - ]; 100661 - }) 100662 - sources."@oclif/plugin-help-3.3.0" 100663 - sources."@oclif/screen-1.0.4" 100664 - sources."@percy/config-1.0.0-beta.65" 100665 - sources."@percy/logger-1.0.0-beta.65" 100666 - sources."@percy/migrate-0.10.0" 100667 - sources."@types/node-16.7.1" 100668 - sources."@types/parse-json-4.0.0" 100669 sources."@types/yauzl-2.9.2" 100670 sources."agent-base-6.0.2" 100671 - sources."ajv-8.6.2" 100672 - sources."ansi-escapes-4.3.2" 100673 - sources."ansi-regex-5.0.0" 100674 sources."ansi-styles-4.3.0" 100675 - sources."ansicolors-0.3.2" 100676 - sources."argparse-1.0.10" 100677 - sources."arr-diff-4.0.0" 100678 - sources."arr-flatten-1.1.0" 100679 - sources."arr-union-3.1.0" 100680 - sources."array-union-2.1.0" 100681 - sources."array-unique-0.3.2" 100682 - sources."assign-symbols-1.0.0" 100683 - (sources."ast-types-0.14.2" // { 100684 - dependencies = [ 100685 - sources."tslib-2.3.1" 100686 - ]; 100687 - }) 100688 - sources."at-least-node-1.0.0" 100689 - sources."atob-2.1.2" 100690 - sources."babel-core-7.0.0-bridge.0" 100691 - sources."babel-plugin-dynamic-import-node-2.3.3" 100692 sources."balanced-match-1.0.2" 100693 - (sources."base-0.11.2" // { 100694 - dependencies = [ 100695 - sources."define-property-1.0.0" 100696 - ]; 100697 - }) 100698 sources."base64-js-1.5.1" 100699 sources."bl-4.1.0" 100700 sources."brace-expansion-1.1.11" 100701 - sources."braces-3.0.2" 100702 - sources."browserslist-4.16.8" 100703 sources."buffer-5.7.1" 100704 sources."buffer-crc32-0.2.13" 100705 - sources."buffer-from-1.1.2" 100706 - sources."cache-base-1.0.1" 100707 - sources."call-bind-1.0.2" 100708 - sources."callsites-3.1.0" 100709 - sources."caniuse-lite-1.0.30001251" 100710 - sources."cardinal-2.1.1" 100711 sources."chalk-4.1.2" 100712 - sources."chardet-0.7.0" 100713 sources."chownr-1.1.4" 100714 - (sources."class-utils-0.3.6" // { 100715 - dependencies = [ 100716 - sources."define-property-0.2.5" 100717 - (sources."is-accessor-descriptor-0.1.6" // { 100718 - dependencies = [ 100719 - sources."kind-of-3.2.2" 100720 - ]; 100721 - }) 100722 - (sources."is-data-descriptor-0.1.4" // { 100723 - dependencies = [ 100724 - sources."kind-of-3.2.2" 100725 - ]; 100726 - }) 100727 - sources."is-descriptor-0.1.6" 100728 - sources."kind-of-5.1.0" 100729 - ]; 100730 - }) 100731 - sources."clean-stack-3.0.1" 100732 - sources."cli-cursor-3.1.0" 100733 - sources."cli-progress-3.9.0" 100734 - sources."cli-spinners-2.6.0" 100735 - (sources."cli-ux-5.6.3" // { 100736 - dependencies = [ 100737 - sources."supports-color-8.1.1" 100738 - sources."tslib-2.3.1" 100739 - ]; 100740 - }) 100741 - sources."cli-width-3.0.0" 100742 - sources."clone-1.0.4" 100743 - sources."clone-deep-4.0.1" 100744 - sources."collection-visit-1.0.0" 100745 sources."color-convert-2.0.1" 100746 sources."color-name-1.1.4" 100747 - sources."colorette-1.3.0" 100748 - sources."colors-1.4.0" 100749 sources."commander-8.1.0" 100750 - sources."commondir-1.0.1" 100751 - sources."component-emitter-1.3.0" 100752 sources."concat-map-0.0.1" 100753 - (sources."convert-source-map-1.8.0" // { 100754 dependencies = [ 100755 - sources."safe-buffer-5.1.2" 100756 ]; 100757 }) 100758 - sources."copy-descriptor-0.1.1" 100759 - sources."cosmiconfig-7.0.1" 100760 - (sources."cross-spawn-7.0.3" // { 100761 - dependencies = [ 100762 - sources."path-key-3.1.1" 100763 - sources."shebang-command-2.0.0" 100764 - sources."shebang-regex-3.0.0" 100765 - sources."which-2.0.2" 100766 - ]; 100767 - }) 100768 - sources."d3-5.16.0" 100769 - sources."d3-array-1.2.4" 100770 - sources."d3-axis-1.0.12" 100771 - sources."d3-brush-1.1.6" 100772 - sources."d3-chord-1.0.6" 100773 - sources."d3-collection-1.0.7" 100774 - sources."d3-color-1.4.1" 100775 - sources."d3-contour-1.3.2" 100776 - sources."d3-dispatch-1.0.6" 100777 - sources."d3-drag-1.2.5" 100778 - (sources."d3-dsv-1.2.0" // { 100779 dependencies = [ 100780 sources."commander-2.20.3" 100781 ]; 100782 }) 100783 - sources."d3-ease-1.0.7" 100784 - sources."d3-fetch-1.2.0" 100785 - sources."d3-force-1.2.1" 100786 - sources."d3-format-1.4.5" 100787 - sources."d3-geo-1.12.1" 100788 - sources."d3-hierarchy-1.1.9" 100789 - sources."d3-interpolate-1.4.0" 100790 - sources."d3-path-1.0.9" 100791 - sources."d3-polygon-1.0.6" 100792 - sources."d3-quadtree-1.0.7" 100793 - sources."d3-random-1.1.2" 100794 - sources."d3-scale-2.2.2" 100795 - sources."d3-scale-chromatic-1.5.0" 100796 - sources."d3-selection-1.4.2" 100797 - sources."d3-shape-1.3.7" 100798 - sources."d3-time-1.1.0" 100799 - sources."d3-time-format-2.3.0" 100800 - sources."d3-timer-1.0.10" 100801 - sources."d3-transition-1.3.2" 100802 - sources."d3-voronoi-1.1.4" 100803 - sources."d3-zoom-1.8.3" 100804 - sources."dagre-0.8.5" 100805 - sources."dagre-d3-0.6.4" 100806 sources."debug-4.3.1" 100807 - sources."decode-uri-component-0.2.0" 100808 - sources."defaults-1.0.3" 100809 - sources."define-properties-1.1.3" 100810 - sources."define-property-2.0.2" 100811 sources."devtools-protocol-0.0.901419" 100812 - sources."dir-glob-3.0.1" 100813 - sources."dompurify-2.3.0" 100814 - sources."electron-to-chromium-1.3.816" 100815 - sources."emoji-regex-8.0.0" 100816 sources."end-of-stream-1.4.4" 100817 - sources."error-ex-1.3.2" 100818 - sources."escalade-3.1.1" 100819 - sources."escape-string-regexp-4.0.0" 100820 - sources."esprima-4.0.1" 100821 - (sources."expand-brackets-2.1.4" // { 100822 - dependencies = [ 100823 - sources."debug-2.6.9" 100824 - sources."define-property-0.2.5" 100825 - sources."extend-shallow-2.0.1" 100826 - (sources."is-accessor-descriptor-0.1.6" // { 100827 - dependencies = [ 100828 - sources."kind-of-3.2.2" 100829 - ]; 100830 - }) 100831 - (sources."is-data-descriptor-0.1.4" // { 100832 - dependencies = [ 100833 - sources."kind-of-3.2.2" 100834 - ]; 100835 - }) 100836 - sources."is-descriptor-0.1.6" 100837 - sources."kind-of-5.1.0" 100838 - sources."ms-2.0.0" 100839 - ]; 100840 - }) 100841 - (sources."extend-shallow-3.0.2" // { 100842 - dependencies = [ 100843 - sources."is-extendable-1.0.1" 100844 - ]; 100845 - }) 100846 - sources."external-editor-3.1.0" 100847 - (sources."extglob-2.0.4" // { 100848 - dependencies = [ 100849 - sources."define-property-1.0.0" 100850 - sources."extend-shallow-2.0.1" 100851 - ]; 100852 - }) 100853 - sources."extract-stack-2.0.0" 100854 sources."extract-zip-2.0.1" 100855 - sources."fast-deep-equal-3.1.3" 100856 - sources."fast-glob-3.2.7" 100857 - sources."fastq-1.12.0" 100858 sources."fd-slicer-1.1.0" 100859 - (sources."figures-3.2.0" // { 100860 - dependencies = [ 100861 - sources."escape-string-regexp-1.0.5" 100862 - ]; 100863 - }) 100864 - sources."fill-range-7.0.1" 100865 - (sources."find-cache-dir-2.1.0" // { 100866 - dependencies = [ 100867 - sources."find-up-3.0.0" 100868 - sources."locate-path-3.0.0" 100869 - sources."p-locate-3.0.0" 100870 - sources."path-exists-3.0.0" 100871 - sources."pkg-dir-3.0.0" 100872 - ]; 100873 - }) 100874 sources."find-up-4.1.0" 100875 - sources."flow-parser-0.158.0" 100876 - sources."for-in-1.0.2" 100877 - sources."fragment-cache-0.2.1" 100878 sources."fs-constants-1.0.0" 100879 - sources."fs-extra-8.1.0" 100880 sources."fs.realpath-1.0.0" 100881 - sources."function-bind-1.1.1" 100882 - sources."gensync-1.0.0-beta.2" 100883 - sources."get-intrinsic-1.1.1" 100884 - sources."get-package-type-0.1.0" 100885 sources."get-stream-5.2.0" 100886 - sources."get-value-2.0.6" 100887 sources."glob-7.1.7" 100888 - sources."glob-parent-5.1.2" 100889 - sources."globals-11.12.0" 100890 - sources."globby-11.0.4" 100891 - sources."graceful-fs-4.2.8" 100892 sources."graphlib-2.1.8" 100893 - sources."has-1.0.3" 100894 sources."has-flag-4.0.0" 100895 - sources."has-symbols-1.0.2" 100896 - sources."has-value-1.0.0" 100897 - (sources."has-values-1.0.0" // { 100898 - dependencies = [ 100899 - (sources."is-number-3.0.0" // { 100900 - dependencies = [ 100901 - sources."kind-of-3.2.2" 100902 - ]; 100903 - }) 100904 - sources."kind-of-4.0.0" 100905 - ]; 100906 - }) 100907 sources."https-proxy-agent-5.0.0" 100908 - sources."hyperlinker-1.0.0" 100909 - sources."iconv-lite-0.4.24" 100910 sources."ieee754-1.2.1" 100911 - sources."ignore-5.1.8" 100912 - sources."import-fresh-3.3.0" 100913 - sources."imurmurhash-0.1.4" 100914 - sources."indent-string-4.0.0" 100915 sources."inflight-1.0.6" 100916 sources."inherits-2.0.4" 100917 - sources."inquirer-8.1.2" 100918 - (sources."inquirer-glob-prompt-0.1.0" // { 100919 - dependencies = [ 100920 - sources."rxjs-6.6.7" 100921 - ]; 100922 - }) 100923 - sources."is-accessor-descriptor-1.0.0" 100924 - sources."is-arrayish-0.2.1" 100925 - sources."is-buffer-1.1.6" 100926 - sources."is-data-descriptor-1.0.0" 100927 - sources."is-descriptor-1.0.2" 100928 - sources."is-docker-2.2.1" 100929 - sources."is-extendable-0.1.1" 100930 - sources."is-extglob-2.1.1" 100931 - sources."is-fullwidth-code-point-3.0.0" 100932 - sources."is-glob-4.0.1" 100933 - sources."is-interactive-1.0.0" 100934 - sources."is-number-7.0.0" 100935 - sources."is-plain-object-2.0.4" 100936 - sources."is-unicode-supported-0.1.0" 100937 - sources."is-windows-1.0.2" 100938 - sources."is-wsl-2.2.0" 100939 - sources."isarray-1.0.0" 100940 - sources."isexe-2.0.0" 100941 - sources."isobject-3.0.1" 100942 - sources."js-tokens-4.0.0" 100943 - sources."js-yaml-3.14.1" 100944 - (sources."jscodeshift-0.11.0" // { 100945 - dependencies = [ 100946 - (sources."braces-2.3.2" // { 100947 - dependencies = [ 100948 - sources."extend-shallow-2.0.1" 100949 - ]; 100950 - }) 100951 - (sources."fill-range-4.0.0" // { 100952 - dependencies = [ 100953 - sources."extend-shallow-2.0.1" 100954 - ]; 100955 - }) 100956 - sources."is-number-3.0.0" 100957 - sources."kind-of-3.2.2" 100958 - sources."micromatch-3.1.10" 100959 - sources."to-regex-range-2.1.1" 100960 - ]; 100961 - }) 100962 - sources."jsesc-2.5.2" 100963 - sources."json-parse-even-better-errors-2.3.1" 100964 - sources."json-schema-traverse-1.0.0" 100965 - sources."json5-2.2.0" 100966 - sources."jsonfile-4.0.0" 100967 sources."khroma-1.4.1" 100968 - sources."kind-of-6.0.3" 100969 - sources."lines-and-columns-1.1.6" 100970 sources."locate-path-5.0.0" 100971 sources."lodash-4.17.21" 100972 - sources."lodash._reinterpolate-3.0.0" 100973 - sources."lodash.template-4.5.0" 100974 - sources."lodash.templatesettings-4.2.0" 100975 - sources."log-symbols-4.1.0" 100976 - sources."lru-cache-6.0.0" 100977 - (sources."make-dir-2.1.0" // { 100978 - dependencies = [ 100979 - sources."semver-5.7.1" 100980 - ]; 100981 - }) 100982 - sources."map-cache-0.2.2" 100983 - sources."map-visit-1.0.0" 100984 - sources."merge2-1.4.1" 100985 - sources."mermaid-8.11.5" 100986 - sources."micromatch-4.0.4" 100987 - sources."mimic-fn-2.1.0" 100988 sources."minimatch-3.0.4" 100989 sources."minimist-1.2.5" 100990 - (sources."mixin-deep-1.3.2" // { 100991 - dependencies = [ 100992 - sources."is-extendable-1.0.1" 100993 - ]; 100994 - }) 100995 sources."mkdirp-0.5.5" 100996 sources."moment-mini-2.24.0" 100997 sources."ms-2.1.2" 100998 - sources."mute-stream-0.0.8" 100999 - sources."nanomatch-1.2.13" 101000 - sources."natural-orderby-2.0.3" 101001 - sources."neo-async-2.6.2" 101002 - sources."nice-try-1.0.5" 101003 - sources."node-dir-0.1.17" 101004 sources."node-fetch-2.6.1" 101005 - sources."node-modules-regexp-1.0.0" 101006 - sources."node-releases-1.1.75" 101007 - (sources."object-copy-0.1.0" // { 101008 - dependencies = [ 101009 - sources."define-property-0.2.5" 101010 - sources."is-accessor-descriptor-0.1.6" 101011 - sources."is-data-descriptor-0.1.4" 101012 - (sources."is-descriptor-0.1.6" // { 101013 - dependencies = [ 101014 - sources."kind-of-5.1.0" 101015 - ]; 101016 - }) 101017 - sources."kind-of-3.2.2" 101018 - ]; 101019 - }) 101020 - sources."object-keys-1.1.1" 101021 - sources."object-treeify-1.1.33" 101022 - sources."object-visit-1.0.1" 101023 - sources."object.assign-4.1.2" 101024 - sources."object.pick-1.3.0" 101025 sources."once-1.4.0" 101026 - sources."onetime-5.1.2" 101027 - sources."ora-5.4.1" 101028 - sources."os-tmpdir-1.0.2" 101029 sources."p-limit-2.3.0" 101030 sources."p-locate-4.1.0" 101031 sources."p-try-2.2.0" 101032 - sources."parent-module-1.0.1" 101033 - sources."parse-json-5.2.0" 101034 - sources."pascalcase-0.1.1" 101035 - (sources."password-prompt-1.1.2" // { 101036 - dependencies = [ 101037 - sources."ansi-escapes-3.2.0" 101038 - sources."cross-spawn-6.0.5" 101039 - sources."semver-5.7.1" 101040 - ]; 101041 - }) 101042 sources."path-exists-4.0.0" 101043 sources."path-is-absolute-1.0.1" 101044 - sources."path-key-2.0.1" 101045 - sources."path-type-4.0.0" 101046 sources."pend-1.2.0" 101047 - sources."picomatch-2.3.0" 101048 - sources."pify-4.0.1" 101049 - sources."pirates-4.0.1" 101050 sources."pkg-dir-4.2.0" 101051 - sources."posix-character-classes-0.1.1" 101052 sources."progress-2.0.1" 101053 sources."proxy-from-env-1.1.0" 101054 sources."pump-3.0.0" 101055 - sources."punycode-2.1.1" 101056 sources."puppeteer-10.2.0" 101057 - sources."queue-microtask-1.2.3" 101058 sources."readable-stream-3.6.0" 101059 - (sources."recast-0.20.5" // { 101060 - dependencies = [ 101061 - sources."source-map-0.6.1" 101062 - sources."tslib-2.3.1" 101063 - ]; 101064 - }) 101065 - sources."redeyed-2.1.1" 101066 - sources."regex-not-1.0.2" 101067 - sources."repeat-element-1.1.4" 101068 - sources."repeat-string-1.6.1" 101069 - sources."require-from-string-2.0.2" 101070 - sources."resolve-from-4.0.0" 101071 - sources."resolve-url-0.2.1" 101072 - sources."restore-cursor-3.1.0" 101073 - sources."ret-0.1.15" 101074 - sources."reusify-1.0.4" 101075 sources."rimraf-3.0.2" 101076 - sources."run-async-2.4.1" 101077 - sources."run-parallel-1.2.0" 101078 sources."rw-1.3.3" 101079 - (sources."rxjs-7.3.0" // { 101080 - dependencies = [ 101081 - sources."tslib-2.1.0" 101082 - ]; 101083 - }) 101084 sources."safe-buffer-5.2.1" 101085 - sources."safe-regex-1.1.0" 101086 sources."safer-buffer-2.1.2" 101087 - sources."semver-7.3.5" 101088 - (sources."set-value-2.0.1" // { 101089 - dependencies = [ 101090 - sources."extend-shallow-2.0.1" 101091 - ]; 101092 - }) 101093 - sources."shallow-clone-3.0.1" 101094 - sources."shebang-command-1.2.0" 101095 - sources."shebang-regex-1.0.0" 101096 - sources."signal-exit-3.0.3" 101097 - sources."slash-3.0.0" 101098 - (sources."snapdragon-0.8.2" // { 101099 - dependencies = [ 101100 - sources."debug-2.6.9" 101101 - sources."define-property-0.2.5" 101102 - sources."extend-shallow-2.0.1" 101103 - (sources."is-accessor-descriptor-0.1.6" // { 101104 - dependencies = [ 101105 - sources."kind-of-3.2.2" 101106 - ]; 101107 - }) 101108 - (sources."is-data-descriptor-0.1.4" // { 101109 - dependencies = [ 101110 - sources."kind-of-3.2.2" 101111 - ]; 101112 - }) 101113 - sources."is-descriptor-0.1.6" 101114 - sources."kind-of-5.1.0" 101115 - sources."ms-2.0.0" 101116 - ]; 101117 - }) 101118 - (sources."snapdragon-node-2.1.1" // { 101119 - dependencies = [ 101120 - sources."define-property-1.0.0" 101121 - ]; 101122 - }) 101123 - (sources."snapdragon-util-3.0.1" // { 101124 - dependencies = [ 101125 - sources."kind-of-3.2.2" 101126 - ]; 101127 - }) 101128 - sources."source-map-0.5.7" 101129 - sources."source-map-resolve-0.5.3" 101130 - (sources."source-map-support-0.5.19" // { 101131 - dependencies = [ 101132 - sources."source-map-0.6.1" 101133 - ]; 101134 - }) 101135 - sources."source-map-url-0.4.1" 101136 - sources."split-string-3.1.0" 101137 - sources."sprintf-js-1.0.3" 101138 - (sources."static-extend-0.1.2" // { 101139 - dependencies = [ 101140 - sources."define-property-0.2.5" 101141 - (sources."is-accessor-descriptor-0.1.6" // { 101142 - dependencies = [ 101143 - sources."kind-of-3.2.2" 101144 - ]; 101145 - }) 101146 - (sources."is-data-descriptor-0.1.4" // { 101147 - dependencies = [ 101148 - sources."kind-of-3.2.2" 101149 - ]; 101150 - }) 101151 - sources."is-descriptor-0.1.6" 101152 - sources."kind-of-5.1.0" 101153 - ]; 101154 - }) 101155 - sources."string-width-4.2.2" 101156 sources."string_decoder-1.3.0" 101157 - sources."strip-ansi-6.0.0" 101158 sources."stylis-4.0.10" 101159 sources."supports-color-7.2.0" 101160 - sources."supports-hyperlinks-2.2.0" 101161 sources."tar-fs-2.0.0" 101162 sources."tar-stream-2.2.0" 101163 - (sources."temp-0.8.4" // { 101164 - dependencies = [ 101165 - sources."rimraf-2.6.3" 101166 - ]; 101167 - }) 101168 sources."through-2.3.8" 101169 - sources."tmp-0.0.33" 101170 - sources."to-fast-properties-2.0.0" 101171 - (sources."to-object-path-0.3.0" // { 101172 - dependencies = [ 101173 - sources."kind-of-3.2.2" 101174 - ]; 101175 - }) 101176 - sources."to-regex-3.0.2" 101177 - sources."to-regex-range-5.0.1" 101178 - sources."tslib-1.14.1" 101179 - sources."type-fest-0.21.3" 101180 sources."unbzip2-stream-1.3.3" 101181 - sources."union-value-1.0.1" 101182 - sources."universalify-0.1.2" 101183 - (sources."unset-value-1.0.0" // { 101184 - dependencies = [ 101185 - (sources."has-value-0.3.1" // { 101186 - dependencies = [ 101187 - sources."isobject-2.1.0" 101188 - ]; 101189 - }) 101190 - sources."has-values-0.1.4" 101191 - ]; 101192 - }) 101193 - sources."uri-js-4.4.1" 101194 - sources."urix-0.1.0" 101195 - sources."use-3.1.1" 101196 sources."util-deprecate-1.0.2" 101197 - sources."wcwidth-1.0.1" 101198 - sources."which-1.3.1" 101199 - sources."widest-line-3.1.0" 101200 - sources."wrap-ansi-7.0.0" 101201 sources."wrappy-1.0.2" 101202 - sources."write-file-atomic-2.4.3" 101203 sources."ws-7.4.6" 101204 - sources."yallist-4.0.0" 101205 - sources."yaml-1.10.2" 101206 sources."yauzl-2.10.0" 101207 ]; 101208 buildInputs = globalBuildInputs; ··· 101227 sources."@chinachu/aribts-1.3.5-mirakurun.3" 101228 sources."@fluentui/date-time-utilities-8.2.2" 101229 sources."@fluentui/dom-utilities-2.1.4" 101230 - sources."@fluentui/font-icons-mdl2-8.1.9" 101231 - sources."@fluentui/foundation-legacy-8.1.9" 101232 sources."@fluentui/keyboard-key-0.3.4" 101233 - sources."@fluentui/merge-styles-8.1.4" 101234 sources."@fluentui/react-8.27.0" 101235 - sources."@fluentui/react-focus-8.2.0" 101236 - sources."@fluentui/react-hooks-8.3.0" 101237 sources."@fluentui/react-window-provider-2.1.4" 101238 sources."@fluentui/set-version-8.1.4" 101239 - sources."@fluentui/style-utilities-8.3.0" 101240 - sources."@fluentui/theme-2.3.0" 101241 - sources."@fluentui/utilities-8.3.0" 101242 sources."@microsoft/load-themed-styles-1.10.203" 101243 sources."@napi-rs/triples-1.0.3" 101244 sources."@node-rs/crc32-1.2.1" ··· 101257 sources."@node-rs/helper-1.2.1" 101258 sources."@sindresorhus/is-0.14.0" 101259 sources."@szmarczak/http-timer-1.1.2" 101260 - sources."@types/node-16.7.1" 101261 sources."@types/uuid-3.4.10" 101262 sources."@types/ws-6.0.4" 101263 sources."accepts-1.3.7" ··· 101895 netlify-cli = nodeEnv.buildNodePackage { 101896 name = "netlify-cli"; 101897 packageName = "netlify-cli"; 101898 - version = "6.7.4"; 101899 src = fetchurl { 101900 - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.7.4.tgz"; 101901 - sha512 = "S8ZIRrxW2pZMVHOtp4ApCo41gMOEPGBXTSsCn4lP9HZY2f6RTPKm4ZZcpPfQ2GkWsygoguTKazShpjauRHDh4g=="; 101902 }; 101903 dependencies = [ 101904 sources."@babel/code-frame-7.14.5" ··· 102033 sources."@dabh/diagnostics-2.0.2" 102034 sources."@jest/types-26.6.2" 102035 sources."@mrmlnc/readdir-enhanced-2.2.1" 102036 - (sources."@netlify/build-18.5.0" // { 102037 dependencies = [ 102038 sources."resolve-2.0.0-next.3" 102039 ]; ··· 102045 sources."slash-3.0.0" 102046 ]; 102047 }) 102048 - (sources."@netlify/config-15.4.1" // { 102049 dependencies = [ 102050 sources."dot-prop-5.3.0" 102051 ]; ··· 102078 sources."@netlify/open-api-2.5.0" 102079 (sources."@netlify/plugin-edge-handlers-1.11.22" // { 102080 dependencies = [ 102081 - sources."@types/node-14.17.11" 102082 ]; 102083 }) 102084 sources."@netlify/plugins-list-3.5.0" ··· 102266 sources."@types/istanbul-reports-3.0.1" 102267 sources."@types/keyv-3.1.2" 102268 sources."@types/minimatch-3.0.5" 102269 - sources."@types/node-16.7.1" 102270 sources."@types/node-fetch-2.5.12" 102271 sources."@types/normalize-package-data-2.4.1" 102272 sources."@types/resolve-1.17.1" ··· 102432 sources."call-me-maybe-1.0.1" 102433 sources."callsite-1.0.0" 102434 sources."camelcase-6.2.0" 102435 - sources."caniuse-lite-1.0.30001251" 102436 sources."cardinal-2.1.1" 102437 (sources."chalk-4.1.2" // { 102438 dependencies = [ ··· 102542 sources."readdirp-2.2.1" 102543 ]; 102544 }) 102545 - (sources."core-js-compat-3.16.2" // { 102546 dependencies = [ 102547 sources."semver-7.0.0" 102548 ]; ··· 102687 }) 102688 sources."duplexer3-0.1.4" 102689 sources."ee-first-1.1.1" 102690 - sources."electron-to-chromium-1.3.816" 102691 sources."elegant-spinner-1.0.1" 102692 sources."elf-cam-0.1.1" 102693 sources."emoji-regex-8.0.0" ··· 103845 sha512 = "KG8SdcoAnw2d6augGwl1kOayALUrXW/P2uOAm2J2+nmW/HjZo7y+8TDg7LejxbekOOSv3kzhq+NSUYkIDAX8eA=="; 103846 }; 103847 dependencies = [ 103848 sources."@npmcli/move-file-1.1.2" 103849 sources."@tootallnate/once-1.1.2" 103850 sources."abbrev-1.1.1" ··· 103856 sources."are-we-there-yet-1.1.5" 103857 sources."balanced-match-1.0.2" 103858 sources."brace-expansion-1.1.11" 103859 - sources."cacache-15.2.0" 103860 sources."chownr-2.0.0" 103861 sources."clean-stack-2.2.0" 103862 sources."code-point-at-1.1.0" ··· 103927 sources."string-width-1.0.2" 103928 sources."string_decoder-1.1.1" 103929 sources."strip-ansi-3.0.1" 103930 - sources."tar-6.1.10" 103931 sources."unique-filename-1.1.1" 103932 sources."unique-slug-2.0.2" 103933 sources."util-deprecate-1.0.2" ··· 104385 sources."@types/cacheable-request-6.0.2" 104386 sources."@types/http-cache-semantics-4.0.1" 104387 sources."@types/keyv-3.1.2" 104388 - sources."@types/node-16.7.1" 104389 sources."@types/responselike-1.0.0" 104390 sources."abbrev-1.1.1" 104391 sources."accepts-1.3.7" ··· 104726 sources."typedarray-0.0.6" 104727 sources."uglify-js-3.13.10" 104728 sources."uid-safe-2.1.5" 104729 - sources."uid2-0.0.3" 104730 sources."universalify-0.1.2" 104731 sources."unpipe-1.0.0" 104732 sources."uri-js-4.4.1" ··· 104914 ]; 104915 }) 104916 sources."strip-ansi-3.0.1" 104917 - (sources."tar-6.1.10" // { 104918 dependencies = [ 104919 sources."mkdirp-1.0.4" 104920 ]; ··· 105145 sources."@types/http-cache-semantics-4.0.1" 105146 sources."@types/keyv-3.1.2" 105147 sources."@types/minimist-1.2.2" 105148 - sources."@types/node-16.7.1" 105149 sources."@types/normalize-package-data-2.4.1" 105150 sources."@types/parse-json-4.0.0" 105151 sources."@types/responselike-1.0.0" ··· 105673 sha512 = "NslIB6Af7GagVrN+bvBkObLyawIZfOnDnl8n9MHE+dFt0aChRYtvR6T2BLJKzOPIepCLmmh0NRR/qha0ExAELQ=="; 105674 }; 105675 dependencies = [ 105676 sources."@nodelib/fs.scandir-2.1.5" 105677 sources."@nodelib/fs.stat-2.0.5" 105678 sources."@nodelib/fs.walk-1.2.8" 105679 sources."@npmcli/git-2.1.0" 105680 sources."@npmcli/installed-package-contents-1.0.7" 105681 sources."@npmcli/move-file-1.1.2" ··· 105723 sources."brace-expansion-1.1.11" 105724 sources."braces-3.0.2" 105725 sources."builtins-1.0.3" 105726 - sources."cacache-15.2.0" 105727 (sources."cacheable-request-6.1.0" // { 105728 dependencies = [ 105729 sources."get-stream-5.2.0" ··· 105970 sources."strip-ansi-3.0.1" 105971 sources."strip-json-comments-2.0.1" 105972 sources."supports-color-7.2.0" 105973 - sources."tar-6.1.10" 105974 sources."to-readable-stream-1.0.0" 105975 sources."to-regex-range-5.0.1" 105976 sources."tough-cookie-2.5.0" ··· 106510 sources."caller-path-2.0.0" 106511 sources."callsites-2.0.0" 106512 sources."caniuse-api-3.0.0" 106513 - sources."caniuse-lite-1.0.30001251" 106514 sources."caseless-0.12.0" 106515 sources."chalk-2.4.2" 106516 sources."chokidar-2.1.8" ··· 106537 sources."convert-source-map-1.8.0" 106538 sources."copy-descriptor-0.1.1" 106539 sources."core-js-2.6.12" 106540 - (sources."core-js-compat-3.16.2" // { 106541 dependencies = [ 106542 sources."semver-7.0.0" 106543 ]; ··· 106593 sources."cssstyle-1.4.0" 106594 sources."dashdash-1.14.1" 106595 sources."data-urls-1.1.0" 106596 - sources."deasync-0.1.22" 106597 sources."debug-4.3.2" 106598 sources."decode-uri-component-0.2.0" 106599 sources."deep-is-0.1.3" ··· 106648 sources."duplexer2-0.1.4" 106649 sources."ecc-jsbn-0.1.2" 106650 sources."ee-first-1.1.1" 106651 - sources."electron-to-chromium-1.3.816" 106652 (sources."elliptic-6.5.4" // { 106653 dependencies = [ 106654 sources."bn.js-4.12.0" ··· 108701 sources."statuses-1.5.0" 108702 sources."string_decoder-0.10.31" 108703 sources."supports-color-7.2.0" 108704 - sources."systeminformation-5.8.2" 108705 sources."to-regex-range-5.0.1" 108706 sources."toidentifier-1.0.0" 108707 sources."tslib-2.3.1" ··· 109896 sources."@types/glob-7.1.4" 109897 sources."@types/json-schema-7.0.9" 109898 sources."@types/minimatch-3.0.5" 109899 - sources."@types/node-16.7.1" 109900 sources."@types/parse-json-4.0.0" 109901 sources."@types/q-1.5.5" 109902 sources."@webassemblyjs/ast-1.9.0" ··· 110084 sources."camel-case-3.0.0" 110085 sources."camelcase-5.3.1" 110086 sources."caniuse-api-3.0.0" 110087 - sources."caniuse-lite-1.0.30001251" 110088 sources."case-sensitive-paths-webpack-plugin-2.4.0" 110089 sources."caw-2.0.1" 110090 (sources."chalk-2.4.2" // { ··· 110169 sources."copy-concurrently-1.0.5" 110170 sources."copy-descriptor-0.1.1" 110171 sources."core-js-2.6.12" 110172 - (sources."core-js-compat-3.16.2" // { 110173 dependencies = [ 110174 sources."semver-7.0.0" 110175 ]; ··· 110313 sources."duplexify-3.7.1" 110314 sources."ee-first-1.1.1" 110315 sources."ejs-2.7.4" 110316 - sources."electron-to-chromium-1.3.816" 110317 (sources."elliptic-6.5.4" // { 110318 dependencies = [ 110319 sources."bn.js-4.12.0" ··· 111705 sources."@redocly/ajv-8.6.2" 111706 (sources."@redocly/openapi-core-1.0.0-beta.55" // { 111707 dependencies = [ 111708 - sources."@types/node-14.17.11" 111709 ]; 111710 }) 111711 sources."@redocly/react-dropdown-aria-2.0.12" ··· 112234 sources."@types/json-schema-7.0.9" 112235 sources."@types/minimatch-3.0.5" 112236 sources."@types/mocha-8.2.3" 112237 - sources."@types/node-14.17.11" 112238 sources."@types/node-fetch-2.5.12" 112239 sources."@types/vscode-1.59.0" 112240 sources."@typescript-eslint/eslint-plugin-4.29.3" ··· 112926 serverless = nodeEnv.buildNodePackage { 112927 name = "serverless"; 112928 packageName = "serverless"; 112929 - version = "2.55.0"; 112930 src = fetchurl { 112931 - url = "https://registry.npmjs.org/serverless/-/serverless-2.55.0.tgz"; 112932 - sha512 = "PFKPxJvdwro7DgF1/0WmAGryJCj6DIoyB44B+B1G6Sxqq/yXZ3j8pccbUIGHtAYNJFp0kr7U1y8sHxcAuBw5kQ=="; 112933 }; 112934 dependencies = [ 112935 sources."2-thenable-1.0.0" ··· 112962 ]; 112963 }) 112964 sources."@serverless/component-metrics-1.0.8" 112965 - (sources."@serverless/components-3.15.1" // { 112966 dependencies = [ 112967 (sources."@serverless/utils-4.1.0" // { 112968 dependencies = [ ··· 112989 sources."semver-6.3.0" 112990 ]; 112991 }) 112992 - sources."@serverless/dashboard-plugin-5.4.3" 112993 sources."@serverless/event-mocks-1.1.1" 112994 (sources."@serverless/platform-client-4.3.0" // { 112995 dependencies = [ ··· 113021 sources."@types/keyv-3.1.2" 113022 sources."@types/lodash-4.14.172" 113023 sources."@types/long-4.0.1" 113024 - sources."@types/node-16.7.1" 113025 sources."@types/request-2.48.7" 113026 sources."@types/request-promise-native-1.0.18" 113027 sources."@types/responselike-1.0.0" ··· 113082 sources."async-2.6.3" 113083 sources."asynckit-0.4.0" 113084 sources."at-least-node-1.0.0" 113085 - (sources."aws-sdk-2.974.0" // { 113086 dependencies = [ 113087 sources."buffer-4.9.2" 113088 sources."ieee754-1.1.13" ··· 113700 sources."untildify-3.0.3" 113701 ]; 113702 }) 113703 - (sources."tar-6.1.10" // { 113704 dependencies = [ 113705 sources."chownr-2.0.0" 113706 sources."mkdirp-1.0.4" ··· 114437 snyk = nodeEnv.buildNodePackage { 114438 name = "snyk"; 114439 packageName = "snyk"; 114440 - version = "1.687.0"; 114441 src = fetchurl { 114442 - url = "https://registry.npmjs.org/snyk/-/snyk-1.687.0.tgz"; 114443 - sha512 = "eFiCgTGAkAeeUtcSxD3+fBYjhF7JvYZ4KmbbXPO6UnWUfThm082kf2Aw9eS5RlD1hXO8P41d8DeCYzJgEoid9w=="; 114444 }; 114445 buildInputs = globalBuildInputs; 114446 meta = { ··· 114464 sources."@types/component-emitter-1.2.10" 114465 sources."@types/cookie-0.4.1" 114466 sources."@types/cors-2.8.12" 114467 - sources."@types/node-16.7.1" 114468 sources."accepts-1.3.7" 114469 sources."base64-arraybuffer-0.1.4" 114470 sources."base64id-2.0.0" ··· 115425 sources."ssb-client-4.9.0" 115426 sources."ssb-config-3.4.5" 115427 sources."ssb-db-19.2.0" 115428 - (sources."ssb-db2-2.3.0" // { 115429 dependencies = [ 115430 sources."abstract-leveldown-6.2.3" 115431 (sources."flumecodec-0.0.1" // { ··· 115640 sources."ws-1.1.5" 115641 ]; 115642 }) 115643 - sources."@types/babel-types-7.0.10" 115644 sources."@types/babylon-6.16.6" 115645 sources."accepts-1.3.7" 115646 sources."acorn-3.3.0" ··· 115690 sources."async-1.5.2" 115691 sources."async-limiter-1.0.1" 115692 sources."asynckit-0.4.0" 115693 - (sources."aws-sdk-2.974.0" // { 115694 dependencies = [ 115695 sources."uuid-3.3.2" 115696 ]; ··· 116349 }) 116350 sources."uglify-to-browserify-1.0.2" 116351 sources."uid-safe-2.1.5" 116352 - sources."uid2-0.0.3" 116353 sources."ultron-1.0.2" 116354 sources."unpipe-1.0.0" 116355 (sources."uri-js-4.4.1" // { ··· 116529 sources."callsites-3.1.0" 116530 sources."camelcase-5.3.1" 116531 sources."camelcase-keys-6.2.2" 116532 - sources."caniuse-lite-1.0.30001251" 116533 (sources."chalk-4.1.2" // { 116534 dependencies = [ 116535 sources."ansi-styles-4.3.0" ··· 116567 sources."domelementtype-1.3.1" 116568 sources."domhandler-2.4.2" 116569 sources."domutils-1.7.0" 116570 - sources."electron-to-chromium-1.3.816" 116571 sources."emoji-regex-8.0.0" 116572 sources."entities-1.1.2" 116573 sources."error-ex-1.3.2" ··· 116806 sha512 = "EstDoqxjqWStWELh7Z0qytqUDl/ikdNEr21dveNc4fUDnhnqO2F2jHEufqoNnC3GfBji3GIUHvoXsp/I5lMbCg=="; 116807 }; 116808 dependencies = [ 116809 - sources."@types/node-16.7.1" 116810 sources."@types/pug-2.0.5" 116811 sources."@types/sass-1.16.1" 116812 sources."ansi-styles-4.3.0" ··· 116877 sources."@emmetio/abbreviation-2.2.2" 116878 sources."@emmetio/css-abbreviation-2.1.4" 116879 sources."@emmetio/scanner-1.0.0" 116880 - sources."@types/node-16.7.1" 116881 sources."@types/pug-2.0.5" 116882 sources."@types/sass-1.16.1" 116883 sources."anymatch-3.1.2" ··· 119042 sources."@types/cacheable-request-6.0.2" 119043 sources."@types/http-cache-semantics-4.0.1" 119044 sources."@types/keyv-3.1.2" 119045 - sources."@types/node-16.7.1" 119046 sources."@types/responselike-1.0.0" 119047 sources."abbrev-1.1.1" 119048 sources."abstract-logging-2.0.1" ··· 119118 sources."content-type-1.0.4" 119119 sources."cookie-0.4.0" 119120 sources."cookie-signature-1.0.6" 119121 - sources."core-js-3.16.2" 119122 sources."core-util-is-1.0.2" 119123 sources."css-select-1.2.0" 119124 sources."css-what-2.1.3" ··· 119481 three = nodeEnv.buildNodePackage { 119482 name = "three"; 119483 packageName = "three"; 119484 - version = "0.131.3"; 119485 src = fetchurl { 119486 - url = "https://registry.npmjs.org/three/-/three-0.131.3.tgz"; 119487 - sha512 = "VkZAv8ZTJqiE/fyEmoWLxcNHImpVcjqW7RO0GzMu3tRpwO0KUvK9pjTmJzJcAbc51BOeB2G38zh80yjHTbP8gQ=="; 119488 }; 119489 buildInputs = globalBuildInputs; 119490 meta = { ··· 120056 sources."@types/component-emitter-1.2.10" 120057 sources."@types/cookie-0.4.1" 120058 sources."@types/cors-2.8.12" 120059 - sources."@types/node-14.17.11" 120060 sources."abbrev-1.1.1" 120061 sources."accepts-1.3.7" 120062 sources."ansi-regex-5.0.0" ··· 120337 sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w=="; 120338 }; 120339 dependencies = [ 120340 - sources."@types/node-16.7.1" 120341 sources."@types/unist-2.0.6" 120342 sources."@types/vfile-3.0.2" 120343 sources."@types/vfile-message-2.0.0" ··· 120592 sources."string-width-1.0.2" 120593 sources."string_decoder-1.1.1" 120594 sources."strip-ansi-3.0.1" 120595 - sources."tar-6.1.10" 120596 sources."topojson-client-3.1.0" 120597 sources."util-deprecate-1.0.2" 120598 sources."vega-5.20.2" ··· 120715 dependencies = [ 120716 sources."@sindresorhus/is-0.14.0" 120717 sources."@szmarczak/http-timer-1.1.2" 120718 - sources."@types/node-16.7.1" 120719 sources."@vercel/build-utils-2.12.2" 120720 sources."@vercel/go-1.2.3" 120721 sources."@vercel/node-1.12.1" ··· 120836 vim-language-server = nodeEnv.buildNodePackage { 120837 name = "vim-language-server"; 120838 packageName = "vim-language-server"; 120839 - version = "2.2.3"; 120840 src = fetchurl { 120841 - url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.3.tgz"; 120842 - sha512 = "dUaWfvqNM0IVwinwYHv6prKYEw4o/ayZtvceFBKdMCf91uYzKt64MLqD8ZA597JLheul/oEV1XKgpzLLPcfVVw=="; 120843 }; 120844 buildInputs = globalBuildInputs; 120845 meta = { ··· 121306 sources."buffer-from-1.1.2" 121307 sources."call-bind-1.0.2" 121308 sources."camelcase-6.2.0" 121309 - sources."caniuse-lite-1.0.30001251" 121310 (sources."chalk-4.1.2" // { 121311 dependencies = [ 121312 sources."supports-color-7.2.0" ··· 121346 sources."domelementtype-2.2.0" 121347 sources."domhandler-4.2.0" 121348 sources."domutils-2.7.0" 121349 - sources."electron-to-chromium-1.3.816" 121350 sources."emoji-regex-8.0.0" 121351 sources."emojis-list-3.0.0" 121352 sources."enhanced-resolve-5.8.2" ··· 121552 sources."supports-color-5.5.0" 121553 ]; 121554 }) 121555 - sources."vscode-debugadapter-testsupport-1.48.0" 121556 - sources."vscode-debugprotocol-1.48.0" 121557 sources."watchpack-2.2.0" 121558 sources."webpack-5.51.1" 121559 (sources."webpack-cli-4.8.0" // { ··· 121912 sources."@starptech/rehype-webparser-0.10.0" 121913 sources."@starptech/webparser-0.10.0" 121914 sources."@szmarczak/http-timer-1.1.2" 121915 - sources."@types/node-16.7.1" 121916 sources."@types/unist-2.0.6" 121917 sources."@types/vfile-3.0.2" 121918 sources."@types/vfile-message-2.0.0" ··· 122887 sources."combined-stream-1.0.8" 122888 sources."concat-map-0.0.1" 122889 sources."console-control-strings-1.1.0" 122890 - sources."core-js-pure-3.16.2" 122891 sources."core-util-is-1.0.2" 122892 sources."cssom-0.4.4" 122893 (sources."cssstyle-2.3.0" // { ··· 122994 sources."svg-pathdata-5.0.5" 122995 sources."svg2img-0.9.3" 122996 sources."symbol-tree-3.2.4" 122997 - sources."tar-6.1.10" 122998 (sources."tough-cookie-4.0.0" // { 122999 dependencies = [ 123000 sources."universalify-0.1.2" ··· 123093 sources."@sindresorhus/is-0.14.0" 123094 sources."@szmarczak/http-timer-1.1.2" 123095 sources."@types/minimatch-3.0.5" 123096 - sources."@types/node-16.7.1" 123097 sources."@types/yauzl-2.9.1" 123098 sources."acorn-7.4.1" 123099 sources."acorn-jsx-5.3.2" ··· 123664 sources."@types/eslint-scope-3.7.1" 123665 sources."@types/estree-0.0.50" 123666 sources."@types/json-schema-7.0.9" 123667 - sources."@types/node-16.7.1" 123668 sources."@webassemblyjs/ast-1.11.1" 123669 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 123670 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 123688 sources."ajv-keywords-3.5.2" 123689 sources."browserslist-4.16.8" 123690 sources."buffer-from-1.1.2" 123691 - sources."caniuse-lite-1.0.30001251" 123692 sources."chrome-trace-event-1.0.3" 123693 sources."colorette-1.3.0" 123694 sources."commander-2.20.3" 123695 - sources."electron-to-chromium-1.3.816" 123696 sources."enhanced-resolve-5.8.2" 123697 sources."es-module-lexer-0.7.1" 123698 sources."escalade-3.1.1" ··· 123832 sources."@nodelib/fs.walk-1.2.8" 123833 sources."@types/http-proxy-1.17.7" 123834 sources."@types/json-schema-7.0.9" 123835 - sources."@types/node-16.7.1" 123836 sources."@types/retry-0.12.1" 123837 sources."accepts-1.3.7" 123838 sources."aggregate-error-3.1.0" ··· 124215 sources."@protobufjs/pool-1.1.0" 124216 sources."@protobufjs/utf8-1.1.0" 124217 sources."@types/long-4.0.1" 124218 - sources."@types/node-16.7.1" 124219 sources."addr-to-ip-port-1.5.4" 124220 sources."airplay-js-0.3.0" 124221 sources."ansi-regex-5.0.0" ··· 124509 sources."utp-native-2.5.3" 124510 sources."videostream-3.2.2" 124511 sources."vlc-command-1.2.0" 124512 - (sources."webtorrent-1.5.3" // { 124513 dependencies = [ 124514 sources."debug-4.3.2" 124515 sources."decompress-response-6.0.0" ··· 124717 }; 124718 dependencies = [ 124719 sources."@babel/runtime-7.15.3" 124720 sources."@nodelib/fs.scandir-2.1.5" 124721 sources."@nodelib/fs.stat-2.0.5" 124722 sources."@nodelib/fs.walk-1.2.8" ··· 124726 sources."semver-7.3.5" 124727 ]; 124728 }) 124729 (sources."@npmcli/git-2.1.0" // { 124730 dependencies = [ 124731 sources."mkdirp-1.0.4" ··· 124823 sources."buffer-5.7.1" 124824 sources."buffer-from-1.1.2" 124825 sources."builtins-1.0.3" 124826 - (sources."cacache-15.2.0" // { 124827 dependencies = [ 124828 sources."mkdirp-1.0.4" 124829 ]; ··· 124870 sources."config-chain-1.1.13" 124871 sources."configstore-3.1.5" 124872 sources."console-control-strings-1.1.0" 124873 - sources."core-js-3.16.2" 124874 sources."core-util-is-1.0.2" 124875 sources."create-error-class-3.0.2" 124876 sources."cross-spawn-6.0.5" ··· 125113 }) 125114 sources."mem-5.1.1" 125115 sources."mem-fs-2.2.1" 125116 - sources."mem-fs-editor-9.1.0" 125117 (sources."meow-3.7.0" // { 125118 dependencies = [ 125119 sources."find-up-1.1.2" ··· 125460 ]; 125461 }) 125462 sources."taketalk-1.0.0" 125463 - (sources."tar-6.1.10" // { 125464 dependencies = [ 125465 sources."mkdirp-1.0.4" 125466 ]; ··· 125646 sources."@nodelib/fs.walk-1.2.8" 125647 sources."@types/fs-extra-9.0.12" 125648 sources."@types/minimist-1.2.2" 125649 - sources."@types/node-16.7.1" 125650 sources."@types/node-fetch-2.5.12" 125651 sources."ansi-styles-4.3.0" 125652 sources."array-union-3.0.1"
··· 31 sha512 = "CXMFAyovJHtLzKlraBpGlM/8TX9bvVz081IDZkQF3IMGHePgHCAs1vQdnKM38VMGekywNCbo7kt3fHooSMgA2w=="; 32 }; 33 }; 34 "@alexbosworth/saxophone-0.6.2" = { 35 name = "_at_alexbosworth_slash_saxophone"; 36 packageName = "@alexbosworth/saxophone"; ··· 40 sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww=="; 41 }; 42 }; 43 + "@angular-devkit/architect-0.1202.3" = { 44 name = "_at_angular-devkit_slash_architect"; 45 packageName = "@angular-devkit/architect"; 46 + version = "0.1202.3"; 47 src = fetchurl { 48 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.3.tgz"; 49 + sha512 = "AwLdofKggAiv0hThYe0v3MWOl94XJdJlgq/MXnYU/Ma/IeJDLlRa9WJuajL9AB//x5G+uH06smD3E4Ni8mv2ag=="; 50 }; 51 }; 52 "@angular-devkit/core-12.0.5" = { ··· 67 sha512 = "KOzGD8JbP/7EeUwPiU5x+fo3ZEQ5R4IVW5WoH92PaO3mdpqXC7UL2MWLct8PUe9il9nqJMvrBMldSSvP9PCT2w=="; 68 }; 69 }; 70 + "@angular-devkit/core-12.2.3" = { 71 name = "_at_angular-devkit_slash_core"; 72 packageName = "@angular-devkit/core"; 73 + version = "12.2.3"; 74 src = fetchurl { 75 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.3.tgz"; 76 + sha512 = "qt1hcX5zydGmCI9gEFcqTyJDcFEScSHPRqx0dlm61hCtBF75C2g7erSgb35zE3kZ7UE9UQY28JffFnwCj6uJhQ=="; 77 }; 78 }; 79 "@angular-devkit/schematics-12.0.5" = { ··· 94 sha512 = "yD3y3pK/K5piOgvALFoCCiPp4H8emNa3yZL+vlpEpewVLpF1MM55LeTxc0PI5s0uqtOGVnvcbA5wYgMm3YsUEA=="; 95 }; 96 }; 97 + "@angular-devkit/schematics-12.2.3" = { 98 name = "_at_angular-devkit_slash_schematics"; 99 packageName = "@angular-devkit/schematics"; 100 + version = "12.2.3"; 101 src = fetchurl { 102 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.3.tgz"; 103 + sha512 = "pbYOK8DK1V7YCzt8C3OckjQDGvCQqrLmg5kH+nLLAYOlkToRk3DBPIocuF9tCflNt6tEIkRJM4lPeDyy/z/GjQ=="; 104 }; 105 }; 106 "@angular-devkit/schematics-cli-12.1.4" = { ··· 229 sha512 = "GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w=="; 230 }; 231 }; 232 + "@apollo/client-3.4.9" = { 233 name = "_at_apollo_slash_client"; 234 packageName = "@apollo/client"; 235 + version = "3.4.9"; 236 src = fetchurl { 237 + url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.9.tgz"; 238 + sha512 = "1AlYjRJ/ktDApEUEP2DqHI38tqSyhSlsF/Q3fFb/aCbLHQfcSZ1dCv7ZlC9UXRyDwQYc0w23gYJ7wZde6W8P4A=="; 239 }; 240 }; 241 "@apollo/protobufjs-1.2.2" = { ··· 2191 sha512 = "zHISeJ5jcHSo3i2bI5RHb0XEJ1JGxQ/QQzU2FLPcJxohNohJV8jHCM1FSrOUxTspyDRSSULg3iKQa1FJ4EsSiQ=="; 2192 }; 2193 }; 2194 + "@expo/apple-utils-0.0.0-alpha.25" = { 2195 name = "_at_expo_slash_apple-utils"; 2196 packageName = "@expo/apple-utils"; 2197 + version = "0.0.0-alpha.25"; 2198 src = fetchurl { 2199 + url = "https://registry.npmjs.org/@expo/apple-utils/-/apple-utils-0.0.0-alpha.25.tgz"; 2200 + sha512 = "meyCJ/5jHJsgZNBMwlAugqD5Z0bcazCLgAyYQCw8O1/sXh4gWf0IiWJGnkevdxnA3g1R9nmJFmjkFuLoGOt+Bw=="; 2201 }; 2202 }; 2203 "@expo/bunyan-4.0.0" = { ··· 2209 sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="; 2210 }; 2211 }; 2212 + "@expo/config-5.0.9" = { 2213 name = "_at_expo_slash_config"; 2214 packageName = "@expo/config"; 2215 + version = "5.0.9"; 2216 src = fetchurl { 2217 + url = "https://registry.npmjs.org/@expo/config/-/config-5.0.9.tgz"; 2218 + sha512 = "eZj+cf03wkQQdHSpYvrmiqAsn2dJV10uhHIwXyeFBaFvhds0NgThOldJZfOppQ4QUaGobB/vaJ7UqUa3B0PCMw=="; 2219 }; 2220 }; 2221 + "@expo/config-plugins-3.1.0" = { 2222 name = "_at_expo_slash_config-plugins"; 2223 packageName = "@expo/config-plugins"; 2224 + version = "3.1.0"; 2225 src = fetchurl { 2226 + url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-3.1.0.tgz"; 2227 + sha512 = "V5qxaxCAExBM0TXmbU1QKiZcAGP3ecu7KXede8vByT15cro5PkcWu2sSdJCYbHQ/gw6Vf/i8sr8gKlN8V8TSLg=="; 2228 }; 2229 }; 2230 "@expo/config-types-42.0.0" = { ··· 2236 sha512 = "Rj02OMZke2MrGa/1Y/EScmR7VuWbDEHPJyvfFyyLbadUt+Yv6isCdeFzDt71I7gJlPR9T4fzixeYLrtXXOTq0w=="; 2237 }; 2238 }; 2239 + "@expo/dev-server-0.1.84" = { 2240 name = "_at_expo_slash_dev-server"; 2241 packageName = "@expo/dev-server"; 2242 + version = "0.1.84"; 2243 src = fetchurl { 2244 + url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.84.tgz"; 2245 + sha512 = "6N5Vw8PZgnXvjdXm0Lo7v68nIeoPtIV8+G2YGtImaIw4SRshLaTidKefkJNH+JmvXMyEwqLG02xFAQa/I2v3jA=="; 2246 }; 2247 }; 2248 + "@expo/dev-tools-0.13.115" = { 2249 name = "_at_expo_slash_dev-tools"; 2250 packageName = "@expo/dev-tools"; 2251 + version = "0.13.115"; 2252 src = fetchurl { 2253 + url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.115.tgz"; 2254 + sha512 = "wxA7SuWXEHrQDn/9Z8E3JnLicUSZvdSMtq++5KAFIKndOlTZ6KC9oGwlsgXzBPktQUHUMglaRxgSmx5fOKPJGQ=="; 2255 }; 2256 }; 2257 "@expo/devcert-1.0.0" = { ··· 2281 sha512 = "CDnhjdirUs6OdN5hOSTJ2y3i9EiJMk7Z5iDljC5xyCHCrUex7oyI8vbRsZEojAahxZccgL/PrO+CjakiFFWurg=="; 2282 }; 2283 }; 2284 + "@expo/metro-config-0.1.84" = { 2285 name = "_at_expo_slash_metro-config"; 2286 packageName = "@expo/metro-config"; 2287 + version = "0.1.84"; 2288 src = fetchurl { 2289 + url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.84.tgz"; 2290 + sha512 = "xWSfM0+AxcKw0H8mc1RuKs4Yy4JT4SJfn4yDnGLAlKkHlEC+D2seZvb/Tdd173e/LANmcarNd+OcDYu03AmVWA=="; 2291 }; 2292 }; 2293 "@expo/osascript-2.0.30" = { ··· 2308 sha512 = "guFnGAiNLW/JsienEq3NkZk5khTP+RdT/czk/teJUiYLkBy0hLmMTJsNXurGgFwI33+ScEbDvFmN5IOEBGpUDQ=="; 2309 }; 2310 }; 2311 + "@expo/plist-0.0.14" = { 2312 name = "_at_expo_slash_plist"; 2313 packageName = "@expo/plist"; 2314 + version = "0.0.14"; 2315 src = fetchurl { 2316 + url = "https://registry.npmjs.org/@expo/plist/-/plist-0.0.14.tgz"; 2317 + sha512 = "bb4Ua1M/OdNgS8KiGdSDUjZ/bbPfv3xdPY/lz8Ctp/adlj/QgB8xA7tVPeqSSfJPZqFRwU0qLCnRhpUOnP51VQ=="; 2318 }; 2319 }; 2320 + "@expo/prebuild-config-2.1.0" = { 2321 name = "_at_expo_slash_prebuild-config"; 2322 packageName = "@expo/prebuild-config"; 2323 + version = "2.1.0"; 2324 src = fetchurl { 2325 + url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-2.1.0.tgz"; 2326 + sha512 = "obpbnV0+Otv7Dbx8kkbSd62xL9HYZRDPdmdcVWuML7lv7Zo4r+OyS6vYpUmln9htp0gtjuc6+X9FiC74bbGkVA=="; 2327 }; 2328 }; 2329 "@expo/results-1.0.0" = { ··· 2371 sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew=="; 2372 }; 2373 }; 2374 + "@expo/webpack-config-0.15.0" = { 2375 name = "_at_expo_slash_webpack-config"; 2376 packageName = "@expo/webpack-config"; 2377 + version = "0.15.0"; 2378 src = fetchurl { 2379 + url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.15.0.tgz"; 2380 + sha512 = "AcZiRs+7RwHM05uR4qdTGAU6kpQRPZ3U0yedtVe391i4NRM80sBe+sIc7LuhFN9aZL89+ZjqN3fDoA0ZNIgIfQ=="; 2381 }; 2382 }; 2383 "@expo/xcpretty-3.1.4" = { ··· 2443 sha512 = "+gsAnEjgoKB37o+tsMdSLtgqZ9z2PzpvnHx/2IqhRWjQQd7Xc7MbQsbZaQ5qfkioFHLnWGc/+WORpqKPy/sWrg=="; 2444 }; 2445 }; 2446 + "@fluentui/font-icons-mdl2-8.1.10" = { 2447 name = "_at_fluentui_slash_font-icons-mdl2"; 2448 packageName = "@fluentui/font-icons-mdl2"; 2449 + version = "8.1.10"; 2450 src = fetchurl { 2451 + url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.1.10.tgz"; 2452 + sha512 = "oxAErjUx8xqlk81lxClEqdpF05Fy+5tKndYKm27k7cRD0f6CKLjT5Hu5oWDLwcYqa1eScXZV1I5IVHKjChsBSA=="; 2453 }; 2454 }; 2455 + "@fluentui/foundation-legacy-8.1.10" = { 2456 name = "_at_fluentui_slash_foundation-legacy"; 2457 packageName = "@fluentui/foundation-legacy"; 2458 + version = "8.1.10"; 2459 src = fetchurl { 2460 + url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.1.10.tgz"; 2461 + sha512 = "IhDS3OajyHHi+QmZlOhlXbVGFQ5TJNt2HFV6sy005jxw0xiBghG1niqjKjB09n3MfcmMdWNEkOFDpQuuyRWDjg=="; 2462 }; 2463 }; 2464 "@fluentui/keyboard-key-0.2.17" = { ··· 2479 sha512 = "pVY2m3IC5+LLmMzsaPApX9eKTzpOzdgQwrR3FNTE6mGx3N/+QWYM7fdF+T1ldZQt87dCRSeQnmAo5kqjtxeA/w=="; 2480 }; 2481 }; 2482 + "@fluentui/merge-styles-8.1.5" = { 2483 name = "_at_fluentui_slash_merge-styles"; 2484 packageName = "@fluentui/merge-styles"; 2485 + version = "8.1.5"; 2486 src = fetchurl { 2487 + url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.1.5.tgz"; 2488 + sha512 = "hmEb5LnOxCTpM/6oJQJI0w5AlYzwrceozPgsMdOF5BuT5MkXPlXLK3L2auzXGNYHkoGiouH61ImsS/TSM0mV/g=="; 2489 }; 2490 }; 2491 "@fluentui/react-7.174.1" = { ··· 2515 sha512 = "JkLWNDe567lhvbnIhbYv9nUWYDIVN06utc3krs0UZBI+A0YZtQmftBtY0ghXo4PSjgozZocdu9sYkkgZOgyRLg=="; 2516 }; 2517 }; 2518 + "@fluentui/react-focus-8.2.1" = { 2519 name = "_at_fluentui_slash_react-focus"; 2520 packageName = "@fluentui/react-focus"; 2521 + version = "8.2.1"; 2522 src = fetchurl { 2523 + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.2.1.tgz"; 2524 + sha512 = "kPGlyc8sj/1OjY/juaOG/CATc0GPsAkbFj8JNbPGPkcxdSkr1hVN4AQq34E8ddVe5d/t+Nevftl9kkYAAxfnoA=="; 2525 }; 2526 }; 2527 + "@fluentui/react-hooks-8.3.1" = { 2528 name = "_at_fluentui_slash_react-hooks"; 2529 packageName = "@fluentui/react-hooks"; 2530 + version = "8.3.1"; 2531 src = fetchurl { 2532 + url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.3.1.tgz"; 2533 + sha512 = "fgkL4/4m8ds7dK6+o6qfk9Ok1ssbTV3dA7k1w5xZgw/FE4AWTt6zfLx9HhGpxF71l0X+R0DCWWb6W/LqE7+Ylg=="; 2534 }; 2535 }; 2536 "@fluentui/react-window-provider-1.0.2" = { ··· 2560 sha512 = "2otMyJ+s+W+hjBD4BKjwYKKinJUDeIKYKz93qKrrJS0i3fKfftNroy9dHFlIblZ7n747L334plLi3bzQO1bnvA=="; 2561 }; 2562 }; 2563 + "@fluentui/style-utilities-8.3.1" = { 2564 name = "_at_fluentui_slash_style-utilities"; 2565 packageName = "@fluentui/style-utilities"; 2566 + version = "8.3.1"; 2567 src = fetchurl { 2568 + url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.3.1.tgz"; 2569 + sha512 = "EEaol+tIgTwEI8iHQfJHA7w2xtl7B+ofkheyMIK/97ONVqD4onf42p5r34rmuBhgIo4pXQsEQDPb5b5ClSzDFw=="; 2570 }; 2571 }; 2572 "@fluentui/theme-1.7.4" = { ··· 2578 sha512 = "o4eo7lstLxxXl1g2RR9yz18Yt8yjQO/LbQuZjsiAfv/4Bf0CRnb+3j1F7gxIdBWAchKj9gzaMpIFijfI98pvYQ=="; 2579 }; 2580 }; 2581 + "@fluentui/theme-2.3.1" = { 2582 name = "_at_fluentui_slash_theme"; 2583 packageName = "@fluentui/theme"; 2584 + version = "2.3.1"; 2585 src = fetchurl { 2586 + url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.3.1.tgz"; 2587 + sha512 = "S+AM8+Jg5/KMQYcxcN6LcZPA51pXVVapnkk1eMGKQYDdJ4KS4r50L2OkIPVfbFn3uiW8VZOesHMsvBTnvZfdng=="; 2588 }; 2589 }; 2590 + "@fluentui/utilities-8.3.1" = { 2591 name = "_at_fluentui_slash_utilities"; 2592 packageName = "@fluentui/utilities"; 2593 + version = "8.3.1"; 2594 src = fetchurl { 2595 + url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.3.1.tgz"; 2596 + sha512 = "V/6bokboB7J1di6XWnS2AuT1A2x0N8BvfCbdaTqvrmCarmViaY/3cawO8shV91d+ahiR2ZzN0CqOMkIDvjr4tA=="; 2597 + }; 2598 + }; 2599 + "@gar/promisify-1.1.2" = { 2600 + name = "_at_gar_slash_promisify"; 2601 + packageName = "@gar/promisify"; 2602 + version = "1.1.2"; 2603 + src = fetchurl { 2604 + url = "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz"; 2605 + sha512 = "82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw=="; 2606 }; 2607 }; 2608 "@google-cloud/paginator-3.0.5" = { ··· 2641 sha512 = "d4VSA86eL/AFTe5xtyZX+ePUjE8dIFu2T8zmdeNBSa5/kNgXPCx/o/wbFNHAGLJdGnk1vddRuMESD9HbOC8irw=="; 2642 }; 2643 }; 2644 + "@google-cloud/pubsub-2.17.0" = { 2645 name = "_at_google-cloud_slash_pubsub"; 2646 packageName = "@google-cloud/pubsub"; 2647 + version = "2.17.0"; 2648 src = fetchurl { 2649 + url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.17.0.tgz"; 2650 + sha512 = "9Xya69A5VAYVEGf651jy071RuBIjv+jpyozSc3j8V21LIiKRr9x+KyplHcLTYWdj+uXbP9cry8Ck8JEFc7GiqQ=="; 2651 }; 2652 }; 2653 "@graphql-cli/common-4.1.0" = { ··· 3343 sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; 3344 }; 3345 }; 3346 + "@jsii/check-node-1.34.0" = { 3347 name = "_at_jsii_slash_check-node"; 3348 packageName = "@jsii/check-node"; 3349 + version = "1.34.0"; 3350 src = fetchurl { 3351 + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.34.0.tgz"; 3352 + sha512 = "Z+eGyIoV6B6RNFCR+Z/p0ANnZA++bmCXhoU1RIwGh9RG39PAT38KkZZNr9ZHNTTQbVoTJMSatoX/9WQ33pQxAw=="; 3353 }; 3354 }; 3355 + "@jsii/spec-1.34.0" = { 3356 name = "_at_jsii_slash_spec"; 3357 packageName = "@jsii/spec"; 3358 + version = "1.34.0"; 3359 src = fetchurl { 3360 + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.34.0.tgz"; 3361 + sha512 = "yAK8FrTRrZ3lQ+DmdyAFZuHmsTJ1ej0719+sVgjr5ahE9i64huStaraX/jJM+PniuUQwE7N+B49ue6X9qj7vJA=="; 3362 }; 3363 }; 3364 "@kwsites/file-exists-1.1.1" = { ··· 4225 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 4226 }; 4227 }; 4228 + "@netlify/build-18.6.0" = { 4229 name = "_at_netlify_slash_build"; 4230 packageName = "@netlify/build"; 4231 + version = "18.6.0"; 4232 src = fetchurl { 4233 + url = "https://registry.npmjs.org/@netlify/build/-/build-18.6.0.tgz"; 4234 + sha512 = "rUkJp68Q7Of6nWflbVRKhD/ZqAu3LGcxSYPX28Y94Q6LVnvz27dwF0gufkdDJX6cQk8P5OvIZJVYzfPQITfYow=="; 4235 }; 4236 }; 4237 "@netlify/cache-utils-2.0.3" = { ··· 4243 sha512 = "820dYhacTHXKxpYm81VlmCJ48ySGj+6GZi1oPLevdTSkMXGM1BphBKUjM/r9+GUE1ocGOh8Vdt3PsDp8f7gS4w=="; 4244 }; 4245 }; 4246 + "@netlify/config-15.5.0" = { 4247 name = "_at_netlify_slash_config"; 4248 packageName = "@netlify/config"; 4249 + version = "15.5.0"; 4250 src = fetchurl { 4251 + url = "https://registry.npmjs.org/@netlify/config/-/config-15.5.0.tgz"; 4252 + sha512 = "c+ICajSGQ7gD6O1V0wsl9SFxSC+owzg5JQyW9SBKV68nDxQBMwn31QHOHijopWeDPMQnp+gIHc2/wgwwtQ2YMQ=="; 4253 }; 4254 }; 4255 "@netlify/esbuild-0.13.6" = { ··· 4691 src = fetchurl { 4692 url = "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.3.0.tgz"; 4693 sha512 = "oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q=="; 4694 + }; 4695 + }; 4696 + "@npmcli/fs-1.0.0" = { 4697 + name = "_at_npmcli_slash_fs"; 4698 + packageName = "@npmcli/fs"; 4699 + version = "1.0.0"; 4700 + src = fetchurl { 4701 + url = "https://registry.npmjs.org/@npmcli/fs/-/fs-1.0.0.tgz"; 4702 + sha512 = "8ltnOpRR/oJbOp8vaGUnipOi3bqkcW+sLHFlyXIr08OGHmVJLB1Hn7QtGXbYcpVtH1gAYZTlmDXtE4YV0+AMMQ=="; 4703 }; 4704 }; 4705 "@npmcli/git-2.1.0" = { ··· 5422 sha512 = "USSjRAAQYsZFlv43FUPdD+jEGML5/8oLF0rUzPQTtK4q9kvaXr49F5ZplyLz5lox78cLZ0TxN2bIDQ1xhOkulQ=="; 5423 }; 5424 }; 5425 "@pm2/agent-2.0.0" = { 5426 name = "_at_pm2_slash_agent"; 5427 packageName = "@pm2/agent"; ··· 5710 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 5711 }; 5712 }; 5713 + "@schematics/angular-12.2.3" = { 5714 name = "_at_schematics_slash_angular"; 5715 packageName = "@schematics/angular"; 5716 + version = "12.2.3"; 5717 src = fetchurl { 5718 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.3.tgz"; 5719 + sha512 = "MyInM0/Dg1geP5eYx370IX6l70ZTtGq7QIt9CFBViHlX4BWNmXq5bbJIPYJ/FWwT+zhSK7zp5AcyDKg6PWqh/Q=="; 5720 }; 5721 }; 5722 "@segment/loosely-validate-event-2.0.0" = { ··· 5746 sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang=="; 5747 }; 5748 }; 5749 + "@serverless/components-3.16.0" = { 5750 name = "_at_serverless_slash_components"; 5751 packageName = "@serverless/components"; 5752 + version = "3.16.0"; 5753 src = fetchurl { 5754 + url = "https://registry.npmjs.org/@serverless/components/-/components-3.16.0.tgz"; 5755 + sha512 = "vgsfR0V4dierB97GKgtfFp/s5XN3zmEQlhRfshWLHjoXvJe2HvWOZXy5Bqyzb1WMr6S0dp/wXQzcnVStbiyBaw=="; 5756 }; 5757 }; 5758 "@serverless/core-1.1.2" = { ··· 5764 sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ=="; 5765 }; 5766 }; 5767 + "@serverless/dashboard-plugin-5.4.4" = { 5768 name = "_at_serverless_slash_dashboard-plugin"; 5769 packageName = "@serverless/dashboard-plugin"; 5770 + version = "5.4.4"; 5771 src = fetchurl { 5772 + url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.4.4.tgz"; 5773 + sha512 = "1lLChYK/zwrF5SEAubVr9Oz/xGnq1Yjbw36X1iz0j/+jwbtpt1AeumksArA3UVAgDSecVOfaksxUta2cc10pRA=="; 5774 }; 5775 }; 5776 "@serverless/event-mocks-1.1.1" = { ··· 6394 sha512 = "8GAYQ1jDRUQkSpHzJUqXwAkYFOxuWAOGLhIR4aPd/Y/yL12Q/9m7LsKpHKlfKdNE/362Hc9wPI1Yh6opDfxVJg=="; 6395 }; 6396 }; 6397 + "@types/babel-types-7.0.11" = { 6398 name = "_at_types_slash_babel-types"; 6399 packageName = "@types/babel-types"; 6400 + version = "7.0.11"; 6401 src = fetchurl { 6402 + url = "https://registry.npmjs.org/@types/babel-types/-/babel-types-7.0.11.tgz"; 6403 + sha512 = "pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A=="; 6404 }; 6405 }; 6406 "@types/babel__core-7.1.15" = { ··· 6871 sha512 = "h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w=="; 6872 }; 6873 }; 6874 + "@types/http-assert-1.5.3" = { 6875 name = "_at_types_slash_http-assert"; 6876 packageName = "@types/http-assert"; 6877 + version = "1.5.3"; 6878 src = fetchurl { 6879 + url = "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.3.tgz"; 6880 + sha512 = "FyAOrDuQmBi8/or3ns4rwPno7/9tJTijVW6aQQjK02+kOQ8zmoNg2XJtAuQhvQcy1ASJq38wirX5//9J1EqoUA=="; 6881 }; 6882 }; 6883 "@types/http-cache-semantics-4.0.1" = { ··· 6970 sha512 = "JCcp6J0GV66Y4ZMDAQCXot4xprYB+Zfd3meK9+INSJeVZwJmHAW30BBEEkPzXswMXuiyReUGOP3GxrADc9wPww=="; 6971 }; 6972 }; 6973 + "@types/js-yaml-3.12.7" = { 6974 + name = "_at_types_slash_js-yaml"; 6975 + packageName = "@types/js-yaml"; 6976 + version = "3.12.7"; 6977 + src = fetchurl { 6978 + url = "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-3.12.7.tgz"; 6979 + sha512 = "S6+8JAYTE1qdsc9HMVsfY7+SgSuUU/Tp6TYTmITW0PZxiyIMvol3Gy//y69Wkhs0ti4py5qgR3uZH6uz/DNzJQ=="; 6980 + }; 6981 + }; 6982 "@types/jscodeshift-0.7.2" = { 6983 name = "_at_types_slash_jscodeshift"; 6984 packageName = "@types/jscodeshift"; ··· 7222 sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; 7223 }; 7224 }; 7225 + "@types/node-14.17.12" = { 7226 name = "_at_types_slash_node"; 7227 packageName = "@types/node"; 7228 + version = "14.17.12"; 7229 src = fetchurl { 7230 + url = "https://registry.npmjs.org/@types/node/-/node-14.17.12.tgz"; 7231 + sha512 = "vhUqgjJR1qxwTWV5Ps5txuy2XMdf7Fw+OrdChRboy8BmWUPkckOhphaohzFG6b8DW7CrxaBMdrdJ47SYFq1okw=="; 7232 }; 7233 }; 7234 "@types/node-15.12.5" = { ··· 7267 sha512 = "8h7k1YgQKxKXWckzFCMfsIwn0Y61UK6tlD6y2lOb3hTOIMlK3t9/QwHOhc81TwU+RMf0As5fj7NPjroERCnejQ=="; 7268 }; 7269 }; 7270 "@types/node-16.6.1" = { 7271 name = "_at_types_slash_node"; 7272 packageName = "@types/node"; ··· 7276 sha512 = "Sr7BhXEAer9xyGuCN3Ek9eg9xPviCF2gfu9kTfuU2HkTVAMYSDeX40fvpmo72n5nansg3nsBjuQBrsS28r+NUw=="; 7277 }; 7278 }; 7279 + "@types/node-16.7.2" = { 7280 name = "_at_types_slash_node"; 7281 packageName = "@types/node"; 7282 + version = "16.7.2"; 7283 src = fetchurl { 7284 + url = "https://registry.npmjs.org/@types/node/-/node-16.7.2.tgz"; 7285 + sha512 = "TbG4TOx9hng8FKxaVrCisdaxKxqEwJ3zwHoCWXZ0Jw6mnvTInpaB99/2Cy4+XxpXtjNv9/TgfGSvZFyfV/t8Fw=="; 7286 }; 7287 }; 7288 "@types/node-6.14.13" = { ··· 7841 src = fetchurl { 7842 url = "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz"; 7843 sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw=="; 7844 }; 7845 }; 7846 "@typescript-eslint/eslint-plugin-4.29.3" = { ··· 10075 sha512 = "lrohEjde2TmmDTO7FlOs8x5QQbAS0Sd3/t0TaK2TWaodfzi92QAvIsq321Mol6p6oEqmjm8POIDHW1EuJd7XMA=="; 10076 }; 10077 }; 10078 + "apollo-server-core-3.3.0" = { 10079 name = "apollo-server-core"; 10080 packageName = "apollo-server-core"; 10081 + version = "3.3.0"; 10082 src = fetchurl { 10083 + url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.3.0.tgz"; 10084 + sha512 = "KmkzKVG3yjybouDyUX6Melv39u1EOFipvAKP17IlPis/TjVbubJmb6hkE0am/g2RipyhRvlpxAjHqPaCTXR1dQ=="; 10085 }; 10086 }; 10087 "apollo-server-env-3.1.0" = { ··· 10129 sha512 = "A2gF2e85vvDugPlajbhr0A14cDFDIGX0mteNOJ8P3Z3cIM0D4hwrWxJidI+SzobefDIyIHu1dynFedJVhV0euQ=="; 10130 }; 10131 }; 10132 + "apollo-server-express-3.3.0" = { 10133 name = "apollo-server-express"; 10134 packageName = "apollo-server-express"; 10135 + version = "3.3.0"; 10136 src = fetchurl { 10137 + url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-3.3.0.tgz"; 10138 + sha512 = "qJedh77IxbfT+HpYsDraC2CGdy08wiWTwoKYXjRK4S/DHbe94A4957/1blw4boYO4n44xRKQd1k6zxiixCp+XQ=="; 10139 }; 10140 }; 10141 "apollo-server-plugin-base-0.13.0" = { ··· 11551 sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg=="; 11552 }; 11553 }; 11554 + "aws-sdk-2.976.0" = { 11555 + name = "aws-sdk"; 11556 + packageName = "aws-sdk"; 11557 + version = "2.976.0"; 11558 + src = fetchurl { 11559 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.976.0.tgz"; 11560 + sha512 = "LWVh3nko6yGDfGcDW9nIClaukthkTueq7I/dXVNv4g9kuy2VOl5fVTPMACgTibWINAM29wZCM+gVQSSZu/Veow=="; 11561 + }; 11562 + }; 11563 + "aws-sdk-2.977.0" = { 11564 name = "aws-sdk"; 11565 packageName = "aws-sdk"; 11566 + version = "2.977.0"; 11567 src = fetchurl { 11568 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.977.0.tgz"; 11569 + sha512 = "LU0ityBR3w28Ewwr+V0xu4KyQr8i4C1ypafmBNttYm3FHVUDDPQ/hLHASnGq1zGp6rBxBxO1ZE6meFqpKXIaug=="; 11570 }; 11571 }; 11572 "aws-sign2-0.6.0" = { ··· 11596 sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 11597 }; 11598 }; 11599 "axios-0.19.2" = { 11600 name = "axios"; 11601 packageName = "axios"; ··· 14432 sha512 = "GtKwd/4etuk1hNeprXoESBO1RSeRYJMXKf+O0qHmWdUomLT8ysNEfX/4bZFXr3BK6eukpHiEnhY2uMtEHDM2ng=="; 14433 }; 14434 }; 14435 + "bull-3.29.1" = { 14436 name = "bull"; 14437 packageName = "bull"; 14438 + version = "3.29.1"; 14439 src = fetchurl { 14440 + url = "https://registry.npmjs.org/bull/-/bull-3.29.1.tgz"; 14441 + sha512 = "ASNnorakKCV4hmgHABfn8Ir+gy24a4gaGnXH/0bm1Msq+djOnNfM5XW7Igzsa5iTjpboWXhY9dHFVjiWRKsSGw=="; 14442 }; 14443 }; 14444 "bunyan-1.5.1" = { ··· 14630 sha512 = "a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ=="; 14631 }; 14632 }; 14633 + "cacache-15.3.0" = { 14634 name = "cacache"; 14635 packageName = "cacache"; 14636 + version = "15.3.0"; 14637 src = fetchurl { 14638 + url = "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz"; 14639 + sha512 = "VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ=="; 14640 }; 14641 }; 14642 "cache-base-1.0.1" = { ··· 14945 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 14946 }; 14947 }; 14948 + "caniuse-lite-1.0.30001252" = { 14949 name = "caniuse-lite"; 14950 packageName = "caniuse-lite"; 14951 + version = "1.0.30001252"; 14952 src = fetchurl { 14953 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz"; 14954 + sha512 = "I56jhWDGMtdILQORdusxBOH+Nl/KgQSdDmpJezYddnAkVOmnoU8zwjTV9xAjMIYxr0iPreEAVylCGcmHCjfaOw=="; 14955 }; 14956 }; 14957 "canvas-2.8.0" = { ··· 15528 src = fetchurl { 15529 url = "https://registry.npmjs.org/child-process-ext/-/child-process-ext-2.1.1.tgz"; 15530 sha512 = "0UQ55f51JBkOFa+fvR76ywRzxiPwQS3Xe8oe5bZRphpv+dIMeerW5Zn5e4cUy4COJwVtJyU0R79RMnw+aCqmGA=="; 15531 + }; 15532 + }; 15533 + "child-process-promise-2.2.1" = { 15534 + name = "child-process-promise"; 15535 + packageName = "child-process-promise"; 15536 + version = "2.2.1"; 15537 + src = fetchurl { 15538 + url = "https://registry.npmjs.org/child-process-promise/-/child-process-promise-2.2.1.tgz"; 15539 + sha1 = "4730a11ef610fad450b8f223c79d31d7bdad8074"; 15540 }; 15541 }; 15542 "chloride-2.4.1" = { ··· 16628 sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg=="; 16629 }; 16630 }; 16631 + "codemaker-1.34.0" = { 16632 name = "codemaker"; 16633 packageName = "codemaker"; 16634 + version = "1.34.0"; 16635 src = fetchurl { 16636 + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.34.0.tgz"; 16637 + sha512 = "NHwy6TxMh21ygch7+K/OwtdN3BjxhAMoP5QXqzkkR0TDP2kEdKCNc31EChz3Xcmxk1qkdJN5CpXMnLjo7f07sQ=="; 16638 }; 16639 }; 16640 "codepage-1.4.0" = { ··· 17681 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 17682 }; 17683 }; 17684 + "constructs-3.3.133" = { 17685 name = "constructs"; 17686 packageName = "constructs"; 17687 + version = "3.3.133"; 17688 src = fetchurl { 17689 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.133.tgz"; 17690 + sha512 = "f0HgM9tmmR66A9XrzDXS7kXRbB9Gazb+KPldP9RRIkrFGhHuGeII+2YyTxxzY15cDgU58NrLrac+gynhrLy6Uw=="; 17691 }; 17692 }; 17693 "consume-http-header-1.0.0" = { ··· 17763 sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578"; 17764 }; 17765 }; 17766 + "contentful-management-7.33.0" = { 17767 name = "contentful-management"; 17768 packageName = "contentful-management"; 17769 + version = "7.33.0"; 17770 src = fetchurl { 17771 + url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.33.0.tgz"; 17772 + sha512 = "Q6Y0peBdmZUkQyrKP5rRuv2IbVpt5LflYfRdWstTQ9sERyAOgYJWBtvDCupXKw3g1oBXUxLXXU7vZY2M5jnTpQ=="; 17773 }; 17774 }; 17775 "contentful-sdk-core-6.8.0" = { ··· 18276 sha512 = "5+5VxRFmSf97nM8Jr2wzOwLqRo6zphH2aX+7KsAUONObyzakDNq2G/bgbhinxB4PoV9L3aXQYhiDKyIKWd2c8g=="; 18277 }; 18278 }; 18279 + "core-js-3.16.3" = { 18280 name = "core-js"; 18281 packageName = "core-js"; 18282 + version = "3.16.3"; 18283 src = fetchurl { 18284 + url = "https://registry.npmjs.org/core-js/-/core-js-3.16.3.tgz"; 18285 + sha512 = "lM3GftxzHNtPNUJg0v4pC2RC6puwMd6VZA7vXUczi+SKmCWSf4JwO89VJGMqbzmB7jlK7B5hr3S64PqwFL49cA=="; 18286 }; 18287 }; 18288 + "core-js-compat-3.16.3" = { 18289 name = "core-js-compat"; 18290 packageName = "core-js-compat"; 18291 + version = "3.16.3"; 18292 src = fetchurl { 18293 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.3.tgz"; 18294 + sha512 = "A/OtSfSJQKLAFRVd4V0m6Sep9lPdjD8bpN8v3tCCGwE0Tmh0hOiVDm9tw6mXmWOKOSZIyr3EkywPo84cJjGvIQ=="; 18295 }; 18296 }; 18297 + "core-js-pure-3.16.3" = { 18298 name = "core-js-pure"; 18299 packageName = "core-js-pure"; 18300 + version = "3.16.3"; 18301 src = fetchurl { 18302 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.3.tgz"; 18303 + sha512 = "6In+2RwN0FT5yK0ZnhDP5rco/NnuuFZhHauQizZiHo5lDnqAvq8Phxcpy3f+prJOqtKodt/cftBl/GTOW0kiqQ=="; 18304 }; 18305 }; 18306 "core-util-is-1.0.2" = { ··· 20472 sha512 = "E1GI7jMI57hL30OX6Ht/hfQU8DO4AuB9m72WFm4c38GNbUD4Q03//XZaOIHZiY+H1xUaomcot5yk2q/qIZQkGQ=="; 20473 }; 20474 }; 20475 + "deasync-0.1.23" = { 20476 name = "deasync"; 20477 packageName = "deasync"; 20478 + version = "0.1.23"; 20479 src = fetchurl { 20480 + url = "https://registry.npmjs.org/deasync/-/deasync-0.1.23.tgz"; 20481 + sha512 = "CGZSokFwidI50GOAmkz/7z3QdMzTQqAiUOzt95PuhKgi6VVztn9D03ZCzzi93uUWlp/v6A9osvNWpIvqHvKjTA=="; 20482 }; 20483 }; 20484 "death-1.1.0" = { ··· 22335 sha512 = "3VdM/SXBZX2omc9JF9nOPCtDaYQ67BGp5CoLpIQlO2KCAPETs8TcDHacF26jXadGbvUteZzRTeos2fhID5+ucQ=="; 22336 }; 22337 }; 22338 "dompurify-2.3.1" = { 22339 name = "dompurify"; 22340 packageName = "dompurify"; ··· 22866 sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ=="; 22867 }; 22868 }; 22869 + "electron-to-chromium-1.3.818" = { 22870 name = "electron-to-chromium"; 22871 packageName = "electron-to-chromium"; 22872 + version = "1.3.818"; 22873 src = fetchurl { 22874 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.818.tgz"; 22875 + sha512 = "c/Z9gIr+jDZAR9q+mn40hEc1NharBT+8ejkarjbCDnBNFviI6hvcC5j2ezkAXru//bTnQp5n6iPi0JA83Tla1Q=="; 22876 }; 22877 }; 22878 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 24776 sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929"; 24777 }; 24778 }; 24779 + "expo-pwa-0.0.94" = { 24780 name = "expo-pwa"; 24781 packageName = "expo-pwa"; 24782 + version = "0.0.94"; 24783 src = fetchurl { 24784 + url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.94.tgz"; 24785 + sha512 = "r/AYEtdRMrvPafgFxxIv7FXQQYgYFFm2YzxOVFBX2/ODs4HU/fNcxZ77kICn2jY9SHSmXps4TluHLpkr76Paxg=="; 24786 }; 24787 }; 24788 "express-2.5.11" = { ··· 26709 src = fetchurl { 26710 url = "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz"; 26711 sha512 = "m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA=="; 26712 }; 26713 }; 26714 "form-data-3.0.1" = { ··· 28512 sha1 = "2edeeb958084d0f8ea7988e5d995b1c7dfc14777"; 28513 }; 28514 }; 28515 "goldengate-10.3.0" = { 28516 name = "goldengate"; 28517 packageName = "goldengate"; ··· 29187 sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; 29188 }; 29189 }; 29190 "har-validator-5.1.5" = { 29191 name = "har-validator"; 29192 packageName = "har-validator"; ··· 30457 sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 30458 }; 30459 }; 30460 "http-signature-1.3.5" = { 30461 name = "http-signature"; 30462 packageName = "http-signature"; ··· 31598 src = fetchurl { 31599 url = "https://registry.npmjs.org/inquirer-autosubmit-prompt/-/inquirer-autosubmit-prompt-0.2.0.tgz"; 31600 sha512 = "mzNrusCk5L6kSzlN0Ioddn8yzrhYNLli+Sn2ZxMuLechMYAzakiFCIULxsxlQb5YKzthLGfrFACcWoAvM7p04Q=="; 31601 }; 31602 }; 31603 "insert-module-globals-7.2.1" = { ··· 34327 sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; 34328 }; 34329 }; 34330 + "jsii-1.34.0" = { 34331 name = "jsii"; 34332 packageName = "jsii"; 34333 + version = "1.34.0"; 34334 src = fetchurl { 34335 + url = "https://registry.npmjs.org/jsii/-/jsii-1.34.0.tgz"; 34336 + sha512 = "z/p8cuWdRntQzdZ1Fq/hvXHPjq/HjZhQzTF/GmYrH3s7Wsb14LphHGAENTZwICBaSovoqSRIboOb2FbPLsCjoA=="; 34337 }; 34338 }; 34339 + "jsii-pacmak-1.34.0" = { 34340 name = "jsii-pacmak"; 34341 packageName = "jsii-pacmak"; 34342 + version = "1.34.0"; 34343 src = fetchurl { 34344 + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.34.0.tgz"; 34345 + sha512 = "OngbNHieb5g7B1VkRSZkZq1vgoflhjX4heTJnQJZYbG59j2qVgD7E/o/Dl2OTBLrGRms8e2oCsYc7XROt2htSA=="; 34346 }; 34347 }; 34348 + "jsii-reflect-1.34.0" = { 34349 name = "jsii-reflect"; 34350 packageName = "jsii-reflect"; 34351 + version = "1.34.0"; 34352 src = fetchurl { 34353 + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.34.0.tgz"; 34354 + sha512 = "IOEdwgeDCOq821PM3OfRro1Pgu0QzHFW7zQy3aN7/w5Fcb/tSYGxI9+Ykr6JCdg681LFzcMEgwJpCUHnfi/shw=="; 34355 }; 34356 }; 34357 + "jsii-rosetta-1.34.0" = { 34358 name = "jsii-rosetta"; 34359 packageName = "jsii-rosetta"; 34360 + version = "1.34.0"; 34361 src = fetchurl { 34362 + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.34.0.tgz"; 34363 + sha512 = "GOGAy5b+zCGeyYziBoNVXgamL2CEZKMj5moeemkyN4AUHUqugNk3fSul2Zdbxs2S13Suk0D9iYAgChDxew0bOw=="; 34364 }; 34365 }; 34366 + "jsii-srcmak-0.1.335" = { 34367 name = "jsii-srcmak"; 34368 packageName = "jsii-srcmak"; 34369 + version = "0.1.335"; 34370 src = fetchurl { 34371 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.335.tgz"; 34372 + sha512 = "9Htj62cspqqlxHw961LxHKL9YQv2+11BRXf8nQkxURWlRqbH+73iXzy8LaUvBTA52ZgEJffY38FuDjHv9gqhCw=="; 34373 }; 34374 }; 34375 "json-bigint-1.0.0" = { ··· 34660 sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 34661 }; 34662 }; 34663 + "json2jsii-0.2.7" = { 34664 name = "json2jsii"; 34665 packageName = "json2jsii"; 34666 + version = "0.2.7"; 34667 src = fetchurl { 34668 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.7.tgz"; 34669 + sha512 = "cOfUWGFat3g6v1cWJ6+yPDFkV9O802hp8AcJfPgp16FWeDMNgnIsaavSw+i3IPFns3Fap1O+Oj/8g6s1+NwCJg=="; 34670 }; 34671 }; 34672 "json3-3.2.6" = { ··· 36074 sha512 = "lD6PgHipqedfFcTEf/9mDF3s4KGO/lecr02W6zHBJHohNphuBUZS1z68kKRJAl3N4iHmDEfLxt+G86PBP0jhHw=="; 36075 }; 36076 }; 36077 "lightning-4.1.0" = { 36078 name = "lightning"; 36079 packageName = "lightning"; ··· 36227 sha512 = "04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw=="; 36228 }; 36229 }; 36230 + "ln-accounting-5.0.0" = { 36231 name = "ln-accounting"; 36232 packageName = "ln-accounting"; 36233 + version = "5.0.0"; 36234 src = fetchurl { 36235 + url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.0.tgz"; 36236 + sha512 = "iKvNJI8qRv5O7rI3m7ARXTg9fergI3AEx2RqnB3A/dTo80zt78+x57zyBw7WmqE/BiV5eJ4kyOw1lIx1N0eC1g=="; 36237 }; 36238 }; 36239 "ln-service-51.8.2" = { ··· 36254 sha512 = "1SU0eG9/LDy6k3UGXaahmoe1wOahAJkaidWpLX5Nmlfq72I0arad420smma5ZGXAW4wNlGR/gx68KZzzYI5D4A=="; 36255 }; 36256 }; 36257 "ln-service-52.0.1" = { 36258 name = "ln-service"; 36259 packageName = "ln-service"; ··· 36272 sha512 = "2yqc59OhK0affnkwhgw7iY4x2tKZTb8y8KSWxRHn6cSXL3clUJgXdTNOGr4Jp8j1TkTl0iRVnLSNZlRbtU4vVA=="; 36273 }; 36274 }; 36275 + "ln-telegram-3.2.11" = { 36276 name = "ln-telegram"; 36277 packageName = "ln-telegram"; 36278 + version = "3.2.11"; 36279 src = fetchurl { 36280 + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.11.tgz"; 36281 + sha512 = "JzgJQGGLuKM/v7Olk707AeIiB5imQacM5AOGEefI98pTMjrMJ9SRgMg7M39+AOLOT2R7MHXHDBk+41UGtbQZGQ=="; 36282 }; 36283 }; 36284 "load-ip-set-2.2.1" = { ··· 39296 sha512 = "yiAivd4xFOH/WXlUi6v/nKopBh1QLzwjFi36NK88cGt/PRXI8WeBASqY+YSjIVWvQTx3hR8zHKDBMV6hWmglNA=="; 39297 }; 39298 }; 39299 + "mem-fs-editor-9.3.0" = { 39300 name = "mem-fs-editor"; 39301 packageName = "mem-fs-editor"; 39302 + version = "9.3.0"; 39303 src = fetchurl { 39304 + url = "https://registry.npmjs.org/mem-fs-editor/-/mem-fs-editor-9.3.0.tgz"; 39305 + sha512 = "QKFbPwGCh1ypmc2H8BUYpbapwT/x2AOCYZQogzSui4rUNes7WVMagQXsirPIfp18EarX0SSY9Fpg426nSjew4Q=="; 39306 }; 39307 }; 39308 "memfs-3.2.2" = { ··· 39575 sha512 = "TIurLf/ustQNMXi5foClGTcEsRvH6DCvxeAKu68OrwHMOSM/M1pgPXb7qe52Svk1ClvmZuAVpLtP5FWKzPr/sw=="; 39576 }; 39577 }; 39578 + "mermaid-8.12.0" = { 39579 name = "mermaid"; 39580 packageName = "mermaid"; 39581 + version = "8.12.0"; 39582 src = fetchurl { 39583 + url = "https://registry.npmjs.org/mermaid/-/mermaid-8.12.0.tgz"; 39584 + sha512 = "YegtLgtdpnd+y7J9gfSfFkD7T3G7cXQ6orOL7x4jAx6SWyJSMAQIb34JBKuhagXNsi34nK6gpfHbv63Br7246g=="; 39585 }; 39586 }; 39587 "meros-1.1.4" = { ··· 40007 sha512 = "BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="; 40008 }; 40009 }; 40010 "mime-db-1.44.0" = { 40011 name = "mime-db"; 40012 packageName = "mime-db"; ··· 40032 src = fetchurl { 40033 url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz"; 40034 sha512 = "lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ=="; 40035 }; 40036 }; 40037 "mime-types-2.1.27" = { ··· 41717 sha512 = "4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg=="; 41718 }; 41719 }; 41720 "needle-2.9.0" = { 41721 name = "needle"; 41722 packageName = "needle"; ··· 41860 src = fetchurl { 41861 url = "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz"; 41862 sha512 = "dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg=="; 41863 + }; 41864 + }; 41865 + "netrc-0.1.4" = { 41866 + name = "netrc"; 41867 + packageName = "netrc"; 41868 + version = "0.1.4"; 41869 + src = fetchurl { 41870 + url = "https://registry.npmjs.org/netrc/-/netrc-0.1.4.tgz"; 41871 + sha1 = "6be94fcaca8d77ade0a9670dc460914c94472444"; 41872 }; 41873 }; 41874 "netrc-parser-3.1.6" = { ··· 42563 src = fetchurl { 42564 url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz"; 42565 sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907"; 42566 + }; 42567 + }; 42568 + "node-version-1.2.0" = { 42569 + name = "node-version"; 42570 + packageName = "node-version"; 42571 + version = "1.2.0"; 42572 + src = fetchurl { 42573 + url = "https://registry.npmjs.org/node-version/-/node-version-1.2.0.tgz"; 42574 + sha512 = "ma6oU4Sk0qOoKEAymVoTvk8EdXEobdS7m/mAGhDJ8Rouugho48crHBORAmy5BoOcv8wraPM6xumapQp5hl4iIQ=="; 42575 }; 42576 }; 42577 "node-version-alias-1.0.1" = { ··· 43898 sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; 43899 }; 43900 }; 43901 + "oo-ascii-tree-1.34.0" = { 43902 name = "oo-ascii-tree"; 43903 packageName = "oo-ascii-tree"; 43904 + version = "1.34.0"; 43905 src = fetchurl { 43906 + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.34.0.tgz"; 43907 + sha512 = "gAY+yfKCskAk7mkfI8nOhkP12iTGE7b8UxnQuscN80vghrozt/E/2rLeKKMJFagJlm/NnnUmBA0tBQZ3oPHEKg=="; 43908 }; 43909 }; 43910 "opal-runtime-1.0.11" = { ··· 47715 sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; 47716 }; 47717 }; 47718 + "preferences-2.0.2" = { 47719 + name = "preferences"; 47720 + packageName = "preferences"; 47721 + version = "2.0.2"; 47722 + src = fetchurl { 47723 + url = "https://registry.npmjs.org/preferences/-/preferences-2.0.2.tgz"; 47724 + sha512 = "Pc5qb/4ATHtikU4pky8MthNowe/yuhu5Wr7pPEC7pJyFZ2V7Nfh/9M0jNnZ64kiDK0nv1wDZ0TmY2ICMK0zjiw=="; 47725 + }; 47726 + }; 47727 "preferred-pm-3.0.3" = { 47728 name = "preferred-pm"; 47729 packageName = "preferred-pm"; ··· 48291 sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; 48292 }; 48293 }; 48294 + "promise-polyfill-6.1.0" = { 48295 + name = "promise-polyfill"; 48296 + packageName = "promise-polyfill"; 48297 + version = "6.1.0"; 48298 + src = fetchurl { 48299 + url = "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-6.1.0.tgz"; 48300 + sha1 = "dfa96943ea9c121fca4de9b5868cb39d3472e057"; 48301 + }; 48302 + }; 48303 "promise-queue-2.2.5" = { 48304 name = "promise-queue"; 48305 packageName = "promise-queue"; ··· 48381 sha1 = "8e57123c396ab988897fb327fd3aedc3e735e4fe"; 48382 }; 48383 }; 48384 + "prompt-1.2.0" = { 48385 name = "prompt"; 48386 packageName = "prompt"; 48387 + version = "1.2.0"; 48388 src = fetchurl { 48389 + url = "https://registry.npmjs.org/prompt/-/prompt-1.2.0.tgz"; 48390 + sha512 = "iGerYRpRUg5ZyC+FJ/25G5PUKuWAGRjW1uOlhX7Pi3O5YygdK6R+KEaBjRbHSkU5vfS5PZCltSPZdDtUYwRCZA=="; 48391 }; 48392 }; 48393 "promptly-2.2.0" = { ··· 49785 sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 49786 }; 49787 }; 49788 "query-string-1.0.1" = { 49789 name = "query-string"; 49790 packageName = "query-string"; ··· 50397 sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; 50398 }; 50399 }; 50400 + "react-devtools-core-4.17.0" = { 50401 name = "react-devtools-core"; 50402 packageName = "react-devtools-core"; 50403 + version = "4.17.0"; 50404 src = fetchurl { 50405 + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.17.0.tgz"; 50406 + sha512 = "+9/aF7Gc8gswkAsoyUyQdIrhKHY/hOaMdK0oPIHuxzckJC5Cd4R1Mx75DKaqn84znwrYvXQ65kAseA+X44jMTw=="; 50407 }; 50408 }; 50409 "react-dom-16.14.0" = { ··· 50676 sha512 = "aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng=="; 50677 }; 50678 }; 50679 + "read-package-json-4.0.1" = { 50680 name = "read-package-json"; 50681 packageName = "read-package-json"; 50682 + version = "4.0.1"; 50683 src = fetchurl { 50684 + url = "https://registry.npmjs.org/read-package-json/-/read-package-json-4.0.1.tgz"; 50685 + sha512 = "czqCcYfkEl6sIFJVOND/5/Goseu7cVw1rcDUATq6ED0jLGjMm9/HOPmFmEZMvRu9yl272YERaMUcOlvcNU9InQ=="; 50686 }; 50687 }; 50688 "read-package-json-fast-2.0.3" = { ··· 56319 sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung=="; 56320 }; 56321 }; 56322 + "ssb-db2-2.3.1" = { 56323 name = "ssb-db2"; 56324 packageName = "ssb-db2"; 56325 + version = "2.3.1"; 56326 src = fetchurl { 56327 + url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.3.1.tgz"; 56328 + sha512 = "SE/GGoLn29JJeeo/SLGzjtPj5xvafn6so8fBNqM0Hfnk03DwZ7iFG0PuB8L5CMold3sLLDXFjuzdacKf85848Q=="; 56329 }; 56330 }; 56331 "ssb-ebt-5.6.7" = { ··· 56607 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 56608 }; 56609 }; 56610 + "sscaff-1.2.54" = { 56611 name = "sscaff"; 56612 packageName = "sscaff"; 56613 + version = "1.2.54"; 56614 src = fetchurl { 56615 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.54.tgz"; 56616 + sha512 = "092MKLW//UTJIFc8dnugvXKMgGsyiY/PP2C6MP1ThFRtwg58vH6TOfkVYo2OMxFqP7yBWJsc7VyIkzl8EiXpdQ=="; 56617 }; 56618 }; 56619 "ssh-config-1.1.6" = { ··· 58587 sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA=="; 58588 }; 58589 }; 58590 + "systeminformation-5.8.6" = { 58591 name = "systeminformation"; 58592 packageName = "systeminformation"; 58593 + version = "5.8.6"; 58594 src = fetchurl { 58595 + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.8.6.tgz"; 58596 + sha512 = "R37NZR9f6OejKvERiatjh1vK49xkJ/MOgFpwpCw2h0NoD+1nKAgGzxkyjNX7bsf6ADaKzyAZ2SFK1mXddytIaA=="; 58597 }; 58598 }; 58599 "table-3.8.3" = { ··· 58813 sha512 = "0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg=="; 58814 }; 58815 }; 58816 + "tar-6.1.11" = { 58817 name = "tar"; 58818 packageName = "tar"; 58819 + version = "6.1.11"; 58820 src = fetchurl { 58821 + url = "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz"; 58822 + sha512 = "an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA=="; 58823 }; 58824 }; 58825 "tar-6.1.2" = { ··· 61351 sha1 = "483126e11774df2f71b8b639dcd799c376162b82"; 61352 }; 61353 }; 61354 + "uid2-0.0.4" = { 61355 + name = "uid2"; 61356 + packageName = "uid2"; 61357 + version = "0.0.4"; 61358 + src = fetchurl { 61359 + url = "https://registry.npmjs.org/uid2/-/uid2-0.0.4.tgz"; 61360 + sha512 = "IevTus0SbGwQzYh3+fRsAMTVVPOoIVufzacXcHPmdlle1jUpq7BRL+mw3dgeLanvGZdwwbWhRV6XrcFNdBmjWA=="; 61361 + }; 61362 + }; 61363 "uint48be-2.0.1" = { 61364 name = "uint48be"; 61365 packageName = "uint48be"; ··· 63962 sha512 = "fIJZJMXbaBsK0ifBb2RmSiLtzwn6NrZnKn7O+0ziIjwAY+rPvSK9St2qqQXFU3reZVRAt/I4GBp40dC/THcUDA=="; 63963 }; 63964 }; 63965 + "vscode-debugadapter-testsupport-1.49.0" = { 63966 name = "vscode-debugadapter-testsupport"; 63967 packageName = "vscode-debugadapter-testsupport"; 63968 + version = "1.49.0"; 63969 src = fetchurl { 63970 + url = "https://registry.npmjs.org/vscode-debugadapter-testsupport/-/vscode-debugadapter-testsupport-1.49.0.tgz"; 63971 + sha512 = "4G7+EGYW1Nk5TVPbREzG33hwiqyRdVqI2VGR89hJGlS7fsiGJUDmGgjHM5fryVWkyMyJW8XWJGGVS62clq8EtQ=="; 63972 }; 63973 }; 63974 + "vscode-debugprotocol-1.49.0" = { 63975 name = "vscode-debugprotocol"; 63976 packageName = "vscode-debugprotocol"; 63977 + version = "1.49.0"; 63978 src = fetchurl { 63979 + url = "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.49.0.tgz"; 63980 + sha512 = "3VkK3BmaqN+BGIq4lavWp9a2IC6VYgkWkkMQm6Sa5ACkhBF6ThJDrkP+/3rFE4G7F8+mM3f4bhhJhhMax2IPfg=="; 63981 }; 63982 }; 63983 "vscode-emmet-helper-1.2.17" = { ··· 65123 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 65124 }; 65125 }; 65126 + "webtorrent-1.5.4" = { 65127 name = "webtorrent"; 65128 packageName = "webtorrent"; 65129 + version = "1.5.4"; 65130 src = fetchurl { 65131 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.5.4.tgz"; 65132 + sha512 = "XXvOHlCskDgDjFoId0YrTebQQ/11rIJIm0MQqkBPctSA+RPrRDDooJa8yHAsVP+Aa2PtoxrKPSHr9RFDq+46aQ=="; 65133 }; 65134 }; 65135 "well-known-symbols-2.0.0" = { ··· 66050 sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ=="; 66051 }; 66052 }; 66053 + "xdl-59.1.0" = { 66054 name = "xdl"; 66055 packageName = "xdl"; 66056 + version = "59.1.0"; 66057 src = fetchurl { 66058 + url = "https://registry.npmjs.org/xdl/-/xdl-59.1.0.tgz"; 66059 + sha512 = "kEkXVds9GWYBV/oIPHvdhoTCQcP8bFG2H+OV6qfytw66gnGLrj0qYSfEvlg+0U0GLChONR37iukGCj19oFnYig=="; 66060 }; 66061 }; 66062 "xenvar-0.5.1" = { ··· 66318 src = fetchurl { 66319 url = "https://registry.npmjs.org/xmldom/-/xmldom-0.3.0.tgz"; 66320 sha512 = "z9s6k3wxE+aZHgXYxSTpGDo7BYOUfJsIRyoZiX6HTjwpwfS2wpQBQKa2fD+ShLyPkqDYo5ud7KitmLZ2Cd6r0g=="; 66321 }; 66322 }; 66323 "xmldom-0.6.0" = { ··· 66329 sha512 = "iAcin401y58LckRZ0TkI4k0VSM1Qg0KGSc3i8rU+xrxe19A/BN1zHyVSJY7uoutVlaTSzYyk/v5AmkewAP7jtg=="; 66330 }; 66331 }; 66332 "xmlhttprequest-1.8.0" = { 66333 name = "xmlhttprequest"; 66334 packageName = "xmlhttprequest"; ··· 67068 sha512 = "Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg=="; 67069 }; 67070 }; 67071 + "zen-observable-ts-1.2.0" = { 67072 name = "zen-observable-ts"; 67073 packageName = "zen-observable-ts"; 67074 + version = "1.2.0"; 67075 src = fetchurl { 67076 + url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.0.tgz"; 67077 + sha512 = "3IklmJSChXaqAD2gPz6yKHThAnZL46D51x5EPpN/MHuPjrepVdSg3qI7f5fh1RT8Y+K46Owo9fpVuJiuJXLMMA=="; 67078 }; 67079 }; 67080 "zeromq-5.2.8" = { ··· 67164 "@angular/cli" = nodeEnv.buildNodePackage { 67165 name = "_at_angular_slash_cli"; 67166 packageName = "@angular/cli"; 67167 + version = "12.2.3"; 67168 src = fetchurl { 67169 + url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.3.tgz"; 67170 + sha512 = "QBudMbLc+m/Z7GZTskeStk8PUAIPYVYRDq+9dQyKmill56t4MdmTU/m8eteVUXWpQFdRwhqIz6L9hlsfJXzP6A=="; 67171 }; 67172 dependencies = [ 67173 + sources."@angular-devkit/architect-0.1202.3" 67174 + sources."@angular-devkit/core-12.2.3" 67175 + sources."@angular-devkit/schematics-12.2.3" 67176 + sources."@gar/promisify-1.1.2" 67177 + sources."@npmcli/fs-1.0.0" 67178 sources."@npmcli/git-2.1.0" 67179 sources."@npmcli/installed-package-contents-1.0.7" 67180 sources."@npmcli/move-file-1.1.2" 67181 sources."@npmcli/node-gyp-1.0.2" 67182 sources."@npmcli/promise-spawn-1.3.2" 67183 sources."@npmcli/run-script-1.8.6" 67184 + sources."@schematics/angular-12.2.3" 67185 sources."@tootallnate/once-1.1.2" 67186 sources."@yarnpkg/lockfile-1.1.0" 67187 sources."abbrev-1.1.1" ··· 67214 sources."brace-expansion-1.1.11" 67215 sources."buffer-5.7.1" 67216 sources."builtins-1.0.3" 67217 + sources."cacache-15.3.0" 67218 sources."caseless-0.12.0" 67219 sources."chalk-4.1.2" 67220 sources."chardet-0.7.0" ··· 67402 sources."strip-ansi-6.0.0" 67403 sources."supports-color-7.2.0" 67404 sources."symbol-observable-4.0.0" 67405 + sources."tar-6.1.11" 67406 sources."through-2.3.8" 67407 sources."tmp-0.0.33" 67408 sources."tough-cookie-2.5.0" ··· 68181 sources."@hyperswarm/hypersign-2.1.1" 68182 sources."@hyperswarm/network-2.1.0" 68183 sources."@leichtgewicht/ip-codec-2.0.3" 68184 + sources."@types/node-16.7.2" 68185 sources."abstract-extension-3.1.1" 68186 sources."abstract-leveldown-6.2.3" 68187 sources."ansi-colors-3.2.3" ··· 68672 bypassCache = true; 68673 reconstructLock = true; 68674 }; 68675 + "@nerdwallet/shepherd" = nodeEnv.buildNodePackage { 68676 + name = "_at_nerdwallet_slash_shepherd"; 68677 + packageName = "@nerdwallet/shepherd"; 68678 + version = "1.14.1"; 68679 + src = fetchurl { 68680 + url = "https://registry.npmjs.org/@nerdwallet/shepherd/-/shepherd-1.14.1.tgz"; 68681 + sha512 = "oJbTkmm6OJryEoEj3MyOV7bgOFlrW0+o6efwaF/tEfskMmmv8+lfXoeLVJXASxF/G2IgpHAWBrna7xOE2PCmRg=="; 68682 + }; 68683 + dependencies = [ 68684 + sources."@hapi/hoek-9.2.0" 68685 + sources."@hapi/topo-5.1.0" 68686 + sources."@kwsites/file-exists-1.1.1" 68687 + sources."@kwsites/promise-deferred-1.1.1" 68688 + sources."@octokit/auth-token-2.4.5" 68689 + sources."@octokit/core-3.5.1" 68690 + sources."@octokit/endpoint-6.0.12" 68691 + sources."@octokit/graphql-4.6.4" 68692 + sources."@octokit/openapi-types-9.7.0" 68693 + sources."@octokit/plugin-paginate-rest-2.15.1" 68694 + sources."@octokit/plugin-request-log-1.0.4" 68695 + sources."@octokit/plugin-rest-endpoint-methods-5.8.0" 68696 + sources."@octokit/request-5.6.1" 68697 + sources."@octokit/request-error-2.1.0" 68698 + sources."@octokit/rest-18.9.1" 68699 + sources."@octokit/types-6.25.0" 68700 + sources."@sideway/address-4.1.2" 68701 + sources."@sideway/formula-3.0.0" 68702 + sources."@sideway/pinpoint-2.0.0" 68703 + sources."@types/js-yaml-3.12.7" 68704 + sources."ansi-regex-5.0.0" 68705 + sources."ansi-styles-4.3.0" 68706 + sources."argparse-1.0.10" 68707 + sources."at-least-node-1.0.0" 68708 + sources."base64-js-1.5.1" 68709 + sources."before-after-hook-2.2.2" 68710 + sources."bl-4.1.0" 68711 + sources."buffer-5.7.1" 68712 + sources."chalk-4.1.2" 68713 + sources."child-process-promise-2.2.1" 68714 + sources."cli-cursor-3.1.0" 68715 + sources."cli-spinners-2.6.0" 68716 + sources."clone-1.0.4" 68717 + sources."color-convert-2.0.1" 68718 + sources."color-name-1.1.4" 68719 + sources."commander-6.2.1" 68720 + sources."cross-spawn-4.0.2" 68721 + sources."debug-4.3.2" 68722 + sources."defaults-1.0.3" 68723 + sources."deprecation-2.3.1" 68724 + sources."esprima-4.0.1" 68725 + sources."fs-extra-9.1.0" 68726 + sources."graceful-fs-4.2.8" 68727 + sources."has-flag-4.0.0" 68728 + sources."ieee754-1.2.1" 68729 + sources."inherits-2.0.4" 68730 + sources."is-interactive-1.0.0" 68731 + sources."is-plain-object-5.0.0" 68732 + sources."is-unicode-supported-0.1.0" 68733 + sources."isexe-2.0.0" 68734 + sources."joi-17.4.2" 68735 + sources."js-yaml-3.14.1" 68736 + sources."jsonfile-6.1.0" 68737 + sources."lodash-4.17.21" 68738 + sources."log-symbols-4.1.0" 68739 + sources."lru-cache-4.1.5" 68740 + sources."mimic-fn-2.1.0" 68741 + sources."ms-2.1.2" 68742 + sources."netrc-0.1.4" 68743 + sources."node-fetch-2.6.1" 68744 + sources."node-version-1.2.0" 68745 + sources."once-1.4.0" 68746 + sources."onetime-5.1.2" 68747 + sources."ora-5.4.1" 68748 + sources."preferences-2.0.2" 68749 + sources."promise-polyfill-6.1.0" 68750 + sources."pseudomap-1.0.2" 68751 + sources."readable-stream-3.6.0" 68752 + sources."restore-cursor-3.1.0" 68753 + sources."safe-buffer-5.2.1" 68754 + sources."signal-exit-3.0.3" 68755 + sources."simple-git-2.44.0" 68756 + sources."sprintf-js-1.0.3" 68757 + sources."string_decoder-1.3.0" 68758 + sources."strip-ansi-6.0.0" 68759 + sources."supports-color-7.2.0" 68760 + sources."universal-user-agent-6.0.0" 68761 + sources."universalify-2.0.0" 68762 + sources."util-deprecate-1.0.2" 68763 + sources."wcwidth-1.0.1" 68764 + sources."which-1.3.1" 68765 + sources."wrappy-1.0.2" 68766 + sources."yallist-2.1.2" 68767 + sources."yaml-1.10.2" 68768 + ]; 68769 + buildInputs = globalBuildInputs; 68770 + meta = { 68771 + description = "A utility for applying code changes across many repositories"; 68772 + homepage = "https://github.com/NerdWalletOSS/shepherd#readme"; 68773 + license = "Apache-2.0"; 68774 + }; 68775 + production = true; 68776 + bypassCache = true; 68777 + reconstructLock = true; 68778 + }; 68779 "@nestjs/cli" = nodeEnv.buildNodePackage { 68780 name = "_at_nestjs_slash_cli"; 68781 packageName = "@nestjs/cli"; ··· 68819 sources."@types/eslint-scope-3.7.1" 68820 sources."@types/estree-0.0.50" 68821 sources."@types/json-schema-7.0.9" 68822 + sources."@types/node-16.7.2" 68823 sources."@types/parse-json-4.0.0" 68824 sources."@webassemblyjs/ast-1.11.1" 68825 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 68858 sources."buffer-5.7.1" 68859 sources."buffer-from-1.1.2" 68860 sources."callsites-3.1.0" 68861 + sources."caniuse-lite-1.0.30001252" 68862 sources."chalk-3.0.0" 68863 sources."chardet-0.7.0" 68864 sources."chokidar-3.5.2" ··· 68885 sources."cross-spawn-7.0.3" 68886 sources."deepmerge-4.2.2" 68887 sources."defaults-1.0.3" 68888 + sources."electron-to-chromium-1.3.818" 68889 sources."emoji-regex-8.0.0" 68890 sources."end-of-stream-1.4.4" 68891 (sources."enhanced-resolve-5.8.2" // { ··· 69335 sources."@types/express-serve-static-core-4.17.24" 69336 sources."@types/fs-capacitor-2.0.0" 69337 sources."@types/glob-7.1.4" 69338 + sources."@types/http-assert-1.5.3" 69339 sources."@types/http-errors-1.8.1" 69340 sources."@types/inquirer-6.5.0" 69341 (sources."@types/jscodeshift-0.7.2" // { ··· 69351 sources."@types/long-4.0.1" 69352 sources."@types/mime-1.3.2" 69353 sources."@types/minimatch-3.0.5" 69354 + sources."@types/node-16.7.2" 69355 sources."@types/normalize-package-data-2.4.1" 69356 sources."@types/qs-6.9.7" 69357 sources."@types/range-parser-1.2.4" ··· 69494 sources."call-bind-1.0.2" 69495 sources."call-me-maybe-1.0.1" 69496 sources."camelcase-5.3.1" 69497 + sources."caniuse-lite-1.0.30001252" 69498 sources."caseless-0.12.0" 69499 sources."caw-2.0.1" 69500 sources."chalk-2.4.2" ··· 69551 sources."cookie-0.4.0" 69552 sources."cookie-signature-1.0.6" 69553 sources."copy-descriptor-0.1.1" 69554 + (sources."core-js-compat-3.16.3" // { 69555 dependencies = [ 69556 sources."semver-7.0.0" 69557 ]; 69558 }) 69559 + sources."core-js-pure-3.16.3" 69560 sources."core-util-is-1.0.2" 69561 sources."cors-2.8.5" 69562 (sources."cross-spawn-6.0.5" // { ··· 69622 sources."ecc-jsbn-0.1.2" 69623 sources."ee-first-1.1.1" 69624 sources."ejs-2.7.4" 69625 + sources."electron-to-chromium-1.3.818" 69626 sources."emoji-regex-7.0.3" 69627 sources."encodeurl-1.0.2" 69628 sources."end-of-stream-1.4.4" ··· 70635 sources."balanced-match-1.0.2" 70636 sources."brace-expansion-1.1.11" 70637 sources."browserslist-4.16.8" 70638 + sources."caniuse-lite-1.0.30001252" 70639 sources."chalk-2.4.2" 70640 sources."color-convert-1.9.3" 70641 sources."color-name-1.1.3" ··· 70646 sources."convert-source-map-1.8.0" 70647 sources."debug-4.3.2" 70648 sources."ejs-3.1.6" 70649 + sources."electron-to-chromium-1.3.818" 70650 sources."ensure-posix-path-1.1.1" 70651 sources."escalade-3.1.1" 70652 sources."escape-string-regexp-1.0.5" ··· 70740 dependencies = [ 70741 sources."@types/glob-7.1.4" 70742 sources."@types/minimatch-3.0.5" 70743 + sources."@types/node-16.7.2" 70744 sources."balanced-match-1.0.2" 70745 sources."brace-expansion-1.1.11" 70746 sources."chromium-pickle-js-0.2.0" ··· 70768 autoprefixer = nodeEnv.buildNodePackage { 70769 name = "autoprefixer"; 70770 packageName = "autoprefixer"; 70771 + version = "10.3.3"; 70772 src = fetchurl { 70773 + url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.3.tgz"; 70774 + sha512 = "yRzjxfnggrP/+qVHlUuZz5FZzEbkT+Yt0/Df6ScEMnbbZBLzYB2W0KLxoQCW+THm1SpOsM1ZPcTHAwuvmibIsQ=="; 70775 }; 70776 dependencies = [ 70777 sources."browserslist-4.16.8" 70778 + sources."caniuse-lite-1.0.30001252" 70779 sources."colorette-1.3.0" 70780 + sources."electron-to-chromium-1.3.818" 70781 sources."escalade-3.1.1" 70782 sources."fraction.js-4.1.1" 70783 sources."node-releases-1.1.75" ··· 70804 }; 70805 dependencies = [ 70806 sources."@tootallnate/once-1.1.2" 70807 + sources."@types/node-16.7.2" 70808 sources."@types/yauzl-2.9.2" 70809 sources."agent-base-6.0.2" 70810 sources."ansi-escapes-4.3.2" 70811 sources."ansi-regex-5.0.0" 70812 sources."ansi-styles-4.3.0" 70813 sources."ast-types-0.13.4" 70814 + (sources."aws-sdk-2.976.0" // { 70815 dependencies = [ 70816 sources."uuid-3.3.2" 70817 ]; ··· 71015 balanceofsatoshis = nodeEnv.buildNodePackage { 71016 name = "balanceofsatoshis"; 71017 packageName = "balanceofsatoshis"; 71018 + version = "10.9.2"; 71019 src = fetchurl { 71020 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.9.2.tgz"; 71021 + sha512 = "tFjaQXQZ2Zu7Kz1ETOab3mnmjH1LYKJS3oeSVhT0tmQGF7MPFAoSghcjFz0vDmMxrQxIzBWXWjlRLOyTtGdWUw=="; 71022 }; 71023 dependencies = [ 71024 sources."@alexbosworth/html2unicode-1.1.5" 71025 sources."@alexbosworth/saxophone-0.6.2" 71026 sources."@cto.af/textdecoder-0.0.0" 71027 (sources."@grpc/grpc-js-1.3.7" // { 71028 dependencies = [ 71029 + sources."@types/node-16.7.2" 71030 ]; 71031 }) 71032 sources."@grpc/proto-loader-0.6.4" ··· 71048 sources."@types/body-parser-1.19.1" 71049 sources."@types/caseless-0.12.2" 71050 sources."@types/connect-3.4.35" 71051 + sources."@types/express-4.17.13" 71052 sources."@types/express-serve-static-core-4.17.24" 71053 sources."@types/long-4.0.1" 71054 sources."@types/mime-1.3.2" 71055 sources."@types/node-10.12.18" 71056 sources."@types/qs-6.9.7" 71057 sources."@types/range-parser-1.2.4" 71058 + sources."@types/request-2.48.7" 71059 sources."@types/serve-static-1.13.10" 71060 sources."@types/tough-cookie-4.0.1" 71061 + sources."@types/ws-7.4.7" 71062 sources."abort-controller-3.0.0" 71063 sources."accepts-1.3.7" 71064 + sources."ajv-8.6.2" 71065 sources."ansi-0.3.1" 71066 (sources."ansi-align-3.0.0" // { 71067 dependencies = [ ··· 71083 }) 71084 sources."array-flatten-1.1.1" 71085 sources."asciichart-1.5.25" 71086 sources."astral-regex-2.0.0" 71087 sources."async-3.2.1" 71088 (sources."asyncjs-util-1.2.6" // { ··· 71091 ]; 71092 }) 71093 sources."asynckit-0.4.0" 71094 sources."base-x-3.0.8" 71095 sources."base64-js-1.5.1" 71096 (sources."basic-auth-2.0.1" // { ··· 71098 sources."safe-buffer-5.1.2" 71099 ]; 71100 }) 71101 sources."bech32-1.1.4" 71102 sources."bessel-1.0.2" 71103 sources."bindings-1.5.0" ··· 71111 sources."bl-4.1.0" 71112 sources."bluebird-3.7.2" 71113 sources."bn.js-4.12.0" 71114 + sources."body-parser-1.19.0" 71115 (sources."bolt01-1.2.2" // { 71116 dependencies = [ 71117 sources."bn.js-5.2.0" ··· 71153 }) 71154 sources."camelcase-6.2.0" 71155 sources."caporal-1.4.0" 71156 sources."cbor-8.0.0" 71157 sources."cert-info-1.5.1" 71158 (sources."chalk-1.1.3" // { ··· 71210 sources."crypto-random-string-2.0.0" 71211 sources."csv-parse-4.16.0" 71212 sources."cycle-1.0.3" 71213 sources."debug-2.6.9" 71214 sources."decompress-response-3.3.0" 71215 sources."deep-extend-0.6.0" ··· 71222 sources."destroy-1.0.4" 71223 sources."dot-prop-5.3.0" 71224 sources."duplexer3-0.1.4" 71225 sources."ee-first-1.1.1" 71226 sources."elliptic-6.5.4" 71227 sources."emoji-regex-8.0.0" ··· 71236 sources."exit-hook-1.1.1" 71237 (sources."express-4.17.1" // { 71238 dependencies = [ 71239 sources."safe-buffer-5.1.2" 71240 ]; 71241 }) 71242 sources."extend-3.0.2" 71243 sources."external-editor-1.1.1" 71244 sources."eyes-0.1.8" 71245 sources."fast-deep-equal-3.1.3" 71246 sources."fast-levenshtein-2.0.6" 71247 sources."figures-1.7.0" 71248 sources."file-uri-to-path-1.0.0" 71249 sources."finalhandler-1.1.2" 71250 + sources."form-data-2.5.1" 71251 sources."forwarded-0.2.0" 71252 sources."fresh-0.5.2" 71253 sources."gauge-1.2.7" 71254 sources."get-caller-file-2.0.5" 71255 sources."get-stream-4.1.0" 71256 sources."global-dirs-3.0.0" 71257 (sources."goldengate-10.3.0" // { 71258 dependencies = [ ··· 71262 }) 71263 sources."got-9.6.0" 71264 sources."graceful-fs-4.2.8" 71265 (sources."has-ansi-2.0.0" // { 71266 dependencies = [ 71267 sources."ansi-regex-2.1.1" ··· 71280 sources."inherits-2.0.3" 71281 ]; 71282 }) 71283 sources."iconv-lite-0.4.24" 71284 sources."ieee754-1.2.1" 71285 sources."import-lazy-4.0.0" ··· 71312 sources."bn.js-5.2.0" 71313 ]; 71314 }) 71315 sources."ipaddr.js-1.9.1" 71316 sources."is-accessor-descriptor-1.0.0" 71317 sources."is-buffer-1.1.6" ··· 71335 sources."isarray-1.0.0" 71336 sources."isnumber-1.0.0" 71337 sources."isstream-0.1.2" 71338 sources."json-buffer-3.0.0" 71339 + sources."json-schema-traverse-1.0.0" 71340 sources."json2csv-5.0.6" 71341 sources."jsonparse-1.3.1" 71342 sources."jstat-1.9.5" 71343 sources."keyv-3.1.0" 71344 sources."kind-of-6.0.3" 71345 sources."latest-version-5.1.0" 71346 + (sources."lightning-4.1.0" // { 71347 dependencies = [ 71348 sources."@types/node-16.6.1" 71349 sources."bn.js-5.2.0" 71350 ]; 71351 }) 71352 + sources."ln-accounting-5.0.0" 71353 + sources."ln-service-52.0.1" 71354 (sources."ln-sync-0.4.7" // { 71355 dependencies = [ 71356 sources."@grpc/grpc-js-1.3.6" 71357 sources."@types/node-16.3.3" 71358 sources."@types/request-2.48.6" 71359 sources."async-3.2.0" 71360 sources."bn.js-5.2.0" 71361 sources."cbor-7.0.6" 71362 sources."colorette-1.2.2" 71363 sources."lightning-3.4.0" 71364 sources."nofilter-2.0.3" 71365 ]; 71366 }) 71367 + sources."ln-telegram-3.2.11" 71368 sources."lodash-4.17.21" 71369 sources."lodash.camelcase-4.3.0" 71370 sources."lodash.clonedeep-4.5.0" ··· 71386 sources."lowercase-keys-1.0.1" 71387 sources."lru-cache-6.0.0" 71388 sources."luxon-2.0.2" 71389 + sources."macaroon-3.0.4" 71390 (sources."make-dir-3.1.0" // { 71391 dependencies = [ 71392 sources."semver-6.3.0" ··· 71399 sources."methods-1.1.2" 71400 sources."micromist-1.1.0" 71401 sources."mime-1.6.0" 71402 + sources."mime-db-1.49.0" 71403 + sources."mime-types-2.1.32" 71404 sources."mimic-fn-2.1.0" 71405 sources."mimic-response-1.0.1" 71406 sources."minimalistic-assert-1.0.1" ··· 71425 sources."normalize-url-4.5.1" 71426 sources."npmlog-2.0.4" 71427 sources."number-is-nan-1.0.1" 71428 sources."object-assign-4.1.1" 71429 sources."on-finished-2.3.0" 71430 sources."on-headers-1.0.2" ··· 71455 dependencies = [ 71456 sources."@grpc/grpc-js-1.3.4" 71457 sources."@grpc/proto-loader-0.6.3" 71458 + sources."@types/express-4.17.12" 71459 sources."@types/node-15.12.5" 71460 + sources."@types/request-2.48.5" 71461 sources."@types/ws-7.4.5" 71462 sources."async-3.2.0" 71463 sources."bn.js-5.2.0" ··· 71470 }) 71471 sources."parseurl-1.3.3" 71472 sources."path-to-regexp-0.1.7" 71473 sources."pinkie-2.0.4" 71474 sources."pinkie-promise-2.0.1" 71475 sources."prepend-http-2.0.0" 71476 sources."prettyjson-1.2.1" 71477 (sources."probing-1.3.6" // { 71478 dependencies = [ 71479 + sources."@grpc/grpc-js-1.3.2" 71480 + sources."@grpc/proto-loader-0.6.2" 71481 + sources."@types/express-4.17.12" 71482 + sources."@types/node-15.6.1" 71483 + sources."@types/request-2.48.5" 71484 + sources."@types/ws-7.4.4" 71485 sources."async-3.2.0" 71486 sources."bech32-2.0.0" 71487 sources."bn.js-5.2.0" 71488 + sources."cbor-7.0.5" 71489 sources."invoices-1.2.1" 71490 + sources."lightning-3.3.9" 71491 sources."ln-service-51.8.2" 71492 + sources."nofilter-2.0.3" 71493 + sources."ws-7.4.6" 71494 ]; 71495 }) 71496 sources."process-nextick-args-2.0.1" 71497 (sources."protobufjs-6.11.2" // { 71498 dependencies = [ 71499 + sources."@types/node-16.7.2" 71500 ]; 71501 }) 71502 sources."proxy-addr-2.0.7" ··· 71505 sources."bn.js-5.2.0" 71506 ]; 71507 }) 71508 sources."pump-3.0.0" 71509 sources."punycode-2.1.1" 71510 sources."pupa-2.1.1" 71511 sources."pushdata-bitcoin-1.0.1" 71512 sources."qrcode-terminal-0.12.0" 71513 + sources."qs-6.7.0" 71514 sources."randombytes-2.1.0" 71515 sources."range-parser-1.2.1" 71516 sources."raw-body-2.4.0" ··· 71559 ]; 71560 }) 71561 sources."spawn-sync-1.0.15" 71562 sources."stack-trace-0.0.10" 71563 sources."stats-lite-2.2.0" 71564 sources."statuses-1.5.0" ··· 71569 sources."supports-color-2.0.0" 71570 (sources."table-6.7.1" // { 71571 dependencies = [ 71572 sources."ansi-regex-5.0.0" 71573 sources."is-fullwidth-code-point-3.0.0" 71574 sources."string-width-4.2.2" 71575 sources."strip-ansi-6.0.0" 71576 ]; ··· 71596 sources."tmp-0.0.29" 71597 sources."to-readable-stream-1.0.0" 71598 sources."toidentifier-1.0.0" 71599 sources."truncate-utf8-bytes-1.0.2" 71600 sources."tslib-2.1.0" 71601 + sources."tweetnacl-1.0.3" 71602 sources."tweetnacl-util-0.15.1" 71603 sources."type-fest-0.21.3" 71604 sources."type-is-1.6.18" ··· 71621 sources."utf8-byte-length-1.0.4" 71622 sources."util-deprecate-1.0.2" 71623 sources."utils-merge-1.0.1" 71624 sources."varuint-bitcoin-1.1.2" 71625 sources."vary-1.1.2" 71626 sources."wcwidth-1.0.1" 71627 (sources."widest-line-3.1.0" // { 71628 dependencies = [ ··· 71651 }) 71652 sources."wrappy-1.0.2" 71653 sources."write-file-atomic-3.0.3" 71654 + sources."ws-8.1.0" 71655 sources."xdg-basedir-4.0.0" 71656 sources."y18n-5.0.8" 71657 sources."yallist-4.0.0" ··· 72836 sources."@protobufjs/pool-1.1.0" 72837 sources."@protobufjs/utf8-1.1.0" 72838 sources."@types/long-4.0.1" 72839 + sources."@types/node-16.7.2" 72840 sources."addr-to-ip-port-1.5.4" 72841 sources."airplay-js-0.2.16" 72842 sources."ajv-6.12.6" ··· 73244 sha512 = "4ixIu+0Fm5gv6nQ+cNhIHu5heJ95yC5HgVTU/Ad4hg5g0zWQLQcOn7s6znqgpFMDtrpH1v4RTMNp/jv10+FPiw=="; 73245 }; 73246 dependencies = [ 73247 + sources."@jsii/check-node-1.34.0" 73248 + sources."@jsii/spec-1.34.0" 73249 sources."@types/node-10.17.60" 73250 + sources."@xmldom/xmldom-0.7.2" 73251 sources."ansi-regex-5.0.0" 73252 sources."ansi-styles-4.3.0" 73253 sources."at-least-node-1.0.0" ··· 73260 sources."chalk-4.1.2" 73261 sources."cliui-7.0.4" 73262 sources."clone-2.1.2" 73263 + (sources."codemaker-1.34.0" // { 73264 dependencies = [ 73265 sources."fs-extra-9.1.0" 73266 ]; ··· 73269 sources."color-name-1.1.4" 73270 sources."colors-1.4.0" 73271 sources."commonmark-0.30.0" 73272 + sources."constructs-3.3.133" 73273 sources."date-format-3.0.0" 73274 sources."debug-4.3.2" 73275 sources."decamelize-5.0.0" ··· 73321 sources."is-weakmap-2.0.1" 73322 sources."is-weakset-2.0.1" 73323 sources."isarray-2.0.5" 73324 + (sources."jsii-1.34.0" // { 73325 dependencies = [ 73326 sources."fs-extra-9.1.0" 73327 sources."yargs-16.2.0" 73328 ]; 73329 }) 73330 + (sources."jsii-pacmak-1.34.0" // { 73331 dependencies = [ 73332 sources."fs-extra-9.1.0" 73333 sources."yargs-16.2.0" 73334 ]; 73335 }) 73336 + (sources."jsii-reflect-1.34.0" // { 73337 dependencies = [ 73338 sources."fs-extra-9.1.0" 73339 sources."yargs-16.2.0" 73340 ]; 73341 }) 73342 + (sources."jsii-rosetta-1.34.0" // { 73343 dependencies = [ 73344 sources."fs-extra-9.1.0" 73345 sources."yargs-16.2.0" 73346 ]; 73347 }) 73348 + (sources."jsii-srcmak-0.1.335" // { 73349 dependencies = [ 73350 sources."fs-extra-9.1.0" 73351 ]; 73352 }) 73353 sources."json-schema-0.3.0" 73354 + sources."json2jsii-0.2.7" 73355 sources."jsonfile-6.1.0" 73356 sources."jsonschema-1.4.0" 73357 sources."locate-path-5.0.0" ··· 73367 sources."object-is-1.1.5" 73368 sources."object-keys-1.1.1" 73369 sources."object.assign-4.1.2" 73370 + sources."oo-ascii-tree-1.34.0" 73371 sources."p-limit-2.3.0" 73372 sources."p-locate-4.1.0" 73373 sources."p-try-2.2.0" ··· 73387 sources."snake-case-3.0.4" 73388 sources."sort-json-2.0.0" 73389 sources."spdx-license-list-6.4.0" 73390 + sources."sscaff-1.2.54" 73391 (sources."streamroller-2.2.4" // { 73392 dependencies = [ 73393 sources."date-format-2.1.0" ··· 73409 sources."which-typed-array-1.1.6" 73410 sources."wrap-ansi-7.0.0" 73411 sources."xmlbuilder-15.1.1" 73412 sources."y18n-5.0.8" 73413 sources."yallist-4.0.0" 73414 sources."yaml-1.10.2" ··· 73442 sha512 = "53HldFlYJdptaQ9yZyx8xuN0pxmBwI7yaVImmPwGmauoOYWsO89YrAjyPIiAaR+GWI8avbQeg3jz5Z1Q+MoIGA=="; 73443 }; 73444 dependencies = [ 73445 + sources."@apollo/client-3.4.9" 73446 (sources."@apollo/protobufjs-1.2.2" // { 73447 dependencies = [ 73448 sources."@types/node-10.17.60" ··· 73506 }) 73507 sources."@graphql-typed-document-node/core-3.1.0" 73508 sources."@josephg/resolvable-1.0.1" 73509 + sources."@jsii/check-node-1.34.0" 73510 + sources."@jsii/spec-1.34.0" 73511 sources."@nodelib/fs.scandir-2.1.5" 73512 sources."@nodelib/fs.stat-2.0.5" 73513 sources."@nodelib/fs.walk-1.2.8" ··· 73531 sources."@types/express-serve-static-core-4.17.24" 73532 sources."@types/long-4.0.1" 73533 sources."@types/mime-1.3.2" 73534 + sources."@types/node-14.17.12" 73535 sources."@types/node-fetch-2.5.12" 73536 sources."@types/qs-6.9.7" 73537 sources."@types/range-parser-1.2.4" 73538 sources."@types/serve-static-1.13.10" 73539 sources."@types/yauzl-2.9.2" 73540 sources."@types/yoga-layout-1.9.2" 73541 sources."@wry/context-0.6.1" 73542 sources."@wry/equality-0.5.2" 73543 sources."@wry/trie-0.3.1" 73544 + sources."@xmldom/xmldom-0.7.2" 73545 sources."accepts-1.3.7" 73546 sources."address-1.1.2" 73547 (sources."ansi-escapes-4.3.2" // { ··· 73560 sources."apollo-graphql-0.9.3" 73561 sources."apollo-reporting-protobuf-3.0.0" 73562 sources."apollo-server-caching-3.1.0" 73563 + (sources."apollo-server-core-3.3.0" // { 73564 dependencies = [ 73565 sources."@graphql-tools/utils-8.1.2" 73566 ]; 73567 }) 73568 sources."apollo-server-env-4.0.3" 73569 sources."apollo-server-errors-3.1.0" 73570 + sources."apollo-server-express-3.3.0" 73571 sources."apollo-server-plugin-base-3.2.0" 73572 sources."apollo-server-types-3.2.0" 73573 sources."archiver-5.3.0" ··· 73650 ]; 73651 }) 73652 sources."concat-map-0.0.1" 73653 + sources."constructs-3.3.133" 73654 (sources."content-disposition-0.5.3" // { 73655 dependencies = [ 73656 sources."safe-buffer-5.1.2" ··· 73660 sources."convert-to-spaces-1.0.2" 73661 sources."cookie-0.4.0" 73662 sources."cookie-signature-1.0.6" 73663 + sources."core-js-pure-3.16.3" 73664 sources."core-util-is-1.0.2" 73665 sources."cors-2.8.5" 73666 sources."crc-32-1.2.0" ··· 73822 sources."iterall-1.3.0" 73823 sources."js-tokens-4.0.0" 73824 sources."jsesc-2.5.2" 73825 + (sources."jsii-1.34.0" // { 73826 dependencies = [ 73827 sources."fs-extra-9.1.0" 73828 sources."yargs-16.2.0" 73829 ]; 73830 }) 73831 + (sources."jsii-pacmak-1.34.0" // { 73832 dependencies = [ 73833 sources."clone-2.1.2" 73834 + sources."codemaker-1.34.0" 73835 sources."decamelize-5.0.0" 73836 sources."escape-string-regexp-4.0.0" 73837 sources."fs-extra-9.1.0" 73838 sources."yargs-16.2.0" 73839 ]; 73840 }) 73841 + (sources."jsii-reflect-1.34.0" // { 73842 dependencies = [ 73843 sources."fs-extra-9.1.0" 73844 sources."yargs-16.2.0" 73845 ]; 73846 }) 73847 + (sources."jsii-rosetta-1.34.0" // { 73848 dependencies = [ 73849 sources."fs-extra-9.1.0" 73850 sources."yargs-16.2.0" 73851 ]; 73852 }) 73853 + (sources."jsii-srcmak-0.1.335" // { 73854 dependencies = [ 73855 sources."fs-extra-9.1.0" 73856 ]; ··· 73915 sources."on-finished-2.3.0" 73916 sources."once-1.4.0" 73917 sources."onetime-5.1.2" 73918 + sources."oo-ascii-tree-1.34.0" 73919 sources."open-7.4.2" 73920 sources."optimism-0.16.1" 73921 sources."ora-5.4.1" ··· 73951 sources."range-parser-1.2.1" 73952 sources."raw-body-2.4.0" 73953 sources."react-16.14.0" 73954 + sources."react-devtools-core-4.17.0" 73955 sources."react-is-16.13.1" 73956 sources."react-reconciler-0.24.0" 73957 sources."readable-stream-3.6.0" ··· 74008 sources."sort-json-2.0.0" 74009 sources."source-map-0.5.7" 74010 sources."spdx-license-list-6.4.0" 74011 + sources."sscaff-1.2.54" 74012 (sources."stack-utils-2.0.3" // { 74013 dependencies = [ 74014 sources."escape-string-regexp-2.0.0" ··· 74080 sources."wrappy-1.0.2" 74081 sources."ws-7.5.3" 74082 sources."xmlbuilder-15.1.1" 74083 sources."xss-1.0.9" 74084 sources."y18n-5.0.8" 74085 sources."yallist-4.0.0" ··· 74101 sources."yocto-queue-0.1.0" 74102 sources."yoga-layout-prebuilt-1.10.0" 74103 sources."zen-observable-0.8.15" 74104 + sources."zen-observable-ts-1.2.0" 74105 sources."zip-stream-4.1.0" 74106 sources."zod-1.11.17" 74107 ]; ··· 74255 dependencies = [ 74256 sources."ansi-styles-3.2.1" 74257 sources."async-0.9.2" 74258 sources."chalk-2.4.2" 74259 sources."cli-spinner-0.2.10" 74260 sources."clubhouse-lib-0.10.0" ··· 74262 sources."color-name-1.1.3" 74263 sources."colors-1.4.0" 74264 sources."commander-2.20.3" 74265 sources."cycle-1.0.3" 74266 sources."debug-4.3.2" 74267 sources."decode-uri-component-0.2.0" 74268 sources."encoding-0.1.13" 74269 sources."escape-string-regexp-1.0.5" 74270 sources."eyes-0.1.8" 74271 sources."fetch-everywhere-1.0.5" 74272 sources."filter-obj-1.1.0" 74273 sources."has-flag-3.0.0" 74274 sources."hasurl-1.0.0" 74275 sources."iconv-lite-0.6.3" 74276 sources."is-stream-1.1.0" 74277 sources."isstream-0.1.2" 74278 sources."lodash.sortby-4.7.0" 74279 sources."ms-2.1.2" 74280 sources."mute-stream-0.0.8" 74281 sources."node-fetch-1.7.3" 74282 + sources."prompt-1.2.0" 74283 sources."punycode-2.1.1" 74284 sources."query-string-6.14.1" 74285 sources."read-1.0.7" 74286 sources."revalidator-0.1.8" 74287 sources."safer-buffer-2.1.2" 74288 sources."split-on-first-1.1.0" 74289 sources."stack-trace-0.0.10" ··· 74291 sources."supports-color-5.5.0" 74292 sources."tr46-1.0.1" 74293 sources."universal-url-2.0.0" 74294 sources."webidl-conversions-4.0.2" 74295 sources."whatwg-fetch-3.6.2" 74296 sources."whatwg-url-7.1.0" ··· 74300 sources."colors-1.0.3" 74301 ]; 74302 }) 74303 ]; 74304 buildInputs = globalBuildInputs; 74305 meta = { ··· 74426 coc-explorer = nodeEnv.buildNodePackage { 74427 name = "coc-explorer"; 74428 packageName = "coc-explorer"; 74429 + version = "0.18.16"; 74430 src = fetchurl { 74431 + url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.16.tgz"; 74432 + sha512 = "sFk/5y7v/ITvuIeLia4VYRvQvD4fXgOI/Z3iS+1etkxuhiQo5fDwkRACWL6B4kRn6SWIn2scHyt49ePx1LURNg=="; 74433 }; 74434 dependencies = [ 74435 sources."@sindresorhus/df-3.1.1" ··· 74880 sources."string_decoder-1.1.1" 74881 sources."strip-eof-1.0.0" 74882 sources."strip-json-comments-2.0.1" 74883 + sources."tar-6.1.11" 74884 sources."traverse-0.3.9" 74885 sources."tslib-2.3.1" 74886 sources."unbox-primitive-1.0.1" ··· 75018 sources."callsites-3.1.0" 75019 sources."camelcase-2.1.1" 75020 sources."camelcase-keys-2.1.0" 75021 + sources."caniuse-lite-1.0.30001252" 75022 sources."capture-stack-trace-1.0.1" 75023 sources."ccount-1.1.0" 75024 (sources."chalk-4.1.2" // { ··· 75080 ]; 75081 }) 75082 sources."copy-descriptor-0.1.1" 75083 + sources."core-js-3.16.3" 75084 sources."cosmiconfig-3.1.0" 75085 sources."create-error-class-3.0.2" 75086 sources."cross-spawn-7.0.3" ··· 75116 sources."domutils-1.7.0" 75117 sources."dot-prop-5.3.0" 75118 sources."duplexer3-0.1.4" 75119 + sources."electron-to-chromium-1.3.818" 75120 sources."emoji-regex-8.0.0" 75121 sources."end-of-stream-1.4.4" 75122 sources."enquirer-2.3.6" ··· 76127 sources."callsites-3.1.0" 76128 sources."camelcase-5.3.1" 76129 sources."camelcase-keys-6.2.2" 76130 + sources."caniuse-lite-1.0.30001252" 76131 (sources."chalk-4.1.2" // { 76132 dependencies = [ 76133 sources."ansi-styles-4.3.0" ··· 76165 sources."domelementtype-1.3.1" 76166 sources."domhandler-2.4.2" 76167 sources."domutils-1.7.0" 76168 + sources."electron-to-chromium-1.3.818" 76169 sources."emoji-regex-8.0.0" 76170 sources."entities-1.1.2" 76171 sources."error-ex-1.3.2" ··· 77413 sha512 = "00wMcj3X9ILhKtvRG2iEwO2qly4B+vgXFhH4WhVepWg2UVbD1opl1q9jSZ+j2AaI/vsBWW8e6M2M5FAHasnuWw=="; 77414 }; 77415 dependencies = [ 77416 + sources."@gar/promisify-1.1.2" 77417 sources."@netflix/nerror-1.1.3" 77418 sources."@nodelib/fs.scandir-2.1.5" 77419 sources."@nodelib/fs.stat-2.0.5" 77420 sources."@nodelib/fs.walk-1.2.8" 77421 + sources."@npmcli/fs-1.0.0" 77422 sources."@npmcli/git-2.1.0" 77423 sources."@npmcli/installed-package-contents-1.0.7" 77424 sources."@npmcli/move-file-1.1.2" ··· 77485 sources."braces-3.0.2" 77486 sources."builtins-1.0.3" 77487 sources."bytes-3.0.0" 77488 + sources."cacache-15.3.0" 77489 (sources."cacheable-request-6.1.0" // { 77490 dependencies = [ 77491 sources."lowercase-keys-2.0.0" ··· 77938 sources."strip-json-comments-2.0.1" 77939 sources."supports-color-7.2.0" 77940 sources."systeminformation-4.34.23" 77941 + sources."tar-6.1.11" 77942 sources."term-size-2.2.1" 77943 sources."through-2.3.8" 77944 sources."tmp-0.2.1" ··· 78029 sources."@types/glob-7.1.4" 78030 sources."@types/minimatch-3.0.5" 78031 sources."@types/minimist-1.2.2" 78032 + sources."@types/node-16.7.2" 78033 sources."@types/normalize-package-data-2.4.1" 78034 sources."aggregate-error-3.1.0" 78035 sources."ansi-styles-3.2.1" ··· 78400 sources."@cycle/run-3.4.0" 78401 sources."@cycle/time-0.10.1" 78402 sources."@types/cookiejar-2.1.2" 78403 + sources."@types/node-16.7.2" 78404 sources."@types/superagent-3.8.2" 78405 sources."ansi-escapes-3.2.0" 78406 sources."ansi-regex-2.1.1" ··· 78836 }) 78837 sources."decode-uri-component-0.2.0" 78838 sources."decompress-response-4.2.1" 78839 sources."deep-extend-0.6.0" 78840 sources."define-property-2.0.2" 78841 sources."delayed-stream-1.0.0" ··· 78966 sources."debug-3.2.7" 78967 ]; 78968 }) 78969 sources."import-lazy-2.1.0" 78970 sources."imurmurhash-0.1.4" 78971 sources."inflight-1.0.6" ··· 79048 sources."is-extendable-1.0.1" 79049 ]; 79050 }) 79051 sources."mkdirp-classic-0.5.3" 79052 sources."ms-2.1.3" 79053 sources."multi-random-access-2.1.1" ··· 79067 sources."nanoscheduler-1.0.3" 79068 sources."nanotiming-7.3.1" 79069 sources."napi-macros-2.0.0" 79070 sources."neat-input-1.11.1" 79071 sources."neat-log-3.1.0" 79072 sources."neat-spinner-1.0.0" ··· 79110 sources."process-0.11.10" 79111 sources."process-nextick-args-2.0.1" 79112 sources."progress-string-1.2.2" 79113 + sources."prompt-1.2.0" 79114 (sources."protocol-buffers-encodings-1.1.1" // { 79115 dependencies = [ 79116 sources."varint-5.0.0" ··· 79313 sources."url-parse-lax-1.0.0" 79314 sources."use-3.1.1" 79315 sources."util-deprecate-1.0.2" 79316 (sources."utp-native-2.5.3" // { 79317 dependencies = [ 79318 sources."node-gyp-build-4.2.3" ··· 79512 sources."@types/geojson-7946.0.8" 79513 sources."@types/mapbox-gl-0.54.5" 79514 sources."@types/mime-types-2.1.1" 79515 + sources."@types/node-14.17.12" 79516 sources."@types/node-fetch-2.5.12" 79517 sources."@types/prop-types-15.7.4" 79518 sources."@types/rc-1.2.0" ··· 79569 ]; 79570 }) 79571 sources."call-bind-1.0.2" 79572 + sources."caniuse-lite-1.0.30001252" 79573 sources."chalk-2.4.2" 79574 sources."chokidar-2.1.8" 79575 (sources."class-utils-0.3.6" // { ··· 79612 ]; 79613 }) 79614 sources."copy-descriptor-0.1.1" 79615 + sources."core-js-3.16.3" 79616 + (sources."core-js-compat-3.16.3" // { 79617 dependencies = [ 79618 sources."semver-7.0.0" 79619 ]; ··· 79639 sources."duplexer3-0.1.4" 79640 sources."earcut-2.2.3" 79641 sources."electron-13.2.2" 79642 + sources."electron-to-chromium-1.3.818" 79643 sources."emoji-js-clean-4.0.0" 79644 sources."emoji-mart-3.0.1" 79645 sources."emoji-regex-9.2.2" ··· 80227 dependencies = [ 80228 sources."@fast-csv/format-4.3.5" 80229 sources."@fast-csv/parse-4.3.6" 80230 + sources."@types/node-14.17.12" 80231 sources."JSONStream-1.3.5" 80232 sources."ajv-6.12.6" 80233 sources."asn1-0.2.4" ··· 80426 sources."@types/http-cache-semantics-4.0.1" 80427 sources."@types/keyv-3.1.2" 80428 sources."@types/minimatch-3.0.5" 80429 + sources."@types/node-16.7.2" 80430 sources."@types/responselike-1.0.0" 80431 sources."@types/yauzl-2.9.2" 80432 sources."abbrev-1.1.1" ··· 80503 sources."concat-map-0.0.1" 80504 sources."config-chain-1.1.13" 80505 sources."console-control-strings-1.1.0" 80506 + sources."core-js-3.16.3" 80507 sources."core-util-is-1.0.2" 80508 sources."cross-spawn-7.0.3" 80509 (sources."cross-spawn-windows-exe-1.2.0" // { ··· 80754 sources."mkdirp-0.5.5" 80755 sources."ms-2.0.0" 80756 sources."mute-stream-0.0.8" 80757 + (sources."needle-2.9.0" // { 80758 dependencies = [ 80759 sources."debug-3.2.7" 80760 sources."ms-2.1.3" ··· 80924 sources."sudo-prompt-9.2.1" 80925 sources."sumchecker-3.0.1" 80926 sources."supports-color-7.2.0" 80927 + (sources."tar-6.1.11" // { 80928 dependencies = [ 80929 sources."chownr-2.0.0" 80930 sources."fs-minipass-2.1.0" ··· 81079 sources."@types/http-cache-semantics-4.0.1" 81080 sources."@types/keyv-3.1.2" 81081 sources."@types/minimist-1.2.2" 81082 + sources."@types/node-16.7.2" 81083 sources."@types/normalize-package-data-2.4.1" 81084 sources."@types/responselike-1.0.0" 81085 sources."@types/yoga-layout-1.9.2" ··· 81114 sources."quick-lru-4.0.1" 81115 ]; 81116 }) 81117 + sources."caniuse-lite-1.0.30001252" 81118 sources."chalk-2.4.2" 81119 sources."ci-info-2.0.0" 81120 sources."cli-boxes-2.2.1" ··· 81151 }) 81152 sources."defer-to-connect-2.0.1" 81153 sources."dot-prop-5.3.0" 81154 + sources."electron-to-chromium-1.3.818" 81155 sources."emoji-regex-8.0.0" 81156 sources."emojilib-2.4.0" 81157 sources."end-of-stream-1.4.4" ··· 81285 sources."punycode-2.1.1" 81286 sources."quick-lru-5.1.1" 81287 sources."react-16.14.0" 81288 + sources."react-devtools-core-4.17.0" 81289 sources."react-is-16.13.1" 81290 sources."react-reconciler-0.24.0" 81291 (sources."read-pkg-5.2.0" // { ··· 81409 sources."@fluentui/react-focus-7.17.6" 81410 sources."@fluentui/react-window-provider-1.0.2" 81411 sources."@fluentui/theme-1.7.4" 81412 + sources."@gar/promisify-1.1.2" 81413 (sources."@gulp-sourcemaps/identity-map-1.0.2" // { 81414 dependencies = [ 81415 sources."normalize-path-2.1.1" ··· 81424 sources."@nodelib/fs.scandir-2.1.5" 81425 sources."@nodelib/fs.stat-2.0.5" 81426 sources."@nodelib/fs.walk-1.2.8" 81427 + sources."@npmcli/fs-1.0.0" 81428 (sources."@npmcli/move-file-1.1.2" // { 81429 dependencies = [ 81430 sources."rimraf-3.0.2" ··· 81655 ]; 81656 }) 81657 sources."bytes-3.1.0" 81658 + (sources."cacache-15.3.0" // { 81659 dependencies = [ 81660 sources."chownr-2.0.0" 81661 sources."fs-minipass-2.1.0" ··· 81663 sources."minizlib-2.1.2" 81664 sources."p-map-4.0.0" 81665 sources."rimraf-3.0.2" 81666 + sources."tar-6.1.11" 81667 ]; 81668 }) 81669 sources."cache-base-1.0.1" ··· 82373 }) 82374 sources."nan-2.15.0" 82375 sources."nanomatch-1.2.13" 82376 + (sources."needle-2.9.0" // { 82377 dependencies = [ 82378 sources."debug-3.2.7" 82379 sources."ms-2.1.3" ··· 83435 expo-cli = nodeEnv.buildNodePackage { 83436 name = "expo-cli"; 83437 packageName = "expo-cli"; 83438 + version = "4.11.0"; 83439 src = fetchurl { 83440 + url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.11.0.tgz"; 83441 + sha512 = "yGe0VODAZSgkXdENysg5bupr0xe2r4Uap4OlnnVM39AnT1NBzzRy+JZT8skHVa395ZHMou8ThTKlfd29Bj9rOQ=="; 83442 }; 83443 dependencies = [ 83444 sources."@babel/code-frame-7.10.4" ··· 83550 }) 83551 sources."@babel/types-7.15.0" 83552 sources."@dabh/diagnostics-2.0.2" 83553 + sources."@expo/apple-utils-0.0.0-alpha.25" 83554 sources."@expo/bunyan-4.0.0" 83555 + sources."@expo/config-5.0.9" 83556 + (sources."@expo/config-plugins-3.1.0" // { 83557 dependencies = [ 83558 sources."semver-7.3.5" 83559 ]; 83560 }) 83561 sources."@expo/config-types-42.0.0" 83562 + (sources."@expo/dev-server-0.1.84" // { 83563 dependencies = [ 83564 sources."body-parser-1.19.0" 83565 sources."bytes-3.1.0" ··· 83576 sources."temp-dir-2.0.0" 83577 ]; 83578 }) 83579 + sources."@expo/dev-tools-0.13.115" 83580 (sources."@expo/devcert-1.0.0" // { 83581 dependencies = [ 83582 sources."debug-3.2.7" ··· 83591 ]; 83592 }) 83593 sources."@expo/json-file-8.2.33" 83594 + sources."@expo/metro-config-0.1.84" 83595 sources."@expo/osascript-2.0.30" 83596 (sources."@expo/package-manager-0.0.47" // { 83597 dependencies = [ ··· 83600 sources."semver-5.7.1" 83601 ]; 83602 }) 83603 + (sources."@expo/plist-0.0.14" // { 83604 dependencies = [ 83605 sources."xmlbuilder-14.0.0" 83606 ]; 83607 }) 83608 + sources."@expo/prebuild-config-2.1.0" 83609 sources."@expo/results-1.0.0" 83610 (sources."@expo/rudder-sdk-node-1.0.7" // { 83611 dependencies = [ ··· 83621 }) 83622 sources."@expo/sdk-runtime-versions-1.0.0" 83623 sources."@expo/spawn-async-1.5.0" 83624 + (sources."@expo/webpack-config-0.15.0" // { 83625 dependencies = [ 83626 (sources."@babel/core-7.9.0" // { 83627 dependencies = [ ··· 83636 sources."js-yaml-4.1.0" 83637 ]; 83638 }) 83639 + sources."@gar/promisify-1.1.2" 83640 sources."@hapi/hoek-9.2.0" 83641 sources."@hapi/topo-5.1.0" 83642 sources."@jest/types-26.6.2" 83643 sources."@nodelib/fs.scandir-2.1.5" 83644 sources."@nodelib/fs.stat-2.0.5" 83645 sources."@nodelib/fs.walk-1.2.8" 83646 + (sources."@npmcli/fs-1.0.0" // { 83647 + dependencies = [ 83648 + sources."semver-7.3.5" 83649 + ]; 83650 + }) 83651 (sources."@npmcli/git-2.1.0" // { 83652 dependencies = [ 83653 sources."mkdirp-1.0.4" ··· 83745 sources."@webassemblyjs/wast-parser-1.9.0" 83746 sources."@webassemblyjs/wast-printer-1.9.0" 83747 sources."@wry/equality-0.1.11" 83748 + sources."@xmldom/xmldom-0.7.2" 83749 sources."@xtuc/ieee754-1.2.0" 83750 sources."@xtuc/long-4.2.2" 83751 sources."abbrev-1.1.1" ··· 83902 sources."buffer-xor-1.0.3" 83903 sources."builtin-status-codes-3.0.0" 83904 sources."builtins-1.0.3" 83905 + (sources."bull-3.29.1" // { 83906 dependencies = [ 83907 sources."get-port-5.1.1" 83908 sources."p-timeout-3.2.0" 83909 ]; 83910 }) 83911 sources."bytes-3.0.0" 83912 + (sources."cacache-15.3.0" // { 83913 dependencies = [ 83914 sources."minipass-3.1.3" 83915 sources."mkdirp-1.0.4" ··· 83931 }) 83932 sources."camelcase-6.2.0" 83933 sources."caniuse-api-3.0.0" 83934 + sources."caniuse-lite-1.0.30001252" 83935 sources."caseless-0.12.0" 83936 (sources."chalk-4.1.2" // { 83937 dependencies = [ ··· 84066 sources."serialize-javascript-4.0.0" 84067 ]; 84068 }) 84069 + sources."core-js-3.16.3" 84070 + (sources."core-js-compat-3.16.3" // { 84071 dependencies = [ 84072 sources."browserslist-4.16.8" 84073 sources."semver-7.0.0" ··· 84203 sources."duplexify-3.7.1" 84204 sources."ecc-jsbn-0.1.2" 84205 sources."ee-first-1.1.1" 84206 + sources."electron-to-chromium-1.3.818" 84207 (sources."elliptic-6.5.4" // { 84208 dependencies = [ 84209 sources."bn.js-4.12.0" ··· 84282 sources."ms-2.0.0" 84283 ]; 84284 }) 84285 + (sources."expo-pwa-0.0.94" // { 84286 dependencies = [ 84287 sources."commander-2.20.0" 84288 ]; ··· 84798 sources."nan-2.15.0" 84799 sources."nanomatch-1.2.13" 84800 sources."ncp-2.0.0" 84801 + (sources."needle-2.9.0" // { 84802 dependencies = [ 84803 sources."debug-3.2.7" 84804 ]; ··· 85493 }) 85494 sources."symbol-observable-1.2.0" 85495 sources."tapable-1.1.3" 85496 + (sources."tar-6.1.11" // { 85497 dependencies = [ 85498 sources."minipass-3.1.3" 85499 sources."mkdirp-1.0.4" ··· 85823 sources."uuid-7.0.3" 85824 ]; 85825 }) 85826 + (sources."xdl-59.1.0" // { 85827 dependencies = [ 85828 sources."bplist-parser-0.3.0" 85829 sources."chownr-1.1.4" ··· 85917 sources."@babel/traverse-7.15.0" 85918 sources."@babel/types-7.15.0" 85919 sources."@types/minimist-1.2.2" 85920 + sources."@types/node-16.7.2" 85921 sources."@types/normalize-package-data-2.4.1" 85922 sources."@types/yauzl-2.9.2" 85923 sources."@types/yoga-layout-1.9.2" ··· 85944 sources."callsites-2.0.0" 85945 sources."camelcase-5.3.1" 85946 sources."camelcase-keys-6.2.2" 85947 + sources."caniuse-lite-1.0.30001252" 85948 sources."chalk-2.4.2" 85949 sources."chownr-1.1.4" 85950 sources."ci-info-2.0.0" ··· 85969 }) 85970 sources."delay-5.0.0" 85971 sources."devtools-protocol-0.0.869402" 85972 + sources."electron-to-chromium-1.3.818" 85973 sources."emoji-regex-8.0.0" 85974 sources."end-of-stream-1.4.4" 85975 sources."error-ex-1.3.2" ··· 86063 sources."puppeteer-9.1.1" 86064 sources."quick-lru-4.0.1" 86065 sources."react-16.14.0" 86066 + sources."react-devtools-core-4.17.0" 86067 sources."react-is-16.13.1" 86068 sources."react-reconciler-0.24.0" 86069 (sources."read-pkg-5.2.0" // { ··· 86830 firebase-tools = nodeEnv.buildNodePackage { 86831 name = "firebase-tools"; 86832 packageName = "firebase-tools"; 86833 + version = "9.16.6"; 86834 src = fetchurl { 86835 + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.16.6.tgz"; 86836 + sha512 = "bW4rT+pTE6n8892rXd5ier9H1snXUZIXrL3WKzuVWXSUqDjUbx6SIgXhjp1++GIdkiMGnfDY5EJR4nV/YrTO5A=="; 86837 }; 86838 dependencies = [ 86839 (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { ··· 86842 ]; 86843 }) 86844 sources."@dabh/diagnostics-2.0.2" 86845 + sources."@gar/promisify-1.1.2" 86846 sources."@google-cloud/paginator-3.0.5" 86847 sources."@google-cloud/precise-date-2.0.3" 86848 sources."@google-cloud/projectify-2.1.0" 86849 sources."@google-cloud/promisify-2.0.3" 86850 + (sources."@google-cloud/pubsub-2.17.0" // { 86851 dependencies = [ 86852 sources."google-auth-library-7.6.2" 86853 ]; ··· 86855 sources."@grpc/grpc-js-1.3.7" 86856 sources."@grpc/proto-loader-0.6.4" 86857 sources."@jsdevtools/ono-7.1.3" 86858 + (sources."@npmcli/fs-1.0.0" // { 86859 + dependencies = [ 86860 + sources."semver-7.3.5" 86861 + ]; 86862 + }) 86863 (sources."@npmcli/move-file-1.1.2" // { 86864 dependencies = [ 86865 sources."mkdirp-1.0.4" ··· 86886 sources."@types/json-schema-7.0.9" 86887 sources."@types/long-4.0.1" 86888 sources."@types/minimatch-3.0.5" 86889 + sources."@types/node-16.7.2" 86890 sources."JSONStream-1.3.5" 86891 sources."abbrev-1.1.1" 86892 sources."abort-controller-3.0.0" ··· 86973 sources."buffer-indexof-polyfill-1.0.2" 86974 sources."buffers-0.1.1" 86975 sources."bytes-3.1.0" 86976 + (sources."cacache-15.3.0" // { 86977 dependencies = [ 86978 sources."mkdirp-1.0.4" 86979 + sources."tar-6.1.11" 86980 ]; 86981 }) 86982 (sources."cacheable-request-6.1.0" // { ··· 87444 dependencies = [ 87445 sources."mkdirp-1.0.4" 87446 sources."semver-7.3.5" 87447 + sources."tar-6.1.11" 87448 sources."which-2.0.2" 87449 ]; 87450 }) ··· 87992 dependencies = [ 87993 sources."@types/atob-2.1.2" 87994 sources."@types/inquirer-6.5.0" 87995 + sources."@types/node-16.7.2" 87996 sources."@types/through-0.0.30" 87997 sources."ajv-6.12.6" 87998 sources."ansi-escapes-4.3.2" ··· 88775 sources."@types/istanbul-lib-report-3.0.0" 88776 sources."@types/istanbul-reports-1.1.2" 88777 sources."@types/json-patch-0.0.30" 88778 + sources."@types/node-16.7.2" 88779 sources."@types/node-fetch-2.5.12" 88780 sources."@types/unist-2.0.6" 88781 sources."@types/yargs-15.0.14" ··· 88842 sources."call-bind-1.0.2" 88843 sources."camel-case-4.1.2" 88844 sources."camelcase-5.3.1" 88845 + sources."caniuse-lite-1.0.30001252" 88846 sources."ccount-1.1.0" 88847 (sources."chalk-4.1.2" // { 88848 dependencies = [ ··· 88892 ]; 88893 }) 88894 sources."content-type-1.0.4" 88895 + sources."contentful-management-7.33.0" 88896 sources."contentful-sdk-core-6.8.0" 88897 sources."convert-hrtime-3.0.0" 88898 (sources."convert-source-map-1.8.0" // { ··· 88938 sources."dotenv-8.6.0" 88939 sources."duplexer3-0.1.4" 88940 sources."ee-first-1.1.1" 88941 + sources."electron-to-chromium-1.3.818" 88942 sources."emoji-regex-7.0.3" 88943 sources."encodeurl-1.0.2" 88944 sources."end-of-stream-1.4.4" ··· 90382 sources."@nodelib/fs.walk-1.2.8" 90383 sources."@sindresorhus/is-0.14.0" 90384 sources."@szmarczak/http-timer-1.1.2" 90385 + sources."@types/node-16.7.2" 90386 sources."@types/parse-json-4.0.0" 90387 sources."@types/websocket-1.0.2" 90388 sources."abort-controller-3.0.0" ··· 91128 sources."supports-color-7.2.0" 91129 ]; 91130 }) 91131 + sources."systeminformation-5.8.6" 91132 sources."term-canvas-0.0.5" 91133 sources."type-fest-0.21.3" 91134 sources."wordwrap-0.0.3" ··· 93403 sha512 = "Gg0s1NP2mRJqzv68aT8cdt2+71iSYLDTWusAmlX7c8g13ZniSzCEHXywFvpILYm76lzCWxMazPleZhEEuBjqxQ=="; 93404 }; 93405 dependencies = [ 93406 sources."@braintree/sanitize-url-3.1.0" 93407 sources."@cronvel/get-pixels-3.4.0" 93408 sources."@joplin/fork-htmlparser2-4.1.33" ··· 93421 ]; 93422 }) 93423 sources."@joplin/turndown-plugin-gfm-1.0.37" 93424 sources."abab-2.0.5" 93425 sources."abbrev-1.1.1" 93426 sources."acorn-7.4.1" ··· 93436 sources."array-back-3.1.0" 93437 ]; 93438 }) 93439 sources."ansi-regex-2.1.1" 93440 (sources."ansi-styles-4.3.0" // { 93441 dependencies = [ ··· 93443 sources."color-name-1.1.4" 93444 ]; 93445 }) 93446 sources."anymatch-3.1.2" 93447 sources."aproba-1.2.0" 93448 sources."are-we-there-yet-1.1.5" ··· 93451 sources."sprintf-js-1.0.3" 93452 ]; 93453 }) 93454 sources."array-back-2.0.0" 93455 sources."array-equal-1.0.0" 93456 sources."array-flatten-3.0.0" 93457 sources."asap-2.0.6" 93458 sources."asn1-0.2.4" 93459 sources."assert-plus-1.0.0" 93460 sources."async-mutex-0.1.4" 93461 sources."asynckit-0.4.0" 93462 sources."atob-2.1.2" 93463 + (sources."aws-sdk-2.977.0" // { 93464 dependencies = [ 93465 sources."sax-1.2.1" 93466 sources."uuid-3.3.2" 93467 sources."xml2js-0.4.19" ··· 93470 }) 93471 sources."aws-sign2-0.7.0" 93472 sources."aws4-1.11.0" 93473 sources."balanced-match-1.0.2" 93474 sources."base-64-0.1.0" 93475 sources."base64-js-1.5.1" 93476 sources."base64-stream-1.0.0" ··· 93478 sources."binary-extensions-2.2.0" 93479 (sources."bl-4.1.0" // { 93480 dependencies = [ 93481 + sources."buffer-5.7.1" 93482 sources."readable-stream-3.6.0" 93483 ]; 93484 }) ··· 93486 sources."brace-expansion-1.1.11" 93487 sources."braces-3.0.2" 93488 sources."browser-process-hrtime-1.0.0" 93489 + sources."buffer-4.9.2" 93490 sources."builtin-modules-3.2.0" 93491 sources."camel-case-3.0.0" 93492 sources."camelcase-4.1.0" 93493 sources."caseless-0.12.0" 93494 + sources."chalk-4.1.2" 93495 sources."charenc-0.0.2" 93496 sources."chokidar-3.5.2" 93497 sources."chownr-1.1.4" 93498 sources."chroma-js-2.1.2" 93499 sources."clean-css-4.2.3" 93500 sources."cliss-0.0.2" 93501 sources."code-point-at-1.1.0" 93502 sources."color-3.1.2" 93503 sources."color-convert-1.9.3" 93504 sources."color-name-1.1.3" 93505 sources."color-string-1.6.0" 93506 sources."combined-stream-1.0.8" 93507 sources."command-line-usage-4.1.0" 93508 sources."commander-2.17.1" 93509 sources."compare-version-0.1.2" 93510 sources."compare-versions-3.6.0" 93511 sources."concat-map-0.0.1" 93512 sources."console-control-strings-1.1.0" 93513 sources."core-util-is-1.0.2" 93514 sources."cross-env-6.0.3" 93515 + sources."cross-spawn-7.0.3" 93516 sources."crypt-0.0.2" 93517 (sources."css-3.0.0" // { 93518 dependencies = [ ··· 93526 ]; 93527 }) 93528 sources."cwise-compiler-1.1.3" 93529 + sources."d3-7.0.1" 93530 + sources."d3-array-3.0.2" 93531 + sources."d3-axis-3.0.0" 93532 + sources."d3-brush-3.0.0" 93533 + sources."d3-chord-3.0.1" 93534 sources."d3-collection-1.0.7" 93535 + sources."d3-color-3.0.1" 93536 + sources."d3-contour-3.0.1" 93537 + sources."d3-delaunay-6.0.2" 93538 + sources."d3-dispatch-3.0.1" 93539 + sources."d3-drag-3.0.0" 93540 + (sources."d3-dsv-3.0.1" // { 93541 + dependencies = [ 93542 + sources."commander-7.2.0" 93543 + sources."iconv-lite-0.6.3" 93544 + ]; 93545 + }) 93546 + sources."d3-ease-3.0.1" 93547 + sources."d3-fetch-3.0.1" 93548 + sources."d3-force-3.0.0" 93549 + sources."d3-format-3.0.1" 93550 + sources."d3-geo-3.0.1" 93551 + sources."d3-hierarchy-3.0.1" 93552 + sources."d3-interpolate-3.0.1" 93553 + sources."d3-path-3.0.1" 93554 + sources."d3-polygon-3.0.1" 93555 + sources."d3-quadtree-3.0.1" 93556 + sources."d3-random-3.0.1" 93557 + sources."d3-scale-4.0.0" 93558 + sources."d3-scale-chromatic-3.0.0" 93559 + sources."d3-selection-3.0.0" 93560 + sources."d3-shape-3.0.1" 93561 + sources."d3-time-3.0.0" 93562 + sources."d3-time-format-4.0.0" 93563 + sources."d3-timer-3.0.1" 93564 + sources."d3-transition-3.0.1" 93565 sources."d3-voronoi-1.1.4" 93566 + sources."d3-zoom-3.0.0" 93567 sources."dagre-0.8.5" 93568 + (sources."dagre-d3-0.6.4" // { 93569 + dependencies = [ 93570 + sources."d3-5.16.0" 93571 + sources."d3-array-1.2.4" 93572 + sources."d3-axis-1.0.12" 93573 + sources."d3-brush-1.1.6" 93574 + sources."d3-chord-1.0.6" 93575 + sources."d3-color-1.4.1" 93576 + sources."d3-contour-1.3.2" 93577 + sources."d3-dispatch-1.0.6" 93578 + sources."d3-drag-1.2.5" 93579 + sources."d3-dsv-1.2.0" 93580 + sources."d3-ease-1.0.7" 93581 + sources."d3-fetch-1.2.0" 93582 + sources."d3-force-1.2.1" 93583 + sources."d3-format-1.4.5" 93584 + sources."d3-geo-1.12.1" 93585 + sources."d3-hierarchy-1.1.9" 93586 + sources."d3-interpolate-1.4.0" 93587 + sources."d3-path-1.0.9" 93588 + sources."d3-polygon-1.0.6" 93589 + sources."d3-quadtree-1.0.7" 93590 + sources."d3-random-1.1.2" 93591 + sources."d3-scale-2.2.2" 93592 + sources."d3-scale-chromatic-1.5.0" 93593 + sources."d3-selection-1.4.2" 93594 + sources."d3-shape-1.3.7" 93595 + sources."d3-time-1.1.0" 93596 + sources."d3-time-format-2.3.0" 93597 + sources."d3-timer-1.0.10" 93598 + sources."d3-transition-1.3.2" 93599 + sources."d3-zoom-1.8.3" 93600 + ]; 93601 + }) 93602 sources."dashdash-1.14.1" 93603 sources."data-urls-1.1.0" 93604 sources."debug-3.2.7" ··· 93607 sources."deep-extend-0.6.0" 93608 sources."deep-is-0.1.3" 93609 sources."deepmerge-2.2.1" 93610 + sources."delaunator-5.0.0" 93611 sources."delayed-stream-1.0.0" 93612 sources."delegates-1.0.0" 93613 sources."depd-1.1.2" 93614 sources."detect-libc-1.0.3" 93615 sources."diff-match-patch-1.0.5" 93616 (sources."dom-serializer-1.3.2" // { 93617 dependencies = [ 93618 sources."domhandler-4.2.0" ··· 93621 sources."domelementtype-2.2.0" 93622 sources."domexception-1.0.1" 93623 sources."domhandler-3.3.0" 93624 + sources."dompurify-2.3.1" 93625 (sources."domutils-2.7.0" // { 93626 dependencies = [ 93627 sources."domhandler-4.2.0" 93628 ]; 93629 }) 93630 sources."ecc-jsbn-0.1.2" 93631 (sources."emphasize-1.5.0" // { 93632 dependencies = [ 93633 sources."ansi-styles-2.2.1" 93634 sources."chalk-1.1.3" 93635 sources."highlight.js-9.12.0" 93636 sources."strip-ansi-3.0.1" 93637 sources."supports-color-2.0.0" ··· 93644 }) 93645 sources."end-of-stream-1.4.4" 93646 sources."entities-2.2.0" 93647 sources."es6-promise-pool-2.5.0" 93648 + sources."escape-string-regexp-1.0.5" 93649 sources."escodegen-1.14.3" 93650 sources."esprima-4.0.1" 93651 sources."estraverse-4.3.0" 93652 sources."esutils-2.0.3" 93653 sources."events-1.1.1" 93654 sources."expand-template-2.0.3" 93655 sources."extend-3.0.2" 93656 sources."extsprintf-1.3.0" 93657 sources."fast-deep-equal-3.1.3" 93658 sources."fast-json-stable-stringify-2.1.0" 93659 sources."fast-levenshtein-2.0.6" 93660 sources."fault-1.0.4" 93661 sources."file-type-10.11.0" 93662 sources."file-uri-to-path-1.0.0" 93663 sources."fill-range-7.0.1" 93664 sources."find-up-2.1.0" 93665 sources."follow-redirects-1.14.2" 93666 sources."font-awesome-filetypes-2.1.0" 93667 sources."for-each-property-0.0.4" 93668 sources."for-each-property-deep-0.0.3" 93669 sources."forever-agent-0.6.1" 93670 sources."form-data-2.5.1" 93671 sources."format-0.2.2" 93672 sources."fs-constants-1.0.0" 93673 (sources."fs-extra-5.0.0" // { 93674 dependencies = [ ··· 93679 sources."fs.realpath-1.0.0" 93680 sources."fsevents-2.3.2" 93681 sources."fstream-1.0.12" 93682 (sources."gauge-2.7.4" // { 93683 dependencies = [ 93684 sources."strip-ansi-3.0.1" 93685 ]; 93686 }) 93687 sources."get-prototype-chain-1.0.1" 93688 sources."get-stdin-5.0.1" 93689 sources."getpass-0.1.7" 93690 sources."github-from-package-0.0.0" 93691 sources."glob-7.1.7" 93692 sources."glob-parent-5.1.2" 93693 sources."graceful-fs-4.2.8" 93694 sources."graphlib-2.1.8" 93695 sources."growly-1.3.0" 93696 sources."har-schema-2.0.0" 93697 sources."har-validator-5.1.5" 93698 sources."has-ansi-2.0.0" 93699 + sources."has-flag-4.0.0" 93700 sources."has-unicode-2.0.1" 93701 sources."he-1.2.0" 93702 sources."highlight.js-11.2.0" 93703 sources."html-encoding-sniffer-1.0.2" ··· 93705 sources."html-minifier-3.5.21" 93706 sources."http-errors-1.8.0" 93707 sources."http-signature-1.2.0" 93708 sources."iconv-lite-0.4.24" 93709 + sources."ieee754-1.1.13" 93710 sources."ignore-walk-3.0.4" 93711 (sources."image-data-uri-2.0.1" // { 93712 dependencies = [ ··· 93715 }) 93716 sources."image-type-3.1.0" 93717 sources."immer-7.0.15" 93718 sources."inflight-1.0.6" 93719 sources."inherits-2.0.4" 93720 sources."ini-1.3.8" 93721 (sources."inspect-function-0.2.2" // { 93722 dependencies = [ 93723 sources."split-skip-0.0.1" ··· 93744 sources."split-skip-0.0.1" 93745 ]; 93746 }) 93747 + sources."internmap-2.0.1" 93748 sources."iota-array-1.0.0" 93749 sources."ip-regex-2.1.0" 93750 sources."is-absolute-0.2.6" 93751 sources."is-arrayish-0.3.2" 93752 sources."is-binary-path-2.1.0" 93753 sources."is-buffer-1.1.6" 93754 sources."is-docker-2.2.1" 93755 sources."is-extglob-2.1.1" 93756 sources."is-fullwidth-code-point-1.0.0" 93757 sources."is-glob-4.0.1" 93758 sources."is-number-7.0.0" 93759 sources."is-relative-0.2.1" 93760 sources."is-stream-1.1.0" 93761 sources."is-typedarray-1.0.0" 93762 sources."is-unc-path-0.1.2" 93763 sources."is-windows-0.2.0" 93764 sources."is-wsl-2.2.0" 93765 (sources."is2-0.0.9" // { ··· 93774 sources."jmespath-0.15.0" 93775 sources."jpeg-js-0.4.3" 93776 sources."js-tokens-4.0.0" 93777 sources."jsbn-0.1.1" 93778 sources."jsdom-15.2.1" 93779 sources."json-schema-0.2.3" 93780 sources."json-schema-traverse-0.4.1" 93781 sources."json-stringify-safe-5.0.1" 93782 sources."jsonfile-2.4.0" 93783 sources."jsprim-1.4.1" 93784 (sources."katex-0.13.13" // { ··· 93788 }) 93789 sources."keytar-7.7.0" 93790 sources."khroma-1.4.1" 93791 sources."klaw-1.3.1" 93792 sources."lazyness-1.2.0" 93793 sources."levenshtein-1.0.5" 93794 sources."levn-0.3.0" 93795 sources."linkify-it-2.2.0" 93796 sources."locate-path-2.0.0" 93797 sources."lodash-4.17.21" 93798 sources."lodash-es-4.17.21" 93799 sources."lodash.padend-4.6.1" 93800 sources."lodash.repeat-4.1.0" 93801 sources."lodash.sortby-4.7.0" 93802 sources."lodash.toarray-4.4.0" 93803 sources."loose-envify-1.4.0" 93804 sources."lower-case-1.1.4" 93805 (sources."lowlight-1.9.2" // { ··· 93809 }) 93810 sources."lru-cache-6.0.0" 93811 sources."magicli-0.0.8" 93812 (sources."markdown-it-10.0.0" // { 93813 dependencies = [ 93814 sources."entities-2.0.3" ··· 93835 sources."md5-2.3.0" 93836 sources."md5-file-4.0.0" 93837 sources."mdurl-1.0.1" 93838 + sources."mermaid-8.12.0" 93839 sources."mime-db-1.49.0" 93840 sources."mime-types-2.1.32" 93841 sources."mimic-response-2.1.0" 93842 sources."minimatch-3.0.4" 93843 sources."minimist-1.2.5" ··· 93847 ]; 93848 }) 93849 sources."minizlib-1.3.3" 93850 sources."mkdirp-0.5.5" 93851 sources."mkdirp-classic-0.5.3" 93852 sources."moment-2.29.1" ··· 93854 sources."ms-2.1.3" 93855 sources."multiparty-4.2.2" 93856 sources."mustache-4.2.0" 93857 sources."nanoid-3.1.25" 93858 sources."napi-build-utils-1.0.2" 93859 sources."ndarray-1.0.19" 93860 sources."ndarray-pack-1.2.1" 93861 + sources."needle-2.9.0" 93862 sources."nextgen-events-1.5.2" 93863 sources."no-case-2.3.2" 93864 (sources."node-abi-2.30.0" // { 93865 dependencies = [ ··· 93868 }) 93869 sources."node-addon-api-3.2.1" 93870 sources."node-bitmap-0.0.1" 93871 sources."node-emoji-1.11.0" 93872 sources."node-fetch-1.7.3" 93873 (sources."node-gyp-3.8.0" // { ··· 93878 sources."which-1.3.1" 93879 ]; 93880 }) 93881 (sources."node-notifier-8.0.2" // { 93882 dependencies = [ 93883 sources."uuid-8.3.2" ··· 93889 sources."semver-5.7.1" 93890 ]; 93891 }) 93892 sources."nopt-4.0.3" 93893 sources."normalize-path-3.0.0" 93894 sources."npm-bundled-1.1.2" ··· 93899 sources."nwsapi-2.2.0" 93900 sources."oauth-sign-0.9.0" 93901 sources."object-assign-4.1.1" 93902 (sources."object-to-arguments-0.0.8" // { 93903 dependencies = [ 93904 sources."inspect-parameters-declaration-0.0.10" 93905 sources."magicli-0.0.5" 93906 ]; 93907 }) 93908 sources."omggif-1.0.10" 93909 sources."once-1.4.0" 93910 sources."open-7.4.2" 93911 sources."optionator-0.8.3" 93912 sources."os-homedir-1.0.2" 93913 sources."os-tmpdir-1.0.2" 93914 sources."osenv-0.1.5" ··· 93916 sources."p-locate-2.0.0" 93917 sources."p-try-1.0.0" 93918 sources."param-case-2.1.1" 93919 sources."parse5-5.1.0" 93920 sources."path-exists-3.0.0" 93921 sources."path-is-absolute-1.0.1" 93922 + sources."path-key-3.1.1" 93923 sources."performance-now-2.1.0" 93924 sources."picomatch-2.3.0" 93925 + sources."pify-3.0.0" 93926 sources."pipe-functions-1.3.0" 93927 sources."pn-1.1.0" 93928 sources."pngjs-5.0.0" 93929 sources."prebuild-install-6.1.4" 93930 sources."prelude-ls-1.1.2" 93931 sources."process-nextick-args-2.0.1" ··· 93939 sources."query-string-4.3.4" 93940 sources."querystring-0.2.0" 93941 sources."querystringify-2.2.0" 93942 sources."random-bytes-1.0.0" 93943 sources."rc-1.2.8" 93944 sources."re-reselect-4.0.0" 93945 + sources."read-chunk-2.1.0" 93946 (sources."readable-stream-2.3.7" // { 93947 dependencies = [ 93948 sources."safe-buffer-5.1.2" 93949 ]; 93950 }) 93951 sources."readdirp-3.6.0" 93952 sources."reduce-flatten-1.0.1" 93953 sources."redux-3.7.2" 93954 sources."relateurl-0.2.7" 93955 sources."relative-3.0.2" 93956 (sources."request-2.88.2" // { 93957 dependencies = [ 93958 sources."form-data-2.3.3" ··· 93965 sources."tough-cookie-2.5.0" 93966 ]; 93967 }) 93968 sources."requires-port-1.0.0" 93969 sources."reselect-4.0.0" 93970 sources."resolve-url-0.2.1" 93971 sources."retry-0.10.1" 93972 sources."rimraf-2.7.1" 93973 + sources."robust-predicates-3.0.1" 93974 sources."rw-1.3.3" 93975 sources."safe-buffer-5.2.1" 93976 sources."safer-buffer-2.1.2" 93977 sources."sax-1.2.4" 93978 sources."saxes-3.1.11" 93979 sources."semver-7.3.5" 93980 sources."server-destroy-1.0.1" 93981 sources."set-blocking-2.0.0" 93982 sources."setimmediate-1.0.5" 93983 sources."setprototypeof-1.2.0" 93984 sources."seventh-0.7.40" 93985 (sources."sharp-0.26.3" // { 93986 dependencies = [ 93987 sources."color-3.2.1" ··· 93990 sources."simple-get-4.0.0" 93991 ]; 93992 }) 93993 + sources."shebang-command-2.0.0" 93994 + sources."shebang-regex-3.0.0" 93995 sources."shellwords-0.1.1" 93996 sources."signal-exit-3.0.3" 93997 sources."simple-concat-1.0.1" 93998 sources."simple-get-3.1.0" 93999 sources."simple-swizzle-0.2.2" 94000 (sources."slice-ansi-1.0.0" // { 94001 dependencies = [ 94002 sources."is-fullwidth-code-point-2.0.0" 94003 ]; 94004 }) 94005 sources."source-map-0.6.1" 94006 sources."source-map-resolve-0.5.3" 94007 sources."source-map-url-0.4.1" 94008 sources."split-skip-0.0.2" 94009 sources."sprintf-js-1.1.2" 94010 sources."sqlite3-5.0.2" 94011 sources."sshpk-1.16.1" 94012 sources."statuses-1.5.0" 94013 sources."stealthy-require-1.1.1" 94014 sources."strict-uri-encode-1.1.0" ··· 94037 }) 94038 sources."strip-json-comments-2.0.1" 94039 sources."stylis-4.0.10" 94040 + sources."supports-color-7.2.0" 94041 sources."symbol-observable-1.2.0" 94042 sources."symbol-tree-3.2.4" 94043 sources."table-layout-0.4.5" ··· 94058 sources."q-0.9.7" 94059 ]; 94060 }) 94061 sources."terminal-kit-1.49.4" 94062 (sources."tkwidgets-0.5.26" // { 94063 dependencies = [ 94064 sources."ansi-styles-3.2.1" 94065 sources."chalk-2.4.2" 94066 + sources."has-flag-3.0.0" 94067 sources."is-fullwidth-code-point-2.0.0" 94068 sources."node-emoji-git+https://github.com/laurent22/node-emoji.git" 94069 sources."string-width-2.1.1" 94070 + sources."supports-color-5.5.0" 94071 ]; 94072 }) 94073 sources."to-regex-range-5.0.1" 94074 sources."toidentifier-1.0.0" 94075 sources."tough-cookie-3.0.1" 94076 sources."tr46-1.0.1" 94077 sources."tree-kit-0.7.0" 94078 sources."tunnel-agent-0.6.0" 94079 sources."tweetnacl-0.14.5" 94080 sources."type-check-0.3.2" 94081 sources."typical-2.6.1" 94082 sources."uc.micro-1.0.6" 94083 (sources."uglify-js-3.4.10" // { ··· 94088 sources."uglifycss-0.0.29" 94089 sources."uid-safe-2.1.5" 94090 sources."unc-path-regex-0.1.2" 94091 sources."uniq-1.0.1" 94092 sources."universalify-0.1.2" 94093 sources."unorm-1.6.0" 94094 sources."unpack-string-0.0.2" 94095 sources."upper-case-1.1.3" 94096 sources."uri-js-4.4.1" 94097 sources."urix-0.1.0" ··· 94101 ]; 94102 }) 94103 sources."url-parse-1.5.3" 94104 sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support" 94105 sources."util-deprecate-1.0.2" 94106 sources."uuid-3.4.0" ··· 94108 sources."verror-1.10.0" 94109 sources."w3c-hr-time-1.0.2" 94110 sources."w3c-xmlserializer-1.1.2" 94111 sources."webidl-conversions-4.0.2" 94112 sources."whatwg-encoding-1.0.5" 94113 sources."whatwg-mimetype-2.3.0" 94114 sources."whatwg-url-7.1.0" 94115 sources."which-2.0.2" 94116 sources."wide-align-1.1.3" 94117 sources."word-wrap-1.2.3" 94118 sources."wordwrapjs-3.0.0" 94119 + (sources."wrap-ansi-3.0.1" // { 94120 dependencies = [ 94121 + sources."is-fullwidth-code-point-2.0.0" 94122 + sources."string-width-2.1.1" 94123 ]; 94124 }) 94125 sources."wrappy-1.0.2" 94126 sources."ws-7.5.3" 94127 sources."xml-name-validator-3.0.0" 94128 sources."xml2js-0.4.23" 94129 sources."xmlbuilder-11.0.1" 94130 sources."xmlchars-2.2.0" 94131 sources."yallist-4.0.0" 94132 sources."yargs-parser-7.0.0" 94133 ]; 94134 buildInputs = globalBuildInputs; ··· 95523 sources."@types/component-emitter-1.2.10" 95524 sources."@types/cookie-0.4.1" 95525 sources."@types/cors-2.8.12" 95526 + sources."@types/node-16.7.2" 95527 sources."accepts-1.3.7" 95528 sources."ansi-regex-5.0.0" 95529 sources."ansi-styles-4.3.0" ··· 96559 sources."supports-color-5.5.0" 96560 ]; 96561 }) 96562 + sources."@gar/promisify-1.1.2" 96563 sources."@hutson/parse-repository-url-3.0.2" 96564 sources."@lerna/add-4.0.0" 96565 sources."@lerna/bootstrap-4.0.0" ··· 96659 sources."@nodelib/fs.stat-2.0.5" 96660 sources."@nodelib/fs.walk-1.2.8" 96661 sources."@npmcli/ci-detect-1.3.0" 96662 + sources."@npmcli/fs-1.0.0" 96663 sources."@npmcli/git-2.1.0" 96664 sources."@npmcli/installed-package-contents-1.0.7" 96665 sources."@npmcli/move-file-1.1.2" ··· 96734 sources."builtins-1.0.3" 96735 sources."byline-5.0.0" 96736 sources."byte-size-7.0.1" 96737 + sources."cacache-15.3.0" 96738 sources."call-bind-1.0.2" 96739 sources."callsites-3.1.0" 96740 sources."camelcase-5.3.1" ··· 96932 (sources."init-package-json-2.0.4" // { 96933 dependencies = [ 96934 sources."normalize-package-data-3.0.3" 96935 + sources."read-package-json-4.0.1" 96936 ]; 96937 }) 96938 (sources."inquirer-7.3.3" // { ··· 97227 sources."strip-indent-3.0.0" 97228 sources."strong-log-transformer-2.1.0" 97229 sources."supports-color-7.2.0" 97230 + sources."tar-6.1.11" 97231 sources."temp-dir-1.0.0" 97232 (sources."temp-write-4.0.0" // { 97233 dependencies = [ ··· 97339 sources."make-dir-2.1.0" 97340 sources."mime-1.6.0" 97341 sources."ms-2.1.3" 97342 + sources."needle-2.9.0" 97343 sources."parse-node-version-1.0.1" 97344 sources."pify-4.0.1" 97345 sources."prr-1.0.1" ··· 98361 sources."@types/istanbul-lib-report-3.0.0" 98362 sources."@types/istanbul-reports-1.1.2" 98363 sources."@types/json-schema-7.0.9" 98364 + sources."@types/node-16.7.2" 98365 sources."@types/normalize-package-data-2.4.1" 98366 sources."@types/resolve-0.0.8" 98367 sources."@types/yargs-15.0.14" ··· 98534 sources."cached-path-relative-1.0.2" 98535 sources."call-bind-1.0.2" 98536 sources."camelcase-5.3.1" 98537 + sources."caniuse-lite-1.0.30001252" 98538 sources."capture-exit-2.0.0" 98539 sources."caseless-0.12.0" 98540 (sources."chalk-3.0.0" // { ··· 98606 }) 98607 sources."copy-descriptor-0.1.1" 98608 sources."core-js-2.6.12" 98609 + (sources."core-js-compat-3.16.3" // { 98610 dependencies = [ 98611 sources."semver-7.0.0" 98612 ]; ··· 98658 sources."duplexer2-0.1.4" 98659 sources."duplexify-3.7.1" 98660 sources."ecc-jsbn-0.1.2" 98661 + sources."electron-to-chromium-1.3.818" 98662 (sources."elliptic-6.5.4" // { 98663 dependencies = [ 98664 sources."bn.js-4.12.0" ··· 99905 sha512 = "kvOJ9VkabUFEASC0yE7KiWT7e8t2OBb6cw4YOXctXRJtbxSubLSANpfSxuy+MuaR9JJCMWcqD6sYy8FmdaPiaQ=="; 99906 }; 99907 dependencies = [ 99908 sources."@braintree/sanitize-url-3.1.0" 99909 + sources."@types/node-16.7.2" 99910 sources."@types/yauzl-2.9.2" 99911 sources."agent-base-6.0.2" 99912 sources."ansi-styles-4.3.0" 99913 sources."balanced-match-1.0.2" 99914 sources."base64-js-1.5.1" 99915 sources."bl-4.1.0" 99916 sources."brace-expansion-1.1.11" 99917 sources."buffer-5.7.1" 99918 sources."buffer-crc32-0.2.13" 99919 sources."chalk-4.1.2" 99920 sources."chownr-1.1.4" 99921 sources."color-convert-2.0.1" 99922 sources."color-name-1.1.4" 99923 sources."commander-8.1.0" 99924 sources."concat-map-0.0.1" 99925 + sources."d3-7.0.1" 99926 + sources."d3-array-3.0.2" 99927 + sources."d3-axis-3.0.0" 99928 + sources."d3-brush-3.0.0" 99929 + sources."d3-chord-3.0.1" 99930 + sources."d3-collection-1.0.7" 99931 + sources."d3-color-3.0.1" 99932 + sources."d3-contour-3.0.1" 99933 + sources."d3-delaunay-6.0.2" 99934 + sources."d3-dispatch-3.0.1" 99935 + sources."d3-drag-3.0.0" 99936 + (sources."d3-dsv-3.0.1" // { 99937 dependencies = [ 99938 + sources."commander-7.2.0" 99939 ]; 99940 }) 99941 + sources."d3-ease-3.0.1" 99942 + sources."d3-fetch-3.0.1" 99943 + sources."d3-force-3.0.0" 99944 + sources."d3-format-3.0.1" 99945 + sources."d3-geo-3.0.1" 99946 + sources."d3-hierarchy-3.0.1" 99947 + sources."d3-interpolate-3.0.1" 99948 + sources."d3-path-3.0.1" 99949 + sources."d3-polygon-3.0.1" 99950 + sources."d3-quadtree-3.0.1" 99951 + sources."d3-random-3.0.1" 99952 + sources."d3-scale-4.0.0" 99953 + sources."d3-scale-chromatic-3.0.0" 99954 + sources."d3-selection-3.0.0" 99955 + sources."d3-shape-3.0.1" 99956 + sources."d3-time-3.0.0" 99957 + sources."d3-time-format-4.0.0" 99958 + sources."d3-timer-3.0.1" 99959 + sources."d3-transition-3.0.1" 99960 + sources."d3-voronoi-1.1.4" 99961 + sources."d3-zoom-3.0.0" 99962 + sources."dagre-0.8.5" 99963 + (sources."dagre-d3-0.6.4" // { 99964 dependencies = [ 99965 sources."commander-2.20.3" 99966 + sources."d3-5.16.0" 99967 + sources."d3-array-1.2.4" 99968 + sources."d3-axis-1.0.12" 99969 + sources."d3-brush-1.1.6" 99970 + sources."d3-chord-1.0.6" 99971 + sources."d3-color-1.4.1" 99972 + sources."d3-contour-1.3.2" 99973 + sources."d3-dispatch-1.0.6" 99974 + sources."d3-drag-1.2.5" 99975 + sources."d3-dsv-1.2.0" 99976 + sources."d3-ease-1.0.7" 99977 + sources."d3-fetch-1.2.0" 99978 + sources."d3-force-1.2.1" 99979 + sources."d3-format-1.4.5" 99980 + sources."d3-geo-1.12.1" 99981 + sources."d3-hierarchy-1.1.9" 99982 + sources."d3-interpolate-1.4.0" 99983 + sources."d3-path-1.0.9" 99984 + sources."d3-polygon-1.0.6" 99985 + sources."d3-quadtree-1.0.7" 99986 + sources."d3-random-1.1.2" 99987 + sources."d3-scale-2.2.2" 99988 + sources."d3-scale-chromatic-1.5.0" 99989 + sources."d3-selection-1.4.2" 99990 + sources."d3-shape-1.3.7" 99991 + sources."d3-time-1.1.0" 99992 + sources."d3-time-format-2.3.0" 99993 + sources."d3-timer-1.0.10" 99994 + sources."d3-transition-1.3.2" 99995 + sources."d3-zoom-1.8.3" 99996 + sources."iconv-lite-0.4.24" 99997 ]; 99998 }) 99999 sources."debug-4.3.1" 100000 + sources."delaunator-5.0.0" 100001 sources."devtools-protocol-0.0.901419" 100002 + sources."dompurify-2.3.1" 100003 sources."end-of-stream-1.4.4" 100004 sources."extract-zip-2.0.1" 100005 sources."fd-slicer-1.1.0" 100006 sources."find-up-4.1.0" 100007 sources."fs-constants-1.0.0" 100008 sources."fs.realpath-1.0.0" 100009 sources."get-stream-5.2.0" 100010 sources."glob-7.1.7" 100011 sources."graphlib-2.1.8" 100012 sources."has-flag-4.0.0" 100013 sources."https-proxy-agent-5.0.0" 100014 + sources."iconv-lite-0.6.3" 100015 sources."ieee754-1.2.1" 100016 sources."inflight-1.0.6" 100017 sources."inherits-2.0.4" 100018 + sources."internmap-2.0.1" 100019 sources."khroma-1.4.1" 100020 sources."locate-path-5.0.0" 100021 sources."lodash-4.17.21" 100022 + sources."mermaid-8.12.0" 100023 sources."minimatch-3.0.4" 100024 sources."minimist-1.2.5" 100025 sources."mkdirp-0.5.5" 100026 sources."moment-mini-2.24.0" 100027 sources."ms-2.1.2" 100028 sources."node-fetch-2.6.1" 100029 sources."once-1.4.0" 100030 sources."p-limit-2.3.0" 100031 sources."p-locate-4.1.0" 100032 sources."p-try-2.2.0" 100033 sources."path-exists-4.0.0" 100034 sources."path-is-absolute-1.0.1" 100035 sources."pend-1.2.0" 100036 sources."pkg-dir-4.2.0" 100037 sources."progress-2.0.1" 100038 sources."proxy-from-env-1.1.0" 100039 sources."pump-3.0.0" 100040 sources."puppeteer-10.2.0" 100041 sources."readable-stream-3.6.0" 100042 sources."rimraf-3.0.2" 100043 + sources."robust-predicates-3.0.1" 100044 sources."rw-1.3.3" 100045 sources."safe-buffer-5.2.1" 100046 sources."safer-buffer-2.1.2" 100047 sources."string_decoder-1.3.0" 100048 sources."stylis-4.0.10" 100049 sources."supports-color-7.2.0" 100050 sources."tar-fs-2.0.0" 100051 sources."tar-stream-2.2.0" 100052 sources."through-2.3.8" 100053 sources."unbzip2-stream-1.3.3" 100054 sources."util-deprecate-1.0.2" 100055 sources."wrappy-1.0.2" 100056 sources."ws-7.4.6" 100057 sources."yauzl-2.10.0" 100058 ]; 100059 buildInputs = globalBuildInputs; ··· 100078 sources."@chinachu/aribts-1.3.5-mirakurun.3" 100079 sources."@fluentui/date-time-utilities-8.2.2" 100080 sources."@fluentui/dom-utilities-2.1.4" 100081 + sources."@fluentui/font-icons-mdl2-8.1.10" 100082 + sources."@fluentui/foundation-legacy-8.1.10" 100083 sources."@fluentui/keyboard-key-0.3.4" 100084 + sources."@fluentui/merge-styles-8.1.5" 100085 sources."@fluentui/react-8.27.0" 100086 + sources."@fluentui/react-focus-8.2.1" 100087 + sources."@fluentui/react-hooks-8.3.1" 100088 sources."@fluentui/react-window-provider-2.1.4" 100089 sources."@fluentui/set-version-8.1.4" 100090 + sources."@fluentui/style-utilities-8.3.1" 100091 + sources."@fluentui/theme-2.3.1" 100092 + sources."@fluentui/utilities-8.3.1" 100093 sources."@microsoft/load-themed-styles-1.10.203" 100094 sources."@napi-rs/triples-1.0.3" 100095 sources."@node-rs/crc32-1.2.1" ··· 100108 sources."@node-rs/helper-1.2.1" 100109 sources."@sindresorhus/is-0.14.0" 100110 sources."@szmarczak/http-timer-1.1.2" 100111 + sources."@types/node-16.7.2" 100112 sources."@types/uuid-3.4.10" 100113 sources."@types/ws-6.0.4" 100114 sources."accepts-1.3.7" ··· 100746 netlify-cli = nodeEnv.buildNodePackage { 100747 name = "netlify-cli"; 100748 packageName = "netlify-cli"; 100749 + version = "6.7.6"; 100750 src = fetchurl { 100751 + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.7.6.tgz"; 100752 + sha512 = "yGdBrNqFPHRrIEcyRXseYt8NOPj7XWeMZiQ6ZGO4Zgkju6nSPnaI9Cxm0rBi7+92c9xU7yhtqY1Z+rs69jaLRw=="; 100753 }; 100754 dependencies = [ 100755 sources."@babel/code-frame-7.14.5" ··· 100884 sources."@dabh/diagnostics-2.0.2" 100885 sources."@jest/types-26.6.2" 100886 sources."@mrmlnc/readdir-enhanced-2.2.1" 100887 + (sources."@netlify/build-18.6.0" // { 100888 dependencies = [ 100889 sources."resolve-2.0.0-next.3" 100890 ]; ··· 100896 sources."slash-3.0.0" 100897 ]; 100898 }) 100899 + (sources."@netlify/config-15.5.0" // { 100900 dependencies = [ 100901 sources."dot-prop-5.3.0" 100902 ]; ··· 100929 sources."@netlify/open-api-2.5.0" 100930 (sources."@netlify/plugin-edge-handlers-1.11.22" // { 100931 dependencies = [ 100932 + sources."@types/node-14.17.12" 100933 ]; 100934 }) 100935 sources."@netlify/plugins-list-3.5.0" ··· 101117 sources."@types/istanbul-reports-3.0.1" 101118 sources."@types/keyv-3.1.2" 101119 sources."@types/minimatch-3.0.5" 101120 + sources."@types/node-16.7.2" 101121 sources."@types/node-fetch-2.5.12" 101122 sources."@types/normalize-package-data-2.4.1" 101123 sources."@types/resolve-1.17.1" ··· 101283 sources."call-me-maybe-1.0.1" 101284 sources."callsite-1.0.0" 101285 sources."camelcase-6.2.0" 101286 + sources."caniuse-lite-1.0.30001252" 101287 sources."cardinal-2.1.1" 101288 (sources."chalk-4.1.2" // { 101289 dependencies = [ ··· 101393 sources."readdirp-2.2.1" 101394 ]; 101395 }) 101396 + (sources."core-js-compat-3.16.3" // { 101397 dependencies = [ 101398 sources."semver-7.0.0" 101399 ]; ··· 101538 }) 101539 sources."duplexer3-0.1.4" 101540 sources."ee-first-1.1.1" 101541 + sources."electron-to-chromium-1.3.818" 101542 sources."elegant-spinner-1.0.1" 101543 sources."elf-cam-0.1.1" 101544 sources."emoji-regex-8.0.0" ··· 102696 sha512 = "KG8SdcoAnw2d6augGwl1kOayALUrXW/P2uOAm2J2+nmW/HjZo7y+8TDg7LejxbekOOSv3kzhq+NSUYkIDAX8eA=="; 102697 }; 102698 dependencies = [ 102699 + sources."@gar/promisify-1.1.2" 102700 + sources."@npmcli/fs-1.0.0" 102701 sources."@npmcli/move-file-1.1.2" 102702 sources."@tootallnate/once-1.1.2" 102703 sources."abbrev-1.1.1" ··· 102709 sources."are-we-there-yet-1.1.5" 102710 sources."balanced-match-1.0.2" 102711 sources."brace-expansion-1.1.11" 102712 + sources."cacache-15.3.0" 102713 sources."chownr-2.0.0" 102714 sources."clean-stack-2.2.0" 102715 sources."code-point-at-1.1.0" ··· 102780 sources."string-width-1.0.2" 102781 sources."string_decoder-1.1.1" 102782 sources."strip-ansi-3.0.1" 102783 + sources."tar-6.1.11" 102784 sources."unique-filename-1.1.1" 102785 sources."unique-slug-2.0.2" 102786 sources."util-deprecate-1.0.2" ··· 103238 sources."@types/cacheable-request-6.0.2" 103239 sources."@types/http-cache-semantics-4.0.1" 103240 sources."@types/keyv-3.1.2" 103241 + sources."@types/node-16.7.2" 103242 sources."@types/responselike-1.0.0" 103243 sources."abbrev-1.1.1" 103244 sources."accepts-1.3.7" ··· 103579 sources."typedarray-0.0.6" 103580 sources."uglify-js-3.13.10" 103581 sources."uid-safe-2.1.5" 103582 + sources."uid2-0.0.4" 103583 sources."universalify-0.1.2" 103584 sources."unpipe-1.0.0" 103585 sources."uri-js-4.4.1" ··· 103767 ]; 103768 }) 103769 sources."strip-ansi-3.0.1" 103770 + (sources."tar-6.1.11" // { 103771 dependencies = [ 103772 sources."mkdirp-1.0.4" 103773 ]; ··· 103998 sources."@types/http-cache-semantics-4.0.1" 103999 sources."@types/keyv-3.1.2" 104000 sources."@types/minimist-1.2.2" 104001 + sources."@types/node-16.7.2" 104002 sources."@types/normalize-package-data-2.4.1" 104003 sources."@types/parse-json-4.0.0" 104004 sources."@types/responselike-1.0.0" ··· 104526 sha512 = "NslIB6Af7GagVrN+bvBkObLyawIZfOnDnl8n9MHE+dFt0aChRYtvR6T2BLJKzOPIepCLmmh0NRR/qha0ExAELQ=="; 104527 }; 104528 dependencies = [ 104529 + sources."@gar/promisify-1.1.2" 104530 sources."@nodelib/fs.scandir-2.1.5" 104531 sources."@nodelib/fs.stat-2.0.5" 104532 sources."@nodelib/fs.walk-1.2.8" 104533 + sources."@npmcli/fs-1.0.0" 104534 sources."@npmcli/git-2.1.0" 104535 sources."@npmcli/installed-package-contents-1.0.7" 104536 sources."@npmcli/move-file-1.1.2" ··· 104578 sources."brace-expansion-1.1.11" 104579 sources."braces-3.0.2" 104580 sources."builtins-1.0.3" 104581 + sources."cacache-15.3.0" 104582 (sources."cacheable-request-6.1.0" // { 104583 dependencies = [ 104584 sources."get-stream-5.2.0" ··· 104825 sources."strip-ansi-3.0.1" 104826 sources."strip-json-comments-2.0.1" 104827 sources."supports-color-7.2.0" 104828 + sources."tar-6.1.11" 104829 sources."to-readable-stream-1.0.0" 104830 sources."to-regex-range-5.0.1" 104831 sources."tough-cookie-2.5.0" ··· 105365 sources."caller-path-2.0.0" 105366 sources."callsites-2.0.0" 105367 sources."caniuse-api-3.0.0" 105368 + sources."caniuse-lite-1.0.30001252" 105369 sources."caseless-0.12.0" 105370 sources."chalk-2.4.2" 105371 sources."chokidar-2.1.8" ··· 105392 sources."convert-source-map-1.8.0" 105393 sources."copy-descriptor-0.1.1" 105394 sources."core-js-2.6.12" 105395 + (sources."core-js-compat-3.16.3" // { 105396 dependencies = [ 105397 sources."semver-7.0.0" 105398 ]; ··· 105448 sources."cssstyle-1.4.0" 105449 sources."dashdash-1.14.1" 105450 sources."data-urls-1.1.0" 105451 + sources."deasync-0.1.23" 105452 sources."debug-4.3.2" 105453 sources."decode-uri-component-0.2.0" 105454 sources."deep-is-0.1.3" ··· 105503 sources."duplexer2-0.1.4" 105504 sources."ecc-jsbn-0.1.2" 105505 sources."ee-first-1.1.1" 105506 + sources."electron-to-chromium-1.3.818" 105507 (sources."elliptic-6.5.4" // { 105508 dependencies = [ 105509 sources."bn.js-4.12.0" ··· 107556 sources."statuses-1.5.0" 107557 sources."string_decoder-0.10.31" 107558 sources."supports-color-7.2.0" 107559 + sources."systeminformation-5.8.6" 107560 sources."to-regex-range-5.0.1" 107561 sources."toidentifier-1.0.0" 107562 sources."tslib-2.3.1" ··· 108751 sources."@types/glob-7.1.4" 108752 sources."@types/json-schema-7.0.9" 108753 sources."@types/minimatch-3.0.5" 108754 + sources."@types/node-16.7.2" 108755 sources."@types/parse-json-4.0.0" 108756 sources."@types/q-1.5.5" 108757 sources."@webassemblyjs/ast-1.9.0" ··· 108939 sources."camel-case-3.0.0" 108940 sources."camelcase-5.3.1" 108941 sources."caniuse-api-3.0.0" 108942 + sources."caniuse-lite-1.0.30001252" 108943 sources."case-sensitive-paths-webpack-plugin-2.4.0" 108944 sources."caw-2.0.1" 108945 (sources."chalk-2.4.2" // { ··· 109024 sources."copy-concurrently-1.0.5" 109025 sources."copy-descriptor-0.1.1" 109026 sources."core-js-2.6.12" 109027 + (sources."core-js-compat-3.16.3" // { 109028 dependencies = [ 109029 sources."semver-7.0.0" 109030 ]; ··· 109168 sources."duplexify-3.7.1" 109169 sources."ee-first-1.1.1" 109170 sources."ejs-2.7.4" 109171 + sources."electron-to-chromium-1.3.818" 109172 (sources."elliptic-6.5.4" // { 109173 dependencies = [ 109174 sources."bn.js-4.12.0" ··· 110560 sources."@redocly/ajv-8.6.2" 110561 (sources."@redocly/openapi-core-1.0.0-beta.55" // { 110562 dependencies = [ 110563 + sources."@types/node-14.17.12" 110564 ]; 110565 }) 110566 sources."@redocly/react-dropdown-aria-2.0.12" ··· 111089 sources."@types/json-schema-7.0.9" 111090 sources."@types/minimatch-3.0.5" 111091 sources."@types/mocha-8.2.3" 111092 + sources."@types/node-14.17.12" 111093 sources."@types/node-fetch-2.5.12" 111094 sources."@types/vscode-1.59.0" 111095 sources."@typescript-eslint/eslint-plugin-4.29.3" ··· 111781 serverless = nodeEnv.buildNodePackage { 111782 name = "serverless"; 111783 packageName = "serverless"; 111784 + version = "2.56.0"; 111785 src = fetchurl { 111786 + url = "https://registry.npmjs.org/serverless/-/serverless-2.56.0.tgz"; 111787 + sha512 = "/nmD1aLe+rXZpTmnxzHogCt5qGGBrE+wce7LcLV1yNne+aymyCcL8vcLj2Ib2ukTXweWpr8MxAgdXVtbwY4EGA=="; 111788 }; 111789 dependencies = [ 111790 sources."2-thenable-1.0.0" ··· 111817 ]; 111818 }) 111819 sources."@serverless/component-metrics-1.0.8" 111820 + (sources."@serverless/components-3.16.0" // { 111821 dependencies = [ 111822 (sources."@serverless/utils-4.1.0" // { 111823 dependencies = [ ··· 111844 sources."semver-6.3.0" 111845 ]; 111846 }) 111847 + sources."@serverless/dashboard-plugin-5.4.4" 111848 sources."@serverless/event-mocks-1.1.1" 111849 (sources."@serverless/platform-client-4.3.0" // { 111850 dependencies = [ ··· 111876 sources."@types/keyv-3.1.2" 111877 sources."@types/lodash-4.14.172" 111878 sources."@types/long-4.0.1" 111879 + sources."@types/node-16.7.2" 111880 sources."@types/request-2.48.7" 111881 sources."@types/request-promise-native-1.0.18" 111882 sources."@types/responselike-1.0.0" ··· 111937 sources."async-2.6.3" 111938 sources."asynckit-0.4.0" 111939 sources."at-least-node-1.0.0" 111940 + (sources."aws-sdk-2.977.0" // { 111941 dependencies = [ 111942 sources."buffer-4.9.2" 111943 sources."ieee754-1.1.13" ··· 112555 sources."untildify-3.0.3" 112556 ]; 112557 }) 112558 + (sources."tar-6.1.11" // { 112559 dependencies = [ 112560 sources."chownr-2.0.0" 112561 sources."mkdirp-1.0.4" ··· 113292 snyk = nodeEnv.buildNodePackage { 113293 name = "snyk"; 113294 packageName = "snyk"; 113295 + version = "1.692.0"; 113296 src = fetchurl { 113297 + url = "https://registry.npmjs.org/snyk/-/snyk-1.692.0.tgz"; 113298 + sha512 = "N/hfiyccrQRwiU1fFzG1uxKU0ODRTi7UtcZJhtRidE/DT3Vs35pWU/y4vVfXP/OegtihAwGjEirxNeL8o632mQ=="; 113299 }; 113300 buildInputs = globalBuildInputs; 113301 meta = { ··· 113319 sources."@types/component-emitter-1.2.10" 113320 sources."@types/cookie-0.4.1" 113321 sources."@types/cors-2.8.12" 113322 + sources."@types/node-16.7.2" 113323 sources."accepts-1.3.7" 113324 sources."base64-arraybuffer-0.1.4" 113325 sources."base64id-2.0.0" ··· 114280 sources."ssb-client-4.9.0" 114281 sources."ssb-config-3.4.5" 114282 sources."ssb-db-19.2.0" 114283 + (sources."ssb-db2-2.3.1" // { 114284 dependencies = [ 114285 sources."abstract-leveldown-6.2.3" 114286 (sources."flumecodec-0.0.1" // { ··· 114495 sources."ws-1.1.5" 114496 ]; 114497 }) 114498 + sources."@types/babel-types-7.0.11" 114499 sources."@types/babylon-6.16.6" 114500 sources."accepts-1.3.7" 114501 sources."acorn-3.3.0" ··· 114545 sources."async-1.5.2" 114546 sources."async-limiter-1.0.1" 114547 sources."asynckit-0.4.0" 114548 + (sources."aws-sdk-2.977.0" // { 114549 dependencies = [ 114550 sources."uuid-3.3.2" 114551 ]; ··· 115204 }) 115205 sources."uglify-to-browserify-1.0.2" 115206 sources."uid-safe-2.1.5" 115207 + sources."uid2-0.0.4" 115208 sources."ultron-1.0.2" 115209 sources."unpipe-1.0.0" 115210 (sources."uri-js-4.4.1" // { ··· 115384 sources."callsites-3.1.0" 115385 sources."camelcase-5.3.1" 115386 sources."camelcase-keys-6.2.2" 115387 + sources."caniuse-lite-1.0.30001252" 115388 (sources."chalk-4.1.2" // { 115389 dependencies = [ 115390 sources."ansi-styles-4.3.0" ··· 115422 sources."domelementtype-1.3.1" 115423 sources."domhandler-2.4.2" 115424 sources."domutils-1.7.0" 115425 + sources."electron-to-chromium-1.3.818" 115426 sources."emoji-regex-8.0.0" 115427 sources."entities-1.1.2" 115428 sources."error-ex-1.3.2" ··· 115661 sha512 = "EstDoqxjqWStWELh7Z0qytqUDl/ikdNEr21dveNc4fUDnhnqO2F2jHEufqoNnC3GfBji3GIUHvoXsp/I5lMbCg=="; 115662 }; 115663 dependencies = [ 115664 + sources."@types/node-16.7.2" 115665 sources."@types/pug-2.0.5" 115666 sources."@types/sass-1.16.1" 115667 sources."ansi-styles-4.3.0" ··· 115732 sources."@emmetio/abbreviation-2.2.2" 115733 sources."@emmetio/css-abbreviation-2.1.4" 115734 sources."@emmetio/scanner-1.0.0" 115735 + sources."@types/node-16.7.2" 115736 sources."@types/pug-2.0.5" 115737 sources."@types/sass-1.16.1" 115738 sources."anymatch-3.1.2" ··· 117897 sources."@types/cacheable-request-6.0.2" 117898 sources."@types/http-cache-semantics-4.0.1" 117899 sources."@types/keyv-3.1.2" 117900 + sources."@types/node-16.7.2" 117901 sources."@types/responselike-1.0.0" 117902 sources."abbrev-1.1.1" 117903 sources."abstract-logging-2.0.1" ··· 117973 sources."content-type-1.0.4" 117974 sources."cookie-0.4.0" 117975 sources."cookie-signature-1.0.6" 117976 + sources."core-js-3.16.3" 117977 sources."core-util-is-1.0.2" 117978 sources."css-select-1.2.0" 117979 sources."css-what-2.1.3" ··· 118336 three = nodeEnv.buildNodePackage { 118337 name = "three"; 118338 packageName = "three"; 118339 + version = "0.132.0"; 118340 src = fetchurl { 118341 + url = "https://registry.npmjs.org/three/-/three-0.132.0.tgz"; 118342 + sha512 = "kv4WeP3O5/8mcHyuGYnqBQYdEfzSz9kEkq4H/9J966epNlGSVJ8gYC3SwT9qIITdgC0OvLr3zPltCS4dUyg2eg=="; 118343 }; 118344 buildInputs = globalBuildInputs; 118345 meta = { ··· 118911 sources."@types/component-emitter-1.2.10" 118912 sources."@types/cookie-0.4.1" 118913 sources."@types/cors-2.8.12" 118914 + sources."@types/node-14.17.12" 118915 sources."abbrev-1.1.1" 118916 sources."accepts-1.3.7" 118917 sources."ansi-regex-5.0.0" ··· 119192 sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w=="; 119193 }; 119194 dependencies = [ 119195 + sources."@types/node-16.7.2" 119196 sources."@types/unist-2.0.6" 119197 sources."@types/vfile-3.0.2" 119198 sources."@types/vfile-message-2.0.0" ··· 119447 sources."string-width-1.0.2" 119448 sources."string_decoder-1.1.1" 119449 sources."strip-ansi-3.0.1" 119450 + sources."tar-6.1.11" 119451 sources."topojson-client-3.1.0" 119452 sources."util-deprecate-1.0.2" 119453 sources."vega-5.20.2" ··· 119570 dependencies = [ 119571 sources."@sindresorhus/is-0.14.0" 119572 sources."@szmarczak/http-timer-1.1.2" 119573 + sources."@types/node-16.7.2" 119574 sources."@vercel/build-utils-2.12.2" 119575 sources."@vercel/go-1.2.3" 119576 sources."@vercel/node-1.12.1" ··· 119691 vim-language-server = nodeEnv.buildNodePackage { 119692 name = "vim-language-server"; 119693 packageName = "vim-language-server"; 119694 + version = "2.2.4"; 119695 src = fetchurl { 119696 + url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.4.tgz"; 119697 + sha512 = "MHbdFNU9C7pwXMY7UvzjdslNBRwFazy+wDe7Kv30L1Hl6BiMpkOAQ4RgvevYQAjm/NpS6gvMz7N0FFKr2qjKsw=="; 119698 }; 119699 buildInputs = globalBuildInputs; 119700 meta = { ··· 120161 sources."buffer-from-1.1.2" 120162 sources."call-bind-1.0.2" 120163 sources."camelcase-6.2.0" 120164 + sources."caniuse-lite-1.0.30001252" 120165 (sources."chalk-4.1.2" // { 120166 dependencies = [ 120167 sources."supports-color-7.2.0" ··· 120201 sources."domelementtype-2.2.0" 120202 sources."domhandler-4.2.0" 120203 sources."domutils-2.7.0" 120204 + sources."electron-to-chromium-1.3.818" 120205 sources."emoji-regex-8.0.0" 120206 sources."emojis-list-3.0.0" 120207 sources."enhanced-resolve-5.8.2" ··· 120407 sources."supports-color-5.5.0" 120408 ]; 120409 }) 120410 + sources."vscode-debugadapter-testsupport-1.49.0" 120411 + sources."vscode-debugprotocol-1.49.0" 120412 sources."watchpack-2.2.0" 120413 sources."webpack-5.51.1" 120414 (sources."webpack-cli-4.8.0" // { ··· 120767 sources."@starptech/rehype-webparser-0.10.0" 120768 sources."@starptech/webparser-0.10.0" 120769 sources."@szmarczak/http-timer-1.1.2" 120770 + sources."@types/node-16.7.2" 120771 sources."@types/unist-2.0.6" 120772 sources."@types/vfile-3.0.2" 120773 sources."@types/vfile-message-2.0.0" ··· 121742 sources."combined-stream-1.0.8" 121743 sources."concat-map-0.0.1" 121744 sources."console-control-strings-1.1.0" 121745 + sources."core-js-pure-3.16.3" 121746 sources."core-util-is-1.0.2" 121747 sources."cssom-0.4.4" 121748 (sources."cssstyle-2.3.0" // { ··· 121849 sources."svg-pathdata-5.0.5" 121850 sources."svg2img-0.9.3" 121851 sources."symbol-tree-3.2.4" 121852 + sources."tar-6.1.11" 121853 (sources."tough-cookie-4.0.0" // { 121854 dependencies = [ 121855 sources."universalify-0.1.2" ··· 121948 sources."@sindresorhus/is-0.14.0" 121949 sources."@szmarczak/http-timer-1.1.2" 121950 sources."@types/minimatch-3.0.5" 121951 + sources."@types/node-16.7.2" 121952 sources."@types/yauzl-2.9.1" 121953 sources."acorn-7.4.1" 121954 sources."acorn-jsx-5.3.2" ··· 122519 sources."@types/eslint-scope-3.7.1" 122520 sources."@types/estree-0.0.50" 122521 sources."@types/json-schema-7.0.9" 122522 + sources."@types/node-16.7.2" 122523 sources."@webassemblyjs/ast-1.11.1" 122524 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 122525 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 122543 sources."ajv-keywords-3.5.2" 122544 sources."browserslist-4.16.8" 122545 sources."buffer-from-1.1.2" 122546 + sources."caniuse-lite-1.0.30001252" 122547 sources."chrome-trace-event-1.0.3" 122548 sources."colorette-1.3.0" 122549 sources."commander-2.20.3" 122550 + sources."electron-to-chromium-1.3.818" 122551 sources."enhanced-resolve-5.8.2" 122552 sources."es-module-lexer-0.7.1" 122553 sources."escalade-3.1.1" ··· 122687 sources."@nodelib/fs.walk-1.2.8" 122688 sources."@types/http-proxy-1.17.7" 122689 sources."@types/json-schema-7.0.9" 122690 + sources."@types/node-16.7.2" 122691 sources."@types/retry-0.12.1" 122692 sources."accepts-1.3.7" 122693 sources."aggregate-error-3.1.0" ··· 123070 sources."@protobufjs/pool-1.1.0" 123071 sources."@protobufjs/utf8-1.1.0" 123072 sources."@types/long-4.0.1" 123073 + sources."@types/node-16.7.2" 123074 sources."addr-to-ip-port-1.5.4" 123075 sources."airplay-js-0.3.0" 123076 sources."ansi-regex-5.0.0" ··· 123364 sources."utp-native-2.5.3" 123365 sources."videostream-3.2.2" 123366 sources."vlc-command-1.2.0" 123367 + (sources."webtorrent-1.5.4" // { 123368 dependencies = [ 123369 sources."debug-4.3.2" 123370 sources."decompress-response-6.0.0" ··· 123572 }; 123573 dependencies = [ 123574 sources."@babel/runtime-7.15.3" 123575 + sources."@gar/promisify-1.1.2" 123576 sources."@nodelib/fs.scandir-2.1.5" 123577 sources."@nodelib/fs.stat-2.0.5" 123578 sources."@nodelib/fs.walk-1.2.8" ··· 123582 sources."semver-7.3.5" 123583 ]; 123584 }) 123585 + (sources."@npmcli/fs-1.0.0" // { 123586 + dependencies = [ 123587 + sources."semver-7.3.5" 123588 + ]; 123589 + }) 123590 (sources."@npmcli/git-2.1.0" // { 123591 dependencies = [ 123592 sources."mkdirp-1.0.4" ··· 123684 sources."buffer-5.7.1" 123685 sources."buffer-from-1.1.2" 123686 sources."builtins-1.0.3" 123687 + (sources."cacache-15.3.0" // { 123688 dependencies = [ 123689 sources."mkdirp-1.0.4" 123690 ]; ··· 123731 sources."config-chain-1.1.13" 123732 sources."configstore-3.1.5" 123733 sources."console-control-strings-1.1.0" 123734 + sources."core-js-3.16.3" 123735 sources."core-util-is-1.0.2" 123736 sources."create-error-class-3.0.2" 123737 sources."cross-spawn-6.0.5" ··· 123974 }) 123975 sources."mem-5.1.1" 123976 sources."mem-fs-2.2.1" 123977 + sources."mem-fs-editor-9.3.0" 123978 (sources."meow-3.7.0" // { 123979 dependencies = [ 123980 sources."find-up-1.1.2" ··· 124321 ]; 124322 }) 124323 sources."taketalk-1.0.0" 124324 + (sources."tar-6.1.11" // { 124325 dependencies = [ 124326 sources."mkdirp-1.0.4" 124327 ]; ··· 124507 sources."@nodelib/fs.walk-1.2.8" 124508 sources."@types/fs-extra-9.0.12" 124509 sources."@types/minimist-1.2.2" 124510 + sources."@types/node-16.7.2" 124511 sources."@types/node-fetch-2.5.12" 124512 sources."ansi-styles-4.3.0" 124513 sources."array-union-3.0.1"
+2 -2
pkgs/development/python-modules/aiorecollect/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "aiorecollect"; 15 - version = "1.0.7"; 16 format = "pyproject"; 17 18 src = fetchFromGitHub { 19 owner = "bachya"; 20 repo = pname; 21 rev = version; 22 - sha256 = "1s96zfrw8kdpmyxkiskz1ys8h23dx3b46psmlg1z6d4pkb611ijz"; 23 }; 24 25 nativeBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "aiorecollect"; 15 + version = "1.0.8"; 16 format = "pyproject"; 17 18 src = fetchFromGitHub { 19 owner = "bachya"; 20 repo = pname; 21 rev = version; 22 + sha256 = "sha256-5+v+TlLOgaIA8svpbgFSEWZAUVBRq3zqf8QbidKgygI="; 23 }; 24 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/simplisafe-python/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "simplisafe-python"; 19 - version = "11.0.4"; 20 format = "pyproject"; 21 disabled = pythonOlder "3.7"; 22 ··· 24 owner = "bachya"; 25 repo = pname; 26 rev = version; 27 - sha256 = "0ad0f3xghp77kg0vdns5m1lj796ysk9jrgl5k5h80imnnh9mz9b8"; 28 }; 29 30 nativeBuildInputs = [ poetry-core ];
··· 16 17 buildPythonPackage rec { 18 pname = "simplisafe-python"; 19 + version = "11.0.5"; 20 format = "pyproject"; 21 disabled = pythonOlder "3.7"; 22 ··· 24 owner = "bachya"; 25 repo = pname; 26 rev = version; 27 + sha256 = "sha256-QLxp7WrYXJDGVG/MZ+GpvzYZ8gyLwconqikgs581voI="; 28 }; 29 30 nativeBuildInputs = [ poetry-core ];
+3 -2
pkgs/development/tools/build-managers/bear/default.nix
··· 49 ./no-double-relative.patch 50 ]; 51 52 meta = with lib; { 53 description = "Tool that generates a compilation database for clang tooling"; 54 longDescription = '' ··· 60 license = licenses.gpl3Plus; 61 platforms = platforms.unix; 62 maintainers = with maintainers; [ babariviere qyliss ]; 63 - # ld: symbol(s) not found for architecture x86_64 64 - broken = stdenv.isDarwin && stdenv.isx86_64; 65 }; 66 }
··· 49 ./no-double-relative.patch 50 ]; 51 52 + # 'path' is unavailable: introduced in macOS 10.15 53 + CXXFLAGS = lib.optional (stdenv.hostPlatform.system == "x86_64-darwin") "-D_LIBCPP_DISABLE_AVAILABILITY"; 54 + 55 meta = with lib; { 56 description = "Tool that generates a compilation database for clang tooling"; 57 longDescription = '' ··· 63 license = licenses.gpl3Plus; 64 platforms = platforms.unix; 65 maintainers = with maintainers; [ babariviere qyliss ]; 66 }; 67 }
+2 -2
pkgs/development/tools/yq-go/default.nix
··· 2 3 buildGoModule rec { 4 pname = "yq-go"; 5 - version = "4.12.0"; 6 7 src = fetchFromGitHub { 8 owner = "mikefarah"; 9 repo = "yq"; 10 rev = "v${version}"; 11 - sha256 = "sha256-AyI3RwWuHH760jUCCWhlBUkYYQ553QOmjFkdnvqKBtk="; 12 }; 13 14 vendorSha256 = "sha256-u7elWOW/tz1ISM/KC1njkZmPi8AEEssZ5QtxK/+1/1I=";
··· 2 3 buildGoModule rec { 4 pname = "yq-go"; 5 + version = "4.12.1"; 6 7 src = fetchFromGitHub { 8 owner = "mikefarah"; 9 repo = "yq"; 10 rev = "v${version}"; 11 + sha256 = "sha256-3L4SM698SJvHw1eXxxxL9OehDqQ6Al1XBL2WRG49PZU="; 12 }; 13 14 vendorSha256 = "sha256-u7elWOW/tz1ISM/KC1njkZmPi8AEEssZ5QtxK/+1/1I=";
+12 -1
pkgs/os-specific/darwin/signing-utils/auto-sign-hook.sh
··· 1 - fixupOutputHooks+=('signDarwinBinariesIn $prefix') 2 3 # Uses signingUtils, see definition of autoSignDarwinBinariesHook in 4 # darwin-packages.nix ··· 14 return 0 15 fi 16 17 while IFS= read -r -d $'\0' f; do 18 signIfRequired "$f" 19 done < <(find "$dir" -type f -print0) 20 }
··· 1 + postFixupHooks+=(signDarwinBinariesInAllOutputs) 2 3 # Uses signingUtils, see definition of autoSignDarwinBinariesHook in 4 # darwin-packages.nix ··· 14 return 0 15 fi 16 17 + echo "signing $dir" 18 + 19 while IFS= read -r -d $'\0' f; do 20 signIfRequired "$f" 21 done < <(find "$dir" -type f -print0) 22 } 23 + 24 + # Apply fixup to each output. 25 + signDarwinBinariesInAllOutputs() { 26 + local output 27 + 28 + for output in $outputs; do 29 + signDarwinBinariesIn "${!output}" 30 + done 31 + }
+11 -9
pkgs/tools/graphics/waifu2x-converter-cpp/default.nix
··· 1 - { cmake, fetchFromGitHub, makeWrapper, opencv3, lib, stdenv, ocl-icd, opencl-headers 2 , cudaSupport ? false, cudatoolkit ? null 3 }: 4 ··· 13 sha256 = "0rv8bnyxz89za6gwk9gmdbaf3j7c1j52mip7h81rir288j35m84x"; 14 }; 15 16 - patchPhase = '' 17 - # https://github.com/DeadSix27/waifu2x-converter-cpp/issues/123 18 - sed -i 's:{"PNG", false},:{"PNG", true},:' src/main.cpp 19 - ''; 20 21 buildInputs = [ 22 - ocl-icd opencv3 opencl-headers 23 - ] ++ lib.optional cudaSupport cudatoolkit; 24 25 nativeBuildInputs = [ cmake makeWrapper ]; 26 27 - preFixup = '' 28 wrapProgram $out/bin/waifu2x-converter-cpp --prefix LD_LIBRARY_PATH : "${ocl-icd}/lib" 29 ''; 30 ··· 33 homepage = "https://github.com/DeadSix27/waifu2x-converter-cpp"; 34 license = lib.licenses.mit; 35 maintainers = [ lib.maintainers.xzfc ]; 36 - platforms = lib.platforms.linux; 37 }; 38 }
··· 1 + { cmake, fetchFromGitHub, makeWrapper, opencv3, lib, stdenv, ocl-icd, opencl-headers, OpenCL 2 , cudaSupport ? false, cudatoolkit ? null 3 }: 4 ··· 13 sha256 = "0rv8bnyxz89za6gwk9gmdbaf3j7c1j52mip7h81rir288j35m84x"; 14 }; 15 16 + patches = [ 17 + # Remove the hard-coded compiler on Darwin and use the one in stdenv. 18 + ./waifu2x_darwin_build.diff 19 + ]; 20 21 buildInputs = [ 22 + opencv3 23 + ] ++ lib.optional cudaSupport cudatoolkit 24 + ++ lib.optional stdenv.isDarwin OpenCL 25 + ++ lib.optionals stdenv.isLinux [ ocl-icd opencl-headers ]; 26 27 nativeBuildInputs = [ cmake makeWrapper ]; 28 29 + preFixup = lib.optionalString stdenv.isLinux '' 30 wrapProgram $out/bin/waifu2x-converter-cpp --prefix LD_LIBRARY_PATH : "${ocl-icd}/lib" 31 ''; 32 ··· 35 homepage = "https://github.com/DeadSix27/waifu2x-converter-cpp"; 36 license = lib.licenses.mit; 37 maintainers = [ lib.maintainers.xzfc ]; 38 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 39 }; 40 }
+15
pkgs/tools/graphics/waifu2x-converter-cpp/waifu2x_darwin_build.diff
···
··· 1 + diff --git a/CMakeLists.txt b/CMakeLists.txt 2 + index 8b728b5..dedf8b6 100644 3 + --- a/CMakeLists.txt 4 + +++ b/CMakeLists.txt 5 + @@ -71,10 +71,6 @@ message(STATUS "System is: ${CMAKE_SYSTEM_NAME} (${LOCAL_SYS_TYPE})") 6 + 7 + ### Get binary paths for APPLE users 8 + if(APPLE AND CMAKE_CXX_COMPILER_ID MATCHES "^(Apple)?Clang$") 9 + - set(CMAKE_C_COMPILER "/usr/local/opt/llvm/bin/clang") 10 + - set(CMAKE_CXX_COMPILER "/usr/local/opt/llvm/bin/clang++") 11 + - set(CMAKE_EXE_LINKER_FLAGS "-L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib") 12 + - set(CMAKE_SHARED_LINKER_FLAGS "-L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib") 13 + if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.0) 14 + set(FILE_SYSTEM_LIB "c++fs") 15 + endif()
+2 -2
pkgs/tools/package-management/nix-prefetch-scripts/default.nix
··· 1 { lib, stdenv, makeWrapper, buildEnv 2 - , breezy, coreutils, cvs, findutils, gawk, git, gnused, mercurial, nix, subversion 3 }: 4 5 let mkPrefetchScript = tool: src: deps: ··· 28 in rec { 29 nix-prefetch-bzr = mkPrefetchScript "bzr" ../../../build-support/fetchbzr/nix-prefetch-bzr [ breezy ]; 30 nix-prefetch-cvs = mkPrefetchScript "cvs" ../../../build-support/fetchcvs/nix-prefetch-cvs [ cvs ]; 31 - nix-prefetch-git = mkPrefetchScript "git" ../../../build-support/fetchgit/nix-prefetch-git [ coreutils findutils gawk git ]; 32 nix-prefetch-hg = mkPrefetchScript "hg" ../../../build-support/fetchhg/nix-prefetch-hg [ mercurial ]; 33 nix-prefetch-svn = mkPrefetchScript "svn" ../../../build-support/fetchsvn/nix-prefetch-svn [ subversion ]; 34
··· 1 { lib, stdenv, makeWrapper, buildEnv 2 + , breezy, coreutils, cvs, findutils, gawk, git, git-lfs, gnused, mercurial, nix, subversion 3 }: 4 5 let mkPrefetchScript = tool: src: deps: ··· 28 in rec { 29 nix-prefetch-bzr = mkPrefetchScript "bzr" ../../../build-support/fetchbzr/nix-prefetch-bzr [ breezy ]; 30 nix-prefetch-cvs = mkPrefetchScript "cvs" ../../../build-support/fetchcvs/nix-prefetch-cvs [ cvs ]; 31 + nix-prefetch-git = mkPrefetchScript "git" ../../../build-support/fetchgit/nix-prefetch-git [ coreutils findutils gawk git git-lfs ]; 32 nix-prefetch-hg = mkPrefetchScript "hg" ../../../build-support/fetchhg/nix-prefetch-hg [ mercurial ]; 33 nix-prefetch-svn = mkPrefetchScript "svn" ../../../build-support/fetchsvn/nix-prefetch-svn [ subversion ]; 34
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "exploitdb"; 5 - version = "2021-08-24"; 6 7 src = fetchFromGitHub { 8 owner = "offensive-security"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-+tmSnPICX8CoD7YBsph2k0AfEg/IhCyYMHkXyVTYaIQ="; 12 }; 13 14 installPhase = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "exploitdb"; 5 + version = "2021-08-28"; 6 7 src = fetchFromGitHub { 8 owner = "offensive-security"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-eLbRtsZYRCPh0FDecxjAt4P0mUZJaZKg6kg5/SSYP1A="; 12 }; 13 14 installPhase = ''
+12 -2
pkgs/top-level/all-packages.nix
··· 9937 openssl = openssl_1_0_2; 9938 }; 9939 9940 - waifu2x-converter-cpp = callPackage ../tools/graphics/waifu2x-converter-cpp { }; 9941 9942 wakatime = pythonPackages.callPackage ../tools/misc/wakatime { }; 9943 ··· 13343 13344 buildBazelPackage = callPackage ../build-support/build-bazel-package { }; 13345 13346 - bear = callPackage ../development/tools/build-managers/bear { }; 13347 13348 bin_replace_string = callPackage ../development/tools/misc/bin_replace_string { }; 13349 ··· 24684 pixelnuke = callPackage ../applications/graphics/pixelnuke { }; 24685 24686 pmbootstrap = python3Packages.callPackage ../tools/misc/pmbootstrap/default.nix { }; 24687 24688 slack = callPackage ../applications/networking/instant-messengers/slack { }; 24689
··· 9937 openssl = openssl_1_0_2; 9938 }; 9939 9940 + waifu2x-converter-cpp = callPackage ../tools/graphics/waifu2x-converter-cpp { 9941 + inherit (darwin.apple_sdk.frameworks) OpenCL; 9942 + }; 9943 9944 wakatime = pythonPackages.callPackage ../tools/misc/wakatime { }; 9945 ··· 13345 13346 buildBazelPackage = callPackage ../build-support/build-bazel-package { }; 13347 13348 + bear = callPackage ../development/tools/build-managers/bear { 13349 + # error: no viable constructor or deduction guide for deduction of template arguments of 'map' 13350 + stdenv = if stdenv.hostPlatform.system == "x86_64-darwin" then 13351 + llvmPackages_11.stdenv 13352 + else 13353 + stdenv; 13354 + }; 13355 13356 bin_replace_string = callPackage ../development/tools/misc/bin_replace_string { }; 13357 ··· 24692 pixelnuke = callPackage ../applications/graphics/pixelnuke { }; 24693 24694 pmbootstrap = python3Packages.callPackage ../tools/misc/pmbootstrap/default.nix { }; 24695 + 24696 + shepherd = nodePackages."@nerdwallet/shepherd"; 24697 24698 slack = callPackage ../applications/networking/instant-messengers/slack { }; 24699
+41 -9
pkgs/top-level/haskell-packages.nix
··· 6 "ghc865Binary" 7 "ghc8102Binary" 8 "ghc8102BinaryMinimal" 9 "integer-simple" 10 "native-bignum" 11 "ghcHEAD" ··· 57 minimal = true; 58 }; 59 60 ghc884 = callPackage ../development/compilers/ghc/8.8.4.nix { 61 - # aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar 62 - # Musl bindists do not exist for ghc 8.6.5, so we use 8.10.* for them 63 - bootPkgs = if stdenv.isAarch64 || stdenv.targetPlatform.isMusl then 64 packages.ghc8102BinaryMinimal 65 else 66 packages.ghc865Binary; ··· 69 llvmPackages = pkgs.llvmPackages_7; 70 }; 71 ghc8106 = callPackage ../development/compilers/ghc/8.10.6.nix { 72 - # aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar 73 - # Musl bindists do not exist for ghc 8.6.5, so we use 8.10.* for them 74 - bootPkgs = if stdenv.isAarch64 || stdenv.isAarch32 || stdenv.targetPlatform.isMusl then 75 packages.ghc8102BinaryMinimal 76 else 77 packages.ghc865Binary; ··· 79 # Need to use apple's patched xattr until 80 # https://github.com/xattr/xattr/issues/44 and 81 # https://github.com/xattr/xattr/issues/55 are solved. 82 - inherit (buildPackages.darwin) xattr; 83 buildLlvmPackages = buildPackages.llvmPackages_9; 84 llvmPackages = pkgs.llvmPackages_9; 85 }; 86 ghc901 = callPackage ../development/compilers/ghc/9.0.1.nix { 87 - # aarch64 ghc8102Binary exceeds max output size on hydra 88 - bootPkgs = if stdenv.isAarch64 || stdenv.isAarch32 then 89 packages.ghc8102BinaryMinimal 90 else 91 packages.ghc8102Binary; ··· 143 ghc8102BinaryMinimal = callPackage ../development/haskell-modules { 144 buildHaskellPackages = bh.packages.ghc8102BinaryMinimal; 145 ghc = bh.compiler.ghc8102BinaryMinimal; 146 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; 147 packageSetConfig = bootstrapPackageSet; 148 };
··· 6 "ghc865Binary" 7 "ghc8102Binary" 8 "ghc8102BinaryMinimal" 9 + "ghc8105Binary" 10 + "ghc8105BinaryMinimal" 11 "integer-simple" 12 "native-bignum" 13 "ghcHEAD" ··· 59 minimal = true; 60 }; 61 62 + ghc8105Binary = callPackage ../development/compilers/ghc/8.10.5-binary.nix { 63 + llvmPackages = pkgs.llvmPackages_11; 64 + }; 65 + 66 + ghc8105BinaryMinimal = callPackage ../development/compilers/ghc/8.10.5-binary.nix { 67 + llvmPackages = pkgs.llvmPackages_11; 68 + minimal = true; 69 + }; 70 + 71 ghc884 = callPackage ../development/compilers/ghc/8.8.4.nix { 72 + # the oldest ghc with aarch64-darwin support is 8.10.5 73 + bootPkgs = if stdenv.isDarwin && stdenv.isAarch64 then 74 + packages.ghc8105BinaryMinimal 75 + # aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar 76 + # Musl bindists do not exist for ghc 8.6.5, so we use 8.10.* for them 77 + else if stdenv.isAarch64 || stdenv.targetPlatform.isMusl then 78 packages.ghc8102BinaryMinimal 79 else 80 packages.ghc865Binary; ··· 83 llvmPackages = pkgs.llvmPackages_7; 84 }; 85 ghc8106 = callPackage ../development/compilers/ghc/8.10.6.nix { 86 + # the oldest ghc with aarch64-darwin support is 8.10.5 87 + bootPkgs = if stdenv.isDarwin && stdenv.isAarch64 then 88 + packages.ghc8105BinaryMinimal 89 + # aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar 90 + # Musl bindists do not exist for ghc 8.6.5, so we use 8.10.* for them 91 + else if stdenv.isAarch64 || stdenv.isAarch32 || stdenv.targetPlatform.isMusl then 92 packages.ghc8102BinaryMinimal 93 else 94 packages.ghc865Binary; ··· 96 # Need to use apple's patched xattr until 97 # https://github.com/xattr/xattr/issues/44 and 98 # https://github.com/xattr/xattr/issues/55 are solved. 99 + inherit (buildPackages.darwin) xattr autoSignDarwinBinariesHook; 100 buildLlvmPackages = buildPackages.llvmPackages_9; 101 llvmPackages = pkgs.llvmPackages_9; 102 }; 103 ghc901 = callPackage ../development/compilers/ghc/9.0.1.nix { 104 + # the oldest ghc with aarch64-darwin support is 8.10.5 105 + bootPkgs = if stdenv.isDarwin && stdenv.isAarch64 then 106 + packages.ghc8105BinaryMinimal 107 + # aarch64 ghc8102Binary exceeds max output size on hydra 108 + else if stdenv.isAarch64 || stdenv.isAarch32 then 109 packages.ghc8102BinaryMinimal 110 else 111 packages.ghc8102Binary; ··· 163 ghc8102BinaryMinimal = callPackage ../development/haskell-modules { 164 buildHaskellPackages = bh.packages.ghc8102BinaryMinimal; 165 ghc = bh.compiler.ghc8102BinaryMinimal; 166 + compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; 167 + packageSetConfig = bootstrapPackageSet; 168 + }; 169 + ghc8105Binary = callPackage ../development/haskell-modules { 170 + buildHaskellPackages = bh.packages.ghc8105Binary; 171 + ghc = bh.compiler.ghc8105Binary; 172 + compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; 173 + packageSetConfig = bootstrapPackageSet; 174 + }; 175 + ghc8105BinaryMinimal = callPackage ../development/haskell-modules { 176 + buildHaskellPackages = bh.packages.ghc8105BinaryMinimal; 177 + ghc = bh.compiler.ghc8105BinaryMinimal; 178 compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.10.x.nix { }; 179 packageSetConfig = bootstrapPackageSet; 180 };