Merge branch 'master' into staging-next

; Conflicts:
; pkgs/top-level/python-packages.nix

+3050 -1710
+12
maintainers/maintainer-list.nix
··· 6303 githubId = 1843676; 6304 name = "Jonathan Reeve"; 6305 }; 6306 jonringer = { 6307 email = "jonringer117@gmail.com"; 6308 matrix = "@jonringer:matrix.org"; ··· 7847 github = "magnetophon"; 7848 githubId = 7645711; 7849 name = "Bart Brouns"; 7850 }; 7851 mahe = { 7852 email = "matthias.mh.herrmann@gmail.com";
··· 6303 githubId = 1843676; 6304 name = "Jonathan Reeve"; 6305 }; 6306 + jonnybolton = { 6307 + email = "jonnybolton@gmail.com"; 6308 + github = "jonnybolton"; 6309 + githubId = 8580434; 6310 + name = "Jonny Bolton"; 6311 + }; 6312 jonringer = { 6313 email = "jonringer117@gmail.com"; 6314 matrix = "@jonringer:matrix.org"; ··· 7853 github = "magnetophon"; 7854 githubId = 7645711; 7855 name = "Bart Brouns"; 7856 + }; 7857 + magnouvean = { 7858 + email = "rg0zjsyh@anonaddy.me"; 7859 + github = "magnouvean"; 7860 + githubId = 85435692; 7861 + name = "Maxwell Berg"; 7862 }; 7863 mahe = { 7864 email = "matthias.mh.herrmann@gmail.com";
+12
nixos/doc/manual/from_md/release-notes/rl-2211.section.xml
··· 36 PHP now defaults to PHP 8.1, updated from 8.0. 37 </para> 38 </listitem> 39 </itemizedlist> 40 </section> 41 <section xml:id="sec-release-22.11-new-services">
··· 36 PHP now defaults to PHP 8.1, updated from 8.0. 37 </para> 38 </listitem> 39 + <listitem> 40 + <para> 41 + <literal>hardware.nvidia</literal> has a new option 42 + <literal>open</literal> that can be used to opt in the 43 + opensource version of NVIDIA kernel driver. Note that the 44 + driver’s support for GeForce and Workstation GPUs is still 45 + alpha quality, see 46 + <link xlink:href="https://developer.nvidia.com/blog/nvidia-releases-open-source-gpu-kernel-modules/">NVIDIA 47 + Releases Open-Source GPU Kernel Modules</link> for the 48 + official announcement. 49 + </para> 50 + </listitem> 51 </itemizedlist> 52 </section> 53 <section xml:id="sec-release-22.11-new-services">
+2
nixos/doc/manual/release-notes/rl-2211.section.md
··· 19 20 - PHP now defaults to PHP 8.1, updated from 8.0. 21 22 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. --> 23 24 ## New Services {#sec-release-22.11-new-services}
··· 19 20 - PHP now defaults to PHP 8.1, updated from 8.0. 21 22 + - `hardware.nvidia` has a new option `open` that can be used to opt in the opensource version of NVIDIA kernel driver. Note that the driver's support for GeForce and Workstation GPUs is still alpha quality, see [NVIDIA Releases Open-Source GPU Kernel Modules](https://developer.nvidia.com/blog/nvidia-releases-open-source-gpu-kernel-modules/) for the official announcement. 23 + 24 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. --> 25 26 ## New Services {#sec-release-22.11-new-services}
+1
nixos/lib/test-driver/setup.py
··· 4 name="nixos-test-driver", 5 version='1.1', 6 packages=find_packages(), 7 entry_points={ 8 "console_scripts": [ 9 "nixos-test-driver=test_driver:main",
··· 4 name="nixos-test-driver", 5 version='1.1', 6 packages=find_packages(), 7 + package_data={"test_driver": ["py.typed"]}, 8 entry_points={ 9 "console_scripts": [ 10 "nixos-test-driver=test_driver:main",
+1 -3
nixos/lib/testing-python.nix
··· 119 { 120 inherit testName; 121 nativeBuildInputs = [ makeWrapper mypy ]; 122 testScript = testScript'; 123 preferLocalBuild = true; 124 passthru = passthru // { ··· 138 echo "${builtins.toString vlanNames}" >> testScriptWithTypes 139 echo -n "$testScript" >> testScriptWithTypes 140 141 - # set pythonpath so mypy knows where to find the imports. this requires the py.typed file. 142 - export PYTHONPATH='${./test-driver}' 143 mypy --no-implicit-optional \ 144 --pretty \ 145 --no-color-output \ 146 testScriptWithTypes 147 - unset PYTHONPATH 148 ''} 149 150 echo -n "$testScript" >> $out/test-script
··· 119 { 120 inherit testName; 121 nativeBuildInputs = [ makeWrapper mypy ]; 122 + buildInputs = [ testDriver ]; 123 testScript = testScript'; 124 preferLocalBuild = true; 125 passthru = passthru // { ··· 139 echo "${builtins.toString vlanNames}" >> testScriptWithTypes 140 echo -n "$testScript" >> testScriptWithTypes 141 142 mypy --no-implicit-optional \ 143 --pretty \ 144 --no-color-output \ 145 testScriptWithTypes 146 ''} 147 148 echo -n "$testScript" >> $out/test-script
+17 -2
nixos/modules/hardware/video/nvidia.nix
··· 183 ''; 184 example = literalExpression "config.boot.kernelPackages.nvidiaPackages.legacy_340"; 185 }; 186 }; 187 188 config = let ··· 230 builtins.pathExists (cfg.package.out + "/lib/systemd/system-sleep/nvidia") 231 ); 232 message = "Required files for driver based power management don't exist."; 233 } 234 ]; 235 ··· 364 ++ optional (nvidia_x11.persistenced != null && config.virtualisation.docker.enableNvidia) 365 "L+ /run/nvidia-docker/extras/bin/nvidia-persistenced - - - - ${nvidia_x11.persistenced}/origBin/nvidia-persistenced"; 366 367 - boot.extraModulePackages = [ nvidia_x11.bin ]; 368 369 # nvidia-uvm is required by CUDA applications. 370 boot.kernelModules = [ "nvidia-uvm" ] ++ ··· 372 373 # If requested enable modesetting via kernel parameter. 374 boot.kernelParams = optional (offloadCfg.enable || cfg.modesetting.enable) "nvidia-drm.modeset=1" 375 - ++ optional cfg.powerManagement.enable "nvidia.NVreg_PreserveVideoMemoryAllocations=1"; 376 377 services.udev.extraRules = 378 ''
··· 183 ''; 184 example = literalExpression "config.boot.kernelPackages.nvidiaPackages.legacy_340"; 185 }; 186 + 187 + hardware.nvidia.open = lib.mkOption { 188 + type = lib.types.bool; 189 + default = false; 190 + description = '' 191 + Whether to use the open source kernel module 192 + ''; 193 + }; 194 }; 195 196 config = let ··· 238 builtins.pathExists (cfg.package.out + "/lib/systemd/system-sleep/nvidia") 239 ); 240 message = "Required files for driver based power management don't exist."; 241 + } 242 + 243 + { 244 + assertion = cfg.open -> (cfg.package ? open && cfg.package ? firmware); 245 + message = "This version of NVIDIA driver does not provide a corresponding opensource kernel driver"; 246 } 247 ]; 248 ··· 377 ++ optional (nvidia_x11.persistenced != null && config.virtualisation.docker.enableNvidia) 378 "L+ /run/nvidia-docker/extras/bin/nvidia-persistenced - - - - ${nvidia_x11.persistenced}/origBin/nvidia-persistenced"; 379 380 + boot.extraModulePackages = if cfg.open then [ nvidia_x11.open ] else [ nvidia_x11.bin ]; 381 + hardware.firmware = lib.optional cfg.open nvidia_x11.firmware; 382 383 # nvidia-uvm is required by CUDA applications. 384 boot.kernelModules = [ "nvidia-uvm" ] ++ ··· 386 387 # If requested enable modesetting via kernel parameter. 388 boot.kernelParams = optional (offloadCfg.enable || cfg.modesetting.enable) "nvidia-drm.modeset=1" 389 + ++ optional cfg.powerManagement.enable "nvidia.NVreg_PreserveVideoMemoryAllocations=1" 390 + ++ optional cfg.open "nvidia.NVreg_OpenRmEnableUnsupportedGpus=1"; 391 392 services.udev.extraRules = 393 ''
+1 -1
nixos/tests/acme.nix
··· 578 webserver.wait_for_unit(f"acme-finished-{test_domain}.target") 579 wait_for_server() 580 check_connection(client, test_domain) 581 - rc, _ = client.execute( 582 f"openssl s_client -CAfile /tmp/ca.crt -connect {test_alias}:443" 583 " </dev/null 2>/dev/null | openssl x509 -noout -text" 584 f" | grep DNS: | grep {test_alias}"
··· 578 webserver.wait_for_unit(f"acme-finished-{test_domain}.target") 579 wait_for_server() 580 check_connection(client, test_domain) 581 + rc, _s = client.execute( 582 f"openssl s_client -CAfile /tmp/ca.crt -connect {test_alias}:443" 583 " </dev/null 2>/dev/null | openssl x509 -noout -text" 584 f" | grep DNS: | grep {test_alias}"
+1 -1
nixos/tests/convos.nix
··· 23 24 testScript = '' 25 machine.wait_for_unit("convos") 26 - machine.wait_for_open_port(port) 27 machine.succeed("journalctl -u convos | grep -q 'Listening at.*${toString port}'") 28 machine.succeed("curl -f http://localhost:${toString port}/") 29 '';
··· 23 24 testScript = '' 25 machine.wait_for_unit("convos") 26 + machine.wait_for_open_port(${toString port}) 27 machine.succeed("journalctl -u convos | grep -q 'Listening at.*${toString port}'") 28 machine.succeed("curl -f http://localhost:${toString port}/") 29 '';
+1
nixos/tests/fcitx/default.nix
··· 5 # copy_from_host works only for store paths 6 rec { 7 name = "fcitx"; 8 nodes.machine = 9 { 10 pkgs,
··· 5 # copy_from_host works only for store paths 6 rec { 7 name = "fcitx"; 8 + meta.broken = true; # takes hours to time out since October 2021 9 nodes.machine = 10 { 11 pkgs,
+16 -18
pkgs/applications/editors/rstudio/default.nix
··· 39 40 let 41 pname = "RStudio"; 42 - version = "1.4.1717"; 43 - RSTUDIO_VERSION_MAJOR = lib.versions.major version; 44 - RSTUDIO_VERSION_MINOR = lib.versions.minor version; 45 - RSTUDIO_VERSION_PATCH = lib.versions.patch version; 46 47 src = fetchFromGitHub { 48 owner = "rstudio"; 49 repo = "rstudio"; 50 rev = "v${version}"; 51 - sha256 = "sha256-9c1bNsf8kJjpcZ2cMV/pPNtXQkFOntX29a1cdnXpllE="; 52 }; 53 54 mathJaxSrc = fetchurl { ··· 59 rsconnectSrc = fetchFromGitHub { 60 owner = "rstudio"; 61 repo = "rsconnect"; 62 - rev = "f5854bb71464f6e3017da9855f058fe3d5b32efd"; 63 sha256 = "sha256-ULyWdSgGPSAwMt0t4QPuzeUE6Bo6IJh+5BMgW1bFN+Y="; 64 }; 65 ··· 74 in 75 (if server then stdenv.mkDerivation else mkDerivation) 76 (rec { 77 - inherit pname version src RSTUDIO_VERSION_MAJOR RSTUDIO_VERSION_MINOR RSTUDIO_VERSION_PATCH; 78 79 nativeBuildInputs = [ 80 cmake ··· 114 "-DRSTUDIO_USE_SYSTEM_SOCI=ON" 115 "-DRSTUDIO_USE_SYSTEM_BOOST=ON" 116 "-DRSTUDIO_USE_SYSTEM_YAML_CPP=ON" 117 "-DPANDOC_VERSION=${pandoc.version}" 118 "-DCMAKE_INSTALL_PREFIX=${placeholder "out"}/lib/rstudio" 119 ] ++ lib.optional (!server) [ ··· 124 patches = [ 125 ./r-location.patch 126 ./clang-location.patch 127 - # postFetch doesn't work with this | error: unexpected end-of-file 128 - # replacing /usr/bin/node is done in postPatch 129 - # https://src.fedoraproject.org/rpms/rstudio/tree/rawhide 130 - (fetchpatch { 131 - name = "system-node.patch"; 132 - url = "https://src.fedoraproject.org/rpms/rstudio/raw/5bda2e290c9e72305582f2011040938d3e356906/f/0004-use-system-node.patch"; 133 - sha256 = "sha256-P1Y07RB/ceFNa749nyBUWSE41eiiZgt43zVcmahvfZM="; 134 - }) 135 ]; 136 137 postPatch = '' ··· 141 --replace 'SOCI_LIBRARY_DIR "/usr/lib"' 'SOCI_LIBRARY_DIR "${soci}/lib"' 142 143 substituteInPlace src/gwt/build.xml \ 144 - --replace '/usr/bin/node' '${nodejs}/bin/node' 145 146 substituteInPlace src/cpp/core/libclang/LibClang.cpp \ 147 --replace '@libclang@' ${llvmPackages.libclang.lib} \ 148 --replace '@libclang.so@' ${llvmPackages.libclang.lib}/lib/libclang.so 149 150 - substituteInPlace src/cpp/session/include/session/SessionConstants.hpp \ 151 - --replace "bin/pandoc" "${pandoc}/bin/pandoc" 152 ''; 153 154 hunspellDictionaries = with lib; filter isDerivation (unique (attrValues hunspellDicts)); ··· 197 for f in .gitignore .Rbuildignore LICENSE README; do 198 find . -name $f -delete 199 done 200 rm -r $out/lib/rstudio/{INSTALL,COPYING,NOTICE,README.md,SOURCE,VERSION} 201 rm -r $out/lib/rstudio/bin/{pandoc/pandoc,pandoc} 202 '';
··· 39 40 let 41 pname = "RStudio"; 42 + version = "2022.02.3+492"; 43 + RSTUDIO_VERSION_MAJOR = "2022"; 44 + RSTUDIO_VERSION_MINOR = "02"; 45 + RSTUDIO_VERSION_PATCH = "3"; 46 + RSTUDIO_VERSION_SUFFIX = "+492"; 47 48 src = fetchFromGitHub { 49 owner = "rstudio"; 50 repo = "rstudio"; 51 rev = "v${version}"; 52 + sha256 = "1pgbk5rpy47h9ihdrplbfhfc49hrc6242j9099bclq7rqif049wi"; 53 }; 54 55 mathJaxSrc = fetchurl { ··· 60 rsconnectSrc = fetchFromGitHub { 61 owner = "rstudio"; 62 repo = "rsconnect"; 63 + rev = "e287b586e7da03105de3faa8774c63f08984eb3c"; 64 sha256 = "sha256-ULyWdSgGPSAwMt0t4QPuzeUE6Bo6IJh+5BMgW1bFN+Y="; 65 }; 66 ··· 75 in 76 (if server then stdenv.mkDerivation else mkDerivation) 77 (rec { 78 + inherit pname version src RSTUDIO_VERSION_MAJOR RSTUDIO_VERSION_MINOR RSTUDIO_VERSION_PATCH RSTUDIO_VERSION_SUFFIX; 79 80 nativeBuildInputs = [ 81 cmake ··· 115 "-DRSTUDIO_USE_SYSTEM_SOCI=ON" 116 "-DRSTUDIO_USE_SYSTEM_BOOST=ON" 117 "-DRSTUDIO_USE_SYSTEM_YAML_CPP=ON" 118 + "-DQUARTO_ENABLED=FALSE" 119 "-DPANDOC_VERSION=${pandoc.version}" 120 "-DCMAKE_INSTALL_PREFIX=${placeholder "out"}/lib/rstudio" 121 ] ++ lib.optional (!server) [ ··· 126 patches = [ 127 ./r-location.patch 128 ./clang-location.patch 129 + ./use-system-node.patch 130 + ./fix-resources-path.patch 131 + ./pandoc-nix-path.patch 132 ]; 133 134 postPatch = '' ··· 138 --replace 'SOCI_LIBRARY_DIR "/usr/lib"' 'SOCI_LIBRARY_DIR "${soci}/lib"' 139 140 substituteInPlace src/gwt/build.xml \ 141 + --replace '@node@' ${nodejs} 142 143 substituteInPlace src/cpp/core/libclang/LibClang.cpp \ 144 --replace '@libclang@' ${llvmPackages.libclang.lib} \ 145 --replace '@libclang.so@' ${llvmPackages.libclang.lib}/lib/libclang.so 146 147 + substituteInPlace src/cpp/session/include/session/SessionConstants.hpp \ 148 + --replace '@pandoc@' ${pandoc}/bin/pandoc 149 ''; 150 151 hunspellDictionaries = with lib; filter isDerivation (unique (attrValues hunspellDicts)); ··· 194 for f in .gitignore .Rbuildignore LICENSE README; do 195 find . -name $f -delete 196 done 197 + 198 rm -r $out/lib/rstudio/{INSTALL,COPYING,NOTICE,README.md,SOURCE,VERSION} 199 rm -r $out/lib/rstudio/bin/{pandoc/pandoc,pandoc} 200 '';
+19
pkgs/applications/editors/rstudio/fix-resources-path.patch
···
··· 1 + --- a/src/cpp/desktop/DesktopOptions.cpp 2 + +++ b/src/cpp/desktop/DesktopOptions.cpp 3 + @@ -499,15 +499,9 @@ 4 + { 5 + if (resourcesPath_.isEmpty()) 6 + { 7 + -#ifdef RSTUDIO_PACKAGE_BUILD 8 + // release configuration: the 'resources' folder is 9 + // part of the supporting files folder 10 + - resourcesPath_ = supportingFilePath().completePath("resources"); 11 + -#else 12 + - // developer configuration: the 'resources' folder is 13 + - // a sibling of the RStudio executable 14 + - resourcesPath_ = scriptsPath().completePath("resources"); 15 + -#endif 16 + + resourcesPath_ = supportingFilePath().completePath("resources"); 17 + } 18 + 19 + return resourcesPath_;
+37 -35
pkgs/applications/editors/rstudio/package.json
··· 5 "license": "agpl-3.0", 6 "dependencies": { 7 "@types/ace": "^0.0.43", 8 - "@types/clipboard": "^2.0.1", 9 "@types/diff-match-patch": "^1.0.32", 10 - "@types/js-yaml": "^3.12.3", 11 "@types/lodash.debounce": "^4.0.6", 12 "@types/lodash.uniqby": "^4.7.6", 13 "@types/orderedmap": "^1.0.0", 14 - "@types/prosemirror-commands": "^1.0.3", 15 - "@types/prosemirror-dev-tools": "^2.1.0", 16 - "@types/prosemirror-dropcursor": "^1.0.0", 17 - "@types/prosemirror-gapcursor": "^1.0.1", 18 - "@types/prosemirror-history": "^1.0.1", 19 - "@types/prosemirror-inputrules": "^1.0.3", 20 - "@types/prosemirror-keymap": "^1.0.3", 21 - "@types/prosemirror-model": "^1.7.2", 22 - "@types/prosemirror-schema-list": "^1.0.1", 23 - "@types/prosemirror-state": "^1.2.5", 24 "@types/prosemirror-tables": "^0.9.1", 25 - "@types/prosemirror-transform": "^1.1.1", 26 - "@types/react": "^16.9.32", 27 - "@types/react-dom": "^16.9.6", 28 - "@types/react-window": "^1.8.2", 29 - "@types/zenscroll": "^4.0.0", 30 - "biblatex-csl-converter": "^1.9.1", 31 - "clipboard": "^2.0.6", 32 - "diff-match-patch": "^1.0.4", 33 - "fuse.js": "^6.0.4", 34 - "js-yaml": "^3.13.1", 35 "lodash.debounce": "^4.0.8", 36 "lodash.uniqby": "^4.7.0", 37 "orderedmap": "^1.0.0", 38 "prosemirror-changeset": "^2.1.2", 39 - "prosemirror-commands": "^1.1.4", 40 "prosemirror-dev-tools": "^2.1.1", 41 - "prosemirror-dropcursor": "^1.3.2", 42 "prosemirror-gapcursor": "^1.1.5", 43 - "prosemirror-history": "^1.1.3", 44 - "prosemirror-inputrules": "^1.1.2", 45 "prosemirror-keymap": "^1.1.4", 46 - "prosemirror-model": "^1.11.0", 47 - "prosemirror-schema-list": "^1.1.4", 48 - "prosemirror-state": "^1.3.3", 49 "prosemirror-tables": "^1.1.1", 50 - "prosemirror-transform": "^1.2.8", 51 "prosemirror-utils": "^0.9.6", 52 - "prosemirror-view": "^1.15.6", 53 - "react": "^16.13.1", 54 - "react-dom": "^16.13.1", 55 - "react-window": "^1.8.5", 56 - "sentence-splitter": "^3.2.0", 57 "thenby": "^1.3.3", 58 "tlite": "^0.1.9", 59 "typescript": "3.8.3", 60 "zenscroll": "^4.0.2" 61 },
··· 5 "license": "agpl-3.0", 6 "dependencies": { 7 "@types/ace": "^0.0.43", 8 + "@types/clipboard": "^2.0.7", 9 "@types/diff-match-patch": "^1.0.32", 10 + "@types/js-yaml": "^4.0.3", 11 "@types/lodash.debounce": "^4.0.6", 12 + "@types/lodash.orderby": "^4.6.6", 13 "@types/lodash.uniqby": "^4.7.6", 14 "@types/orderedmap": "^1.0.0", 15 + "@types/pinyin": "^2.10.0", 16 + "@types/prosemirror-commands": "^1.0.4", 17 + "@types/prosemirror-dropcursor": "^1.0.3", 18 + "@types/prosemirror-gapcursor": "^1.0.4", 19 + "@types/prosemirror-history": "^1.0.3", 20 + "@types/prosemirror-inputrules": "^1.0.4", 21 + "@types/prosemirror-keymap": "^1.0.4", 22 + "@types/prosemirror-schema-list": "^1.0.3", 23 "@types/prosemirror-tables": "^0.9.1", 24 + "@types/react": "^17.0.20", 25 + "@types/react-dom": "^17.0.9", 26 + "@types/react-window": "^1.8.5", 27 + "@types/transliteration": "^1.6.6", 28 + "@types/zenscroll": "^4.0.1", 29 + "biblatex-csl-converter": "^2.0.2", 30 + "clipboard": "^2.0.8", 31 + "diff-match-patch": "^1.0.5", 32 + "fuse.js": "^6.4.6", 33 + "js-yaml": "^4.1.0", 34 "lodash.debounce": "^4.0.8", 35 + "lodash.orderby": "^4.6.0", 36 "lodash.uniqby": "^4.7.0", 37 "orderedmap": "^1.0.0", 38 + "pinyin": "^2.10.2", 39 "prosemirror-changeset": "^2.1.2", 40 + "prosemirror-commands": "^1.1.10", 41 "prosemirror-dev-tools": "^2.1.1", 42 + "prosemirror-dropcursor": "^1.3.5", 43 "prosemirror-gapcursor": "^1.1.5", 44 + "prosemirror-history": "^1.2.0", 45 + "prosemirror-inputrules": "^1.1.3", 46 "prosemirror-keymap": "^1.1.4", 47 + "prosemirror-model": "^1.14.3", 48 + "prosemirror-schema-list": "^1.1.5", 49 + "prosemirror-state": "^1.3.4", 50 "prosemirror-tables": "^1.1.1", 51 + "prosemirror-transform": "^1.3.2", 52 "prosemirror-utils": "^0.9.6", 53 + "prosemirror-view": "^1.20.1", 54 + "react": "^17.0.2", 55 + "react-dom": "^17.0.2", 56 + "react-window": "^1.8.6", 57 + "sentence-splitter": "^3.2.2", 58 "thenby": "^1.3.3", 59 "tlite": "^0.1.9", 60 + "transliteration": "^2.2.0", 61 "typescript": "3.8.3", 62 "zenscroll": "^4.0.2" 63 },
+11
pkgs/applications/editors/rstudio/pandoc-nix-path.patch
···
··· 1 + --- a/src/cpp/session/include/session/SessionConstants.hpp 2 + +++ b/src/cpp/session/include/session/SessionConstants.hpp 3 + @@ -140,7 +140,7 @@ 4 + #ifdef QUARTO_ENABLED 5 + # define kDefaultPandocPath "bin/quarto/bin" 6 + #else 7 + -# define kDefaultPandocPath "bin/pandoc" 8 + +# define kDefaultPandocPath "@pandoc@" 9 + #endif 10 + 11 + #define kDefaultQuartoPath "bin/quarto"
+28
pkgs/applications/editors/rstudio/use-system-node.patch
···
··· 1 + --- a/src/gwt/build.xml 2 + +++ b/src/gwt/build.xml 3 + @@ -84,23 +84,7 @@ 4 + </target> 5 + 6 + <!-- panmirror typescript library --> 7 + - <!-- ensure version matches RSTUDIO_NODE_VERSION --> 8 + - <property name="node.version" value="14.17.5"/> 9 + - <property name="node.dir" value="../../dependencies/common/node/${node.version}"/> 10 + - <condition property="node.bin" value="../../../${node.dir}/bin/node"> 11 + - <not> 12 + - <os family="windows" /> 13 + - </not> 14 + - </condition> 15 + - <condition property="node.bin" value="${node.dir}/node.exe"> 16 + - <os family="windows" /> 17 + - </condition> 18 + - 19 + - <!-- use node from /opt/rstudio-tools if installed (typical for Docker) --> 20 + - <available 21 + - property="node.bin" 22 + - value="/opt/rstudio-tools/dependencies/common/node/${node.version}/bin/node" 23 + - file="/opt/rstudio-tools/dependencies/common/node/${node.version}/bin/node"/> 24 + + <property name="node.bin" value="@node@/bin/node"/> 25 + 26 + <property name="panmirror.dir" value="./panmirror/src/editor"/> 27 + <property name="panmirror.build.dir" value="./www/js/panmirror"/> 28 +
+639 -274
pkgs/applications/editors/rstudio/yarn.lock
··· 10 "@babel/highlight" "^7.8.3" 11 12 "@babel/helper-module-imports@^7.0.0": 13 - version "7.8.3" 14 - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" 15 - integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== 16 dependencies: 17 - "@babel/types" "^7.8.3" 18 19 "@babel/highlight@^7.8.3": 20 version "7.8.3" ··· 39 dependencies: 40 regenerator-runtime "^0.13.2" 41 42 - "@babel/types@^7.8.3": 43 - version "7.8.6" 44 - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.6.tgz#629ecc33c2557fcde7126e58053127afdb3e6d01" 45 - integrity sha512-wqz7pgWMIrht3gquyEFPVXeXCti72Rm8ep9b5tQKz9Yg9LzJA3HxosF1SB3Kc81KD1A3XBkkVYtJvCKS2Z/QrA== 46 dependencies: 47 - esutils "^2.0.2" 48 - lodash "^4.17.13" 49 to-fast-properties "^2.0.0" 50 51 "@emotion/babel-utils@^0.6.4": ··· 102 resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.8.2.tgz#576ff7fb1230185b619a75d258cbc98f0867a8dc" 103 integrity sha512-rLu3wcBWH4P5q1CGoSSH/i9hrXs7SlbRLkoq9IGuoPYNGQvDJ3pt/wmOM+XgYjIDRMVIdkUWt0RsfzF50JfnCw== 104 105 - "@textlint/ast-node-types@^4.2.5": 106 - version "4.3.4" 107 - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.3.4.tgz#f6596c45c32c85dc06915c3077bb7686033efd32" 108 - integrity sha512-Grq+vJuNH7HCa278eFeiqJvowrD+onMCoG2ctLyoN+fXYIQGIr1/8fo8AcIg+VM16Kga+N6Y1UWNOWPd8j1nFg== 109 110 "@types/ace@^0.0.43": 111 version "0.0.43" 112 resolved "https://registry.yarnpkg.com/@types/ace/-/ace-0.0.43.tgz#9f0916174b6060dabbccd36ba4868ea769a1c633" 113 integrity sha512-eQdX8AQ7CfSHym07MZMBQ8FKUj9AZ2Wcc26W5Ct8J4KOMjFY6SFUaf2YA8YHBut0Fwl//2kZ+0GLZNp+NQNRIA== 114 115 - "@types/clipboard@^2.0.1": 116 - version "2.0.1" 117 - resolved "https://registry.yarnpkg.com/@types/clipboard/-/clipboard-2.0.1.tgz#75a74086c293d75b12bc93ff13bc7797fef05a40" 118 - integrity sha512-gJJX9Jjdt3bIAePQRRjYWG20dIhAgEqonguyHxXuqALxsoDsDLimihqrSg8fXgVTJ4KZCzkfglKtwsh/8dLfbA== 119 120 "@types/diff-match-patch@^1.0.32": 121 version "1.0.32" 122 resolved "https://registry.yarnpkg.com/@types/diff-match-patch/-/diff-match-patch-1.0.32.tgz#d9c3b8c914aa8229485351db4865328337a3d09f" 123 integrity sha512-bPYT5ECFiblzsVzyURaNhljBH2Gh1t9LowgUwciMrNAhFewLkHT2H0Mto07Y4/3KCOGZHRQll3CTtQZ0X11D/A== 124 125 - "@types/js-yaml@^3.12.3": 126 - version "3.12.3" 127 - resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-3.12.3.tgz#abf383c5b639d0aa8b8c4a420d6a85f703357d6c" 128 - integrity sha512-otRe77JNNWzoVGLKw8TCspKswRoQToys4tuL6XYVBFxjgeM0RUrx7m3jkaTdxILxeGry3zM8mGYkGXMeQ02guA== 129 130 "@types/lodash.debounce@^4.0.6": 131 version "4.0.6" 132 resolved "https://registry.yarnpkg.com/@types/lodash.debounce/-/lodash.debounce-4.0.6.tgz#c5a2326cd3efc46566c47e4c0aa248dc0ee57d60" 133 integrity sha512-4WTmnnhCfDvvuLMaF3KV4Qfki93KebocUF45msxhYyjMttZDQYzHkO639ohhk8+oco2cluAFL3t5+Jn4mleylQ== 134 dependencies: 135 "@types/lodash" "*" 136 ··· 161 resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 162 integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 163 164 "@types/prop-types@*": 165 version "15.7.3" 166 resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 167 integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== 168 169 - "@types/prosemirror-commands@*", "@types/prosemirror-commands@^1.0.3": 170 version "1.0.3" 171 resolved "https://registry.yarnpkg.com/@types/prosemirror-commands/-/prosemirror-commands-1.0.3.tgz#e9fa5653cffd1c75c260594cf3ec5244c9004dbf" 172 integrity sha512-AjFCJqBvAhQ4gOzXPgUcnEZwu4jd7se7ani3dYAv8p4L+cWEPD6Pshrpp5uJDI5/pzvNXLWQ/4c2Qk4h9IML1w== ··· 175 "@types/prosemirror-state" "*" 176 "@types/prosemirror-view" "*" 177 178 - "@types/prosemirror-dev-tools@^2.1.0": 179 - version "2.1.0" 180 - resolved "https://registry.yarnpkg.com/@types/prosemirror-dev-tools/-/prosemirror-dev-tools-2.1.0.tgz#91e2ef4f36129f5155f924296e306de187e86bdb" 181 - integrity sha512-OhnSaC4yrrEMLPRUkEWcHAIPVqgKlLkE4kISqL3cHeAYxASouSPvPMLqhBIbWkGwaozy43DjjVC1OXkxTo+y5Q== 182 dependencies: 183 "@types/prosemirror-state" "*" 184 "@types/prosemirror-view" "*" 185 186 - "@types/prosemirror-dropcursor@^1.0.0": 187 - version "1.0.0" 188 - resolved "https://registry.yarnpkg.com/@types/prosemirror-dropcursor/-/prosemirror-dropcursor-1.0.0.tgz#2df872bc6431a9f06bc1a4a0eac7c2dc527e7f12" 189 - integrity sha512-S2ndHt94M64avSqjBcgIblaF3YeC3RfcmpY9/WIdfqU7aoJxuOh4RJk5emdmQPHZT1wbczMHFmFSsRqgErK0EQ== 190 dependencies: 191 "@types/prosemirror-state" "*" 192 193 - "@types/prosemirror-gapcursor@^1.0.1": 194 - version "1.0.1" 195 - resolved "https://registry.yarnpkg.com/@types/prosemirror-gapcursor/-/prosemirror-gapcursor-1.0.1.tgz#56a6274ef39f62c339adcc64305294b800211a5e" 196 - integrity sha512-ruA7FK9NJv+bn5s55SZYFf9SwaN3wk/MkBvqRmhIqIHvowTTa7nzIGWbUdWZMga1DDTk+GrwdcQaEHunAFjFsQ== 197 dependencies: 198 "@types/prosemirror-state" "*" 199 200 - "@types/prosemirror-history@^1.0.1": 201 - version "1.0.1" 202 - resolved "https://registry.yarnpkg.com/@types/prosemirror-history/-/prosemirror-history-1.0.1.tgz#b8d7595f73788b63fc9f2b57a763ba8375abfe87" 203 - integrity sha512-BYyPJlWDo3VEnWS5X2DCHXrrAKEjdbCe1DUjGL6R/8hmwMFe3iMJGYdBkOXU1FfkTpw7Z+PlwY/pMyeelVydmg== 204 dependencies: 205 "@types/prosemirror-model" "*" 206 "@types/prosemirror-state" "*" 207 208 - "@types/prosemirror-inputrules@^1.0.3": 209 - version "1.0.3" 210 - resolved "https://registry.yarnpkg.com/@types/prosemirror-inputrules/-/prosemirror-inputrules-1.0.3.tgz#3f8f07921f692b6c7e4781fa426aee3e76b9018c" 211 - integrity sha512-cxMkCcu/di8//68jWc/NrRpvpCbizgq9vqv4rCRsAiuSiJ8L5hf4aFlCBUYCffuQnrY98uOfJ8YAUY3dbtaF9A== 212 dependencies: 213 "@types/prosemirror-model" "*" 214 "@types/prosemirror-state" "*" 215 216 - "@types/prosemirror-keymap@^1.0.3": 217 - version "1.0.3" 218 - resolved "https://registry.yarnpkg.com/@types/prosemirror-keymap/-/prosemirror-keymap-1.0.3.tgz#09cc469a69222a4c8a3d415d02eeb459bb74269c" 219 - integrity sha512-iCYUtt0u8y6qeDZVsidEWJGbw2Kas+jtHD1QY374W/N2jASYp+8auucFLXe0UvoOy9jiWcGcqcecec1R+vkzgw== 220 dependencies: 221 "@types/prosemirror-commands" "*" 222 "@types/prosemirror-model" "*" 223 "@types/prosemirror-state" "*" 224 "@types/prosemirror-view" "*" 225 226 - "@types/prosemirror-model@*", "@types/prosemirror-model@^1.7.2": 227 version "1.7.2" 228 resolved "https://registry.yarnpkg.com/@types/prosemirror-model/-/prosemirror-model-1.7.2.tgz#9c7aff2fd62f0f56eb76e2e0eb27bf6996e6c28a" 229 integrity sha512-2l+yXvidg3AUHN07mO4Jd8Q84fo6ksFsy7LHUurLYrZ74uTahBp2fzcO49AKZMzww2EulXJ40Kl/OFaQ/7A1fw== 230 dependencies: 231 "@types/orderedmap" "*" 232 233 - "@types/prosemirror-schema-list@^1.0.1": 234 - version "1.0.1" 235 - resolved "https://registry.yarnpkg.com/@types/prosemirror-schema-list/-/prosemirror-schema-list-1.0.1.tgz#7f53e3c0326b1359755f3971b8c448d98b722f21" 236 - integrity sha512-+iUYq+pj2wVHSThj0MjNDzkkGwq8aDQ6j0UJK8a0cNCL8v44Ftcx1noGPtBIEUJgitH960VnfBNoTWfQoQZfRA== 237 dependencies: 238 "@types/orderedmap" "*" 239 "@types/prosemirror-model" "*" ··· 248 "@types/prosemirror-transform" "*" 249 "@types/prosemirror-view" "*" 250 251 - "@types/prosemirror-state@^1.2.5": 252 - version "1.2.5" 253 - resolved "https://registry.yarnpkg.com/@types/prosemirror-state/-/prosemirror-state-1.2.5.tgz#a91304e9aab6e71f868e23b3a1ae514a75033f8f" 254 - integrity sha512-a5DxAifiF6vmdSJ5jsDMkpykUgUJUy+T5Q5hCjFOKJ4cfd3m3q1lsFKr7Bc4r91Qb7rfqyiKCMDnASS8LIHrKw== 255 - dependencies: 256 - "@types/prosemirror-model" "*" 257 - "@types/prosemirror-transform" "*" 258 - "@types/prosemirror-view" "*" 259 - 260 "@types/prosemirror-tables@^0.9.1": 261 version "0.9.1" 262 resolved "https://registry.yarnpkg.com/@types/prosemirror-tables/-/prosemirror-tables-0.9.1.tgz#d2203330f0fa1161c04152bf02c39e152082d408" ··· 264 dependencies: 265 prosemirror-tables "*" 266 267 - "@types/prosemirror-transform@*", "@types/prosemirror-transform@^1.1.1": 268 version "1.1.1" 269 resolved "https://registry.yarnpkg.com/@types/prosemirror-transform/-/prosemirror-transform-1.1.1.tgz#5a0de16e8e0123b4c3d9559235e19f39cee85e5c" 270 integrity sha512-yYCYSoiRH+Wcbl8GJc0PFCzeyMzNQ1vL2xrHHSXZuNcIlH75VoiKrZFeZ6BS9cl8mYXjZrlmdBe8YOxYvyKM6A== ··· 280 "@types/prosemirror-state" "*" 281 "@types/prosemirror-transform" "*" 282 283 - "@types/react-dom@^16.9.6": 284 - version "16.9.6" 285 - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.6.tgz#9e7f83d90566521cc2083be2277c6712dcaf754c" 286 - integrity sha512-S6ihtlPMDotrlCJE9ST1fRmYrQNNwfgL61UB4I1W7M6kPulUKx9fXAleW5zpdIjUQ4fTaaog8uERezjsGUj9HQ== 287 dependencies: 288 "@types/react" "*" 289 290 - "@types/react-window@^1.8.2": 291 - version "1.8.2" 292 - resolved "https://registry.yarnpkg.com/@types/react-window/-/react-window-1.8.2.tgz#a5a6b2762ce73ffaab7911ee1397cf645f2459fe" 293 - integrity sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F/y6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ== 294 dependencies: 295 "@types/react" "*" 296 297 - "@types/react@*", "@types/react@^16.9.32": 298 version "16.9.32" 299 resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.32.tgz#f6368625b224604148d1ddf5920e4fefbd98d383" 300 integrity sha512-fmejdp0CTH00mOJmxUPPbWCEBWPvRIL4m8r0qD+BSDUqmutPyGQCHifzMpMzdvZwROdEdL78IuZItntFWgPXHQ== ··· 302 "@types/prop-types" "*" 303 csstype "^2.2.0" 304 305 "@types/unzip@^0.1.1": 306 version "0.1.1" 307 resolved "https://registry.yarnpkg.com/@types/unzip/-/unzip-0.1.1.tgz#96e80dc5e2917a769c8be01aa49c4fe660e7bab3" ··· 309 dependencies: 310 "@types/node" "*" 311 312 - "@types/zenscroll@^4.0.0": 313 - version "4.0.0" 314 - resolved "https://registry.yarnpkg.com/@types/zenscroll/-/zenscroll-4.0.0.tgz#9acc7df6c87cc9e064f5a6230df499835dee1972" 315 - integrity sha512-n9np/qsr3HBH3VBVfviHhQPmGP1+D01+VI/40QFq/7LyJqDoIlcaaABu/qPAVats/oNuUJ/dhrjrOjVaqos+4A== 316 317 abbrev@1: 318 version "1.1.1" ··· 339 resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 340 integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== 341 342 ajax-request@^1.2.0: 343 version "1.2.3" 344 resolved "https://registry.yarnpkg.com/ajax-request/-/ajax-request-1.2.3.tgz#99fcbec1d6d2792f85fa949535332bd14f5f3790" ··· 362 resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 363 integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 364 365 ansi-regex@^3.0.0: 366 version "3.0.0" 367 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 368 integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 369 370 ansi-styles@^3.2.1: 371 version "3.2.1" 372 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" ··· 374 dependencies: 375 color-convert "^1.9.0" 376 377 ansi@^0.3.1: 378 version "0.3.1" 379 resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" ··· 397 resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.2.1.tgz#d0df4a682ee408273583d43f6f79e9892624bc9a" 398 integrity sha512-91IFKeKk7FjfmezPKkwtaRvSpnUc4gDwPAjA1YZ9Gn0q0PPeW+vbeUsZuyDwjI7+QTHhcLen2v25fi/AmhvbJA== 399 400 arg@^4.1.0: 401 version "4.1.3" 402 resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" ··· 408 integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 409 dependencies: 410 sprintf-js "~1.0.2" 411 412 arr-diff@^2.0.0: 413 version "2.0.0" ··· 571 dependencies: 572 tweetnacl "^0.14.3" 573 574 - biblatex-csl-converter@^1.9.1: 575 - version "1.9.1" 576 - resolved "https://registry.yarnpkg.com/biblatex-csl-converter/-/biblatex-csl-converter-1.9.1.tgz#50aacfef172997f1c98d72837ffdd3b19c62f8c4" 577 - integrity sha512-M7HkWas8NbiFoNdS/lZOfup5A83Scw4iWFoPn9r84zh9DzaG/gHU86qH1QHMgUc2dSaquuIBQZRHC9wCs7k92g== 578 579 binary-extensions@^1.0.0: 580 version "1.13.1" ··· 747 optionalDependencies: 748 fsevents "^1.0.0" 749 750 class-utils@^0.3.5: 751 version "0.3.6" 752 resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" ··· 776 resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 777 integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 778 779 - clipboard@^2.0.6: 780 - version "2.0.6" 781 - resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376" 782 - integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg== 783 dependencies: 784 good-listener "^1.2.2" 785 select "^1.1.2" 786 tiny-emitter "^2.0.0" 787 788 collection-visit@^1.0.0: 789 version "1.0.0" 790 resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" ··· 800 dependencies: 801 color-name "1.1.3" 802 803 color-name@1.1.3: 804 version "1.1.3" 805 resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 806 integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 807 808 combined-stream@^1.0.6, combined-stream@~1.0.6: 809 version "1.0.8" ··· 817 resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 818 integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 819 820 component-emitter@^1.2.1: 821 version "1.3.0" 822 resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" ··· 847 readable-stream "^3.0.2" 848 typedarray "^0.0.6" 849 850 content-disposition@0.5.3: 851 version "0.5.3" 852 resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" ··· 859 resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 860 integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 861 862 - convert-source-map@^1.5.0, convert-source-map@^1.5.1: 863 version "1.7.0" 864 resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 865 integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 866 dependencies: 867 safe-buffer "~5.1.1" 868 869 cookie-signature@1.0.6: 870 version "1.0.6" 871 resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" ··· 933 integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== 934 935 csstype@^2.5.2: 936 - version "2.6.9" 937 - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.9.tgz#05141d0cd557a56b8891394c1911c40c8a98d098" 938 - integrity sha512-xz39Sb4+OaTsULgUERcCk+TJj8ylkL4aSVDQiX/ksxbELSqwkgt4d4RD7fovIdgJGSuNYqwZEiVjYY5l0ask+Q== 939 940 dashdash@^1.12.0: 941 version "1.14.1" ··· 951 dependencies: 952 ms "2.0.0" 953 954 decode-uri-component@^0.2.0: 955 version "0.2.0" 956 resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" ··· 961 resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 962 integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 963 964 - define-properties@^1.1.2, define-properties@^1.1.3: 965 - version "1.1.3" 966 - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 967 - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 968 - dependencies: 969 - object-keys "^1.0.12" 970 - 971 define-property@^0.2.5: 972 version "0.2.5" 973 resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" ··· 1000 resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" 1001 integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== 1002 1003 depd@~1.1.2: 1004 version "1.1.2" 1005 resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" ··· 1010 resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1011 integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 1012 1013 - diff-match-patch@^1.0.0, diff-match-patch@^1.0.4: 1014 version "1.0.4" 1015 resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.4.tgz#6ac4b55237463761c4daf0dc603eb869124744b1" 1016 integrity sha512-Uv3SW8bmH9nAtHKaKSanOQmj2DnlH65fUpcrMdfdaOxUG02QQ4YGZ8AE7kKOMisF7UqvOlGKVYWRvezdncW9lg== 1017 1018 diff@^4.0.1: 1019 version "4.0.2" ··· 1032 version "1.1.1" 1033 resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1034 integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 1035 1036 emotion@^9.2.5: 1037 version "9.2.12" ··· 1053 dependencies: 1054 is-arrayish "^0.2.1" 1055 1056 - es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: 1057 - version "1.17.6" 1058 - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" 1059 - integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== 1060 - dependencies: 1061 - es-to-primitive "^1.2.1" 1062 - function-bind "^1.1.1" 1063 - has "^1.0.3" 1064 - has-symbols "^1.0.1" 1065 - is-callable "^1.2.0" 1066 - is-regex "^1.1.0" 1067 - object-inspect "^1.7.0" 1068 - object-keys "^1.1.1" 1069 - object.assign "^4.1.0" 1070 - string.prototype.trimend "^1.0.1" 1071 - string.prototype.trimstart "^1.0.1" 1072 - 1073 - es-to-primitive@^1.2.1: 1074 - version "1.2.1" 1075 - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1076 - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1077 - dependencies: 1078 - is-callable "^1.1.4" 1079 - is-date-object "^1.0.1" 1080 - is-symbol "^1.0.2" 1081 - 1082 es6-object-assign@^1.1.0: 1083 version "1.1.0" 1084 resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" 1085 integrity sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw= 1086 1087 escape-html@~1.0.3: 1088 version "1.0.3" ··· 1406 jsonfile "^4.0.0" 1407 universalify "^0.1.0" 1408 1409 fs.realpath@^1.0.0: 1410 version "1.0.0" 1411 resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" ··· 1428 inherits "~2.0.0" 1429 mkdirp "0.5" 1430 rimraf "2" 1431 - 1432 - function-bind@^1.1.1: 1433 - version "1.1.1" 1434 - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1435 - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1436 1437 fuse-box@^3.7.1: 1438 version "3.7.1" ··· 1480 dependencies: 1481 source-map "^0.6.1" 1482 1483 - fuse.js@^6.0.4: 1484 - version "6.0.4" 1485 - resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.0.4.tgz#9f5af976f836247ad5d2c338090d6ce13cf9a4d2" 1486 - integrity sha512-XAeQaT+DV8dxqohN911+Qzkb4iMzTzae04mdb9/XSQbMjbsFasQxe0+UwM+3UWP+8vO7svz1Rj0KuQw6xJ45Ww== 1487 1488 get-caller-file@^1.0.2: 1489 version "1.0.3" 1490 resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1491 integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 1492 1493 get-value@^2.0.3, get-value@^2.0.6: 1494 version "2.0.6" ··· 1571 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1572 integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1573 1574 - has-symbols@^1.0.0, has-symbols@^1.0.1: 1575 - version "1.0.1" 1576 - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1577 - integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 1578 1579 has-value@^0.3.1: 1580 version "0.3.1" ··· 1607 is-number "^3.0.0" 1608 kind-of "^4.0.0" 1609 1610 - has@^1.0.3: 1611 - version "1.0.3" 1612 - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1613 - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1614 - dependencies: 1615 - function-bind "^1.1.1" 1616 - 1617 html@^1.0.0: 1618 version "1.0.0" 1619 resolved "https://registry.yarnpkg.com/html/-/html-1.0.0.tgz#a544fa9ea5492bfb3a2cca8210a10be7b5af1f61" ··· 1652 jsprim "^1.2.2" 1653 sshpk "^1.7.0" 1654 1655 iconv-lite@0.4.24, iconv-lite@^0.4.17: 1656 version "0.4.24" 1657 resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" ··· 1751 resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1752 integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1753 1754 - is-callable@^1.1.4, is-callable@^1.2.0: 1755 - version "1.2.0" 1756 - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" 1757 - integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== 1758 - 1759 is-data-descriptor@^0.1.4: 1760 version "0.1.4" 1761 resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" ··· 1769 integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1770 dependencies: 1771 kind-of "^6.0.0" 1772 - 1773 - is-date-object@^1.0.1: 1774 - version "1.0.2" 1775 - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1776 - integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1777 1778 is-descriptor@^0.1.0: 1779 version "0.1.6" ··· 1822 resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1823 integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= 1824 1825 is-fullwidth-code-point@^2.0.0: 1826 version "2.0.0" 1827 resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1828 integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1829 1830 is-glob@^2.0.0, is-glob@^2.0.1: 1831 version "2.0.1" ··· 1875 resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1876 integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 1877 1878 - is-regex@^1.1.0: 1879 - version "1.1.0" 1880 - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" 1881 - integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== 1882 - dependencies: 1883 - has-symbols "^1.0.1" 1884 - 1885 - is-symbol@^1.0.2: 1886 - version "1.0.3" 1887 - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1888 - integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1889 - dependencies: 1890 - has-symbols "^1.0.1" 1891 - 1892 is-typedarray@~1.0.0: 1893 version "1.0.0" 1894 resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" ··· 1939 argparse "^1.0.7" 1940 esprima "^4.0.0" 1941 1942 jsbn@~0.1.0: 1943 version "0.1.1" 1944 resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" ··· 1993 extsprintf "1.3.0" 1994 json-schema "0.2.3" 1995 verror "1.10.0" 1996 1997 kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1998 version "3.2.2" ··· 2064 version "3.5.0" 2065 resolved "https://registry.yarnpkg.com/lodash.flow/-/lodash.flow-3.5.0.tgz#87bf40292b8cf83e4e8ce1a3ae4209e20071675a" 2066 integrity sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o= 2067 2068 lodash.uniqby@^4.7.0: 2069 version "4.7.0" 2070 resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302" 2071 integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI= 2072 2073 - lodash@^4.17.13, lodash@^4.3.0: 2074 version "4.17.15" 2075 resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2076 integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== ··· 2082 dependencies: 2083 js-tokens "^3.0.0 || ^4.0.0" 2084 2085 make-error@^1.1.1: 2086 version "1.3.6" 2087 resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" ··· 2219 resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2220 integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2221 2222 mixin-deep@^1.2.0: 2223 version "1.3.2" 2224 resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" ··· 2241 dependencies: 2242 minimist "0.0.8" 2243 2244 mock-require@^3.0.3: 2245 version "3.0.3" 2246 resolved "https://registry.yarnpkg.com/mock-require/-/mock-require-3.0.3.tgz#ccd544d9eae81dd576b3f219f69ec867318a1946" ··· 2259 resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2260 integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 2261 2262 mustache@^2.3.0: 2263 version "2.3.2" 2264 resolved "https://registry.yarnpkg.com/mustache/-/mustache-2.3.2.tgz#a6d4d9c3f91d13359ab889a812954f9230a3d0c5" ··· 2306 resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 2307 integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 2308 2309 nopt@~1.0.10: 2310 version "1.0.10" 2311 resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" ··· 2320 dependencies: 2321 remove-trailing-separator "^1.0.1" 2322 2323 oauth-sign@~0.9.0: 2324 version "0.9.0" 2325 resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 2326 integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== 2327 2328 - object-assign@^4.1.1: 2329 version "4.1.1" 2330 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2331 integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= ··· 2338 copy-descriptor "^0.1.0" 2339 define-property "^0.2.5" 2340 kind-of "^3.0.3" 2341 - 2342 - object-inspect@^1.7.0: 2343 - version "1.8.0" 2344 - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 2345 - integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 2346 - 2347 - object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 2348 - version "1.1.1" 2349 - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2350 - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2351 2352 object-visit@^1.0.0: 2353 version "1.0.1" ··· 2356 dependencies: 2357 isobject "^3.0.0" 2358 2359 - object.assign@^4.1.0: 2360 - version "4.1.0" 2361 - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2362 - integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 2363 - dependencies: 2364 - define-properties "^1.1.2" 2365 - function-bind "^1.1.1" 2366 - has-symbols "^1.0.0" 2367 - object-keys "^1.0.11" 2368 - 2369 object.omit@^2.0.0: 2370 version "2.0.1" 2371 resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" ··· 2381 dependencies: 2382 isobject "^3.0.1" 2383 2384 - object.values@^1.1.0: 2385 - version "1.1.1" 2386 - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 2387 - integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== 2388 - dependencies: 2389 - define-properties "^1.1.3" 2390 - es-abstract "^1.17.0-next.1" 2391 - function-bind "^1.1.1" 2392 - has "^1.0.3" 2393 2394 on-finished@~2.3.0: 2395 version "2.3.0" ··· 2505 version "2.1.0" 2506 resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2507 integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 2508 2509 posix-character-classes@^0.1.0: 2510 version "0.1.1" ··· 2569 dependencies: 2570 prosemirror-transform "^1.0.0" 2571 2572 - prosemirror-commands@^1.1.4: 2573 - version "1.1.4" 2574 - resolved "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.1.4.tgz#991563e67623acab4f8c510fad1570f8b4693780" 2575 - integrity sha512-kj4Qi+8h3EpJtZuuEDwZ9h2/QNGWDsIX/CzjmClxi9GhxWyBUMVUvIFk0mgdqHyX20lLeGmOpc0TLA5aPzgpWg== 2576 dependencies: 2577 prosemirror-model "^1.0.0" 2578 prosemirror-state "^1.0.0" ··· 2596 react-json-tree "^0.11.0" 2597 unstated "^2.1.1" 2598 2599 - prosemirror-dropcursor@^1.3.2: 2600 - version "1.3.2" 2601 - resolved "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.3.2.tgz#28738c4ed7102e814d7a8a26d70018523fc7cd6d" 2602 - integrity sha512-4c94OUGyobGnwcQI70OXyMhE/9T4aTgjU+CHxkd5c7D+jH/J0mKM/lk+jneFVKt7+E4/M0D9HzRPifu8U28Thw== 2603 dependencies: 2604 prosemirror-state "^1.0.0" 2605 prosemirror-transform "^1.1.0" ··· 2615 prosemirror-state "^1.0.0" 2616 prosemirror-view "^1.0.0" 2617 2618 - prosemirror-history@^1.1.3: 2619 - version "1.1.3" 2620 - resolved "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.1.3.tgz#4f76a1e71db4ef7cdf0e13dec6d8da2aeaecd489" 2621 - integrity sha512-zGDotijea+vnfnyyUGyiy1wfOQhf0B/b6zYcCouBV8yo6JmrE9X23M5q7Nf/nATywEZbgRLG70R4DmfSTC+gfg== 2622 dependencies: 2623 prosemirror-state "^1.2.2" 2624 prosemirror-transform "^1.0.0" 2625 rope-sequence "^1.3.0" 2626 2627 - prosemirror-inputrules@^1.1.2: 2628 - version "1.1.2" 2629 - resolved "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.1.2.tgz#487e46c763e1212a4577397aba7706139084f012" 2630 - integrity sha512-Ja5Z3BWestlHYGvtSGqyvxMeB8QEuBjlHM8YnKtLGUXMDp965qdDV4goV8lJb17kIWHk7e7JNj6Catuoa3302g== 2631 dependencies: 2632 prosemirror-state "^1.0.0" 2633 prosemirror-transform "^1.0.0" ··· 2655 dependencies: 2656 orderedmap "^1.1.0" 2657 2658 - prosemirror-model@^1.11.0: 2659 - version "1.11.0" 2660 - resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.11.0.tgz#dc36cdb3ad6442b9f6325c7d89170c624f9dc520" 2661 - integrity sha512-GqoAz/mIYjdv8gVYJ8mWFKpHoTxn/lXq4tXJ6bTVxs+rem2LzMYXrNVXfucGtfsgqsJlRIgng/ByG9j7Q8XDrg== 2662 dependencies: 2663 orderedmap "^1.1.0" 2664 2665 - prosemirror-schema-list@^1.1.4: 2666 - version "1.1.4" 2667 - resolved "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.1.4.tgz#471f9caf2d2bed93641d2e490434c0d2d4330df1" 2668 - integrity sha512-pNTuZflacFOBlxrTcWSdWhjoB8BaucwfJVp/gJNxztOwaN3wQiC65axclXyplf6TKgXD/EkWfS/QAov3/Znadw== 2669 dependencies: 2670 prosemirror-model "^1.0.0" 2671 prosemirror-transform "^1.0.0" ··· 2678 prosemirror-model "^1.0.0" 2679 prosemirror-transform "^1.0.0" 2680 2681 - prosemirror-state@^1.3.3: 2682 - version "1.3.3" 2683 - resolved "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.3.tgz#b2862866b14dec2b3ae1ab18229f2bd337651a2c" 2684 - integrity sha512-PLXh2VJsIgvlgSTH6I2Yg6vk1CzPDp21DFreVpQtDMY2S6WaMmrQgDTLRcsrD8X38v8Yc873H7+ogdGzyIPn+w== 2685 dependencies: 2686 prosemirror-model "^1.0.0" 2687 prosemirror-transform "^1.0.0" ··· 2715 dependencies: 2716 prosemirror-model "^1.0.0" 2717 2718 - prosemirror-transform@^1.2.8: 2719 - version "1.2.8" 2720 - resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.2.8.tgz#4b86544fa43637fe381549fb7b019f4fb71fe65c" 2721 - integrity sha512-hKqceqv9ZmMQXNQkhFjr0KFGPvkhygaWND+uIM0GxRpALrKfxP97SsgHTBs3OpJhDmh5N+mB4D/CksB291Eavg== 2722 dependencies: 2723 prosemirror-model "^1.0.0" 2724 ··· 2736 prosemirror-state "^1.0.0" 2737 prosemirror-transform "^1.1.0" 2738 2739 - prosemirror-view@^1.15.6: 2740 - version "1.15.6" 2741 - resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.15.6.tgz#446bf7662235300c5f47362af2db805c6df3ad24" 2742 - integrity sha512-9FBFB+rK5pvvzHsHOacy0T/Jf+OxZSzY8tSlQiur3SZwAVaNVQm+fl23V/6gU2dHBnreGxjYx9jK+F3XPsPCGw== 2743 dependencies: 2744 - prosemirror-model "^1.1.0" 2745 prosemirror-state "^1.0.0" 2746 prosemirror-transform "^1.1.0" 2747 ··· 2830 lodash.debounce "^3.1.1" 2831 prop-types "^15.5.8" 2832 2833 - react-dom@^16.13.1: 2834 - version "16.13.1" 2835 - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f" 2836 - integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag== 2837 dependencies: 2838 loose-envify "^1.1.0" 2839 object-assign "^4.1.1" 2840 - prop-types "^15.6.2" 2841 - scheduler "^0.19.1" 2842 2843 react-emotion@^9.2.5: 2844 version "9.2.12" ··· 2862 prop-types "^15.5.8" 2863 react-base16-styling "^0.5.1" 2864 2865 - react-window@^1.8.5: 2866 - version "1.8.5" 2867 - resolved "https://registry.yarnpkg.com/react-window/-/react-window-1.8.5.tgz#a56b39307e79979721021f5d06a67742ecca52d1" 2868 - integrity sha512-HeTwlNa37AFa8MDZFZOKcNEkuF2YflA0hpGPiTT9vR7OawEt+GZbfM6wqkBahD3D3pUjIabQYzsnY/BSJbgq6Q== 2869 dependencies: 2870 "@babel/runtime" "^7.0.0" 2871 memoize-one ">=3.1.1 <6" 2872 2873 - react@^16.13.1: 2874 - version "16.13.1" 2875 - resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" 2876 - integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== 2877 dependencies: 2878 loose-envify "^1.1.0" 2879 object-assign "^4.1.1" 2880 - prop-types "^15.6.2" 2881 2882 - readable-stream@^2.0.2, readable-stream@^2.2.2: 2883 version "2.3.7" 2884 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 2885 integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== ··· 3035 tunnel-agent "^0.6.0" 3036 uuid "^3.3.2" 3037 3038 resolve-from@^4.0.0: 3039 version "4.0.0" 3040 resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" ··· 3072 dependencies: 3073 glob "^7.1.3" 3074 3075 rope-sequence@^1.3.0: 3076 version "1.3.2" 3077 resolved "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.2.tgz#a19e02d72991ca71feb6b5f8a91154e48e3c098b" ··· 3123 resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3124 integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 3125 3126 - scheduler@^0.19.1: 3127 - version "0.19.1" 3128 - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" 3129 - integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== 3130 dependencies: 3131 loose-envify "^1.1.0" 3132 object-assign "^4.1.1" ··· 3141 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 3142 integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 3143 3144 send@0.17.1: 3145 version "0.17.1" 3146 resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" ··· 3160 range-parser "~1.2.1" 3161 statuses "~1.5.0" 3162 3163 - sentence-splitter@^3.2.0: 3164 - version "3.2.0" 3165 - resolved "https://registry.yarnpkg.com/sentence-splitter/-/sentence-splitter-3.2.0.tgz#fb2cd2f61f40006643ba83d9acf4609233c1c68c" 3166 - integrity sha512-lKX2tZ1rsA9Tu0gW8vRmMDmIEJoZ1d7cKpzcbFZdUrSpCR6gy/7OPPh7jjT/6Oc6Z79ToUmC2l8tyTEGanVmiA== 3167 dependencies: 3168 - "@textlint/ast-node-types" "^4.2.5" 3169 concat-stream "^2.0.0" 3170 - object.values "^1.1.0" 3171 structured-source "^3.0.2" 3172 3173 serve-static@1.14.1: ··· 3179 escape-html "~1.0.3" 3180 parseurl "~1.3.3" 3181 send "0.17.1" 3182 3183 set-value@^2.0.0, set-value@^2.0.1: 3184 version "2.0.1" ··· 3204 version "0.0.2" 3205 resolved "https://registry.yarnpkg.com/shorthash/-/shorthash-0.0.2.tgz#59b268eecbde59038b30da202bcfbddeb2c4a4eb" 3206 integrity sha1-WbJo7sveWQOLMNogK8+93rLEpOs= 3207 3208 signal-exit@^3.0.2: 3209 version "3.0.2" ··· 3349 inherits "~2.0.1" 3350 readable-stream "^2.0.2" 3351 3352 - string-width@^2.1.0: 3353 version "2.1.1" 3354 resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3355 integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== ··· 3357 is-fullwidth-code-point "^2.0.0" 3358 strip-ansi "^4.0.0" 3359 3360 - string.prototype.trimend@^1.0.1: 3361 - version "1.0.1" 3362 - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 3363 - integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 3364 dependencies: 3365 - define-properties "^1.1.3" 3366 - es-abstract "^1.17.5" 3367 - 3368 - string.prototype.trimstart@^1.0.1: 3369 - version "1.0.1" 3370 - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 3371 - integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 3372 - dependencies: 3373 - define-properties "^1.1.3" 3374 - es-abstract "^1.17.5" 3375 3376 string_decoder@^1.1.1: 3377 version "1.3.0" ··· 3392 dependencies: 3393 safe-buffer "~5.1.0" 3394 3395 strip-ansi@^4.0.0: 3396 version "4.0.0" 3397 resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" ··· 3399 dependencies: 3400 ansi-regex "^3.0.0" 3401 3402 structured-source@^3.0.2: 3403 version "3.0.2" 3404 resolved "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz#dd802425e0f53dc4a6e7aca3752901a1ccda7af5" ··· 3422 integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3423 dependencies: 3424 has-flag "^3.0.0" 3425 3426 terser@^4.6.2: 3427 version "4.6.4" ··· 3508 dependencies: 3509 psl "^1.1.28" 3510 punycode "^2.1.1" 3511 3512 "traverse@>=0.3.0 <0.4": 3513 version "0.3.9" ··· 3799 exec-sh "^0.2.0" 3800 minimist "^1.2.0" 3801 3802 word-wrap@~1.2.3: 3803 version "1.2.3" 3804 resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 3805 integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3806 3807 wrappy@1: 3808 version "1.0.2" ··· 3817 options ">=0.0.5" 3818 ultron "1.0.x" 3819 3820 yaml@^1.7.2: 3821 version "1.7.2" 3822 resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2" 3823 integrity sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw== 3824 dependencies: 3825 "@babel/runtime" "^7.6.3" 3826 3827 yn@3.1.1: 3828 version "3.1.1"
··· 10 "@babel/highlight" "^7.8.3" 11 12 "@babel/helper-module-imports@^7.0.0": 13 + version "7.15.4" 14 + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz#e18007d230632dea19b47853b984476e7b4e103f" 15 + integrity sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA== 16 dependencies: 17 + "@babel/types" "^7.15.4" 18 + 19 + "@babel/helper-validator-identifier@^7.14.9": 20 + version "7.14.9" 21 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz#6654d171b2024f6d8ee151bf2509699919131d48" 22 + integrity sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g== 23 24 "@babel/highlight@^7.8.3": 25 version "7.8.3" ··· 44 dependencies: 45 regenerator-runtime "^0.13.2" 46 47 + "@babel/types@^7.15.4": 48 + version "7.15.6" 49 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f" 50 + integrity sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig== 51 dependencies: 52 + "@babel/helper-validator-identifier" "^7.14.9" 53 to-fast-properties "^2.0.0" 54 55 "@emotion/babel-utils@^0.6.4": ··· 106 resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.8.2.tgz#576ff7fb1230185b619a75d258cbc98f0867a8dc" 107 integrity sha512-rLu3wcBWH4P5q1CGoSSH/i9hrXs7SlbRLkoq9IGuoPYNGQvDJ3pt/wmOM+XgYjIDRMVIdkUWt0RsfzF50JfnCw== 108 109 + "@mapbox/node-pre-gyp@^1.0.4": 110 + version "1.0.5" 111 + resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.5.tgz#2a0b32fcb416fb3f2250fd24cb2a81421a4f5950" 112 + integrity sha512-4srsKPXWlIxp5Vbqz5uLfBN+du2fJChBoYn/f2h991WLdk7jUvcSk/McVLSv/X+xQIPI8eGD5GjrnygdyHnhPA== 113 + dependencies: 114 + detect-libc "^1.0.3" 115 + https-proxy-agent "^5.0.0" 116 + make-dir "^3.1.0" 117 + node-fetch "^2.6.1" 118 + nopt "^5.0.0" 119 + npmlog "^4.1.2" 120 + rimraf "^3.0.2" 121 + semver "^7.3.4" 122 + tar "^6.1.0" 123 + 124 + "@textlint/ast-node-types@^4.4.2": 125 + version "4.4.3" 126 + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.4.3.tgz#fdba16e8126cddc50f45433ce7f6c55e7829566c" 127 + integrity sha512-qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A== 128 129 "@types/ace@^0.0.43": 130 version "0.0.43" 131 resolved "https://registry.yarnpkg.com/@types/ace/-/ace-0.0.43.tgz#9f0916174b6060dabbccd36ba4868ea769a1c633" 132 integrity sha512-eQdX8AQ7CfSHym07MZMBQ8FKUj9AZ2Wcc26W5Ct8J4KOMjFY6SFUaf2YA8YHBut0Fwl//2kZ+0GLZNp+NQNRIA== 133 134 + "@types/clipboard@^2.0.7": 135 + version "2.0.7" 136 + resolved "https://registry.yarnpkg.com/@types/clipboard/-/clipboard-2.0.7.tgz#db578ceec578947be2d603b003667ebdd5f274e1" 137 + integrity sha512-VwVFUHlneOsWfv/GaaY7Kwk4XasDqkAlyFQtsHxnOw0yyBYWTrlEXtmb9RtC+VFBCdtuOeIXECmELNd5RrKp/g== 138 + dependencies: 139 + clipboard "*" 140 141 "@types/diff-match-patch@^1.0.32": 142 version "1.0.32" 143 resolved "https://registry.yarnpkg.com/@types/diff-match-patch/-/diff-match-patch-1.0.32.tgz#d9c3b8c914aa8229485351db4865328337a3d09f" 144 integrity sha512-bPYT5ECFiblzsVzyURaNhljBH2Gh1t9LowgUwciMrNAhFewLkHT2H0Mto07Y4/3KCOGZHRQll3CTtQZ0X11D/A== 145 146 + "@types/js-yaml@^4.0.3": 147 + version "4.0.3" 148 + resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.3.tgz#9f33cd6fbf0d5ec575dc8c8fc69c7fec1b4eb200" 149 + integrity sha512-5t9BhoORasuF5uCPr+d5/hdB++zRFUTMIZOzbNkr+jZh3yQht4HYbRDyj9fY8n2TZT30iW9huzav73x4NikqWg== 150 151 "@types/lodash.debounce@^4.0.6": 152 version "4.0.6" 153 resolved "https://registry.yarnpkg.com/@types/lodash.debounce/-/lodash.debounce-4.0.6.tgz#c5a2326cd3efc46566c47e4c0aa248dc0ee57d60" 154 integrity sha512-4WTmnnhCfDvvuLMaF3KV4Qfki93KebocUF45msxhYyjMttZDQYzHkO639ohhk8+oco2cluAFL3t5+Jn4mleylQ== 155 + dependencies: 156 + "@types/lodash" "*" 157 + 158 + "@types/lodash.orderby@^4.6.6": 159 + version "4.6.6" 160 + resolved "https://registry.yarnpkg.com/@types/lodash.orderby/-/lodash.orderby-4.6.6.tgz#126543bb597477dc9b27d748b5822244f577915c" 161 + integrity sha512-wQzu6xK+bSwhu45OeMI7fjywiIZiiaBzJB8W3fwnF1SJXHoOXRLutrSnVmq4yHPOM036qsy8lx9wHQcAbXNjJw== 162 dependencies: 163 "@types/lodash" "*" 164 ··· 189 resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 190 integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 191 192 + "@types/pinyin@^2.10.0": 193 + version "2.10.0" 194 + resolved "https://registry.yarnpkg.com/@types/pinyin/-/pinyin-2.10.0.tgz#074964ec2f777d632e221f927a975bb7d51ded9a" 195 + integrity sha512-YLty6FPYiBgxNbQNaTRJquvflRdG026jjOpjNXR7HdGEJPGtmPBp1x9LkWePCNA/ClaTT0hYem080TbRCMLbew== 196 + 197 "@types/prop-types@*": 198 version "15.7.3" 199 resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 200 integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== 201 202 + "@types/prosemirror-commands@*": 203 version "1.0.3" 204 resolved "https://registry.yarnpkg.com/@types/prosemirror-commands/-/prosemirror-commands-1.0.3.tgz#e9fa5653cffd1c75c260594cf3ec5244c9004dbf" 205 integrity sha512-AjFCJqBvAhQ4gOzXPgUcnEZwu4jd7se7ani3dYAv8p4L+cWEPD6Pshrpp5uJDI5/pzvNXLWQ/4c2Qk4h9IML1w== ··· 208 "@types/prosemirror-state" "*" 209 "@types/prosemirror-view" "*" 210 211 + "@types/prosemirror-commands@^1.0.4": 212 + version "1.0.4" 213 + resolved "https://registry.yarnpkg.com/@types/prosemirror-commands/-/prosemirror-commands-1.0.4.tgz#d08551415127d93ae62e7239d30db0b5e7208e22" 214 + integrity sha512-utDNYB3EXLjAfYIcRWJe6pn3kcQ5kG4RijbT/0Y/TFOm6yhvYS/D9eJVnijdg9LDjykapcezchxGRqFD5LcyaQ== 215 dependencies: 216 + "@types/prosemirror-model" "*" 217 "@types/prosemirror-state" "*" 218 "@types/prosemirror-view" "*" 219 220 + "@types/prosemirror-dropcursor@^1.0.3": 221 + version "1.0.3" 222 + resolved "https://registry.yarnpkg.com/@types/prosemirror-dropcursor/-/prosemirror-dropcursor-1.0.3.tgz#49250849b8a0b86e8c29eb1ba70a463e53e46947" 223 + integrity sha512-b0/8njnJ4lwyHKcGuCMf3x7r1KjxyugB1R/c2iMCjplsJHSC7UY9+OysqgJR5uUXRekUSGniiLgBtac/lvH6wg== 224 dependencies: 225 "@types/prosemirror-state" "*" 226 227 + "@types/prosemirror-gapcursor@^1.0.4": 228 + version "1.0.4" 229 + resolved "https://registry.yarnpkg.com/@types/prosemirror-gapcursor/-/prosemirror-gapcursor-1.0.4.tgz#7df7d373edb33ea8da12084bfd462cf84cd69761" 230 + integrity sha512-9xKjFIG5947dzerFvkLWp6F53JwrUYoYwh3SgcTFEp8SbSfNNrez/PFYVZKPnoqPoaK5WtTdQTaMwpCV9rXQIg== 231 dependencies: 232 + "@types/prosemirror-model" "*" 233 "@types/prosemirror-state" "*" 234 235 + "@types/prosemirror-history@^1.0.3": 236 + version "1.0.3" 237 + resolved "https://registry.yarnpkg.com/@types/prosemirror-history/-/prosemirror-history-1.0.3.tgz#f1110efbe758129b5475e466ff077f0a8d9b964f" 238 + integrity sha512-5TloMDRavgLjOAKXp1Li8u0xcsspzbT1Cm9F2pwHOkgvQOz1jWQb2VIXO7RVNsFjLBZdIXlyfSLivro3DuMWXg== 239 dependencies: 240 "@types/prosemirror-model" "*" 241 "@types/prosemirror-state" "*" 242 243 + "@types/prosemirror-inputrules@^1.0.4": 244 + version "1.0.4" 245 + resolved "https://registry.yarnpkg.com/@types/prosemirror-inputrules/-/prosemirror-inputrules-1.0.4.tgz#4cb75054d954aa0f6f42099be05eb6c0e6958bae" 246 + integrity sha512-lJIMpOjO47SYozQybUkpV6QmfuQt7GZKHtVrvS+mR5UekA8NMC5HRIVMyaIauJLWhKU6oaNjpVaXdw41kh165g== 247 dependencies: 248 "@types/prosemirror-model" "*" 249 "@types/prosemirror-state" "*" 250 251 + "@types/prosemirror-keymap@^1.0.4": 252 + version "1.0.4" 253 + resolved "https://registry.yarnpkg.com/@types/prosemirror-keymap/-/prosemirror-keymap-1.0.4.tgz#f73c79810e8d0e0a20d153d84f998f02e5afbc0c" 254 + integrity sha512-ycevwkqUh+jEQtPwqO7sWGcm+Sybmhu8MpBsM8DlO3+YTKnXbKA6SDz/+q14q1wK3UA8lHJyfR+v+GPxfUSemg== 255 dependencies: 256 "@types/prosemirror-commands" "*" 257 "@types/prosemirror-model" "*" 258 "@types/prosemirror-state" "*" 259 "@types/prosemirror-view" "*" 260 261 + "@types/prosemirror-model@*": 262 version "1.7.2" 263 resolved "https://registry.yarnpkg.com/@types/prosemirror-model/-/prosemirror-model-1.7.2.tgz#9c7aff2fd62f0f56eb76e2e0eb27bf6996e6c28a" 264 integrity sha512-2l+yXvidg3AUHN07mO4Jd8Q84fo6ksFsy7LHUurLYrZ74uTahBp2fzcO49AKZMzww2EulXJ40Kl/OFaQ/7A1fw== 265 dependencies: 266 "@types/orderedmap" "*" 267 268 + "@types/prosemirror-schema-list@^1.0.3": 269 + version "1.0.3" 270 + resolved "https://registry.yarnpkg.com/@types/prosemirror-schema-list/-/prosemirror-schema-list-1.0.3.tgz#bdf1893a7915fbdc5c49b3cac9368e96213d70de" 271 + integrity sha512-uWybOf+M2Ea7rlbs0yLsS4YJYNGXYtn4N+w8HCw3Vvfl6wBAROzlMt0gV/D/VW/7J/LlAjwMezuGe8xi24HzXA== 272 dependencies: 273 "@types/orderedmap" "*" 274 "@types/prosemirror-model" "*" ··· 283 "@types/prosemirror-transform" "*" 284 "@types/prosemirror-view" "*" 285 286 "@types/prosemirror-tables@^0.9.1": 287 version "0.9.1" 288 resolved "https://registry.yarnpkg.com/@types/prosemirror-tables/-/prosemirror-tables-0.9.1.tgz#d2203330f0fa1161c04152bf02c39e152082d408" ··· 290 dependencies: 291 prosemirror-tables "*" 292 293 + "@types/prosemirror-transform@*": 294 version "1.1.1" 295 resolved "https://registry.yarnpkg.com/@types/prosemirror-transform/-/prosemirror-transform-1.1.1.tgz#5a0de16e8e0123b4c3d9559235e19f39cee85e5c" 296 integrity sha512-yYCYSoiRH+Wcbl8GJc0PFCzeyMzNQ1vL2xrHHSXZuNcIlH75VoiKrZFeZ6BS9cl8mYXjZrlmdBe8YOxYvyKM6A== ··· 306 "@types/prosemirror-state" "*" 307 "@types/prosemirror-transform" "*" 308 309 + "@types/react-dom@^17.0.9": 310 + version "17.0.9" 311 + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.9.tgz#441a981da9d7be117042e1a6fd3dac4b30f55add" 312 + integrity sha512-wIvGxLfgpVDSAMH5utdL9Ngm5Owu0VsGmldro3ORLXV8CShrL8awVj06NuEXFQ5xyaYfdca7Sgbk/50Ri1GdPg== 313 dependencies: 314 "@types/react" "*" 315 316 + "@types/react-window@^1.8.5": 317 + version "1.8.5" 318 + resolved "https://registry.yarnpkg.com/@types/react-window/-/react-window-1.8.5.tgz#285fcc5cea703eef78d90f499e1457e9b5c02fc1" 319 + integrity sha512-V9q3CvhC9Jk9bWBOysPGaWy/Z0lxYcTXLtLipkt2cnRj1JOSFNF7wqGpkScSXMgBwC+fnVRg/7shwgddBG5ICw== 320 dependencies: 321 "@types/react" "*" 322 323 + "@types/react@*": 324 version "16.9.32" 325 resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.32.tgz#f6368625b224604148d1ddf5920e4fefbd98d383" 326 integrity sha512-fmejdp0CTH00mOJmxUPPbWCEBWPvRIL4m8r0qD+BSDUqmutPyGQCHifzMpMzdvZwROdEdL78IuZItntFWgPXHQ== ··· 328 "@types/prop-types" "*" 329 csstype "^2.2.0" 330 331 + "@types/react@^17.0.20": 332 + version "17.0.20" 333 + resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.20.tgz#a4284b184d47975c71658cd69e759b6bd37c3b8c" 334 + integrity sha512-wWZrPlihslrPpcKyCSlmIlruakxr57/buQN1RjlIeaaTWDLtJkTtRW429MoQJergvVKc4IWBpRhWw7YNh/7GVA== 335 + dependencies: 336 + "@types/prop-types" "*" 337 + "@types/scheduler" "*" 338 + csstype "^3.0.2" 339 + 340 + "@types/scheduler@*": 341 + version "0.16.2" 342 + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 343 + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 344 + 345 + "@types/transliteration@^1.6.6": 346 + version "1.6.6" 347 + resolved "https://registry.yarnpkg.com/@types/transliteration/-/transliteration-1.6.6.tgz#72b4f1742280d9341fbbe19c7efa5c2bc20a4726" 348 + integrity sha512-drgWFeHgZt16bXKhsu4cP6TlunW3Pu9MS1l9w7Qnm+bcsqf4/pnjnO6/uMAziCV8rnmuU3iCSk7J2zio1nR1+A== 349 + dependencies: 350 + transliteration "*" 351 + 352 "@types/unzip@^0.1.1": 353 version "0.1.1" 354 resolved "https://registry.yarnpkg.com/@types/unzip/-/unzip-0.1.1.tgz#96e80dc5e2917a769c8be01aa49c4fe660e7bab3" ··· 356 dependencies: 357 "@types/node" "*" 358 359 + "@types/zenscroll@^4.0.1": 360 + version "4.0.1" 361 + resolved "https://registry.yarnpkg.com/@types/zenscroll/-/zenscroll-4.0.1.tgz#881e92d5cc44ef900d2919ca0295a0b8d9011858" 362 + integrity sha512-r1h1/SPJQn8kL4rzyJvf4HJvqv20YrTV++qRGiPuA1mYbCSkMBaUOsCXLN780gI6BZfRzDbmjU0/sWq9yi1WgQ== 363 364 abbrev@1: 365 version "1.1.1" ··· 386 resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 387 integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== 388 389 + agent-base@6: 390 + version "6.0.2" 391 + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 392 + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 393 + dependencies: 394 + debug "4" 395 + 396 ajax-request@^1.2.0: 397 version "1.2.3" 398 resolved "https://registry.yarnpkg.com/ajax-request/-/ajax-request-1.2.3.tgz#99fcbec1d6d2792f85fa949535332bd14f5f3790" ··· 416 resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 417 integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 418 419 + ansi-regex@^2.0.0: 420 + version "2.1.1" 421 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 422 + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 423 + 424 ansi-regex@^3.0.0: 425 version "3.0.0" 426 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 427 integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 428 429 + ansi-regex@^5.0.1: 430 + version "5.0.1" 431 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 432 + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 433 + 434 ansi-styles@^3.2.1: 435 version "3.2.1" 436 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" ··· 438 dependencies: 439 color-convert "^1.9.0" 440 441 + ansi-styles@^4.0.0: 442 + version "4.3.0" 443 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 444 + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 445 + dependencies: 446 + color-convert "^2.0.1" 447 + 448 ansi@^0.3.1: 449 version "0.3.1" 450 resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" ··· 468 resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.2.1.tgz#d0df4a682ee408273583d43f6f79e9892624bc9a" 469 integrity sha512-91IFKeKk7FjfmezPKkwtaRvSpnUc4gDwPAjA1YZ9Gn0q0PPeW+vbeUsZuyDwjI7+QTHhcLen2v25fi/AmhvbJA== 470 471 + aproba@^1.0.3: 472 + version "1.2.0" 473 + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 474 + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 475 + 476 + are-we-there-yet@~1.1.2: 477 + version "1.1.7" 478 + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146" 479 + integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g== 480 + dependencies: 481 + delegates "^1.0.0" 482 + readable-stream "^2.0.6" 483 + 484 arg@^4.1.0: 485 version "4.1.3" 486 resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" ··· 492 integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 493 dependencies: 494 sprintf-js "~1.0.2" 495 + 496 + argparse@^2.0.1: 497 + version "2.0.1" 498 + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 499 + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 500 501 arr-diff@^2.0.0: 502 version "2.0.0" ··· 660 dependencies: 661 tweetnacl "^0.14.3" 662 663 + biblatex-csl-converter@^2.0.2: 664 + version "2.0.2" 665 + resolved "https://registry.yarnpkg.com/biblatex-csl-converter/-/biblatex-csl-converter-2.0.2.tgz#bfddc2cfb013296affb98c9f432634e3d5b90b53" 666 + integrity sha512-od1JdAkQYh2T1Pzpq11eYtuNb3nNXQ0w+17CAnYqRsX+QFtoiK0XcvBE7N6rpDJyUo0acoaB6Of7EDhFQOcblA== 667 668 binary-extensions@^1.0.0: 669 version "1.13.1" ··· 836 optionalDependencies: 837 fsevents "^1.0.0" 838 839 + chownr@^2.0.0: 840 + version "2.0.0" 841 + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" 842 + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== 843 + 844 class-utils@^0.3.5: 845 version "0.3.6" 846 resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" ··· 870 resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 871 integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 872 873 + clipboard@*, clipboard@^2.0.8: 874 + version "2.0.8" 875 + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.8.tgz#ffc6c103dd2967a83005f3f61976aa4655a4cdba" 876 + integrity sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ== 877 dependencies: 878 good-listener "^1.2.2" 879 select "^1.1.2" 880 tiny-emitter "^2.0.0" 881 882 + cliui@^7.0.2: 883 + version "7.0.4" 884 + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 885 + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 886 + dependencies: 887 + string-width "^4.2.0" 888 + strip-ansi "^6.0.0" 889 + wrap-ansi "^7.0.0" 890 + 891 + code-point-at@^1.0.0: 892 + version "1.1.0" 893 + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 894 + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 895 + 896 collection-visit@^1.0.0: 897 version "1.0.0" 898 resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" ··· 908 dependencies: 909 color-name "1.1.3" 910 911 + color-convert@^2.0.1: 912 + version "2.0.1" 913 + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 914 + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 915 + dependencies: 916 + color-name "~1.1.4" 917 + 918 color-name@1.1.3: 919 version "1.1.3" 920 resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 921 integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 922 + 923 + color-name@~1.1.4: 924 + version "1.1.4" 925 + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 926 + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 927 928 combined-stream@^1.0.6, combined-stream@~1.0.6: 929 version "1.0.8" ··· 937 resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 938 integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 939 940 + commander@~1.1.1: 941 + version "1.1.1" 942 + resolved "https://registry.yarnpkg.com/commander/-/commander-1.1.1.tgz#50d1651868ae60eccff0a2d9f34595376bc6b041" 943 + integrity sha1-UNFlGGiuYOzP8KLZ80WVN2vGsEE= 944 + dependencies: 945 + keypress "0.1.x" 946 + 947 component-emitter@^1.2.1: 948 version "1.3.0" 949 resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" ··· 974 readable-stream "^3.0.2" 975 typedarray "^0.0.6" 976 977 + console-control-strings@^1.0.0, console-control-strings@~1.1.0: 978 + version "1.1.0" 979 + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 980 + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 981 + 982 content-disposition@0.5.3: 983 version "0.5.3" 984 resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" ··· 991 resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 992 integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 993 994 + convert-source-map@^1.5.0: 995 version "1.7.0" 996 resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 997 integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 998 dependencies: 999 safe-buffer "~5.1.1" 1000 1001 + convert-source-map@^1.5.1: 1002 + version "1.8.0" 1003 + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" 1004 + integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 1005 + dependencies: 1006 + safe-buffer "~5.1.1" 1007 + 1008 cookie-signature@1.0.6: 1009 version "1.0.6" 1010 resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" ··· 1072 integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== 1073 1074 csstype@^2.5.2: 1075 + version "2.6.18" 1076 + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.18.tgz#980a8b53085f34af313410af064f2bd241784218" 1077 + integrity sha512-RSU6Hyeg14am3Ah4VZEmeX8H7kLwEEirXe6aU2IPfKNvhXwTflK5HQRDNI0ypQXoqmm+QPyG2IaPuQE5zMwSIQ== 1078 + 1079 + csstype@^3.0.2: 1080 + version "3.0.9" 1081 + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.9.tgz#6410af31b26bd0520933d02cbc64fce9ce3fbf0b" 1082 + integrity sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw== 1083 1084 dashdash@^1.12.0: 1085 version "1.14.1" ··· 1095 dependencies: 1096 ms "2.0.0" 1097 1098 + debug@4: 1099 + version "4.3.2" 1100 + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 1101 + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 1102 + dependencies: 1103 + ms "2.1.2" 1104 + 1105 decode-uri-component@^0.2.0: 1106 version "0.2.0" 1107 resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" ··· 1112 resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1113 integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 1114 1115 define-property@^0.2.5: 1116 version "0.2.5" 1117 resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" ··· 1144 resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" 1145 integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== 1146 1147 + delegates@^1.0.0: 1148 + version "1.0.0" 1149 + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1150 + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 1151 + 1152 depd@~1.1.2: 1153 version "1.1.2" 1154 resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" ··· 1159 resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1160 integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 1161 1162 + detect-libc@^1.0.3: 1163 + version "1.0.3" 1164 + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1165 + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 1166 + 1167 + diff-match-patch@^1.0.0: 1168 version "1.0.4" 1169 resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.4.tgz#6ac4b55237463761c4daf0dc603eb869124744b1" 1170 integrity sha512-Uv3SW8bmH9nAtHKaKSanOQmj2DnlH65fUpcrMdfdaOxUG02QQ4YGZ8AE7kKOMisF7UqvOlGKVYWRvezdncW9lg== 1171 + 1172 + diff-match-patch@^1.0.5: 1173 + version "1.0.5" 1174 + resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.5.tgz#abb584d5f10cd1196dfc55aa03701592ae3f7b37" 1175 + integrity sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw== 1176 1177 diff@^4.0.1: 1178 version "4.0.2" ··· 1191 version "1.1.1" 1192 resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1193 integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 1194 + 1195 + emoji-regex@^8.0.0: 1196 + version "8.0.0" 1197 + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1198 + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1199 1200 emotion@^9.2.5: 1201 version "9.2.12" ··· 1217 dependencies: 1218 is-arrayish "^0.2.1" 1219 1220 es6-object-assign@^1.1.0: 1221 version "1.1.0" 1222 resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" 1223 integrity sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw= 1224 + 1225 + escalade@^3.1.1: 1226 + version "3.1.1" 1227 + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1228 + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1229 1230 escape-html@~1.0.3: 1231 version "1.0.3" ··· 1549 jsonfile "^4.0.0" 1550 universalify "^0.1.0" 1551 1552 + fs-minipass@^2.0.0: 1553 + version "2.1.0" 1554 + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" 1555 + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== 1556 + dependencies: 1557 + minipass "^3.0.0" 1558 + 1559 fs.realpath@^1.0.0: 1560 version "1.0.0" 1561 resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" ··· 1578 inherits "~2.0.0" 1579 mkdirp "0.5" 1580 rimraf "2" 1581 1582 fuse-box@^3.7.1: 1583 version "3.7.1" ··· 1625 dependencies: 1626 source-map "^0.6.1" 1627 1628 + fuse.js@^6.4.6: 1629 + version "6.4.6" 1630 + resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.4.6.tgz#62f216c110e5aa22486aff20be7896d19a059b79" 1631 + integrity sha512-/gYxR/0VpXmWSfZOIPS3rWwU8SHgsRTwWuXhyb2O6s7aRuVtHtxCkR33bNYu3wyLyNx/Wpv0vU7FZy8Vj53VNw== 1632 + 1633 + gauge@~2.7.3: 1634 + version "2.7.4" 1635 + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1636 + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 1637 + dependencies: 1638 + aproba "^1.0.3" 1639 + console-control-strings "^1.0.0" 1640 + has-unicode "^2.0.0" 1641 + object-assign "^4.1.0" 1642 + signal-exit "^3.0.0" 1643 + string-width "^1.0.1" 1644 + strip-ansi "^3.0.1" 1645 + wide-align "^1.1.0" 1646 1647 get-caller-file@^1.0.2: 1648 version "1.0.3" 1649 resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1650 integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 1651 + 1652 + get-caller-file@^2.0.5: 1653 + version "2.0.5" 1654 + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1655 + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1656 1657 get-value@^2.0.3, get-value@^2.0.6: 1658 version "2.0.6" ··· 1735 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1736 integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1737 1738 + has-unicode@^2.0.0: 1739 + version "2.0.1" 1740 + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1741 + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1742 1743 has-value@^0.3.1: 1744 version "0.3.1" ··· 1771 is-number "^3.0.0" 1772 kind-of "^4.0.0" 1773 1774 html@^1.0.0: 1775 version "1.0.0" 1776 resolved "https://registry.yarnpkg.com/html/-/html-1.0.0.tgz#a544fa9ea5492bfb3a2cca8210a10be7b5af1f61" ··· 1809 jsprim "^1.2.2" 1810 sshpk "^1.7.0" 1811 1812 + https-proxy-agent@^5.0.0: 1813 + version "5.0.0" 1814 + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1815 + integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 1816 + dependencies: 1817 + agent-base "6" 1818 + debug "4" 1819 + 1820 iconv-lite@0.4.24, iconv-lite@^0.4.17: 1821 version "0.4.24" 1822 resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" ··· 1916 resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1917 integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1918 1919 is-data-descriptor@^0.1.4: 1920 version "0.1.4" 1921 resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" ··· 1929 integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1930 dependencies: 1931 kind-of "^6.0.0" 1932 1933 is-descriptor@^0.1.0: 1934 version "0.1.6" ··· 1977 resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1978 integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= 1979 1980 + is-fullwidth-code-point@^1.0.0: 1981 + version "1.0.0" 1982 + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1983 + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 1984 + dependencies: 1985 + number-is-nan "^1.0.0" 1986 + 1987 is-fullwidth-code-point@^2.0.0: 1988 version "2.0.0" 1989 resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1990 integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1991 + 1992 + is-fullwidth-code-point@^3.0.0: 1993 + version "3.0.0" 1994 + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1995 + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1996 1997 is-glob@^2.0.0, is-glob@^2.0.1: 1998 version "2.0.1" ··· 2042 resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2043 integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 2044 2045 is-typedarray@~1.0.0: 2046 version "1.0.0" 2047 resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" ··· 2092 argparse "^1.0.7" 2093 esprima "^4.0.0" 2094 2095 + js-yaml@^4.1.0: 2096 + version "4.1.0" 2097 + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 2098 + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 2099 + dependencies: 2100 + argparse "^2.0.1" 2101 + 2102 jsbn@~0.1.0: 2103 version "0.1.1" 2104 resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" ··· 2153 extsprintf "1.3.0" 2154 json-schema "0.2.3" 2155 verror "1.10.0" 2156 + 2157 + keypress@0.1.x: 2158 + version "0.1.0" 2159 + resolved "https://registry.yarnpkg.com/keypress/-/keypress-0.1.0.tgz#4a3188d4291b66b4f65edb99f806aa9ae293592a" 2160 + integrity sha1-SjGI1CkbZrT2XtuZ+AaqmuKTWSo= 2161 2162 kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2163 version "3.2.2" ··· 2229 version "3.5.0" 2230 resolved "https://registry.yarnpkg.com/lodash.flow/-/lodash.flow-3.5.0.tgz#87bf40292b8cf83e4e8ce1a3ae4209e20071675a" 2231 integrity sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o= 2232 + 2233 + lodash.orderby@^4.6.0: 2234 + version "4.6.0" 2235 + resolved "https://registry.yarnpkg.com/lodash.orderby/-/lodash.orderby-4.6.0.tgz#e697f04ce5d78522f54d9338b32b81a3393e4eb3" 2236 + integrity sha1-5pfwTOXXhSL1TZM4syuBozk+TrM= 2237 2238 lodash.uniqby@^4.7.0: 2239 version "4.7.0" 2240 resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302" 2241 integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI= 2242 2243 + lodash@^4.3.0: 2244 version "4.17.15" 2245 resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2246 integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== ··· 2252 dependencies: 2253 js-tokens "^3.0.0 || ^4.0.0" 2254 2255 + lru-cache@^6.0.0: 2256 + version "6.0.0" 2257 + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 2258 + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 2259 + dependencies: 2260 + yallist "^4.0.0" 2261 + 2262 + make-dir@^3.1.0: 2263 + version "3.1.0" 2264 + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 2265 + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 2266 + dependencies: 2267 + semver "^6.0.0" 2268 + 2269 make-error@^1.1.1: 2270 version "1.3.6" 2271 resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" ··· 2403 resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2404 integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2405 2406 + minipass@^3.0.0: 2407 + version "3.1.5" 2408 + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.5.tgz#71f6251b0a33a49c01b3cf97ff77eda030dff732" 2409 + integrity sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw== 2410 + dependencies: 2411 + yallist "^4.0.0" 2412 + 2413 + minizlib@^2.1.1: 2414 + version "2.1.2" 2415 + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" 2416 + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== 2417 + dependencies: 2418 + minipass "^3.0.0" 2419 + yallist "^4.0.0" 2420 + 2421 mixin-deep@^1.2.0: 2422 version "1.3.2" 2423 resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" ··· 2440 dependencies: 2441 minimist "0.0.8" 2442 2443 + mkdirp@^1.0.3: 2444 + version "1.0.4" 2445 + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 2446 + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 2447 + 2448 mock-require@^3.0.3: 2449 version "3.0.3" 2450 resolved "https://registry.yarnpkg.com/mock-require/-/mock-require-3.0.3.tgz#ccd544d9eae81dd576b3f219f69ec867318a1946" ··· 2463 resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2464 integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 2465 2466 + ms@2.1.2: 2467 + version "2.1.2" 2468 + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2469 + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2470 + 2471 mustache@^2.3.0: 2472 version "2.3.2" 2473 resolved "https://registry.yarnpkg.com/mustache/-/mustache-2.3.2.tgz#a6d4d9c3f91d13359ab889a812954f9230a3d0c5" ··· 2515 resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 2516 integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 2517 2518 + node-addon-api@^3.0.2: 2519 + version "3.2.1" 2520 + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" 2521 + integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== 2522 + 2523 + node-fetch@^2.6.1: 2524 + version "2.6.5" 2525 + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.5.tgz#42735537d7f080a7e5f78b6c549b7146be1742fd" 2526 + integrity sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ== 2527 + dependencies: 2528 + whatwg-url "^5.0.0" 2529 + 2530 + nodejieba@^2.2.1: 2531 + version "2.5.2" 2532 + resolved "https://registry.yarnpkg.com/nodejieba/-/nodejieba-2.5.2.tgz#fc929ee29f93c28c639696bac0319bac116a296a" 2533 + integrity sha512-ByskJvaBrQ2eV+5M0OeD80S5NKoGaHc9zi3Z/PTKl/95eac2YF8RmWduq9AknLpkQLrLAIcqurrtC6BzjpKwwg== 2534 + dependencies: 2535 + "@mapbox/node-pre-gyp" "^1.0.4" 2536 + node-addon-api "^3.0.2" 2537 + 2538 + nopt@^5.0.0: 2539 + version "5.0.0" 2540 + resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" 2541 + integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== 2542 + dependencies: 2543 + abbrev "1" 2544 + 2545 nopt@~1.0.10: 2546 version "1.0.10" 2547 resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" ··· 2556 dependencies: 2557 remove-trailing-separator "^1.0.1" 2558 2559 + npmlog@^4.1.2: 2560 + version "4.1.2" 2561 + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2562 + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 2563 + dependencies: 2564 + are-we-there-yet "~1.1.2" 2565 + console-control-strings "~1.1.0" 2566 + gauge "~2.7.3" 2567 + set-blocking "~2.0.0" 2568 + 2569 + number-is-nan@^1.0.0: 2570 + version "1.0.1" 2571 + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2572 + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 2573 + 2574 oauth-sign@~0.9.0: 2575 version "0.9.0" 2576 resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 2577 integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== 2578 2579 + object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 2580 version "4.1.1" 2581 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2582 integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= ··· 2589 copy-descriptor "^0.1.0" 2590 define-property "^0.2.5" 2591 kind-of "^3.0.3" 2592 2593 object-visit@^1.0.0: 2594 version "1.0.1" ··· 2597 dependencies: 2598 isobject "^3.0.0" 2599 2600 object.omit@^2.0.0: 2601 version "2.0.1" 2602 resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" ··· 2612 dependencies: 2613 isobject "^3.0.1" 2614 2615 + object_values@^0.1.2: 2616 + version "0.1.2" 2617 + resolved "https://registry.yarnpkg.com/object_values/-/object_values-0.1.2.tgz#f8fbc31d2e537170a4cbcfb28dd61501b3207334" 2618 + integrity sha512-tZgUiKLraVH+4OAedBYrr4/K6KmAQw2RPNd1AuNdhLsuz5WP3VB7WuiKBWbOcjeqqAjus2ChIIWC8dSfmg7ReA== 2619 2620 on-finished@~2.3.0: 2621 version "2.3.0" ··· 2731 version "2.1.0" 2732 resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2733 integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 2734 + 2735 + pinyin@^2.10.2: 2736 + version "2.10.2" 2737 + resolved "https://registry.yarnpkg.com/pinyin/-/pinyin-2.10.2.tgz#93e3b3cb4430009925163bad10c741778c85b013" 2738 + integrity sha512-qAcp7+2vnjm6sAd0B9pp5JpyvHbYoQO1v9zCeJQMEgyw2VeRi02l0gR22ZBgfjjvZ1c2EGoVjJHJ1h0rwr34Ug== 2739 + dependencies: 2740 + commander "~1.1.1" 2741 + object-assign "^4.0.1" 2742 + optionalDependencies: 2743 + nodejieba "^2.2.1" 2744 2745 posix-character-classes@^0.1.0: 2746 version "0.1.1" ··· 2805 dependencies: 2806 prosemirror-transform "^1.0.0" 2807 2808 + prosemirror-commands@^1.1.10: 2809 + version "1.1.10" 2810 + resolved "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.1.10.tgz#406a6589966e6cd80809cea2d801fb998639b37d" 2811 + integrity sha512-IWyBBXNAd44RM6NnBPljwq+/CM2oYCQJkF+YhKEAZNwzW0uFdGf4qComhjbKZzqFdu6Iub2ZhNsXgwPibA0lCQ== 2812 dependencies: 2813 prosemirror-model "^1.0.0" 2814 prosemirror-state "^1.0.0" ··· 2832 react-json-tree "^0.11.0" 2833 unstated "^2.1.1" 2834 2835 + prosemirror-dropcursor@^1.3.5: 2836 + version "1.3.5" 2837 + resolved "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.3.5.tgz#d2808c17089df0e441ad66016aecc2b6457c8a1f" 2838 + integrity sha512-tNUwcF2lPAkwKBZPZRtbxpwljnODRNZ3eiYloN1DSUqDjMT1nBZm0nejaEMS1TvNQ+3amibUSAiV4hX+jpASFA== 2839 dependencies: 2840 prosemirror-state "^1.0.0" 2841 prosemirror-transform "^1.1.0" ··· 2851 prosemirror-state "^1.0.0" 2852 prosemirror-view "^1.0.0" 2853 2854 + prosemirror-history@^1.2.0: 2855 + version "1.2.0" 2856 + resolved "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.2.0.tgz#04cc4df8d2f7b2a46651a2780de191ada6d465ea" 2857 + integrity sha512-B9v9xtf4fYbKxQwIr+3wtTDNLDZcmMMmGiI3TAPShnUzvo+Rmv1GiUrsQChY1meetHl7rhML2cppF3FTs7f7UQ== 2858 dependencies: 2859 prosemirror-state "^1.2.2" 2860 prosemirror-transform "^1.0.0" 2861 rope-sequence "^1.3.0" 2862 2863 + prosemirror-inputrules@^1.1.3: 2864 + version "1.1.3" 2865 + resolved "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.1.3.tgz#93f9199ca02473259c30d7e352e4c14022d54638" 2866 + integrity sha512-ZaHCLyBtvbyIHv0f5p6boQTIJjlD6o2NPZiEaZWT2DA+j591zS29QQEMT4lBqwcLW3qRSf7ZvoKNbf05YrsStw== 2867 dependencies: 2868 prosemirror-state "^1.0.0" 2869 prosemirror-transform "^1.0.0" ··· 2891 dependencies: 2892 orderedmap "^1.1.0" 2893 2894 + prosemirror-model@^1.14.3: 2895 + version "1.14.3" 2896 + resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.14.3.tgz#a9c250d3c4023ddf10ecb41a0a7a130e9741d37e" 2897 + integrity sha512-yzZlBaSxfUPIIP6U5Edh5zKxJPZ5f7bwZRhiCuH3UYkWhj+P3d8swHsbuAMOu/iDatDc5J/Qs5Mb3++mZf+CvQ== 2898 dependencies: 2899 orderedmap "^1.1.0" 2900 2901 + prosemirror-schema-list@^1.1.5: 2902 + version "1.1.5" 2903 + resolved "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.1.5.tgz#e7ad9e337ea3d77da6d6a4250f3d7bd51ae980a4" 2904 + integrity sha512-9gadhga/wySVfb/iZ2vOpndbG0XroeLw0HkkZN5demNbOea6U5oQtJmvyYWC7ZVf3WkhmVdVsOXrllM9JcC20A== 2905 dependencies: 2906 prosemirror-model "^1.0.0" 2907 prosemirror-transform "^1.0.0" ··· 2914 prosemirror-model "^1.0.0" 2915 prosemirror-transform "^1.0.0" 2916 2917 + prosemirror-state@^1.3.4: 2918 + version "1.3.4" 2919 + resolved "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.4.tgz#4c6b52628216e753fc901c6d2bfd84ce109e8952" 2920 + integrity sha512-Xkkrpd1y/TQ6HKzN3agsQIGRcLckUMA9u3j207L04mt8ToRgpGeyhbVv0HI7omDORIBHjR29b7AwlATFFf2GLA== 2921 dependencies: 2922 prosemirror-model "^1.0.0" 2923 prosemirror-transform "^1.0.0" ··· 2951 dependencies: 2952 prosemirror-model "^1.0.0" 2953 2954 + prosemirror-transform@^1.3.2: 2955 + version "1.3.2" 2956 + resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.3.2.tgz#5620ebe7379e6fae4f34ecc881886cb22ce96579" 2957 + integrity sha512-/G6d/u9Mf6Bv3H1XR8VxhpjmUO75LYmnvj+s3ZfZpakU1hnQbsvCEybml1B3f2IWUAAQRFkbO1PnsbFhLZsYsw== 2958 dependencies: 2959 prosemirror-model "^1.0.0" 2960 ··· 2972 prosemirror-state "^1.0.0" 2973 prosemirror-transform "^1.1.0" 2974 2975 + prosemirror-view@^1.20.1: 2976 + version "1.20.1" 2977 + resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.20.1.tgz#174ba8ca358c73cc05e9a92a3d252bcf181ea337" 2978 + integrity sha512-djWORhy3a706mUH4A2dgEEV0IPZqQd1tFyz/ZVHJNoqhSgq82FwG6dq7uqHeUB2KdVSNfI2yc3rwfqlC/ll2pA== 2979 dependencies: 2980 + prosemirror-model "^1.14.3" 2981 prosemirror-state "^1.0.0" 2982 prosemirror-transform "^1.1.0" 2983 ··· 3066 lodash.debounce "^3.1.1" 3067 prop-types "^15.5.8" 3068 3069 + react-dom@^17.0.2: 3070 + version "17.0.2" 3071 + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" 3072 + integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== 3073 dependencies: 3074 loose-envify "^1.1.0" 3075 object-assign "^4.1.1" 3076 + scheduler "^0.20.2" 3077 3078 react-emotion@^9.2.5: 3079 version "9.2.12" ··· 3097 prop-types "^15.5.8" 3098 react-base16-styling "^0.5.1" 3099 3100 + react-window@^1.8.6: 3101 + version "1.8.6" 3102 + resolved "https://registry.yarnpkg.com/react-window/-/react-window-1.8.6.tgz#d011950ac643a994118632665aad0c6382e2a112" 3103 + integrity sha512-8VwEEYyjz6DCnGBsd+MgkD0KJ2/OXFULyDtorIiTz+QzwoP94tBoA7CnbtyXMm+cCeAUER5KJcPtWl9cpKbOBg== 3104 dependencies: 3105 "@babel/runtime" "^7.0.0" 3106 memoize-one ">=3.1.1 <6" 3107 3108 + react@^17.0.2: 3109 + version "17.0.2" 3110 + resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" 3111 + integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== 3112 dependencies: 3113 loose-envify "^1.1.0" 3114 object-assign "^4.1.1" 3115 3116 + readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.2.2: 3117 version "2.3.7" 3118 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 3119 integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== ··· 3269 tunnel-agent "^0.6.0" 3270 uuid "^3.3.2" 3271 3272 + require-directory@^2.1.1: 3273 + version "2.1.1" 3274 + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3275 + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 3276 + 3277 resolve-from@^4.0.0: 3278 version "4.0.0" 3279 resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" ··· 3311 dependencies: 3312 glob "^7.1.3" 3313 3314 + rimraf@^3.0.2: 3315 + version "3.0.2" 3316 + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 3317 + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 3318 + dependencies: 3319 + glob "^7.1.3" 3320 + 3321 rope-sequence@^1.3.0: 3322 version "1.3.2" 3323 resolved "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.2.tgz#a19e02d72991ca71feb6b5f8a91154e48e3c098b" ··· 3369 resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3370 integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 3371 3372 + scheduler@^0.20.2: 3373 + version "0.20.2" 3374 + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" 3375 + integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== 3376 dependencies: 3377 loose-envify "^1.1.0" 3378 object-assign "^4.1.1" ··· 3387 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 3388 integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 3389 3390 + semver@^6.0.0: 3391 + version "6.3.0" 3392 + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 3393 + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 3394 + 3395 + semver@^7.3.4: 3396 + version "7.3.5" 3397 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 3398 + integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 3399 + dependencies: 3400 + lru-cache "^6.0.0" 3401 + 3402 send@0.17.1: 3403 version "0.17.1" 3404 resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" ··· 3418 range-parser "~1.2.1" 3419 statuses "~1.5.0" 3420 3421 + sentence-splitter@^3.2.2: 3422 + version "3.2.2" 3423 + resolved "https://registry.yarnpkg.com/sentence-splitter/-/sentence-splitter-3.2.2.tgz#b02a28c08bbad4bd3b6ec6f619d50e3fd3596d07" 3424 + integrity sha512-hMvaodgK9Fay928uiQoTMEWjXpCERdKD2uKo7BbSyP+uWTo+wHiRjN+ZShyI99rW0VuoV4Cuw8FUmaRcnpN7Ug== 3425 dependencies: 3426 + "@textlint/ast-node-types" "^4.4.2" 3427 concat-stream "^2.0.0" 3428 + object_values "^0.1.2" 3429 structured-source "^3.0.2" 3430 3431 serve-static@1.14.1: ··· 3437 escape-html "~1.0.3" 3438 parseurl "~1.3.3" 3439 send "0.17.1" 3440 + 3441 + set-blocking@~2.0.0: 3442 + version "2.0.0" 3443 + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3444 + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 3445 3446 set-value@^2.0.0, set-value@^2.0.1: 3447 version "2.0.1" ··· 3467 version "0.0.2" 3468 resolved "https://registry.yarnpkg.com/shorthash/-/shorthash-0.0.2.tgz#59b268eecbde59038b30da202bcfbddeb2c4a4eb" 3469 integrity sha1-WbJo7sveWQOLMNogK8+93rLEpOs= 3470 + 3471 + signal-exit@^3.0.0: 3472 + version "3.0.5" 3473 + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f" 3474 + integrity sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ== 3475 3476 signal-exit@^3.0.2: 3477 version "3.0.2" ··· 3617 inherits "~2.0.1" 3618 readable-stream "^2.0.2" 3619 3620 + string-width@^1.0.1: 3621 + version "1.0.2" 3622 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3623 + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 3624 + dependencies: 3625 + code-point-at "^1.0.0" 3626 + is-fullwidth-code-point "^1.0.0" 3627 + strip-ansi "^3.0.0" 3628 + 3629 + "string-width@^1.0.2 || 2", string-width@^2.1.0: 3630 version "2.1.1" 3631 resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3632 integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== ··· 3634 is-fullwidth-code-point "^2.0.0" 3635 strip-ansi "^4.0.0" 3636 3637 + string-width@^4.1.0, string-width@^4.2.0: 3638 + version "4.2.3" 3639 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 3640 + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 3641 dependencies: 3642 + emoji-regex "^8.0.0" 3643 + is-fullwidth-code-point "^3.0.0" 3644 + strip-ansi "^6.0.1" 3645 3646 string_decoder@^1.1.1: 3647 version "1.3.0" ··· 3662 dependencies: 3663 safe-buffer "~5.1.0" 3664 3665 + strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3666 + version "3.0.1" 3667 + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3668 + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 3669 + dependencies: 3670 + ansi-regex "^2.0.0" 3671 + 3672 strip-ansi@^4.0.0: 3673 version "4.0.0" 3674 resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" ··· 3676 dependencies: 3677 ansi-regex "^3.0.0" 3678 3679 + strip-ansi@^6.0.0, strip-ansi@^6.0.1: 3680 + version "6.0.1" 3681 + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 3682 + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 3683 + dependencies: 3684 + ansi-regex "^5.0.1" 3685 + 3686 structured-source@^3.0.2: 3687 version "3.0.2" 3688 resolved "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz#dd802425e0f53dc4a6e7aca3752901a1ccda7af5" ··· 3706 integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3707 dependencies: 3708 has-flag "^3.0.0" 3709 + 3710 + tar@^6.1.0: 3711 + version "6.1.11" 3712 + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" 3713 + integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== 3714 + dependencies: 3715 + chownr "^2.0.0" 3716 + fs-minipass "^2.0.0" 3717 + minipass "^3.0.0" 3718 + minizlib "^2.1.1" 3719 + mkdirp "^1.0.3" 3720 + yallist "^4.0.0" 3721 3722 terser@^4.6.2: 3723 version "4.6.4" ··· 3804 dependencies: 3805 psl "^1.1.28" 3806 punycode "^2.1.1" 3807 + 3808 + tr46@~0.0.3: 3809 + version "0.0.3" 3810 + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3811 + integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= 3812 + 3813 + transliteration@*, transliteration@^2.2.0: 3814 + version "2.2.0" 3815 + resolved "https://registry.yarnpkg.com/transliteration/-/transliteration-2.2.0.tgz#e6333cc74b25ef4465bc27086ed8465c9a19211d" 3816 + integrity sha512-o29GDWtecNoK4TNfnJQesGluFPiza+U8NoiKrErU8eTNlVgma6w1LV/tTiGo+waFLkhtL9WxrW0lXhZKmm7msQ== 3817 + dependencies: 3818 + yargs "^16.1.0" 3819 3820 "traverse@>=0.3.0 <0.4": 3821 version "0.3.9" ··· 4107 exec-sh "^0.2.0" 4108 minimist "^1.2.0" 4109 4110 + webidl-conversions@^3.0.0: 4111 + version "3.0.1" 4112 + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 4113 + integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= 4114 + 4115 + whatwg-url@^5.0.0: 4116 + version "5.0.0" 4117 + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 4118 + integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= 4119 + dependencies: 4120 + tr46 "~0.0.3" 4121 + webidl-conversions "^3.0.0" 4122 + 4123 + wide-align@^1.1.0: 4124 + version "1.1.3" 4125 + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 4126 + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 4127 + dependencies: 4128 + string-width "^1.0.2 || 2" 4129 + 4130 word-wrap@~1.2.3: 4131 version "1.2.3" 4132 resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 4133 integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 4134 + 4135 + wrap-ansi@^7.0.0: 4136 + version "7.0.0" 4137 + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 4138 + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 4139 + dependencies: 4140 + ansi-styles "^4.0.0" 4141 + string-width "^4.1.0" 4142 + strip-ansi "^6.0.0" 4143 4144 wrappy@1: 4145 version "1.0.2" ··· 4154 options ">=0.0.5" 4155 ultron "1.0.x" 4156 4157 + y18n@^5.0.5: 4158 + version "5.0.8" 4159 + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 4160 + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 4161 + 4162 + yallist@^4.0.0: 4163 + version "4.0.0" 4164 + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 4165 + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 4166 + 4167 yaml@^1.7.2: 4168 version "1.7.2" 4169 resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2" 4170 integrity sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw== 4171 dependencies: 4172 "@babel/runtime" "^7.6.3" 4173 + 4174 + yargs-parser@^20.2.2: 4175 + version "20.2.9" 4176 + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 4177 + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 4178 + 4179 + yargs@^16.1.0: 4180 + version "16.2.0" 4181 + resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 4182 + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 4183 + dependencies: 4184 + cliui "^7.0.2" 4185 + escalade "^3.1.1" 4186 + get-caller-file "^2.0.5" 4187 + require-directory "^2.1.1" 4188 + string-width "^4.2.0" 4189 + y18n "^5.0.5" 4190 + yargs-parser "^20.2.2" 4191 4192 yn@3.1.1: 4193 version "3.1.1"
+1206 -750
pkgs/applications/editors/rstudio/yarndeps.nix
··· 6 path = fetchurl { 7 name = "_babel_code_frame___code_frame_7.8.3.tgz"; 8 url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz"; 9 - sha1 = "33e25903d7481181534e12ec0a25f16b6fcf419e"; 10 }; 11 } 12 { 13 - name = "_babel_helper_module_imports___helper_module_imports_7.8.3.tgz"; 14 path = fetchurl { 15 - name = "_babel_helper_module_imports___helper_module_imports_7.8.3.tgz"; 16 - url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz"; 17 - sha1 = "7fe39589b39c016331b6b8c3f441e8f0b1419498"; 18 }; 19 } 20 { ··· 22 path = fetchurl { 23 name = "_babel_highlight___highlight_7.8.3.tgz"; 24 url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz"; 25 - sha1 = "28f173d04223eaaa59bc1d439a3836e6d1265797"; 26 }; 27 } 28 { ··· 30 path = fetchurl { 31 name = "_babel_runtime___runtime_7.9.6.tgz"; 32 url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz"; 33 - sha1 = "a9102eb5cadedf3f31d08a9ecf294af7827ea29f"; 34 }; 35 } 36 { ··· 38 path = fetchurl { 39 name = "_babel_runtime___runtime_7.8.4.tgz"; 40 url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.4.tgz"; 41 - sha1 = "d79f5a2040f7caa24d53e563aad49cbc05581308"; 42 }; 43 } 44 { 45 - name = "_babel_types___types_7.8.6.tgz"; 46 path = fetchurl { 47 - name = "_babel_types___types_7.8.6.tgz"; 48 - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.8.6.tgz"; 49 - sha1 = "629ecc33c2557fcde7126e58053127afdb3e6d01"; 50 }; 51 } 52 { ··· 54 path = fetchurl { 55 name = "_emotion_babel_utils___babel_utils_0.6.10.tgz"; 56 url = "https://registry.yarnpkg.com/@emotion/babel-utils/-/babel-utils-0.6.10.tgz"; 57 - sha1 = "83dbf3dfa933fae9fc566e54fbb45f14674c6ccc"; 58 }; 59 } 60 { ··· 62 path = fetchurl { 63 name = "_emotion_hash___hash_0.6.6.tgz"; 64 url = "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.6.6.tgz"; 65 - sha1 = "62266c5f0eac6941fece302abad69f2ee7e25e44"; 66 }; 67 } 68 { ··· 70 path = fetchurl { 71 name = "_emotion_is_prop_valid___is_prop_valid_0.6.8.tgz"; 72 url = "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.6.8.tgz"; 73 - sha1 = "68ad02831da41213a2089d2cab4e8ac8b30cbd85"; 74 }; 75 } 76 { ··· 78 path = fetchurl { 79 name = "_emotion_memoize___memoize_0.6.6.tgz"; 80 url = "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.6.6.tgz"; 81 - sha1 = "004b98298d04c7ca3b4f50ca2035d4f60d2eed1b"; 82 }; 83 } 84 { ··· 86 path = fetchurl { 87 name = "_emotion_serialize___serialize_0.9.1.tgz"; 88 url = "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.9.1.tgz"; 89 - sha1 = "a494982a6920730dba6303eb018220a2b629c145"; 90 }; 91 } 92 { ··· 94 path = fetchurl { 95 name = "_emotion_stylis___stylis_0.7.1.tgz"; 96 url = "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.7.1.tgz"; 97 - sha1 = "50f63225e712d99e2b2b39c19c70fff023793ca5"; 98 }; 99 } 100 { ··· 102 path = fetchurl { 103 name = "_emotion_unitless___unitless_0.6.7.tgz"; 104 url = "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.6.7.tgz"; 105 - sha1 = "53e9f1892f725b194d5e6a1684a7b394df592397"; 106 }; 107 } 108 { ··· 110 path = fetchurl { 111 name = "_emotion_utils___utils_0.8.2.tgz"; 112 url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.8.2.tgz"; 113 - sha1 = "576ff7fb1230185b619a75d258cbc98f0867a8dc"; 114 }; 115 } 116 { 117 - name = "_textlint_ast_node_types___ast_node_types_4.3.4.tgz"; 118 path = fetchurl { 119 - name = "_textlint_ast_node_types___ast_node_types_4.3.4.tgz"; 120 - url = "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.3.4.tgz"; 121 - sha1 = "f6596c45c32c85dc06915c3077bb7686033efd32"; 122 }; 123 } 124 { ··· 126 path = fetchurl { 127 name = "_types_ace___ace_0.0.43.tgz"; 128 url = "https://registry.yarnpkg.com/@types/ace/-/ace-0.0.43.tgz"; 129 - sha1 = "9f0916174b6060dabbccd36ba4868ea769a1c633"; 130 }; 131 } 132 { 133 - name = "_types_clipboard___clipboard_2.0.1.tgz"; 134 path = fetchurl { 135 - name = "_types_clipboard___clipboard_2.0.1.tgz"; 136 - url = "https://registry.yarnpkg.com/@types/clipboard/-/clipboard-2.0.1.tgz"; 137 - sha1 = "75a74086c293d75b12bc93ff13bc7797fef05a40"; 138 }; 139 } 140 { ··· 142 path = fetchurl { 143 name = "_types_diff_match_patch___diff_match_patch_1.0.32.tgz"; 144 url = "https://registry.yarnpkg.com/@types/diff-match-patch/-/diff-match-patch-1.0.32.tgz"; 145 - sha1 = "d9c3b8c914aa8229485351db4865328337a3d09f"; 146 }; 147 } 148 { 149 - name = "_types_js_yaml___js_yaml_3.12.3.tgz"; 150 path = fetchurl { 151 - name = "_types_js_yaml___js_yaml_3.12.3.tgz"; 152 - url = "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-3.12.3.tgz"; 153 - sha1 = "abf383c5b639d0aa8b8c4a420d6a85f703357d6c"; 154 }; 155 } 156 { ··· 158 path = fetchurl { 159 name = "_types_lodash.debounce___lodash.debounce_4.0.6.tgz"; 160 url = "https://registry.yarnpkg.com/@types/lodash.debounce/-/lodash.debounce-4.0.6.tgz"; 161 - sha1 = "c5a2326cd3efc46566c47e4c0aa248dc0ee57d60"; 162 }; 163 } 164 { ··· 166 path = fetchurl { 167 name = "_types_lodash.uniqby___lodash.uniqby_4.7.6.tgz"; 168 url = "https://registry.yarnpkg.com/@types/lodash.uniqby/-/lodash.uniqby-4.7.6.tgz"; 169 - sha1 = "672827a701403f07904fe37f0721ae92abfa80e8"; 170 }; 171 } 172 { ··· 174 path = fetchurl { 175 name = "_types_lodash___lodash_4.14.154.tgz"; 176 url = "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.154.tgz"; 177 - sha1 = "069e3c703fdb264e67be9e03b20a640bc0198ecc"; 178 }; 179 } 180 { ··· 182 path = fetchurl { 183 name = "_types_node___node_14.0.4.tgz"; 184 url = "https://registry.yarnpkg.com/@types/node/-/node-14.0.4.tgz"; 185 - sha1 = "43a63fc5edce226bed106b31b875165256271107"; 186 }; 187 } 188 { ··· 190 path = fetchurl { 191 name = "_types_orderedmap___orderedmap_1.0.0.tgz"; 192 url = "https://registry.yarnpkg.com/@types/orderedmap/-/orderedmap-1.0.0.tgz"; 193 - sha1 = "807455a192bba52cbbb4517044bc82bdbfa8c596"; 194 }; 195 } 196 { ··· 198 path = fetchurl { 199 name = "_types_parse_json___parse_json_4.0.0.tgz"; 200 url = "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz"; 201 - sha1 = "2f8bb441434d163b35fb8ffdccd7138927ffb8c0"; 202 }; 203 } 204 { ··· 206 path = fetchurl { 207 name = "_types_prop_types___prop_types_15.7.3.tgz"; 208 url = "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz"; 209 - sha1 = "2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"; 210 }; 211 } 212 { ··· 214 path = fetchurl { 215 name = "_types_prosemirror_commands___prosemirror_commands_1.0.3.tgz"; 216 url = "https://registry.yarnpkg.com/@types/prosemirror-commands/-/prosemirror-commands-1.0.3.tgz"; 217 - sha1 = "e9fa5653cffd1c75c260594cf3ec5244c9004dbf"; 218 }; 219 } 220 { 221 - name = "_types_prosemirror_dev_tools___prosemirror_dev_tools_2.1.0.tgz"; 222 path = fetchurl { 223 - name = "_types_prosemirror_dev_tools___prosemirror_dev_tools_2.1.0.tgz"; 224 - url = "https://registry.yarnpkg.com/@types/prosemirror-dev-tools/-/prosemirror-dev-tools-2.1.0.tgz"; 225 - sha1 = "91e2ef4f36129f5155f924296e306de187e86bdb"; 226 }; 227 } 228 { 229 - name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.0.tgz"; 230 path = fetchurl { 231 - name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.0.tgz"; 232 - url = "https://registry.yarnpkg.com/@types/prosemirror-dropcursor/-/prosemirror-dropcursor-1.0.0.tgz"; 233 - sha1 = "2df872bc6431a9f06bc1a4a0eac7c2dc527e7f12"; 234 }; 235 } 236 { 237 - name = "_types_prosemirror_gapcursor___prosemirror_gapcursor_1.0.1.tgz"; 238 path = fetchurl { 239 - name = "_types_prosemirror_gapcursor___prosemirror_gapcursor_1.0.1.tgz"; 240 - url = "https://registry.yarnpkg.com/@types/prosemirror-gapcursor/-/prosemirror-gapcursor-1.0.1.tgz"; 241 - sha1 = "56a6274ef39f62c339adcc64305294b800211a5e"; 242 }; 243 } 244 { 245 - name = "_types_prosemirror_history___prosemirror_history_1.0.1.tgz"; 246 path = fetchurl { 247 - name = "_types_prosemirror_history___prosemirror_history_1.0.1.tgz"; 248 - url = "https://registry.yarnpkg.com/@types/prosemirror-history/-/prosemirror-history-1.0.1.tgz"; 249 - sha1 = "b8d7595f73788b63fc9f2b57a763ba8375abfe87"; 250 }; 251 } 252 { 253 - name = "_types_prosemirror_inputrules___prosemirror_inputrules_1.0.3.tgz"; 254 path = fetchurl { 255 - name = "_types_prosemirror_inputrules___prosemirror_inputrules_1.0.3.tgz"; 256 - url = "https://registry.yarnpkg.com/@types/prosemirror-inputrules/-/prosemirror-inputrules-1.0.3.tgz"; 257 - sha1 = "3f8f07921f692b6c7e4781fa426aee3e76b9018c"; 258 }; 259 } 260 { 261 - name = "_types_prosemirror_keymap___prosemirror_keymap_1.0.3.tgz"; 262 path = fetchurl { 263 - name = "_types_prosemirror_keymap___prosemirror_keymap_1.0.3.tgz"; 264 - url = "https://registry.yarnpkg.com/@types/prosemirror-keymap/-/prosemirror-keymap-1.0.3.tgz"; 265 - sha1 = "09cc469a69222a4c8a3d415d02eeb459bb74269c"; 266 }; 267 } 268 { ··· 270 path = fetchurl { 271 name = "_types_prosemirror_model___prosemirror_model_1.7.2.tgz"; 272 url = "https://registry.yarnpkg.com/@types/prosemirror-model/-/prosemirror-model-1.7.2.tgz"; 273 - sha1 = "9c7aff2fd62f0f56eb76e2e0eb27bf6996e6c28a"; 274 }; 275 } 276 { 277 - name = "_types_prosemirror_schema_list___prosemirror_schema_list_1.0.1.tgz"; 278 path = fetchurl { 279 - name = "_types_prosemirror_schema_list___prosemirror_schema_list_1.0.1.tgz"; 280 - url = "https://registry.yarnpkg.com/@types/prosemirror-schema-list/-/prosemirror-schema-list-1.0.1.tgz"; 281 - sha1 = "7f53e3c0326b1359755f3971b8c448d98b722f21"; 282 }; 283 } 284 { ··· 286 path = fetchurl { 287 name = "_types_prosemirror_state___prosemirror_state_1.2.3.tgz"; 288 url = "https://registry.yarnpkg.com/@types/prosemirror-state/-/prosemirror-state-1.2.3.tgz"; 289 - sha1 = "7f5f871acf7b8c22e1862ff0068f9bf7e9682c0e"; 290 - }; 291 - } 292 - { 293 - name = "_types_prosemirror_state___prosemirror_state_1.2.5.tgz"; 294 - path = fetchurl { 295 - name = "_types_prosemirror_state___prosemirror_state_1.2.5.tgz"; 296 - url = "https://registry.yarnpkg.com/@types/prosemirror-state/-/prosemirror-state-1.2.5.tgz"; 297 - sha1 = "a91304e9aab6e71f868e23b3a1ae514a75033f8f"; 298 }; 299 } 300 { ··· 302 path = fetchurl { 303 name = "_types_prosemirror_tables___prosemirror_tables_0.9.1.tgz"; 304 url = "https://registry.yarnpkg.com/@types/prosemirror-tables/-/prosemirror-tables-0.9.1.tgz"; 305 - sha1 = "d2203330f0fa1161c04152bf02c39e152082d408"; 306 }; 307 } 308 { ··· 310 path = fetchurl { 311 name = "_types_prosemirror_transform___prosemirror_transform_1.1.1.tgz"; 312 url = "https://registry.yarnpkg.com/@types/prosemirror-transform/-/prosemirror-transform-1.1.1.tgz"; 313 - sha1 = "5a0de16e8e0123b4c3d9559235e19f39cee85e5c"; 314 }; 315 } 316 { ··· 318 path = fetchurl { 319 name = "_types_prosemirror_view___prosemirror_view_1.11.2.tgz"; 320 url = "https://registry.yarnpkg.com/@types/prosemirror-view/-/prosemirror-view-1.11.2.tgz"; 321 - sha1 = "58af5dcb7de20b7de874de99147552d5627209a1"; 322 }; 323 } 324 { 325 - name = "_types_react_dom___react_dom_16.9.6.tgz"; 326 path = fetchurl { 327 - name = "_types_react_dom___react_dom_16.9.6.tgz"; 328 - url = "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.6.tgz"; 329 - sha1 = "9e7f83d90566521cc2083be2277c6712dcaf754c"; 330 }; 331 } 332 { 333 - name = "_types_react_window___react_window_1.8.2.tgz"; 334 path = fetchurl { 335 - name = "_types_react_window___react_window_1.8.2.tgz"; 336 - url = "https://registry.yarnpkg.com/@types/react-window/-/react-window-1.8.2.tgz"; 337 - sha1 = "a5a6b2762ce73ffaab7911ee1397cf645f2459fe"; 338 }; 339 } 340 { ··· 342 path = fetchurl { 343 name = "_types_react___react_16.9.32.tgz"; 344 url = "https://registry.yarnpkg.com/@types/react/-/react-16.9.32.tgz"; 345 - sha1 = "f6368625b224604148d1ddf5920e4fefbd98d383"; 346 }; 347 } 348 { ··· 350 path = fetchurl { 351 name = "_types_unzip___unzip_0.1.1.tgz"; 352 url = "https://registry.yarnpkg.com/@types/unzip/-/unzip-0.1.1.tgz"; 353 - sha1 = "96e80dc5e2917a769c8be01aa49c4fe660e7bab3"; 354 }; 355 } 356 { 357 - name = "_types_zenscroll___zenscroll_4.0.0.tgz"; 358 path = fetchurl { 359 - name = "_types_zenscroll___zenscroll_4.0.0.tgz"; 360 - url = "https://registry.yarnpkg.com/@types/zenscroll/-/zenscroll-4.0.0.tgz"; 361 - sha1 = "9acc7df6c87cc9e064f5a6230df499835dee1972"; 362 }; 363 } 364 { ··· 366 path = fetchurl { 367 name = "abbrev___abbrev_1.1.1.tgz"; 368 url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz"; 369 - sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; 370 }; 371 } 372 { ··· 374 path = fetchurl { 375 name = "accepts___accepts_1.3.7.tgz"; 376 url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz"; 377 - sha1 = "531bc726517a3b2b41f850021c6cc15eaab507cd"; 378 }; 379 } 380 { ··· 382 path = fetchurl { 383 name = "acorn_jsx___acorn_jsx_4.1.1.tgz"; 384 url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz"; 385 - sha1 = "e8e41e48ea2fe0c896740610ab6a4ffd8add225e"; 386 }; 387 } 388 { ··· 390 path = fetchurl { 391 name = "acorn___acorn_5.7.3.tgz"; 392 url = "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz"; 393 - sha1 = "67aa231bf8812974b85235a96771eb6bd07ea279"; 394 }; 395 } 396 { ··· 398 path = fetchurl { 399 name = "ajax_request___ajax_request_1.2.3.tgz"; 400 url = "https://registry.yarnpkg.com/ajax-request/-/ajax-request-1.2.3.tgz"; 401 - sha1 = "99fcbec1d6d2792f85fa949535332bd14f5f3790"; 402 }; 403 } 404 { ··· 406 path = fetchurl { 407 name = "ajv___ajv_6.12.0.tgz"; 408 url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz"; 409 - sha1 = "06d60b96d87b8454a5adaba86e7854da629db4b7"; 410 }; 411 } 412 { ··· 414 path = fetchurl { 415 name = "ansi_escapes___ansi_escapes_3.2.0.tgz"; 416 url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz"; 417 - sha1 = "8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"; 418 }; 419 } 420 { ··· 422 path = fetchurl { 423 name = "ansi_regex___ansi_regex_3.0.0.tgz"; 424 url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz"; 425 - sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 426 }; 427 } 428 { ··· 430 path = fetchurl { 431 name = "ansi_styles___ansi_styles_3.2.1.tgz"; 432 url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; 433 - sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d"; 434 }; 435 } 436 { ··· 438 path = fetchurl { 439 name = "ansi___ansi_0.3.1.tgz"; 440 url = "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz"; 441 - sha1 = "0c42d4fb17160d5a9af1e484bace1c66922c1b21"; 442 }; 443 } 444 { ··· 446 path = fetchurl { 447 name = "anymatch___anymatch_1.3.2.tgz"; 448 url = "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz"; 449 - sha1 = "553dcb8f91e3c889845dfdba34c77721b90b9d7a"; 450 }; 451 } 452 { ··· 454 path = fetchurl { 455 name = "app_root_path___app_root_path_1.4.0.tgz"; 456 url = "https://registry.yarnpkg.com/app-root-path/-/app-root-path-1.4.0.tgz"; 457 - sha1 = "6335d865c9640d0fad99004e5a79232238e92dfa"; 458 }; 459 } 460 { ··· 462 path = fetchurl { 463 name = "app_root_path___app_root_path_2.2.1.tgz"; 464 url = "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.2.1.tgz"; 465 - sha1 = "d0df4a682ee408273583d43f6f79e9892624bc9a"; 466 }; 467 } 468 { ··· 470 path = fetchurl { 471 name = "arg___arg_4.1.3.tgz"; 472 url = "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz"; 473 - sha1 = "269fc7ad5b8e42cb63c896d5666017261c144089"; 474 }; 475 } 476 { ··· 478 path = fetchurl { 479 name = "argparse___argparse_1.0.10.tgz"; 480 url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; 481 - sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911"; 482 }; 483 } 484 { ··· 486 path = fetchurl { 487 name = "arr_diff___arr_diff_2.0.0.tgz"; 488 url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz"; 489 - sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf"; 490 }; 491 } 492 { ··· 494 path = fetchurl { 495 name = "arr_diff___arr_diff_4.0.0.tgz"; 496 url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz"; 497 - sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; 498 }; 499 } 500 { ··· 502 path = fetchurl { 503 name = "arr_flatten___arr_flatten_1.1.0.tgz"; 504 url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz"; 505 - sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1"; 506 }; 507 } 508 { ··· 510 path = fetchurl { 511 name = "arr_union___arr_union_3.1.0.tgz"; 512 url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz"; 513 - sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; 514 }; 515 } 516 { ··· 518 path = fetchurl { 519 name = "array_flatten___array_flatten_1.1.1.tgz"; 520 url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz"; 521 - sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; 522 }; 523 } 524 { ··· 526 path = fetchurl { 527 name = "array_unique___array_unique_0.2.1.tgz"; 528 url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz"; 529 - sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53"; 530 }; 531 } 532 { ··· 534 path = fetchurl { 535 name = "array_unique___array_unique_0.3.2.tgz"; 536 url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz"; 537 - sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; 538 }; 539 } 540 { ··· 542 path = fetchurl { 543 name = "asn1___asn1_0.2.4.tgz"; 544 url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz"; 545 - sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136"; 546 }; 547 } 548 { ··· 550 path = fetchurl { 551 name = "assert_plus___assert_plus_1.0.0.tgz"; 552 url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz"; 553 - sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; 554 }; 555 } 556 { ··· 558 path = fetchurl { 559 name = "assign_symbols___assign_symbols_1.0.0.tgz"; 560 url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz"; 561 - sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 562 }; 563 } 564 { ··· 566 path = fetchurl { 567 name = "async_each___async_each_1.0.3.tgz"; 568 url = "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz"; 569 - sha1 = "b727dbf87d7651602f06f4d4ac387f47d91b0cbf"; 570 }; 571 } 572 { ··· 574 path = fetchurl { 575 name = "asynckit___asynckit_0.4.0.tgz"; 576 url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz"; 577 - sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 578 }; 579 } 580 { ··· 582 path = fetchurl { 583 name = "atob___atob_2.1.2.tgz"; 584 url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz"; 585 - sha1 = "6d9517eb9e030d2436666651e86bd9f6f13533c9"; 586 }; 587 } 588 { ··· 590 path = fetchurl { 591 name = "aws_sign2___aws_sign2_0.7.0.tgz"; 592 url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz"; 593 - sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 594 }; 595 } 596 { ··· 598 path = fetchurl { 599 name = "aws4___aws4_1.9.1.tgz"; 600 url = "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz"; 601 - sha1 = "7e33d8f7d449b3f673cd72deb9abdc552dbe528e"; 602 }; 603 } 604 { ··· 606 path = fetchurl { 607 name = "babel_plugin_emotion___babel_plugin_emotion_9.2.11.tgz"; 608 url = "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz"; 609 - sha1 = "319c005a9ee1d15bb447f59fe504c35fd5807728"; 610 }; 611 } 612 { ··· 614 path = fetchurl { 615 name = "babel_plugin_macros___babel_plugin_macros_2.8.0.tgz"; 616 url = "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz"; 617 - sha1 = "0f958a7cc6556b1e65344465d99111a1e5e10138"; 618 }; 619 } 620 { ··· 622 path = fetchurl { 623 name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz"; 624 url = "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"; 625 - sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"; 626 }; 627 } 628 { ··· 630 path = fetchurl { 631 name = "babel_runtime___babel_runtime_6.26.0.tgz"; 632 url = "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz"; 633 - sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 634 }; 635 } 636 { ··· 638 path = fetchurl { 639 name = "balanced_match___balanced_match_1.0.0.tgz"; 640 url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; 641 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 642 }; 643 } 644 { ··· 646 path = fetchurl { 647 name = "base16___base16_1.0.0.tgz"; 648 url = "https://registry.yarnpkg.com/base16/-/base16-1.0.0.tgz"; 649 - sha1 = "e297f60d7ec1014a7a971a39ebc8a98c0b681e70"; 650 }; 651 } 652 { ··· 654 path = fetchurl { 655 name = "base64_img___base64_img_1.0.4.tgz"; 656 url = "https://registry.yarnpkg.com/base64-img/-/base64-img-1.0.4.tgz"; 657 - sha1 = "3e22d55d6c74a24553d840d2b1bc12a7db078d35"; 658 }; 659 } 660 { ··· 662 path = fetchurl { 663 name = "base64_js___base64_js_1.3.1.tgz"; 664 url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz"; 665 - sha1 = "58ece8cb75dd07e71ed08c736abc5fac4dbf8df1"; 666 }; 667 } 668 { ··· 670 path = fetchurl { 671 name = "base___base_0.11.2.tgz"; 672 url = "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz"; 673 - sha1 = "7bde5ced145b6d551a90db87f83c558b4eb48a8f"; 674 }; 675 } 676 { ··· 678 path = fetchurl { 679 name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz"; 680 url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; 681 - sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; 682 }; 683 } 684 { 685 - name = "biblatex_csl_converter___biblatex_csl_converter_1.9.1.tgz"; 686 path = fetchurl { 687 - name = "biblatex_csl_converter___biblatex_csl_converter_1.9.1.tgz"; 688 - url = "https://registry.yarnpkg.com/biblatex-csl-converter/-/biblatex-csl-converter-1.9.1.tgz"; 689 - sha1 = "50aacfef172997f1c98d72837ffdd3b19c62f8c4"; 690 }; 691 } 692 { ··· 694 path = fetchurl { 695 name = "binary_extensions___binary_extensions_1.13.1.tgz"; 696 url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz"; 697 - sha1 = "598afe54755b2868a5330d2aff9d4ebb53209b65"; 698 }; 699 } 700 { ··· 702 path = fetchurl { 703 name = "binary___binary_0.3.0.tgz"; 704 url = "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz"; 705 - sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79"; 706 }; 707 } 708 { ··· 710 path = fetchurl { 711 name = "bindings___bindings_1.5.0.tgz"; 712 url = "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz"; 713 - sha1 = "10353c9e945334bc0511a6d90b38fbc7c9c504df"; 714 }; 715 } 716 { ··· 718 path = fetchurl { 719 name = "body_parser___body_parser_1.19.0.tgz"; 720 url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz"; 721 - sha1 = "96b2709e57c9c4e09a6fd66a8fd979844f69f08a"; 722 }; 723 } 724 { ··· 726 path = fetchurl { 727 name = "boundary___boundary_1.0.1.tgz"; 728 url = "https://registry.yarnpkg.com/boundary/-/boundary-1.0.1.tgz"; 729 - sha1 = "4d67dc2602c0cc16dd9bce7ebf87e948290f5812"; 730 }; 731 } 732 { ··· 734 path = fetchurl { 735 name = "bowser___bowser_2.9.0.tgz"; 736 url = "https://registry.yarnpkg.com/bowser/-/bowser-2.9.0.tgz"; 737 - sha1 = "3bed854233b419b9a7422d9ee3e85504373821c9"; 738 }; 739 } 740 { ··· 742 path = fetchurl { 743 name = "brace_expansion___brace_expansion_1.1.11.tgz"; 744 url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; 745 - sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd"; 746 }; 747 } 748 { ··· 750 path = fetchurl { 751 name = "braces___braces_1.8.5.tgz"; 752 url = "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz"; 753 - sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7"; 754 }; 755 } 756 { ··· 758 path = fetchurl { 759 name = "braces___braces_2.3.2.tgz"; 760 url = "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz"; 761 - sha1 = "5979fd3f14cd531565e5fa2df1abfff1dfaee729"; 762 }; 763 } 764 { ··· 766 path = fetchurl { 767 name = "buffer_from___buffer_from_1.1.1.tgz"; 768 url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; 769 - sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef"; 770 }; 771 } 772 { ··· 774 path = fetchurl { 775 name = "buffers___buffers_0.1.1.tgz"; 776 url = "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz"; 777 - sha1 = "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb"; 778 }; 779 } 780 { ··· 782 path = fetchurl { 783 name = "builtin_modules___builtin_modules_1.1.1.tgz"; 784 url = "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz"; 785 - sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f"; 786 }; 787 } 788 { ··· 790 path = fetchurl { 791 name = "bytes___bytes_3.1.0.tgz"; 792 url = "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz"; 793 - sha1 = "f6cf7933a360e0588fa9fde85651cdc7f805d1f6"; 794 }; 795 } 796 { ··· 798 path = fetchurl { 799 name = "cache_base___cache_base_1.0.1.tgz"; 800 url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz"; 801 - sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2"; 802 }; 803 } 804 { ··· 806 path = fetchurl { 807 name = "callsites___callsites_3.1.0.tgz"; 808 url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz"; 809 - sha1 = "b3630abd8943432f54b3f0519238e33cd7df2f73"; 810 }; 811 } 812 { ··· 814 path = fetchurl { 815 name = "caseless___caseless_0.12.0.tgz"; 816 url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz"; 817 - sha1 = "1b681c21ff84033c826543090689420d187151dc"; 818 }; 819 } 820 { ··· 822 path = fetchurl { 823 name = "chain_able___chain_able_1.0.1.tgz"; 824 url = "https://registry.yarnpkg.com/chain-able/-/chain-able-1.0.1.tgz"; 825 - sha1 = "b48ac9bdc18f2192ec730abc66609f90aab5605f"; 826 }; 827 } 828 { ··· 830 path = fetchurl { 831 name = "chain_able___chain_able_3.0.0.tgz"; 832 url = "https://registry.yarnpkg.com/chain-able/-/chain-able-3.0.0.tgz"; 833 - sha1 = "dcffe8b04f3da210941a23843bc1332bb288ca9f"; 834 }; 835 } 836 { ··· 838 path = fetchurl { 839 name = "chainsaw___chainsaw_0.1.0.tgz"; 840 url = "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz"; 841 - sha1 = "5eab50b28afe58074d0d58291388828b5e5fbc98"; 842 }; 843 } 844 { ··· 846 path = fetchurl { 847 name = "chalk___chalk_2.4.2.tgz"; 848 url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; 849 - sha1 = "cd42541677a54333cf541a49108c1432b44c9424"; 850 }; 851 } 852 { ··· 854 path = fetchurl { 855 name = "chardet___chardet_0.4.2.tgz"; 856 url = "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz"; 857 - sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"; 858 }; 859 } 860 { ··· 862 path = fetchurl { 863 name = "chokidar___chokidar_1.7.0.tgz"; 864 url = "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz"; 865 - sha1 = "798e689778151c8076b4b360e5edd28cda2bb468"; 866 }; 867 } 868 { ··· 870 path = fetchurl { 871 name = "class_utils___class_utils_0.3.6.tgz"; 872 url = "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz"; 873 - sha1 = "f93369ae8b9a7ce02fd41faad0ca83033190c463"; 874 }; 875 } 876 { ··· 878 path = fetchurl { 879 name = "clean_css___clean_css_4.2.3.tgz"; 880 url = "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz"; 881 - sha1 = "507b5de7d97b48ee53d84adb0160ff6216380f78"; 882 }; 883 } 884 { ··· 886 path = fetchurl { 887 name = "cli_cursor___cli_cursor_2.1.0.tgz"; 888 url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz"; 889 - sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; 890 }; 891 } 892 { ··· 894 path = fetchurl { 895 name = "cli_width___cli_width_2.2.0.tgz"; 896 url = "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz"; 897 - sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639"; 898 }; 899 } 900 { 901 - name = "clipboard___clipboard_2.0.6.tgz"; 902 path = fetchurl { 903 - name = "clipboard___clipboard_2.0.6.tgz"; 904 - url = "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz"; 905 - sha1 = "52921296eec0fdf77ead1749421b21c968647376"; 906 }; 907 } 908 { ··· 910 path = fetchurl { 911 name = "collection_visit___collection_visit_1.0.0.tgz"; 912 url = "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz"; 913 - sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; 914 }; 915 } 916 { ··· 918 path = fetchurl { 919 name = "color_convert___color_convert_1.9.3.tgz"; 920 url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; 921 - sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8"; 922 }; 923 } 924 { ··· 926 path = fetchurl { 927 name = "color_name___color_name_1.1.3.tgz"; 928 url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; 929 - sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 930 }; 931 } 932 { ··· 934 path = fetchurl { 935 name = "combined_stream___combined_stream_1.0.8.tgz"; 936 url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz"; 937 - sha1 = "c3d45a8b34fd730631a110a8a2520682b31d5a7f"; 938 }; 939 } 940 { ··· 942 path = fetchurl { 943 name = "commander___commander_2.20.3.tgz"; 944 url = "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz"; 945 - sha1 = "fd485e84c03eb4881c20722ba48035e8531aeb33"; 946 }; 947 } 948 { ··· 950 path = fetchurl { 951 name = "component_emitter___component_emitter_1.3.0.tgz"; 952 url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz"; 953 - sha1 = "16e4070fba8ae29b679f2215853ee181ab2eabc0"; 954 }; 955 } 956 { ··· 958 path = fetchurl { 959 name = "concat_map___concat_map_0.0.1.tgz"; 960 url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; 961 - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 962 }; 963 } 964 { ··· 966 path = fetchurl { 967 name = "concat_stream___concat_stream_1.6.2.tgz"; 968 url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz"; 969 - sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"; 970 }; 971 } 972 { ··· 974 path = fetchurl { 975 name = "concat_stream___concat_stream_2.0.0.tgz"; 976 url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz"; 977 - sha1 = "414cf5af790a48c60ab9be4527d56d5e41133cb1"; 978 }; 979 } 980 { ··· 982 path = fetchurl { 983 name = "content_disposition___content_disposition_0.5.3.tgz"; 984 url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz"; 985 - sha1 = "e130caf7e7279087c5616c2007d0485698984fbd"; 986 }; 987 } 988 { ··· 990 path = fetchurl { 991 name = "content_type___content_type_1.0.4.tgz"; 992 url = "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz"; 993 - sha1 = "e138cc75e040c727b1966fe5e5f8c9aee256fe3b"; 994 }; 995 } 996 { ··· 998 path = fetchurl { 999 name = "convert_source_map___convert_source_map_1.7.0.tgz"; 1000 url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz"; 1001 - sha1 = "17a2cb882d7f77d3490585e2ce6c524424a3a442"; 1002 }; 1003 } 1004 { ··· 1006 path = fetchurl { 1007 name = "cookie_signature___cookie_signature_1.0.6.tgz"; 1008 url = "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz"; 1009 - sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; 1010 }; 1011 } 1012 { ··· 1014 path = fetchurl { 1015 name = "cookie___cookie_0.4.0.tgz"; 1016 url = "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz"; 1017 - sha1 = "beb437e7022b3b6d49019d088665303ebe9c14ba"; 1018 }; 1019 } 1020 { ··· 1022 path = fetchurl { 1023 name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; 1024 url = "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; 1025 - sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; 1026 }; 1027 } 1028 { ··· 1030 path = fetchurl { 1031 name = "core_js___core_js_2.6.11.tgz"; 1032 url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz"; 1033 - sha1 = "38831469f9922bded8ee21c9dc46985e0399308c"; 1034 }; 1035 } 1036 { ··· 1038 path = fetchurl { 1039 name = "core_util_is___core_util_is_1.0.2.tgz"; 1040 url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; 1041 - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 1042 }; 1043 } 1044 { ··· 1046 path = fetchurl { 1047 name = "cosmiconfig___cosmiconfig_6.0.0.tgz"; 1048 url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz"; 1049 - sha1 = "da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"; 1050 }; 1051 } 1052 { ··· 1054 path = fetchurl { 1055 name = "create_emotion_styled___create_emotion_styled_9.2.8.tgz"; 1056 url = "https://registry.yarnpkg.com/create-emotion-styled/-/create-emotion-styled-9.2.8.tgz"; 1057 - sha1 = "c0050e768ba439609bec108600467adf2de67cc3"; 1058 }; 1059 } 1060 { ··· 1062 path = fetchurl { 1063 name = "create_emotion___create_emotion_9.2.12.tgz"; 1064 url = "https://registry.yarnpkg.com/create-emotion/-/create-emotion-9.2.12.tgz"; 1065 - sha1 = "0fc8e7f92c4f8bb924b0fef6781f66b1d07cb26f"; 1066 }; 1067 } 1068 { ··· 1070 path = fetchurl { 1071 name = "create_react_context___create_react_context_0.1.6.tgz"; 1072 url = "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.1.6.tgz"; 1073 - sha1 = "0f425931d907741127acc6e31acb4f9015dd9fdc"; 1074 }; 1075 } 1076 { ··· 1078 path = fetchurl { 1079 name = "csstype___csstype_2.6.10.tgz"; 1080 url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz"; 1081 - sha1 = "e63af50e66d7c266edb6b32909cfd0aabe03928b"; 1082 }; 1083 } 1084 { 1085 - name = "csstype___csstype_2.6.9.tgz"; 1086 path = fetchurl { 1087 - name = "csstype___csstype_2.6.9.tgz"; 1088 - url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.9.tgz"; 1089 - sha1 = "05141d0cd557a56b8891394c1911c40c8a98d098"; 1090 }; 1091 } 1092 { ··· 1094 path = fetchurl { 1095 name = "dashdash___dashdash_1.14.1.tgz"; 1096 url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz"; 1097 - sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; 1098 }; 1099 } 1100 { ··· 1102 path = fetchurl { 1103 name = "debug___debug_2.6.9.tgz"; 1104 url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; 1105 - sha1 = "5d128515df134ff327e90a4c93f4e077a536341f"; 1106 }; 1107 } 1108 { ··· 1110 path = fetchurl { 1111 name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 1112 url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; 1113 - sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; 1114 }; 1115 } 1116 { ··· 1118 path = fetchurl { 1119 name = "deep_is___deep_is_0.1.3.tgz"; 1120 url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz"; 1121 - sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 1122 - }; 1123 - } 1124 - { 1125 - name = "define_properties___define_properties_1.1.3.tgz"; 1126 - path = fetchurl { 1127 - name = "define_properties___define_properties_1.1.3.tgz"; 1128 - url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz"; 1129 - sha1 = "cf88da6cbee26fe6db7094f61d870cbd84cee9f1"; 1130 }; 1131 } 1132 { ··· 1134 path = fetchurl { 1135 name = "define_property___define_property_0.2.5.tgz"; 1136 url = "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz"; 1137 - sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; 1138 }; 1139 } 1140 { ··· 1142 path = fetchurl { 1143 name = "define_property___define_property_1.0.0.tgz"; 1144 url = "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz"; 1145 - sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; 1146 }; 1147 } 1148 { ··· 1150 path = fetchurl { 1151 name = "define_property___define_property_2.0.2.tgz"; 1152 url = "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz"; 1153 - sha1 = "d459689e8d654ba77e02a817f8710d702cb16e9d"; 1154 }; 1155 } 1156 { ··· 1158 path = fetchurl { 1159 name = "delayed_stream___delayed_stream_1.0.0.tgz"; 1160 url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz"; 1161 - sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; 1162 }; 1163 } 1164 { ··· 1166 path = fetchurl { 1167 name = "delegate___delegate_3.2.0.tgz"; 1168 url = "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz"; 1169 - sha1 = "b66b71c3158522e8ab5744f720d8ca0c2af59166"; 1170 }; 1171 } 1172 { ··· 1174 path = fetchurl { 1175 name = "depd___depd_1.1.2.tgz"; 1176 url = "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz"; 1177 - sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; 1178 }; 1179 } 1180 { ··· 1182 path = fetchurl { 1183 name = "destroy___destroy_1.0.4.tgz"; 1184 url = "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz"; 1185 - sha1 = "978857442c44749e4206613e37946205826abd80"; 1186 }; 1187 } 1188 { ··· 1190 path = fetchurl { 1191 name = "diff_match_patch___diff_match_patch_1.0.4.tgz"; 1192 url = "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.4.tgz"; 1193 - sha1 = "6ac4b55237463761c4daf0dc603eb869124744b1"; 1194 }; 1195 } 1196 { ··· 1198 path = fetchurl { 1199 name = "diff___diff_4.0.2.tgz"; 1200 url = "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz"; 1201 - sha1 = "60f3aecb89d5fae520c11aa19efc2bb982aade7d"; 1202 }; 1203 } 1204 { ··· 1206 path = fetchurl { 1207 name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz"; 1208 url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; 1209 - sha1 = "3a83a904e54353287874c564b7549386849a98c9"; 1210 }; 1211 } 1212 { ··· 1214 path = fetchurl { 1215 name = "ee_first___ee_first_1.1.1.tgz"; 1216 url = "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz"; 1217 - sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 1218 }; 1219 } 1220 { ··· 1222 path = fetchurl { 1223 name = "emotion___emotion_9.2.12.tgz"; 1224 url = "https://registry.yarnpkg.com/emotion/-/emotion-9.2.12.tgz"; 1225 - sha1 = "53925aaa005614e65c6e43db8243c843574d1ea9"; 1226 }; 1227 } 1228 { ··· 1230 path = fetchurl { 1231 name = "encodeurl___encodeurl_1.0.2.tgz"; 1232 url = "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz"; 1233 - sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; 1234 }; 1235 } 1236 { ··· 1238 path = fetchurl { 1239 name = "error_ex___error_ex_1.3.2.tgz"; 1240 url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; 1241 - sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf"; 1242 - }; 1243 - } 1244 - { 1245 - name = "es_abstract___es_abstract_1.17.6.tgz"; 1246 - path = fetchurl { 1247 - name = "es_abstract___es_abstract_1.17.6.tgz"; 1248 - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz"; 1249 - sha1 = "9142071707857b2cacc7b89ecb670316c3e2d52a"; 1250 }; 1251 } 1252 { 1253 - name = "es_to_primitive___es_to_primitive_1.2.1.tgz"; 1254 path = fetchurl { 1255 - name = "es_to_primitive___es_to_primitive_1.2.1.tgz"; 1256 - url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; 1257 - sha1 = "e55cd4c9cdc188bcefb03b366c736323fc5c898a"; 1258 }; 1259 } 1260 { 1261 - name = "es6_object_assign___es6_object_assign_1.1.0.tgz"; 1262 path = fetchurl { 1263 - name = "es6_object_assign___es6_object_assign_1.1.0.tgz"; 1264 - url = "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz"; 1265 - sha1 = "c2c3582656247c39ea107cb1e6652b6f9f24523c"; 1266 }; 1267 } 1268 { ··· 1270 path = fetchurl { 1271 name = "escape_html___escape_html_1.0.3.tgz"; 1272 url = "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz"; 1273 - sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; 1274 }; 1275 } 1276 { ··· 1278 path = fetchurl { 1279 name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 1280 url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 1281 - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 1282 }; 1283 } 1284 { ··· 1286 path = fetchurl { 1287 name = "escodegen___escodegen_1.14.1.tgz"; 1288 url = "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz"; 1289 - sha1 = "ba01d0c8278b5e95a9a45350142026659027a457"; 1290 }; 1291 } 1292 { ··· 1294 path = fetchurl { 1295 name = "esprima___esprima_4.0.1.tgz"; 1296 url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; 1297 - sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71"; 1298 }; 1299 } 1300 { ··· 1302 path = fetchurl { 1303 name = "estraverse___estraverse_4.3.0.tgz"; 1304 url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; 1305 - sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d"; 1306 }; 1307 } 1308 { ··· 1310 path = fetchurl { 1311 name = "esutils___esutils_2.0.3.tgz"; 1312 url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz"; 1313 - sha1 = "74d2eb4de0b8da1293711910d50775b9b710ef64"; 1314 }; 1315 } 1316 { ··· 1318 path = fetchurl { 1319 name = "etag___etag_1.8.1.tgz"; 1320 url = "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz"; 1321 - sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; 1322 }; 1323 } 1324 { ··· 1326 path = fetchurl { 1327 name = "exec_sh___exec_sh_0.2.2.tgz"; 1328 url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz"; 1329 - sha1 = "2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36"; 1330 }; 1331 } 1332 { ··· 1334 path = fetchurl { 1335 name = "expand_brackets___expand_brackets_0.1.5.tgz"; 1336 url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz"; 1337 - sha1 = "df07284e342a807cd733ac5af72411e581d1177b"; 1338 }; 1339 } 1340 { ··· 1342 path = fetchurl { 1343 name = "expand_brackets___expand_brackets_2.1.4.tgz"; 1344 url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz"; 1345 - sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; 1346 }; 1347 } 1348 { ··· 1350 path = fetchurl { 1351 name = "expand_range___expand_range_1.8.2.tgz"; 1352 url = "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz"; 1353 - sha1 = "a299effd335fe2721ebae8e257ec79644fc85337"; 1354 }; 1355 } 1356 { ··· 1358 path = fetchurl { 1359 name = "express___express_4.17.1.tgz"; 1360 url = "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz"; 1361 - sha1 = "4491fc38605cf51f8629d39c2b5d026f98a4c134"; 1362 }; 1363 } 1364 { ··· 1366 path = fetchurl { 1367 name = "extend_shallow___extend_shallow_2.0.1.tgz"; 1368 url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz"; 1369 - sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; 1370 }; 1371 } 1372 { ··· 1374 path = fetchurl { 1375 name = "extend_shallow___extend_shallow_3.0.2.tgz"; 1376 url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz"; 1377 - sha1 = "26a71aaf073b39fb2127172746131c2704028db8"; 1378 }; 1379 } 1380 { ··· 1382 path = fetchurl { 1383 name = "extend___extend_3.0.2.tgz"; 1384 url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz"; 1385 - sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa"; 1386 }; 1387 } 1388 { ··· 1390 path = fetchurl { 1391 name = "external_editor___external_editor_2.2.0.tgz"; 1392 url = "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz"; 1393 - sha1 = "045511cfd8d133f3846673d1047c154e214ad3d5"; 1394 }; 1395 } 1396 { ··· 1398 path = fetchurl { 1399 name = "extglob___extglob_0.3.2.tgz"; 1400 url = "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz"; 1401 - sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1"; 1402 }; 1403 } 1404 { ··· 1406 path = fetchurl { 1407 name = "extglob___extglob_2.0.4.tgz"; 1408 url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz"; 1409 - sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543"; 1410 }; 1411 } 1412 { ··· 1414 path = fetchurl { 1415 name = "extsprintf___extsprintf_1.3.0.tgz"; 1416 url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz"; 1417 - sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; 1418 }; 1419 } 1420 { ··· 1422 path = fetchurl { 1423 name = "extsprintf___extsprintf_1.4.0.tgz"; 1424 url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz"; 1425 - sha1 = "e2689f8f356fad62cca65a3a91c5df5f9551692f"; 1426 }; 1427 } 1428 { ··· 1430 path = fetchurl { 1431 name = "fast_deep_equal___fast_deep_equal_3.1.1.tgz"; 1432 url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz"; 1433 - sha1 = "545145077c501491e33b15ec408c294376e94ae4"; 1434 }; 1435 } 1436 { ··· 1438 path = fetchurl { 1439 name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; 1440 url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 1441 - sha1 = "874bf69c6f404c2b5d99c481341399fd55892633"; 1442 }; 1443 } 1444 { ··· 1446 path = fetchurl { 1447 name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 1448 url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 1449 - sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; 1450 }; 1451 } 1452 { ··· 1454 path = fetchurl { 1455 name = "fast_xml_parser___fast_xml_parser_3.17.1.tgz"; 1456 url = "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.17.1.tgz"; 1457 - sha1 = "579fa64346cc891ce240d378268c6216e74aab10"; 1458 }; 1459 } 1460 { ··· 1462 path = fetchurl { 1463 name = "figures___figures_2.0.0.tgz"; 1464 url = "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz"; 1465 - sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; 1466 }; 1467 } 1468 { ··· 1470 path = fetchurl { 1471 name = "file_match___file_match_1.0.2.tgz"; 1472 url = "https://registry.yarnpkg.com/file-match/-/file-match-1.0.2.tgz"; 1473 - sha1 = "c9cad265d2c8adf3a81475b0df475859069faef7"; 1474 }; 1475 } 1476 { ··· 1478 path = fetchurl { 1479 name = "file_system___file_system_2.2.2.tgz"; 1480 url = "https://registry.yarnpkg.com/file-system/-/file-system-2.2.2.tgz"; 1481 - sha1 = "7d65833e3a2347dcd956a813c677153ed3edd987"; 1482 }; 1483 } 1484 { ··· 1486 path = fetchurl { 1487 name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz"; 1488 url = "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz"; 1489 - sha1 = "553a7b8446ff6f684359c445f1e37a05dacc33dd"; 1490 }; 1491 } 1492 { ··· 1494 path = fetchurl { 1495 name = "filename_regex___filename_regex_2.0.1.tgz"; 1496 url = "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz"; 1497 - sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"; 1498 }; 1499 } 1500 { ··· 1502 path = fetchurl { 1503 name = "fill_range___fill_range_2.2.4.tgz"; 1504 url = "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz"; 1505 - sha1 = "eb1e773abb056dcd8df2bfdf6af59b8b3a936565"; 1506 }; 1507 } 1508 { ··· 1510 path = fetchurl { 1511 name = "fill_range___fill_range_4.0.0.tgz"; 1512 url = "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz"; 1513 - sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; 1514 }; 1515 } 1516 { ··· 1518 path = fetchurl { 1519 name = "finalhandler___finalhandler_1.1.2.tgz"; 1520 url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz"; 1521 - sha1 = "b7e7d000ffd11938d0fdb053506f6ebabe9f587d"; 1522 }; 1523 } 1524 { ··· 1526 path = fetchurl { 1527 name = "find_root___find_root_1.1.0.tgz"; 1528 url = "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz"; 1529 - sha1 = "abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"; 1530 }; 1531 } 1532 { ··· 1534 path = fetchurl { 1535 name = "fliplog___fliplog_0.3.13.tgz"; 1536 url = "https://registry.yarnpkg.com/fliplog/-/fliplog-0.3.13.tgz"; 1537 - sha1 = "dd0d786e821822aae272e0ddc84012596a96154c"; 1538 }; 1539 } 1540 { ··· 1542 path = fetchurl { 1543 name = "for_in___for_in_1.0.2.tgz"; 1544 url = "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz"; 1545 - sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; 1546 }; 1547 } 1548 { ··· 1550 path = fetchurl { 1551 name = "for_own___for_own_0.1.5.tgz"; 1552 url = "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz"; 1553 - sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce"; 1554 }; 1555 } 1556 { ··· 1558 path = fetchurl { 1559 name = "forever_agent___forever_agent_0.6.1.tgz"; 1560 url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz"; 1561 - sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; 1562 }; 1563 } 1564 { ··· 1566 path = fetchurl { 1567 name = "form_data___form_data_2.3.3.tgz"; 1568 url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz"; 1569 - sha1 = "dcce52c05f644f298c6a7ab936bd724ceffbf3a6"; 1570 }; 1571 } 1572 { ··· 1574 path = fetchurl { 1575 name = "forwarded___forwarded_0.1.2.tgz"; 1576 url = "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz"; 1577 - sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; 1578 }; 1579 } 1580 { ··· 1582 path = fetchurl { 1583 name = "fragment_cache___fragment_cache_0.2.1.tgz"; 1584 url = "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz"; 1585 - sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; 1586 }; 1587 } 1588 { ··· 1590 path = fetchurl { 1591 name = "fresh___fresh_0.5.2.tgz"; 1592 url = "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz"; 1593 - sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; 1594 }; 1595 } 1596 { ··· 1598 path = fetchurl { 1599 name = "fs_extra___fs_extra_7.0.1.tgz"; 1600 url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz"; 1601 - sha1 = "4f189c44aa123b895f722804f55ea23eadc348e9"; 1602 }; 1603 } 1604 { ··· 1606 path = fetchurl { 1607 name = "fs.realpath___fs.realpath_1.0.0.tgz"; 1608 url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; 1609 - sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 1610 }; 1611 } 1612 { ··· 1614 path = fetchurl { 1615 name = "fsevents___fsevents_1.2.11.tgz"; 1616 url = "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.11.tgz"; 1617 - sha1 = "67bf57f4758f02ede88fb2a1712fef4d15358be3"; 1618 }; 1619 } 1620 { ··· 1622 path = fetchurl { 1623 name = "fstream___fstream_0.1.31.tgz"; 1624 url = "https://registry.yarnpkg.com/fstream/-/fstream-0.1.31.tgz"; 1625 - sha1 = "7337f058fbbbbefa8c9f561a28cab0849202c988"; 1626 - }; 1627 - } 1628 - { 1629 - name = "function_bind___function_bind_1.1.1.tgz"; 1630 - path = fetchurl { 1631 - name = "function_bind___function_bind_1.1.1.tgz"; 1632 - url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; 1633 - sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d"; 1634 }; 1635 } 1636 { ··· 1638 path = fetchurl { 1639 name = "fuse_box___fuse_box_3.7.1.tgz"; 1640 url = "https://registry.yarnpkg.com/fuse-box/-/fuse-box-3.7.1.tgz"; 1641 - sha1 = "d32879ceee4c8bcec9bbd8fcfe5b29e7142371cd"; 1642 }; 1643 } 1644 { ··· 1646 path = fetchurl { 1647 name = "fuse_concat_with_sourcemaps___fuse_concat_with_sourcemaps_1.0.5.tgz"; 1648 url = "https://registry.yarnpkg.com/fuse-concat-with-sourcemaps/-/fuse-concat-with-sourcemaps-1.0.5.tgz"; 1649 - sha1 = "9c6a521f675cff5cdbb48db1ca9c181ae49a7b97"; 1650 }; 1651 } 1652 { 1653 - name = "fuse.js___fuse.js_6.0.4.tgz"; 1654 path = fetchurl { 1655 - name = "fuse.js___fuse.js_6.0.4.tgz"; 1656 - url = "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.0.4.tgz"; 1657 - sha1 = "9f5af976f836247ad5d2c338090d6ce13cf9a4d2"; 1658 }; 1659 } 1660 { ··· 1662 path = fetchurl { 1663 name = "get_caller_file___get_caller_file_1.0.3.tgz"; 1664 url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz"; 1665 - sha1 = "f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"; 1666 }; 1667 } 1668 { ··· 1670 path = fetchurl { 1671 name = "get_value___get_value_2.0.6.tgz"; 1672 url = "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz"; 1673 - sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; 1674 }; 1675 } 1676 { ··· 1678 path = fetchurl { 1679 name = "getopts___getopts_2.2.5.tgz"; 1680 url = "https://registry.yarnpkg.com/getopts/-/getopts-2.2.5.tgz"; 1681 - sha1 = "67a0fe471cacb9c687d817cab6450b96dde8313b"; 1682 }; 1683 } 1684 { ··· 1686 path = fetchurl { 1687 name = "getpass___getpass_0.1.7.tgz"; 1688 url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz"; 1689 - sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 1690 }; 1691 } 1692 { ··· 1694 path = fetchurl { 1695 name = "glob_base___glob_base_0.3.0.tgz"; 1696 url = "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz"; 1697 - sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"; 1698 }; 1699 } 1700 { ··· 1702 path = fetchurl { 1703 name = "glob_parent___glob_parent_2.0.0.tgz"; 1704 url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz"; 1705 - sha1 = "81383d72db054fcccf5336daa902f182f6edbb28"; 1706 }; 1707 } 1708 { ··· 1710 path = fetchurl { 1711 name = "glob___glob_7.1.6.tgz"; 1712 url = "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz"; 1713 - sha1 = "141f33b81a7c2492e125594307480c46679278a6"; 1714 }; 1715 } 1716 { ··· 1718 path = fetchurl { 1719 name = "good_listener___good_listener_1.2.2.tgz"; 1720 url = "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz"; 1721 - sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50"; 1722 }; 1723 } 1724 { ··· 1726 path = fetchurl { 1727 name = "graceful_fs___graceful_fs_4.2.3.tgz"; 1728 url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz"; 1729 - sha1 = "4a12ff1b60376ef09862c2093edd908328be8423"; 1730 }; 1731 } 1732 { ··· 1734 path = fetchurl { 1735 name = "graceful_fs___graceful_fs_3.0.12.tgz"; 1736 url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.12.tgz"; 1737 - sha1 = "0034947ce9ed695ec8ab0b854bc919e82b1ffaef"; 1738 }; 1739 } 1740 { ··· 1742 path = fetchurl { 1743 name = "har_schema___har_schema_2.0.0.tgz"; 1744 url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz"; 1745 - sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; 1746 }; 1747 } 1748 { ··· 1750 path = fetchurl { 1751 name = "har_validator___har_validator_5.1.3.tgz"; 1752 url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz"; 1753 - sha1 = "1ef89ebd3e4996557675eed9893110dc350fa080"; 1754 }; 1755 } 1756 { ··· 1758 path = fetchurl { 1759 name = "has_flag___has_flag_3.0.0.tgz"; 1760 url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; 1761 - sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 1762 }; 1763 } 1764 { 1765 - name = "has_symbols___has_symbols_1.0.1.tgz"; 1766 path = fetchurl { 1767 - name = "has_symbols___has_symbols_1.0.1.tgz"; 1768 - url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz"; 1769 - sha1 = "9f5214758a44196c406d9bd76cebf81ec2dd31e8"; 1770 }; 1771 } 1772 { ··· 1774 path = fetchurl { 1775 name = "has_value___has_value_0.3.1.tgz"; 1776 url = "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz"; 1777 - sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; 1778 }; 1779 } 1780 { ··· 1782 path = fetchurl { 1783 name = "has_value___has_value_1.0.0.tgz"; 1784 url = "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz"; 1785 - sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177"; 1786 }; 1787 } 1788 { ··· 1790 path = fetchurl { 1791 name = "has_values___has_values_0.1.4.tgz"; 1792 url = "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz"; 1793 - sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; 1794 }; 1795 } 1796 { ··· 1798 path = fetchurl { 1799 name = "has_values___has_values_1.0.0.tgz"; 1800 url = "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz"; 1801 - sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; 1802 - }; 1803 - } 1804 - { 1805 - name = "has___has_1.0.3.tgz"; 1806 - path = fetchurl { 1807 - name = "has___has_1.0.3.tgz"; 1808 - url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; 1809 - sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796"; 1810 }; 1811 } 1812 { ··· 1814 path = fetchurl { 1815 name = "html___html_1.0.0.tgz"; 1816 url = "https://registry.yarnpkg.com/html/-/html-1.0.0.tgz"; 1817 - sha1 = "a544fa9ea5492bfb3a2cca8210a10be7b5af1f61"; 1818 }; 1819 } 1820 { ··· 1822 path = fetchurl { 1823 name = "http_errors___http_errors_1.7.2.tgz"; 1824 url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz"; 1825 - sha1 = "4f5029cf13239f31036e5b2e55292bcfbcc85c8f"; 1826 }; 1827 } 1828 { ··· 1830 path = fetchurl { 1831 name = "http_errors___http_errors_1.7.3.tgz"; 1832 url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz"; 1833 - sha1 = "6c619e4f9c60308c38519498c14fbb10aacebb06"; 1834 }; 1835 } 1836 { ··· 1838 path = fetchurl { 1839 name = "http_signature___http_signature_1.2.0.tgz"; 1840 url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz"; 1841 - sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 1842 }; 1843 } 1844 { ··· 1846 path = fetchurl { 1847 name = "iconv_lite___iconv_lite_0.4.24.tgz"; 1848 url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"; 1849 - sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b"; 1850 }; 1851 } 1852 { ··· 1854 path = fetchurl { 1855 name = "ie_array_find_polyfill___ie_array_find_polyfill_1.1.0.tgz"; 1856 url = "https://registry.yarnpkg.com/ie-array-find-polyfill/-/ie-array-find-polyfill-1.1.0.tgz"; 1857 - sha1 = "5078e533f026831da22bd7476513d9460d65a142"; 1858 }; 1859 } 1860 { ··· 1862 path = fetchurl { 1863 name = "ieee754___ieee754_1.1.13.tgz"; 1864 url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz"; 1865 - sha1 = "ec168558e95aa181fd87d37f55c32bbcb6708b84"; 1866 }; 1867 } 1868 { ··· 1870 path = fetchurl { 1871 name = "import_fresh___import_fresh_3.2.1.tgz"; 1872 url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz"; 1873 - sha1 = "633ff618506e793af5ac91bf48b72677e15cbe66"; 1874 }; 1875 } 1876 { ··· 1878 path = fetchurl { 1879 name = "inflight___inflight_1.0.6.tgz"; 1880 url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; 1881 - sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 1882 }; 1883 } 1884 { ··· 1886 path = fetchurl { 1887 name = "inherits___inherits_2.0.4.tgz"; 1888 url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; 1889 - sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c"; 1890 }; 1891 } 1892 { ··· 1894 path = fetchurl { 1895 name = "inherits___inherits_2.0.3.tgz"; 1896 url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; 1897 - sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 1898 }; 1899 } 1900 { ··· 1902 path = fetchurl { 1903 name = "inquirer___inquirer_3.3.0.tgz"; 1904 url = "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz"; 1905 - sha1 = "9dd2f2ad765dcab1ff0443b491442a20ba227dc9"; 1906 }; 1907 } 1908 { ··· 1910 path = fetchurl { 1911 name = "ipaddr.js___ipaddr.js_1.9.1.tgz"; 1912 url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz"; 1913 - sha1 = "bff38543eeb8984825079ff3a2a8e6cbd46781b3"; 1914 }; 1915 } 1916 { ··· 1918 path = fetchurl { 1919 name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; 1920 url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; 1921 - sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; 1922 }; 1923 } 1924 { ··· 1926 path = fetchurl { 1927 name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; 1928 url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; 1929 - sha1 = "169c2f6d3df1f992618072365c9b0ea1f6878656"; 1930 }; 1931 } 1932 { ··· 1934 path = fetchurl { 1935 name = "is_arrayish___is_arrayish_0.2.1.tgz"; 1936 url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; 1937 - sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; 1938 }; 1939 } 1940 { ··· 1942 path = fetchurl { 1943 name = "is_binary_path___is_binary_path_1.0.1.tgz"; 1944 url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz"; 1945 - sha1 = "75f16642b480f187a711c814161fd3a4a7655898"; 1946 }; 1947 } 1948 { ··· 1950 path = fetchurl { 1951 name = "is_buffer___is_buffer_1.1.6.tgz"; 1952 url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz"; 1953 - sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"; 1954 - }; 1955 - } 1956 - { 1957 - name = "is_callable___is_callable_1.2.0.tgz"; 1958 - path = fetchurl { 1959 - name = "is_callable___is_callable_1.2.0.tgz"; 1960 - url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz"; 1961 - sha1 = "83336560b54a38e35e3a2df7afd0454d691468bb"; 1962 }; 1963 } 1964 { ··· 1966 path = fetchurl { 1967 name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; 1968 url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; 1969 - sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; 1970 }; 1971 } 1972 { ··· 1974 path = fetchurl { 1975 name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; 1976 url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; 1977 - sha1 = "d84876321d0e7add03990406abbbbd36ba9268c7"; 1978 - }; 1979 - } 1980 - { 1981 - name = "is_date_object___is_date_object_1.0.2.tgz"; 1982 - path = fetchurl { 1983 - name = "is_date_object___is_date_object_1.0.2.tgz"; 1984 - url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz"; 1985 - sha1 = "bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"; 1986 }; 1987 } 1988 { ··· 1990 path = fetchurl { 1991 name = "is_descriptor___is_descriptor_0.1.6.tgz"; 1992 url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz"; 1993 - sha1 = "366d8240dde487ca51823b1ab9f07a10a78251ca"; 1994 }; 1995 } 1996 { ··· 1998 path = fetchurl { 1999 name = "is_descriptor___is_descriptor_1.0.2.tgz"; 2000 url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz"; 2001 - sha1 = "3b159746a66604b04f8c81524ba365c5f14d86ec"; 2002 }; 2003 } 2004 { ··· 2006 path = fetchurl { 2007 name = "is_dotfile___is_dotfile_1.0.3.tgz"; 2008 url = "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz"; 2009 - sha1 = "a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"; 2010 }; 2011 } 2012 { ··· 2014 path = fetchurl { 2015 name = "is_equal_shallow___is_equal_shallow_0.1.3.tgz"; 2016 url = "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz"; 2017 - sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534"; 2018 }; 2019 } 2020 { ··· 2022 path = fetchurl { 2023 name = "is_extendable___is_extendable_0.1.1.tgz"; 2024 url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz"; 2025 - sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; 2026 }; 2027 } 2028 { ··· 2030 path = fetchurl { 2031 name = "is_extendable___is_extendable_1.0.1.tgz"; 2032 url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz"; 2033 - sha1 = "a7470f9e426733d81bd81e1155264e3a3507cab4"; 2034 }; 2035 } 2036 { ··· 2038 path = fetchurl { 2039 name = "is_extglob___is_extglob_1.0.0.tgz"; 2040 url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz"; 2041 - sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0"; 2042 }; 2043 } 2044 { ··· 2046 path = fetchurl { 2047 name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; 2048 url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 2049 - sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 2050 }; 2051 } 2052 { ··· 2054 path = fetchurl { 2055 name = "is_glob___is_glob_2.0.1.tgz"; 2056 url = "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz"; 2057 - sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863"; 2058 }; 2059 } 2060 { ··· 2062 path = fetchurl { 2063 name = "is_number___is_number_2.1.0.tgz"; 2064 url = "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz"; 2065 - sha1 = "01fcbbb393463a548f2f466cce16dece49db908f"; 2066 }; 2067 } 2068 { ··· 2070 path = fetchurl { 2071 name = "is_number___is_number_3.0.0.tgz"; 2072 url = "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz"; 2073 - sha1 = "24fd6201a4782cf50561c810276afc7d12d71195"; 2074 }; 2075 } 2076 { ··· 2078 path = fetchurl { 2079 name = "is_number___is_number_4.0.0.tgz"; 2080 url = "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz"; 2081 - sha1 = "0026e37f5454d73e356dfe6564699867c6a7f0ff"; 2082 }; 2083 } 2084 { ··· 2086 path = fetchurl { 2087 name = "is_plain_object___is_plain_object_2.0.4.tgz"; 2088 url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz"; 2089 - sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677"; 2090 }; 2091 } 2092 { ··· 2094 path = fetchurl { 2095 name = "is_posix_bracket___is_posix_bracket_0.1.1.tgz"; 2096 url = "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz"; 2097 - sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"; 2098 }; 2099 } 2100 { ··· 2102 path = fetchurl { 2103 name = "is_primitive___is_primitive_2.0.0.tgz"; 2104 url = "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz"; 2105 - sha1 = "207bab91638499c07b2adf240a41a87210034575"; 2106 }; 2107 } 2108 { ··· 2110 path = fetchurl { 2111 name = "is_promise___is_promise_2.1.0.tgz"; 2112 url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz"; 2113 - sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"; 2114 - }; 2115 - } 2116 - { 2117 - name = "is_regex___is_regex_1.1.0.tgz"; 2118 - path = fetchurl { 2119 - name = "is_regex___is_regex_1.1.0.tgz"; 2120 - url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz"; 2121 - sha1 = "ece38e389e490df0dc21caea2bd596f987f767ff"; 2122 - }; 2123 - } 2124 - { 2125 - name = "is_symbol___is_symbol_1.0.3.tgz"; 2126 - path = fetchurl { 2127 - name = "is_symbol___is_symbol_1.0.3.tgz"; 2128 - url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz"; 2129 - sha1 = "38e1014b9e6329be0de9d24a414fd7441ec61937"; 2130 }; 2131 } 2132 { ··· 2134 path = fetchurl { 2135 name = "is_typedarray___is_typedarray_1.0.0.tgz"; 2136 url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz"; 2137 - sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; 2138 }; 2139 } 2140 { ··· 2142 path = fetchurl { 2143 name = "is_windows___is_windows_1.0.2.tgz"; 2144 url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz"; 2145 - sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d"; 2146 }; 2147 } 2148 { ··· 2150 path = fetchurl { 2151 name = "isarray___isarray_0.0.1.tgz"; 2152 url = "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz"; 2153 - sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; 2154 }; 2155 } 2156 { ··· 2158 path = fetchurl { 2159 name = "isarray___isarray_1.0.0.tgz"; 2160 url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; 2161 - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 2162 }; 2163 } 2164 { ··· 2166 path = fetchurl { 2167 name = "isobject___isobject_2.1.0.tgz"; 2168 url = "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz"; 2169 - sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89"; 2170 }; 2171 } 2172 { ··· 2174 path = fetchurl { 2175 name = "isobject___isobject_3.0.1.tgz"; 2176 url = "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz"; 2177 - sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; 2178 }; 2179 } 2180 { ··· 2182 path = fetchurl { 2183 name = "isstream___isstream_0.1.2.tgz"; 2184 url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz"; 2185 - sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; 2186 }; 2187 } 2188 { ··· 2190 path = fetchurl { 2191 name = "js_tokens___js_tokens_4.0.0.tgz"; 2192 url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; 2193 - sha1 = "19203fb59991df98e3a287050d4647cdeaf32499"; 2194 }; 2195 } 2196 { ··· 2198 path = fetchurl { 2199 name = "js_yaml___js_yaml_3.13.1.tgz"; 2200 url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz"; 2201 - sha1 = "aff151b30bfdfa8e49e05da22e7415e9dfa37847"; 2202 }; 2203 } 2204 { ··· 2206 path = fetchurl { 2207 name = "jsbn___jsbn_0.1.1.tgz"; 2208 url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz"; 2209 - sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; 2210 }; 2211 } 2212 { ··· 2214 path = fetchurl { 2215 name = "jsesc___jsesc_0.5.0.tgz"; 2216 url = "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz"; 2217 - sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; 2218 }; 2219 } 2220 { ··· 2222 path = fetchurl { 2223 name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; 2224 url = "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"; 2225 - sha1 = "bb867cfb3450e69107c131d1c514bab3dc8bcaa9"; 2226 }; 2227 } 2228 { ··· 2230 path = fetchurl { 2231 name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; 2232 url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; 2233 - sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660"; 2234 }; 2235 } 2236 { ··· 2238 path = fetchurl { 2239 name = "json_schema___json_schema_0.2.3.tgz"; 2240 url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz"; 2241 - sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; 2242 }; 2243 } 2244 { ··· 2246 path = fetchurl { 2247 name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; 2248 url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; 2249 - sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 2250 }; 2251 } 2252 { ··· 2254 path = fetchurl { 2255 name = "jsondiffpatch___jsondiffpatch_0.3.11.tgz"; 2256 url = "https://registry.yarnpkg.com/jsondiffpatch/-/jsondiffpatch-0.3.11.tgz"; 2257 - sha1 = "43f9443a0d081b5f79d413fe20f302079e493201"; 2258 }; 2259 } 2260 { ··· 2262 path = fetchurl { 2263 name = "jsonfile___jsonfile_4.0.0.tgz"; 2264 url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz"; 2265 - sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; 2266 }; 2267 } 2268 { ··· 2270 path = fetchurl { 2271 name = "jsprim___jsprim_1.4.1.tgz"; 2272 url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz"; 2273 - sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; 2274 }; 2275 } 2276 { ··· 2278 path = fetchurl { 2279 name = "kind_of___kind_of_3.2.2.tgz"; 2280 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz"; 2281 - sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; 2282 }; 2283 } 2284 { ··· 2286 path = fetchurl { 2287 name = "kind_of___kind_of_4.0.0.tgz"; 2288 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz"; 2289 - sha1 = "20813df3d712928b207378691a45066fae72dd57"; 2290 }; 2291 } 2292 { ··· 2294 path = fetchurl { 2295 name = "kind_of___kind_of_5.1.0.tgz"; 2296 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz"; 2297 - sha1 = "729c91e2d857b7a419a1f9aa65685c4c33f5845d"; 2298 }; 2299 } 2300 { ··· 2302 path = fetchurl { 2303 name = "kind_of___kind_of_6.0.3.tgz"; 2304 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz"; 2305 - sha1 = "07c05034a6c349fa06e24fa35aa76db4580ce4dd"; 2306 }; 2307 } 2308 { ··· 2310 path = fetchurl { 2311 name = "lego_api___lego_api_1.0.8.tgz"; 2312 url = "https://registry.yarnpkg.com/lego-api/-/lego-api-1.0.8.tgz"; 2313 - sha1 = "5e26be726c5e11d540f89e7c6b1abf8c5834bd01"; 2314 }; 2315 } 2316 { ··· 2318 path = fetchurl { 2319 name = "levn___levn_0.3.0.tgz"; 2320 url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; 2321 - sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; 2322 }; 2323 } 2324 { ··· 2326 path = fetchurl { 2327 name = "lines_and_columns___lines_and_columns_1.1.6.tgz"; 2328 url = "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz"; 2329 - sha1 = "1c00c743b433cd0a4e80758f7b64a57440d9ff00"; 2330 }; 2331 } 2332 { ··· 2334 path = fetchurl { 2335 name = "lodash._getnative___lodash._getnative_3.9.1.tgz"; 2336 url = "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz"; 2337 - sha1 = "570bc7dede46d61cdcde687d65d3eecbaa3aaff5"; 2338 }; 2339 } 2340 { ··· 2342 path = fetchurl { 2343 name = "lodash.curry___lodash.curry_4.1.1.tgz"; 2344 url = "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz"; 2345 - sha1 = "248e36072ede906501d75966200a86dab8b23170"; 2346 }; 2347 } 2348 { ··· 2350 path = fetchurl { 2351 name = "lodash.debounce___lodash.debounce_3.1.1.tgz"; 2352 url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-3.1.1.tgz"; 2353 - sha1 = "812211c378a94cc29d5aa4e3346cf0bfce3a7df5"; 2354 }; 2355 } 2356 { ··· 2358 path = fetchurl { 2359 name = "lodash.debounce___lodash.debounce_4.0.8.tgz"; 2360 url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; 2361 - sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; 2362 }; 2363 } 2364 { ··· 2366 path = fetchurl { 2367 name = "lodash.flow___lodash.flow_3.5.0.tgz"; 2368 url = "https://registry.yarnpkg.com/lodash.flow/-/lodash.flow-3.5.0.tgz"; 2369 - sha1 = "87bf40292b8cf83e4e8ce1a3ae4209e20071675a"; 2370 }; 2371 } 2372 { ··· 2374 path = fetchurl { 2375 name = "lodash.uniqby___lodash.uniqby_4.7.0.tgz"; 2376 url = "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz"; 2377 - sha1 = "d99c07a669e9e6d24e1362dfe266c67616af1302"; 2378 }; 2379 } 2380 { ··· 2382 path = fetchurl { 2383 name = "lodash___lodash_4.17.15.tgz"; 2384 url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz"; 2385 - sha1 = "b447f6670a0455bbfeedd11392eff330ea097548"; 2386 }; 2387 } 2388 { ··· 2390 path = fetchurl { 2391 name = "loose_envify___loose_envify_1.4.0.tgz"; 2392 url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"; 2393 - sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf"; 2394 }; 2395 } 2396 { ··· 2398 path = fetchurl { 2399 name = "make_error___make_error_1.3.6.tgz"; 2400 url = "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz"; 2401 - sha1 = "2eb2e37ea9b67c4891f684a1394799af484cf7a2"; 2402 }; 2403 } 2404 { ··· 2406 path = fetchurl { 2407 name = "map_cache___map_cache_0.2.2.tgz"; 2408 url = "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz"; 2409 - sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; 2410 }; 2411 } 2412 { ··· 2414 path = fetchurl { 2415 name = "map_visit___map_visit_1.0.0.tgz"; 2416 url = "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz"; 2417 - sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; 2418 }; 2419 } 2420 { ··· 2422 path = fetchurl { 2423 name = "match_stream___match_stream_0.0.2.tgz"; 2424 url = "https://registry.yarnpkg.com/match-stream/-/match-stream-0.0.2.tgz"; 2425 - sha1 = "99eb050093b34dffade421b9ac0b410a9cfa17cf"; 2426 }; 2427 } 2428 { ··· 2430 path = fetchurl { 2431 name = "math_random___math_random_1.0.4.tgz"; 2432 url = "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz"; 2433 - sha1 = "5dd6943c938548267016d4e34f057583080c514c"; 2434 }; 2435 } 2436 { ··· 2438 path = fetchurl { 2439 name = "media_typer___media_typer_0.3.0.tgz"; 2440 url = "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz"; 2441 - sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; 2442 }; 2443 } 2444 { ··· 2446 path = fetchurl { 2447 name = "memoize_one___memoize_one_5.1.1.tgz"; 2448 url = "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.1.1.tgz"; 2449 - sha1 = "047b6e3199b508eaec03504de71229b8eb1d75c0"; 2450 }; 2451 } 2452 { ··· 2454 path = fetchurl { 2455 name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; 2456 url = "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; 2457 - sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; 2458 }; 2459 } 2460 { ··· 2462 path = fetchurl { 2463 name = "merge___merge_1.2.1.tgz"; 2464 url = "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz"; 2465 - sha1 = "38bebf80c3220a8a487b6fcfb3941bb11720c145"; 2466 }; 2467 } 2468 { ··· 2470 path = fetchurl { 2471 name = "methods___methods_1.1.2.tgz"; 2472 url = "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz"; 2473 - sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; 2474 }; 2475 } 2476 { ··· 2478 path = fetchurl { 2479 name = "micromatch___micromatch_2.3.11.tgz"; 2480 url = "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz"; 2481 - sha1 = "86677c97d1720b363431d04d0d15293bd38c1565"; 2482 }; 2483 } 2484 { ··· 2486 path = fetchurl { 2487 name = "micromatch___micromatch_3.1.10.tgz"; 2488 url = "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz"; 2489 - sha1 = "70859bc95c9840952f359a068a3fc49f9ecfac23"; 2490 }; 2491 } 2492 { ··· 2494 path = fetchurl { 2495 name = "mime_db___mime_db_1.43.0.tgz"; 2496 url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz"; 2497 - sha1 = "0a12e0502650e473d735535050e7c8f4eb4fae58"; 2498 }; 2499 } 2500 { ··· 2502 path = fetchurl { 2503 name = "mime_types___mime_types_2.1.26.tgz"; 2504 url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz"; 2505 - sha1 = "9c921fc09b7e149a65dfdc0da4d20997200b0a06"; 2506 }; 2507 } 2508 { ··· 2510 path = fetchurl { 2511 name = "mime___mime_1.6.0.tgz"; 2512 url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz"; 2513 - sha1 = "32cd9e5c64553bd58d19a568af452acff04981b1"; 2514 }; 2515 } 2516 { ··· 2518 path = fetchurl { 2519 name = "mimic_fn___mimic_fn_1.2.0.tgz"; 2520 url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz"; 2521 - sha1 = "820c86a39334640e99516928bd03fca88057d022"; 2522 }; 2523 } 2524 { ··· 2526 path = fetchurl { 2527 name = "minimatch___minimatch_3.0.4.tgz"; 2528 url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; 2529 - sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; 2530 }; 2531 } 2532 { ··· 2534 path = fetchurl { 2535 name = "minimist___minimist_0.0.8.tgz"; 2536 url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; 2537 - sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; 2538 }; 2539 } 2540 { ··· 2542 path = fetchurl { 2543 name = "minimist___minimist_1.2.0.tgz"; 2544 url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz"; 2545 - sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; 2546 }; 2547 } 2548 { ··· 2550 path = fetchurl { 2551 name = "minimist___minimist_1.2.5.tgz"; 2552 url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 2553 - sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602"; 2554 }; 2555 } 2556 { ··· 2558 path = fetchurl { 2559 name = "mixin_deep___mixin_deep_1.3.2.tgz"; 2560 url = "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz"; 2561 - sha1 = "1120b43dc359a785dce65b55b82e257ccf479566"; 2562 }; 2563 } 2564 { ··· 2566 path = fetchurl { 2567 name = "mkdirp___mkdirp_0.5.5.tgz"; 2568 url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz"; 2569 - sha1 = "d91cefd62d1436ca0f41620e251288d420099def"; 2570 }; 2571 } 2572 { ··· 2574 path = fetchurl { 2575 name = "mkdirp___mkdirp_0.5.1.tgz"; 2576 url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz"; 2577 - sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 2578 }; 2579 } 2580 { ··· 2582 path = fetchurl { 2583 name = "mock_require___mock_require_3.0.3.tgz"; 2584 url = "https://registry.yarnpkg.com/mock-require/-/mock-require-3.0.3.tgz"; 2585 - sha1 = "ccd544d9eae81dd576b3f219f69ec867318a1946"; 2586 }; 2587 } 2588 { ··· 2590 path = fetchurl { 2591 name = "ms___ms_2.0.0.tgz"; 2592 url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz"; 2593 - sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 2594 }; 2595 } 2596 { ··· 2598 path = fetchurl { 2599 name = "ms___ms_2.1.1.tgz"; 2600 url = "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz"; 2601 - sha1 = "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"; 2602 }; 2603 } 2604 { ··· 2606 path = fetchurl { 2607 name = "mustache___mustache_2.3.2.tgz"; 2608 url = "https://registry.yarnpkg.com/mustache/-/mustache-2.3.2.tgz"; 2609 - sha1 = "a6d4d9c3f91d13359ab889a812954f9230a3d0c5"; 2610 }; 2611 } 2612 { ··· 2614 path = fetchurl { 2615 name = "mute_stream___mute_stream_0.0.7.tgz"; 2616 url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz"; 2617 - sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; 2618 }; 2619 } 2620 { ··· 2622 path = fetchurl { 2623 name = "nan___nan_2.14.0.tgz"; 2624 url = "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz"; 2625 - sha1 = "7818f722027b2459a86f0295d434d1fc2336c52c"; 2626 }; 2627 } 2628 { ··· 2630 path = fetchurl { 2631 name = "nanomatch___nanomatch_1.2.13.tgz"; 2632 url = "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz"; 2633 - sha1 = "b87a8aa4fc0de8fe6be88895b38983ff265bd119"; 2634 }; 2635 } 2636 { ··· 2638 path = fetchurl { 2639 name = "nanoseconds___nanoseconds_0.1.0.tgz"; 2640 url = "https://registry.yarnpkg.com/nanoseconds/-/nanoseconds-0.1.0.tgz"; 2641 - sha1 = "69ec39fcd00e77ab3a72de0a43342824cd79233a"; 2642 }; 2643 } 2644 { ··· 2646 path = fetchurl { 2647 name = "natives___natives_1.1.6.tgz"; 2648 url = "https://registry.yarnpkg.com/natives/-/natives-1.1.6.tgz"; 2649 - sha1 = "a603b4a498ab77173612b9ea1acdec4d980f00bb"; 2650 }; 2651 } 2652 { ··· 2654 path = fetchurl { 2655 name = "negotiator___negotiator_0.6.2.tgz"; 2656 url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz"; 2657 - sha1 = "feacf7ccf525a77ae9634436a64883ffeca346fb"; 2658 }; 2659 } 2660 { ··· 2662 path = fetchurl { 2663 name = "nopt___nopt_1.0.10.tgz"; 2664 url = "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz"; 2665 - sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee"; 2666 }; 2667 } 2668 { ··· 2670 path = fetchurl { 2671 name = "normalize_path___normalize_path_2.1.1.tgz"; 2672 url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz"; 2673 - sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; 2674 }; 2675 } 2676 { ··· 2678 path = fetchurl { 2679 name = "oauth_sign___oauth_sign_0.9.0.tgz"; 2680 url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz"; 2681 - sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455"; 2682 }; 2683 } 2684 { ··· 2686 path = fetchurl { 2687 name = "object_assign___object_assign_4.1.1.tgz"; 2688 url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz"; 2689 - sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 2690 }; 2691 } 2692 { ··· 2694 path = fetchurl { 2695 name = "object_copy___object_copy_0.1.0.tgz"; 2696 url = "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz"; 2697 - sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; 2698 - }; 2699 - } 2700 - { 2701 - name = "object_inspect___object_inspect_1.8.0.tgz"; 2702 - path = fetchurl { 2703 - name = "object_inspect___object_inspect_1.8.0.tgz"; 2704 - url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz"; 2705 - sha1 = "df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0"; 2706 - }; 2707 - } 2708 - { 2709 - name = "object_keys___object_keys_1.1.1.tgz"; 2710 - path = fetchurl { 2711 - name = "object_keys___object_keys_1.1.1.tgz"; 2712 - url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz"; 2713 - sha1 = "1c47f272df277f3b1daf061677d9c82e2322c60e"; 2714 }; 2715 } 2716 { ··· 2718 path = fetchurl { 2719 name = "object_visit___object_visit_1.0.1.tgz"; 2720 url = "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz"; 2721 - sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; 2722 - }; 2723 - } 2724 - { 2725 - name = "object.assign___object.assign_4.1.0.tgz"; 2726 - path = fetchurl { 2727 - name = "object.assign___object.assign_4.1.0.tgz"; 2728 - url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz"; 2729 - sha1 = "968bf1100d7956bb3ca086f006f846b3bc4008da"; 2730 }; 2731 } 2732 { ··· 2734 path = fetchurl { 2735 name = "object.omit___object.omit_2.0.1.tgz"; 2736 url = "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz"; 2737 - sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"; 2738 }; 2739 } 2740 { ··· 2742 path = fetchurl { 2743 name = "object.pick___object.pick_1.3.0.tgz"; 2744 url = "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz"; 2745 - sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; 2746 }; 2747 } 2748 { 2749 - name = "object.values___object.values_1.1.1.tgz"; 2750 path = fetchurl { 2751 - name = "object.values___object.values_1.1.1.tgz"; 2752 - url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz"; 2753 - sha1 = "68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"; 2754 }; 2755 } 2756 { ··· 2758 path = fetchurl { 2759 name = "on_finished___on_finished_2.3.0.tgz"; 2760 url = "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz"; 2761 - sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 2762 }; 2763 } 2764 { ··· 2766 path = fetchurl { 2767 name = "once___once_1.4.0.tgz"; 2768 url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; 2769 - sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 2770 }; 2771 } 2772 { ··· 2774 path = fetchurl { 2775 name = "onetime___onetime_2.0.1.tgz"; 2776 url = "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz"; 2777 - sha1 = "067428230fd67443b2794b22bba528b6867962d4"; 2778 }; 2779 } 2780 { ··· 2782 path = fetchurl { 2783 name = "optionator___optionator_0.8.3.tgz"; 2784 url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz"; 2785 - sha1 = "84fa1d036fe9d3c7e21d99884b601167ec8fb495"; 2786 }; 2787 } 2788 { ··· 2790 path = fetchurl { 2791 name = "options___options_0.0.6.tgz"; 2792 url = "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz"; 2793 - sha1 = "ec22d312806bb53e731773e7cdaefcf1c643128f"; 2794 }; 2795 } 2796 { ··· 2798 path = fetchurl { 2799 name = "orderedmap___orderedmap_1.1.1.tgz"; 2800 url = "https://registry.yarnpkg.com/orderedmap/-/orderedmap-1.1.1.tgz"; 2801 - sha1 = "c618e77611b3b21d0fe3edc92586265e0059c789"; 2802 }; 2803 } 2804 { ··· 2806 path = fetchurl { 2807 name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 2808 url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 2809 - sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 2810 }; 2811 } 2812 { ··· 2814 path = fetchurl { 2815 name = "over___over_0.0.5.tgz"; 2816 url = "https://registry.yarnpkg.com/over/-/over-0.0.5.tgz"; 2817 - sha1 = "f29852e70fd7e25f360e013a8ec44c82aedb5708"; 2818 }; 2819 } 2820 { ··· 2822 path = fetchurl { 2823 name = "parent_module___parent_module_1.0.1.tgz"; 2824 url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz"; 2825 - sha1 = "691d2709e78c79fae3a156622452d00762caaaa2"; 2826 }; 2827 } 2828 { ··· 2830 path = fetchurl { 2831 name = "parse_glob___parse_glob_3.0.4.tgz"; 2832 url = "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz"; 2833 - sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c"; 2834 }; 2835 } 2836 { ··· 2838 path = fetchurl { 2839 name = "parse_json___parse_json_5.0.0.tgz"; 2840 url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz"; 2841 - sha1 = "73e5114c986d143efa3712d4ea24db9a4266f60f"; 2842 }; 2843 } 2844 { ··· 2846 path = fetchurl { 2847 name = "parseurl___parseurl_1.3.3.tgz"; 2848 url = "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz"; 2849 - sha1 = "9da19e7bee8d12dff0513ed5b76957793bc2e8d4"; 2850 }; 2851 } 2852 { ··· 2854 path = fetchurl { 2855 name = "pascalcase___pascalcase_0.1.1.tgz"; 2856 url = "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz"; 2857 - sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; 2858 }; 2859 } 2860 { ··· 2862 path = fetchurl { 2863 name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 2864 url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 2865 - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 2866 }; 2867 } 2868 { ··· 2870 path = fetchurl { 2871 name = "path_parse___path_parse_1.0.6.tgz"; 2872 url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz"; 2873 - sha1 = "d62dbb5679405d72c4737ec58600e9ddcf06d24c"; 2874 }; 2875 } 2876 { ··· 2878 path = fetchurl { 2879 name = "path_to_regexp___path_to_regexp_0.1.7.tgz"; 2880 url = "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; 2881 - sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; 2882 }; 2883 } 2884 { ··· 2886 path = fetchurl { 2887 name = "path_type___path_type_4.0.0.tgz"; 2888 url = "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz"; 2889 - sha1 = "84ed01c0a7ba380afe09d90a8c180dcd9d03043b"; 2890 }; 2891 } 2892 { ··· 2894 path = fetchurl { 2895 name = "performance_now___performance_now_2.1.0.tgz"; 2896 url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz"; 2897 - sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 2898 }; 2899 } 2900 { ··· 2902 path = fetchurl { 2903 name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; 2904 url = "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; 2905 - sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 2906 }; 2907 } 2908 { ··· 2910 path = fetchurl { 2911 name = "postcss___postcss_6.0.23.tgz"; 2912 url = "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz"; 2913 - sha1 = "61c82cc328ac60e677645f979054eb98bc0e3324"; 2914 }; 2915 } 2916 { ··· 2918 path = fetchurl { 2919 name = "prelude_ls___prelude_ls_1.1.2.tgz"; 2920 url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; 2921 - sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; 2922 }; 2923 } 2924 { ··· 2926 path = fetchurl { 2927 name = "preserve___preserve_0.2.0.tgz"; 2928 url = "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz"; 2929 - sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b"; 2930 }; 2931 } 2932 { ··· 2934 path = fetchurl { 2935 name = "prettier___prettier_1.19.1.tgz"; 2936 url = "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz"; 2937 - sha1 = "f7d7f5ff8a9cd872a7be4ca142095956a60797cb"; 2938 }; 2939 } 2940 { ··· 2942 path = fetchurl { 2943 name = "pretty_time___pretty_time_0.2.0.tgz"; 2944 url = "https://registry.yarnpkg.com/pretty-time/-/pretty-time-0.2.0.tgz"; 2945 - sha1 = "7a3bdec4049c620cd7c42b7f342b74d56e73d74e"; 2946 }; 2947 } 2948 { ··· 2950 path = fetchurl { 2951 name = "prettysize___prettysize_0.0.3.tgz"; 2952 url = "https://registry.yarnpkg.com/prettysize/-/prettysize-0.0.3.tgz"; 2953 - sha1 = "14afff6a645e591a4ddf1c72919c23b4146181a1"; 2954 }; 2955 } 2956 { ··· 2958 path = fetchurl { 2959 name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; 2960 url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 2961 - sha1 = "7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"; 2962 }; 2963 } 2964 { ··· 2966 path = fetchurl { 2967 name = "prop_types___prop_types_15.7.2.tgz"; 2968 url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz"; 2969 - sha1 = "52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"; 2970 }; 2971 } 2972 { ··· 2974 path = fetchurl { 2975 name = "prosemirror_changeset___prosemirror_changeset_2.1.2.tgz"; 2976 url = "https://registry.yarnpkg.com/prosemirror-changeset/-/prosemirror-changeset-2.1.2.tgz"; 2977 - sha1 = "91dee900eb4618b21ed0c38c8d41dc7539303864"; 2978 }; 2979 } 2980 { 2981 - name = "prosemirror_commands___prosemirror_commands_1.1.4.tgz"; 2982 path = fetchurl { 2983 - name = "prosemirror_commands___prosemirror_commands_1.1.4.tgz"; 2984 - url = "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.1.4.tgz"; 2985 - sha1 = "991563e67623acab4f8c510fad1570f8b4693780"; 2986 }; 2987 } 2988 { ··· 2990 path = fetchurl { 2991 name = "prosemirror_dev_tools___prosemirror_dev_tools_2.1.1.tgz"; 2992 url = "https://registry.yarnpkg.com/prosemirror-dev-tools/-/prosemirror-dev-tools-2.1.1.tgz"; 2993 - sha1 = "0c4304b05b437608b3666b72fdb4b21e24fa29fc"; 2994 }; 2995 } 2996 { 2997 - name = "prosemirror_dropcursor___prosemirror_dropcursor_1.3.2.tgz"; 2998 path = fetchurl { 2999 - name = "prosemirror_dropcursor___prosemirror_dropcursor_1.3.2.tgz"; 3000 - url = "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.3.2.tgz"; 3001 - sha1 = "28738c4ed7102e814d7a8a26d70018523fc7cd6d"; 3002 }; 3003 } 3004 { ··· 3006 path = fetchurl { 3007 name = "prosemirror_gapcursor___prosemirror_gapcursor_1.1.5.tgz"; 3008 url = "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.1.5.tgz"; 3009 - sha1 = "0c37fd6cbb1d7c46358c2e7397f8da9a8b5c6246"; 3010 }; 3011 } 3012 { 3013 - name = "prosemirror_history___prosemirror_history_1.1.3.tgz"; 3014 path = fetchurl { 3015 - name = "prosemirror_history___prosemirror_history_1.1.3.tgz"; 3016 - url = "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.1.3.tgz"; 3017 - sha1 = "4f76a1e71db4ef7cdf0e13dec6d8da2aeaecd489"; 3018 }; 3019 } 3020 { 3021 - name = "prosemirror_inputrules___prosemirror_inputrules_1.1.2.tgz"; 3022 path = fetchurl { 3023 - name = "prosemirror_inputrules___prosemirror_inputrules_1.1.2.tgz"; 3024 - url = "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.1.2.tgz"; 3025 - sha1 = "487e46c763e1212a4577397aba7706139084f012"; 3026 }; 3027 } 3028 { ··· 3030 path = fetchurl { 3031 name = "prosemirror_keymap___prosemirror_keymap_1.1.3.tgz"; 3032 url = "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.1.3.tgz"; 3033 - sha1 = "be22d6108df2521608e9216a87b1a810f0ed361e"; 3034 }; 3035 } 3036 { ··· 3038 path = fetchurl { 3039 name = "prosemirror_keymap___prosemirror_keymap_1.1.4.tgz"; 3040 url = "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.1.4.tgz"; 3041 - sha1 = "8b481bf8389a5ac40d38dbd67ec3da2c7eac6a6d"; 3042 }; 3043 } 3044 { ··· 3046 path = fetchurl { 3047 name = "prosemirror_model___prosemirror_model_1.9.1.tgz"; 3048 url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.9.1.tgz"; 3049 - sha1 = "8c08cf556f593c5f015548d2c1a6825661df087f"; 3050 }; 3051 } 3052 { 3053 - name = "prosemirror_model___prosemirror_model_1.11.0.tgz"; 3054 path = fetchurl { 3055 - name = "prosemirror_model___prosemirror_model_1.11.0.tgz"; 3056 - url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.11.0.tgz"; 3057 - sha1 = "dc36cdb3ad6442b9f6325c7d89170c624f9dc520"; 3058 }; 3059 } 3060 { 3061 - name = "prosemirror_schema_list___prosemirror_schema_list_1.1.4.tgz"; 3062 path = fetchurl { 3063 - name = "prosemirror_schema_list___prosemirror_schema_list_1.1.4.tgz"; 3064 - url = "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.1.4.tgz"; 3065 - sha1 = "471f9caf2d2bed93641d2e490434c0d2d4330df1"; 3066 }; 3067 } 3068 { ··· 3070 path = fetchurl { 3071 name = "prosemirror_state___prosemirror_state_1.3.2.tgz"; 3072 url = "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.2.tgz"; 3073 - sha1 = "1b910b0dc01c1f00926bb9ba1589f7b7ac0d658b"; 3074 }; 3075 } 3076 { 3077 - name = "prosemirror_state___prosemirror_state_1.3.3.tgz"; 3078 path = fetchurl { 3079 - name = "prosemirror_state___prosemirror_state_1.3.3.tgz"; 3080 - url = "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.3.tgz"; 3081 - sha1 = "b2862866b14dec2b3ae1ab18229f2bd337651a2c"; 3082 }; 3083 } 3084 { ··· 3086 path = fetchurl { 3087 name = "prosemirror_tables___prosemirror_tables_1.0.0.tgz"; 3088 url = "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.0.0.tgz"; 3089 - sha1 = "ec3d0b11e638c6a92dd14ae816d0a2efd1719b70"; 3090 }; 3091 } 3092 { ··· 3094 path = fetchurl { 3095 name = "prosemirror_tables___prosemirror_tables_1.1.1.tgz"; 3096 url = "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.1.1.tgz"; 3097 - sha1 = "ad66300cc49500455cf1243bb129c9e7d883321e"; 3098 }; 3099 } 3100 { ··· 3102 path = fetchurl { 3103 name = "prosemirror_transform___prosemirror_transform_1.2.3.tgz"; 3104 url = "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.2.3.tgz"; 3105 - sha1 = "239d17591af24d39ef3f1999daa09e1f1c76b06a"; 3106 }; 3107 } 3108 { 3109 - name = "prosemirror_transform___prosemirror_transform_1.2.8.tgz"; 3110 path = fetchurl { 3111 - name = "prosemirror_transform___prosemirror_transform_1.2.8.tgz"; 3112 - url = "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.2.8.tgz"; 3113 - sha1 = "4b86544fa43637fe381549fb7b019f4fb71fe65c"; 3114 }; 3115 } 3116 { ··· 3118 path = fetchurl { 3119 name = "prosemirror_utils___prosemirror_utils_0.9.6.tgz"; 3120 url = "https://registry.yarnpkg.com/prosemirror-utils/-/prosemirror-utils-0.9.6.tgz"; 3121 - sha1 = "3d97bd85897e3b535555867dc95a51399116a973"; 3122 }; 3123 } 3124 { ··· 3126 path = fetchurl { 3127 name = "prosemirror_view___prosemirror_view_1.14.2.tgz"; 3128 url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.14.2.tgz"; 3129 - sha1 = "23eb89f6101e9671b5e0c19d82ee0ad9de5608de"; 3130 }; 3131 } 3132 { 3133 - name = "prosemirror_view___prosemirror_view_1.15.6.tgz"; 3134 path = fetchurl { 3135 - name = "prosemirror_view___prosemirror_view_1.15.6.tgz"; 3136 - url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.15.6.tgz"; 3137 - sha1 = "446bf7662235300c5f47362af2db805c6df3ad24"; 3138 }; 3139 } 3140 { ··· 3142 path = fetchurl { 3143 name = "proxy_addr___proxy_addr_2.0.6.tgz"; 3144 url = "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz"; 3145 - sha1 = "fdc2336505447d3f2f2c638ed272caf614bbb2bf"; 3146 }; 3147 } 3148 { ··· 3150 path = fetchurl { 3151 name = "psl___psl_1.7.0.tgz"; 3152 url = "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz"; 3153 - sha1 = "f1c4c47a8ef97167dea5d6bbf4816d736e884a3c"; 3154 }; 3155 } 3156 { ··· 3158 path = fetchurl { 3159 name = "pullstream___pullstream_0.4.1.tgz"; 3160 url = "https://registry.yarnpkg.com/pullstream/-/pullstream-0.4.1.tgz"; 3161 - sha1 = "d6fb3bf5aed697e831150eb1002c25a3f8ae1314"; 3162 }; 3163 } 3164 { ··· 3166 path = fetchurl { 3167 name = "punycode___punycode_2.1.1.tgz"; 3168 url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; 3169 - sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec"; 3170 }; 3171 } 3172 { ··· 3174 path = fetchurl { 3175 name = "pure_color___pure_color_1.3.0.tgz"; 3176 url = "https://registry.yarnpkg.com/pure-color/-/pure-color-1.3.0.tgz"; 3177 - sha1 = "1fe064fb0ac851f0de61320a8bf796836422f33e"; 3178 }; 3179 } 3180 { ··· 3182 path = fetchurl { 3183 name = "qs___qs_6.7.0.tgz"; 3184 url = "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz"; 3185 - sha1 = "41dc1a015e3d581f1621776be31afb2876a9b1bc"; 3186 }; 3187 } 3188 { ··· 3190 path = fetchurl { 3191 name = "qs___qs_6.5.2.tgz"; 3192 url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz"; 3193 - sha1 = "cb3ae806e8740444584ef154ce8ee98d403f3e36"; 3194 }; 3195 } 3196 { ··· 3198 path = fetchurl { 3199 name = "randomatic___randomatic_3.1.1.tgz"; 3200 url = "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz"; 3201 - sha1 = "b776efc59375984e36c537b2f51a1f0aff0da1ed"; 3202 }; 3203 } 3204 { ··· 3206 path = fetchurl { 3207 name = "range_parser___range_parser_1.2.1.tgz"; 3208 url = "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz"; 3209 - sha1 = "3cf37023d199e1c24d1a55b84800c2f3e6468031"; 3210 }; 3211 } 3212 { ··· 3214 path = fetchurl { 3215 name = "raw_body___raw_body_2.4.0.tgz"; 3216 url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz"; 3217 - sha1 = "a1ce6fb9c9bc356ca52e89256ab59059e13d0332"; 3218 }; 3219 } 3220 { ··· 3222 path = fetchurl { 3223 name = "react_base16_styling___react_base16_styling_0.5.3.tgz"; 3224 url = "https://registry.yarnpkg.com/react-base16-styling/-/react-base16-styling-0.5.3.tgz"; 3225 - sha1 = "3858f24e9c4dd8cbd3f702f3f74d581ca2917269"; 3226 }; 3227 } 3228 { ··· 3230 path = fetchurl { 3231 name = "react_dock___react_dock_0.2.4.tgz"; 3232 url = "https://registry.yarnpkg.com/react-dock/-/react-dock-0.2.4.tgz"; 3233 - sha1 = "e727dc7550b3b73116635dcb9c0e04d0b7afe17c"; 3234 }; 3235 } 3236 { 3237 - name = "react_dom___react_dom_16.13.1.tgz"; 3238 path = fetchurl { 3239 - name = "react_dom___react_dom_16.13.1.tgz"; 3240 - url = "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz"; 3241 - sha1 = "c1bd37331a0486c078ee54c4740720993b2e0e7f"; 3242 }; 3243 } 3244 { ··· 3246 path = fetchurl { 3247 name = "react_emotion___react_emotion_9.2.12.tgz"; 3248 url = "https://registry.yarnpkg.com/react-emotion/-/react-emotion-9.2.12.tgz"; 3249 - sha1 = "74d1494f89e22d0b9442e92a33ca052461955c83"; 3250 }; 3251 } 3252 { ··· 3254 path = fetchurl { 3255 name = "react_is___react_is_16.13.0.tgz"; 3256 url = "https://registry.yarnpkg.com/react-is/-/react-is-16.13.0.tgz"; 3257 - sha1 = "0f37c3613c34fe6b37cd7f763a0d6293ab15c527"; 3258 }; 3259 } 3260 { ··· 3262 path = fetchurl { 3263 name = "react_json_tree___react_json_tree_0.11.2.tgz"; 3264 url = "https://registry.yarnpkg.com/react-json-tree/-/react-json-tree-0.11.2.tgz"; 3265 - sha1 = "af70199fcbc265699ade2aec492465c51608f95e"; 3266 }; 3267 } 3268 { 3269 - name = "react_window___react_window_1.8.5.tgz"; 3270 path = fetchurl { 3271 - name = "react_window___react_window_1.8.5.tgz"; 3272 - url = "https://registry.yarnpkg.com/react-window/-/react-window-1.8.5.tgz"; 3273 - sha1 = "a56b39307e79979721021f5d06a67742ecca52d1"; 3274 }; 3275 } 3276 { 3277 - name = "react___react_16.13.1.tgz"; 3278 path = fetchurl { 3279 - name = "react___react_16.13.1.tgz"; 3280 - url = "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz"; 3281 - sha1 = "2e818822f1a9743122c063d6410d85c1e3afe48e"; 3282 }; 3283 } 3284 { ··· 3286 path = fetchurl { 3287 name = "readable_stream___readable_stream_2.3.7.tgz"; 3288 url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz"; 3289 - sha1 = "1eca1cf711aef814c04f62252a36a62f6cb23b57"; 3290 }; 3291 } 3292 { ··· 3294 path = fetchurl { 3295 name = "readable_stream___readable_stream_3.6.0.tgz"; 3296 url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz"; 3297 - sha1 = "337bbda3adc0706bd3e024426a286d4b4b2c9198"; 3298 }; 3299 } 3300 { ··· 3302 path = fetchurl { 3303 name = "readable_stream___readable_stream_1.0.34.tgz"; 3304 url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz"; 3305 - sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c"; 3306 }; 3307 } 3308 { ··· 3310 path = fetchurl { 3311 name = "readdirp___readdirp_2.2.1.tgz"; 3312 url = "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz"; 3313 - sha1 = "0e87622a3325aa33e892285caf8b4e846529a525"; 3314 }; 3315 } 3316 { ··· 3318 path = fetchurl { 3319 name = "realm_utils___realm_utils_1.0.9.tgz"; 3320 url = "https://registry.yarnpkg.com/realm-utils/-/realm-utils-1.0.9.tgz"; 3321 - sha1 = "5c76a5ff39e4816af2c133a161f4221d6628eff4"; 3322 }; 3323 } 3324 { ··· 3326 path = fetchurl { 3327 name = "regenerate_unicode_properties___regenerate_unicode_properties_8.1.0.tgz"; 3328 url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz"; 3329 - sha1 = "ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"; 3330 }; 3331 } 3332 { ··· 3334 path = fetchurl { 3335 name = "regenerate___regenerate_1.4.0.tgz"; 3336 url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz"; 3337 - sha1 = "4a856ec4b56e4077c557589cae85e7a4c8869a11"; 3338 }; 3339 } 3340 { ··· 3342 path = fetchurl { 3343 name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; 3344 url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; 3345 - sha1 = "be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"; 3346 }; 3347 } 3348 { ··· 3350 path = fetchurl { 3351 name = "regenerator_runtime___regenerator_runtime_0.13.3.tgz"; 3352 url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz"; 3353 - sha1 = "7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"; 3354 }; 3355 } 3356 { ··· 3358 path = fetchurl { 3359 name = "regenerator_runtime___regenerator_runtime_0.13.5.tgz"; 3360 url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz"; 3361 - sha1 = "d878a1d094b4306d10b9096484b33ebd55e26697"; 3362 }; 3363 } 3364 { ··· 3366 path = fetchurl { 3367 name = "regex_cache___regex_cache_0.4.4.tgz"; 3368 url = "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz"; 3369 - sha1 = "75bdc58a2a1496cec48a12835bc54c8d562336dd"; 3370 }; 3371 } 3372 { ··· 3374 path = fetchurl { 3375 name = "regex_not___regex_not_1.0.2.tgz"; 3376 url = "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz"; 3377 - sha1 = "1f4ece27e00b0b65e0247a6810e6a85d83a5752c"; 3378 }; 3379 } 3380 { ··· 3382 path = fetchurl { 3383 name = "regexpu_core___regexpu_core_4.6.0.tgz"; 3384 url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz"; 3385 - sha1 = "2037c18b327cfce8a6fea2a4ec441f2432afb8b6"; 3386 }; 3387 } 3388 { ··· 3390 path = fetchurl { 3391 name = "regjsgen___regjsgen_0.5.1.tgz"; 3392 url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz"; 3393 - sha1 = "48f0bf1a5ea205196929c0d9798b42d1ed98443c"; 3394 }; 3395 } 3396 { ··· 3398 path = fetchurl { 3399 name = "regjsparser___regjsparser_0.6.3.tgz"; 3400 url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.3.tgz"; 3401 - sha1 = "74192c5805d35e9f5ebe3c1fb5b40d40a8a38460"; 3402 }; 3403 } 3404 { ··· 3406 path = fetchurl { 3407 name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz"; 3408 url = "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; 3409 - sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; 3410 }; 3411 } 3412 { ··· 3414 path = fetchurl { 3415 name = "repeat_element___repeat_element_1.1.3.tgz"; 3416 url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz"; 3417 - sha1 = "782e0d825c0c5a3bb39731f84efee6b742e6b1ce"; 3418 }; 3419 } 3420 { ··· 3422 path = fetchurl { 3423 name = "repeat_string___repeat_string_1.6.1.tgz"; 3424 url = "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz"; 3425 - sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; 3426 }; 3427 } 3428 { ··· 3430 path = fetchurl { 3431 name = "request___request_2.88.2.tgz"; 3432 url = "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz"; 3433 - sha1 = "d73c918731cb5a87da047e207234146f664d12b3"; 3434 }; 3435 } 3436 { ··· 3438 path = fetchurl { 3439 name = "resolve_from___resolve_from_4.0.0.tgz"; 3440 url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; 3441 - sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6"; 3442 }; 3443 } 3444 { ··· 3446 path = fetchurl { 3447 name = "resolve_url___resolve_url_0.2.1.tgz"; 3448 url = "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz"; 3449 - sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; 3450 }; 3451 } 3452 { ··· 3454 path = fetchurl { 3455 name = "resolve___resolve_1.15.1.tgz"; 3456 url = "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz"; 3457 - sha1 = "27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8"; 3458 }; 3459 } 3460 { ··· 3462 path = fetchurl { 3463 name = "restore_cursor___restore_cursor_2.0.0.tgz"; 3464 url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz"; 3465 - sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; 3466 }; 3467 } 3468 { ··· 3470 path = fetchurl { 3471 name = "ret___ret_0.1.15.tgz"; 3472 url = "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz"; 3473 - sha1 = "b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"; 3474 }; 3475 } 3476 { ··· 3478 path = fetchurl { 3479 name = "rimraf___rimraf_2.7.1.tgz"; 3480 url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz"; 3481 - sha1 = "35797f13a7fdadc566142c29d4f07ccad483e3ec"; 3482 }; 3483 } 3484 { ··· 3486 path = fetchurl { 3487 name = "rope_sequence___rope_sequence_1.3.2.tgz"; 3488 url = "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.2.tgz"; 3489 - sha1 = "a19e02d72991ca71feb6b5f8a91154e48e3c098b"; 3490 }; 3491 } 3492 { ··· 3494 path = fetchurl { 3495 name = "run_async___run_async_2.4.0.tgz"; 3496 url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz"; 3497 - sha1 = "e59054a5b86876cfae07f431d18cbaddc594f1e8"; 3498 }; 3499 } 3500 { ··· 3502 path = fetchurl { 3503 name = "rx_lite_aggregates___rx_lite_aggregates_4.0.8.tgz"; 3504 url = "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz"; 3505 - sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be"; 3506 }; 3507 } 3508 { ··· 3510 path = fetchurl { 3511 name = "rx_lite___rx_lite_4.0.8.tgz"; 3512 url = "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz"; 3513 - sha1 = "0b1e11af8bc44836f04a6407e92da42467b79444"; 3514 }; 3515 } 3516 { ··· 3518 path = fetchurl { 3519 name = "safe_buffer___safe_buffer_5.1.2.tgz"; 3520 url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; 3521 - sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d"; 3522 }; 3523 } 3524 { ··· 3526 path = fetchurl { 3527 name = "safe_buffer___safe_buffer_5.2.0.tgz"; 3528 url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz"; 3529 - sha1 = "b74daec49b1148f88c64b68d49b1e815c1f2f519"; 3530 }; 3531 } 3532 { ··· 3534 path = fetchurl { 3535 name = "safe_buffer___safe_buffer_5.2.1.tgz"; 3536 url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz"; 3537 - sha1 = "1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"; 3538 }; 3539 } 3540 { ··· 3542 path = fetchurl { 3543 name = "safe_regex___safe_regex_1.1.0.tgz"; 3544 url = "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz"; 3545 - sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; 3546 }; 3547 } 3548 { ··· 3550 path = fetchurl { 3551 name = "safer_buffer___safer_buffer_2.1.2.tgz"; 3552 url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; 3553 - sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a"; 3554 }; 3555 } 3556 { 3557 - name = "scheduler___scheduler_0.19.1.tgz"; 3558 path = fetchurl { 3559 - name = "scheduler___scheduler_0.19.1.tgz"; 3560 - url = "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz"; 3561 - sha1 = "4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"; 3562 }; 3563 } 3564 { ··· 3566 path = fetchurl { 3567 name = "select___select_1.1.2.tgz"; 3568 url = "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz"; 3569 - sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d"; 3570 }; 3571 } 3572 { ··· 3574 path = fetchurl { 3575 name = "semver___semver_5.7.1.tgz"; 3576 url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz"; 3577 - sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7"; 3578 }; 3579 } 3580 { ··· 3582 path = fetchurl { 3583 name = "send___send_0.17.1.tgz"; 3584 url = "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz"; 3585 - sha1 = "c1d8b059f7900f7466dd4938bdc44e11ddb376c8"; 3586 }; 3587 } 3588 { 3589 - name = "sentence_splitter___sentence_splitter_3.2.0.tgz"; 3590 path = fetchurl { 3591 - name = "sentence_splitter___sentence_splitter_3.2.0.tgz"; 3592 - url = "https://registry.yarnpkg.com/sentence-splitter/-/sentence-splitter-3.2.0.tgz"; 3593 - sha1 = "fb2cd2f61f40006643ba83d9acf4609233c1c68c"; 3594 }; 3595 } 3596 { ··· 3598 path = fetchurl { 3599 name = "serve_static___serve_static_1.14.1.tgz"; 3600 url = "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz"; 3601 - sha1 = "666e636dc4f010f7ef29970a88a674320898b2f9"; 3602 }; 3603 } 3604 { ··· 3606 path = fetchurl { 3607 name = "set_value___set_value_2.0.1.tgz"; 3608 url = "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz"; 3609 - sha1 = "a18d40530e6f07de4228c7defe4227af8cad005b"; 3610 }; 3611 } 3612 { ··· 3614 path = fetchurl { 3615 name = "setimmediate___setimmediate_1.0.5.tgz"; 3616 url = "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz"; 3617 - sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285"; 3618 }; 3619 } 3620 { ··· 3622 path = fetchurl { 3623 name = "setprototypeof___setprototypeof_1.1.1.tgz"; 3624 url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz"; 3625 - sha1 = "7e95acb24aa92f5885e0abef5ba131330d4ae683"; 3626 }; 3627 } 3628 { ··· 3630 path = fetchurl { 3631 name = "shorthash___shorthash_0.0.2.tgz"; 3632 url = "https://registry.yarnpkg.com/shorthash/-/shorthash-0.0.2.tgz"; 3633 - sha1 = "59b268eecbde59038b30da202bcfbddeb2c4a4eb"; 3634 }; 3635 } 3636 { ··· 3638 path = fetchurl { 3639 name = "signal_exit___signal_exit_3.0.2.tgz"; 3640 url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz"; 3641 - sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d"; 3642 }; 3643 } 3644 { ··· 3646 path = fetchurl { 3647 name = "slice_stream___slice_stream_1.0.0.tgz"; 3648 url = "https://registry.yarnpkg.com/slice-stream/-/slice-stream-1.0.0.tgz"; 3649 - sha1 = "5b33bd66f013b1a7f86460b03d463dec39ad3ea0"; 3650 }; 3651 } 3652 { ··· 3654 path = fetchurl { 3655 name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; 3656 url = "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; 3657 - sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b"; 3658 }; 3659 } 3660 { ··· 3662 path = fetchurl { 3663 name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; 3664 url = "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; 3665 - sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2"; 3666 }; 3667 } 3668 { ··· 3670 path = fetchurl { 3671 name = "snapdragon___snapdragon_0.8.2.tgz"; 3672 url = "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz"; 3673 - sha1 = "64922e7c565b0e14204ba1aa7d6964278d25182d"; 3674 }; 3675 } 3676 { ··· 3678 path = fetchurl { 3679 name = "source_map_resolve___source_map_resolve_0.5.3.tgz"; 3680 url = "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz"; 3681 - sha1 = "190866bece7553e1f8f267a2ee82c606b5509a1a"; 3682 }; 3683 } 3684 { ··· 3686 path = fetchurl { 3687 name = "source_map_support___source_map_support_0.5.19.tgz"; 3688 url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz"; 3689 - sha1 = "a98b62f86dcaf4f67399648c085291ab9e8fed61"; 3690 }; 3691 } 3692 { ··· 3694 path = fetchurl { 3695 name = "source_map_support___source_map_support_0.5.16.tgz"; 3696 url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz"; 3697 - sha1 = "0ae069e7fe3ba7538c64c98515e35339eac5a042"; 3698 }; 3699 } 3700 { ··· 3702 path = fetchurl { 3703 name = "source_map_url___source_map_url_0.4.0.tgz"; 3704 url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz"; 3705 - sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; 3706 }; 3707 } 3708 { ··· 3710 path = fetchurl { 3711 name = "source_map___source_map_0.5.7.tgz"; 3712 url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; 3713 - sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; 3714 }; 3715 } 3716 { ··· 3718 path = fetchurl { 3719 name = "source_map___source_map_0.6.1.tgz"; 3720 url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz"; 3721 - sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263"; 3722 }; 3723 } 3724 { ··· 3726 path = fetchurl { 3727 name = "source_map___source_map_0.7.3.tgz"; 3728 url = "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz"; 3729 - sha1 = "5302f8169031735226544092e64981f751750383"; 3730 }; 3731 } 3732 { ··· 3734 path = fetchurl { 3735 name = "sourcemap_blender___sourcemap_blender_1.0.5.tgz"; 3736 url = "https://registry.yarnpkg.com/sourcemap-blender/-/sourcemap-blender-1.0.5.tgz"; 3737 - sha1 = "d361f3d12381c4e477178113878fdf984a91bdbc"; 3738 }; 3739 } 3740 { ··· 3742 path = fetchurl { 3743 name = "split_string___split_string_3.1.0.tgz"; 3744 url = "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz"; 3745 - sha1 = "7cb09dda3a86585705c64b39a6466038682e8fe2"; 3746 }; 3747 } 3748 { ··· 3750 path = fetchurl { 3751 name = "sprintf_js___sprintf_js_1.0.3.tgz"; 3752 url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz"; 3753 - sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 3754 }; 3755 } 3756 { ··· 3758 path = fetchurl { 3759 name = "sshpk___sshpk_1.16.1.tgz"; 3760 url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz"; 3761 - sha1 = "fb661c0bef29b39db40769ee39fa70093d6f6877"; 3762 }; 3763 } 3764 { ··· 3766 path = fetchurl { 3767 name = "static_extend___static_extend_0.1.2.tgz"; 3768 url = "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz"; 3769 - sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; 3770 }; 3771 } 3772 { ··· 3774 path = fetchurl { 3775 name = "statuses___statuses_1.5.0.tgz"; 3776 url = "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz"; 3777 - sha1 = "161c7dac177659fd9811f43771fa99381478628c"; 3778 }; 3779 } 3780 { ··· 3782 path = fetchurl { 3783 name = "stream_browserify___stream_browserify_2.0.2.tgz"; 3784 url = "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz"; 3785 - sha1 = "87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"; 3786 }; 3787 } 3788 { 3789 - name = "string_width___string_width_2.1.1.tgz"; 3790 path = fetchurl { 3791 - name = "string_width___string_width_2.1.1.tgz"; 3792 - url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz"; 3793 - sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e"; 3794 }; 3795 } 3796 { 3797 - name = "string.prototype.trimend___string.prototype.trimend_1.0.1.tgz"; 3798 path = fetchurl { 3799 - name = "string.prototype.trimend___string.prototype.trimend_1.0.1.tgz"; 3800 - url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz"; 3801 - sha1 = "85812a6b847ac002270f5808146064c995fb6913"; 3802 }; 3803 } 3804 { 3805 - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.1.tgz"; 3806 path = fetchurl { 3807 - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.1.tgz"; 3808 - url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz"; 3809 - sha1 = "14af6d9f34b053f7cfc89b72f8f2ee14b9039a54"; 3810 }; 3811 } 3812 { ··· 3814 path = fetchurl { 3815 name = "string_decoder___string_decoder_1.3.0.tgz"; 3816 url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz"; 3817 - sha1 = "42f114594a46cf1a8e30b0a84f56c78c3edac21e"; 3818 }; 3819 } 3820 { ··· 3822 path = fetchurl { 3823 name = "string_decoder___string_decoder_0.10.31.tgz"; 3824 url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz"; 3825 - sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; 3826 }; 3827 } 3828 { ··· 3830 path = fetchurl { 3831 name = "string_decoder___string_decoder_1.1.1.tgz"; 3832 url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz"; 3833 - sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8"; 3834 }; 3835 } 3836 { ··· 3838 path = fetchurl { 3839 name = "strip_ansi___strip_ansi_4.0.0.tgz"; 3840 url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz"; 3841 - sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; 3842 }; 3843 } 3844 { ··· 3846 path = fetchurl { 3847 name = "structured_source___structured_source_3.0.2.tgz"; 3848 url = "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz"; 3849 - sha1 = "dd802425e0f53dc4a6e7aca3752901a1ccda7af5"; 3850 }; 3851 } 3852 { ··· 3854 path = fetchurl { 3855 name = "stylis_rule_sheet___stylis_rule_sheet_0.0.10.tgz"; 3856 url = "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz"; 3857 - sha1 = "44e64a2b076643f4b52e5ff71efc04d8c3c4a430"; 3858 }; 3859 } 3860 { ··· 3862 path = fetchurl { 3863 name = "stylis___stylis_3.5.4.tgz"; 3864 url = "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz"; 3865 - sha1 = "f665f25f5e299cf3d64654ab949a57c768b73fbe"; 3866 }; 3867 } 3868 { ··· 3870 path = fetchurl { 3871 name = "supports_color___supports_color_5.5.0.tgz"; 3872 url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; 3873 - sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f"; 3874 }; 3875 } 3876 { ··· 3878 path = fetchurl { 3879 name = "terser___terser_4.6.4.tgz"; 3880 url = "https://registry.yarnpkg.com/terser/-/terser-4.6.4.tgz"; 3881 - sha1 = "40a0b37afbe5b57e494536815efa68326840fc00"; 3882 }; 3883 } 3884 { ··· 3886 path = fetchurl { 3887 name = "thenby___thenby_1.3.3.tgz"; 3888 url = "https://registry.yarnpkg.com/thenby/-/thenby-1.3.3.tgz"; 3889 - sha1 = "016c3427772a284bbfef982d978f7574fd15ee9d"; 3890 }; 3891 } 3892 { ··· 3894 path = fetchurl { 3895 name = "through___through_2.3.8.tgz"; 3896 url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; 3897 - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 3898 }; 3899 } 3900 { ··· 3902 path = fetchurl { 3903 name = "tiny_emitter___tiny_emitter_2.1.0.tgz"; 3904 url = "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz"; 3905 - sha1 = "1d1a56edfc51c43e863cbb5382a72330e3555423"; 3906 }; 3907 } 3908 { ··· 3910 path = fetchurl { 3911 name = "tlite___tlite_0.1.9.tgz"; 3912 url = "https://registry.yarnpkg.com/tlite/-/tlite-0.1.9.tgz"; 3913 - sha1 = "e886e4a305b7522242e2453b7ca4fb84f2d9de0f"; 3914 }; 3915 } 3916 { ··· 3918 path = fetchurl { 3919 name = "tmp___tmp_0.0.33.tgz"; 3920 url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; 3921 - sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; 3922 }; 3923 } 3924 { ··· 3926 path = fetchurl { 3927 name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; 3928 url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 3929 - sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; 3930 }; 3931 } 3932 { ··· 3934 path = fetchurl { 3935 name = "to_object_path___to_object_path_0.3.0.tgz"; 3936 url = "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz"; 3937 - sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; 3938 }; 3939 } 3940 { ··· 3942 path = fetchurl { 3943 name = "to_regex_range___to_regex_range_2.1.1.tgz"; 3944 url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz"; 3945 - sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; 3946 }; 3947 } 3948 { ··· 3950 path = fetchurl { 3951 name = "to_regex___to_regex_3.0.2.tgz"; 3952 url = "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz"; 3953 - sha1 = "13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"; 3954 }; 3955 } 3956 { ··· 3958 path = fetchurl { 3959 name = "toidentifier___toidentifier_1.0.0.tgz"; 3960 url = "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz"; 3961 - sha1 = "7e1be3470f1e77948bc43d94a3c8f4d7752ba553"; 3962 }; 3963 } 3964 { ··· 3966 path = fetchurl { 3967 name = "touch___touch_2.0.2.tgz"; 3968 url = "https://registry.yarnpkg.com/touch/-/touch-2.0.2.tgz"; 3969 - sha1 = "ca0b2a3ae3211246a61b16ba9e6cbf1596287164"; 3970 }; 3971 } 3972 { ··· 3974 path = fetchurl { 3975 name = "tough_cookie___tough_cookie_2.5.0.tgz"; 3976 url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz"; 3977 - sha1 = "cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"; 3978 }; 3979 } 3980 { ··· 3982 path = fetchurl { 3983 name = "traverse___traverse_0.3.9.tgz"; 3984 url = "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz"; 3985 - sha1 = "717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9"; 3986 }; 3987 } 3988 { ··· 3990 path = fetchurl { 3991 name = "ts_node___ts_node_8.10.2.tgz"; 3992 url = "https://registry.yarnpkg.com/ts-node/-/ts-node-8.10.2.tgz"; 3993 - sha1 = "eee03764633b1234ddd37f8db9ec10b75ec7fb8d"; 3994 }; 3995 } 3996 { ··· 3998 path = fetchurl { 3999 name = "tslib___tslib_1.11.1.tgz"; 4000 url = "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz"; 4001 - sha1 = "eb15d128827fbee2841549e171f45ed338ac7e35"; 4002 }; 4003 } 4004 { ··· 4006 path = fetchurl { 4007 name = "tslint_config_prettier___tslint_config_prettier_1.18.0.tgz"; 4008 url = "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz"; 4009 - sha1 = "75f140bde947d35d8f0d238e0ebf809d64592c37"; 4010 }; 4011 } 4012 { ··· 4014 path = fetchurl { 4015 name = "tslint_react___tslint_react_5.0.0.tgz"; 4016 url = "https://registry.yarnpkg.com/tslint-react/-/tslint-react-5.0.0.tgz"; 4017 - sha1 = "d0ae644e8163bdd3e134012e9353094904e8dd44"; 4018 }; 4019 } 4020 { ··· 4022 path = fetchurl { 4023 name = "tslint___tslint_5.20.1.tgz"; 4024 url = "https://registry.yarnpkg.com/tslint/-/tslint-5.20.1.tgz"; 4025 - sha1 = "e401e8aeda0152bc44dd07e614034f3f80c67b7d"; 4026 }; 4027 } 4028 { ··· 4030 path = fetchurl { 4031 name = "tsutils___tsutils_2.29.0.tgz"; 4032 url = "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz"; 4033 - sha1 = "32b488501467acbedd4b85498673a0812aca0b99"; 4034 }; 4035 } 4036 { ··· 4038 path = fetchurl { 4039 name = "tsutils___tsutils_3.17.1.tgz"; 4040 url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz"; 4041 - sha1 = "ed719917f11ca0dee586272b2ac49e015a2dd759"; 4042 }; 4043 } 4044 { ··· 4046 path = fetchurl { 4047 name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; 4048 url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; 4049 - sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; 4050 }; 4051 } 4052 { ··· 4054 path = fetchurl { 4055 name = "tweetnacl___tweetnacl_0.14.5.tgz"; 4056 url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz"; 4057 - sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; 4058 }; 4059 } 4060 { ··· 4062 path = fetchurl { 4063 name = "type_check___type_check_0.3.2.tgz"; 4064 url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; 4065 - sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; 4066 }; 4067 } 4068 { ··· 4070 path = fetchurl { 4071 name = "type_is___type_is_1.6.18.tgz"; 4072 url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz"; 4073 - sha1 = "4e552cd05df09467dcbc4ef739de89f2cf37c131"; 4074 }; 4075 } 4076 { ··· 4078 path = fetchurl { 4079 name = "typedarray___typedarray_0.0.6.tgz"; 4080 url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; 4081 - sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 4082 }; 4083 } 4084 { ··· 4086 path = fetchurl { 4087 name = "typescript_tslint_plugin___typescript_tslint_plugin_0.5.5.tgz"; 4088 url = "https://registry.yarnpkg.com/typescript-tslint-plugin/-/typescript-tslint-plugin-0.5.5.tgz"; 4089 - sha1 = "673875c43640251f1ab3d63745d7d49726ff961c"; 4090 }; 4091 } 4092 { ··· 4094 path = fetchurl { 4095 name = "typescript___typescript_3.8.3.tgz"; 4096 url = "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz"; 4097 - sha1 = "409eb8544ea0335711205869ec458ab109ee1061"; 4098 }; 4099 } 4100 { ··· 4102 path = fetchurl { 4103 name = "uglify_js___uglify_js_3.8.0.tgz"; 4104 url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.8.0.tgz"; 4105 - sha1 = "f3541ae97b2f048d7e7e3aa4f39fd8a1f5d7a805"; 4106 }; 4107 } 4108 { ··· 4110 path = fetchurl { 4111 name = "ultron___ultron_1.0.2.tgz"; 4112 url = "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz"; 4113 - sha1 = "ace116ab557cd197386a4e88f4685378c8b2e4fa"; 4114 }; 4115 } 4116 { ··· 4118 path = fetchurl { 4119 name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz"; 4120 url = "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz"; 4121 - sha1 = "2619800c4c825800efdd8343af7dd9933cbe2818"; 4122 }; 4123 } 4124 { ··· 4126 path = fetchurl { 4127 name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_1.0.4.tgz"; 4128 url = "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz"; 4129 - sha1 = "8ed2a32569961bce9227d09cd3ffbb8fed5f020c"; 4130 }; 4131 } 4132 { ··· 4134 path = fetchurl { 4135 name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.1.0.tgz"; 4136 url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz"; 4137 - sha1 = "5b4b426e08d13a80365e0d657ac7a6c1ec46a277"; 4138 }; 4139 } 4140 { ··· 4142 path = fetchurl { 4143 name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.5.tgz"; 4144 url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz"; 4145 - sha1 = "a9cc6cc7ce63a0a3023fc99e341b94431d405a57"; 4146 }; 4147 } 4148 { ··· 4150 path = fetchurl { 4151 name = "union_value___union_value_1.0.1.tgz"; 4152 url = "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz"; 4153 - sha1 = "0b6fe7b835aecda61c6ea4d4f02c14221e109847"; 4154 }; 4155 } 4156 { ··· 4158 path = fetchurl { 4159 name = "universalify___universalify_0.1.2.tgz"; 4160 url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz"; 4161 - sha1 = "b646f69be3942dabcecc9d6639c80dc105efaa66"; 4162 }; 4163 } 4164 { ··· 4166 path = fetchurl { 4167 name = "unpipe___unpipe_1.0.0.tgz"; 4168 url = "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz"; 4169 - sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; 4170 }; 4171 } 4172 { ··· 4174 path = fetchurl { 4175 name = "unset_value___unset_value_1.0.0.tgz"; 4176 url = "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz"; 4177 - sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; 4178 }; 4179 } 4180 { ··· 4182 path = fetchurl { 4183 name = "unstated___unstated_2.1.1.tgz"; 4184 url = "https://registry.yarnpkg.com/unstated/-/unstated-2.1.1.tgz"; 4185 - sha1 = "36b124dfb2e7a12d39d0bb9c46dfb6e51276e3a2"; 4186 }; 4187 } 4188 { ··· 4190 path = fetchurl { 4191 name = "unzip___unzip_0.1.11.tgz"; 4192 url = "https://registry.yarnpkg.com/unzip/-/unzip-0.1.11.tgz"; 4193 - sha1 = "89749c63b058d7d90d619f86b98aa1535d3b97f0"; 4194 }; 4195 } 4196 { ··· 4198 path = fetchurl { 4199 name = "uri_js___uri_js_4.2.2.tgz"; 4200 url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz"; 4201 - sha1 = "94c540e1ff772956e2299507c010aea6c8838eb0"; 4202 }; 4203 } 4204 { ··· 4206 path = fetchurl { 4207 name = "urix___urix_0.1.0.tgz"; 4208 url = "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz"; 4209 - sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; 4210 }; 4211 } 4212 { ··· 4214 path = fetchurl { 4215 name = "use___use_3.1.1.tgz"; 4216 url = "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz"; 4217 - sha1 = "d50c8cac79a19fbc20f2911f56eb973f4e10070f"; 4218 }; 4219 } 4220 { ··· 4222 path = fetchurl { 4223 name = "util_deprecate___util_deprecate_1.0.2.tgz"; 4224 url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; 4225 - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 4226 }; 4227 } 4228 { ··· 4230 path = fetchurl { 4231 name = "utils_extend___utils_extend_1.0.8.tgz"; 4232 url = "https://registry.yarnpkg.com/utils-extend/-/utils-extend-1.0.8.tgz"; 4233 - sha1 = "ccfd7b64540f8e90ee21eec57769d0651cab8a5f"; 4234 }; 4235 } 4236 { ··· 4238 path = fetchurl { 4239 name = "utils_merge___utils_merge_1.0.1.tgz"; 4240 url = "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz"; 4241 - sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; 4242 }; 4243 } 4244 { ··· 4246 path = fetchurl { 4247 name = "uuid___uuid_3.4.0.tgz"; 4248 url = "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz"; 4249 - sha1 = "b23e4358afa8a202fe7a100af1f5f883f02007ee"; 4250 }; 4251 } 4252 { ··· 4254 path = fetchurl { 4255 name = "vary___vary_1.1.2.tgz"; 4256 url = "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz"; 4257 - sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; 4258 }; 4259 } 4260 { ··· 4262 path = fetchurl { 4263 name = "verror___verror_1.10.0.tgz"; 4264 url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz"; 4265 - sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 4266 }; 4267 } 4268 { ··· 4270 path = fetchurl { 4271 name = "vscode_jsonrpc___vscode_jsonrpc_4.0.0.tgz"; 4272 url = "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz"; 4273 - sha1 = "a7bf74ef3254d0a0c272fab15c82128e378b3be9"; 4274 }; 4275 } 4276 { ··· 4278 path = fetchurl { 4279 name = "vscode_languageserver_protocol___vscode_languageserver_protocol_3.14.1.tgz"; 4280 url = "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz"; 4281 - sha1 = "b8aab6afae2849c84a8983d39a1cf742417afe2f"; 4282 }; 4283 } 4284 { ··· 4286 path = fetchurl { 4287 name = "vscode_languageserver_types___vscode_languageserver_types_3.14.0.tgz"; 4288 url = "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz"; 4289 - sha1 = "d3b5952246d30e5241592b6dde8280e03942e743"; 4290 }; 4291 } 4292 { ··· 4294 path = fetchurl { 4295 name = "vscode_languageserver___vscode_languageserver_5.2.1.tgz"; 4296 url = "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz"; 4297 - sha1 = "0d2feddd33f92aadf5da32450df498d52f6f14eb"; 4298 }; 4299 } 4300 { ··· 4302 path = fetchurl { 4303 name = "vscode_uri___vscode_uri_1.0.8.tgz"; 4304 url = "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-1.0.8.tgz"; 4305 - sha1 = "9769aaececae4026fb6e22359cb38946580ded59"; 4306 }; 4307 } 4308 { ··· 4310 path = fetchurl { 4311 name = "w3c_keyname___w3c_keyname_2.2.2.tgz"; 4312 url = "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.2.tgz"; 4313 - sha1 = "7ea63170454bb19f1a3c6b628fc3dc8889276e91"; 4314 }; 4315 } 4316 { ··· 4318 path = fetchurl { 4319 name = "watch___watch_1.0.2.tgz"; 4320 url = "https://registry.yarnpkg.com/watch/-/watch-1.0.2.tgz"; 4321 - sha1 = "340a717bde765726fa0aa07d721e0147a551df0c"; 4322 }; 4323 } 4324 { ··· 4326 path = fetchurl { 4327 name = "word_wrap___word_wrap_1.2.3.tgz"; 4328 url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz"; 4329 - sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c"; 4330 }; 4331 } 4332 { ··· 4334 path = fetchurl { 4335 name = "wrappy___wrappy_1.0.2.tgz"; 4336 url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; 4337 - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 4338 }; 4339 } 4340 { ··· 4342 path = fetchurl { 4343 name = "ws___ws_1.1.5.tgz"; 4344 url = "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz"; 4345 - sha1 = "cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51"; 4346 }; 4347 } 4348 { ··· 4350 path = fetchurl { 4351 name = "yaml___yaml_1.7.2.tgz"; 4352 url = "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz"; 4353 - sha1 = "f26aabf738590ab61efaca502358e48dc9f348b2"; 4354 }; 4355 } 4356 { ··· 4358 path = fetchurl { 4359 name = "yn___yn_3.1.1.tgz"; 4360 url = "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz"; 4361 - sha1 = "1e87401a09d767c1d5eab26a6e4c185182d2eb50"; 4362 }; 4363 } 4364 { ··· 4366 path = fetchurl { 4367 name = "zenscroll___zenscroll_4.0.2.tgz"; 4368 url = "https://registry.yarnpkg.com/zenscroll/-/zenscroll-4.0.2.tgz"; 4369 - sha1 = "e8d5774d1c0738a47bcfa8729f3712e2deddeb25"; 4370 }; 4371 } 4372 ];
··· 6 path = fetchurl { 7 name = "_babel_code_frame___code_frame_7.8.3.tgz"; 8 url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz"; 9 + sha512 = "a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g=="; 10 }; 11 } 12 { 13 + name = "_babel_helper_module_imports___helper_module_imports_7.15.4.tgz"; 14 path = fetchurl { 15 + name = "_babel_helper_module_imports___helper_module_imports_7.15.4.tgz"; 16 + url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz"; 17 + sha512 = "jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA=="; 18 + }; 19 + } 20 + { 21 + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz"; 22 + path = fetchurl { 23 + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz"; 24 + url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz"; 25 + sha512 = "pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g=="; 26 }; 27 } 28 { ··· 30 path = fetchurl { 31 name = "_babel_highlight___highlight_7.8.3.tgz"; 32 url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz"; 33 + sha512 = "PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg=="; 34 }; 35 } 36 { ··· 38 path = fetchurl { 39 name = "_babel_runtime___runtime_7.9.6.tgz"; 40 url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz"; 41 + sha512 = "64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ=="; 42 }; 43 } 44 { ··· 46 path = fetchurl { 47 name = "_babel_runtime___runtime_7.8.4.tgz"; 48 url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.4.tgz"; 49 + sha512 = "neAp3zt80trRVBI1x0azq6c57aNBqYZH8KhMm3TaB7wEI5Q4A2SHfBHE8w9gOhI/lrqxtEbXZgQIrHP+wvSGwQ=="; 50 }; 51 } 52 { 53 + name = "_babel_types___types_7.15.6.tgz"; 54 path = fetchurl { 55 + name = "_babel_types___types_7.15.6.tgz"; 56 + url = "https://registry.yarnpkg.com/@babel/types/-/types-7.15.6.tgz"; 57 + sha512 = "BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig=="; 58 }; 59 } 60 { ··· 62 path = fetchurl { 63 name = "_emotion_babel_utils___babel_utils_0.6.10.tgz"; 64 url = "https://registry.yarnpkg.com/@emotion/babel-utils/-/babel-utils-0.6.10.tgz"; 65 + sha512 = "/fnkM/LTEp3jKe++T0KyTszVGWNKPNOUJfjNKLO17BzQ6QPxgbg3whayom1Qr2oLFH3V92tDymU+dT5q676uow=="; 66 }; 67 } 68 { ··· 70 path = fetchurl { 71 name = "_emotion_hash___hash_0.6.6.tgz"; 72 url = "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.6.6.tgz"; 73 + sha512 = "ojhgxzUHZ7am3D2jHkMzPpsBAiB005GF5YU4ea+8DNPybMk01JJUM9V9YRlF/GE95tcOm8DxQvWA2jq19bGalQ=="; 74 }; 75 } 76 { ··· 78 path = fetchurl { 79 name = "_emotion_is_prop_valid___is_prop_valid_0.6.8.tgz"; 80 url = "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.6.8.tgz"; 81 + sha512 = "IMSL7ekYhmFlILXcouA6ket3vV7u9BqStlXzbKOF9HBtpUPMMlHU+bBxrLOa2NvleVwNIxeq/zL8LafLbeUXcA=="; 82 }; 83 } 84 { ··· 86 path = fetchurl { 87 name = "_emotion_memoize___memoize_0.6.6.tgz"; 88 url = "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.6.6.tgz"; 89 + sha512 = "h4t4jFjtm1YV7UirAFuSuFGyLa+NNxjdkq6DpFLANNQY5rHueFZHVY+8Cu1HYVP6DrheB0kv4m5xPjo7eKT7yQ=="; 90 }; 91 } 92 { ··· 94 path = fetchurl { 95 name = "_emotion_serialize___serialize_0.9.1.tgz"; 96 url = "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.9.1.tgz"; 97 + sha512 = "zTuAFtyPvCctHBEL8KZ5lJuwBanGSutFEncqLn/m9T1a6a93smBStK+bZzcNPgj4QS8Rkw9VTwJGhRIUVO8zsQ=="; 98 }; 99 } 100 { ··· 102 path = fetchurl { 103 name = "_emotion_stylis___stylis_0.7.1.tgz"; 104 url = "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.7.1.tgz"; 105 + sha512 = "/SLmSIkN13M//53TtNxgxo57mcJk/UJIDFRKwOiLIBEyBHEcipgR6hNMQ/59Sl4VjCJ0Z/3zeAZyvnSLPG/1HQ=="; 106 }; 107 } 108 { ··· 110 path = fetchurl { 111 name = "_emotion_unitless___unitless_0.6.7.tgz"; 112 url = "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.6.7.tgz"; 113 + sha512 = "Arj1hncvEVqQ2p7Ega08uHLr1JuRYBuO5cIvcA+WWEQ5+VmkOE3ZXzl04NbQxeQpWX78G7u6MqxKuNX3wvYZxg=="; 114 }; 115 } 116 { ··· 118 path = fetchurl { 119 name = "_emotion_utils___utils_0.8.2.tgz"; 120 url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.8.2.tgz"; 121 + sha512 = "rLu3wcBWH4P5q1CGoSSH/i9hrXs7SlbRLkoq9IGuoPYNGQvDJ3pt/wmOM+XgYjIDRMVIdkUWt0RsfzF50JfnCw=="; 122 + }; 123 + } 124 + { 125 + name = "_mapbox_node_pre_gyp___node_pre_gyp_1.0.5.tgz"; 126 + path = fetchurl { 127 + name = "_mapbox_node_pre_gyp___node_pre_gyp_1.0.5.tgz"; 128 + url = "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.5.tgz"; 129 + sha512 = "4srsKPXWlIxp5Vbqz5uLfBN+du2fJChBoYn/f2h991WLdk7jUvcSk/McVLSv/X+xQIPI8eGD5GjrnygdyHnhPA=="; 130 }; 131 } 132 { 133 + name = "_textlint_ast_node_types___ast_node_types_4.4.3.tgz"; 134 path = fetchurl { 135 + name = "_textlint_ast_node_types___ast_node_types_4.4.3.tgz"; 136 + url = "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.4.3.tgz"; 137 + sha512 = "qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A=="; 138 }; 139 } 140 { ··· 142 path = fetchurl { 143 name = "_types_ace___ace_0.0.43.tgz"; 144 url = "https://registry.yarnpkg.com/@types/ace/-/ace-0.0.43.tgz"; 145 + sha512 = "eQdX8AQ7CfSHym07MZMBQ8FKUj9AZ2Wcc26W5Ct8J4KOMjFY6SFUaf2YA8YHBut0Fwl//2kZ+0GLZNp+NQNRIA=="; 146 }; 147 } 148 { 149 + name = "_types_clipboard___clipboard_2.0.7.tgz"; 150 path = fetchurl { 151 + name = "_types_clipboard___clipboard_2.0.7.tgz"; 152 + url = "https://registry.yarnpkg.com/@types/clipboard/-/clipboard-2.0.7.tgz"; 153 + sha512 = "VwVFUHlneOsWfv/GaaY7Kwk4XasDqkAlyFQtsHxnOw0yyBYWTrlEXtmb9RtC+VFBCdtuOeIXECmELNd5RrKp/g=="; 154 }; 155 } 156 { ··· 158 path = fetchurl { 159 name = "_types_diff_match_patch___diff_match_patch_1.0.32.tgz"; 160 url = "https://registry.yarnpkg.com/@types/diff-match-patch/-/diff-match-patch-1.0.32.tgz"; 161 + sha512 = "bPYT5ECFiblzsVzyURaNhljBH2Gh1t9LowgUwciMrNAhFewLkHT2H0Mto07Y4/3KCOGZHRQll3CTtQZ0X11D/A=="; 162 }; 163 } 164 { 165 + name = "_types_js_yaml___js_yaml_4.0.3.tgz"; 166 path = fetchurl { 167 + name = "_types_js_yaml___js_yaml_4.0.3.tgz"; 168 + url = "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.3.tgz"; 169 + sha512 = "5t9BhoORasuF5uCPr+d5/hdB++zRFUTMIZOzbNkr+jZh3yQht4HYbRDyj9fY8n2TZT30iW9huzav73x4NikqWg=="; 170 }; 171 } 172 { ··· 174 path = fetchurl { 175 name = "_types_lodash.debounce___lodash.debounce_4.0.6.tgz"; 176 url = "https://registry.yarnpkg.com/@types/lodash.debounce/-/lodash.debounce-4.0.6.tgz"; 177 + sha512 = "4WTmnnhCfDvvuLMaF3KV4Qfki93KebocUF45msxhYyjMttZDQYzHkO639ohhk8+oco2cluAFL3t5+Jn4mleylQ=="; 178 + }; 179 + } 180 + { 181 + name = "_types_lodash.orderby___lodash.orderby_4.6.6.tgz"; 182 + path = fetchurl { 183 + name = "_types_lodash.orderby___lodash.orderby_4.6.6.tgz"; 184 + url = "https://registry.yarnpkg.com/@types/lodash.orderby/-/lodash.orderby-4.6.6.tgz"; 185 + sha512 = "wQzu6xK+bSwhu45OeMI7fjywiIZiiaBzJB8W3fwnF1SJXHoOXRLutrSnVmq4yHPOM036qsy8lx9wHQcAbXNjJw=="; 186 }; 187 } 188 { ··· 190 path = fetchurl { 191 name = "_types_lodash.uniqby___lodash.uniqby_4.7.6.tgz"; 192 url = "https://registry.yarnpkg.com/@types/lodash.uniqby/-/lodash.uniqby-4.7.6.tgz"; 193 + sha512 = "9wBhrm1y6asW50Joj6tsySCNUgzK2tCqL7vtKIej0E9RyeBFdcte7fxUosmFuMoOU0eHqOMK76kCCrK99jxHgg=="; 194 }; 195 } 196 { ··· 198 path = fetchurl { 199 name = "_types_lodash___lodash_4.14.154.tgz"; 200 url = "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.154.tgz"; 201 + sha512 = "VoDZIJmg3P8vPEnTldLvgA+q7RkIbVkbYX4k0cAVFzGAOQwUehVgRHgIr2/wepwivDst/rVRqaiBSjCXRnoWwQ=="; 202 }; 203 } 204 { ··· 206 path = fetchurl { 207 name = "_types_node___node_14.0.4.tgz"; 208 url = "https://registry.yarnpkg.com/@types/node/-/node-14.0.4.tgz"; 209 + sha512 = "k3NqigXWRzQZVBDS5D1U70A5E8Qk4Kh+Ha/x4M8Bt9pF0X05eggfnC9+63Usc9Q928hRUIpIhTQaXsZwZBl4Ew=="; 210 }; 211 } 212 { ··· 214 path = fetchurl { 215 name = "_types_orderedmap___orderedmap_1.0.0.tgz"; 216 url = "https://registry.yarnpkg.com/@types/orderedmap/-/orderedmap-1.0.0.tgz"; 217 + sha512 = "dxKo80TqYx3YtBipHwA/SdFmMMyLCnP+5mkEqN0eMjcTBzHkiiX0ES118DsjDBjvD+zeSsSU9jULTZ+frog+Gw=="; 218 }; 219 } 220 { ··· 222 path = fetchurl { 223 name = "_types_parse_json___parse_json_4.0.0.tgz"; 224 url = "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz"; 225 + sha512 = "//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="; 226 + }; 227 + } 228 + { 229 + name = "_types_pinyin___pinyin_2.10.0.tgz"; 230 + path = fetchurl { 231 + name = "_types_pinyin___pinyin_2.10.0.tgz"; 232 + url = "https://registry.yarnpkg.com/@types/pinyin/-/pinyin-2.10.0.tgz"; 233 + sha512 = "YLty6FPYiBgxNbQNaTRJquvflRdG026jjOpjNXR7HdGEJPGtmPBp1x9LkWePCNA/ClaTT0hYem080TbRCMLbew=="; 234 }; 235 } 236 { ··· 238 path = fetchurl { 239 name = "_types_prop_types___prop_types_15.7.3.tgz"; 240 url = "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz"; 241 + sha512 = "KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw=="; 242 }; 243 } 244 { ··· 246 path = fetchurl { 247 name = "_types_prosemirror_commands___prosemirror_commands_1.0.3.tgz"; 248 url = "https://registry.yarnpkg.com/@types/prosemirror-commands/-/prosemirror-commands-1.0.3.tgz"; 249 + sha512 = "AjFCJqBvAhQ4gOzXPgUcnEZwu4jd7se7ani3dYAv8p4L+cWEPD6Pshrpp5uJDI5/pzvNXLWQ/4c2Qk4h9IML1w=="; 250 }; 251 } 252 { 253 + name = "_types_prosemirror_commands___prosemirror_commands_1.0.4.tgz"; 254 path = fetchurl { 255 + name = "_types_prosemirror_commands___prosemirror_commands_1.0.4.tgz"; 256 + url = "https://registry.yarnpkg.com/@types/prosemirror-commands/-/prosemirror-commands-1.0.4.tgz"; 257 + sha512 = "utDNYB3EXLjAfYIcRWJe6pn3kcQ5kG4RijbT/0Y/TFOm6yhvYS/D9eJVnijdg9LDjykapcezchxGRqFD5LcyaQ=="; 258 }; 259 } 260 { 261 + name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.3.tgz"; 262 path = fetchurl { 263 + name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.3.tgz"; 264 + url = "https://registry.yarnpkg.com/@types/prosemirror-dropcursor/-/prosemirror-dropcursor-1.0.3.tgz"; 265 + sha512 = "b0/8njnJ4lwyHKcGuCMf3x7r1KjxyugB1R/c2iMCjplsJHSC7UY9+OysqgJR5uUXRekUSGniiLgBtac/lvH6wg=="; 266 }; 267 } 268 { 269 + name = "_types_prosemirror_gapcursor___prosemirror_gapcursor_1.0.4.tgz"; 270 path = fetchurl { 271 + name = "_types_prosemirror_gapcursor___prosemirror_gapcursor_1.0.4.tgz"; 272 + url = "https://registry.yarnpkg.com/@types/prosemirror-gapcursor/-/prosemirror-gapcursor-1.0.4.tgz"; 273 + sha512 = "9xKjFIG5947dzerFvkLWp6F53JwrUYoYwh3SgcTFEp8SbSfNNrez/PFYVZKPnoqPoaK5WtTdQTaMwpCV9rXQIg=="; 274 }; 275 } 276 { 277 + name = "_types_prosemirror_history___prosemirror_history_1.0.3.tgz"; 278 path = fetchurl { 279 + name = "_types_prosemirror_history___prosemirror_history_1.0.3.tgz"; 280 + url = "https://registry.yarnpkg.com/@types/prosemirror-history/-/prosemirror-history-1.0.3.tgz"; 281 + sha512 = "5TloMDRavgLjOAKXp1Li8u0xcsspzbT1Cm9F2pwHOkgvQOz1jWQb2VIXO7RVNsFjLBZdIXlyfSLivro3DuMWXg=="; 282 }; 283 } 284 { 285 + name = "_types_prosemirror_inputrules___prosemirror_inputrules_1.0.4.tgz"; 286 path = fetchurl { 287 + name = "_types_prosemirror_inputrules___prosemirror_inputrules_1.0.4.tgz"; 288 + url = "https://registry.yarnpkg.com/@types/prosemirror-inputrules/-/prosemirror-inputrules-1.0.4.tgz"; 289 + sha512 = "lJIMpOjO47SYozQybUkpV6QmfuQt7GZKHtVrvS+mR5UekA8NMC5HRIVMyaIauJLWhKU6oaNjpVaXdw41kh165g=="; 290 }; 291 } 292 { 293 + name = "_types_prosemirror_keymap___prosemirror_keymap_1.0.4.tgz"; 294 path = fetchurl { 295 + name = "_types_prosemirror_keymap___prosemirror_keymap_1.0.4.tgz"; 296 + url = "https://registry.yarnpkg.com/@types/prosemirror-keymap/-/prosemirror-keymap-1.0.4.tgz"; 297 + sha512 = "ycevwkqUh+jEQtPwqO7sWGcm+Sybmhu8MpBsM8DlO3+YTKnXbKA6SDz/+q14q1wK3UA8lHJyfR+v+GPxfUSemg=="; 298 }; 299 } 300 { ··· 302 path = fetchurl { 303 name = "_types_prosemirror_model___prosemirror_model_1.7.2.tgz"; 304 url = "https://registry.yarnpkg.com/@types/prosemirror-model/-/prosemirror-model-1.7.2.tgz"; 305 + sha512 = "2l+yXvidg3AUHN07mO4Jd8Q84fo6ksFsy7LHUurLYrZ74uTahBp2fzcO49AKZMzww2EulXJ40Kl/OFaQ/7A1fw=="; 306 }; 307 } 308 { 309 + name = "_types_prosemirror_schema_list___prosemirror_schema_list_1.0.3.tgz"; 310 path = fetchurl { 311 + name = "_types_prosemirror_schema_list___prosemirror_schema_list_1.0.3.tgz"; 312 + url = "https://registry.yarnpkg.com/@types/prosemirror-schema-list/-/prosemirror-schema-list-1.0.3.tgz"; 313 + sha512 = "uWybOf+M2Ea7rlbs0yLsS4YJYNGXYtn4N+w8HCw3Vvfl6wBAROzlMt0gV/D/VW/7J/LlAjwMezuGe8xi24HzXA=="; 314 }; 315 } 316 { ··· 318 path = fetchurl { 319 name = "_types_prosemirror_state___prosemirror_state_1.2.3.tgz"; 320 url = "https://registry.yarnpkg.com/@types/prosemirror-state/-/prosemirror-state-1.2.3.tgz"; 321 + sha512 = "6m433Hubix9bx+JgcLW7zzyiZuzwjq5mBdSMYY4Yi5c5ZpV2RiVmg7Cy6f9Thtts8vuztilw+PczJAgDm1Frfw=="; 322 }; 323 } 324 { ··· 326 path = fetchurl { 327 name = "_types_prosemirror_tables___prosemirror_tables_0.9.1.tgz"; 328 url = "https://registry.yarnpkg.com/@types/prosemirror-tables/-/prosemirror-tables-0.9.1.tgz"; 329 + sha512 = "zoY1qcAC6kG4UjnaQQXuoyYQdDJMQmY9uzRKdyUppP8rWRR5/kXBHOd84CD9ZvrYUBo3uDmS20qQnc3knr2j9A=="; 330 }; 331 } 332 { ··· 334 path = fetchurl { 335 name = "_types_prosemirror_transform___prosemirror_transform_1.1.1.tgz"; 336 url = "https://registry.yarnpkg.com/@types/prosemirror-transform/-/prosemirror-transform-1.1.1.tgz"; 337 + sha512 = "yYCYSoiRH+Wcbl8GJc0PFCzeyMzNQ1vL2xrHHSXZuNcIlH75VoiKrZFeZ6BS9cl8mYXjZrlmdBe8YOxYvyKM6A=="; 338 }; 339 } 340 { ··· 342 path = fetchurl { 343 name = "_types_prosemirror_view___prosemirror_view_1.11.2.tgz"; 344 url = "https://registry.yarnpkg.com/@types/prosemirror-view/-/prosemirror-view-1.11.2.tgz"; 345 + sha512 = "EKcQmR4KdkFZU13wS5pWrkSojRCPGqz/l/uzpZFfW5cgdr7fQsftf2/ttvIjpk1a94ISifEY4UZwflVJ+uL4Rg=="; 346 }; 347 } 348 { 349 + name = "_types_react_dom___react_dom_17.0.9.tgz"; 350 path = fetchurl { 351 + name = "_types_react_dom___react_dom_17.0.9.tgz"; 352 + url = "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.9.tgz"; 353 + sha512 = "wIvGxLfgpVDSAMH5utdL9Ngm5Owu0VsGmldro3ORLXV8CShrL8awVj06NuEXFQ5xyaYfdca7Sgbk/50Ri1GdPg=="; 354 }; 355 } 356 { 357 + name = "_types_react_window___react_window_1.8.5.tgz"; 358 path = fetchurl { 359 + name = "_types_react_window___react_window_1.8.5.tgz"; 360 + url = "https://registry.yarnpkg.com/@types/react-window/-/react-window-1.8.5.tgz"; 361 + sha512 = "V9q3CvhC9Jk9bWBOysPGaWy/Z0lxYcTXLtLipkt2cnRj1JOSFNF7wqGpkScSXMgBwC+fnVRg/7shwgddBG5ICw=="; 362 }; 363 } 364 { ··· 366 path = fetchurl { 367 name = "_types_react___react_16.9.32.tgz"; 368 url = "https://registry.yarnpkg.com/@types/react/-/react-16.9.32.tgz"; 369 + sha512 = "fmejdp0CTH00mOJmxUPPbWCEBWPvRIL4m8r0qD+BSDUqmutPyGQCHifzMpMzdvZwROdEdL78IuZItntFWgPXHQ=="; 370 + }; 371 + } 372 + { 373 + name = "_types_react___react_17.0.20.tgz"; 374 + path = fetchurl { 375 + name = "_types_react___react_17.0.20.tgz"; 376 + url = "https://registry.yarnpkg.com/@types/react/-/react-17.0.20.tgz"; 377 + sha512 = "wWZrPlihslrPpcKyCSlmIlruakxr57/buQN1RjlIeaaTWDLtJkTtRW429MoQJergvVKc4IWBpRhWw7YNh/7GVA=="; 378 + }; 379 + } 380 + { 381 + name = "_types_scheduler___scheduler_0.16.2.tgz"; 382 + path = fetchurl { 383 + name = "_types_scheduler___scheduler_0.16.2.tgz"; 384 + url = "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz"; 385 + sha512 = "hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="; 386 + }; 387 + } 388 + { 389 + name = "_types_transliteration___transliteration_1.6.6.tgz"; 390 + path = fetchurl { 391 + name = "_types_transliteration___transliteration_1.6.6.tgz"; 392 + url = "https://registry.yarnpkg.com/@types/transliteration/-/transliteration-1.6.6.tgz"; 393 + sha512 = "drgWFeHgZt16bXKhsu4cP6TlunW3Pu9MS1l9w7Qnm+bcsqf4/pnjnO6/uMAziCV8rnmuU3iCSk7J2zio1nR1+A=="; 394 }; 395 } 396 { ··· 398 path = fetchurl { 399 name = "_types_unzip___unzip_0.1.1.tgz"; 400 url = "https://registry.yarnpkg.com/@types/unzip/-/unzip-0.1.1.tgz"; 401 + sha512 = "skD6Um7Pk2l7y+tVOKSgOA9vXViyhk/qJYmr17Ek4Uw3Zgo/DWPScphTPztPbApTIngyYSJnkEW87xrHzRYaew=="; 402 }; 403 } 404 { 405 + name = "_types_zenscroll___zenscroll_4.0.1.tgz"; 406 path = fetchurl { 407 + name = "_types_zenscroll___zenscroll_4.0.1.tgz"; 408 + url = "https://registry.yarnpkg.com/@types/zenscroll/-/zenscroll-4.0.1.tgz"; 409 + sha512 = "r1h1/SPJQn8kL4rzyJvf4HJvqv20YrTV++qRGiPuA1mYbCSkMBaUOsCXLN780gI6BZfRzDbmjU0/sWq9yi1WgQ=="; 410 }; 411 } 412 { ··· 414 path = fetchurl { 415 name = "abbrev___abbrev_1.1.1.tgz"; 416 url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz"; 417 + sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 418 }; 419 } 420 { ··· 422 path = fetchurl { 423 name = "accepts___accepts_1.3.7.tgz"; 424 url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz"; 425 + sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; 426 }; 427 } 428 { ··· 430 path = fetchurl { 431 name = "acorn_jsx___acorn_jsx_4.1.1.tgz"; 432 url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz"; 433 + sha512 = "JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw=="; 434 }; 435 } 436 { ··· 438 path = fetchurl { 439 name = "acorn___acorn_5.7.3.tgz"; 440 url = "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz"; 441 + sha512 = "T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw=="; 442 + }; 443 + } 444 + { 445 + name = "agent_base___agent_base_6.0.2.tgz"; 446 + path = fetchurl { 447 + name = "agent_base___agent_base_6.0.2.tgz"; 448 + url = "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz"; 449 + sha512 = "RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="; 450 }; 451 } 452 { ··· 454 path = fetchurl { 455 name = "ajax_request___ajax_request_1.2.3.tgz"; 456 url = "https://registry.yarnpkg.com/ajax-request/-/ajax-request-1.2.3.tgz"; 457 + sha1 = "mfy+wdbSeS+F+pSVNTMr0U9fN5A="; 458 }; 459 } 460 { ··· 462 path = fetchurl { 463 name = "ajv___ajv_6.12.0.tgz"; 464 url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz"; 465 + sha512 = "D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw=="; 466 }; 467 } 468 { ··· 470 path = fetchurl { 471 name = "ansi_escapes___ansi_escapes_3.2.0.tgz"; 472 url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz"; 473 + sha512 = "cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ=="; 474 + }; 475 + } 476 + { 477 + name = "ansi_regex___ansi_regex_2.1.1.tgz"; 478 + path = fetchurl { 479 + name = "ansi_regex___ansi_regex_2.1.1.tgz"; 480 + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz"; 481 + sha1 = "w7M6te42DYbg5ijwRorn7yfWVN8="; 482 }; 483 } 484 { ··· 486 path = fetchurl { 487 name = "ansi_regex___ansi_regex_3.0.0.tgz"; 488 url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz"; 489 + sha1 = "7QMXwyIGT3lGbAKWa922Bas32Zg="; 490 + }; 491 + } 492 + { 493 + name = "ansi_regex___ansi_regex_5.0.1.tgz"; 494 + path = fetchurl { 495 + name = "ansi_regex___ansi_regex_5.0.1.tgz"; 496 + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz"; 497 + sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 498 }; 499 } 500 { ··· 502 path = fetchurl { 503 name = "ansi_styles___ansi_styles_3.2.1.tgz"; 504 url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; 505 + sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 506 + }; 507 + } 508 + { 509 + name = "ansi_styles___ansi_styles_4.3.0.tgz"; 510 + path = fetchurl { 511 + name = "ansi_styles___ansi_styles_4.3.0.tgz"; 512 + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz"; 513 + sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 514 }; 515 } 516 { ··· 518 path = fetchurl { 519 name = "ansi___ansi_0.3.1.tgz"; 520 url = "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz"; 521 + sha1 = "DELU+xcWDVqa8eSEus4cZpIsGyE="; 522 }; 523 } 524 { ··· 526 path = fetchurl { 527 name = "anymatch___anymatch_1.3.2.tgz"; 528 url = "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz"; 529 + sha512 = "0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA=="; 530 }; 531 } 532 { ··· 534 path = fetchurl { 535 name = "app_root_path___app_root_path_1.4.0.tgz"; 536 url = "https://registry.yarnpkg.com/app-root-path/-/app-root-path-1.4.0.tgz"; 537 + sha1 = "YzXYZclkDQ+tmQBOWnkjIjjpLfo="; 538 }; 539 } 540 { ··· 542 path = fetchurl { 543 name = "app_root_path___app_root_path_2.2.1.tgz"; 544 url = "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.2.1.tgz"; 545 + sha512 = "91IFKeKk7FjfmezPKkwtaRvSpnUc4gDwPAjA1YZ9Gn0q0PPeW+vbeUsZuyDwjI7+QTHhcLen2v25fi/AmhvbJA=="; 546 + }; 547 + } 548 + { 549 + name = "aproba___aproba_1.2.0.tgz"; 550 + path = fetchurl { 551 + name = "aproba___aproba_1.2.0.tgz"; 552 + url = "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz"; 553 + sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="; 554 + }; 555 + } 556 + { 557 + name = "are_we_there_yet___are_we_there_yet_1.1.7.tgz"; 558 + path = fetchurl { 559 + name = "are_we_there_yet___are_we_there_yet_1.1.7.tgz"; 560 + url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz"; 561 + sha512 = "nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g=="; 562 }; 563 } 564 { ··· 566 path = fetchurl { 567 name = "arg___arg_4.1.3.tgz"; 568 url = "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz"; 569 + sha512 = "58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="; 570 }; 571 } 572 { ··· 574 path = fetchurl { 575 name = "argparse___argparse_1.0.10.tgz"; 576 url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; 577 + sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; 578 + }; 579 + } 580 + { 581 + name = "argparse___argparse_2.0.1.tgz"; 582 + path = fetchurl { 583 + name = "argparse___argparse_2.0.1.tgz"; 584 + url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz"; 585 + sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; 586 }; 587 } 588 { ··· 590 path = fetchurl { 591 name = "arr_diff___arr_diff_2.0.0.tgz"; 592 url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz"; 593 + sha1 = "jzuCf5Vai9ZpaX5KQlasPOrjVs8="; 594 }; 595 } 596 { ··· 598 path = fetchurl { 599 name = "arr_diff___arr_diff_4.0.0.tgz"; 600 url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz"; 601 + sha1 = "1kYQdP6/7HHn4VI1dhoyml3HxSA="; 602 }; 603 } 604 { ··· 606 path = fetchurl { 607 name = "arr_flatten___arr_flatten_1.1.0.tgz"; 608 url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz"; 609 + sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="; 610 }; 611 } 612 { ··· 614 path = fetchurl { 615 name = "arr_union___arr_union_3.1.0.tgz"; 616 url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz"; 617 + sha1 = "45sJrqne+Gao8gbiiK9jkZuuOcQ="; 618 }; 619 } 620 { ··· 622 path = fetchurl { 623 name = "array_flatten___array_flatten_1.1.1.tgz"; 624 url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz"; 625 + sha1 = "ml9pkFGx5wczKPKgCJaLZOopVdI="; 626 }; 627 } 628 { ··· 630 path = fetchurl { 631 name = "array_unique___array_unique_0.2.1.tgz"; 632 url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz"; 633 + sha1 = "odl8yvy8JiXMcPrc6zalDFiwGlM="; 634 }; 635 } 636 { ··· 638 path = fetchurl { 639 name = "array_unique___array_unique_0.3.2.tgz"; 640 url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz"; 641 + sha1 = "qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="; 642 }; 643 } 644 { ··· 646 path = fetchurl { 647 name = "asn1___asn1_0.2.4.tgz"; 648 url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz"; 649 + sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; 650 }; 651 } 652 { ··· 654 path = fetchurl { 655 name = "assert_plus___assert_plus_1.0.0.tgz"; 656 url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz"; 657 + sha1 = "8S4PPF13sLHN2RRpQuTpbB5N1SU="; 658 }; 659 } 660 { ··· 662 path = fetchurl { 663 name = "assign_symbols___assign_symbols_1.0.0.tgz"; 664 url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz"; 665 + sha1 = "WWZ/QfrdTyDMvCu5a41Pf3jsA2c="; 666 }; 667 } 668 { ··· 670 path = fetchurl { 671 name = "async_each___async_each_1.0.3.tgz"; 672 url = "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz"; 673 + sha512 = "z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ=="; 674 }; 675 } 676 { ··· 678 path = fetchurl { 679 name = "asynckit___asynckit_0.4.0.tgz"; 680 url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz"; 681 + sha1 = "x57Zf380y48robyXkLzDZkdLS3k="; 682 }; 683 } 684 { ··· 686 path = fetchurl { 687 name = "atob___atob_2.1.2.tgz"; 688 url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz"; 689 + sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="; 690 }; 691 } 692 { ··· 694 path = fetchurl { 695 name = "aws_sign2___aws_sign2_0.7.0.tgz"; 696 url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz"; 697 + sha1 = "tG6JCTSpWR8tL2+G1+ap8bP+dqg="; 698 }; 699 } 700 { ··· 702 path = fetchurl { 703 name = "aws4___aws4_1.9.1.tgz"; 704 url = "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz"; 705 + sha512 = "wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug=="; 706 }; 707 } 708 { ··· 710 path = fetchurl { 711 name = "babel_plugin_emotion___babel_plugin_emotion_9.2.11.tgz"; 712 url = "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz"; 713 + sha512 = "dgCImifnOPPSeXod2znAmgc64NhaaOjGEHROR/M+lmStb3841yK1sgaDYAYMnlvWNz8GnpwIPN0VmNpbWYZ+VQ=="; 714 }; 715 } 716 { ··· 718 path = fetchurl { 719 name = "babel_plugin_macros___babel_plugin_macros_2.8.0.tgz"; 720 url = "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz"; 721 + sha512 = "SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg=="; 722 }; 723 } 724 { ··· 726 path = fetchurl { 727 name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz"; 728 url = "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"; 729 + sha1 = "CvMqmm4Tyno/1QaeYtew9Y0NiUY="; 730 }; 731 } 732 { ··· 734 path = fetchurl { 735 name = "babel_runtime___babel_runtime_6.26.0.tgz"; 736 url = "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz"; 737 + sha1 = "llxwWGaOgrVde/4E/yM3vItWR/4="; 738 }; 739 } 740 { ··· 742 path = fetchurl { 743 name = "balanced_match___balanced_match_1.0.0.tgz"; 744 url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; 745 + sha1 = "ibTRmasr7kneFk6gK4nORi1xt2c="; 746 }; 747 } 748 { ··· 750 path = fetchurl { 751 name = "base16___base16_1.0.0.tgz"; 752 url = "https://registry.yarnpkg.com/base16/-/base16-1.0.0.tgz"; 753 + sha1 = "4pf2DX7BAUp6lxo568ipjAtoHnA="; 754 }; 755 } 756 { ··· 758 path = fetchurl { 759 name = "base64_img___base64_img_1.0.4.tgz"; 760 url = "https://registry.yarnpkg.com/base64-img/-/base64-img-1.0.4.tgz"; 761 + sha1 = "PiLVXWx0okVT2EDSsbwSp9sHjTU="; 762 }; 763 } 764 { ··· 766 path = fetchurl { 767 name = "base64_js___base64_js_1.3.1.tgz"; 768 url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz"; 769 + sha512 = "mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g=="; 770 }; 771 } 772 { ··· 774 path = fetchurl { 775 name = "base___base_0.11.2.tgz"; 776 url = "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz"; 777 + sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg=="; 778 }; 779 } 780 { ··· 782 path = fetchurl { 783 name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz"; 784 url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; 785 + sha1 = "pDAdOJtqQ/m2f/PKEaP2Y342Dp4="; 786 }; 787 } 788 { 789 + name = "biblatex_csl_converter___biblatex_csl_converter_2.0.2.tgz"; 790 path = fetchurl { 791 + name = "biblatex_csl_converter___biblatex_csl_converter_2.0.2.tgz"; 792 + url = "https://registry.yarnpkg.com/biblatex-csl-converter/-/biblatex-csl-converter-2.0.2.tgz"; 793 + sha512 = "od1JdAkQYh2T1Pzpq11eYtuNb3nNXQ0w+17CAnYqRsX+QFtoiK0XcvBE7N6rpDJyUo0acoaB6Of7EDhFQOcblA=="; 794 }; 795 } 796 { ··· 798 path = fetchurl { 799 name = "binary_extensions___binary_extensions_1.13.1.tgz"; 800 url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz"; 801 + sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; 802 }; 803 } 804 { ··· 806 path = fetchurl { 807 name = "binary___binary_0.3.0.tgz"; 808 url = "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz"; 809 + sha1 = "n2BVO8XOjDOG87VTz/R0Yq3sqnk="; 810 }; 811 } 812 { ··· 814 path = fetchurl { 815 name = "bindings___bindings_1.5.0.tgz"; 816 url = "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz"; 817 + sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 818 }; 819 } 820 { ··· 822 path = fetchurl { 823 name = "body_parser___body_parser_1.19.0.tgz"; 824 url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz"; 825 + sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="; 826 }; 827 } 828 { ··· 830 path = fetchurl { 831 name = "boundary___boundary_1.0.1.tgz"; 832 url = "https://registry.yarnpkg.com/boundary/-/boundary-1.0.1.tgz"; 833 + sha1 = "TWfcJgLAzBbdm85+v4fpSCkPWBI="; 834 }; 835 } 836 { ··· 838 path = fetchurl { 839 name = "bowser___bowser_2.9.0.tgz"; 840 url = "https://registry.yarnpkg.com/bowser/-/bowser-2.9.0.tgz"; 841 + sha512 = "2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA=="; 842 }; 843 } 844 { ··· 846 path = fetchurl { 847 name = "brace_expansion___brace_expansion_1.1.11.tgz"; 848 url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; 849 + sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; 850 }; 851 } 852 { ··· 854 path = fetchurl { 855 name = "braces___braces_1.8.5.tgz"; 856 url = "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz"; 857 + sha1 = "uneWLhLf+WnWt2cR6RS3N4V79qc="; 858 }; 859 } 860 { ··· 862 path = fetchurl { 863 name = "braces___braces_2.3.2.tgz"; 864 url = "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz"; 865 + sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w=="; 866 }; 867 } 868 { ··· 870 path = fetchurl { 871 name = "buffer_from___buffer_from_1.1.1.tgz"; 872 url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; 873 + sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 874 }; 875 } 876 { ··· 878 path = fetchurl { 879 name = "buffers___buffers_0.1.1.tgz"; 880 url = "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz"; 881 + sha1 = "skV5w77U1tOWru5tmorn9Ugqt7s="; 882 }; 883 } 884 { ··· 886 path = fetchurl { 887 name = "builtin_modules___builtin_modules_1.1.1.tgz"; 888 url = "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz"; 889 + sha1 = "Jw8HbFpywC9bZaR9+Uxf46J4iS8="; 890 }; 891 } 892 { ··· 894 path = fetchurl { 895 name = "bytes___bytes_3.1.0.tgz"; 896 url = "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz"; 897 + sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; 898 }; 899 } 900 { ··· 902 path = fetchurl { 903 name = "cache_base___cache_base_1.0.1.tgz"; 904 url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz"; 905 + sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; 906 }; 907 } 908 { ··· 910 path = fetchurl { 911 name = "callsites___callsites_3.1.0.tgz"; 912 url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz"; 913 + sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; 914 }; 915 } 916 { ··· 918 path = fetchurl { 919 name = "caseless___caseless_0.12.0.tgz"; 920 url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz"; 921 + sha1 = "G2gcIf+EAzyCZUMJBolCDRhxUdw="; 922 }; 923 } 924 { ··· 926 path = fetchurl { 927 name = "chain_able___chain_able_1.0.1.tgz"; 928 url = "https://registry.yarnpkg.com/chain-able/-/chain-able-1.0.1.tgz"; 929 + sha1 = "tIrJvcGPIZLscwq8ZmCfkKq1YF8="; 930 }; 931 } 932 { ··· 934 path = fetchurl { 935 name = "chain_able___chain_able_3.0.0.tgz"; 936 url = "https://registry.yarnpkg.com/chain-able/-/chain-able-3.0.0.tgz"; 937 + sha512 = "26MoELhta86n7gCsE2T1hGRyncZvPjFXTkB/DEp4+i/EJVSxXQNwXMDZZb2+SWcbPuow18wQtztaW7GXOel9DA=="; 938 }; 939 } 940 { ··· 942 path = fetchurl { 943 name = "chainsaw___chainsaw_0.1.0.tgz"; 944 url = "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz"; 945 + sha1 = "XqtQsor+WAdNDVgpE4iCi15fvJg="; 946 }; 947 } 948 { ··· 950 path = fetchurl { 951 name = "chalk___chalk_2.4.2.tgz"; 952 url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; 953 + sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 954 }; 955 } 956 { ··· 958 path = fetchurl { 959 name = "chardet___chardet_0.4.2.tgz"; 960 url = "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz"; 961 + sha1 = "tUc7M9yXxCTl2Y3IfVXU2KKci/I="; 962 }; 963 } 964 { ··· 966 path = fetchurl { 967 name = "chokidar___chokidar_1.7.0.tgz"; 968 url = "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz"; 969 + sha1 = "eY5ol3gVHIB2tLNg5e3SjNortGg="; 970 + }; 971 + } 972 + { 973 + name = "chownr___chownr_2.0.0.tgz"; 974 + path = fetchurl { 975 + name = "chownr___chownr_2.0.0.tgz"; 976 + url = "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz"; 977 + sha512 = "bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="; 978 }; 979 } 980 { ··· 982 path = fetchurl { 983 name = "class_utils___class_utils_0.3.6.tgz"; 984 url = "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz"; 985 + sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg=="; 986 }; 987 } 988 { ··· 990 path = fetchurl { 991 name = "clean_css___clean_css_4.2.3.tgz"; 992 url = "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz"; 993 + sha512 = "VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA=="; 994 }; 995 } 996 { ··· 998 path = fetchurl { 999 name = "cli_cursor___cli_cursor_2.1.0.tgz"; 1000 url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz"; 1001 + sha1 = "s12sN2R5+sw+lHR9QdDQ9SOP/LU="; 1002 }; 1003 } 1004 { ··· 1006 path = fetchurl { 1007 name = "cli_width___cli_width_2.2.0.tgz"; 1008 url = "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz"; 1009 + sha1 = "/xnt6Kml5XkyQUewwR8PvLq+1jk="; 1010 + }; 1011 + } 1012 + { 1013 + name = "clipboard___clipboard_2.0.8.tgz"; 1014 + path = fetchurl { 1015 + name = "clipboard___clipboard_2.0.8.tgz"; 1016 + url = "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.8.tgz"; 1017 + sha512 = "Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ=="; 1018 + }; 1019 + } 1020 + { 1021 + name = "cliui___cliui_7.0.4.tgz"; 1022 + path = fetchurl { 1023 + name = "cliui___cliui_7.0.4.tgz"; 1024 + url = "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz"; 1025 + sha512 = "OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="; 1026 }; 1027 } 1028 { 1029 + name = "code_point_at___code_point_at_1.1.0.tgz"; 1030 path = fetchurl { 1031 + name = "code_point_at___code_point_at_1.1.0.tgz"; 1032 + url = "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz"; 1033 + sha1 = "DQcLTQQ6W+ozovGkDi7bPZpMz3c="; 1034 }; 1035 } 1036 { ··· 1038 path = fetchurl { 1039 name = "collection_visit___collection_visit_1.0.0.tgz"; 1040 url = "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz"; 1041 + sha1 = "S8A3PBZLwykbTTaMgpzxqApZ3KA="; 1042 }; 1043 } 1044 { ··· 1046 path = fetchurl { 1047 name = "color_convert___color_convert_1.9.3.tgz"; 1048 url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; 1049 + sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 1050 + }; 1051 + } 1052 + { 1053 + name = "color_convert___color_convert_2.0.1.tgz"; 1054 + path = fetchurl { 1055 + name = "color_convert___color_convert_2.0.1.tgz"; 1056 + url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz"; 1057 + sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; 1058 }; 1059 } 1060 { ··· 1062 path = fetchurl { 1063 name = "color_name___color_name_1.1.3.tgz"; 1064 url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; 1065 + sha1 = "p9BVi9icQveV3UIyj3QIMcpTvCU="; 1066 + }; 1067 + } 1068 + { 1069 + name = "color_name___color_name_1.1.4.tgz"; 1070 + path = fetchurl { 1071 + name = "color_name___color_name_1.1.4.tgz"; 1072 + url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz"; 1073 + sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 1074 }; 1075 } 1076 { ··· 1078 path = fetchurl { 1079 name = "combined_stream___combined_stream_1.0.8.tgz"; 1080 url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz"; 1081 + sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; 1082 }; 1083 } 1084 { ··· 1086 path = fetchurl { 1087 name = "commander___commander_2.20.3.tgz"; 1088 url = "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz"; 1089 + sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; 1090 + }; 1091 + } 1092 + { 1093 + name = "commander___commander_1.1.1.tgz"; 1094 + path = fetchurl { 1095 + name = "commander___commander_1.1.1.tgz"; 1096 + url = "https://registry.yarnpkg.com/commander/-/commander-1.1.1.tgz"; 1097 + sha1 = "UNFlGGiuYOzP8KLZ80WVN2vGsEE="; 1098 }; 1099 } 1100 { ··· 1102 path = fetchurl { 1103 name = "component_emitter___component_emitter_1.3.0.tgz"; 1104 url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz"; 1105 + sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="; 1106 }; 1107 } 1108 { ··· 1110 path = fetchurl { 1111 name = "concat_map___concat_map_0.0.1.tgz"; 1112 url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; 1113 + sha1 = "2Klr13/Wjfd5OnMDajug1UBdR3s="; 1114 }; 1115 } 1116 { ··· 1118 path = fetchurl { 1119 name = "concat_stream___concat_stream_1.6.2.tgz"; 1120 url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz"; 1121 + sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; 1122 }; 1123 } 1124 { ··· 1126 path = fetchurl { 1127 name = "concat_stream___concat_stream_2.0.0.tgz"; 1128 url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz"; 1129 + sha512 = "MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A=="; 1130 + }; 1131 + } 1132 + { 1133 + name = "console_control_strings___console_control_strings_1.1.0.tgz"; 1134 + path = fetchurl { 1135 + name = "console_control_strings___console_control_strings_1.1.0.tgz"; 1136 + url = "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz"; 1137 + sha1 = "PXz0Rk22RG6mRL9LOVB/mFEAjo4="; 1138 }; 1139 } 1140 { ··· 1142 path = fetchurl { 1143 name = "content_disposition___content_disposition_0.5.3.tgz"; 1144 url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz"; 1145 + sha512 = "ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g=="; 1146 }; 1147 } 1148 { ··· 1150 path = fetchurl { 1151 name = "content_type___content_type_1.0.4.tgz"; 1152 url = "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz"; 1153 + sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; 1154 }; 1155 } 1156 { ··· 1158 path = fetchurl { 1159 name = "convert_source_map___convert_source_map_1.7.0.tgz"; 1160 url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz"; 1161 + sha512 = "4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA=="; 1162 + }; 1163 + } 1164 + { 1165 + name = "convert_source_map___convert_source_map_1.8.0.tgz"; 1166 + path = fetchurl { 1167 + name = "convert_source_map___convert_source_map_1.8.0.tgz"; 1168 + url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz"; 1169 + sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; 1170 }; 1171 } 1172 { ··· 1174 path = fetchurl { 1175 name = "cookie_signature___cookie_signature_1.0.6.tgz"; 1176 url = "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz"; 1177 + sha1 = "4wOogrNCzD7oylE6eZmXNNqzriw="; 1178 }; 1179 } 1180 { ··· 1182 path = fetchurl { 1183 name = "cookie___cookie_0.4.0.tgz"; 1184 url = "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz"; 1185 + sha512 = "+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="; 1186 }; 1187 } 1188 { ··· 1190 path = fetchurl { 1191 name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; 1192 url = "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; 1193 + sha1 = "Z29us8OZl8LuGsOpJP1hJHSPV40="; 1194 }; 1195 } 1196 { ··· 1198 path = fetchurl { 1199 name = "core_js___core_js_2.6.11.tgz"; 1200 url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz"; 1201 + sha512 = "5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg=="; 1202 }; 1203 } 1204 { ··· 1206 path = fetchurl { 1207 name = "core_util_is___core_util_is_1.0.2.tgz"; 1208 url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; 1209 + sha1 = "tf1UIgqivFq1eqtxQMlAdUUDwac="; 1210 }; 1211 } 1212 { ··· 1214 path = fetchurl { 1215 name = "cosmiconfig___cosmiconfig_6.0.0.tgz"; 1216 url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz"; 1217 + sha512 = "xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg=="; 1218 }; 1219 } 1220 { ··· 1222 path = fetchurl { 1223 name = "create_emotion_styled___create_emotion_styled_9.2.8.tgz"; 1224 url = "https://registry.yarnpkg.com/create-emotion-styled/-/create-emotion-styled-9.2.8.tgz"; 1225 + sha512 = "2LrNM5MREWzI5hZK+LyiBHglwE18WE3AEbBQgpHQ1+zmyLSm/dJsUZBeFAwuIMb+TjNZP0KsMZlV776ufOtFdg=="; 1226 }; 1227 } 1228 { ··· 1230 path = fetchurl { 1231 name = "create_emotion___create_emotion_9.2.12.tgz"; 1232 url = "https://registry.yarnpkg.com/create-emotion/-/create-emotion-9.2.12.tgz"; 1233 + sha512 = "P57uOF9NL2y98Xrbl2OuiDQUZ30GVmASsv5fbsjF4Hlraip2kyAvMm+2PoYUvFFw03Fhgtxk3RqZSm2/qHL9hA=="; 1234 }; 1235 } 1236 { ··· 1238 path = fetchurl { 1239 name = "create_react_context___create_react_context_0.1.6.tgz"; 1240 url = "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.1.6.tgz"; 1241 + sha512 = "eCnYYEUEc5i32LHwpE/W7NlddOB9oHwsPaWtWzYtflNkkwa3IfindIcoXdVWs12zCbwaMCavKNu84EXogVIWHw=="; 1242 }; 1243 } 1244 { ··· 1246 path = fetchurl { 1247 name = "csstype___csstype_2.6.10.tgz"; 1248 url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz"; 1249 + sha512 = "D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w=="; 1250 }; 1251 } 1252 { 1253 + name = "csstype___csstype_2.6.18.tgz"; 1254 path = fetchurl { 1255 + name = "csstype___csstype_2.6.18.tgz"; 1256 + url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.18.tgz"; 1257 + sha512 = "RSU6Hyeg14am3Ah4VZEmeX8H7kLwEEirXe6aU2IPfKNvhXwTflK5HQRDNI0ypQXoqmm+QPyG2IaPuQE5zMwSIQ=="; 1258 + }; 1259 + } 1260 + { 1261 + name = "csstype___csstype_3.0.9.tgz"; 1262 + path = fetchurl { 1263 + name = "csstype___csstype_3.0.9.tgz"; 1264 + url = "https://registry.yarnpkg.com/csstype/-/csstype-3.0.9.tgz"; 1265 + sha512 = "rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw=="; 1266 }; 1267 } 1268 { ··· 1270 path = fetchurl { 1271 name = "dashdash___dashdash_1.14.1.tgz"; 1272 url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz"; 1273 + sha1 = "hTz6D3y+L+1d4gMmuN1YEDX24vA="; 1274 }; 1275 } 1276 { ··· 1278 path = fetchurl { 1279 name = "debug___debug_2.6.9.tgz"; 1280 url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; 1281 + sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 1282 + }; 1283 + } 1284 + { 1285 + name = "debug___debug_4.3.2.tgz"; 1286 + path = fetchurl { 1287 + name = "debug___debug_4.3.2.tgz"; 1288 + url = "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz"; 1289 + sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="; 1290 }; 1291 } 1292 { ··· 1294 path = fetchurl { 1295 name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 1296 url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; 1297 + sha1 = "6zkTMzRYd1y4TNGh+uBiEGu4dUU="; 1298 }; 1299 } 1300 { ··· 1302 path = fetchurl { 1303 name = "deep_is___deep_is_0.1.3.tgz"; 1304 url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz"; 1305 + sha1 = "s2nW+128E+7PUk+RsHD+7cNXzzQ="; 1306 }; 1307 } 1308 { ··· 1310 path = fetchurl { 1311 name = "define_property___define_property_0.2.5.tgz"; 1312 url = "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz"; 1313 + sha1 = "w1se+RjsPJkPmlvFe+BKrOxcgRY="; 1314 }; 1315 } 1316 { ··· 1318 path = fetchurl { 1319 name = "define_property___define_property_1.0.0.tgz"; 1320 url = "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz"; 1321 + sha1 = "dp66rz9KY6rTr56NMEybvnm/sOY="; 1322 }; 1323 } 1324 { ··· 1326 path = fetchurl { 1327 name = "define_property___define_property_2.0.2.tgz"; 1328 url = "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz"; 1329 + sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ=="; 1330 }; 1331 } 1332 { ··· 1334 path = fetchurl { 1335 name = "delayed_stream___delayed_stream_1.0.0.tgz"; 1336 url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz"; 1337 + sha1 = "3zrhmayt+31ECqrgsp4icrJOxhk="; 1338 }; 1339 } 1340 { ··· 1342 path = fetchurl { 1343 name = "delegate___delegate_3.2.0.tgz"; 1344 url = "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz"; 1345 + sha512 = "IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="; 1346 + }; 1347 + } 1348 + { 1349 + name = "delegates___delegates_1.0.0.tgz"; 1350 + path = fetchurl { 1351 + name = "delegates___delegates_1.0.0.tgz"; 1352 + url = "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz"; 1353 + sha1 = "hMbhWbgZBP3KWaDvRM2HDTElD5o="; 1354 }; 1355 } 1356 { ··· 1358 path = fetchurl { 1359 name = "depd___depd_1.1.2.tgz"; 1360 url = "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz"; 1361 + sha1 = "m81S4UwJd2PnSbJ0xDRu0uVgtak="; 1362 }; 1363 } 1364 { ··· 1366 path = fetchurl { 1367 name = "destroy___destroy_1.0.4.tgz"; 1368 url = "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz"; 1369 + sha1 = "l4hXRCxEdJ5CBmE+N5RiBYJqvYA="; 1370 + }; 1371 + } 1372 + { 1373 + name = "detect_libc___detect_libc_1.0.3.tgz"; 1374 + path = fetchurl { 1375 + name = "detect_libc___detect_libc_1.0.3.tgz"; 1376 + url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz"; 1377 + sha1 = "+hN8S9aY7fVc1c0CrFWfkaTEups="; 1378 }; 1379 } 1380 { ··· 1382 path = fetchurl { 1383 name = "diff_match_patch___diff_match_patch_1.0.4.tgz"; 1384 url = "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.4.tgz"; 1385 + sha512 = "Uv3SW8bmH9nAtHKaKSanOQmj2DnlH65fUpcrMdfdaOxUG02QQ4YGZ8AE7kKOMisF7UqvOlGKVYWRvezdncW9lg=="; 1386 + }; 1387 + } 1388 + { 1389 + name = "diff_match_patch___diff_match_patch_1.0.5.tgz"; 1390 + path = fetchurl { 1391 + name = "diff_match_patch___diff_match_patch_1.0.5.tgz"; 1392 + url = "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.5.tgz"; 1393 + sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw=="; 1394 }; 1395 } 1396 { ··· 1398 path = fetchurl { 1399 name = "diff___diff_4.0.2.tgz"; 1400 url = "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz"; 1401 + sha512 = "58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="; 1402 }; 1403 } 1404 { ··· 1406 path = fetchurl { 1407 name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz"; 1408 url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; 1409 + sha1 = "OoOpBOVDUyh4dMVkt1SThoSamMk="; 1410 }; 1411 } 1412 { ··· 1414 path = fetchurl { 1415 name = "ee_first___ee_first_1.1.1.tgz"; 1416 url = "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz"; 1417 + sha1 = "WQxhFWsK4vTwJVcyoViyZrxWsh0="; 1418 + }; 1419 + } 1420 + { 1421 + name = "emoji_regex___emoji_regex_8.0.0.tgz"; 1422 + path = fetchurl { 1423 + name = "emoji_regex___emoji_regex_8.0.0.tgz"; 1424 + url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz"; 1425 + sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; 1426 }; 1427 } 1428 { ··· 1430 path = fetchurl { 1431 name = "emotion___emotion_9.2.12.tgz"; 1432 url = "https://registry.yarnpkg.com/emotion/-/emotion-9.2.12.tgz"; 1433 + sha512 = "hcx7jppaI8VoXxIWEhxpDW7I+B4kq9RNzQLmsrF6LY8BGKqe2N+gFAQr0EfuFucFlPs2A9HM4+xNj4NeqEWIOQ=="; 1434 }; 1435 } 1436 { ··· 1438 path = fetchurl { 1439 name = "encodeurl___encodeurl_1.0.2.tgz"; 1440 url = "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz"; 1441 + sha1 = "rT/0yG7C0CkyL1oCw6mmBslbP1k="; 1442 }; 1443 } 1444 { ··· 1446 path = fetchurl { 1447 name = "error_ex___error_ex_1.3.2.tgz"; 1448 url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; 1449 + sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 1450 }; 1451 } 1452 { 1453 + name = "es6_object_assign___es6_object_assign_1.1.0.tgz"; 1454 path = fetchurl { 1455 + name = "es6_object_assign___es6_object_assign_1.1.0.tgz"; 1456 + url = "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz"; 1457 + sha1 = "wsNYJlYkfDnqEHyx5mUrb58kUjw="; 1458 }; 1459 } 1460 { 1461 + name = "escalade___escalade_3.1.1.tgz"; 1462 path = fetchurl { 1463 + name = "escalade___escalade_3.1.1.tgz"; 1464 + url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz"; 1465 + sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; 1466 }; 1467 } 1468 { ··· 1470 path = fetchurl { 1471 name = "escape_html___escape_html_1.0.3.tgz"; 1472 url = "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz"; 1473 + sha1 = "Aljq5NPQwJdN4cFpGI7wBR0dGYg="; 1474 }; 1475 } 1476 { ··· 1478 path = fetchurl { 1479 name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 1480 url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 1481 + sha1 = "G2HAViGQqN/2rjuyzwIAyhMLhtQ="; 1482 }; 1483 } 1484 { ··· 1486 path = fetchurl { 1487 name = "escodegen___escodegen_1.14.1.tgz"; 1488 url = "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz"; 1489 + sha512 = "Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ=="; 1490 }; 1491 } 1492 { ··· 1494 path = fetchurl { 1495 name = "esprima___esprima_4.0.1.tgz"; 1496 url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; 1497 + sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 1498 }; 1499 } 1500 { ··· 1502 path = fetchurl { 1503 name = "estraverse___estraverse_4.3.0.tgz"; 1504 url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; 1505 + sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="; 1506 }; 1507 } 1508 { ··· 1510 path = fetchurl { 1511 name = "esutils___esutils_2.0.3.tgz"; 1512 url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz"; 1513 + sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; 1514 }; 1515 } 1516 { ··· 1518 path = fetchurl { 1519 name = "etag___etag_1.8.1.tgz"; 1520 url = "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz"; 1521 + sha1 = "Qa4u62XvpiJorr/qg6x9eSmbCIc="; 1522 }; 1523 } 1524 { ··· 1526 path = fetchurl { 1527 name = "exec_sh___exec_sh_0.2.2.tgz"; 1528 url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz"; 1529 + sha512 = "FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw=="; 1530 }; 1531 } 1532 { ··· 1534 path = fetchurl { 1535 name = "expand_brackets___expand_brackets_0.1.5.tgz"; 1536 url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz"; 1537 + sha1 = "3wcoTjQqgHzXM6xa9yQR5YHRF3s="; 1538 }; 1539 } 1540 { ··· 1542 path = fetchurl { 1543 name = "expand_brackets___expand_brackets_2.1.4.tgz"; 1544 url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz"; 1545 + sha1 = "t3c14xXOMPa27/D4OwQVGiJEliI="; 1546 }; 1547 } 1548 { ··· 1550 path = fetchurl { 1551 name = "expand_range___expand_range_1.8.2.tgz"; 1552 url = "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz"; 1553 + sha1 = "opnv/TNf4nIeuujiV+x5ZE/IUzc="; 1554 }; 1555 } 1556 { ··· 1558 path = fetchurl { 1559 name = "express___express_4.17.1.tgz"; 1560 url = "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz"; 1561 + sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; 1562 }; 1563 } 1564 { ··· 1566 path = fetchurl { 1567 name = "extend_shallow___extend_shallow_2.0.1.tgz"; 1568 url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz"; 1569 + sha1 = "Ua99YUrZqfYQ6huvu5idaxxWiQ8="; 1570 }; 1571 } 1572 { ··· 1574 path = fetchurl { 1575 name = "extend_shallow___extend_shallow_3.0.2.tgz"; 1576 url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz"; 1577 + sha1 = "Jqcarwc7OfshJxcnRhMcJwQCjbg="; 1578 }; 1579 } 1580 { ··· 1582 path = fetchurl { 1583 name = "extend___extend_3.0.2.tgz"; 1584 url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz"; 1585 + sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; 1586 }; 1587 } 1588 { ··· 1590 path = fetchurl { 1591 name = "external_editor___external_editor_2.2.0.tgz"; 1592 url = "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz"; 1593 + sha512 = "bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A=="; 1594 }; 1595 } 1596 { ··· 1598 path = fetchurl { 1599 name = "extglob___extglob_0.3.2.tgz"; 1600 url = "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz"; 1601 + sha1 = "Lhj/PS9JqydlzskCPwEdqo2DSaE="; 1602 }; 1603 } 1604 { ··· 1606 path = fetchurl { 1607 name = "extglob___extglob_2.0.4.tgz"; 1608 url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz"; 1609 + sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw=="; 1610 }; 1611 } 1612 { ··· 1614 path = fetchurl { 1615 name = "extsprintf___extsprintf_1.3.0.tgz"; 1616 url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz"; 1617 + sha1 = "lpGEQOMEGnpBT4xS48V06zw+HgU="; 1618 }; 1619 } 1620 { ··· 1622 path = fetchurl { 1623 name = "extsprintf___extsprintf_1.4.0.tgz"; 1624 url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz"; 1625 + sha1 = "4mifjzVvrWLMplo6kcXfX5VRaS8="; 1626 }; 1627 } 1628 { ··· 1630 path = fetchurl { 1631 name = "fast_deep_equal___fast_deep_equal_3.1.1.tgz"; 1632 url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz"; 1633 + sha512 = "8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA=="; 1634 }; 1635 } 1636 { ··· 1638 path = fetchurl { 1639 name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; 1640 url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 1641 + sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 1642 }; 1643 } 1644 { ··· 1646 path = fetchurl { 1647 name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 1648 url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 1649 + sha1 = "PYpcZog6FqMMqGQ+hR8Zuqd5eRc="; 1650 }; 1651 } 1652 { ··· 1654 path = fetchurl { 1655 name = "fast_xml_parser___fast_xml_parser_3.17.1.tgz"; 1656 url = "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.17.1.tgz"; 1657 + sha512 = "jZ0EVn1iBuZtx/sbQnfvhSaaUltz+0+yfR+6QRyzrlt5yMiU+8ZfGj9i3/hoXJxm+aFri7dycBWbncox7frCAQ=="; 1658 }; 1659 } 1660 { ··· 1662 path = fetchurl { 1663 name = "figures___figures_2.0.0.tgz"; 1664 url = "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz"; 1665 + sha1 = "OrGi0qYsi/tDGgyUy3l6L84nyWI="; 1666 }; 1667 } 1668 { ··· 1670 path = fetchurl { 1671 name = "file_match___file_match_1.0.2.tgz"; 1672 url = "https://registry.yarnpkg.com/file-match/-/file-match-1.0.2.tgz"; 1673 + sha1 = "ycrSZdLIrfOoFHWw30dYWQafrvc="; 1674 }; 1675 } 1676 { ··· 1678 path = fetchurl { 1679 name = "file_system___file_system_2.2.2.tgz"; 1680 url = "https://registry.yarnpkg.com/file-system/-/file-system-2.2.2.tgz"; 1681 + sha1 = "fWWDPjojR9zZVqgTxncVPtPt2Yc="; 1682 }; 1683 } 1684 { ··· 1686 path = fetchurl { 1687 name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz"; 1688 url = "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz"; 1689 + sha512 = "0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="; 1690 }; 1691 } 1692 { ··· 1694 path = fetchurl { 1695 name = "filename_regex___filename_regex_2.0.1.tgz"; 1696 url = "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz"; 1697 + sha1 = "wcS5vuPglyXdsQa3XB4wH+LxiyY="; 1698 }; 1699 } 1700 { ··· 1702 path = fetchurl { 1703 name = "fill_range___fill_range_2.2.4.tgz"; 1704 url = "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz"; 1705 + sha512 = "cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q=="; 1706 }; 1707 } 1708 { ··· 1710 path = fetchurl { 1711 name = "fill_range___fill_range_4.0.0.tgz"; 1712 url = "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz"; 1713 + sha1 = "1USBHUKPmOsGpj3EAtJAPDKMOPc="; 1714 }; 1715 } 1716 { ··· 1718 path = fetchurl { 1719 name = "finalhandler___finalhandler_1.1.2.tgz"; 1720 url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz"; 1721 + sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; 1722 }; 1723 } 1724 { ··· 1726 path = fetchurl { 1727 name = "find_root___find_root_1.1.0.tgz"; 1728 url = "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz"; 1729 + sha512 = "NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="; 1730 }; 1731 } 1732 { ··· 1734 path = fetchurl { 1735 name = "fliplog___fliplog_0.3.13.tgz"; 1736 url = "https://registry.yarnpkg.com/fliplog/-/fliplog-0.3.13.tgz"; 1737 + sha512 = "R504CdX+mdhMYpmyrdiQ9PW6ncAyZnxyeA85fS1/P/Y9qmbMiQsqt6QzsYhq5kbqMb84PibVOcS1oz98GJl6EQ=="; 1738 }; 1739 } 1740 { ··· 1742 path = fetchurl { 1743 name = "for_in___for_in_1.0.2.tgz"; 1744 url = "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz"; 1745 + sha1 = "gQaNKVqBQuwKxybG4iAMMPttXoA="; 1746 }; 1747 } 1748 { ··· 1750 path = fetchurl { 1751 name = "for_own___for_own_0.1.5.tgz"; 1752 url = "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz"; 1753 + sha1 = "UmXGgaTylNq78XyVCbZ2OqhFEM4="; 1754 }; 1755 } 1756 { ··· 1758 path = fetchurl { 1759 name = "forever_agent___forever_agent_0.6.1.tgz"; 1760 url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz"; 1761 + sha1 = "+8cfDEGt6zf5bFd60e1C2P2sypE="; 1762 }; 1763 } 1764 { ··· 1766 path = fetchurl { 1767 name = "form_data___form_data_2.3.3.tgz"; 1768 url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz"; 1769 + sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; 1770 }; 1771 } 1772 { ··· 1774 path = fetchurl { 1775 name = "forwarded___forwarded_0.1.2.tgz"; 1776 url = "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz"; 1777 + sha1 = "mMI9qxF1ZXuMBXPozszZGw/xjIQ="; 1778 }; 1779 } 1780 { ··· 1782 path = fetchurl { 1783 name = "fragment_cache___fragment_cache_0.2.1.tgz"; 1784 url = "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz"; 1785 + sha1 = "QpD60n8T6Jvn8zeZxrxaCr//DRk="; 1786 }; 1787 } 1788 { ··· 1790 path = fetchurl { 1791 name = "fresh___fresh_0.5.2.tgz"; 1792 url = "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz"; 1793 + sha1 = "PYyt2Q2XZWn6g1qx+OSyOhBWBac="; 1794 }; 1795 } 1796 { ··· 1798 path = fetchurl { 1799 name = "fs_extra___fs_extra_7.0.1.tgz"; 1800 url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz"; 1801 + sha512 = "YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw=="; 1802 + }; 1803 + } 1804 + { 1805 + name = "fs_minipass___fs_minipass_2.1.0.tgz"; 1806 + path = fetchurl { 1807 + name = "fs_minipass___fs_minipass_2.1.0.tgz"; 1808 + url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz"; 1809 + sha512 = "V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg=="; 1810 }; 1811 } 1812 { ··· 1814 path = fetchurl { 1815 name = "fs.realpath___fs.realpath_1.0.0.tgz"; 1816 url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; 1817 + sha1 = "FQStJSMVjKpA20onh8sBQRmU6k8="; 1818 }; 1819 } 1820 { ··· 1822 path = fetchurl { 1823 name = "fsevents___fsevents_1.2.11.tgz"; 1824 url = "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.11.tgz"; 1825 + sha512 = "+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw=="; 1826 }; 1827 } 1828 { ··· 1830 path = fetchurl { 1831 name = "fstream___fstream_0.1.31.tgz"; 1832 url = "https://registry.yarnpkg.com/fstream/-/fstream-0.1.31.tgz"; 1833 + sha1 = "czfwWPu7vvqMn1YaKMqwhJICyYg="; 1834 }; 1835 } 1836 { ··· 1838 path = fetchurl { 1839 name = "fuse_box___fuse_box_3.7.1.tgz"; 1840 url = "https://registry.yarnpkg.com/fuse-box/-/fuse-box-3.7.1.tgz"; 1841 + sha512 = "aM7t9bUcRpNNQu9M+YjXXzx9JSJQVPWeY+8iTyv7OhvJNWHrqqEWPzbn9OfcyFa2AfPwAUyC/uzWexBbjtTvsA=="; 1842 }; 1843 } 1844 { ··· 1846 path = fetchurl { 1847 name = "fuse_concat_with_sourcemaps___fuse_concat_with_sourcemaps_1.0.5.tgz"; 1848 url = "https://registry.yarnpkg.com/fuse-concat-with-sourcemaps/-/fuse-concat-with-sourcemaps-1.0.5.tgz"; 1849 + sha512 = "tKsRJIxn9tU3IH8JHMwFhGbObqkDKXhNKOvcM+QyflAlYb2EgOvIQe8D6WB/cocA3puldHatsp9SN5SKryasrw=="; 1850 }; 1851 } 1852 { 1853 + name = "fuse.js___fuse.js_6.4.6.tgz"; 1854 path = fetchurl { 1855 + name = "fuse.js___fuse.js_6.4.6.tgz"; 1856 + url = "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.4.6.tgz"; 1857 + sha512 = "/gYxR/0VpXmWSfZOIPS3rWwU8SHgsRTwWuXhyb2O6s7aRuVtHtxCkR33bNYu3wyLyNx/Wpv0vU7FZy8Vj53VNw=="; 1858 + }; 1859 + } 1860 + { 1861 + name = "gauge___gauge_2.7.4.tgz"; 1862 + path = fetchurl { 1863 + name = "gauge___gauge_2.7.4.tgz"; 1864 + url = "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz"; 1865 + sha1 = "LANAXHU4w51+s3sxcCLjJfsBi/c="; 1866 }; 1867 } 1868 { ··· 1870 path = fetchurl { 1871 name = "get_caller_file___get_caller_file_1.0.3.tgz"; 1872 url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz"; 1873 + sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w=="; 1874 + }; 1875 + } 1876 + { 1877 + name = "get_caller_file___get_caller_file_2.0.5.tgz"; 1878 + path = fetchurl { 1879 + name = "get_caller_file___get_caller_file_2.0.5.tgz"; 1880 + url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz"; 1881 + sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 1882 }; 1883 } 1884 { ··· 1886 path = fetchurl { 1887 name = "get_value___get_value_2.0.6.tgz"; 1888 url = "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz"; 1889 + sha1 = "3BXKHGcjh8p2vTesCjlbogQqLCg="; 1890 }; 1891 } 1892 { ··· 1894 path = fetchurl { 1895 name = "getopts___getopts_2.2.5.tgz"; 1896 url = "https://registry.yarnpkg.com/getopts/-/getopts-2.2.5.tgz"; 1897 + sha512 = "9jb7AW5p3in+IiJWhQiZmmwkpLaR/ccTWdWQCtZM66HJcHHLegowh4q4tSD7gouUyeNvFWRavfK9GXosQHDpFA=="; 1898 }; 1899 } 1900 { ··· 1902 path = fetchurl { 1903 name = "getpass___getpass_0.1.7.tgz"; 1904 url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz"; 1905 + sha1 = "Xv+OPmhNVprkyysSgmBOi6YhSfo="; 1906 }; 1907 } 1908 { ··· 1910 path = fetchurl { 1911 name = "glob_base___glob_base_0.3.0.tgz"; 1912 url = "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz"; 1913 + sha1 = "27Fk9iIbHAscz4Kuoyi0l98Oo8Q="; 1914 }; 1915 } 1916 { ··· 1918 path = fetchurl { 1919 name = "glob_parent___glob_parent_2.0.0.tgz"; 1920 url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz"; 1921 + sha1 = "gTg9ctsFT8zPUzbaqQLxgvbtuyg="; 1922 }; 1923 } 1924 { ··· 1926 path = fetchurl { 1927 name = "glob___glob_7.1.6.tgz"; 1928 url = "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz"; 1929 + sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 1930 }; 1931 } 1932 { ··· 1934 path = fetchurl { 1935 name = "good_listener___good_listener_1.2.2.tgz"; 1936 url = "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz"; 1937 + sha1 = "1TswzfkxPf+33JoNR3CWqm0UXFA="; 1938 }; 1939 } 1940 { ··· 1942 path = fetchurl { 1943 name = "graceful_fs___graceful_fs_4.2.3.tgz"; 1944 url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz"; 1945 + sha512 = "a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ=="; 1946 }; 1947 } 1948 { ··· 1950 path = fetchurl { 1951 name = "graceful_fs___graceful_fs_3.0.12.tgz"; 1952 url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.12.tgz"; 1953 + sha512 = "J55gaCS4iTTJfTXIxSVw3EMQckcqkpdRv3IR7gu6sq0+tbC363Zx6KH/SEwXASK9JRbhyZmVjJEVJIOxYsB3Qg=="; 1954 }; 1955 } 1956 { ··· 1958 path = fetchurl { 1959 name = "har_schema___har_schema_2.0.0.tgz"; 1960 url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz"; 1961 + sha1 = "qUwiJOvKwEeCoNkDVSHyRzW37JI="; 1962 }; 1963 } 1964 { ··· 1966 path = fetchurl { 1967 name = "har_validator___har_validator_5.1.3.tgz"; 1968 url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz"; 1969 + sha512 = "sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g=="; 1970 }; 1971 } 1972 { ··· 1974 path = fetchurl { 1975 name = "has_flag___has_flag_3.0.0.tgz"; 1976 url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; 1977 + sha1 = "tdRU3CGZriJWmfNGfloH87lVuv0="; 1978 }; 1979 } 1980 { 1981 + name = "has_unicode___has_unicode_2.0.1.tgz"; 1982 path = fetchurl { 1983 + name = "has_unicode___has_unicode_2.0.1.tgz"; 1984 + url = "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz"; 1985 + sha1 = "4Ob+aijPUROIVeCG0Wkedx3iqLk="; 1986 }; 1987 } 1988 { ··· 1990 path = fetchurl { 1991 name = "has_value___has_value_0.3.1.tgz"; 1992 url = "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz"; 1993 + sha1 = "ex9YutpiyoJ+wKIHgCVlSEWZXh8="; 1994 }; 1995 } 1996 { ··· 1998 path = fetchurl { 1999 name = "has_value___has_value_1.0.0.tgz"; 2000 url = "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz"; 2001 + sha1 = "GLKB2lhbHFxR3vJMkw7SmgvmsXc="; 2002 }; 2003 } 2004 { ··· 2006 path = fetchurl { 2007 name = "has_values___has_values_0.1.4.tgz"; 2008 url = "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz"; 2009 + sha1 = "bWHeldkd/Km5oCCJrThL/49it3E="; 2010 }; 2011 } 2012 { ··· 2014 path = fetchurl { 2015 name = "has_values___has_values_1.0.0.tgz"; 2016 url = "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz"; 2017 + sha1 = "lbC2P+whRmGab+V/51Yo1aOe/k8="; 2018 }; 2019 } 2020 { ··· 2022 path = fetchurl { 2023 name = "html___html_1.0.0.tgz"; 2024 url = "https://registry.yarnpkg.com/html/-/html-1.0.0.tgz"; 2025 + sha1 = "pUT6nqVJK/s6LMqCEKEL57WvH2E="; 2026 }; 2027 } 2028 { ··· 2030 path = fetchurl { 2031 name = "http_errors___http_errors_1.7.2.tgz"; 2032 url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz"; 2033 + sha512 = "uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg=="; 2034 }; 2035 } 2036 { ··· 2038 path = fetchurl { 2039 name = "http_errors___http_errors_1.7.3.tgz"; 2040 url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz"; 2041 + sha512 = "ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw=="; 2042 }; 2043 } 2044 { ··· 2046 path = fetchurl { 2047 name = "http_signature___http_signature_1.2.0.tgz"; 2048 url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz"; 2049 + sha1 = "muzZJRFHcvPZW2WmCruPfBj7rOE="; 2050 + }; 2051 + } 2052 + { 2053 + name = "https_proxy_agent___https_proxy_agent_5.0.0.tgz"; 2054 + path = fetchurl { 2055 + name = "https_proxy_agent___https_proxy_agent_5.0.0.tgz"; 2056 + url = "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz"; 2057 + sha512 = "EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA=="; 2058 }; 2059 } 2060 { ··· 2062 path = fetchurl { 2063 name = "iconv_lite___iconv_lite_0.4.24.tgz"; 2064 url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"; 2065 + sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 2066 }; 2067 } 2068 { ··· 2070 path = fetchurl { 2071 name = "ie_array_find_polyfill___ie_array_find_polyfill_1.1.0.tgz"; 2072 url = "https://registry.yarnpkg.com/ie-array-find-polyfill/-/ie-array-find-polyfill-1.1.0.tgz"; 2073 + sha1 = "UHjlM/Amgx2iK9dHZRPZRg1loUI="; 2074 }; 2075 } 2076 { ··· 2078 path = fetchurl { 2079 name = "ieee754___ieee754_1.1.13.tgz"; 2080 url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz"; 2081 + sha512 = "4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg=="; 2082 }; 2083 } 2084 { ··· 2086 path = fetchurl { 2087 name = "import_fresh___import_fresh_3.2.1.tgz"; 2088 url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz"; 2089 + sha512 = "6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ=="; 2090 }; 2091 } 2092 { ··· 2094 path = fetchurl { 2095 name = "inflight___inflight_1.0.6.tgz"; 2096 url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; 2097 + sha1 = "Sb1jMdfQLQwJvJEKEHW6gWW1bfk="; 2098 }; 2099 } 2100 { ··· 2102 path = fetchurl { 2103 name = "inherits___inherits_2.0.4.tgz"; 2104 url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; 2105 + sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 2106 }; 2107 } 2108 { ··· 2110 path = fetchurl { 2111 name = "inherits___inherits_2.0.3.tgz"; 2112 url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; 2113 + sha1 = "Yzwsg+PaQqUC9SRmAiSA9CCCYd4="; 2114 }; 2115 } 2116 { ··· 2118 path = fetchurl { 2119 name = "inquirer___inquirer_3.3.0.tgz"; 2120 url = "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz"; 2121 + sha512 = "h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ=="; 2122 }; 2123 } 2124 { ··· 2126 path = fetchurl { 2127 name = "ipaddr.js___ipaddr.js_1.9.1.tgz"; 2128 url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz"; 2129 + sha512 = "0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="; 2130 }; 2131 } 2132 { ··· 2134 path = fetchurl { 2135 name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; 2136 url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; 2137 + sha1 = "qeEss66Nh2cn7u84Q/igiXtcmNY="; 2138 }; 2139 } 2140 { ··· 2142 path = fetchurl { 2143 name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; 2144 url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; 2145 + sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ=="; 2146 }; 2147 } 2148 { ··· 2150 path = fetchurl { 2151 name = "is_arrayish___is_arrayish_0.2.1.tgz"; 2152 url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; 2153 + sha1 = "d8mYQFJ6qOyxqLppe4BkWnqSap0="; 2154 }; 2155 } 2156 { ··· 2158 path = fetchurl { 2159 name = "is_binary_path___is_binary_path_1.0.1.tgz"; 2160 url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz"; 2161 + sha1 = "dfFmQrSA8YenEcgUFh/TpKdlWJg="; 2162 }; 2163 } 2164 { ··· 2166 path = fetchurl { 2167 name = "is_buffer___is_buffer_1.1.6.tgz"; 2168 url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz"; 2169 + sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; 2170 }; 2171 } 2172 { ··· 2174 path = fetchurl { 2175 name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; 2176 url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; 2177 + sha1 = "C17mSDiOLIYCgueT8YVv7D8wG1Y="; 2178 }; 2179 } 2180 { ··· 2182 path = fetchurl { 2183 name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; 2184 url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; 2185 + sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; 2186 }; 2187 } 2188 { ··· 2190 path = fetchurl { 2191 name = "is_descriptor___is_descriptor_0.1.6.tgz"; 2192 url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz"; 2193 + sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg=="; 2194 }; 2195 } 2196 { ··· 2198 path = fetchurl { 2199 name = "is_descriptor___is_descriptor_1.0.2.tgz"; 2200 url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz"; 2201 + sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="; 2202 }; 2203 } 2204 { ··· 2206 path = fetchurl { 2207 name = "is_dotfile___is_dotfile_1.0.3.tgz"; 2208 url = "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz"; 2209 + sha1 = "pqLzL/0t+wT1yiXs0Pa4PPeYoeE="; 2210 }; 2211 } 2212 { ··· 2214 path = fetchurl { 2215 name = "is_equal_shallow___is_equal_shallow_0.1.3.tgz"; 2216 url = "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz"; 2217 + sha1 = "IjgJj8Ih3gvPpdnqxMRdY4qhxTQ="; 2218 }; 2219 } 2220 { ··· 2222 path = fetchurl { 2223 name = "is_extendable___is_extendable_0.1.1.tgz"; 2224 url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz"; 2225 + sha1 = "YrEQ4omkcUGOPsNqYX1HLjAd/Ik="; 2226 }; 2227 } 2228 { ··· 2230 path = fetchurl { 2231 name = "is_extendable___is_extendable_1.0.1.tgz"; 2232 url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz"; 2233 + sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA=="; 2234 }; 2235 } 2236 { ··· 2238 path = fetchurl { 2239 name = "is_extglob___is_extglob_1.0.0.tgz"; 2240 url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz"; 2241 + sha1 = "rEaBd8SUNAWgkvyPKXYMb/xiBsA="; 2242 + }; 2243 + } 2244 + { 2245 + name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; 2246 + path = fetchurl { 2247 + name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; 2248 + url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; 2249 + sha1 = "754xOG8DGn8NZDr4L95QxFfvAMs="; 2250 }; 2251 } 2252 { ··· 2254 path = fetchurl { 2255 name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; 2256 url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 2257 + sha1 = "o7MKXE8ZkYMWeqq5O+764937ZU8="; 2258 + }; 2259 + } 2260 + { 2261 + name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz"; 2262 + path = fetchurl { 2263 + name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz"; 2264 + url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; 2265 + sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; 2266 }; 2267 } 2268 { ··· 2270 path = fetchurl { 2271 name = "is_glob___is_glob_2.0.1.tgz"; 2272 url = "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz"; 2273 + sha1 = "0Jb5JqPe1WAPP9/ZEZjLCIjC2GM="; 2274 }; 2275 } 2276 { ··· 2278 path = fetchurl { 2279 name = "is_number___is_number_2.1.0.tgz"; 2280 url = "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz"; 2281 + sha1 = "Afy7s5NGOlSPL0ZszhbezknbkI8="; 2282 }; 2283 } 2284 { ··· 2286 path = fetchurl { 2287 name = "is_number___is_number_3.0.0.tgz"; 2288 url = "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz"; 2289 + sha1 = "JP1iAaR4LPUFYcgQJ2r8fRLXEZU="; 2290 }; 2291 } 2292 { ··· 2294 path = fetchurl { 2295 name = "is_number___is_number_4.0.0.tgz"; 2296 url = "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz"; 2297 + sha512 = "rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ=="; 2298 }; 2299 } 2300 { ··· 2302 path = fetchurl { 2303 name = "is_plain_object___is_plain_object_2.0.4.tgz"; 2304 url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz"; 2305 + sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; 2306 }; 2307 } 2308 { ··· 2310 path = fetchurl { 2311 name = "is_posix_bracket___is_posix_bracket_0.1.1.tgz"; 2312 url = "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz"; 2313 + sha1 = "MzTceXdDaOkvAW5vvAqI9c1ua8Q="; 2314 }; 2315 } 2316 { ··· 2318 path = fetchurl { 2319 name = "is_primitive___is_primitive_2.0.0.tgz"; 2320 url = "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz"; 2321 + sha1 = "IHurkWOEmcB7Kt8kCkGochADRXU="; 2322 }; 2323 } 2324 { ··· 2326 path = fetchurl { 2327 name = "is_promise___is_promise_2.1.0.tgz"; 2328 url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz"; 2329 + sha1 = "eaKp7OfwlugPNtKy87wWwf9L8/o="; 2330 }; 2331 } 2332 { ··· 2334 path = fetchurl { 2335 name = "is_typedarray___is_typedarray_1.0.0.tgz"; 2336 url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz"; 2337 + sha1 = "5HnICFjfDBsR3dppQPlgEfzaSpo="; 2338 }; 2339 } 2340 { ··· 2342 path = fetchurl { 2343 name = "is_windows___is_windows_1.0.2.tgz"; 2344 url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz"; 2345 + sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="; 2346 }; 2347 } 2348 { ··· 2350 path = fetchurl { 2351 name = "isarray___isarray_0.0.1.tgz"; 2352 url = "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz"; 2353 + sha1 = "ihis/Kmo9Bd+Cav8YDiTmwXR7t8="; 2354 }; 2355 } 2356 { ··· 2358 path = fetchurl { 2359 name = "isarray___isarray_1.0.0.tgz"; 2360 url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; 2361 + sha1 = "u5NdSFgsuhaMBoNJV6VKPgcSTxE="; 2362 }; 2363 } 2364 { ··· 2366 path = fetchurl { 2367 name = "isobject___isobject_2.1.0.tgz"; 2368 url = "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz"; 2369 + sha1 = "8GVWEJaj8dou9GJy+BXIQNh+DIk="; 2370 }; 2371 } 2372 { ··· 2374 path = fetchurl { 2375 name = "isobject___isobject_3.0.1.tgz"; 2376 url = "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz"; 2377 + sha1 = "TkMekrEalzFjaqH5yNHMvP2reN8="; 2378 }; 2379 } 2380 { ··· 2382 path = fetchurl { 2383 name = "isstream___isstream_0.1.2.tgz"; 2384 url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz"; 2385 + sha1 = "R+Y/evVa+m+S4VAOaQ64uFKcCZo="; 2386 }; 2387 } 2388 { ··· 2390 path = fetchurl { 2391 name = "js_tokens___js_tokens_4.0.0.tgz"; 2392 url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; 2393 + sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 2394 }; 2395 } 2396 { ··· 2398 path = fetchurl { 2399 name = "js_yaml___js_yaml_3.13.1.tgz"; 2400 url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz"; 2401 + sha512 = "YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw=="; 2402 + }; 2403 + } 2404 + { 2405 + name = "js_yaml___js_yaml_4.1.0.tgz"; 2406 + path = fetchurl { 2407 + name = "js_yaml___js_yaml_4.1.0.tgz"; 2408 + url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz"; 2409 + sha512 = "wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="; 2410 }; 2411 } 2412 { ··· 2414 path = fetchurl { 2415 name = "jsbn___jsbn_0.1.1.tgz"; 2416 url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz"; 2417 + sha1 = "peZUwuWi3rXyAdls77yoDA7y9RM="; 2418 }; 2419 } 2420 { ··· 2422 path = fetchurl { 2423 name = "jsesc___jsesc_0.5.0.tgz"; 2424 url = "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz"; 2425 + sha1 = "597mbjXW/Bb3EP6R1c9p9w8IkR0="; 2426 }; 2427 } 2428 { ··· 2430 path = fetchurl { 2431 name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; 2432 url = "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"; 2433 + sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="; 2434 }; 2435 } 2436 { ··· 2438 path = fetchurl { 2439 name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; 2440 url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; 2441 + sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 2442 }; 2443 } 2444 { ··· 2446 path = fetchurl { 2447 name = "json_schema___json_schema_0.2.3.tgz"; 2448 url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz"; 2449 + sha1 = "tIDIkuWaLwWVTOcnvT8qTogvnhM="; 2450 }; 2451 } 2452 { ··· 2454 path = fetchurl { 2455 name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; 2456 url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; 2457 + sha1 = "Epai1Y/UXxmg9s4B1lcB4sc1tus="; 2458 }; 2459 } 2460 { ··· 2462 path = fetchurl { 2463 name = "jsondiffpatch___jsondiffpatch_0.3.11.tgz"; 2464 url = "https://registry.yarnpkg.com/jsondiffpatch/-/jsondiffpatch-0.3.11.tgz"; 2465 + sha512 = "Xi3Iygdt/BGhml6bdUFhgDki1TgOsp3hG3iiH3KtzP+CahtGcdPfKRLlnZbSw+3b1umZkhmKrqXUgUcKenyhtA=="; 2466 }; 2467 } 2468 { ··· 2470 path = fetchurl { 2471 name = "jsonfile___jsonfile_4.0.0.tgz"; 2472 url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz"; 2473 + sha1 = "h3Gq4HmbZAdrdmQPygWPnBDjPss="; 2474 }; 2475 } 2476 { ··· 2478 path = fetchurl { 2479 name = "jsprim___jsprim_1.4.1.tgz"; 2480 url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz"; 2481 + sha1 = "MT5mvB5cwG5Di8G3SZwuXFastqI="; 2482 + }; 2483 + } 2484 + { 2485 + name = "keypress___keypress_0.1.0.tgz"; 2486 + path = fetchurl { 2487 + name = "keypress___keypress_0.1.0.tgz"; 2488 + url = "https://registry.yarnpkg.com/keypress/-/keypress-0.1.0.tgz"; 2489 + sha1 = "SjGI1CkbZrT2XtuZ+AaqmuKTWSo="; 2490 }; 2491 } 2492 { ··· 2494 path = fetchurl { 2495 name = "kind_of___kind_of_3.2.2.tgz"; 2496 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz"; 2497 + sha1 = "MeohpzS6ubuw8yRm2JOupR5KPGQ="; 2498 }; 2499 } 2500 { ··· 2502 path = fetchurl { 2503 name = "kind_of___kind_of_4.0.0.tgz"; 2504 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz"; 2505 + sha1 = "IIE989cSkosgc3hpGkUGb65y3Vc="; 2506 }; 2507 } 2508 { ··· 2510 path = fetchurl { 2511 name = "kind_of___kind_of_5.1.0.tgz"; 2512 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz"; 2513 + sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="; 2514 }; 2515 } 2516 { ··· 2518 path = fetchurl { 2519 name = "kind_of___kind_of_6.0.3.tgz"; 2520 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz"; 2521 + sha512 = "dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="; 2522 }; 2523 } 2524 { ··· 2526 path = fetchurl { 2527 name = "lego_api___lego_api_1.0.8.tgz"; 2528 url = "https://registry.yarnpkg.com/lego-api/-/lego-api-1.0.8.tgz"; 2529 + sha512 = "pZD0mf32+RL1bUMJztRcXiNBB1gE8gd/h4MDLWdZp7vaMZyjPiYK/zNpNNGoJvmoa7D/wf9dll+5z7pDObdLFg=="; 2530 }; 2531 } 2532 { ··· 2534 path = fetchurl { 2535 name = "levn___levn_0.3.0.tgz"; 2536 url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; 2537 + sha1 = "OwmSTt+fCDwEkP3UwLxEIeBHZO4="; 2538 }; 2539 } 2540 { ··· 2542 path = fetchurl { 2543 name = "lines_and_columns___lines_and_columns_1.1.6.tgz"; 2544 url = "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz"; 2545 + sha1 = "HADHQ7QzzQpOgHWPe2SldEDZ/wA="; 2546 }; 2547 } 2548 { ··· 2550 path = fetchurl { 2551 name = "lodash._getnative___lodash._getnative_3.9.1.tgz"; 2552 url = "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz"; 2553 + sha1 = "VwvH3t5G1hzc3mh9ZdPuy6o6r/U="; 2554 }; 2555 } 2556 { ··· 2558 path = fetchurl { 2559 name = "lodash.curry___lodash.curry_4.1.1.tgz"; 2560 url = "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz"; 2561 + sha1 = "JI42By7ekGUB11lmIAqG2riyMXA="; 2562 }; 2563 } 2564 { ··· 2566 path = fetchurl { 2567 name = "lodash.debounce___lodash.debounce_3.1.1.tgz"; 2568 url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-3.1.1.tgz"; 2569 + sha1 = "gSIRw3ipTMKdWqTjNGzwv846ffU="; 2570 }; 2571 } 2572 { ··· 2574 path = fetchurl { 2575 name = "lodash.debounce___lodash.debounce_4.0.8.tgz"; 2576 url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; 2577 + sha1 = "gteb/zCmfEAF/9XiUVMArZyk168="; 2578 }; 2579 } 2580 { ··· 2582 path = fetchurl { 2583 name = "lodash.flow___lodash.flow_3.5.0.tgz"; 2584 url = "https://registry.yarnpkg.com/lodash.flow/-/lodash.flow-3.5.0.tgz"; 2585 + sha1 = "h79AKSuM+D5OjOGjrkIJ4gBxZ1o="; 2586 + }; 2587 + } 2588 + { 2589 + name = "lodash.orderby___lodash.orderby_4.6.0.tgz"; 2590 + path = fetchurl { 2591 + name = "lodash.orderby___lodash.orderby_4.6.0.tgz"; 2592 + url = "https://registry.yarnpkg.com/lodash.orderby/-/lodash.orderby-4.6.0.tgz"; 2593 + sha1 = "5pfwTOXXhSL1TZM4syuBozk+TrM="; 2594 }; 2595 } 2596 { ··· 2598 path = fetchurl { 2599 name = "lodash.uniqby___lodash.uniqby_4.7.0.tgz"; 2600 url = "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz"; 2601 + sha1 = "2ZwHpmnp5tJOE2Lf4mbGdhavEwI="; 2602 }; 2603 } 2604 { ··· 2606 path = fetchurl { 2607 name = "lodash___lodash_4.17.15.tgz"; 2608 url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz"; 2609 + sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; 2610 }; 2611 } 2612 { ··· 2614 path = fetchurl { 2615 name = "loose_envify___loose_envify_1.4.0.tgz"; 2616 url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"; 2617 + sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; 2618 + }; 2619 + } 2620 + { 2621 + name = "lru_cache___lru_cache_6.0.0.tgz"; 2622 + path = fetchurl { 2623 + name = "lru_cache___lru_cache_6.0.0.tgz"; 2624 + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; 2625 + sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 2626 + }; 2627 + } 2628 + { 2629 + name = "make_dir___make_dir_3.1.0.tgz"; 2630 + path = fetchurl { 2631 + name = "make_dir___make_dir_3.1.0.tgz"; 2632 + url = "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz"; 2633 + sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 2634 }; 2635 } 2636 { ··· 2638 path = fetchurl { 2639 name = "make_error___make_error_1.3.6.tgz"; 2640 url = "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz"; 2641 + sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="; 2642 }; 2643 } 2644 { ··· 2646 path = fetchurl { 2647 name = "map_cache___map_cache_0.2.2.tgz"; 2648 url = "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz"; 2649 + sha1 = "wyq9C9ZSXZsFFkW7TyasXcmKDb8="; 2650 }; 2651 } 2652 { ··· 2654 path = fetchurl { 2655 name = "map_visit___map_visit_1.0.0.tgz"; 2656 url = "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz"; 2657 + sha1 = "7Nyo8TFE5mDxtb1B8S80edmN+48="; 2658 }; 2659 } 2660 { ··· 2662 path = fetchurl { 2663 name = "match_stream___match_stream_0.0.2.tgz"; 2664 url = "https://registry.yarnpkg.com/match-stream/-/match-stream-0.0.2.tgz"; 2665 + sha1 = "mesFAJOzTf+t5CG5rAtBCpz6F88="; 2666 }; 2667 } 2668 { ··· 2670 path = fetchurl { 2671 name = "math_random___math_random_1.0.4.tgz"; 2672 url = "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz"; 2673 + sha512 = "rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A=="; 2674 }; 2675 } 2676 { ··· 2678 path = fetchurl { 2679 name = "media_typer___media_typer_0.3.0.tgz"; 2680 url = "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz"; 2681 + sha1 = "hxDXrwqmJvj/+hzgAWhUUmMlV0g="; 2682 }; 2683 } 2684 { ··· 2686 path = fetchurl { 2687 name = "memoize_one___memoize_one_5.1.1.tgz"; 2688 url = "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.1.1.tgz"; 2689 + sha512 = "HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA=="; 2690 }; 2691 } 2692 { ··· 2694 path = fetchurl { 2695 name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; 2696 url = "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; 2697 + sha1 = "sAqqVW3YtEVoFQ7J0blT8/kMu2E="; 2698 }; 2699 } 2700 { ··· 2702 path = fetchurl { 2703 name = "merge___merge_1.2.1.tgz"; 2704 url = "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz"; 2705 + sha512 = "VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ=="; 2706 }; 2707 } 2708 { ··· 2710 path = fetchurl { 2711 name = "methods___methods_1.1.2.tgz"; 2712 url = "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz"; 2713 + sha1 = "VSmk1nZUE07cxSZmVoNbD4Ua/O4="; 2714 }; 2715 } 2716 { ··· 2718 path = fetchurl { 2719 name = "micromatch___micromatch_2.3.11.tgz"; 2720 url = "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz"; 2721 + sha1 = "hmd8l9FyCzY0MdBNDRUpO9OMFWU="; 2722 }; 2723 } 2724 { ··· 2726 path = fetchurl { 2727 name = "micromatch___micromatch_3.1.10.tgz"; 2728 url = "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz"; 2729 + sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="; 2730 }; 2731 } 2732 { ··· 2734 path = fetchurl { 2735 name = "mime_db___mime_db_1.43.0.tgz"; 2736 url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz"; 2737 + sha512 = "+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ=="; 2738 }; 2739 } 2740 { ··· 2742 path = fetchurl { 2743 name = "mime_types___mime_types_2.1.26.tgz"; 2744 url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz"; 2745 + sha512 = "01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ=="; 2746 }; 2747 } 2748 { ··· 2750 path = fetchurl { 2751 name = "mime___mime_1.6.0.tgz"; 2752 url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz"; 2753 + sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; 2754 }; 2755 } 2756 { ··· 2758 path = fetchurl { 2759 name = "mimic_fn___mimic_fn_1.2.0.tgz"; 2760 url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz"; 2761 + sha512 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="; 2762 }; 2763 } 2764 { ··· 2766 path = fetchurl { 2767 name = "minimatch___minimatch_3.0.4.tgz"; 2768 url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; 2769 + sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 2770 }; 2771 } 2772 { ··· 2774 path = fetchurl { 2775 name = "minimist___minimist_0.0.8.tgz"; 2776 url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; 2777 + sha1 = "hX/Kv8M5fSYluCKCYuhqp6ARsF0="; 2778 }; 2779 } 2780 { ··· 2782 path = fetchurl { 2783 name = "minimist___minimist_1.2.0.tgz"; 2784 url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz"; 2785 + sha1 = "o1AIsg9BOD7sH7kU9M1d95omQoQ="; 2786 }; 2787 } 2788 { ··· 2790 path = fetchurl { 2791 name = "minimist___minimist_1.2.5.tgz"; 2792 url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 2793 + sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 2794 + }; 2795 + } 2796 + { 2797 + name = "minipass___minipass_3.1.5.tgz"; 2798 + path = fetchurl { 2799 + name = "minipass___minipass_3.1.5.tgz"; 2800 + url = "https://registry.yarnpkg.com/minipass/-/minipass-3.1.5.tgz"; 2801 + sha512 = "+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw=="; 2802 + }; 2803 + } 2804 + { 2805 + name = "minizlib___minizlib_2.1.2.tgz"; 2806 + path = fetchurl { 2807 + name = "minizlib___minizlib_2.1.2.tgz"; 2808 + url = "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz"; 2809 + sha512 = "bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg=="; 2810 }; 2811 } 2812 { ··· 2814 path = fetchurl { 2815 name = "mixin_deep___mixin_deep_1.3.2.tgz"; 2816 url = "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz"; 2817 + sha512 = "WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA=="; 2818 }; 2819 } 2820 { ··· 2822 path = fetchurl { 2823 name = "mkdirp___mkdirp_0.5.5.tgz"; 2824 url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz"; 2825 + sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 2826 }; 2827 } 2828 { ··· 2830 path = fetchurl { 2831 name = "mkdirp___mkdirp_0.5.1.tgz"; 2832 url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz"; 2833 + sha1 = "MAV0OOrGz3+MR2fzhkjWaX11yQM="; 2834 + }; 2835 + } 2836 + { 2837 + name = "mkdirp___mkdirp_1.0.4.tgz"; 2838 + path = fetchurl { 2839 + name = "mkdirp___mkdirp_1.0.4.tgz"; 2840 + url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz"; 2841 + sha512 = "vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="; 2842 }; 2843 } 2844 { ··· 2846 path = fetchurl { 2847 name = "mock_require___mock_require_3.0.3.tgz"; 2848 url = "https://registry.yarnpkg.com/mock-require/-/mock-require-3.0.3.tgz"; 2849 + sha512 = "lLzfLHcyc10MKQnNUCv7dMcoY/2Qxd6wJfbqCcVk3LDb8An4hF6ohk5AztrvgKhJCqj36uyzi/p5se+tvyD+Wg=="; 2850 }; 2851 } 2852 { ··· 2854 path = fetchurl { 2855 name = "ms___ms_2.0.0.tgz"; 2856 url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz"; 2857 + sha1 = "VgiurfwAvmwpAd9fmGF4jeDVl8g="; 2858 }; 2859 } 2860 { ··· 2862 path = fetchurl { 2863 name = "ms___ms_2.1.1.tgz"; 2864 url = "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz"; 2865 + sha512 = "tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="; 2866 + }; 2867 + } 2868 + { 2869 + name = "ms___ms_2.1.2.tgz"; 2870 + path = fetchurl { 2871 + name = "ms___ms_2.1.2.tgz"; 2872 + url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz"; 2873 + sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 2874 }; 2875 } 2876 { ··· 2878 path = fetchurl { 2879 name = "mustache___mustache_2.3.2.tgz"; 2880 url = "https://registry.yarnpkg.com/mustache/-/mustache-2.3.2.tgz"; 2881 + sha512 = "KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ=="; 2882 }; 2883 } 2884 { ··· 2886 path = fetchurl { 2887 name = "mute_stream___mute_stream_0.0.7.tgz"; 2888 url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz"; 2889 + sha1 = "MHXOk7whuPq0PhvE2n6BFe0ee6s="; 2890 }; 2891 } 2892 { ··· 2894 path = fetchurl { 2895 name = "nan___nan_2.14.0.tgz"; 2896 url = "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz"; 2897 + sha512 = "INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg=="; 2898 }; 2899 } 2900 { ··· 2902 path = fetchurl { 2903 name = "nanomatch___nanomatch_1.2.13.tgz"; 2904 url = "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz"; 2905 + sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA=="; 2906 }; 2907 } 2908 { ··· 2910 path = fetchurl { 2911 name = "nanoseconds___nanoseconds_0.1.0.tgz"; 2912 url = "https://registry.yarnpkg.com/nanoseconds/-/nanoseconds-0.1.0.tgz"; 2913 + sha1 = "aew5/NAOd6s6ct4KQzQoJM15Izo="; 2914 }; 2915 } 2916 { ··· 2918 path = fetchurl { 2919 name = "natives___natives_1.1.6.tgz"; 2920 url = "https://registry.yarnpkg.com/natives/-/natives-1.1.6.tgz"; 2921 + sha512 = "6+TDFewD4yxY14ptjKaS63GVdtKiES1pTPyxn9Jb0rBqPMZ7VcCiooEhPNsr+mqHtMGxa/5c/HhcC4uPEUw/nA=="; 2922 }; 2923 } 2924 { ··· 2926 path = fetchurl { 2927 name = "negotiator___negotiator_0.6.2.tgz"; 2928 url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz"; 2929 + sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; 2930 + }; 2931 + } 2932 + { 2933 + name = "node_addon_api___node_addon_api_3.2.1.tgz"; 2934 + path = fetchurl { 2935 + name = "node_addon_api___node_addon_api_3.2.1.tgz"; 2936 + url = "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz"; 2937 + sha512 = "mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A=="; 2938 + }; 2939 + } 2940 + { 2941 + name = "node_fetch___node_fetch_2.6.5.tgz"; 2942 + path = fetchurl { 2943 + name = "node_fetch___node_fetch_2.6.5.tgz"; 2944 + url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.5.tgz"; 2945 + sha512 = "mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ=="; 2946 + }; 2947 + } 2948 + { 2949 + name = "nodejieba___nodejieba_2.5.2.tgz"; 2950 + path = fetchurl { 2951 + name = "nodejieba___nodejieba_2.5.2.tgz"; 2952 + url = "https://registry.yarnpkg.com/nodejieba/-/nodejieba-2.5.2.tgz"; 2953 + sha512 = "ByskJvaBrQ2eV+5M0OeD80S5NKoGaHc9zi3Z/PTKl/95eac2YF8RmWduq9AknLpkQLrLAIcqurrtC6BzjpKwwg=="; 2954 + }; 2955 + } 2956 + { 2957 + name = "nopt___nopt_5.0.0.tgz"; 2958 + path = fetchurl { 2959 + name = "nopt___nopt_5.0.0.tgz"; 2960 + url = "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz"; 2961 + sha512 = "Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ=="; 2962 }; 2963 } 2964 { ··· 2966 path = fetchurl { 2967 name = "nopt___nopt_1.0.10.tgz"; 2968 url = "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz"; 2969 + sha1 = "bd0hvSoxQXuScn3Vhfim83YI6+4="; 2970 }; 2971 } 2972 { ··· 2974 path = fetchurl { 2975 name = "normalize_path___normalize_path_2.1.1.tgz"; 2976 url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz"; 2977 + sha1 = "GrKLVW4Zg2Oowab35vogE3/mrtk="; 2978 + }; 2979 + } 2980 + { 2981 + name = "npmlog___npmlog_4.1.2.tgz"; 2982 + path = fetchurl { 2983 + name = "npmlog___npmlog_4.1.2.tgz"; 2984 + url = "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz"; 2985 + sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg=="; 2986 + }; 2987 + } 2988 + { 2989 + name = "number_is_nan___number_is_nan_1.0.1.tgz"; 2990 + path = fetchurl { 2991 + name = "number_is_nan___number_is_nan_1.0.1.tgz"; 2992 + url = "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz"; 2993 + sha1 = "CXtgK1NCKlIsGvuHkDGDNpQaAR0="; 2994 }; 2995 } 2996 { ··· 2998 path = fetchurl { 2999 name = "oauth_sign___oauth_sign_0.9.0.tgz"; 3000 url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz"; 3001 + sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; 3002 }; 3003 } 3004 { ··· 3006 path = fetchurl { 3007 name = "object_assign___object_assign_4.1.1.tgz"; 3008 url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz"; 3009 + sha1 = "IQmtx5ZYh8/AXLvUQsrIv7s2CGM="; 3010 }; 3011 } 3012 { ··· 3014 path = fetchurl { 3015 name = "object_copy___object_copy_0.1.0.tgz"; 3016 url = "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz"; 3017 + sha1 = "fn2Fi3gb18mRpBupde04EnVOmYw="; 3018 }; 3019 } 3020 { ··· 3022 path = fetchurl { 3023 name = "object_visit___object_visit_1.0.1.tgz"; 3024 url = "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz"; 3025 + sha1 = "95xEk68MU3e1n+OdOV5BBC3QRbs="; 3026 }; 3027 } 3028 { ··· 3030 path = fetchurl { 3031 name = "object.omit___object.omit_2.0.1.tgz"; 3032 url = "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz"; 3033 + sha1 = "Gpx0SCnznbuFjHbKNXmuKlTr0fo="; 3034 }; 3035 } 3036 { ··· 3038 path = fetchurl { 3039 name = "object.pick___object.pick_1.3.0.tgz"; 3040 url = "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz"; 3041 + sha1 = "h6EKxMFpS9Lhy/U1kaZhQftd10c="; 3042 }; 3043 } 3044 { 3045 + name = "object_values___object_values_0.1.2.tgz"; 3046 path = fetchurl { 3047 + name = "object_values___object_values_0.1.2.tgz"; 3048 + url = "https://registry.yarnpkg.com/object_values/-/object_values-0.1.2.tgz"; 3049 + sha512 = "tZgUiKLraVH+4OAedBYrr4/K6KmAQw2RPNd1AuNdhLsuz5WP3VB7WuiKBWbOcjeqqAjus2ChIIWC8dSfmg7ReA=="; 3050 }; 3051 } 3052 { ··· 3054 path = fetchurl { 3055 name = "on_finished___on_finished_2.3.0.tgz"; 3056 url = "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz"; 3057 + sha1 = "IPEzZIGwg811M3mSoWlxqi2QaUc="; 3058 }; 3059 } 3060 { ··· 3062 path = fetchurl { 3063 name = "once___once_1.4.0.tgz"; 3064 url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; 3065 + sha1 = "WDsap3WWHUsROsF9nFC6753Xa9E="; 3066 }; 3067 } 3068 { ··· 3070 path = fetchurl { 3071 name = "onetime___onetime_2.0.1.tgz"; 3072 url = "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz"; 3073 + sha1 = "BnQoIw/WdEOyeUsiu6UotoZ5YtQ="; 3074 }; 3075 } 3076 { ··· 3078 path = fetchurl { 3079 name = "optionator___optionator_0.8.3.tgz"; 3080 url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz"; 3081 + sha512 = "+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA=="; 3082 }; 3083 } 3084 { ··· 3086 path = fetchurl { 3087 name = "options___options_0.0.6.tgz"; 3088 url = "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz"; 3089 + sha1 = "7CLTEoBrtT5zF3Pnza788cZDEo8="; 3090 }; 3091 } 3092 { ··· 3094 path = fetchurl { 3095 name = "orderedmap___orderedmap_1.1.1.tgz"; 3096 url = "https://registry.yarnpkg.com/orderedmap/-/orderedmap-1.1.1.tgz"; 3097 + sha512 = "3Ux8um0zXbVacKUkcytc0u3HgC0b0bBLT+I60r2J/En72cI0nZffqrA7Xtf2Hqs27j1g82llR5Mhbd0Z1XW4AQ=="; 3098 }; 3099 } 3100 { ··· 3102 path = fetchurl { 3103 name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 3104 url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 3105 + sha1 = "u+Z0BseaqFxc/sdm/lc0VV36EnQ="; 3106 }; 3107 } 3108 { ··· 3110 path = fetchurl { 3111 name = "over___over_0.0.5.tgz"; 3112 url = "https://registry.yarnpkg.com/over/-/over-0.0.5.tgz"; 3113 + sha1 = "8phS5w/X4l82DgE6jsRMgq7bVwg="; 3114 }; 3115 } 3116 { ··· 3118 path = fetchurl { 3119 name = "parent_module___parent_module_1.0.1.tgz"; 3120 url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz"; 3121 + sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; 3122 }; 3123 } 3124 { ··· 3126 path = fetchurl { 3127 name = "parse_glob___parse_glob_3.0.4.tgz"; 3128 url = "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz"; 3129 + sha1 = "ssN2z7EfNVE7rdFz7wu246OIORw="; 3130 }; 3131 } 3132 { ··· 3134 path = fetchurl { 3135 name = "parse_json___parse_json_5.0.0.tgz"; 3136 url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz"; 3137 + sha512 = "OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw=="; 3138 }; 3139 } 3140 { ··· 3142 path = fetchurl { 3143 name = "parseurl___parseurl_1.3.3.tgz"; 3144 url = "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz"; 3145 + sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="; 3146 }; 3147 } 3148 { ··· 3150 path = fetchurl { 3151 name = "pascalcase___pascalcase_0.1.1.tgz"; 3152 url = "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz"; 3153 + sha1 = "s2PlXoAGym/iF4TS2yK9FdeRfxQ="; 3154 }; 3155 } 3156 { ··· 3158 path = fetchurl { 3159 name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 3160 url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 3161 + sha1 = "F0uSaHNVNP+8es5r9TpanhtcX18="; 3162 }; 3163 } 3164 { ··· 3166 path = fetchurl { 3167 name = "path_parse___path_parse_1.0.6.tgz"; 3168 url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz"; 3169 + sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="; 3170 }; 3171 } 3172 { ··· 3174 path = fetchurl { 3175 name = "path_to_regexp___path_to_regexp_0.1.7.tgz"; 3176 url = "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; 3177 + sha1 = "32BBeABfUi8V60SQ5yR6G/qmf4w="; 3178 }; 3179 } 3180 { ··· 3182 path = fetchurl { 3183 name = "path_type___path_type_4.0.0.tgz"; 3184 url = "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz"; 3185 + sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="; 3186 }; 3187 } 3188 { ··· 3190 path = fetchurl { 3191 name = "performance_now___performance_now_2.1.0.tgz"; 3192 url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz"; 3193 + sha1 = "Ywn04OX6kT7BxpMHrjZLSzd8nns="; 3194 + }; 3195 + } 3196 + { 3197 + name = "pinyin___pinyin_2.10.2.tgz"; 3198 + path = fetchurl { 3199 + name = "pinyin___pinyin_2.10.2.tgz"; 3200 + url = "https://registry.yarnpkg.com/pinyin/-/pinyin-2.10.2.tgz"; 3201 + sha512 = "qAcp7+2vnjm6sAd0B9pp5JpyvHbYoQO1v9zCeJQMEgyw2VeRi02l0gR22ZBgfjjvZ1c2EGoVjJHJ1h0rwr34Ug=="; 3202 }; 3203 } 3204 { ··· 3206 path = fetchurl { 3207 name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; 3208 url = "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; 3209 + sha1 = "AerA/jta9xoqbAL+q7jB/vfgDqs="; 3210 }; 3211 } 3212 { ··· 3214 path = fetchurl { 3215 name = "postcss___postcss_6.0.23.tgz"; 3216 url = "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz"; 3217 + sha512 = "soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag=="; 3218 }; 3219 } 3220 { ··· 3222 path = fetchurl { 3223 name = "prelude_ls___prelude_ls_1.1.2.tgz"; 3224 url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; 3225 + sha1 = "IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ="; 3226 }; 3227 } 3228 { ··· 3230 path = fetchurl { 3231 name = "preserve___preserve_0.2.0.tgz"; 3232 url = "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz"; 3233 + sha1 = "gV7R9uvGWSb4ZbMQwHE7yzMVzks="; 3234 }; 3235 } 3236 { ··· 3238 path = fetchurl { 3239 name = "prettier___prettier_1.19.1.tgz"; 3240 url = "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz"; 3241 + sha512 = "s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew=="; 3242 }; 3243 } 3244 { ··· 3246 path = fetchurl { 3247 name = "pretty_time___pretty_time_0.2.0.tgz"; 3248 url = "https://registry.yarnpkg.com/pretty-time/-/pretty-time-0.2.0.tgz"; 3249 + sha1 = "ejvexAScYgzXxCt/NCt01W5z104="; 3250 }; 3251 } 3252 { ··· 3254 path = fetchurl { 3255 name = "prettysize___prettysize_0.0.3.tgz"; 3256 url = "https://registry.yarnpkg.com/prettysize/-/prettysize-0.0.3.tgz"; 3257 + sha1 = "FK//amReWRpN3xxykZwjtBRhgaE="; 3258 }; 3259 } 3260 { ··· 3262 path = fetchurl { 3263 name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; 3264 url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 3265 + sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 3266 }; 3267 } 3268 { ··· 3270 path = fetchurl { 3271 name = "prop_types___prop_types_15.7.2.tgz"; 3272 url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz"; 3273 + sha512 = "8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ=="; 3274 }; 3275 } 3276 { ··· 3278 path = fetchurl { 3279 name = "prosemirror_changeset___prosemirror_changeset_2.1.2.tgz"; 3280 url = "https://registry.yarnpkg.com/prosemirror-changeset/-/prosemirror-changeset-2.1.2.tgz"; 3281 + sha512 = "/eeAM2XeOFmtiPsFVfVkM3Iq4xfNlFuDB6MlC8Hqch/ibq3YlH3YxDi8fqg78fT8fkrfvN6zRu9EE0HkSmH8PA=="; 3282 }; 3283 } 3284 { 3285 + name = "prosemirror_commands___prosemirror_commands_1.1.10.tgz"; 3286 path = fetchurl { 3287 + name = "prosemirror_commands___prosemirror_commands_1.1.10.tgz"; 3288 + url = "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.1.10.tgz"; 3289 + sha512 = "IWyBBXNAd44RM6NnBPljwq+/CM2oYCQJkF+YhKEAZNwzW0uFdGf4qComhjbKZzqFdu6Iub2ZhNsXgwPibA0lCQ=="; 3290 }; 3291 } 3292 { ··· 3294 path = fetchurl { 3295 name = "prosemirror_dev_tools___prosemirror_dev_tools_2.1.1.tgz"; 3296 url = "https://registry.yarnpkg.com/prosemirror-dev-tools/-/prosemirror-dev-tools-2.1.1.tgz"; 3297 + sha512 = "d9MG4PF82meg5Ru64ox6WCKPkQNsiZEaG5xR5a+l88RJ0VRButMZq5JzPh28vUlTBq+TXnpdTJRlPQIgTOtpqg=="; 3298 }; 3299 } 3300 { 3301 + name = "prosemirror_dropcursor___prosemirror_dropcursor_1.3.5.tgz"; 3302 path = fetchurl { 3303 + name = "prosemirror_dropcursor___prosemirror_dropcursor_1.3.5.tgz"; 3304 + url = "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.3.5.tgz"; 3305 + sha512 = "tNUwcF2lPAkwKBZPZRtbxpwljnODRNZ3eiYloN1DSUqDjMT1nBZm0nejaEMS1TvNQ+3amibUSAiV4hX+jpASFA=="; 3306 }; 3307 } 3308 { ··· 3310 path = fetchurl { 3311 name = "prosemirror_gapcursor___prosemirror_gapcursor_1.1.5.tgz"; 3312 url = "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.1.5.tgz"; 3313 + sha512 = "SjbUZq5pgsBDuV3hu8GqgIpZR5eZvGLM+gPQTqjVVYSMUCfKW3EGXTEYaLHEl1bGduwqNC95O3bZflgtAb4L6w=="; 3314 }; 3315 } 3316 { 3317 + name = "prosemirror_history___prosemirror_history_1.2.0.tgz"; 3318 path = fetchurl { 3319 + name = "prosemirror_history___prosemirror_history_1.2.0.tgz"; 3320 + url = "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.2.0.tgz"; 3321 + sha512 = "B9v9xtf4fYbKxQwIr+3wtTDNLDZcmMMmGiI3TAPShnUzvo+Rmv1GiUrsQChY1meetHl7rhML2cppF3FTs7f7UQ=="; 3322 }; 3323 } 3324 { 3325 + name = "prosemirror_inputrules___prosemirror_inputrules_1.1.3.tgz"; 3326 path = fetchurl { 3327 + name = "prosemirror_inputrules___prosemirror_inputrules_1.1.3.tgz"; 3328 + url = "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.1.3.tgz"; 3329 + sha512 = "ZaHCLyBtvbyIHv0f5p6boQTIJjlD6o2NPZiEaZWT2DA+j591zS29QQEMT4lBqwcLW3qRSf7ZvoKNbf05YrsStw=="; 3330 }; 3331 } 3332 { ··· 3334 path = fetchurl { 3335 name = "prosemirror_keymap___prosemirror_keymap_1.1.3.tgz"; 3336 url = "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.1.3.tgz"; 3337 + sha512 = "PRA4NzkUMzV/NFf5pyQ6tmlIHiW/qjQ1kGWUlV2rF/dvlOxtpGpTEjIMhWgLuMf+HiDEFnUEP7uhYXu+t+491g=="; 3338 }; 3339 } 3340 { ··· 3342 path = fetchurl { 3343 name = "prosemirror_keymap___prosemirror_keymap_1.1.4.tgz"; 3344 url = "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.1.4.tgz"; 3345 + sha512 = "Al8cVUOnDFL4gcI5IDlG6xbZ0aOD/i3B17VT+1JbHWDguCgt/lBHVTHUBcKvvbSg6+q/W4Nj1Fu6bwZSca3xjg=="; 3346 }; 3347 } 3348 { ··· 3350 path = fetchurl { 3351 name = "prosemirror_model___prosemirror_model_1.9.1.tgz"; 3352 url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.9.1.tgz"; 3353 + sha512 = "Qblh8pm1c7Ll64sYLauwwzjimo/tFg1zW3Q3IWhKRhvfOEgRKqa6dC5pRrAa+XHOIjBFEYrqbi52J5bqA2dV8Q=="; 3354 }; 3355 } 3356 { 3357 + name = "prosemirror_model___prosemirror_model_1.14.3.tgz"; 3358 path = fetchurl { 3359 + name = "prosemirror_model___prosemirror_model_1.14.3.tgz"; 3360 + url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.14.3.tgz"; 3361 + sha512 = "yzZlBaSxfUPIIP6U5Edh5zKxJPZ5f7bwZRhiCuH3UYkWhj+P3d8swHsbuAMOu/iDatDc5J/Qs5Mb3++mZf+CvQ=="; 3362 }; 3363 } 3364 { 3365 + name = "prosemirror_schema_list___prosemirror_schema_list_1.1.5.tgz"; 3366 path = fetchurl { 3367 + name = "prosemirror_schema_list___prosemirror_schema_list_1.1.5.tgz"; 3368 + url = "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.1.5.tgz"; 3369 + sha512 = "9gadhga/wySVfb/iZ2vOpndbG0XroeLw0HkkZN5demNbOea6U5oQtJmvyYWC7ZVf3WkhmVdVsOXrllM9JcC20A=="; 3370 }; 3371 } 3372 { ··· 3374 path = fetchurl { 3375 name = "prosemirror_state___prosemirror_state_1.3.2.tgz"; 3376 url = "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.2.tgz"; 3377 + sha512 = "t/JqE3aR0SV9QrzFVkAXsQwsgrQBNs/BDbcFH20RssW0xauqNNdjTXxy/J/kM7F+0zYi6+BRmz7cMMQQFU3mwQ=="; 3378 }; 3379 } 3380 { 3381 + name = "prosemirror_state___prosemirror_state_1.3.4.tgz"; 3382 path = fetchurl { 3383 + name = "prosemirror_state___prosemirror_state_1.3.4.tgz"; 3384 + url = "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.4.tgz"; 3385 + sha512 = "Xkkrpd1y/TQ6HKzN3agsQIGRcLckUMA9u3j207L04mt8ToRgpGeyhbVv0HI7omDORIBHjR29b7AwlATFFf2GLA=="; 3386 }; 3387 } 3388 { ··· 3390 path = fetchurl { 3391 name = "prosemirror_tables___prosemirror_tables_1.0.0.tgz"; 3392 url = "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.0.0.tgz"; 3393 + sha512 = "zFw5Us4G5Vdq0yIj8GiqZOGA6ud5UKpMKElux9O0HrfmhkuGa1jf1PCpz2R5pmIQJv+tIM24H1mox/ODBAX37Q=="; 3394 }; 3395 } 3396 { ··· 3398 path = fetchurl { 3399 name = "prosemirror_tables___prosemirror_tables_1.1.1.tgz"; 3400 url = "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.1.1.tgz"; 3401 + sha512 = "LmCz4jrlqQZRsYRDzCRYf/pQ5CUcSOyqZlAj5kv67ZWBH1SVLP2U9WJEvQfimWgeRlIz0y0PQVqO1arRm1+woA=="; 3402 }; 3403 } 3404 { ··· 3406 path = fetchurl { 3407 name = "prosemirror_transform___prosemirror_transform_1.2.3.tgz"; 3408 url = "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.2.3.tgz"; 3409 + sha512 = "PUfayeskQfuUBXktvL6207ZWRwHBFNPNPiek4fR+LgCPnBofuEb2+L0FfbNtrAwffHVs6M3DaFvJB1W2VQdV0A=="; 3410 }; 3411 } 3412 { 3413 + name = "prosemirror_transform___prosemirror_transform_1.3.2.tgz"; 3414 path = fetchurl { 3415 + name = "prosemirror_transform___prosemirror_transform_1.3.2.tgz"; 3416 + url = "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.3.2.tgz"; 3417 + sha512 = "/G6d/u9Mf6Bv3H1XR8VxhpjmUO75LYmnvj+s3ZfZpakU1hnQbsvCEybml1B3f2IWUAAQRFkbO1PnsbFhLZsYsw=="; 3418 }; 3419 } 3420 { ··· 3422 path = fetchurl { 3423 name = "prosemirror_utils___prosemirror_utils_0.9.6.tgz"; 3424 url = "https://registry.yarnpkg.com/prosemirror-utils/-/prosemirror-utils-0.9.6.tgz"; 3425 + sha512 = "UC+j9hQQ1POYfMc5p7UFxBTptRiGPR7Kkmbl3jVvU8VgQbkI89tR/GK+3QYC8n+VvBZrtAoCrJItNhWSxX3slA=="; 3426 }; 3427 } 3428 { ··· 3430 path = fetchurl { 3431 name = "prosemirror_view___prosemirror_view_1.14.2.tgz"; 3432 url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.14.2.tgz"; 3433 + sha512 = "9yPVH6OLyaEraHjWHbSk2DB0R/1TsEE6AA1LI+vmCypXXA+zTzNrktUFzBhSJHehXDoEJcQfnl1Wdp5GPSh2+g=="; 3434 }; 3435 } 3436 { 3437 + name = "prosemirror_view___prosemirror_view_1.20.1.tgz"; 3438 path = fetchurl { 3439 + name = "prosemirror_view___prosemirror_view_1.20.1.tgz"; 3440 + url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.20.1.tgz"; 3441 + sha512 = "djWORhy3a706mUH4A2dgEEV0IPZqQd1tFyz/ZVHJNoqhSgq82FwG6dq7uqHeUB2KdVSNfI2yc3rwfqlC/ll2pA=="; 3442 }; 3443 } 3444 { ··· 3446 path = fetchurl { 3447 name = "proxy_addr___proxy_addr_2.0.6.tgz"; 3448 url = "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz"; 3449 + sha512 = "dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw=="; 3450 }; 3451 } 3452 { ··· 3454 path = fetchurl { 3455 name = "psl___psl_1.7.0.tgz"; 3456 url = "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz"; 3457 + sha512 = "5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ=="; 3458 }; 3459 } 3460 { ··· 3462 path = fetchurl { 3463 name = "pullstream___pullstream_0.4.1.tgz"; 3464 url = "https://registry.yarnpkg.com/pullstream/-/pullstream-0.4.1.tgz"; 3465 + sha1 = "1vs79a7Wl+gxFQ6xACwlo/iuExQ="; 3466 }; 3467 } 3468 { ··· 3470 path = fetchurl { 3471 name = "punycode___punycode_2.1.1.tgz"; 3472 url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; 3473 + sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 3474 }; 3475 } 3476 { ··· 3478 path = fetchurl { 3479 name = "pure_color___pure_color_1.3.0.tgz"; 3480 url = "https://registry.yarnpkg.com/pure-color/-/pure-color-1.3.0.tgz"; 3481 + sha1 = "H+Bk+wrIUfDeYTIKi/eWg2Qi8z4="; 3482 }; 3483 } 3484 { ··· 3486 path = fetchurl { 3487 name = "qs___qs_6.7.0.tgz"; 3488 url = "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz"; 3489 + sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 3490 }; 3491 } 3492 { ··· 3494 path = fetchurl { 3495 name = "qs___qs_6.5.2.tgz"; 3496 url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz"; 3497 + sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; 3498 }; 3499 } 3500 { ··· 3502 path = fetchurl { 3503 name = "randomatic___randomatic_3.1.1.tgz"; 3504 url = "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz"; 3505 + sha512 = "TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw=="; 3506 }; 3507 } 3508 { ··· 3510 path = fetchurl { 3511 name = "range_parser___range_parser_1.2.1.tgz"; 3512 url = "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz"; 3513 + sha512 = "Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="; 3514 }; 3515 } 3516 { ··· 3518 path = fetchurl { 3519 name = "raw_body___raw_body_2.4.0.tgz"; 3520 url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz"; 3521 + sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="; 3522 }; 3523 } 3524 { ··· 3526 path = fetchurl { 3527 name = "react_base16_styling___react_base16_styling_0.5.3.tgz"; 3528 url = "https://registry.yarnpkg.com/react-base16-styling/-/react-base16-styling-0.5.3.tgz"; 3529 + sha1 = "OFjyTpxN2MvT9wLz901YHKKRcmk="; 3530 }; 3531 } 3532 { ··· 3534 path = fetchurl { 3535 name = "react_dock___react_dock_0.2.4.tgz"; 3536 url = "https://registry.yarnpkg.com/react-dock/-/react-dock-0.2.4.tgz"; 3537 + sha1 = "5yfcdVCztzEWY13LnA4E0Lev4Xw="; 3538 }; 3539 } 3540 { 3541 + name = "react_dom___react_dom_17.0.2.tgz"; 3542 path = fetchurl { 3543 + name = "react_dom___react_dom_17.0.2.tgz"; 3544 + url = "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz"; 3545 + sha512 = "s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA=="; 3546 }; 3547 } 3548 { ··· 3550 path = fetchurl { 3551 name = "react_emotion___react_emotion_9.2.12.tgz"; 3552 url = "https://registry.yarnpkg.com/react-emotion/-/react-emotion-9.2.12.tgz"; 3553 + sha512 = "qt7XbxnEKX5sZ73rERJ92JMbEOoyOwG3BuCRFRkXrsJhEe+rFBRTljRw7yOLHZUCQC4GBObZhjXIduQ8S0ZpYw=="; 3554 }; 3555 } 3556 { ··· 3558 path = fetchurl { 3559 name = "react_is___react_is_16.13.0.tgz"; 3560 url = "https://registry.yarnpkg.com/react-is/-/react-is-16.13.0.tgz"; 3561 + sha512 = "GFMtL0vHkiBv9HluwNZTggSn/sCyEt9n02aM0dSAjGGyqyNlAyftYm4phPxdvCigG15JreC5biwxCgTAJZ7yAA=="; 3562 }; 3563 } 3564 { ··· 3566 path = fetchurl { 3567 name = "react_json_tree___react_json_tree_0.11.2.tgz"; 3568 url = "https://registry.yarnpkg.com/react-json-tree/-/react-json-tree-0.11.2.tgz"; 3569 + sha512 = "aYhUPj1y5jR3ZQ+G3N7aL8FbTyO03iLwnVvvEikLcNFqNTyabdljo9xDftZndUBFyyyL0aK3qGO9+8EilILHUw=="; 3570 }; 3571 } 3572 { 3573 + name = "react_window___react_window_1.8.6.tgz"; 3574 path = fetchurl { 3575 + name = "react_window___react_window_1.8.6.tgz"; 3576 + url = "https://registry.yarnpkg.com/react-window/-/react-window-1.8.6.tgz"; 3577 + sha512 = "8VwEEYyjz6DCnGBsd+MgkD0KJ2/OXFULyDtorIiTz+QzwoP94tBoA7CnbtyXMm+cCeAUER5KJcPtWl9cpKbOBg=="; 3578 }; 3579 } 3580 { 3581 + name = "react___react_17.0.2.tgz"; 3582 path = fetchurl { 3583 + name = "react___react_17.0.2.tgz"; 3584 + url = "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz"; 3585 + sha512 = "gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA=="; 3586 }; 3587 } 3588 { ··· 3590 path = fetchurl { 3591 name = "readable_stream___readable_stream_2.3.7.tgz"; 3592 url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz"; 3593 + sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 3594 }; 3595 } 3596 { ··· 3598 path = fetchurl { 3599 name = "readable_stream___readable_stream_3.6.0.tgz"; 3600 url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz"; 3601 + sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 3602 }; 3603 } 3604 { ··· 3606 path = fetchurl { 3607 name = "readable_stream___readable_stream_1.0.34.tgz"; 3608 url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz"; 3609 + sha1 = "Elgg40vIQtLyqq+v5MKRbuMsFXw="; 3610 }; 3611 } 3612 { ··· 3614 path = fetchurl { 3615 name = "readdirp___readdirp_2.2.1.tgz"; 3616 url = "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz"; 3617 + sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; 3618 }; 3619 } 3620 { ··· 3622 path = fetchurl { 3623 name = "realm_utils___realm_utils_1.0.9.tgz"; 3624 url = "https://registry.yarnpkg.com/realm-utils/-/realm-utils-1.0.9.tgz"; 3625 + sha1 = "XHal/znkgWrywTOhYfQiHWYo7/Q="; 3626 }; 3627 } 3628 { ··· 3630 path = fetchurl { 3631 name = "regenerate_unicode_properties___regenerate_unicode_properties_8.1.0.tgz"; 3632 url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz"; 3633 + sha512 = "LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA=="; 3634 }; 3635 } 3636 { ··· 3638 path = fetchurl { 3639 name = "regenerate___regenerate_1.4.0.tgz"; 3640 url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz"; 3641 + sha512 = "1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg=="; 3642 }; 3643 } 3644 { ··· 3646 path = fetchurl { 3647 name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; 3648 url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; 3649 + sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="; 3650 }; 3651 } 3652 { ··· 3654 path = fetchurl { 3655 name = "regenerator_runtime___regenerator_runtime_0.13.3.tgz"; 3656 url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz"; 3657 + sha512 = "naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw=="; 3658 }; 3659 } 3660 { ··· 3662 path = fetchurl { 3663 name = "regenerator_runtime___regenerator_runtime_0.13.5.tgz"; 3664 url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz"; 3665 + sha512 = "ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="; 3666 }; 3667 } 3668 { ··· 3670 path = fetchurl { 3671 name = "regex_cache___regex_cache_0.4.4.tgz"; 3672 url = "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz"; 3673 + sha512 = "nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ=="; 3674 }; 3675 } 3676 { ··· 3678 path = fetchurl { 3679 name = "regex_not___regex_not_1.0.2.tgz"; 3680 url = "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz"; 3681 + sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; 3682 }; 3683 } 3684 { ··· 3686 path = fetchurl { 3687 name = "regexpu_core___regexpu_core_4.6.0.tgz"; 3688 url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz"; 3689 + sha512 = "YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg=="; 3690 }; 3691 } 3692 { ··· 3694 path = fetchurl { 3695 name = "regjsgen___regjsgen_0.5.1.tgz"; 3696 url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz"; 3697 + sha512 = "5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg=="; 3698 }; 3699 } 3700 { ··· 3702 path = fetchurl { 3703 name = "regjsparser___regjsparser_0.6.3.tgz"; 3704 url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.3.tgz"; 3705 + sha512 = "8uZvYbnfAtEm9Ab8NTb3hdLwL4g/LQzEYP7Xs27T96abJCCE2d6r3cPZPQEsLKy0vRSGVNG+/zVGtLr86HQduA=="; 3706 }; 3707 } 3708 { ··· 3710 path = fetchurl { 3711 name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz"; 3712 url = "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; 3713 + sha1 = "wkvOKig62tW8P1jg1IJJuSN52O8="; 3714 }; 3715 } 3716 { ··· 3718 path = fetchurl { 3719 name = "repeat_element___repeat_element_1.1.3.tgz"; 3720 url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz"; 3721 + sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g=="; 3722 }; 3723 } 3724 { ··· 3726 path = fetchurl { 3727 name = "repeat_string___repeat_string_1.6.1.tgz"; 3728 url = "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz"; 3729 + sha1 = "jcrkcOHIirwtYA//Sndihtp15jc="; 3730 }; 3731 } 3732 { ··· 3734 path = fetchurl { 3735 name = "request___request_2.88.2.tgz"; 3736 url = "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz"; 3737 + sha512 = "MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw=="; 3738 + }; 3739 + } 3740 + { 3741 + name = "require_directory___require_directory_2.1.1.tgz"; 3742 + path = fetchurl { 3743 + name = "require_directory___require_directory_2.1.1.tgz"; 3744 + url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz"; 3745 + sha1 = "jGStX9MNqxyXbiNE/+f3kqam30I="; 3746 }; 3747 } 3748 { ··· 3750 path = fetchurl { 3751 name = "resolve_from___resolve_from_4.0.0.tgz"; 3752 url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; 3753 + sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; 3754 }; 3755 } 3756 { ··· 3758 path = fetchurl { 3759 name = "resolve_url___resolve_url_0.2.1.tgz"; 3760 url = "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz"; 3761 + sha1 = "LGN/53yJOv0qZj/iGqkIAGjiBSo="; 3762 }; 3763 } 3764 { ··· 3766 path = fetchurl { 3767 name = "resolve___resolve_1.15.1.tgz"; 3768 url = "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz"; 3769 + sha512 = "84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w=="; 3770 }; 3771 } 3772 { ··· 3774 path = fetchurl { 3775 name = "restore_cursor___restore_cursor_2.0.0.tgz"; 3776 url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz"; 3777 + sha1 = "n37ih/gv0ybU/RYpI9YhKe7g368="; 3778 }; 3779 } 3780 { ··· 3782 path = fetchurl { 3783 name = "ret___ret_0.1.15.tgz"; 3784 url = "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz"; 3785 + sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="; 3786 }; 3787 } 3788 { ··· 3790 path = fetchurl { 3791 name = "rimraf___rimraf_2.7.1.tgz"; 3792 url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz"; 3793 + sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="; 3794 + }; 3795 + } 3796 + { 3797 + name = "rimraf___rimraf_3.0.2.tgz"; 3798 + path = fetchurl { 3799 + name = "rimraf___rimraf_3.0.2.tgz"; 3800 + url = "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz"; 3801 + sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 3802 }; 3803 } 3804 { ··· 3806 path = fetchurl { 3807 name = "rope_sequence___rope_sequence_1.3.2.tgz"; 3808 url = "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.2.tgz"; 3809 + sha512 = "ku6MFrwEVSVmXLvy3dYph3LAMNS0890K7fabn+0YIRQ2T96T9F4gkFf0vf0WW0JUraNWwGRtInEpH7yO4tbQZg=="; 3810 }; 3811 } 3812 { ··· 3814 path = fetchurl { 3815 name = "run_async___run_async_2.4.0.tgz"; 3816 url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz"; 3817 + sha512 = "xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg=="; 3818 }; 3819 } 3820 { ··· 3822 path = fetchurl { 3823 name = "rx_lite_aggregates___rx_lite_aggregates_4.0.8.tgz"; 3824 url = "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz"; 3825 + sha1 = "dTuHqJoRyVRnxKwWJsTvxOBcZ74="; 3826 }; 3827 } 3828 { ··· 3830 path = fetchurl { 3831 name = "rx_lite___rx_lite_4.0.8.tgz"; 3832 url = "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz"; 3833 + sha1 = "Cx4Rr4vESDbwSmQH6S2kJGe3lEQ="; 3834 }; 3835 } 3836 { ··· 3838 path = fetchurl { 3839 name = "safe_buffer___safe_buffer_5.1.2.tgz"; 3840 url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; 3841 + sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 3842 }; 3843 } 3844 { ··· 3846 path = fetchurl { 3847 name = "safe_buffer___safe_buffer_5.2.0.tgz"; 3848 url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz"; 3849 + sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; 3850 }; 3851 } 3852 { ··· 3854 path = fetchurl { 3855 name = "safe_buffer___safe_buffer_5.2.1.tgz"; 3856 url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz"; 3857 + sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 3858 }; 3859 } 3860 { ··· 3862 path = fetchurl { 3863 name = "safe_regex___safe_regex_1.1.0.tgz"; 3864 url = "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz"; 3865 + sha1 = "QKNmnzsHfR6UPURinhV91IAjvy4="; 3866 }; 3867 } 3868 { ··· 3870 path = fetchurl { 3871 name = "safer_buffer___safer_buffer_2.1.2.tgz"; 3872 url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; 3873 + sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 3874 }; 3875 } 3876 { 3877 + name = "scheduler___scheduler_0.20.2.tgz"; 3878 path = fetchurl { 3879 + name = "scheduler___scheduler_0.20.2.tgz"; 3880 + url = "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz"; 3881 + sha512 = "2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ=="; 3882 }; 3883 } 3884 { ··· 3886 path = fetchurl { 3887 name = "select___select_1.1.2.tgz"; 3888 url = "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz"; 3889 + sha1 = "DnNQrN7ICxEIUoeG7B1EGNEbOW0="; 3890 }; 3891 } 3892 { ··· 3894 path = fetchurl { 3895 name = "semver___semver_5.7.1.tgz"; 3896 url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz"; 3897 + sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 3898 + }; 3899 + } 3900 + { 3901 + name = "semver___semver_6.3.0.tgz"; 3902 + path = fetchurl { 3903 + name = "semver___semver_6.3.0.tgz"; 3904 + url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz"; 3905 + sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 3906 + }; 3907 + } 3908 + { 3909 + name = "semver___semver_7.3.5.tgz"; 3910 + path = fetchurl { 3911 + name = "semver___semver_7.3.5.tgz"; 3912 + url = "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz"; 3913 + sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 3914 }; 3915 } 3916 { ··· 3918 path = fetchurl { 3919 name = "send___send_0.17.1.tgz"; 3920 url = "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz"; 3921 + sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; 3922 }; 3923 } 3924 { 3925 + name = "sentence_splitter___sentence_splitter_3.2.2.tgz"; 3926 path = fetchurl { 3927 + name = "sentence_splitter___sentence_splitter_3.2.2.tgz"; 3928 + url = "https://registry.yarnpkg.com/sentence-splitter/-/sentence-splitter-3.2.2.tgz"; 3929 + sha512 = "hMvaodgK9Fay928uiQoTMEWjXpCERdKD2uKo7BbSyP+uWTo+wHiRjN+ZShyI99rW0VuoV4Cuw8FUmaRcnpN7Ug=="; 3930 }; 3931 } 3932 { ··· 3934 path = fetchurl { 3935 name = "serve_static___serve_static_1.14.1.tgz"; 3936 url = "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz"; 3937 + sha512 = "JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg=="; 3938 + }; 3939 + } 3940 + { 3941 + name = "set_blocking___set_blocking_2.0.0.tgz"; 3942 + path = fetchurl { 3943 + name = "set_blocking___set_blocking_2.0.0.tgz"; 3944 + url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz"; 3945 + sha1 = "BF+XgtARrppoA93TgrJDkrPYkPc="; 3946 }; 3947 } 3948 { ··· 3950 path = fetchurl { 3951 name = "set_value___set_value_2.0.1.tgz"; 3952 url = "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz"; 3953 + sha512 = "JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw=="; 3954 }; 3955 } 3956 { ··· 3958 path = fetchurl { 3959 name = "setimmediate___setimmediate_1.0.5.tgz"; 3960 url = "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz"; 3961 + sha1 = "KQy7Iy4waULX1+qbg3Mqt4VvgoU="; 3962 }; 3963 } 3964 { ··· 3966 path = fetchurl { 3967 name = "setprototypeof___setprototypeof_1.1.1.tgz"; 3968 url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz"; 3969 + sha512 = "JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="; 3970 }; 3971 } 3972 { ··· 3974 path = fetchurl { 3975 name = "shorthash___shorthash_0.0.2.tgz"; 3976 url = "https://registry.yarnpkg.com/shorthash/-/shorthash-0.0.2.tgz"; 3977 + sha1 = "WbJo7sveWQOLMNogK8+93rLEpOs="; 3978 + }; 3979 + } 3980 + { 3981 + name = "signal_exit___signal_exit_3.0.5.tgz"; 3982 + path = fetchurl { 3983 + name = "signal_exit___signal_exit_3.0.5.tgz"; 3984 + url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz"; 3985 + sha512 = "KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ=="; 3986 }; 3987 } 3988 { ··· 3990 path = fetchurl { 3991 name = "signal_exit___signal_exit_3.0.2.tgz"; 3992 url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz"; 3993 + sha1 = "tf3AjxKH6hF4Yo5BXiUTK3NkbG0="; 3994 }; 3995 } 3996 { ··· 3998 path = fetchurl { 3999 name = "slice_stream___slice_stream_1.0.0.tgz"; 4000 url = "https://registry.yarnpkg.com/slice-stream/-/slice-stream-1.0.0.tgz"; 4001 + sha1 = "WzO9ZvATsaf4ZGCwPUY97DmtPqA="; 4002 }; 4003 } 4004 { ··· 4006 path = fetchurl { 4007 name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; 4008 url = "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; 4009 + sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw=="; 4010 }; 4011 } 4012 { ··· 4014 path = fetchurl { 4015 name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; 4016 url = "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; 4017 + sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ=="; 4018 }; 4019 } 4020 { ··· 4022 path = fetchurl { 4023 name = "snapdragon___snapdragon_0.8.2.tgz"; 4024 url = "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz"; 4025 + sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg=="; 4026 }; 4027 } 4028 { ··· 4030 path = fetchurl { 4031 name = "source_map_resolve___source_map_resolve_0.5.3.tgz"; 4032 url = "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz"; 4033 + sha512 = "Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw=="; 4034 }; 4035 } 4036 { ··· 4038 path = fetchurl { 4039 name = "source_map_support___source_map_support_0.5.19.tgz"; 4040 url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz"; 4041 + sha512 = "Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw=="; 4042 }; 4043 } 4044 { ··· 4046 path = fetchurl { 4047 name = "source_map_support___source_map_support_0.5.16.tgz"; 4048 url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz"; 4049 + sha512 = "efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ=="; 4050 }; 4051 } 4052 { ··· 4054 path = fetchurl { 4055 name = "source_map_url___source_map_url_0.4.0.tgz"; 4056 url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz"; 4057 + sha1 = "PpNdfd1zYxuXZZlW1VEo6HtQhKM="; 4058 }; 4059 } 4060 { ··· 4062 path = fetchurl { 4063 name = "source_map___source_map_0.5.7.tgz"; 4064 url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; 4065 + sha1 = "igOdLRAh0i0eoUyA2OpGi6LvP8w="; 4066 }; 4067 } 4068 { ··· 4070 path = fetchurl { 4071 name = "source_map___source_map_0.6.1.tgz"; 4072 url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz"; 4073 + sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; 4074 }; 4075 } 4076 { ··· 4078 path = fetchurl { 4079 name = "source_map___source_map_0.7.3.tgz"; 4080 url = "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz"; 4081 + sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; 4082 }; 4083 } 4084 { ··· 4086 path = fetchurl { 4087 name = "sourcemap_blender___sourcemap_blender_1.0.5.tgz"; 4088 url = "https://registry.yarnpkg.com/sourcemap-blender/-/sourcemap-blender-1.0.5.tgz"; 4089 + sha512 = "GPhjCmDtJ8YY6zt1L6kP6WtBg6WrdWt5hw2Wmgt9rwC3yiwLo9vEuabh/YYSZ5KmFV20hVkGdkTwpXtT2E65TA=="; 4090 }; 4091 } 4092 { ··· 4094 path = fetchurl { 4095 name = "split_string___split_string_3.1.0.tgz"; 4096 url = "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz"; 4097 + sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw=="; 4098 }; 4099 } 4100 { ··· 4102 path = fetchurl { 4103 name = "sprintf_js___sprintf_js_1.0.3.tgz"; 4104 url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz"; 4105 + sha1 = "BOaSb2YolTVPPdAVIDYzuFcpfiw="; 4106 }; 4107 } 4108 { ··· 4110 path = fetchurl { 4111 name = "sshpk___sshpk_1.16.1.tgz"; 4112 url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz"; 4113 + sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; 4114 }; 4115 } 4116 { ··· 4118 path = fetchurl { 4119 name = "static_extend___static_extend_0.1.2.tgz"; 4120 url = "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz"; 4121 + sha1 = "YICcOcv/VTNyJv1eC1IPNB8ftcY="; 4122 }; 4123 } 4124 { ··· 4126 path = fetchurl { 4127 name = "statuses___statuses_1.5.0.tgz"; 4128 url = "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz"; 4129 + sha1 = "Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="; 4130 }; 4131 } 4132 { ··· 4134 path = fetchurl { 4135 name = "stream_browserify___stream_browserify_2.0.2.tgz"; 4136 url = "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz"; 4137 + sha512 = "nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg=="; 4138 }; 4139 } 4140 { 4141 + name = "string_width___string_width_1.0.2.tgz"; 4142 path = fetchurl { 4143 + name = "string_width___string_width_1.0.2.tgz"; 4144 + url = "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz"; 4145 + sha1 = "EYvfW4zcUaKn5w0hHgfisLmxB9M="; 4146 }; 4147 } 4148 { 4149 + name = "string_width___string_width_2.1.1.tgz"; 4150 path = fetchurl { 4151 + name = "string_width___string_width_2.1.1.tgz"; 4152 + url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz"; 4153 + sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; 4154 }; 4155 } 4156 { 4157 + name = "string_width___string_width_4.2.3.tgz"; 4158 path = fetchurl { 4159 + name = "string_width___string_width_4.2.3.tgz"; 4160 + url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz"; 4161 + sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 4162 }; 4163 } 4164 { ··· 4166 path = fetchurl { 4167 name = "string_decoder___string_decoder_1.3.0.tgz"; 4168 url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz"; 4169 + sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; 4170 }; 4171 } 4172 { ··· 4174 path = fetchurl { 4175 name = "string_decoder___string_decoder_0.10.31.tgz"; 4176 url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz"; 4177 + sha1 = "YuIDvEF2bGwoyfyEMB2rHFMQ+pQ="; 4178 }; 4179 } 4180 { ··· 4182 path = fetchurl { 4183 name = "string_decoder___string_decoder_1.1.1.tgz"; 4184 url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz"; 4185 + sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 4186 + }; 4187 + } 4188 + { 4189 + name = "strip_ansi___strip_ansi_3.0.1.tgz"; 4190 + path = fetchurl { 4191 + name = "strip_ansi___strip_ansi_3.0.1.tgz"; 4192 + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz"; 4193 + sha1 = "ajhfuIU9lS1f8F0Oiq+UJ43GPc8="; 4194 }; 4195 } 4196 { ··· 4198 path = fetchurl { 4199 name = "strip_ansi___strip_ansi_4.0.0.tgz"; 4200 url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz"; 4201 + sha1 = "qEeQIusaw2iocTibY1JixQXuNo8="; 4202 + }; 4203 + } 4204 + { 4205 + name = "strip_ansi___strip_ansi_6.0.1.tgz"; 4206 + path = fetchurl { 4207 + name = "strip_ansi___strip_ansi_6.0.1.tgz"; 4208 + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz"; 4209 + sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 4210 }; 4211 } 4212 { ··· 4214 path = fetchurl { 4215 name = "structured_source___structured_source_3.0.2.tgz"; 4216 url = "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz"; 4217 + sha1 = "3YAkJeD1PcSm56yjdSkBoczaevU="; 4218 }; 4219 } 4220 { ··· 4222 path = fetchurl { 4223 name = "stylis_rule_sheet___stylis_rule_sheet_0.0.10.tgz"; 4224 url = "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz"; 4225 + sha512 = "nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw=="; 4226 }; 4227 } 4228 { ··· 4230 path = fetchurl { 4231 name = "stylis___stylis_3.5.4.tgz"; 4232 url = "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz"; 4233 + sha512 = "8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q=="; 4234 }; 4235 } 4236 { ··· 4238 path = fetchurl { 4239 name = "supports_color___supports_color_5.5.0.tgz"; 4240 url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; 4241 + sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 4242 + }; 4243 + } 4244 + { 4245 + name = "tar___tar_6.1.11.tgz"; 4246 + path = fetchurl { 4247 + name = "tar___tar_6.1.11.tgz"; 4248 + url = "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz"; 4249 + sha512 = "an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA=="; 4250 }; 4251 } 4252 { ··· 4254 path = fetchurl { 4255 name = "terser___terser_4.6.4.tgz"; 4256 url = "https://registry.yarnpkg.com/terser/-/terser-4.6.4.tgz"; 4257 + sha512 = "5fqgBPLgVHZ/fVvqRhhUp9YUiGXhFJ9ZkrZWD9vQtFBR4QIGTnbsb+/kKqSqfgp3WnBwGWAFnedGTtmX1YTn0w=="; 4258 }; 4259 } 4260 { ··· 4262 path = fetchurl { 4263 name = "thenby___thenby_1.3.3.tgz"; 4264 url = "https://registry.yarnpkg.com/thenby/-/thenby-1.3.3.tgz"; 4265 + sha512 = "vCzp0TxrQ+2bfRJoWNhMwk6RNfboOUN2S+nbEfhJfj7RwJHD6PlgtXH/hXiSmv6UJs35IQDtVqiI45J+cAgLqg=="; 4266 }; 4267 } 4268 { ··· 4270 path = fetchurl { 4271 name = "through___through_2.3.8.tgz"; 4272 url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; 4273 + sha1 = "DdTJ/6q8NXlgsbckEV1+Doai4fU="; 4274 }; 4275 } 4276 { ··· 4278 path = fetchurl { 4279 name = "tiny_emitter___tiny_emitter_2.1.0.tgz"; 4280 url = "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz"; 4281 + sha512 = "NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="; 4282 }; 4283 } 4284 { ··· 4286 path = fetchurl { 4287 name = "tlite___tlite_0.1.9.tgz"; 4288 url = "https://registry.yarnpkg.com/tlite/-/tlite-0.1.9.tgz"; 4289 + sha512 = "5QOBAvDxZZwW1i+2YXMgF6/PuV/KhA0LyE9PyVi8Ywr3bfIPziZcQD+RpdJaQurCU8zIGtBo/XuPCEHdvyeFuQ=="; 4290 }; 4291 } 4292 { ··· 4294 path = fetchurl { 4295 name = "tmp___tmp_0.0.33.tgz"; 4296 url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; 4297 + sha512 = "jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="; 4298 }; 4299 } 4300 { ··· 4302 path = fetchurl { 4303 name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; 4304 url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 4305 + sha1 = "3F5pjL0HkmW8c+A3doGk5Og/YW4="; 4306 }; 4307 } 4308 { ··· 4310 path = fetchurl { 4311 name = "to_object_path___to_object_path_0.3.0.tgz"; 4312 url = "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz"; 4313 + sha1 = "KXWIt7Dn4KwI4E5nL4XB9JmeF68="; 4314 }; 4315 } 4316 { ··· 4318 path = fetchurl { 4319 name = "to_regex_range___to_regex_range_2.1.1.tgz"; 4320 url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz"; 4321 + sha1 = "fIDBe53+vlmeJzZ+DU3VWQFB2zg="; 4322 }; 4323 } 4324 { ··· 4326 path = fetchurl { 4327 name = "to_regex___to_regex_3.0.2.tgz"; 4328 url = "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz"; 4329 + sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw=="; 4330 }; 4331 } 4332 { ··· 4334 path = fetchurl { 4335 name = "toidentifier___toidentifier_1.0.0.tgz"; 4336 url = "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz"; 4337 + sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; 4338 }; 4339 } 4340 { ··· 4342 path = fetchurl { 4343 name = "touch___touch_2.0.2.tgz"; 4344 url = "https://registry.yarnpkg.com/touch/-/touch-2.0.2.tgz"; 4345 + sha512 = "qjNtvsFXTRq7IuMLweVgFxmEuQ6gLbRs2jQxL80TtZ31dEKWYIxRXquij6w6VimyDek5hD3PytljHmEtAs2u0A=="; 4346 }; 4347 } 4348 { ··· 4350 path = fetchurl { 4351 name = "tough_cookie___tough_cookie_2.5.0.tgz"; 4352 url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz"; 4353 + sha512 = "nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g=="; 4354 + }; 4355 + } 4356 + { 4357 + name = "tr46___tr46_0.0.3.tgz"; 4358 + path = fetchurl { 4359 + name = "tr46___tr46_0.0.3.tgz"; 4360 + url = "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz"; 4361 + sha1 = "gYT9NH2snNwYWZLzpmIuFLnZq2o="; 4362 + }; 4363 + } 4364 + { 4365 + name = "transliteration___transliteration_2.2.0.tgz"; 4366 + path = fetchurl { 4367 + name = "transliteration___transliteration_2.2.0.tgz"; 4368 + url = "https://registry.yarnpkg.com/transliteration/-/transliteration-2.2.0.tgz"; 4369 + sha512 = "o29GDWtecNoK4TNfnJQesGluFPiza+U8NoiKrErU8eTNlVgma6w1LV/tTiGo+waFLkhtL9WxrW0lXhZKmm7msQ=="; 4370 }; 4371 } 4372 { ··· 4374 path = fetchurl { 4375 name = "traverse___traverse_0.3.9.tgz"; 4376 url = "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz"; 4377 + sha1 = "cXuPIgzAu3tE5AUUwisui7xw2Lk="; 4378 }; 4379 } 4380 { ··· 4382 path = fetchurl { 4383 name = "ts_node___ts_node_8.10.2.tgz"; 4384 url = "https://registry.yarnpkg.com/ts-node/-/ts-node-8.10.2.tgz"; 4385 + sha512 = "ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA=="; 4386 }; 4387 } 4388 { ··· 4390 path = fetchurl { 4391 name = "tslib___tslib_1.11.1.tgz"; 4392 url = "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz"; 4393 + sha512 = "aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA=="; 4394 }; 4395 } 4396 { ··· 4398 path = fetchurl { 4399 name = "tslint_config_prettier___tslint_config_prettier_1.18.0.tgz"; 4400 url = "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz"; 4401 + sha512 = "xPw9PgNPLG3iKRxmK7DWr+Ea/SzrvfHtjFt5LBl61gk2UBG/DB9kCXRjv+xyIU1rUtnayLeMUVJBcMX8Z17nDg=="; 4402 }; 4403 } 4404 { ··· 4406 path = fetchurl { 4407 name = "tslint_react___tslint_react_5.0.0.tgz"; 4408 url = "https://registry.yarnpkg.com/tslint-react/-/tslint-react-5.0.0.tgz"; 4409 + sha512 = "/IbcSmoBPlFic8kQaRfQ4knTY4mivwo5LVzvozvX6Dyu2ynEnrh1dIcR2ujjyp/IodXqY/H5GbxFxSMo/Kf2Hg=="; 4410 }; 4411 } 4412 { ··· 4414 path = fetchurl { 4415 name = "tslint___tslint_5.20.1.tgz"; 4416 url = "https://registry.yarnpkg.com/tslint/-/tslint-5.20.1.tgz"; 4417 + sha512 = "EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg=="; 4418 }; 4419 } 4420 { ··· 4422 path = fetchurl { 4423 name = "tsutils___tsutils_2.29.0.tgz"; 4424 url = "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz"; 4425 + sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA=="; 4426 }; 4427 } 4428 { ··· 4430 path = fetchurl { 4431 name = "tsutils___tsutils_3.17.1.tgz"; 4432 url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz"; 4433 + sha512 = "kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g=="; 4434 }; 4435 } 4436 { ··· 4438 path = fetchurl { 4439 name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; 4440 url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; 4441 + sha1 = "J6XeoGs2sEoKmWZ3SykIaPD8QP0="; 4442 }; 4443 } 4444 { ··· 4446 path = fetchurl { 4447 name = "tweetnacl___tweetnacl_0.14.5.tgz"; 4448 url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz"; 4449 + sha1 = "WuaBd/GS1EViadEIr6k/+HQ/T2Q="; 4450 }; 4451 } 4452 { ··· 4454 path = fetchurl { 4455 name = "type_check___type_check_0.3.2.tgz"; 4456 url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; 4457 + sha1 = "WITKtRLPHTVeP7eE8wgEsrUg23I="; 4458 }; 4459 } 4460 { ··· 4462 path = fetchurl { 4463 name = "type_is___type_is_1.6.18.tgz"; 4464 url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz"; 4465 + sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 4466 }; 4467 } 4468 { ··· 4470 path = fetchurl { 4471 name = "typedarray___typedarray_0.0.6.tgz"; 4472 url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; 4473 + sha1 = "hnrHTjhkGHsdPUfZlqeOxciDB3c="; 4474 }; 4475 } 4476 { ··· 4478 path = fetchurl { 4479 name = "typescript_tslint_plugin___typescript_tslint_plugin_0.5.5.tgz"; 4480 url = "https://registry.yarnpkg.com/typescript-tslint-plugin/-/typescript-tslint-plugin-0.5.5.tgz"; 4481 + sha512 = "tR5igNQP+6FhxaPJYRlUBVsEl0n5cSuXRbg7L1y80mL4B1jUHb8uiIcbQBJ9zWyypJEdFYFUccpXxvMwZR8+AA=="; 4482 }; 4483 } 4484 { ··· 4486 path = fetchurl { 4487 name = "typescript___typescript_3.8.3.tgz"; 4488 url = "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz"; 4489 + sha512 = "MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w=="; 4490 }; 4491 } 4492 { ··· 4494 path = fetchurl { 4495 name = "uglify_js___uglify_js_3.8.0.tgz"; 4496 url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.8.0.tgz"; 4497 + sha512 = "ugNSTT8ierCsDHso2jkBHXYrU8Y5/fY2ZUprfrJUiD7YpuFvV4jODLFmb3h4btQjqr5Nh4TX4XtgDfCU1WdioQ=="; 4498 }; 4499 } 4500 { ··· 4502 path = fetchurl { 4503 name = "ultron___ultron_1.0.2.tgz"; 4504 url = "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz"; 4505 + sha1 = "rOEWq1V80Zc4ak6I9GhTeMiy5Po="; 4506 }; 4507 } 4508 { ··· 4510 path = fetchurl { 4511 name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz"; 4512 url = "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz"; 4513 + sha512 = "jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ=="; 4514 }; 4515 } 4516 { ··· 4518 path = fetchurl { 4519 name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_1.0.4.tgz"; 4520 url = "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz"; 4521 + sha512 = "L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg=="; 4522 }; 4523 } 4524 { ··· 4526 path = fetchurl { 4527 name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.1.0.tgz"; 4528 url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz"; 4529 + sha512 = "hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g=="; 4530 }; 4531 } 4532 { ··· 4534 path = fetchurl { 4535 name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.5.tgz"; 4536 url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz"; 4537 + sha512 = "L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw=="; 4538 }; 4539 } 4540 { ··· 4542 path = fetchurl { 4543 name = "union_value___union_value_1.0.1.tgz"; 4544 url = "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz"; 4545 + sha512 = "tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg=="; 4546 }; 4547 } 4548 { ··· 4550 path = fetchurl { 4551 name = "universalify___universalify_0.1.2.tgz"; 4552 url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz"; 4553 + sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; 4554 }; 4555 } 4556 { ··· 4558 path = fetchurl { 4559 name = "unpipe___unpipe_1.0.0.tgz"; 4560 url = "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz"; 4561 + sha1 = "sr9O6FFKrmFltIF4KdIbLvSZBOw="; 4562 }; 4563 } 4564 { ··· 4566 path = fetchurl { 4567 name = "unset_value___unset_value_1.0.0.tgz"; 4568 url = "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz"; 4569 + sha1 = "g3aHP30jNRef+x5vw6jtDfyKtVk="; 4570 }; 4571 } 4572 { ··· 4574 path = fetchurl { 4575 name = "unstated___unstated_2.1.1.tgz"; 4576 url = "https://registry.yarnpkg.com/unstated/-/unstated-2.1.1.tgz"; 4577 + sha512 = "fORlTWMZxq7NuMJDxyIrrYIZKN7wEWYQ9SiaJfIRcSpsowr6Ph/JIfK2tgtXLW614JfPG/t5q9eEIhXRCf55xg=="; 4578 }; 4579 } 4580 { ··· 4582 path = fetchurl { 4583 name = "unzip___unzip_0.1.11.tgz"; 4584 url = "https://registry.yarnpkg.com/unzip/-/unzip-0.1.11.tgz"; 4585 + sha1 = "iXScY7BY19kNYZ+GuYqhU107l/A="; 4586 }; 4587 } 4588 { ··· 4590 path = fetchurl { 4591 name = "uri_js___uri_js_4.2.2.tgz"; 4592 url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz"; 4593 + sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ=="; 4594 }; 4595 } 4596 { ··· 4598 path = fetchurl { 4599 name = "urix___urix_0.1.0.tgz"; 4600 url = "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz"; 4601 + sha1 = "2pN/emLiH+wf0Y1Js1wpNQZ6bHI="; 4602 }; 4603 } 4604 { ··· 4606 path = fetchurl { 4607 name = "use___use_3.1.1.tgz"; 4608 url = "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz"; 4609 + sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="; 4610 }; 4611 } 4612 { ··· 4614 path = fetchurl { 4615 name = "util_deprecate___util_deprecate_1.0.2.tgz"; 4616 url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; 4617 + sha1 = "RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="; 4618 }; 4619 } 4620 { ··· 4622 path = fetchurl { 4623 name = "utils_extend___utils_extend_1.0.8.tgz"; 4624 url = "https://registry.yarnpkg.com/utils-extend/-/utils-extend-1.0.8.tgz"; 4625 + sha1 = "zP17ZFQPjpDuIe7Fd2nQZRyril8="; 4626 }; 4627 } 4628 { ··· 4630 path = fetchurl { 4631 name = "utils_merge___utils_merge_1.0.1.tgz"; 4632 url = "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz"; 4633 + sha1 = "n5VxD1CiZ5R7LMwSR0HBAoQn5xM="; 4634 }; 4635 } 4636 { ··· 4638 path = fetchurl { 4639 name = "uuid___uuid_3.4.0.tgz"; 4640 url = "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz"; 4641 + sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 4642 }; 4643 } 4644 { ··· 4646 path = fetchurl { 4647 name = "vary___vary_1.1.2.tgz"; 4648 url = "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz"; 4649 + sha1 = "IpnwLG3tMNSllhsLn3RSShj2NPw="; 4650 }; 4651 } 4652 { ··· 4654 path = fetchurl { 4655 name = "verror___verror_1.10.0.tgz"; 4656 url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz"; 4657 + sha1 = "OhBcoXBTr1XW4nDB+CiGguGNpAA="; 4658 }; 4659 } 4660 { ··· 4662 path = fetchurl { 4663 name = "vscode_jsonrpc___vscode_jsonrpc_4.0.0.tgz"; 4664 url = "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz"; 4665 + sha512 = "perEnXQdQOJMTDFNv+UF3h1Y0z4iSiaN9jIlb0OqIYgosPCZGYh/MCUlkFtV2668PL69lRDO32hmvL2yiidUYg=="; 4666 }; 4667 } 4668 { ··· 4670 path = fetchurl { 4671 name = "vscode_languageserver_protocol___vscode_languageserver_protocol_3.14.1.tgz"; 4672 url = "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz"; 4673 + sha512 = "IL66BLb2g20uIKog5Y2dQ0IiigW0XKrvmWiOvc0yXw80z3tMEzEnHjaGAb3ENuU7MnQqgnYJ1Cl2l9RvNgDi4g=="; 4674 }; 4675 } 4676 { ··· 4678 path = fetchurl { 4679 name = "vscode_languageserver_types___vscode_languageserver_types_3.14.0.tgz"; 4680 url = "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz"; 4681 + sha512 = "lTmS6AlAlMHOvPQemVwo3CezxBp0sNB95KNPkqp3Nxd5VFEnuG1ByM0zlRWos0zjO3ZWtkvhal0COgiV1xIA4A=="; 4682 }; 4683 } 4684 { ··· 4686 path = fetchurl { 4687 name = "vscode_languageserver___vscode_languageserver_5.2.1.tgz"; 4688 url = "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz"; 4689 + sha512 = "GuayqdKZqAwwaCUjDvMTAVRPJOp/SLON3mJ07eGsx/Iq9HjRymhKWztX41rISqDKhHVVyFM+IywICyZDla6U3A=="; 4690 }; 4691 } 4692 { ··· 4694 path = fetchurl { 4695 name = "vscode_uri___vscode_uri_1.0.8.tgz"; 4696 url = "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-1.0.8.tgz"; 4697 + sha512 = "obtSWTlbJ+a+TFRYGaUumtVwb+InIUVI0Lu0VBUAPmj2cU5JutEXg3xUE0c2J5Tcy7h2DEKVJBFi+Y9ZSFzzPQ=="; 4698 }; 4699 } 4700 { ··· 4702 path = fetchurl { 4703 name = "w3c_keyname___w3c_keyname_2.2.2.tgz"; 4704 url = "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.2.tgz"; 4705 + sha512 = "8Vs/aVwcy0IJACaPm4tyzh1fzehZE70bGSjEl3dDms5UXtWnaBElrSHC8lDDeak0Gk5jxKOFstL64/65o7Ge2A=="; 4706 }; 4707 } 4708 { ··· 4710 path = fetchurl { 4711 name = "watch___watch_1.0.2.tgz"; 4712 url = "https://registry.yarnpkg.com/watch/-/watch-1.0.2.tgz"; 4713 + sha1 = "NApxe952Vyb6CqB9ch4BR6VR3ww="; 4714 + }; 4715 + } 4716 + { 4717 + name = "webidl_conversions___webidl_conversions_3.0.1.tgz"; 4718 + path = fetchurl { 4719 + name = "webidl_conversions___webidl_conversions_3.0.1.tgz"; 4720 + url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz"; 4721 + sha1 = "JFNCdeKnvGvnvIZhHMFq4KVlSHE="; 4722 + }; 4723 + } 4724 + { 4725 + name = "whatwg_url___whatwg_url_5.0.0.tgz"; 4726 + path = fetchurl { 4727 + name = "whatwg_url___whatwg_url_5.0.0.tgz"; 4728 + url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz"; 4729 + sha1 = "lmRU6HZUYuN2RNNib2dCzotwll0="; 4730 + }; 4731 + } 4732 + { 4733 + name = "wide_align___wide_align_1.1.3.tgz"; 4734 + path = fetchurl { 4735 + name = "wide_align___wide_align_1.1.3.tgz"; 4736 + url = "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz"; 4737 + sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; 4738 }; 4739 } 4740 { ··· 4742 path = fetchurl { 4743 name = "word_wrap___word_wrap_1.2.3.tgz"; 4744 url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz"; 4745 + sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 4746 + }; 4747 + } 4748 + { 4749 + name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; 4750 + path = fetchurl { 4751 + name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; 4752 + url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; 4753 + sha512 = "YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="; 4754 }; 4755 } 4756 { ··· 4758 path = fetchurl { 4759 name = "wrappy___wrappy_1.0.2.tgz"; 4760 url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; 4761 + sha1 = "tSQ9jz7BqjXxNkYFvA0QNuMKtp8="; 4762 }; 4763 } 4764 { ··· 4766 path = fetchurl { 4767 name = "ws___ws_1.1.5.tgz"; 4768 url = "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz"; 4769 + sha512 = "o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w=="; 4770 + }; 4771 + } 4772 + { 4773 + name = "y18n___y18n_5.0.8.tgz"; 4774 + path = fetchurl { 4775 + name = "y18n___y18n_5.0.8.tgz"; 4776 + url = "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz"; 4777 + sha512 = "0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="; 4778 + }; 4779 + } 4780 + { 4781 + name = "yallist___yallist_4.0.0.tgz"; 4782 + path = fetchurl { 4783 + name = "yallist___yallist_4.0.0.tgz"; 4784 + url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz"; 4785 + sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 4786 }; 4787 } 4788 { ··· 4790 path = fetchurl { 4791 name = "yaml___yaml_1.7.2.tgz"; 4792 url = "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz"; 4793 + sha512 = "qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw=="; 4794 + }; 4795 + } 4796 + { 4797 + name = "yargs_parser___yargs_parser_20.2.9.tgz"; 4798 + path = fetchurl { 4799 + name = "yargs_parser___yargs_parser_20.2.9.tgz"; 4800 + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz"; 4801 + sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 4802 + }; 4803 + } 4804 + { 4805 + name = "yargs___yargs_16.2.0.tgz"; 4806 + path = fetchurl { 4807 + name = "yargs___yargs_16.2.0.tgz"; 4808 + url = "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz"; 4809 + sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="; 4810 }; 4811 } 4812 { ··· 4814 path = fetchurl { 4815 name = "yn___yn_3.1.1.tgz"; 4816 url = "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz"; 4817 + sha512 = "Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="; 4818 }; 4819 } 4820 { ··· 4822 path = fetchurl { 4823 name = "zenscroll___zenscroll_4.0.2.tgz"; 4824 url = "https://registry.yarnpkg.com/zenscroll/-/zenscroll-4.0.2.tgz"; 4825 + sha1 = "6NV3TRwHOKR7z6hynzcS4t7d6yU="; 4826 }; 4827 } 4828 ];
+4 -2
pkgs/applications/graphics/gimp/default.nix
··· 18 , lcms 19 , libpng 20 , libjpeg 21 , poppler 22 , poppler_data 23 , libtiff ··· 53 python = python2.withPackages (pp: [ pp.pygtk ]); 54 in stdenv.mkDerivation rec { 55 pname = "gimp"; 56 - version = "2.10.30"; 57 58 outputs = [ "out" "dev" ]; 59 60 src = fetchurl { 61 url = "http://download.gimp.org/pub/gimp/v${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2"; 62 - sha256 = "iIFdqnbtfUJ37rNTNYuvoRbNL80shh2VuVE1wdUrZ9w="; 63 }; 64 65 patches = [ ··· 100 lcms 101 libpng 102 libjpeg 103 poppler 104 poppler_data 105 libtiff
··· 18 , lcms 19 , libpng 20 , libjpeg 21 + , libjxl 22 , poppler 23 , poppler_data 24 , libtiff ··· 54 python = python2.withPackages (pp: [ pp.pygtk ]); 55 in stdenv.mkDerivation rec { 56 pname = "gimp"; 57 + version = "2.10.32"; 58 59 outputs = [ "out" "dev" ]; 60 61 src = fetchurl { 62 url = "http://download.gimp.org/pub/gimp/v${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2"; 63 + sha256 = "PxXHBVSvXcwbRubcaPPY8KbMn+VrbXisCMD9hZq4miU="; 64 }; 65 66 patches = [ ··· 101 lcms 102 libpng 103 libjpeg 104 + libjxl 105 poppler 106 poppler_data 107 libtiff
+34 -14
pkgs/applications/misc/HentaiAtHome/default.nix
··· 1 - { buildGraalvmNativeImage, fetchzip, graalvm17-ce, lib }: 2 - 3 - buildGraalvmNativeImage rec { 4 pname = "HentaiAtHome"; 5 version = "1.6.1"; 6 src = fetchzip { 7 - url = "https://repo.e-hentai.org/hath/HentaiAtHome_${version}.zip"; 8 hash = 9 - "sha512-nGGCuVovj4NJGrihKKYXnh0Ic9YD36o7r6wv9zSivZn22zm8lBYVXP85LnOw2z9DiJARivOctQGl48YFD7vxOQ=="; 10 stripRoot = false; 11 }; 12 13 - jar = "${src}/HentaiAtHome.jar"; 14 - dontUnpack = true; 15 16 - graalvmDrv = graalvm17-ce; 17 - extraNativeImageBuildArgs = [ 18 - "--enable-url-protocols=http,https" 19 - "--install-exit-handlers" 20 - "--no-fallback" 21 - ]; 22 23 doInstallCheck = true; 24 installCheckPhase = '' ··· 27 popd 28 ''; 29 30 meta = with lib; { 31 homepage = "https://ehwiki.org/wiki/Hentai@Home"; 32 description = 33 "Hentai@Home is an open-source P2P gallery distribution system which reduces the load on the E-Hentai Galleries"; 34 - sourceProvenance = with sourceTypes; [ binaryBytecode ]; 35 license = licenses.gpl3; 36 maintainers = with maintainers; [ terrorjack ]; 37 };
··· 1 + { buildPackages 2 + , buildPlatform 3 + , fetchzip 4 + , javaOpts ? "-XX:+UseZGC" 5 + , jdk 6 + , jre_headless 7 + , lib 8 + , makeWrapper 9 + , stdenvNoCC 10 + , 11 + }: 12 + stdenvNoCC.mkDerivation rec { 13 pname = "HentaiAtHome"; 14 version = "1.6.1"; 15 + 16 src = fetchzip { 17 + url = "https://repo.e-hentai.org/hath/HentaiAtHome_${version}_src.zip"; 18 hash = 19 + "sha512-j+B0kx6fjUibI3MjVJ5PVTq9xxtSOTTY/XizAJKjeNkpExJF9DIV4VCwf+sfLlg+7W4UBosnyb8hZNNoidRBKA=="; 20 stripRoot = false; 21 }; 22 23 + nativeBuildInputs = [ jdk makeWrapper ]; 24 25 + LANG = "en_US.UTF-8"; 26 + LOCALE_ARCHIVE = lib.optionalString (buildPlatform.libc == "glibc") 27 + "${buildPackages.glibcLocales}/lib/locale/locale-archive"; 28 + 29 + buildPhase = '' 30 + make all 31 + ''; 32 + 33 + installPhase = '' 34 + mkdir -p $out/share/java 35 + cp build/HentaiAtHome.jar $out/share/java 36 + 37 + mkdir -p $out/bin 38 + makeWrapper ${jre_headless}/bin/java $out/bin/HentaiAtHome \ 39 + --add-flags "${javaOpts} -jar $out/share/java/HentaiAtHome.jar" 40 + ''; 41 42 doInstallCheck = true; 43 installCheckPhase = '' ··· 46 popd 47 ''; 48 49 + strictDeps = true; 50 + 51 meta = with lib; { 52 homepage = "https://ehwiki.org/wiki/Hentai@Home"; 53 description = 54 "Hentai@Home is an open-source P2P gallery distribution system which reduces the load on the E-Hentai Galleries"; 55 license = licenses.gpl3; 56 maintainers = with maintainers; [ terrorjack ]; 57 };
+2 -2
pkgs/applications/networking/cluster/kn/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kn"; 5 - version = "1.4.0"; 6 7 src = fetchFromGitHub { 8 owner = "knative"; 9 repo = "client"; 10 rev = "knative-v${version}"; 11 - sha256 = "sha256-Q67dictDE+HWw99lFAiidBvIL30mMAkjYb2CDLDcalw="; 12 }; 13 14 vendorSha256 = null;
··· 2 3 buildGoModule rec { 4 pname = "kn"; 5 + version = "1.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "knative"; 9 repo = "client"; 10 rev = "knative-v${version}"; 11 + sha256 = "sha256-etENW/zP9xy0pyUT2UoFXrzgkSXrfp8dxl35bD2t/Yc="; 12 }; 13 14 vendorSha256 = null;
+22
pkgs/applications/networking/instant-messengers/ferdium/default.nix
···
··· 1 + { lib, mkFranzDerivation, fetchurl, xorg }: 2 + 3 + mkFranzDerivation rec { 4 + pname = "ferdium"; 5 + name = "Ferdium"; 6 + version = "6.0.0-nightly.65"; 7 + src = fetchurl { 8 + url = "https://github.com/ferdium/ferdium-app/releases/download/v${version}/ferdium_${version}_amd64.deb"; 9 + sha256 = "sha256-vmu74aLAKGbmRf9hkMUL5VOfi/Cbvdix9MzsZK1qW80="; 10 + }; 11 + 12 + extraBuildInputs = [ xorg.libxshmfence ]; 13 + 14 + meta = with lib; { 15 + description = "All your services in one place built by the community"; 16 + homepage = "https://ferdium.org/"; 17 + license = licenses.asl20; 18 + maintainers = with maintainers; [ magnouvean ]; 19 + platforms = [ "x86_64-linux" ]; 20 + hydraPlatforms = [ ]; 21 + }; 22 + }
+9 -3
pkgs/applications/science/chemistry/openmolcas/default.nix
··· 15 16 in stdenv.mkDerivation { 17 pname = "openmolcas"; 18 - version = "22.02"; 19 20 src = fetchFromGitLab { 21 owner = "Molcas"; 22 repo = "OpenMolcas"; 23 # The tag keeps moving, fix a hash instead 24 - rev = "f8df69cf87b241a15ebc82d72a8f9a031a385dd4"; # 2022-02-10 25 - sha256 = "0p2xj8kgqdk5kb1jv5k77acbiqkbl2sh971jnz9p00cmbh556r6a"; 26 }; 27 28 patches = [ ··· 31 # Required for MKL builds 32 ./MKL-MPICH.patch 33 ]; 34 35 nativeBuildInputs = [ 36 perl
··· 15 16 in stdenv.mkDerivation { 17 pname = "openmolcas"; 18 + version = "22.06"; 19 20 src = fetchFromGitLab { 21 owner = "Molcas"; 22 repo = "OpenMolcas"; 23 # The tag keeps moving, fix a hash instead 24 + rev = "17238da5c339c41ddf14ceb88f139d57143d7a14"; # 2022-06-17 25 + sha256 = "0g17x5fp27b57f7j284xl3b3i9c4b909q504wpz0ipb0mrcvcpdp"; 26 }; 27 28 patches = [ ··· 31 # Required for MKL builds 32 ./MKL-MPICH.patch 33 ]; 34 + 35 + postPatch = '' 36 + # Using env fails in the sandbox 37 + substituteInPlace Tools/pymolcas/export.py --replace \ 38 + "/usr/bin/env','python3" "python3" 39 + ''; 40 41 nativeBuildInputs = [ 42 perl
+1
pkgs/applications/science/logic/tamarin-prover/default.nix
··· 21 homepage = "https://tamarin-prover.github.io"; 22 description = "Security protocol verification in the symbolic model"; 23 maintainers = [ lib.maintainers.thoughtpolice ]; 24 }; 25 26 # tamarin use symlinks to the LICENSE and Setup.hs files, so for these sublibraries
··· 21 homepage = "https://tamarin-prover.github.io"; 22 description = "Security protocol verification in the symbolic model"; 23 maintainers = [ lib.maintainers.thoughtpolice ]; 24 + hydraPlatforms = lib.platforms.linux; # maude is broken on darwin 25 }; 26 27 # tamarin use symlinks to the LICENSE and Setup.hs files, so for these sublibraries
+2 -2
pkgs/applications/science/math/wxmaxima/default.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "wxmaxima"; 14 - version = "22.03.0"; 15 16 src = fetchFromGitHub { 17 owner = "wxMaxima-developers"; 18 repo = "wxmaxima"; 19 rev = "Version-${version}"; 20 - sha256 = "sha256-ynLx1HPfDjLbyFziWFbjpCeUBaA3hAFRFm5/1GeFKRE="; 21 }; 22 23 buildInputs = [
··· 11 12 stdenv.mkDerivation rec { 13 pname = "wxmaxima"; 14 + version = "22.05.0"; 15 16 src = fetchFromGitHub { 17 owner = "wxMaxima-developers"; 18 repo = "wxmaxima"; 19 rev = "Version-${version}"; 20 + sha256 = "sha256-pcKnEjJmvMXCBpjtOSLyl4I0x3fjh0os9Sdp39I2Re0="; 21 }; 22 23 buildInputs = [
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 { 2 - "commit": "a4be9679c308459b390768e6195f3f08ae5366db", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/a4be9679c308459b390768e6195f3f08ae5366db.tar.gz", 4 - "sha256": "09pr3ag0k1wjiih36p902gcpygxg8f7wqpr5g8j7ka851g0gckqa", 5 - "msg": "Update from Hackage at 2022-06-04T09:01:11Z" 6 }
··· 1 { 2 + "commit": "e55c7aa130b33bcfe416a246d9e8a108c63022f9", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/e55c7aa130b33bcfe416a246d9e8a108c63022f9.tar.gz", 4 + "sha256": "1nmqxlj9c76xpyz1js47bk7m05mr229c8y5k7gnnjwh4gspr0p0r", 5 + "msg": "Update from Hackage at 2022-06-07T15:13:17Z" 6 }
+5 -3
pkgs/development/compilers/ghcjs/ghcjs-base.nix
··· 8 }: 9 mkDerivation { 10 pname = "ghcjs-base"; 11 - version = "0.2.0.3"; 12 src = fetchFromGitHub { 13 owner = "ghcjs"; 14 repo = "ghcjs-base"; 15 - rev = "85e31beab9beffc3ea91b954b61a5d04e708b8f2"; 16 - sha256 = "sha256-YDOfi/WZz/602OtbY8wL5jX3X+9oiGL1WhceCraczZU="; 17 }; 18 libraryHaskellDepends = [ 19 aeson attoparsec base binary bytestring containers deepseq dlist
··· 8 }: 9 mkDerivation { 10 pname = "ghcjs-base"; 11 + version = "0.2.1.0"; 12 + # This is the release 0.2.1.0, but the hackage release misses test source files, 13 + # so lets use github https://github.com/ghcjs/ghcjs-base/issues/132 14 src = fetchFromGitHub { 15 owner = "ghcjs"; 16 repo = "ghcjs-base"; 17 + rev = "fbaae59b05b020e91783df122249095e168df53f"; 18 + sha256 = "sha256-x6eCAK1Hne0QkV3Loi9YpxbleNHU593E4AO8cbk2vUc="; 19 }; 20 libraryHaskellDepends = [ 21 aeson attoparsec base binary bytestring containers deepseq dlist
+24 -18
pkgs/development/haskell-modules/configuration-common.nix
··· 238 digit = doJailbreak super.digit; 239 240 # 2020-06-05: HACK: does not pass own build suite - `dontCheck` 241 - hnix = generateOptparseApplicativeCompletion "hnix" (dontCheck super.hnix); 242 # Too strict bounds on algebraic-graphs 243 # https://github.com/haskell-nix/hnix-store/issues/180 244 - hnix-store-core = doJailbreak super.hnix-store-core; 245 246 # Fails for non-obvious reasons while attempting to use doctest. 247 focuslist = dontCheck super.focuslist; ··· 2096 }; 2097 } self.haskell-ci; 2098 2099 - large-hashable = lib.pipe super.large-hashable [ 2100 - # 2022-03-21: use version from git which includes support for GHC 9.0.1 2101 (assert super.large-hashable.version == "0.1.0.4"; overrideSrc { 2102 - version = "unstable-2021-11-01"; 2103 src = pkgs.fetchFromGitHub { 2104 owner = "factisresearch"; 2105 repo = "large-hashable"; 2106 - rev = "b4e6b3d23c2b1af965ffcc055f5405ff673e66cf"; 2107 - sha256 = "1bgf37qfzdyjhpgnj9aipwzpa06nc7b1g4f64xsmknyds7ffhixz"; 2108 }; 2109 }) 2110 # Provide newly added dependencies ··· 2117 self.inspection-testing 2118 ]; 2119 })) 2120 - # 2022-03-21: patch for aeson 2.0 2121 - # https://github.com/factisresearch/large-hashable/pull/22 2122 - (appendPatches [ 2123 - (fetchpatch { 2124 - name = "large-hashable-aeson-2.0.patch"; 2125 - url = "https://github.com/factisresearch/large-hashable/commit/7094ef0ba55b4848cb57bae73d119acfb496a4c9.patch"; 2126 - sha256 = "0ckiii0s697h817z65jwlmjzqw2ckpm815wqcnxjigf6v9kxps8j"; 2127 - }) 2128 - ]) 2129 ]; 2130 2131 # BSON defaults to requiring network instead of network-bsd which is ··· 2179 # 2022-03-21: Newest stylish-haskell needs ghc-lib-parser-9_2 2180 stylish-haskell = (super.stylish-haskell.override { 2181 ghc-lib-parser = super.ghc-lib-parser_9_2_3_20220527; 2182 - ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_4; 2183 }); 2184 2185 - ghc-lib-parser-ex_9_2_0_4 = super.ghc-lib-parser-ex_9_2_0_4.override { 2186 ghc-lib-parser = super.ghc-lib-parser_9_2_3_20220527; 2187 }; 2188
··· 238 digit = doJailbreak super.digit; 239 240 # 2020-06-05: HACK: does not pass own build suite - `dontCheck` 241 + # 2022-06-17: Use hnix-store 0.5 until hnix 0.17 242 + hnix = generateOptparseApplicativeCompletion "hnix" (dontCheck ( 243 + super.hnix.overrideScope (hself: hsuper: { 244 + hnix-store-core = hself.hnix-store-core_0_5_0_0; 245 + hnix-store-remote = hself.hnix-store-remote_0_5_0_0; 246 + }) 247 + )); 248 # Too strict bounds on algebraic-graphs 249 # https://github.com/haskell-nix/hnix-store/issues/180 250 + hnix-store-core_0_5_0_0 = doJailbreak super.hnix-store-core_0_5_0_0; 251 252 # Fails for non-obvious reasons while attempting to use doctest. 253 focuslist = dontCheck super.focuslist; ··· 2102 }; 2103 } self.haskell-ci; 2104 2105 + large-hashable = lib.pipe (super.large-hashable.override { 2106 + # https://github.com/factisresearch/large-hashable/commit/5ec9d2c7233fc4445303564047c992b693e1155c 2107 + utf8-light = null; 2108 + }) [ 2109 + # 2022-03-21: use version from git which supports GHC 9.{0,2} and aeson 2.0 2110 (assert super.large-hashable.version == "0.1.0.4"; overrideSrc { 2111 + version = "unstable-2022-06-10"; 2112 src = pkgs.fetchFromGitHub { 2113 owner = "factisresearch"; 2114 repo = "large-hashable"; 2115 + rev = "4d149c828c185bcf05556d1660f79ff1aec7eaa1"; 2116 + sha256 = "141349qcw3m93jw95jcha9rsg2y8sn5ca5j59cv8xmci38k2nam0"; 2117 }; 2118 }) 2119 # Provide newly added dependencies ··· 2126 self.inspection-testing 2127 ]; 2128 })) 2129 + # https://github.com/factisresearch/large-hashable/issues/24 2130 + (overrideCabal (drv: { 2131 + testFlags = drv.testFlags or [] ++ [ 2132 + "-n" "^Data.LargeHashable.Tests.Inspection:genericSumGetsOptimized$" 2133 + ]; 2134 + })) 2135 ]; 2136 2137 # BSON defaults to requiring network instead of network-bsd which is ··· 2185 # 2022-03-21: Newest stylish-haskell needs ghc-lib-parser-9_2 2186 stylish-haskell = (super.stylish-haskell.override { 2187 ghc-lib-parser = super.ghc-lib-parser_9_2_3_20220527; 2188 + ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_1_0; 2189 }); 2190 2191 + ghc-lib-parser-ex_9_2_1_0 = super.ghc-lib-parser-ex_9_2_1_0.override { 2192 ghc-lib-parser = super.ghc-lib-parser_9_2_3_20220527; 2193 }; 2194
+1 -1
pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
··· 102 }) super.ghc-exactprint; 103 ghc-lib = self.ghc-lib_9_2_3_20220527; 104 ghc-lib-parser = self.ghc-lib-parser_9_2_3_20220527; 105 - ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_4; 106 hackage-security = doJailbreak super.hackage-security; 107 hashable = super.hashable_1_4_0_2; 108 hashable-time = doJailbreak super.hashable-time;
··· 102 }) super.ghc-exactprint; 103 ghc-lib = self.ghc-lib_9_2_3_20220527; 104 ghc-lib-parser = self.ghc-lib-parser_9_2_3_20220527; 105 + ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_1_0; 106 hackage-security = doJailbreak super.hackage-security; 107 hashable = super.hashable_1_4_0_2; 108 hashable-time = doJailbreak super.hashable-time;
+5
pkgs/development/haskell-modules/configuration-ghcjs.nix
··· 18 inherit (self.ghc.bootPkgs) 19 jailbreak-cabal alex happy gtk2hs-buildtools rehoo hoogle; 20 21 ghcjs-base = dontCheck (self.callPackage ../compilers/ghcjs/ghcjs-base.nix { 22 fetchFromGitHub = pkgs.buildPackages.fetchFromGitHub; 23 }); 24 25 # GHCJS does not ship with the same core packages as GHC. ··· 34 35 # nodejs crashes during test 36 ChasingBottoms = dontCheck super.ChasingBottoms; 37 38 # doctest doesn't work on ghcjs, but sometimes dontCheck doesn't seem to get rid of the dependency 39 doctest = pkgs.lib.warn "ignoring dependency on doctest" null;
··· 18 inherit (self.ghc.bootPkgs) 19 jailbreak-cabal alex happy gtk2hs-buildtools rehoo hoogle; 20 21 + # Test suite fails; https://github.com/ghcjs/ghcjs-base/issues/133 22 ghcjs-base = dontCheck (self.callPackage ../compilers/ghcjs/ghcjs-base.nix { 23 fetchFromGitHub = pkgs.buildPackages.fetchFromGitHub; 24 + aeson = self.aeson_1_5_6_0; 25 }); 26 27 # GHCJS does not ship with the same core packages as GHC. ··· 36 37 # nodejs crashes during test 38 ChasingBottoms = dontCheck super.ChasingBottoms; 39 + 40 + # runs forever 41 + text-short = dontCheck super.text-short; 42 43 # doctest doesn't work on ghcjs, but sometimes dontCheck doesn't seem to get rid of the dependency 44 doctest = pkgs.lib.warn "ignoring dependency on doctest" null;
+21 -4
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 262 - authenticate-ldap 263 - authinfo-hs 264 - auto 265 - - autodocodec 266 - autom 267 - autonix-deps 268 - autopack ··· 519 - cabal2doap 520 - cabal2ebuild 521 - cabal2ghci 522 - cabal-audit 523 - cabal-auto-expose 524 - cabal-bundle-clib ··· 610 - category-traced 611 - catnplus 612 - cautious-file 613 - cayene-lpp 614 - cayley-client 615 - cblrepo ··· 865 - CoreDump 866 - CoreErlang 867 - core-haskell 868 - core-webserver-warp 869 - Coroutine 870 - coroutine-object ··· 929 - ctemplate 930 - ctkl 931 - cuboid 932 - cuckoo-filter 933 - curl-aeson 934 - curl-runnings ··· 1361 - except-exceptions 1362 - exceptional 1363 - exceptionfree-readfile 1364 - execs 1365 - executor 1366 - exh ··· 1476 - fixed-storable-array 1477 - fixed-timestep 1478 - fixed-width 1479 - fixfile 1480 - fixie 1481 - fix-symbols-gitit ··· 2210 - higgledy 2211 - higherorder 2212 - highjson 2213 - - highlight 2214 - highlight-versions 2215 - highWaterMark 2216 - himg ··· 2744 - joy-rewrite 2745 - jpeg 2746 - jsaddle-clib 2747 - - jsaddle-warp 2748 - jsaddle-wkwebview 2749 - js-good-parts 2750 - json2 ··· 3096 - lushtags 3097 - luthor 3098 - lvmlib 3099 - lxd-client 3100 - lye 3101 - lz4-frame-conduit ··· 3129 - make-hard-links 3130 - make-monofoldable-foldable 3131 - mallard 3132 - mandulia 3133 - mangopay 3134 - Map ··· 3204 - menoh 3205 - menshen 3206 - mergeful 3207 - merkle-tree 3208 - messagepack-rpc 3209 - messente ··· 3603 - open-adt 3604 - OpenAFP 3605 - openai-servant 3606 - openapi-petstore 3607 - openapi-typed 3608 - opench-meteo ··· 4084 - proto-lens-combinators 4085 - proto-lens-jsonpb 4086 - protolude-lifted 4087 - proton-haskell 4088 - prototype 4089 - prove-everywhere-server ··· 4597 - shorten-strings 4598 - short-vec 4599 - show-prettyprint 4600 - Shpadoinkle-console 4601 - Shpadoinkle-isreal 4602 - shwifty 4603 - sifflet ··· 4937 - supernova 4938 - supero 4939 - superrecord 4940 - supervisor 4941 - supervisors 4942 - supplemented ··· 4960 - sws 4961 - syb-extras 4962 - syb-with-class 4963 - syfco 4964 - sym 4965 - symantic ··· 5429 - validated-types 5430 - Validation 5431 - validations 5432 - - validity-aeson 5433 - valid-names 5434 - value-supply 5435 - vampire
··· 262 - authenticate-ldap 263 - authinfo-hs 264 - auto 265 - autom 266 - autonix-deps 267 - autopack ··· 518 - cabal2doap 519 - cabal2ebuild 520 - cabal2ghci 521 + - cabal2json 522 - cabal-audit 523 - cabal-auto-expose 524 - cabal-bundle-clib ··· 610 - category-traced 611 - catnplus 612 - cautious-file 613 + - cautious-gen 614 - cayene-lpp 615 - cayley-client 616 - cblrepo ··· 866 - CoreDump 867 - CoreErlang 868 - core-haskell 869 + - core-telemetry 870 - core-webserver-warp 871 - Coroutine 872 - coroutine-object ··· 931 - ctemplate 932 - ctkl 933 - cuboid 934 + - cuckoo 935 - cuckoo-filter 936 - curl-aeson 937 - curl-runnings ··· 1364 - except-exceptions 1365 - exceptional 1366 - exceptionfree-readfile 1367 + - exchangerates 1368 - execs 1369 - executor 1370 - exh ··· 1480 - fixed-storable-array 1481 - fixed-timestep 1482 - fixed-width 1483 + - fixer 1484 - fixfile 1485 - fixie 1486 - fix-symbols-gitit ··· 2215 - higgledy 2216 - higherorder 2217 - highjson 2218 - highlight-versions 2219 - highWaterMark 2220 - himg ··· 2748 - joy-rewrite 2749 - jpeg 2750 - jsaddle-clib 2751 - jsaddle-wkwebview 2752 - js-good-parts 2753 - json2 ··· 3099 - lushtags 3100 - luthor 3101 - lvmlib 3102 + - lvmrun 3103 - lxd-client 3104 - lye 3105 - lz4-frame-conduit ··· 3133 - make-hard-links 3134 - make-monofoldable-foldable 3135 - mallard 3136 + - managed-functions 3137 - mandulia 3138 - mangopay 3139 - Map ··· 3209 - menoh 3210 - menshen 3211 - mergeful 3212 + - mergeless-persistent 3213 - merkle-tree 3214 - messagepack-rpc 3215 - messente ··· 3609 - open-adt 3610 - OpenAFP 3611 - openai-servant 3612 + - openapi3-code-generator 3613 - openapi-petstore 3614 - openapi-typed 3615 - opench-meteo ··· 4091 - proto-lens-combinators 4092 - proto-lens-jsonpb 4093 - protolude-lifted 4094 + - proton 4095 - proton-haskell 4096 - prototype 4097 - prove-everywhere-server ··· 4605 - shorten-strings 4606 - short-vec 4607 - show-prettyprint 4608 + - Shpadoinkle-backend-pardiff 4609 + - Shpadoinkle-backend-snabbdom 4610 + - Shpadoinkle-backend-static 4611 - Shpadoinkle-console 4612 + - Shpadoinkle-html 4613 - Shpadoinkle-isreal 4614 - shwifty 4615 - sifflet ··· 4949 - supernova 4950 - supero 4951 - superrecord 4952 + - super-user-spark 4953 - supervisor 4954 - supervisors 4955 - supplemented ··· 4973 - sws 4974 - syb-extras 4975 - syb-with-class 4976 + - sydtest-hedis 4977 + - sydtest-mongo 4978 + - sydtest-persistent-postgresql 4979 + - sydtest-rabbitmq 4980 + - sydtest-yesod 4981 - syfco 4982 - sym 4983 - symantic ··· 5447 - validated-types 5448 - Validation 5449 - validations 5450 - valid-names 5451 - value-supply 5452 - vampire
+10
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 135 - hspec-discover < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 136 - bower-json == 1.0.0.1 # 2022-05-21: Needed for spago 0.20.9 137 - fourmolu == 0.6.0.0 # 2022-06-05: Last fourmolu version compatible with hls 1.7/ hls-fourmolu-plugin 1.0.3.0 138 139 package-maintainers: 140 abbradar: ··· 347 - lentil 348 sorki: 349 - cayenne-lpp 350 - data-stm32 351 - gcodehs 352 - nix-derivation 353 - nix-narinfo 354 - ttn 355 - ttn-client ··· 456 HSoM: [ x86_64-darwin, aarch64-darwin ] 457 iwlib: [ x86_64-darwin, aarch64-darwin ] 458 Jazzkell: [ x86_64-darwin, aarch64-darwin ] # depends on Euterpea 459 jsaddle-webkit2gtk: [ x86_64-darwin, aarch64-darwin ] 460 keid-core: [ aarch64-linux ] 461 keid-geometry: [ aarch64-linux ]
··· 135 - hspec-discover < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 136 - bower-json == 1.0.0.1 # 2022-05-21: Needed for spago 0.20.9 137 - fourmolu == 0.6.0.0 # 2022-06-05: Last fourmolu version compatible with hls 1.7/ hls-fourmolu-plugin 1.0.3.0 138 + - hnix-store-core == 0.5.0.0 # 2022-06-17: Until hnix 0.17 139 + - hnix-store-remote == 0.5.0.0 # 2022-06-17: Until hnix 0.17 140 141 package-maintainers: 142 abbradar: ··· 349 - lentil 350 sorki: 351 - cayenne-lpp 352 + - blockfrost-client 353 + - data-lens-light 354 - data-stm32 355 - gcodehs 356 + - hnix 357 + - hnix-store-core 358 + - hnix-store-remote 359 + - implicit 360 - nix-derivation 361 + - nix-diff 362 - nix-narinfo 363 - ttn 364 - ttn-client ··· 465 HSoM: [ x86_64-darwin, aarch64-darwin ] 466 iwlib: [ x86_64-darwin, aarch64-darwin ] 467 Jazzkell: [ x86_64-darwin, aarch64-darwin ] # depends on Euterpea 468 + jsaddle-hello: [ x86_64-darwin, aarch64-darwin ] # depends on jsaddle-webkit2gtk 469 jsaddle-webkit2gtk: [ x86_64-darwin, aarch64-darwin ] 470 keid-core: [ aarch64-linux ] 471 keid-geometry: [ aarch64-linux ]
+16 -16
pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
··· 1 - # Stackage LTS 19.9 2 # This file is auto-generated by 3 # maintainers/scripts/haskell/update-stackage.sh 4 default-package-overrides: ··· 8 - AC-Angle ==1.0 9 - acc ==0.2.0.1 10 - ace ==0.6 11 - - acid-state ==0.16.1 12 - action-permutations ==0.0.0.1 13 - active ==0.2.0.15 14 - ad ==4.5.1 ··· 373 - comfort-fftw ==0.0 374 - comfort-graph ==0.0.3.2 375 - commonmark ==0.2.2 376 - - commonmark-extensions ==0.2.3.1 377 - commonmark-pandoc ==0.2.1.2 378 - commutative ==0.0.2 379 - comonad ==5.0.8 ··· 580 - dimensional ==1.4 581 - di-monad ==1.3.1 582 - directory-tree ==0.12.1 583 - - direct-sqlite ==2.3.26 584 - dirichlet ==0.1.0.6 585 - discount ==0.1.1 586 - discover-instances ==0.1.0.0 ··· 682 - errors ==2.3.0 683 - errors-ext ==0.4.2 684 - ersatz ==0.4.11 685 - - esqueleto ==3.5.4.1 686 - essence-of-live-coding ==0.2.6 687 - essence-of-live-coding-gloss ==0.2.6 688 - essence-of-live-coding-pulse ==0.2.6 ··· 1003 - haskintex ==0.8.0.0 1004 - haskoin-core ==0.21.2 1005 - hasktags ==0.72.0 1006 - - hasql ==1.5.0.2 1007 - hasql-migration ==0.3.0 1008 - - hasql-notifications ==0.2.0.0 1009 - - hasql-optparse-applicative ==0.3.0.8 1010 - hasql-pool ==0.5.2.2 1011 - hasql-queue ==1.2.0.2 1012 - hasql-th ==0.4.0.14 ··· 1326 - js-jquery ==3.3.1 1327 - json ==0.10 1328 - json-feed ==2.0.0.1 1329 - - jsonifier ==0.2.0.1 1330 - jsonpath ==0.2.1.0 1331 - json-stream ==0.4.4.1 1332 - JuicyPixels ==3.3.7 ··· 1611 - mwc-random-monad ==0.7.3.1 1612 - mx-state-codes ==1.0.0.0 1613 - mysql ==0.2.1 1614 - - mysql-simple ==0.4.8 1615 - n2o ==0.11.1 1616 - n2o-nitro ==0.11.2 1617 - nagios-check ==0.3.2 ··· 1746 - pandoc ==2.17.1.1 1747 - pandoc-csv2table ==1.0.9 1748 - pandoc-dhall-decoder ==0.1.0.1 1749 - - pandoc-lua-marshal ==0.1.5.1 1750 - pandoc-plot ==1.4.1 1751 - pandoc-throw ==0.1.0.0 1752 - pandoc-types ==1.22.2 ··· 2088 - rope-utf16-splay ==0.3.2.0 2089 - rosezipper ==0.2 2090 - rot13 ==0.2.0.1 2091 - - rpmbuild-order ==0.4.5 2092 - rpm-nvr ==0.1.2 2093 - rp-tree ==0.7.1 2094 - RSA ==2.4.1 ··· 2295 - spreadsheet ==0.1.3.8 2296 - sqlcli ==0.2.2.0 2297 - sqlcli-odbc ==0.2.0.1 2298 - - sqlite-simple ==0.4.18.0 2299 - sql-words ==0.1.6.4 2300 - squeather ==0.8.0.0 2301 - srcloc ==0.6.0.1 ··· 2532 - tinylog ==0.15.0 2533 - titlecase ==1.0.1 2534 - tldr ==0.9.2 2535 - - tls ==1.5.7 2536 - tls-debug ==0.4.8 2537 - tls-session-manager ==0.0.4 2538 - tlynx ==0.6.1.1 ··· 2575 - twitter-types ==0.11.0 2576 - twitter-types-lens ==0.11.0 2577 - TypeCompose ==0.9.14 2578 - - typed-process ==0.2.8.0 2579 - type-equality ==1 2580 - type-errors ==0.2.0.0 2581 - type-errors-pretty ==0.0.1.2 ··· 2792 - X11 ==1.10.2 2793 - X11-xft ==0.3.4 2794 - x11-xim ==0.0.9.0 2795 - - x509 ==1.7.6 2796 - x509-store ==1.6.9 2797 - x509-system ==1.6.7 2798 - x509-validation ==1.6.12
··· 1 + # Stackage LTS 19.10 2 # This file is auto-generated by 3 # maintainers/scripts/haskell/update-stackage.sh 4 default-package-overrides: ··· 8 - AC-Angle ==1.0 9 - acc ==0.2.0.1 10 - ace ==0.6 11 + - acid-state ==0.16.1.1 12 - action-permutations ==0.0.0.1 13 - active ==0.2.0.15 14 - ad ==4.5.1 ··· 373 - comfort-fftw ==0.0 374 - comfort-graph ==0.0.3.2 375 - commonmark ==0.2.2 376 + - commonmark-extensions ==0.2.3.2 377 - commonmark-pandoc ==0.2.1.2 378 - commutative ==0.0.2 379 - comonad ==5.0.8 ··· 580 - dimensional ==1.4 581 - di-monad ==1.3.1 582 - directory-tree ==0.12.1 583 + - direct-sqlite ==2.3.27 584 - dirichlet ==0.1.0.6 585 - discount ==0.1.1 586 - discover-instances ==0.1.0.0 ··· 682 - errors ==2.3.0 683 - errors-ext ==0.4.2 684 - ersatz ==0.4.11 685 + - esqueleto ==3.5.5.0 686 - essence-of-live-coding ==0.2.6 687 - essence-of-live-coding-gloss ==0.2.6 688 - essence-of-live-coding-pulse ==0.2.6 ··· 1003 - haskintex ==0.8.0.0 1004 - haskoin-core ==0.21.2 1005 - hasktags ==0.72.0 1006 + - hasql ==1.5.0.3 1007 - hasql-migration ==0.3.0 1008 + - hasql-notifications ==0.2.0.1 1009 + - hasql-optparse-applicative ==0.3.0.9 1010 - hasql-pool ==0.5.2.2 1011 - hasql-queue ==1.2.0.2 1012 - hasql-th ==0.4.0.14 ··· 1326 - js-jquery ==3.3.1 1327 - json ==0.10 1328 - json-feed ==2.0.0.1 1329 + - jsonifier ==0.2.1.1 1330 - jsonpath ==0.2.1.0 1331 - json-stream ==0.4.4.1 1332 - JuicyPixels ==3.3.7 ··· 1611 - mwc-random-monad ==0.7.3.1 1612 - mx-state-codes ==1.0.0.0 1613 - mysql ==0.2.1 1614 + - mysql-simple ==0.4.8.1 1615 - n2o ==0.11.1 1616 - n2o-nitro ==0.11.2 1617 - nagios-check ==0.3.2 ··· 1746 - pandoc ==2.17.1.1 1747 - pandoc-csv2table ==1.0.9 1748 - pandoc-dhall-decoder ==0.1.0.1 1749 + - pandoc-lua-marshal ==0.1.6 1750 - pandoc-plot ==1.4.1 1751 - pandoc-throw ==0.1.0.0 1752 - pandoc-types ==1.22.2 ··· 2088 - rope-utf16-splay ==0.3.2.0 2089 - rosezipper ==0.2 2090 - rot13 ==0.2.0.1 2091 + - rpmbuild-order ==0.4.7 2092 - rpm-nvr ==0.1.2 2093 - rp-tree ==0.7.1 2094 - RSA ==2.4.1 ··· 2295 - spreadsheet ==0.1.3.8 2296 - sqlcli ==0.2.2.0 2297 - sqlcli-odbc ==0.2.0.1 2298 + - sqlite-simple ==0.4.18.2 2299 - sql-words ==0.1.6.4 2300 - squeather ==0.8.0.0 2301 - srcloc ==0.6.0.1 ··· 2532 - tinylog ==0.15.0 2533 - titlecase ==1.0.1 2534 - tldr ==0.9.2 2535 + - tls ==1.5.8 2536 - tls-debug ==0.4.8 2537 - tls-session-manager ==0.0.4 2538 - tlynx ==0.6.1.1 ··· 2575 - twitter-types ==0.11.0 2576 - twitter-types-lens ==0.11.0 2577 - TypeCompose ==0.9.14 2578 + - typed-process ==0.2.10.1 2579 - type-equality ==1 2580 - type-errors ==0.2.0.0 2581 - type-errors-pretty ==0.0.1.2 ··· 2792 - X11 ==1.10.2 2793 - X11-xft ==0.3.4 2794 - x11-xim ==0.0.9.0 2795 + - x509 ==1.7.7 2796 - x509-store ==1.6.9 2797 - x509-system ==1.6.7 2798 - x509-validation ==1.6.12
+3 -56
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 338 - Shellac-haskeline 339 - Shellac-readline 340 - ShortestPathProblems 341 - - Shpadoinkle 342 - - Shpadoinkle-backend-pardiff 343 - - Shpadoinkle-backend-snabbdom 344 - - Shpadoinkle-backend-static 345 - Shpadoinkle-developer-tools 346 - Shpadoinkle-disembodied 347 - Shpadoinkle-examples 348 - - Shpadoinkle-html 349 - - Shpadoinkle-lens 350 - Shpadoinkle-router 351 - - Shpadoinkle-streaming 352 - Shpadoinkle-template 353 - Shpadoinkle-widgets 354 - SimpleGL ··· 650 - apiary-websockets 651 - apis 652 - apotiki 653 - - appendful-persistent 654 - approx-rand-test 655 - arbor-monad-metric-datadog 656 - archive-tar-bytestring ··· 692 - audiovisual 693 - aura 694 - authoring 695 - - autodocodec-openapi3 696 - - autodocodec-schema 697 - - autodocodec-swagger2 698 - - autodocodec-yaml 699 - automata 700 - autonix-deps-kf5 701 - avers ··· 878 - cabal-query 879 - cabal-test 880 - cabal2arch 881 - - cabal2json 882 - cabalmdvrpm 883 - cabalrpmdeps 884 - cabocha ··· 923 - categorical-algebra 924 - category 925 - category-extras 926 - - cautious-gen 927 - cctools-workqueue 928 - cef3-simple 929 - ceilometer-common ··· 1040 - commsec-keyexchange 1041 - comonad-random 1042 - compact-mutable 1043 - - compactable 1044 - compdata-automata 1045 - compdata-dags 1046 - compdata-param ··· 1140 - csv-enumerator 1141 - ctpl 1142 - cube 1143 - - cuckoo 1144 - curryer-rpc 1145 - cursedcsv 1146 - cv-combinators ··· 1387 - eventsource-stub-store 1388 - every-bit-counts 1389 - exception-monads-fd 1390 - - exchangerates 1391 - exference 1392 - exinst-aeson 1393 - exinst-bytes ··· 1445 - feed-translator 1446 - feed2lj 1447 - feed2twitter 1448 - - feedback 1449 - fei-base 1450 - fei-dataiter 1451 - fei-datasets ··· 1474 - fixed-point-vector 1475 - fixed-point-vector-space 1476 - fixed-precision 1477 - - fixer 1478 - fixhs 1479 - flac-picture 1480 - flashblast ··· 1573 - geni-util 1574 - geniconvert 1575 - geniserver 1576 - - genvalidity-aeson 1577 - - genvalidity-appendful 1578 - - genvalidity-hspec-aeson 1579 - genvalidity-mergeful 1580 - - genvalidity-mergeless 1581 - - genvalidity-sydtest 1582 - - genvalidity-sydtest-aeson 1583 - - genvalidity-sydtest-hashable 1584 - - genvalidity-sydtest-lens 1585 - - genvalidity-sydtest-persistent 1586 - - genvalidity-typed-uuid 1587 - geodetic 1588 - geolite-csv 1589 - getemx ··· 1598 - ghc-session 1599 - ghc-tags-plugin 1600 - ghci-pretty 1601 - - ghcjs-dom-hello 1602 - ghcjs-dom-webkit 1603 - ghcjs-fetch 1604 - ghcjs-hplay ··· 1964 - hascat-setup 1965 - hascat-system 1966 - hashable-accelerate 1967 - - hashes 1968 - hashflare 1969 - hask-home 1970 - haskades ··· 2207 - hs-ix 2208 - hs-opentelemetry-exporter-in-memory 2209 - hs-opentelemetry-exporter-otlp 2210 - hs-opentelemetry-instrumentation-conduit 2211 - hs-opentelemetry-instrumentation-http-client 2212 - hs-opentelemetry-instrumentation-persistent ··· 2433 - jobqueue 2434 - join 2435 - jordan-openapi 2436 - - jsaddle-hello 2437 - jsc 2438 - jsmw 2439 - json-ast-json-encoder ··· 2703 - majordomo 2704 - majority 2705 - make-package 2706 - manatee 2707 - manatee-all 2708 - manatee-anything ··· 2751 - memis 2752 - memory-hexstring 2753 - mergeful-persistent 2754 - - mergeless-persistent 2755 - merkle-patricia-db 2756 - meta-par-accelerate 2757 - metaplug ··· 2987 - opc-xml-da-client 2988 - open-adt-tutorial 2989 - openai-hs 2990 - - openapi3-code-generator 2991 - opencv-extra 2992 - openpgp-Crypto 2993 - openpgp-crypto-api ··· 3200 - proto3-wire 3201 - protobuf-native 3202 - protocol-buffers-descriptor-fork 3203 - - proton 3204 - psc-ide 3205 - psql 3206 - ptera ··· 3452 - runtime-arbitrary 3453 - rv 3454 - s-expression 3455 - - safe-coloured-text-gen 3456 - - safe-coloured-text-layout 3457 - - safe-coloured-text-layout-gen 3458 - safe-coupling 3459 - safe-plugins 3460 - safer-file-handles ··· 3762 - sump 3763 - sunroof-examples 3764 - sunroof-server 3765 - - super-user-spark 3766 - supercollider-ht 3767 - supercollider-midi 3768 - superconstraints ··· 3775 - sweet-egison 3776 - switch 3777 - syb-with-class-instances-text 3778 - - sydtest 3779 - - sydtest-aeson 3780 - sydtest-amqp 3781 - - sydtest-hedgehog 3782 - - sydtest-hedis 3783 - - sydtest-hspec 3784 - - sydtest-mongo 3785 - - sydtest-persistent 3786 - - sydtest-persistent-postgresql 3787 - - sydtest-persistent-sqlite 3788 - - sydtest-process 3789 - - sydtest-rabbitmq 3790 - - sydtest-servant 3791 - - sydtest-typed-process 3792 - - sydtest-wai 3793 - sydtest-webdriver 3794 - sydtest-webdriver-screenshot 3795 - sydtest-webdriver-yesod 3796 - - sydtest-yesod 3797 - sylvia 3798 - sym-plot 3799 - symantic-atom ··· 3895 - to-string-instances 3896 - toboggan 3897 - todos 3898 - - token-limiter-concurrent 3899 - toktok 3900 - tomlcheck 3901 - tonatona ··· 3977 - typed-admin 3978 - typed-encoding-encoding 3979 - typed-streams 3980 - - typed-uuid 3981 - typelevel 3982 - typelevel-rewrite-rules 3983 - typesafe-precure
··· 338 - Shellac-haskeline 339 - Shellac-readline 340 - ShortestPathProblems 341 - Shpadoinkle-developer-tools 342 - Shpadoinkle-disembodied 343 - Shpadoinkle-examples 344 - Shpadoinkle-router 345 - Shpadoinkle-template 346 - Shpadoinkle-widgets 347 - SimpleGL ··· 643 - apiary-websockets 644 - apis 645 - apotiki 646 - approx-rand-test 647 - arbor-monad-metric-datadog 648 - archive-tar-bytestring ··· 684 - audiovisual 685 - aura 686 - authoring 687 - automata 688 - autonix-deps-kf5 689 - avers ··· 866 - cabal-query 867 - cabal-test 868 - cabal2arch 869 - cabalmdvrpm 870 - cabalrpmdeps 871 - cabocha ··· 910 - categorical-algebra 911 - category 912 - category-extras 913 - cctools-workqueue 914 - cef3-simple 915 - ceilometer-common ··· 1026 - commsec-keyexchange 1027 - comonad-random 1028 - compact-mutable 1029 - compdata-automata 1030 - compdata-dags 1031 - compdata-param ··· 1125 - csv-enumerator 1126 - ctpl 1127 - cube 1128 - curryer-rpc 1129 - cursedcsv 1130 - cv-combinators ··· 1371 - eventsource-stub-store 1372 - every-bit-counts 1373 - exception-monads-fd 1374 - exference 1375 - exinst-aeson 1376 - exinst-bytes ··· 1428 - feed-translator 1429 - feed2lj 1430 - feed2twitter 1431 - fei-base 1432 - fei-dataiter 1433 - fei-datasets ··· 1456 - fixed-point-vector 1457 - fixed-point-vector-space 1458 - fixed-precision 1459 - fixhs 1460 - flac-picture 1461 - flashblast ··· 1554 - geni-util 1555 - geniconvert 1556 - geniserver 1557 - genvalidity-mergeful 1558 - geodetic 1559 - geolite-csv 1560 - getemx ··· 1569 - ghc-session 1570 - ghc-tags-plugin 1571 - ghci-pretty 1572 - ghcjs-dom-webkit 1573 - ghcjs-fetch 1574 - ghcjs-hplay ··· 1934 - hascat-setup 1935 - hascat-system 1936 - hashable-accelerate 1937 - hashflare 1938 - hask-home 1939 - haskades ··· 2176 - hs-ix 2177 - hs-opentelemetry-exporter-in-memory 2178 - hs-opentelemetry-exporter-otlp 2179 + - hs-opentelemetry-instrumentation-cloudflare 2180 - hs-opentelemetry-instrumentation-conduit 2181 - hs-opentelemetry-instrumentation-http-client 2182 - hs-opentelemetry-instrumentation-persistent ··· 2403 - jobqueue 2404 - join 2405 - jordan-openapi 2406 - jsc 2407 - jsmw 2408 - json-ast-json-encoder ··· 2672 - majordomo 2673 - majority 2674 - make-package 2675 + - managed-functions-http-connector 2676 + - managed-functions-json 2677 - manatee 2678 - manatee-all 2679 - manatee-anything ··· 2722 - memis 2723 - memory-hexstring 2724 - mergeful-persistent 2725 - merkle-patricia-db 2726 - meta-par-accelerate 2727 - metaplug ··· 2957 - opc-xml-da-client 2958 - open-adt-tutorial 2959 - openai-hs 2960 - opencv-extra 2961 - openpgp-Crypto 2962 - openpgp-crypto-api ··· 3169 - proto3-wire 3170 - protobuf-native 3171 - protocol-buffers-descriptor-fork 3172 - psc-ide 3173 - psql 3174 - ptera ··· 3420 - runtime-arbitrary 3421 - rv 3422 - s-expression 3423 - safe-coupling 3424 - safe-plugins 3425 - safer-file-handles ··· 3727 - sump 3728 - sunroof-examples 3729 - sunroof-server 3730 - supercollider-ht 3731 - supercollider-midi 3732 - superconstraints ··· 3739 - sweet-egison 3740 - switch 3741 - syb-with-class-instances-text 3742 - sydtest-amqp 3743 - sydtest-webdriver 3744 - sydtest-webdriver-screenshot 3745 - sydtest-webdriver-yesod 3746 - sylvia 3747 - sym-plot 3748 - symantic-atom ··· 3844 - to-string-instances 3845 - toboggan 3846 - todos 3847 - toktok 3848 - tomlcheck 3849 - tonatona ··· 3925 - typed-admin 3926 - typed-encoding-encoding 3927 - typed-streams 3928 - typelevel 3929 - typelevel-rewrite-rules 3930 - typesafe-precure
+581 -433
pkgs/development/haskell-modules/hackage-packages.nix
··· 18626 ]; 18627 description = "A programming model for declarative, high performance user interface"; 18628 license = lib.licenses.bsd3; 18629 - hydraPlatforms = lib.platforms.none; 18630 }) {}; 18631 18632 "Shpadoinkle-backend-pardiff" = callPackage ··· 18646 description = "A Virtual Dom in pure Haskell, based on Html as an Alignable Functor"; 18647 license = lib.licenses.bsd3; 18648 hydraPlatforms = lib.platforms.none; 18649 }) {}; 18650 18651 "Shpadoinkle-backend-snabbdom" = callPackage ··· 18664 description = "Use the high-performance Snabbdom virtual dom library written in JavaScript"; 18665 license = lib.licenses.bsd3; 18666 hydraPlatforms = lib.platforms.none; 18667 }) {}; 18668 18669 "Shpadoinkle-backend-static" = callPackage ··· 18676 description = "A backend for rendering Shpadoinkle as Text"; 18677 license = lib.licenses.bsd3; 18678 hydraPlatforms = lib.platforms.none; 18679 }) {}; 18680 18681 "Shpadoinkle-console" = callPackage ··· 18795 description = "A typed, template generated Html DSL, and helpers"; 18796 license = lib.licenses.bsd3; 18797 hydraPlatforms = lib.platforms.none; 18798 }) {}; 18799 18800 "Shpadoinkle-isreal" = callPackage ··· 18831 libraryHaskellDepends = [ base lens Shpadoinkle text ]; 18832 description = "Lens combinators for Shpadoinkle applications"; 18833 license = lib.licenses.bsd3; 18834 - hydraPlatforms = lib.platforms.none; 18835 }) {}; 18836 18837 "Shpadoinkle-router" = callPackage ··· 18867 libraryHaskellDepends = [ base lens Shpadoinkle streaming text ]; 18868 description = "Integration of the streaming library with Shpadoinkle continuations"; 18869 license = lib.licenses.bsd3; 18870 - hydraPlatforms = lib.platforms.none; 18871 }) {}; 18872 18873 "Shpadoinkle-template" = callPackage ··· 22195 ({ mkDerivation, base, deepseq, random, simple-affine-space }: 22196 mkDerivation { 22197 pname = "Yampa"; 22198 - version = "0.13.4"; 22199 - sha256 = "1qh3fdj82n7s2arwjin1mp5n8jn8p0dan5ll6zbj533j181k8w4p"; 22200 isLibrary = true; 22201 isExecutable = true; 22202 libraryHaskellDepends = [ ··· 23469 }: 23470 mkDerivation { 23471 pname = "acid-state"; 23472 - version = "0.16.1"; 23473 - sha256 = "1fvcx96y7cin7f39asa130q8j2z39l61ibff98vmkhqwxiys4z4h"; 23474 - revision = "1"; 23475 - editedCabalFile = "03md28vq6j63h5jxvlzvx106c4xd0c64zvd6ar56icpb14qk52q9"; 23476 - isLibrary = true; 23477 - isExecutable = true; 23478 - libraryHaskellDepends = [ 23479 - array base bytestring cereal containers directory filelock filepath 23480 - mtl network network-bsd safecopy stm template-haskell 23481 - th-expand-syns unix 23482 - ]; 23483 - executableHaskellDepends = [ base directory ]; 23484 - testHaskellDepends = [ 23485 - base cereal containers deepseq directory hedgehog hspec 23486 - hspec-discover mtl network safecopy template-haskell text time 23487 - ]; 23488 - testToolDepends = [ hspec-discover ]; 23489 - benchmarkHaskellDepends = [ 23490 - base criterion directory mtl random system-fileio system-filepath 23491 - ]; 23492 - description = "Add ACID guarantees to any serializable Haskell data structure"; 23493 - license = lib.licenses.publicDomain; 23494 - }) {}; 23495 - 23496 - "acid-state_0_16_1_1" = callPackage 23497 - ({ mkDerivation, array, base, bytestring, cereal, containers 23498 - , criterion, deepseq, directory, filelock, filepath, hedgehog 23499 - , hspec, hspec-discover, mtl, network, network-bsd, random 23500 - , safecopy, stm, system-fileio, system-filepath, template-haskell 23501 - , text, th-expand-syns, time, unix 23502 - }: 23503 - mkDerivation { 23504 - pname = "acid-state"; 23505 version = "0.16.1.1"; 23506 sha256 = "05hcbk5dhwygc29b1jbyh2zzjrxybm44hj02wmv2bhz04b5wldca"; 23507 isLibrary = true; ··· 23522 ]; 23523 description = "Add ACID guarantees to any serializable Haskell data structure"; 23524 license = lib.licenses.publicDomain; 23525 - hydraPlatforms = lib.platforms.none; 23526 }) {}; 23527 23528 "acid-state-dist" = callPackage ··· 32581 QuickCheck text validity 32582 ]; 32583 license = lib.licenses.mit; 32584 - hydraPlatforms = lib.platforms.none; 32585 }) {}; 32586 32587 "appendmap" = callPackage ··· 36772 testHaskellDepends = [ base doctest ]; 36773 description = "Self-documenting encoder and decoder"; 36774 license = lib.licenses.mit; 36775 - hydraPlatforms = lib.platforms.none; 36776 - broken = true; 36777 }) {}; 36778 36779 "autodocodec-openapi3" = callPackage ··· 36791 ]; 36792 description = "Autodocodec interpreters for openapi3"; 36793 license = lib.licenses.mit; 36794 - hydraPlatforms = lib.platforms.none; 36795 }) {}; 36796 36797 "autodocodec-schema" = callPackage ··· 36809 ]; 36810 description = "Autodocodec interpreters for JSON Schema"; 36811 license = lib.licenses.mit; 36812 - hydraPlatforms = lib.platforms.none; 36813 }) {}; 36814 36815 "autodocodec-swagger2" = callPackage ··· 36826 ]; 36827 description = "Autodocodec interpreters for swagger2"; 36828 license = lib.licenses.mit; 36829 - hydraPlatforms = lib.platforms.none; 36830 }) {}; 36831 36832 "autodocodec-yaml" = callPackage ··· 36845 ]; 36846 description = "Autodocodec interpreters for yaml"; 36847 license = lib.licenses.mit; 36848 - hydraPlatforms = lib.platforms.none; 36849 }) {}; 36850 36851 "autoexporter" = callPackage ··· 38154 38155 "aws-sns-verify" = callPackage 38156 ({ mkDerivation, aeson, aeson-qq, async, base, bytestring, errors 38157 - , hspec, http-conduit, http-types, memory, pem, text, wai, warp 38158 - , x509, x509-validation 38159 }: 38160 mkDerivation { 38161 pname = "aws-sns-verify"; 38162 - version = "0.0.0.1"; 38163 - sha256 = "1ayn2176y3011xf4n0axfnlaa9ysy2xdsqszmkhf3yszlkkrhmqi"; 38164 libraryHaskellDepends = [ 38165 - aeson base bytestring errors http-conduit memory pem text x509 38166 - x509-validation 38167 ]; 38168 testHaskellDepends = [ 38169 - aeson-qq async base hspec http-types text wai warp x509-validation 38170 ]; 38171 description = "Parse and verify AWS SNS messages"; 38172 license = lib.licenses.mit; ··· 45542 }: 45543 mkDerivation { 45544 pname = "blockfrost-api"; 45545 - version = "0.4.0.1"; 45546 - sha256 = "0bz3m6zmmwjj4g6d7h33calljmkhqgxb4la4xgrk309qxpk6sbcj"; 45547 libraryHaskellDepends = [ 45548 aeson base bytestring data-default-class deriving-aeson lens 45549 QuickCheck quickcheck-instances safe-money servant servant-docs ··· 45568 }: 45569 mkDerivation { 45570 pname = "blockfrost-client"; 45571 - version = "0.4.0.1"; 45572 - sha256 = "09gk90sic9dnqp2ybvg9vqaha6lblbd3940cdhqri1v8nc6s2i9g"; 45573 isLibrary = true; 45574 isExecutable = true; 45575 libraryHaskellDepends = [ ··· 45584 description = "blockfrost.io basic client"; 45585 license = lib.licenses.asl20; 45586 hydraPlatforms = lib.platforms.none; 45587 }) {}; 45588 45589 "blockfrost-client-core" = callPackage ··· 45595 }: 45596 mkDerivation { 45597 pname = "blockfrost-client-core"; 45598 - version = "0.4.0.1"; 45599 - sha256 = "0zlcdkvw8qpm0hiy7nyvyxhndbyv6nc5hfd5c7cdv0qighh4s5if"; 45600 libraryHaskellDepends = [ 45601 aeson base blockfrost-api bytestring case-insensitive containers 45602 data-default http-client http-client-tls http-types servant ··· 51421 description = "Turn a .cabal file into a .json file"; 51422 license = lib.licenses.mit; 51423 hydraPlatforms = lib.platforms.none; 51424 }) {}; 51425 51426 "cabal2nix" = callPackage ··· 52347 pname = "call-alloy"; 52348 version = "0.3"; 52349 sha256 = "0pf6zdx201pkdzj3iccwj9k3bi0qabpmsn0sfn27mcwdgksn2q7p"; 52350 libraryHaskellDepends = [ 52351 base bytestring containers directory extra file-embed filepath 52352 hashable mtl process split trifecta unix ··· 54268 ]; 54269 license = lib.licenses.bsd3; 54270 hydraPlatforms = lib.platforms.none; 54271 }) {}; 54272 54273 "cayene-lpp" = callPackage ··· 56150 }) {}; 56151 56152 "chez-grater" = callPackage 56153 - ({ mkDerivation, aeson, attoparsec, base, bytestring 56154 , case-insensitive, containers, file-embed, file-path-th, hashable 56155 , hspec, http-client, http-client-tls, http-types, network-uri 56156 - , QuickCheck, scalpel, text, unordered-containers 56157 }: 56158 mkDerivation { 56159 pname = "chez-grater"; 56160 - version = "0.0.2"; 56161 - sha256 = "1f7v362b6wbjz7j77r7mhi0942qzds7h7aibss8c3w1l6d3d62r2"; 56162 libraryHaskellDepends = [ 56163 aeson attoparsec base case-insensitive containers hashable 56164 - http-client http-client-tls http-types network-uri scalpel text 56165 - unordered-containers 56166 ]; 56167 testHaskellDepends = [ 56168 attoparsec base bytestring case-insensitive containers file-embed 56169 - file-path-th hspec http-client network-uri QuickCheck text 56170 ]; 56171 description = "Parse and scrape recipe blogs"; 56172 license = lib.licenses.mit; ··· 61760 }: 61761 mkDerivation { 61762 pname = "commonmark-extensions"; 61763 - version = "0.2.3.1"; 61764 - sha256 = "1hnhaxw7mpsbcgqz1vlxy0xnnkgh590hi6gv1wk5fw1j12viqdzi"; 61765 - libraryHaskellDepends = [ 61766 - base commonmark containers emojis filepath network-uri parsec text 61767 - transformers 61768 - ]; 61769 - testHaskellDepends = [ 61770 - base commonmark parsec tasty tasty-hunit text 61771 - ]; 61772 - benchmarkHaskellDepends = [ base commonmark tasty-bench text ]; 61773 - description = "Pure Haskell commonmark parser"; 61774 - license = lib.licenses.bsd3; 61775 - }) {}; 61776 - 61777 - "commonmark-extensions_0_2_3_2" = callPackage 61778 - ({ mkDerivation, base, commonmark, containers, emojis, filepath 61779 - , network-uri, parsec, tasty, tasty-bench, tasty-hunit, text 61780 - , transformers 61781 - }: 61782 - mkDerivation { 61783 - pname = "commonmark-extensions"; 61784 version = "0.2.3.2"; 61785 sha256 = "1k5rlh2grg6g1waszhp565m360n1iynjvbkjz8xmap8y234g1bjj"; 61786 libraryHaskellDepends = [ ··· 61793 benchmarkHaskellDepends = [ base commonmark tasty-bench text ]; 61794 description = "Pure Haskell commonmark parser"; 61795 license = lib.licenses.bsd3; 61796 - hydraPlatforms = lib.platforms.none; 61797 }) {}; 61798 61799 "commonmark-pandoc" = callPackage ··· 62184 ]; 62185 description = "A typeclass for structures which can be catMaybed, filtered, and partitioned"; 62186 license = lib.licenses.bsd3; 62187 - hydraPlatforms = lib.platforms.none; 62188 }) {}; 62189 62190 "compactmap" = callPackage ··· 62762 }: 62763 mkDerivation { 62764 pname = "composite-ekg"; 62765 - version = "0.7.5.0"; 62766 - sha256 = "00a689laq9a2wyq33vvpw7l69wsw9g6d5jzmrsizwqld6a4wdicv"; 62767 libraryHaskellDepends = [ 62768 base composite-base ekg-core lens text vinyl 62769 ]; ··· 66884 license = lib.licenses.mit; 66885 }) {}; 66886 66887 "core-haskell" = callPackage 66888 ({ mkDerivation, base, haskeline, haskell-src-exts, hint }: 66889 mkDerivation { ··· 66922 license = lib.licenses.mit; 66923 }) {}; 66924 66925 "core-telemetry" = callPackage 66926 - ({ mkDerivation, async, base, bytestring, chronologique, core-data 66927 - , core-program, core-text, exceptions, http-streams, io-streams 66928 - , mtl, network-info, random, safe-exceptions, scientific, stm 66929 , template-haskell, text, unix 66930 }: 66931 mkDerivation { 66932 pname = "core-telemetry"; 66933 - version = "0.2.3.0"; 66934 - sha256 = "0ln0xhpdq2jvx5xqva0crmqn7zmnav864f3bb9hb3pcjfiilgavg"; 66935 libraryHaskellDepends = [ 66936 - async base bytestring chronologique core-data core-program 66937 - core-text exceptions http-streams io-streams mtl network-info 66938 - random safe-exceptions scientific stm template-haskell text unix 66939 ]; 66940 description = "Advanced telemetry"; 66941 license = lib.licenses.mit; 66942 }) {}; 66943 66944 "core-text" = callPackage ··· 66958 license = lib.licenses.mit; 66959 }) {}; 66960 66961 "core-warn" = callPackage 66962 ({ mkDerivation, base, containers, containers-good-graph, ghc, syb 66963 }: ··· 66980 }: 66981 mkDerivation { 66982 pname = "core-webserver-servant"; 66983 - version = "0.1.1.1"; 66984 - sha256 = "1mbrpm90i0y63h7mkk3chn4mwwyb1bnbywr6crki0j230cy3b294"; 66985 libraryHaskellDepends = [ 66986 base core-program core-telemetry core-webserver-warp mtl 66987 safe-exceptions servant servant-server vault wai ··· 70280 description = "Haskell Implementation of Cuckoo Filters"; 70281 license = lib.licenses.bsd3; 70282 hydraPlatforms = lib.platforms.none; 70283 }) {}; 70284 70285 "cuckoo-filter" = callPackage ··· 72828 libraryHaskellDepends = [ base mtl template-haskell ]; 72829 description = "Simple lenses, minimum dependencies"; 72830 license = lib.licenses.mit; 72831 }) {}; 72832 72833 "data-lens-template" = callPackage ··· 79662 79663 "direct-sqlite" = callPackage 79664 ({ mkDerivation, base, base16-bytestring, bytestring, directory 79665 - , HUnit, semigroups, temporary, text 79666 - }: 79667 - mkDerivation { 79668 - pname = "direct-sqlite"; 79669 - version = "2.3.26"; 79670 - sha256 = "1z7rwaqhxl9hagbcndg3dkqysr5n2bcz2jrrvdl9pdi905x2663y"; 79671 - libraryHaskellDepends = [ base bytestring semigroups text ]; 79672 - testHaskellDepends = [ 79673 - base base16-bytestring bytestring directory HUnit temporary text 79674 - ]; 79675 - description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support."; 79676 - license = lib.licenses.bsd3; 79677 - }) {}; 79678 - 79679 - "direct-sqlite_2_3_27" = callPackage 79680 - ({ mkDerivation, base, base16-bytestring, bytestring, directory 79681 , HUnit, temporary, text 79682 }: 79683 mkDerivation { ··· 79690 ]; 79691 description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support."; 79692 license = lib.licenses.bsd3; 79693 - hydraPlatforms = lib.platforms.none; 79694 }) {}; 79695 79696 "directed-cubical" = callPackage ··· 89598 }: 89599 mkDerivation { 89600 pname = "esqueleto"; 89601 - version = "3.5.4.1"; 89602 - sha256 = "05jnsaxmc5y1mh6n52agv9rfh6s11fidd30mr5f1f53568dw9c95"; 89603 - libraryHaskellDepends = [ 89604 - aeson attoparsec base blaze-html bytestring conduit containers 89605 - monad-logger persistent resourcet tagged text time transformers 89606 - unliftio unordered-containers 89607 - ]; 89608 - testHaskellDepends = [ 89609 - aeson attoparsec base blaze-html bytestring conduit containers 89610 - exceptions hspec hspec-core monad-logger mtl mysql mysql-simple 89611 - persistent persistent-mysql persistent-postgresql persistent-sqlite 89612 - postgresql-simple QuickCheck resourcet tagged text time 89613 - transformers unliftio unordered-containers 89614 - ]; 89615 - description = "Type-safe EDSL for SQL queries on persistent backends"; 89616 - license = lib.licenses.bsd3; 89617 - }) {}; 89618 - 89619 - "esqueleto_3_5_5_0" = callPackage 89620 - ({ mkDerivation, aeson, attoparsec, base, blaze-html, bytestring 89621 - , conduit, containers, exceptions, hspec, hspec-core, monad-logger 89622 - , mtl, mysql, mysql-simple, persistent, persistent-mysql 89623 - , persistent-postgresql, persistent-sqlite, postgresql-simple 89624 - , QuickCheck, resourcet, tagged, text, time, transformers, unliftio 89625 - , unordered-containers 89626 - }: 89627 - mkDerivation { 89628 - pname = "esqueleto"; 89629 version = "3.5.5.0"; 89630 sha256 = "0ba90p3cqyr0l447dw2xzrk2fs6xv5b2c79rqsnj0bchpsigj8a0"; 89631 libraryHaskellDepends = [ ··· 89642 ]; 89643 description = "Type-safe EDSL for SQL queries on persistent backends"; 89644 license = lib.licenses.bsd3; 89645 - hydraPlatforms = lib.platforms.none; 89646 }) {}; 89647 89648 "esqueleto-pgcrypto" = callPackage ··· 91281 description = "A Haskell client for https://exchangeratesapi.io/"; 91282 license = lib.licenses.bsd3; 91283 hydraPlatforms = lib.platforms.none; 91284 }) {}; 91285 91286 "execs" = callPackage ··· 94577 executableHaskellDepends = [ base ]; 94578 description = "Declarative feedback loop manager"; 94579 license = lib.licenses.gpl3Only; 94580 - hydraPlatforms = lib.platforms.none; 94581 }) {}; 94582 94583 "fei-base" = callPackage ··· 96784 description = "A Haskell client for http://fixer.io/"; 96785 license = lib.licenses.bsd3; 96786 hydraPlatforms = lib.platforms.none; 96787 }) {}; 96788 96789 "fixfile" = callPackage ··· 99796 broken = true; 99797 }) {}; 99798 99799 "freckle-app" = callPackage 99800 ({ mkDerivation, aeson, ansi-terminal, base, bugsnag, bytestring 99801 , case-insensitive, conduit, containers, data-default, datadog ··· 104612 ]; 104613 description = "GenValidity support for aeson"; 104614 license = lib.licenses.mit; 104615 - hydraPlatforms = lib.platforms.none; 104616 }) {}; 104617 104618 "genvalidity-appendful" = callPackage ··· 104638 appendful base criterion genvalidity-criterion 104639 ]; 104640 license = lib.licenses.mit; 104641 - hydraPlatforms = lib.platforms.none; 104642 }) {}; 104643 104644 "genvalidity-bytestring" = callPackage ··· 104769 ]; 104770 description = "Standard spec's for aeson-related instances"; 104771 license = lib.licenses.mit; 104772 - hydraPlatforms = lib.platforms.none; 104773 }) {}; 104774 104775 "genvalidity-hspec-binary" = callPackage ··· 104921 base criterion genvalidity-criterion mergeless 104922 ]; 104923 license = lib.licenses.mit; 104924 - hydraPlatforms = lib.platforms.none; 104925 }) {}; 104926 104927 "genvalidity-path" = callPackage ··· 105019 testToolDepends = [ sydtest-discover ]; 105020 description = "Standard properties for functions on `Validity` types for the sydtest framework"; 105021 license = lib.licenses.mit; 105022 - hydraPlatforms = lib.platforms.none; 105023 }) {}; 105024 105025 "genvalidity-sydtest-aeson" = callPackage ··· 105042 testToolDepends = [ sydtest-discover ]; 105043 description = "Standard spec's for aeson-related instances in sydtest"; 105044 license = lib.licenses.mit; 105045 - hydraPlatforms = lib.platforms.none; 105046 }) {}; 105047 105048 "genvalidity-sydtest-hashable" = callPackage ··· 105064 testToolDepends = [ sydtest-discover ]; 105065 description = "Standard spec's for Hashable instances for sydtest"; 105066 license = lib.licenses.mit; 105067 - hydraPlatforms = lib.platforms.none; 105068 }) {}; 105069 105070 "genvalidity-sydtest-lens" = callPackage ··· 105084 testToolDepends = [ sydtest-discover ]; 105085 description = "Standard spec's for lens for sydtest"; 105086 license = lib.licenses.mit; 105087 - hydraPlatforms = lib.platforms.none; 105088 }) {}; 105089 105090 "genvalidity-sydtest-persistent" = callPackage ··· 105107 testToolDepends = [ sydtest-discover ]; 105108 description = "Standard spec's for persistent-related instances for sydtest"; 105109 license = lib.licenses.mit; 105110 - hydraPlatforms = lib.platforms.none; 105111 }) {}; 105112 105113 "genvalidity-text" = callPackage ··· 105175 ]; 105176 description = "Generators for Phantom-Typed version of UUID"; 105177 license = lib.licenses.mit; 105178 - hydraPlatforms = lib.platforms.none; 105179 }) {}; 105180 105181 "genvalidity-unordered-containers" = callPackage ··· 106555 license = lib.licenses.bsd3; 106556 }) {}; 106557 106558 - "ghc-lib-parser-ex_9_2_0_4" = callPackage 106559 ({ mkDerivation, base, bytestring, containers, directory, extra 106560 , filepath, ghc-lib-parser, tasty, tasty-hunit, uniplate 106561 }: 106562 mkDerivation { 106563 pname = "ghc-lib-parser-ex"; 106564 - version = "9.2.0.4"; 106565 - sha256 = "138wkpy7qpdkp07028flab3lwq4b3mns0qcrkfrhclixlz8pi74v"; 106566 libraryHaskellDepends = [ 106567 base bytestring containers ghc-lib-parser uniplate 106568 ]; ··· 107663 platforms = [ 107664 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 107665 ]; 107666 - hydraPlatforms = lib.platforms.none; 107667 }) {}; 107668 107669 "ghcjs-dom-jsaddle" = callPackage ··· 123467 benchmarkSystemDepends = [ openssl ]; 123468 description = "Hash functions"; 123469 license = lib.licenses.mit; 123470 - hydraPlatforms = lib.platforms.none; 123471 }) {inherit (pkgs) openssl;}; 123472 123473 "hashflare" = callPackage ··· 127828 }: 127829 mkDerivation { 127830 pname = "hasql"; 127831 - version = "1.5.0.2"; 127832 - sha256 = "1f9faq0f2bilylc0rd64s0icrp086qb0q70w4z4vih2hs0sx6fs0"; 127833 - libraryHaskellDepends = [ 127834 - attoparsec base bytestring bytestring-strict-builder contravariant 127835 - dlist hashable hashtables mtl postgresql-binary postgresql-libpq 127836 - profunctors text text-builder transformers vector 127837 - ]; 127838 - testHaskellDepends = [ 127839 - contravariant-extras QuickCheck quickcheck-instances rerebase tasty 127840 - tasty-hunit tasty-quickcheck 127841 - ]; 127842 - benchmarkHaskellDepends = [ gauge rerebase ]; 127843 - description = "An efficient PostgreSQL driver with a flexible mapping API"; 127844 - license = lib.licenses.mit; 127845 - }) {}; 127846 - 127847 - "hasql_1_5_0_3" = callPackage 127848 - ({ mkDerivation, attoparsec, base, bytestring 127849 - , bytestring-strict-builder, contravariant, contravariant-extras 127850 - , dlist, gauge, hashable, hashtables, mtl, postgresql-binary 127851 - , postgresql-libpq, profunctors, QuickCheck, quickcheck-instances 127852 - , rerebase, tasty, tasty-hunit, tasty-quickcheck, text 127853 - , text-builder, transformers, vector 127854 - }: 127855 - mkDerivation { 127856 - pname = "hasql"; 127857 version = "1.5.0.3"; 127858 sha256 = "1ai1vq1l58r4k6ri78gl0zlbc4sgkp3mcyi2dsm37f7ah9r38hsz"; 127859 libraryHaskellDepends = [ ··· 127868 benchmarkHaskellDepends = [ gauge rerebase ]; 127869 description = "An efficient PostgreSQL driver with a flexible mapping API"; 127870 license = lib.licenses.mit; 127871 - hydraPlatforms = lib.platforms.none; 127872 }) {}; 127873 127874 "hasql-backend" = callPackage ··· 128075 }) {}; 128076 128077 "hasql-notifications" = callPackage 128078 - ({ mkDerivation, base, bytestring, contravariant, hasql, hasql-pool 128079 - , hspec, postgresql-libpq, QuickCheck, text 128080 - }: 128081 - mkDerivation { 128082 - pname = "hasql-notifications"; 128083 - version = "0.2.0.0"; 128084 - sha256 = "1zizvdvhb0nd126k24j4k62lzkx3qh1vp4976f2n7ri7ga5y6cxi"; 128085 - isLibrary = true; 128086 - isExecutable = true; 128087 - libraryHaskellDepends = [ 128088 - base bytestring contravariant hasql hasql-pool postgresql-libpq 128089 - text 128090 - ]; 128091 - executableHaskellDepends = [ base hasql ]; 128092 - testHaskellDepends = [ base bytestring hasql hspec QuickCheck ]; 128093 - description = "LISTEN/NOTIFY support for Hasql"; 128094 - license = lib.licenses.bsd3; 128095 - }) {}; 128096 - 128097 - "hasql-notifications_0_2_0_1" = callPackage 128098 ({ mkDerivation, base, bytestring, hasql, hasql-pool, hspec 128099 , postgresql-libpq, QuickCheck, text 128100 }: ··· 128111 testHaskellDepends = [ base bytestring hasql hspec QuickCheck ]; 128112 description = "LISTEN/NOTIFY support for Hasql"; 128113 license = lib.licenses.bsd3; 128114 - hydraPlatforms = lib.platforms.none; 128115 }) {}; 128116 128117 "hasql-optparse-applicative" = callPackage ··· 128120 }: 128121 mkDerivation { 128122 pname = "hasql-optparse-applicative"; 128123 - version = "0.3.0.8"; 128124 - sha256 = "1yx56vi1dpymxk5c3rkk74bbghcxfp6x333xn2j4x2ls38676dvg"; 128125 libraryHaskellDepends = [ 128126 base-prelude hasql hasql-pool optparse-applicative 128127 ]; ··· 134299 benchmarkHaskellDepends = [ base criterion ]; 134300 description = "Command line tool for highlighting parts of files matching a regex"; 134301 license = lib.licenses.bsd3; 134302 - hydraPlatforms = lib.platforms.none; 134303 - broken = true; 134304 }) {}; 134305 134306 "highlight-versions" = callPackage ··· 135824 maintainers = with lib.maintainers; [ peti ]; 135825 }) {}; 135826 135827 "hledger-api" = callPackage 135828 ({ mkDerivation, aeson, base, bytestring, containers, data-default 135829 , Decimal, docopt, either, hledger, hledger-lib, microlens ··· 135961 maintainers = with lib.maintainers; [ peti ]; 135962 }) {}; 135963 135964 "hledger-irr" = callPackage 135965 ({ mkDerivation, base, Cabal, data-default-class, Decimal 135966 , hledger-lib, math-functions, text, time ··· 136017 license = lib.licenses.gpl3Only; 136018 }) {}; 136019 136020 "hledger-makeitso" = callPackage 136021 ({ mkDerivation, base, containers, foldl, HUnit, stm, text, time 136022 , turtle ··· 136088 ]; 136089 description = "Curses-style terminal interface for the hledger accounting system"; 136090 license = lib.licenses.gpl3Only; 136091 maintainers = with lib.maintainers; [ peti ]; 136092 }) {}; 136093 ··· 136146 maintainers = with lib.maintainers; [ peti ]; 136147 }) {}; 136148 136149 "hlibBladeRF" = callPackage 136150 ({ mkDerivation, base, bindings-DSL, bytestring, hlint, libbladeRF 136151 }: ··· 137758 ]; 137759 description = "Haskell implementation of the Nix language"; 137760 license = lib.licenses.bsd3; 137761 - maintainers = with lib.maintainers; [ Anton-Latukha ]; 137762 }) {}; 137763 137764 "hnix_0_16_0" = callPackage ··· 137813 description = "Haskell implementation of the Nix language"; 137814 license = lib.licenses.bsd3; 137815 hydraPlatforms = lib.platforms.none; 137816 - maintainers = with lib.maintainers; [ Anton-Latukha ]; 137817 }) {}; 137818 137819 - "hnix-store-core" = callPackage 137820 ({ mkDerivation, algebraic-graphs, attoparsec, base 137821 , base16-bytestring, base64-bytestring, binary, bytestring, cereal 137822 , containers, cryptonite, directory, filepath, hashable, hspec ··· 137846 testToolDepends = [ tasty-discover ]; 137847 description = "Core effects for interacting with the Nix store"; 137848 license = lib.licenses.asl20; 137849 - maintainers = with lib.maintainers; [ Anton-Latukha ]; 137850 }) {}; 137851 137852 - "hnix-store-remote" = callPackage 137853 ({ mkDerivation, attoparsec, base, binary, bytestring, containers 137854 , cryptonite, hnix-store-core, mtl, network, nix-derivation, text 137855 , time, unordered-containers ··· 137865 ]; 137866 description = "Remote hnix store"; 137867 license = lib.licenses.asl20; 137868 - maintainers = with lib.maintainers; [ Anton-Latukha ]; 137869 }) {}; 137870 137871 "hnn" = callPackage ··· 141497 }: 141498 mkDerivation { 141499 pname = "hs-opentelemetry-api"; 141500 - version = "0.0.3.4"; 141501 - sha256 = "0qg5kaybxax632nbj6qjrn02j1c954kpw5xv3yqsysdqqcqxw6bg"; 141502 libraryHaskellDepends = [ 141503 async attoparsec base binary bytestring charset clock containers 141504 ghc-prim hashable http-types memory mtl template-haskell text ··· 141554 mtl proto-lens text unordered-containers vector vector-builder zlib 141555 ]; 141556 description = "OpenTelemetry exporter supporting the standard OTLP protocol"; 141557 license = lib.licenses.bsd3; 141558 hydraPlatforms = lib.platforms.none; 141559 }) {}; ··· 141662 }: 141663 mkDerivation { 141664 pname = "hs-opentelemetry-instrumentation-yesod"; 141665 - version = "0.0.1.2"; 141666 - sha256 = "01rcd2mxm7g0c9sqw0m4z779py4d7p3zq01yw2499yhn75c9akya"; 141667 libraryHaskellDepends = [ 141668 base hs-opentelemetry-api hs-opentelemetry-instrumentation-wai 141669 microlens mtl template-haskell text unliftio wai yesod-core ··· 153900 benchmarkHaskellDepends = [ base criterion parsec ]; 153901 description = "A math-inspired programmatic 2D & 3D CAD system"; 153902 license = lib.licenses.agpl3Only; 153903 }) {}; 153904 153905 "implicit-hie" = callPackage ··· 160299 ]; 160300 description = "JSaddle Hello World, an example package"; 160301 license = lib.licenses.mit; 160302 - hydraPlatforms = lib.platforms.none; 160303 }) {}; 160304 160305 "jsaddle-warp" = callPackage ··· 160326 ]; 160327 description = "Interface for JavaScript that works with GHCJS and GHC"; 160328 license = lib.licenses.mit; 160329 - hydraPlatforms = lib.platforms.none; 160330 - broken = true; 160331 }) {}; 160332 160333 "jsaddle-webkit2gtk" = callPackage ··· 161407 }: 161408 mkDerivation { 161409 pname = "jsonifier"; 161410 - version = "0.2.0.1"; 161411 - sha256 = "1i2qd8lingj9f35j6zzxfq0xlx115mdaxi1rwj8d5jzvlqczd24s"; 161412 - libraryHaskellDepends = [ 161413 - base bytestring ptr-poker scientific text 161414 - ]; 161415 - testHaskellDepends = [ aeson hedgehog numeric-limits rerebase ]; 161416 - benchmarkHaskellDepends = [ 161417 - aeson buffer-builder gauge rerebase text-builder 161418 - ]; 161419 - description = "Fast and simple JSON encoding toolkit"; 161420 - license = lib.licenses.mit; 161421 - }) {}; 161422 - 161423 - "jsonifier_0_2_1_1" = callPackage 161424 - ({ mkDerivation, aeson, base, buffer-builder, bytestring, gauge 161425 - , hedgehog, numeric-limits, ptr-poker, rerebase, scientific, text 161426 - , text-builder 161427 - }: 161428 - mkDerivation { 161429 - pname = "jsonifier"; 161430 version = "0.2.1.1"; 161431 sha256 = "0wih0m3g2wj06zwl2wbs9y2bfbc593vmh25imy6hki2iq7wwr3l0"; 161432 libraryHaskellDepends = [ ··· 161438 ]; 161439 description = "Fast and simple JSON encoding toolkit"; 161440 license = lib.licenses.mit; 161441 - hydraPlatforms = lib.platforms.none; 161442 }) {}; 161443 161444 "jsonl" = callPackage ··· 162854 license = lib.licenses.bsd3; 162855 }) {}; 162856 162857 "katt" = callPackage 162858 ({ mkDerivation, aeson, base, bytestring, ConfigFile, containers 162859 , directory, errors, filepath, lens, mtl, parsec, text, url, wreq ··· 164037 164038 "keystore" = callPackage 164039 ({ mkDerivation, aeson, aeson-pretty, ansi-wl-pprint, api-tools 164040 - , asn1-encoding, asn1-types, base, base64-bytestring, byteable 164041 - , bytestring, cipher-aes, containers, crypto-pubkey, crypto-random 164042 - , directory, filepath, lens, mtl, old-locale, optparse-applicative 164043 - , pbkdf, process, raw-strings-qq, regex, regex-compat-tdfa, safe 164044 - , setenv, text, time, unordered-containers, vector 164045 }: 164046 mkDerivation { 164047 pname = "keystore"; 164048 - version = "0.8.2.0"; 164049 - sha256 = "1y91mdy9gpzwxcf2h9s4afs9lzyxrffq4qhrip0ygvyd8qr8x95m"; 164050 isLibrary = true; 164051 isExecutable = true; 164052 enableSeparateDataOutput = true; 164053 libraryHaskellDepends = [ 164054 - aeson aeson-pretty ansi-wl-pprint api-tools asn1-encoding 164055 - asn1-types base base64-bytestring byteable bytestring cipher-aes 164056 - containers crypto-pubkey crypto-random directory filepath lens mtl 164057 - old-locale optparse-applicative pbkdf regex regex-compat-tdfa safe 164058 - setenv text time unordered-containers vector 164059 ]; 164060 executableHaskellDepends = [ 164061 aeson ansi-wl-pprint api-tools base bytestring directory filepath ··· 177276 isExecutable = true; 177277 description = "The Lazy Virtual Machine (LVM) Runtime System"; 177278 license = "LGPL"; 177279 }) {}; 177280 177281 "lxc" = callPackage ··· 178642 maintainers = with lib.maintainers; [ Gabriel439 ]; 178643 }) {}; 178644 178645 "manatee" = callPackage 178646 ({ mkDerivation, base, binary, cairo, containers, dbus-client 178647 , dbus-core, derive, directory, filepath, gtk, gtk-serialized-event ··· 182298 description = "Support for using mergeless from persistent-based databases"; 182299 license = lib.licenses.mit; 182300 hydraPlatforms = lib.platforms.none; 182301 }) {}; 182302 182303 "merkle-log" = callPackage ··· 192429 }: 192430 mkDerivation { 192431 pname = "mysql-simple"; 192432 - version = "0.4.8"; 192433 - sha256 = "077psr65rszk06bxx67bhvfk8ajmsr56bwynx7d57lqdvzvm4691"; 192434 - libraryHaskellDepends = [ 192435 - attoparsec base base16-bytestring blaze-builder bytestring 192436 - containers mysql old-locale pcre-light text time vector 192437 - ]; 192438 - testHaskellDepends = [ 192439 - base blaze-builder bytestring hspec mysql text time 192440 - ]; 192441 - description = "A mid-level MySQL client library"; 192442 - license = lib.licenses.bsd3; 192443 - }) {}; 192444 - 192445 - "mysql-simple_0_4_8_1" = callPackage 192446 - ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder 192447 - , bytestring, containers, hspec, mysql, old-locale, pcre-light 192448 - , text, time, vector 192449 - }: 192450 - mkDerivation { 192451 - pname = "mysql-simple"; 192452 version = "0.4.8.1"; 192453 sha256 = "18w6mp7s1dmvwzqdgdzywhp5li3h4kisrhgxllwi578nddwg2yx3"; 192454 libraryHaskellDepends = [ ··· 192460 ]; 192461 description = "A mid-level MySQL client library"; 192462 license = lib.licenses.bsd3; 192463 - hydraPlatforms = lib.platforms.none; 192464 }) {}; 192465 192466 "mysql-simple-quasi" = callPackage ··· 196782 ]; 196783 description = "Explain why two Nix derivations differ"; 196784 license = lib.licenses.bsd3; 196785 - maintainers = with lib.maintainers; [ Gabriel439 terlar ]; 196786 }) {}; 196787 196788 "nix-eval" = callPackage ··· 199253 pname = "nvim-hs"; 199254 version = "2.2.0.1"; 199255 sha256 = "1jj9n792cgv964rpgbbhc491wvyfyiplsg30n20x62gxclmjvir7"; 199256 libraryHaskellDepends = [ 199257 base bytestring cereal cereal-conduit conduit containers 199258 data-default deepseq foreign-store hslogger megaparsec messagepack ··· 199277 license = lib.licenses.asl20; 199278 }) {}; 199279 199280 "nvim-hs-contrib" = callPackage 199281 ({ mkDerivation, base, bytestring, data-default, directory 199282 , filepath, hspec, hspec-discover, messagepack, mtl, nvim-hs ··· 201302 description = "OpenAPI3 Haskell Client Code Generator"; 201303 license = lib.licenses.mit; 201304 hydraPlatforms = lib.platforms.none; 201305 }) {}; 201306 201307 "opencc" = callPackage ··· 205171 }: 205172 mkDerivation { 205173 pname = "pandoc-lua-marshal"; 205174 - version = "0.1.5.1"; 205175 - sha256 = "0hj55m6mqxap8vkn1r2w09myrnrxc7j8q7gwqvbpmik9s8g9s89f"; 205176 - libraryHaskellDepends = [ 205177 - base bytestring containers exceptions hslua hslua-marshalling lua 205178 - pandoc-types safe text 205179 - ]; 205180 - testHaskellDepends = [ 205181 - base bytestring containers exceptions hslua hslua-marshalling lua 205182 - pandoc-types QuickCheck safe tasty tasty-hunit tasty-lua 205183 - tasty-quickcheck text 205184 - ]; 205185 - description = "Use pandoc types in Lua"; 205186 - license = lib.licenses.mit; 205187 - }) {}; 205188 - 205189 - "pandoc-lua-marshal_0_1_6" = callPackage 205190 - ({ mkDerivation, base, bytestring, containers, exceptions, hslua 205191 - , hslua-marshalling, lua, pandoc-types, QuickCheck, safe, tasty 205192 - , tasty-hunit, tasty-lua, tasty-quickcheck, text 205193 - }: 205194 - mkDerivation { 205195 - pname = "pandoc-lua-marshal"; 205196 version = "0.1.6"; 205197 sha256 = "1z7hwvqaspapv97l36gq975cmhn11q0z2h1axz33bml7zf2z4bwc"; 205198 libraryHaskellDepends = [ ··· 205206 ]; 205207 description = "Use pandoc types in Lua"; 205208 license = lib.licenses.mit; 205209 - hydraPlatforms = lib.platforms.none; 205210 }) {}; 205211 205212 "pandoc-markdown-ghci-filter" = callPackage ··· 212686 }: 212687 mkDerivation { 212688 pname = "pinned-warnings"; 212689 - version = "0.1.0.9"; 212690 - sha256 = "10iis47wdlhncq1aa6gbcjawpj9bx04kx4qfnf99qxjb095w0vm3"; 212691 libraryHaskellDepends = [ 212692 base bytestring containers directory ghc time transformers 212693 ]; ··· 223077 ]; 223078 license = lib.licenses.bsd3; 223079 hydraPlatforms = lib.platforms.none; 223080 }) {}; 223081 223082 "proton-haskell" = callPackage ··· 238080 }) {}; 238081 238082 "rpmbuild-order" = callPackage 238083 - ({ mkDerivation, base, case-insensitive, containers, directory 238084 - , extra, fgl, filepath, graphviz, hspec, optparse-applicative 238085 - , process, simple-cmd, simple-cmd-args, unix 238086 - }: 238087 - mkDerivation { 238088 - pname = "rpmbuild-order"; 238089 - version = "0.4.5"; 238090 - sha256 = "1lz6w2nd8yq0arfpp6vnv7lazr9289wan00b6layfdhlql9f21vl"; 238091 - revision = "1"; 238092 - editedCabalFile = "05arkmpbh5fdqbqhkwl76isbigrsc0f54zkbdl21jap6k4g9kzsk"; 238093 - isLibrary = true; 238094 - isExecutable = true; 238095 - libraryHaskellDepends = [ 238096 - base case-insensitive containers directory extra fgl filepath 238097 - graphviz process 238098 - ]; 238099 - executableHaskellDepends = [ 238100 - base directory extra fgl optparse-applicative simple-cmd-args 238101 - ]; 238102 - testHaskellDepends = [ base extra hspec simple-cmd unix ]; 238103 - description = "Sort RPM packages in dependency order"; 238104 - license = lib.licenses.bsd3; 238105 - hydraPlatforms = lib.platforms.none; 238106 - broken = true; 238107 - }) {}; 238108 - 238109 - "rpmbuild-order_0_4_7" = callPackage 238110 ({ mkDerivation, base, case-insensitive, directory, extra, fgl 238111 , filepath, graphviz, hspec, optparse-applicative, simple-cmd 238112 , simple-cmd-args, unix ··· 238960 ]; 238961 testToolDepends = [ sydtest-discover ]; 238962 license = lib.licenses.mit; 238963 - hydraPlatforms = lib.platforms.none; 238964 }) {}; 238965 238966 "safe-coloured-text-layout" = callPackage ··· 238978 testToolDepends = [ sydtest-discover ]; 238979 description = "Safely layout output coloured text"; 238980 license = lib.licenses.mit; 238981 - hydraPlatforms = lib.platforms.none; 238982 }) {}; 238983 238984 "safe-coloured-text-layout-gen" = callPackage ··· 238999 ]; 239000 testToolDepends = [ sydtest-discover ]; 239001 license = lib.licenses.mit; 239002 - hydraPlatforms = lib.platforms.none; 239003 }) {}; 239004 239005 "safe-coloured-text-terminfo" = callPackage ··· 240922 pname = "scalpel-core"; 240923 version = "0.6.2"; 240924 sha256 = "07mjff8aqwabx8yhq8bd7jpnarkkrjqss8h8s2wkfmfj808fllmf"; 240925 libraryHaskellDepends = [ 240926 base bytestring containers data-default fail mtl pointedlist 240927 regex-base regex-tdfa tagsoup text transformers vector ··· 242163 license = lib.licenses.gpl3Only; 242164 hydraPlatforms = lib.platforms.none; 242165 broken = true; 242166 }) {}; 242167 242168 "script-monad" = callPackage ··· 256496 }: 256497 mkDerivation { 256498 pname = "souffle-haskell"; 256499 - version = "3.4.0"; 256500 - sha256 = "1vyssicyj2pcnl9jg3gq4ha17wh3shy9yjbzhq3lv332vh1qy00z"; 256501 libraryHaskellDepends = [ 256502 array base bytestring deepseq directory filepath mtl process 256503 profunctors temporary text text-short type-errors-pretty vector ··· 258396 "sqlite-simple" = callPackage 258397 ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder 258398 , blaze-textual, bytestring, containers, direct-sqlite, HUnit, Only 258399 - , semigroups, template-haskell, text, time, transformers 258400 - }: 258401 - mkDerivation { 258402 - pname = "sqlite-simple"; 258403 - version = "0.4.18.0"; 258404 - sha256 = "00icsf8pgrcqcn5562lmn12yz1f16a2v2q6bl90iknvjyrk1hgzp"; 258405 - libraryHaskellDepends = [ 258406 - attoparsec base blaze-builder blaze-textual bytestring containers 258407 - direct-sqlite Only semigroups template-haskell text time 258408 - transformers 258409 - ]; 258410 - testHaskellDepends = [ 258411 - base base16-bytestring bytestring direct-sqlite HUnit text time 258412 - ]; 258413 - description = "Mid-Level SQLite client library"; 258414 - license = lib.licenses.bsd3; 258415 - }) {}; 258416 - 258417 - "sqlite-simple_0_4_18_2" = callPackage 258418 - ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder 258419 - , blaze-textual, bytestring, containers, direct-sqlite, HUnit, Only 258420 , template-haskell, text, time, transformers 258421 }: 258422 mkDerivation { ··· 258432 ]; 258433 description = "Mid-Level SQLite client library"; 258434 license = lib.licenses.bsd3; 258435 - hydraPlatforms = lib.platforms.none; 258436 }) {}; 258437 258438 "sqlite-simple-errors" = callPackage ··· 265088 description = "Configure your dotfile deployment with a DSL"; 265089 license = lib.licenses.mit; 265090 hydraPlatforms = lib.platforms.none; 265091 }) {}; 265092 265093 "superbubbles" = callPackage ··· 266128 }: 266129 mkDerivation { 266130 pname = "sydtest"; 266131 - version = "0.10.0.0"; 266132 - sha256 = "009d4ai8dqhxcrgkd0d37l97dkiqh7qmr1wvhwj38mblrhpgpm3z"; 266133 libraryHaskellDepends = [ 266134 async autodocodec autodocodec-yaml base bytestring containers Diff 266135 dlist envparse filepath MonadRandom mtl optparse-applicative path ··· 266143 testToolDepends = [ sydtest-discover ]; 266144 description = "A modern testing framework for Haskell with good defaults and advanced testing features"; 266145 license = "unknown"; 266146 - hydraPlatforms = lib.platforms.none; 266147 }) {}; 266148 266149 "sydtest-aeson" = callPackage ··· 266162 testToolDepends = [ sydtest-discover ]; 266163 description = "An aeson companion library for sydtest"; 266164 license = "unknown"; 266165 - hydraPlatforms = lib.platforms.none; 266166 }) {}; 266167 266168 "sydtest-amqp" = callPackage ··· 266218 testToolDepends = [ sydtest-discover ]; 266219 description = "A Hedgehog companion library for sydtest"; 266220 license = "unknown"; 266221 - hydraPlatforms = lib.platforms.none; 266222 }) {}; 266223 266224 "sydtest-hedis" = callPackage ··· 266239 description = "An hedis companion library for sydtest"; 266240 license = "unknown"; 266241 hydraPlatforms = lib.platforms.none; 266242 }) {}; 266243 266244 "sydtest-hspec" = callPackage ··· 266247 }: 266248 mkDerivation { 266249 pname = "sydtest-hspec"; 266250 - version = "0.3.0.0"; 266251 - sha256 = "1vda3jhgnqbs0sw219li3s83vyqr1k1hzvy0prr2c4hv62cr47p3"; 266252 libraryHaskellDepends = [ 266253 base hspec-core mtl QuickCheck stm sydtest 266254 ]; ··· 266256 testToolDepends = [ sydtest-discover ]; 266257 description = "An Hspec companion library for sydtest"; 266258 license = "unknown"; 266259 - hydraPlatforms = lib.platforms.none; 266260 }) {}; 266261 266262 "sydtest-mongo" = callPackage ··· 266277 description = "An mongoDB companion library for sydtest"; 266278 license = "unknown"; 266279 hydraPlatforms = lib.platforms.none; 266280 }) {}; 266281 266282 "sydtest-persistent" = callPackage ··· 266292 ]; 266293 description = "A persistent companion library for sydtest"; 266294 license = "unknown"; 266295 - hydraPlatforms = lib.platforms.none; 266296 }) {}; 266297 266298 "sydtest-persistent-postgresql" = callPackage ··· 266315 description = "An persistent-postgresql companion library for sydtest"; 266316 license = "unknown"; 266317 hydraPlatforms = lib.platforms.none; 266318 }) {}; 266319 266320 "sydtest-persistent-sqlite" = callPackage ··· 266333 testToolDepends = [ sydtest-discover ]; 266334 description = "A persistent-sqlite companion library for sydtest"; 266335 license = "unknown"; 266336 - hydraPlatforms = lib.platforms.none; 266337 }) {}; 266338 266339 "sydtest-process" = callPackage ··· 266349 testToolDepends = [ sydtest-discover ]; 266350 description = "A typed-process companion library for sydtest"; 266351 license = "unknown"; 266352 - hydraPlatforms = lib.platforms.none; 266353 }) {}; 266354 266355 "sydtest-rabbitmq" = callPackage ··· 266370 description = "An rabbitmq companion library for sydtest"; 266371 license = "unknown"; 266372 hydraPlatforms = lib.platforms.none; 266373 }) {}; 266374 266375 "sydtest-servant" = callPackage ··· 266389 testToolDepends = [ sydtest-discover ]; 266390 description = "A servant companion library for sydtest"; 266391 license = "unknown"; 266392 - hydraPlatforms = lib.platforms.none; 266393 }) {}; 266394 266395 "sydtest-typed-process" = callPackage ··· 266405 testToolDepends = [ sydtest-discover ]; 266406 description = "A typed-process companion library for sydtest"; 266407 license = "unknown"; 266408 - hydraPlatforms = lib.platforms.none; 266409 }) {}; 266410 266411 "sydtest-wai" = callPackage ··· 266427 testToolDepends = [ sydtest-discover ]; 266428 description = "A wai companion library for sydtest"; 266429 license = "unknown"; 266430 - hydraPlatforms = lib.platforms.none; 266431 }) {}; 266432 266433 "sydtest-webdriver" = callPackage ··· 266530 description = "A yesod companion library for sydtest"; 266531 license = "unknown"; 266532 hydraPlatforms = lib.platforms.none; 266533 }) {}; 266534 266535 "syfco" = callPackage ··· 275454 }: 275455 mkDerivation { 275456 pname = "threads-supervisor"; 275457 - version = "1.2.0.1"; 275458 - sha256 = "013j28ma6bwmf50n05ywli9pf5r4vyg8w4liv4yibr459207k31m"; 275459 isLibrary = true; 275460 isExecutable = true; 275461 libraryHaskellDepends = [ ··· 277595 }: 277596 mkDerivation { 277597 pname = "tls"; 277598 - version = "1.5.7"; 277599 - sha256 = "16pp6q0r4l23l3qi8v4yn4gjdsck8mg2jy3x7m7z5g6v9047v7mq"; 277600 libraryHaskellDepends = [ 277601 asn1-encoding asn1-types async base bytestring cereal cryptonite 277602 data-default-class hourglass memory mtl network transformers x509 ··· 277614 license = lib.licenses.bsd3; 277615 }) {}; 277616 277617 - "tls_1_5_8" = callPackage 277618 ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring 277619 , cereal, cryptonite, data-default-class, gauge, hourglass, memory 277620 , mtl, network, QuickCheck, tasty, tasty-quickcheck, transformers ··· 277622 }: 277623 mkDerivation { 277624 pname = "tls"; 277625 - version = "1.5.8"; 277626 - sha256 = "0rxdv8ab98kd4nqql7djmmi51k4vayq21s38s43sx3rzn0iyla3b"; 277627 libraryHaskellDepends = [ 277628 asn1-encoding asn1-types async base bytestring cereal cryptonite 277629 data-default-class hourglass memory mtl network transformers x509 ··· 278169 testToolDepends = [ sydtest-discover ]; 278170 description = "A thread-safe concurrent token-bucket rate limiter that guarantees fairness"; 278171 license = lib.licenses.mit; 278172 - hydraPlatforms = lib.platforms.none; 278173 }) {}; 278174 278175 "token-search" = callPackage ··· 278384 broken = true; 278385 }) {}; 278386 278387 "tomland" = callPackage 278388 ({ mkDerivation, base, bytestring, containers, deepseq, directory 278389 , hashable, hedgehog, hspec, hspec-hedgehog, hspec-megaparsec ··· 283482 }: 283483 mkDerivation { 283484 pname = "typed-process"; 283485 - version = "0.2.8.0"; 283486 - sha256 = "1af0g34sws7fppziv7firr9r2wrnly4y6sr9nyqa8bvbbmadly45"; 283487 - revision = "1"; 283488 - editedCabalFile = "1m017nqbaqishii32gwhxa1849h0qnn06w7k1rn8c9d8w71m4vqm"; 283489 - libraryHaskellDepends = [ 283490 - async base bytestring process stm transformers unliftio-core 283491 - ]; 283492 - testHaskellDepends = [ 283493 - async base base64-bytestring bytestring hspec process stm temporary 283494 - transformers unliftio-core 283495 - ]; 283496 - description = "Run external processes, with strong typing of streams"; 283497 - license = lib.licenses.mit; 283498 - }) {}; 283499 - 283500 - "typed-process_0_2_10_1" = callPackage 283501 - ({ mkDerivation, async, base, base64-bytestring, bytestring, hspec 283502 - , process, stm, temporary, transformers, unliftio-core 283503 - }: 283504 - mkDerivation { 283505 - pname = "typed-process"; 283506 version = "0.2.10.1"; 283507 sha256 = "17h9jl7gi26v3cxb4jdcksbp755sqqp8w7303q8x8r36rmf8fdp4"; 283508 libraryHaskellDepends = [ ··· 283514 ]; 283515 description = "Run external processes, with strong typing of streams"; 283516 license = lib.licenses.mit; 283517 - hydraPlatforms = lib.platforms.none; 283518 }) {}; 283519 283520 "typed-spreadsheet" = callPackage ··· 283588 ]; 283589 description = "Phantom-Typed version of UUID"; 283590 license = lib.licenses.mit; 283591 - hydraPlatforms = lib.platforms.none; 283592 }) {}; 283593 283594 "typed-wire" = callPackage ··· 283768 pname = "typelits-witnesses"; 283769 version = "0.4.0.0"; 283770 sha256 = "1khy5nacmsl7h4vg7driv4yb9m3zvkhbf8divyhd249i6bdmql70"; 283771 libraryHaskellDepends = [ base dependent-sum ]; 283772 description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; 283773 license = lib.licenses.mit; ··· 289160 testHaskellDepends = [ aeson base hspec validity ]; 289161 description = "Validity instances for aeson"; 289162 license = lib.licenses.mit; 289163 - hydraPlatforms = lib.platforms.none; 289164 - broken = true; 289165 }) {}; 289166 289167 "validity-bytestring" = callPackage ··· 299164 "x509" = callPackage 299165 ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base 299166 , bytestring, containers, cryptonite, hourglass, memory, mtl, pem 299167 - , tasty, tasty-quickcheck 299168 - }: 299169 - mkDerivation { 299170 - pname = "x509"; 299171 - version = "1.7.6"; 299172 - sha256 = "114qjgx080zxbw5w9c3yy28k905bq99rwl6zgbsa0y3gawx9mmd5"; 299173 - libraryHaskellDepends = [ 299174 - asn1-encoding asn1-parse asn1-types base bytestring containers 299175 - cryptonite hourglass memory mtl pem 299176 - ]; 299177 - testHaskellDepends = [ 299178 - asn1-types base bytestring cryptonite hourglass mtl tasty 299179 - tasty-quickcheck 299180 - ]; 299181 - description = "X509 reader and writer"; 299182 - license = lib.licenses.bsd3; 299183 - }) {}; 299184 - 299185 - "x509_1_7_7" = callPackage 299186 - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base 299187 - , bytestring, containers, cryptonite, hourglass, memory, mtl, pem 299188 , tasty, tasty-quickcheck, transformers 299189 }: 299190 mkDerivation { ··· 299201 ]; 299202 description = "X509 reader and writer"; 299203 license = lib.licenses.bsd3; 299204 - hydraPlatforms = lib.platforms.none; 299205 }) {}; 299206 299207 "x509-store" = callPackage ··· 302510 }: 302511 mkDerivation { 302512 pname = "yampa-test"; 302513 - version = "0.13.4"; 302514 - sha256 = "08gb3z83vxj39fnvb3gyck54r01l0gh62cp9d2yfjhdr214d2lx3"; 302515 libraryHaskellDepends = [ 302516 base normaldistribution QuickCheck Yampa 302517 ];
··· 18626 ]; 18627 description = "A programming model for declarative, high performance user interface"; 18628 license = lib.licenses.bsd3; 18629 }) {}; 18630 18631 "Shpadoinkle-backend-pardiff" = callPackage ··· 18645 description = "A Virtual Dom in pure Haskell, based on Html as an Alignable Functor"; 18646 license = lib.licenses.bsd3; 18647 hydraPlatforms = lib.platforms.none; 18648 + broken = true; 18649 }) {}; 18650 18651 "Shpadoinkle-backend-snabbdom" = callPackage ··· 18664 description = "Use the high-performance Snabbdom virtual dom library written in JavaScript"; 18665 license = lib.licenses.bsd3; 18666 hydraPlatforms = lib.platforms.none; 18667 + broken = true; 18668 }) {}; 18669 18670 "Shpadoinkle-backend-static" = callPackage ··· 18677 description = "A backend for rendering Shpadoinkle as Text"; 18678 license = lib.licenses.bsd3; 18679 hydraPlatforms = lib.platforms.none; 18680 + broken = true; 18681 }) {}; 18682 18683 "Shpadoinkle-console" = callPackage ··· 18797 description = "A typed, template generated Html DSL, and helpers"; 18798 license = lib.licenses.bsd3; 18799 hydraPlatforms = lib.platforms.none; 18800 + broken = true; 18801 }) {}; 18802 18803 "Shpadoinkle-isreal" = callPackage ··· 18834 libraryHaskellDepends = [ base lens Shpadoinkle text ]; 18835 description = "Lens combinators for Shpadoinkle applications"; 18836 license = lib.licenses.bsd3; 18837 }) {}; 18838 18839 "Shpadoinkle-router" = callPackage ··· 18869 libraryHaskellDepends = [ base lens Shpadoinkle streaming text ]; 18870 description = "Integration of the streaming library with Shpadoinkle continuations"; 18871 license = lib.licenses.bsd3; 18872 }) {}; 18873 18874 "Shpadoinkle-template" = callPackage ··· 22196 ({ mkDerivation, base, deepseq, random, simple-affine-space }: 22197 mkDerivation { 22198 pname = "Yampa"; 22199 + version = "0.13.5"; 22200 + sha256 = "1l7ykhcy7qqp4dysyp3qq3nx962zsdf47iqmsz28l4chr8dxfvnm"; 22201 isLibrary = true; 22202 isExecutable = true; 22203 libraryHaskellDepends = [ ··· 23470 }: 23471 mkDerivation { 23472 pname = "acid-state"; 23473 version = "0.16.1.1"; 23474 sha256 = "05hcbk5dhwygc29b1jbyh2zzjrxybm44hj02wmv2bhz04b5wldca"; 23475 isLibrary = true; ··· 23490 ]; 23491 description = "Add ACID guarantees to any serializable Haskell data structure"; 23492 license = lib.licenses.publicDomain; 23493 }) {}; 23494 23495 "acid-state-dist" = callPackage ··· 32548 QuickCheck text validity 32549 ]; 32550 license = lib.licenses.mit; 32551 }) {}; 32552 32553 "appendmap" = callPackage ··· 36738 testHaskellDepends = [ base doctest ]; 36739 description = "Self-documenting encoder and decoder"; 36740 license = lib.licenses.mit; 36741 }) {}; 36742 36743 "autodocodec-openapi3" = callPackage ··· 36755 ]; 36756 description = "Autodocodec interpreters for openapi3"; 36757 license = lib.licenses.mit; 36758 }) {}; 36759 36760 "autodocodec-schema" = callPackage ··· 36772 ]; 36773 description = "Autodocodec interpreters for JSON Schema"; 36774 license = lib.licenses.mit; 36775 }) {}; 36776 36777 "autodocodec-swagger2" = callPackage ··· 36788 ]; 36789 description = "Autodocodec interpreters for swagger2"; 36790 license = lib.licenses.mit; 36791 }) {}; 36792 36793 "autodocodec-yaml" = callPackage ··· 36806 ]; 36807 description = "Autodocodec interpreters for yaml"; 36808 license = lib.licenses.mit; 36809 }) {}; 36810 36811 "autoexporter" = callPackage ··· 38114 38115 "aws-sns-verify" = callPackage 38116 ({ mkDerivation, aeson, aeson-qq, async, base, bytestring, errors 38117 + , hspec, http-conduit, http-types, memory, network-uri, pem 38118 + , regex-tdfa, text, wai, warp, x509, x509-validation 38119 }: 38120 mkDerivation { 38121 pname = "aws-sns-verify"; 38122 + version = "0.0.0.2"; 38123 + sha256 = "0v05hca43v12g4x2ffwqla9pmf9gx8l85vv88cljn808qbsj5h4v"; 38124 libraryHaskellDepends = [ 38125 + aeson base bytestring errors http-conduit memory network-uri pem 38126 + regex-tdfa text x509 x509-validation 38127 ]; 38128 testHaskellDepends = [ 38129 + aeson-qq async base hspec http-types regex-tdfa text wai warp 38130 + x509-validation 38131 ]; 38132 description = "Parse and verify AWS SNS messages"; 38133 license = lib.licenses.mit; ··· 45503 }: 45504 mkDerivation { 45505 pname = "blockfrost-api"; 45506 + version = "0.5.0.0"; 45507 + sha256 = "1s9xascjn5653qaiva38prfi0yiynjvig1lzwkln63fx7qs2zfaz"; 45508 libraryHaskellDepends = [ 45509 aeson base bytestring data-default-class deriving-aeson lens 45510 QuickCheck quickcheck-instances safe-money servant servant-docs ··· 45529 }: 45530 mkDerivation { 45531 pname = "blockfrost-client"; 45532 + version = "0.5.0.0"; 45533 + sha256 = "080nnnbw7rypxlis3rd94ssd13bv3jxbfh98rpmp49b2ygxdfdvn"; 45534 isLibrary = true; 45535 isExecutable = true; 45536 libraryHaskellDepends = [ ··· 45545 description = "blockfrost.io basic client"; 45546 license = lib.licenses.asl20; 45547 hydraPlatforms = lib.platforms.none; 45548 + maintainers = with lib.maintainers; [ sorki ]; 45549 }) {}; 45550 45551 "blockfrost-client-core" = callPackage ··· 45557 }: 45558 mkDerivation { 45559 pname = "blockfrost-client-core"; 45560 + version = "0.4.0.2"; 45561 + sha256 = "0ns3argfbky2n3w7crbj2y1bzg01vpd4wq125abbfz9aqwnppcf4"; 45562 libraryHaskellDepends = [ 45563 aeson base blockfrost-api bytestring case-insensitive containers 45564 data-default http-client http-client-tls http-types servant ··· 51383 description = "Turn a .cabal file into a .json file"; 51384 license = lib.licenses.mit; 51385 hydraPlatforms = lib.platforms.none; 51386 + broken = true; 51387 }) {}; 51388 51389 "cabal2nix" = callPackage ··· 52310 pname = "call-alloy"; 52311 version = "0.3"; 52312 sha256 = "0pf6zdx201pkdzj3iccwj9k3bi0qabpmsn0sfn27mcwdgksn2q7p"; 52313 + revision = "1"; 52314 + editedCabalFile = "0p0y03cw8g2ikh8cx9gn3998viiy30576nkxf77zv84d7qa6d23c"; 52315 libraryHaskellDepends = [ 52316 base bytestring containers directory extra file-embed filepath 52317 hashable mtl process split trifecta unix ··· 54233 ]; 54234 license = lib.licenses.bsd3; 54235 hydraPlatforms = lib.platforms.none; 54236 + broken = true; 54237 }) {}; 54238 54239 "cayene-lpp" = callPackage ··· 56116 }) {}; 56117 56118 "chez-grater" = callPackage 56119 + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring 56120 , case-insensitive, containers, file-embed, file-path-th, hashable 56121 , hspec, http-client, http-client-tls, http-types, network-uri 56122 + , optparse-applicative, QuickCheck, scalpel, text 56123 + , unordered-containers 56124 }: 56125 mkDerivation { 56126 pname = "chez-grater"; 56127 + version = "0.1.1"; 56128 + sha256 = "0yxc054mvq0016a8jr6mv9j4l971llmm2cp1gya6by20icav1z54"; 56129 + isLibrary = true; 56130 + isExecutable = true; 56131 libraryHaskellDepends = [ 56132 aeson attoparsec base case-insensitive containers hashable 56133 + http-client http-client-tls http-types network-uri QuickCheck 56134 + scalpel text unordered-containers 56135 + ]; 56136 + executableHaskellDepends = [ 56137 + aeson aeson-pretty base bytestring network-uri optparse-applicative 56138 + text 56139 ]; 56140 testHaskellDepends = [ 56141 attoparsec base bytestring case-insensitive containers file-embed 56142 + file-path-th hspec http-client network-uri text 56143 ]; 56144 description = "Parse and scrape recipe blogs"; 56145 license = lib.licenses.mit; ··· 61733 }: 61734 mkDerivation { 61735 pname = "commonmark-extensions"; 61736 version = "0.2.3.2"; 61737 sha256 = "1k5rlh2grg6g1waszhp565m360n1iynjvbkjz8xmap8y234g1bjj"; 61738 libraryHaskellDepends = [ ··· 61745 benchmarkHaskellDepends = [ base commonmark tasty-bench text ]; 61746 description = "Pure Haskell commonmark parser"; 61747 license = lib.licenses.bsd3; 61748 }) {}; 61749 61750 "commonmark-pandoc" = callPackage ··· 62135 ]; 62136 description = "A typeclass for structures which can be catMaybed, filtered, and partitioned"; 62137 license = lib.licenses.bsd3; 62138 }) {}; 62139 62140 "compactmap" = callPackage ··· 62712 }: 62713 mkDerivation { 62714 pname = "composite-ekg"; 62715 + version = "0.8.0.0"; 62716 + sha256 = "19cgfha3syvpphqlysn4gj7x9390glmxmkmn2nlp9z6arrmiiiyx"; 62717 libraryHaskellDepends = [ 62718 base composite-base ekg-core lens text vinyl 62719 ]; ··· 66834 license = lib.licenses.mit; 66835 }) {}; 66836 66837 + "core-data_0_3_3_1" = callPackage 66838 + ({ mkDerivation, aeson, base, bytestring, containers, core-text 66839 + , hashable, hourglass, prettyprinter, scientific, text, time 66840 + , unordered-containers, vector 66841 + }: 66842 + mkDerivation { 66843 + pname = "core-data"; 66844 + version = "0.3.3.1"; 66845 + sha256 = "149hf4mi6rklzcnqai44hkilp8kwis5irkn25bxjpkrwyl41m25q"; 66846 + libraryHaskellDepends = [ 66847 + aeson base bytestring containers core-text hashable hourglass 66848 + prettyprinter scientific text time unordered-containers vector 66849 + ]; 66850 + description = "Convenience wrappers around common data structures and encodings"; 66851 + license = lib.licenses.mit; 66852 + hydraPlatforms = lib.platforms.none; 66853 + }) {}; 66854 + 66855 "core-haskell" = callPackage 66856 ({ mkDerivation, base, haskeline, haskell-src-exts, hint }: 66857 mkDerivation { ··· 66890 license = lib.licenses.mit; 66891 }) {}; 66892 66893 + "core-program_0_5_0_1" = callPackage 66894 + ({ mkDerivation, async, base, bytestring, core-data, core-text 66895 + , directory, exceptions, filepath, fsnotify, hashable, hourglass 66896 + , mtl, prettyprinter, safe-exceptions, stm, template-haskell 66897 + , terminal-size, text, text-short, transformers, typed-process 66898 + , unix 66899 + }: 66900 + mkDerivation { 66901 + pname = "core-program"; 66902 + version = "0.5.0.1"; 66903 + sha256 = "04bh24maxwa2f082k3x4ixwcdzdc0pxcy0lws7myyl9xd45kdigw"; 66904 + libraryHaskellDepends = [ 66905 + async base bytestring core-data core-text directory exceptions 66906 + filepath fsnotify hashable hourglass mtl prettyprinter 66907 + safe-exceptions stm template-haskell terminal-size text text-short 66908 + transformers typed-process unix 66909 + ]; 66910 + description = "Opinionated Haskell Interoperability"; 66911 + license = lib.licenses.mit; 66912 + hydraPlatforms = lib.platforms.none; 66913 + }) {}; 66914 + 66915 "core-telemetry" = callPackage 66916 + ({ mkDerivation, async, base, bytestring, core-data, core-program 66917 + , core-text, exceptions, http-streams, io-streams, mtl 66918 + , network-info, random, safe-exceptions, scientific, stm 66919 , template-haskell, text, unix 66920 }: 66921 mkDerivation { 66922 pname = "core-telemetry"; 66923 + version = "0.2.3.2"; 66924 + sha256 = "08p2ci15sbznz828sbfid8ziqjkv49als1k3s65czyz3q22qf8ar"; 66925 libraryHaskellDepends = [ 66926 + async base bytestring core-data core-program core-text exceptions 66927 + http-streams io-streams mtl network-info random safe-exceptions 66928 + scientific stm template-haskell text unix 66929 ]; 66930 description = "Advanced telemetry"; 66931 license = lib.licenses.mit; 66932 + hydraPlatforms = lib.platforms.none; 66933 + broken = true; 66934 }) {}; 66935 66936 "core-text" = callPackage ··· 66950 license = lib.licenses.mit; 66951 }) {}; 66952 66953 + "core-text_0_3_7_2" = callPackage 66954 + ({ mkDerivation, ansi-terminal, base, bytestring, colour, deepseq 66955 + , fingertree, hashable, prettyprinter, template-haskell, text 66956 + , text-short 66957 + }: 66958 + mkDerivation { 66959 + pname = "core-text"; 66960 + version = "0.3.7.2"; 66961 + sha256 = "0ybac107psr558fqyfmc1x8ssfd8mk1cf3v220svi6k6i8qaxi7x"; 66962 + libraryHaskellDepends = [ 66963 + ansi-terminal base bytestring colour deepseq fingertree hashable 66964 + prettyprinter template-haskell text text-short 66965 + ]; 66966 + description = "A rope type based on a finger tree over UTF-8 fragments"; 66967 + license = lib.licenses.mit; 66968 + hydraPlatforms = lib.platforms.none; 66969 + }) {}; 66970 + 66971 "core-warn" = callPackage 66972 ({ mkDerivation, base, containers, containers-good-graph, ghc, syb 66973 }: ··· 66990 }: 66991 mkDerivation { 66992 pname = "core-webserver-servant"; 66993 + version = "0.1.1.2"; 66994 + sha256 = "084m2lisd9gwhasnxd2yc98f75zpa2zy3rq6sgj56f6aq7vnl0vv"; 66995 libraryHaskellDepends = [ 66996 base core-program core-telemetry core-webserver-warp mtl 66997 safe-exceptions servant servant-server vault wai ··· 70290 description = "Haskell Implementation of Cuckoo Filters"; 70291 license = lib.licenses.bsd3; 70292 hydraPlatforms = lib.platforms.none; 70293 + broken = true; 70294 }) {}; 70295 70296 "cuckoo-filter" = callPackage ··· 72839 libraryHaskellDepends = [ base mtl template-haskell ]; 72840 description = "Simple lenses, minimum dependencies"; 72841 license = lib.licenses.mit; 72842 + maintainers = with lib.maintainers; [ sorki ]; 72843 }) {}; 72844 72845 "data-lens-template" = callPackage ··· 79674 79675 "direct-sqlite" = callPackage 79676 ({ mkDerivation, base, base16-bytestring, bytestring, directory 79677 , HUnit, temporary, text 79678 }: 79679 mkDerivation { ··· 79686 ]; 79687 description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support."; 79688 license = lib.licenses.bsd3; 79689 }) {}; 79690 79691 "directed-cubical" = callPackage ··· 89593 }: 89594 mkDerivation { 89595 pname = "esqueleto"; 89596 version = "3.5.5.0"; 89597 sha256 = "0ba90p3cqyr0l447dw2xzrk2fs6xv5b2c79rqsnj0bchpsigj8a0"; 89598 libraryHaskellDepends = [ ··· 89609 ]; 89610 description = "Type-safe EDSL for SQL queries on persistent backends"; 89611 license = lib.licenses.bsd3; 89612 }) {}; 89613 89614 "esqueleto-pgcrypto" = callPackage ··· 91247 description = "A Haskell client for https://exchangeratesapi.io/"; 91248 license = lib.licenses.bsd3; 91249 hydraPlatforms = lib.platforms.none; 91250 + broken = true; 91251 }) {}; 91252 91253 "execs" = callPackage ··· 94544 executableHaskellDepends = [ base ]; 94545 description = "Declarative feedback loop manager"; 94546 license = lib.licenses.gpl3Only; 94547 }) {}; 94548 94549 "fei-base" = callPackage ··· 96750 description = "A Haskell client for http://fixer.io/"; 96751 license = lib.licenses.bsd3; 96752 hydraPlatforms = lib.platforms.none; 96753 + broken = true; 96754 }) {}; 96755 96756 "fixfile" = callPackage ··· 99763 broken = true; 99764 }) {}; 99765 99766 + "frecently" = callPackage 99767 + ({ mkDerivation, atomic-write, base, bytestring, cereal, containers 99768 + , directory, filepath, optparse-applicative, process 99769 + }: 99770 + mkDerivation { 99771 + pname = "frecently"; 99772 + version = "1.0"; 99773 + sha256 = "1n3fzsaifawcrdlkl5h184svmjmb6n5v7gczmrhkfdi8lh0wf0a7"; 99774 + isLibrary = false; 99775 + isExecutable = true; 99776 + executableHaskellDepends = [ 99777 + atomic-write base bytestring cereal containers directory filepath 99778 + optparse-applicative process 99779 + ]; 99780 + description = "CLI frecency history"; 99781 + license = lib.licenses.bsd3; 99782 + }) {}; 99783 + 99784 "freckle-app" = callPackage 99785 ({ mkDerivation, aeson, ansi-terminal, base, bugsnag, bytestring 99786 , case-insensitive, conduit, containers, data-default, datadog ··· 104597 ]; 104598 description = "GenValidity support for aeson"; 104599 license = lib.licenses.mit; 104600 }) {}; 104601 104602 "genvalidity-appendful" = callPackage ··· 104622 appendful base criterion genvalidity-criterion 104623 ]; 104624 license = lib.licenses.mit; 104625 }) {}; 104626 104627 "genvalidity-bytestring" = callPackage ··· 104752 ]; 104753 description = "Standard spec's for aeson-related instances"; 104754 license = lib.licenses.mit; 104755 }) {}; 104756 104757 "genvalidity-hspec-binary" = callPackage ··· 104903 base criterion genvalidity-criterion mergeless 104904 ]; 104905 license = lib.licenses.mit; 104906 }) {}; 104907 104908 "genvalidity-path" = callPackage ··· 105000 testToolDepends = [ sydtest-discover ]; 105001 description = "Standard properties for functions on `Validity` types for the sydtest framework"; 105002 license = lib.licenses.mit; 105003 }) {}; 105004 105005 "genvalidity-sydtest-aeson" = callPackage ··· 105022 testToolDepends = [ sydtest-discover ]; 105023 description = "Standard spec's for aeson-related instances in sydtest"; 105024 license = lib.licenses.mit; 105025 }) {}; 105026 105027 "genvalidity-sydtest-hashable" = callPackage ··· 105043 testToolDepends = [ sydtest-discover ]; 105044 description = "Standard spec's for Hashable instances for sydtest"; 105045 license = lib.licenses.mit; 105046 }) {}; 105047 105048 "genvalidity-sydtest-lens" = callPackage ··· 105062 testToolDepends = [ sydtest-discover ]; 105063 description = "Standard spec's for lens for sydtest"; 105064 license = lib.licenses.mit; 105065 }) {}; 105066 105067 "genvalidity-sydtest-persistent" = callPackage ··· 105084 testToolDepends = [ sydtest-discover ]; 105085 description = "Standard spec's for persistent-related instances for sydtest"; 105086 license = lib.licenses.mit; 105087 }) {}; 105088 105089 "genvalidity-text" = callPackage ··· 105151 ]; 105152 description = "Generators for Phantom-Typed version of UUID"; 105153 license = lib.licenses.mit; 105154 }) {}; 105155 105156 "genvalidity-unordered-containers" = callPackage ··· 106530 license = lib.licenses.bsd3; 106531 }) {}; 106532 106533 + "ghc-lib-parser-ex_9_2_1_0" = callPackage 106534 ({ mkDerivation, base, bytestring, containers, directory, extra 106535 , filepath, ghc-lib-parser, tasty, tasty-hunit, uniplate 106536 }: 106537 mkDerivation { 106538 pname = "ghc-lib-parser-ex"; 106539 + version = "9.2.1.0"; 106540 + sha256 = "19r0f7qan403ji3mzycz75k0p086zliia8n021z68jgy6w31ysm5"; 106541 libraryHaskellDepends = [ 106542 base bytestring containers ghc-lib-parser uniplate 106543 ]; ··· 107638 platforms = [ 107639 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 107640 ]; 107641 }) {}; 107642 107643 "ghcjs-dom-jsaddle" = callPackage ··· 123441 benchmarkSystemDepends = [ openssl ]; 123442 description = "Hash functions"; 123443 license = lib.licenses.mit; 123444 }) {inherit (pkgs) openssl;}; 123445 123446 "hashflare" = callPackage ··· 127801 }: 127802 mkDerivation { 127803 pname = "hasql"; 127804 version = "1.5.0.3"; 127805 sha256 = "1ai1vq1l58r4k6ri78gl0zlbc4sgkp3mcyi2dsm37f7ah9r38hsz"; 127806 libraryHaskellDepends = [ ··· 127815 benchmarkHaskellDepends = [ gauge rerebase ]; 127816 description = "An efficient PostgreSQL driver with a flexible mapping API"; 127817 license = lib.licenses.mit; 127818 }) {}; 127819 127820 "hasql-backend" = callPackage ··· 128021 }) {}; 128022 128023 "hasql-notifications" = callPackage 128024 ({ mkDerivation, base, bytestring, hasql, hasql-pool, hspec 128025 , postgresql-libpq, QuickCheck, text 128026 }: ··· 128037 testHaskellDepends = [ base bytestring hasql hspec QuickCheck ]; 128038 description = "LISTEN/NOTIFY support for Hasql"; 128039 license = lib.licenses.bsd3; 128040 }) {}; 128041 128042 "hasql-optparse-applicative" = callPackage ··· 128045 }: 128046 mkDerivation { 128047 pname = "hasql-optparse-applicative"; 128048 + version = "0.3.0.9"; 128049 + sha256 = "1m4z82l3ip50ly160ccjl46npxp1170knaf5acjdwhirsc6c3qpd"; 128050 libraryHaskellDepends = [ 128051 base-prelude hasql hasql-pool optparse-applicative 128052 ]; ··· 134224 benchmarkHaskellDepends = [ base criterion ]; 134225 description = "Command line tool for highlighting parts of files matching a regex"; 134226 license = lib.licenses.bsd3; 134227 }) {}; 134228 134229 "highlight-versions" = callPackage ··· 135747 maintainers = with lib.maintainers; [ peti ]; 135748 }) {}; 135749 135750 + "hledger_1_26" = callPackage 135751 + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs 135752 + , containers, data-default, Decimal, Diff, directory, extra 135753 + , filepath, githash, hashable, haskeline, hledger-lib, lucid 135754 + , math-functions, megaparsec, microlens, mtl, process, regex-tdfa 135755 + , safe, shakespeare, split, tabular, tasty, temporary, terminfo 135756 + , text, time, timeit, transformers, unordered-containers 135757 + , utf8-string, utility-ht, wizards 135758 + }: 135759 + mkDerivation { 135760 + pname = "hledger"; 135761 + version = "1.26"; 135762 + sha256 = "15gl5nms9yn1jr8di9sj9r3l9ysihvdn6m4c962y6ka8v695ppg2"; 135763 + isLibrary = true; 135764 + isExecutable = true; 135765 + libraryHaskellDepends = [ 135766 + aeson ansi-terminal base bytestring cmdargs containers data-default 135767 + Decimal Diff directory extra filepath githash hashable haskeline 135768 + hledger-lib lucid math-functions megaparsec microlens mtl process 135769 + regex-tdfa safe shakespeare split tabular tasty temporary terminfo 135770 + text time timeit transformers unordered-containers utf8-string 135771 + utility-ht wizards 135772 + ]; 135773 + executableHaskellDepends = [ 135774 + aeson ansi-terminal base bytestring cmdargs containers data-default 135775 + Decimal directory extra filepath githash haskeline hledger-lib 135776 + math-functions megaparsec microlens mtl process regex-tdfa safe 135777 + shakespeare split tabular tasty temporary terminfo text time timeit 135778 + transformers unordered-containers utf8-string utility-ht wizards 135779 + ]; 135780 + testHaskellDepends = [ 135781 + aeson ansi-terminal base bytestring cmdargs containers data-default 135782 + Decimal directory extra filepath githash haskeline hledger-lib 135783 + math-functions megaparsec microlens mtl process regex-tdfa safe 135784 + shakespeare split tabular tasty temporary terminfo text time timeit 135785 + transformers unordered-containers utf8-string utility-ht wizards 135786 + ]; 135787 + description = "Command-line interface for the hledger accounting system"; 135788 + license = lib.licenses.gpl3Only; 135789 + hydraPlatforms = lib.platforms.none; 135790 + maintainers = with lib.maintainers; [ peti ]; 135791 + }) {}; 135792 + 135793 "hledger-api" = callPackage 135794 ({ mkDerivation, aeson, base, bytestring, containers, data-default 135795 , Decimal, docopt, either, hledger, hledger-lib, microlens ··· 135927 maintainers = with lib.maintainers; [ peti ]; 135928 }) {}; 135929 135930 + "hledger-interest_1_6_4" = callPackage 135931 + ({ mkDerivation, base, Cabal, Decimal, hledger-lib, mtl, text, time 135932 + }: 135933 + mkDerivation { 135934 + pname = "hledger-interest"; 135935 + version = "1.6.4"; 135936 + sha256 = "1719sa7zxaa5amrqhkckn9ip5wzc2qbi8gn4f3l98a7sh77f9fym"; 135937 + isLibrary = false; 135938 + isExecutable = true; 135939 + executableHaskellDepends = [ 135940 + base Cabal Decimal hledger-lib mtl text time 135941 + ]; 135942 + description = "computes interest for a given account"; 135943 + license = lib.licenses.bsd3; 135944 + hydraPlatforms = lib.platforms.none; 135945 + maintainers = with lib.maintainers; [ peti ]; 135946 + }) {}; 135947 + 135948 "hledger-irr" = callPackage 135949 ({ mkDerivation, base, Cabal, data-default-class, Decimal 135950 , hledger-lib, math-functions, text, time ··· 136001 license = lib.licenses.gpl3Only; 136002 }) {}; 136003 136004 + "hledger-lib_1_26" = callPackage 136005 + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array, base 136006 + , blaze-markup, bytestring, call-stack, cassava, cassava-megaparsec 136007 + , cmdargs, containers, data-default, Decimal, directory, doclayout 136008 + , extra, file-embed, filepath, Glob, hashtables, megaparsec 136009 + , microlens, microlens-th, mtl, parser-combinators, pretty-simple 136010 + , regex-tdfa, safe, tabular, tasty, tasty-hunit, template-haskell 136011 + , text, time, timeit, transformers, uglymemo, unordered-containers 136012 + , utf8-string 136013 + }: 136014 + mkDerivation { 136015 + pname = "hledger-lib"; 136016 + version = "1.26"; 136017 + sha256 = "159s1gqd14d9khlvb9145dbi5qmgqzhla4fixfp28bxyszy363py"; 136018 + libraryHaskellDepends = [ 136019 + aeson aeson-pretty ansi-terminal array base blaze-markup bytestring 136020 + call-stack cassava cassava-megaparsec cmdargs containers 136021 + data-default Decimal directory doclayout extra file-embed filepath 136022 + Glob hashtables megaparsec microlens microlens-th mtl 136023 + parser-combinators pretty-simple regex-tdfa safe tabular tasty 136024 + tasty-hunit template-haskell text time timeit transformers uglymemo 136025 + unordered-containers utf8-string 136026 + ]; 136027 + testHaskellDepends = [ 136028 + aeson aeson-pretty ansi-terminal array base blaze-markup bytestring 136029 + call-stack cassava cassava-megaparsec cmdargs containers 136030 + data-default Decimal directory doclayout extra file-embed filepath 136031 + Glob hashtables megaparsec microlens microlens-th mtl 136032 + parser-combinators pretty-simple regex-tdfa safe tabular tasty 136033 + tasty-hunit template-haskell text time timeit transformers uglymemo 136034 + unordered-containers utf8-string 136035 + ]; 136036 + description = "A reusable library providing the core functionality of hledger"; 136037 + license = lib.licenses.gpl3Only; 136038 + hydraPlatforms = lib.platforms.none; 136039 + }) {}; 136040 + 136041 "hledger-makeitso" = callPackage 136042 ({ mkDerivation, base, containers, foldl, HUnit, stm, text, time 136043 , turtle ··· 136109 ]; 136110 description = "Curses-style terminal interface for the hledger accounting system"; 136111 license = lib.licenses.gpl3Only; 136112 + maintainers = with lib.maintainers; [ peti ]; 136113 + }) {}; 136114 + 136115 + "hledger-ui_1_26" = callPackage 136116 + ({ mkDerivation, ansi-terminal, async, base, brick, cmdargs 136117 + , containers, data-default, directory, doclayout, extra, filepath 136118 + , fsnotify, hledger, hledger-lib, megaparsec, microlens 136119 + , microlens-platform, mtl, process, safe, split, text, text-zipper 136120 + , time, transformers, unix, vector, vty 136121 + }: 136122 + mkDerivation { 136123 + pname = "hledger-ui"; 136124 + version = "1.26"; 136125 + sha256 = "09x45yvc266p2v8aby8iy0ric9lmxgcvnxkvl2j3v6i7x2nad498"; 136126 + isLibrary = false; 136127 + isExecutable = true; 136128 + executableHaskellDepends = [ 136129 + ansi-terminal async base brick cmdargs containers data-default 136130 + directory doclayout extra filepath fsnotify hledger hledger-lib 136131 + megaparsec microlens microlens-platform mtl process safe split text 136132 + text-zipper time transformers unix vector vty 136133 + ]; 136134 + description = "Curses-style terminal interface for the hledger accounting system"; 136135 + license = lib.licenses.gpl3Only; 136136 + hydraPlatforms = lib.platforms.none; 136137 maintainers = with lib.maintainers; [ peti ]; 136138 }) {}; 136139 ··· 136192 maintainers = with lib.maintainers; [ peti ]; 136193 }) {}; 136194 136195 + "hledger-web_1_26" = callPackage 136196 + ({ mkDerivation, aeson, base, base64, blaze-html, blaze-markup 136197 + , bytestring, case-insensitive, clientsession, cmdargs, conduit 136198 + , conduit-extra, containers, data-default, Decimal, directory 136199 + , extra, filepath, hjsmin, hledger, hledger-lib, hspec, http-client 136200 + , http-conduit, http-types, megaparsec, mtl, network, shakespeare 136201 + , template-haskell, text, time, transformers, unix-compat 136202 + , unordered-containers, utf8-string, wai, wai-cors, wai-extra 136203 + , wai-handler-launch, warp, yaml, yesod, yesod-core, yesod-form 136204 + , yesod-static, yesod-test 136205 + }: 136206 + mkDerivation { 136207 + pname = "hledger-web"; 136208 + version = "1.26"; 136209 + sha256 = "1h4h98kv645gzb4dyhfwpa7f0xpci89la247z9aqng57d84w98ka"; 136210 + isLibrary = true; 136211 + isExecutable = true; 136212 + libraryHaskellDepends = [ 136213 + aeson base base64 blaze-html blaze-markup bytestring 136214 + case-insensitive clientsession cmdargs conduit conduit-extra 136215 + containers data-default Decimal directory extra filepath hjsmin 136216 + hledger hledger-lib hspec http-client http-conduit http-types 136217 + megaparsec mtl network shakespeare template-haskell text time 136218 + transformers unix-compat unordered-containers utf8-string wai 136219 + wai-cors wai-extra wai-handler-launch warp yaml yesod yesod-core 136220 + yesod-form yesod-static yesod-test 136221 + ]; 136222 + executableHaskellDepends = [ base ]; 136223 + testHaskellDepends = [ 136224 + base hledger hledger-lib hspec text yesod yesod-test 136225 + ]; 136226 + description = "Web-based user interface for the hledger accounting system"; 136227 + license = lib.licenses.gpl3Only; 136228 + hydraPlatforms = lib.platforms.none; 136229 + maintainers = with lib.maintainers; [ peti ]; 136230 + }) {}; 136231 + 136232 "hlibBladeRF" = callPackage 136233 ({ mkDerivation, base, bindings-DSL, bytestring, hlint, libbladeRF 136234 }: ··· 137841 ]; 137842 description = "Haskell implementation of the Nix language"; 137843 license = lib.licenses.bsd3; 137844 + maintainers = with lib.maintainers; [ Anton-Latukha sorki ]; 137845 }) {}; 137846 137847 "hnix_0_16_0" = callPackage ··· 137896 description = "Haskell implementation of the Nix language"; 137897 license = lib.licenses.bsd3; 137898 hydraPlatforms = lib.platforms.none; 137899 + maintainers = with lib.maintainers; [ Anton-Latukha sorki ]; 137900 }) {}; 137901 137902 + "hnix-store-core_0_5_0_0" = callPackage 137903 ({ mkDerivation, algebraic-graphs, attoparsec, base 137904 , base16-bytestring, base64-bytestring, binary, bytestring, cereal 137905 , containers, cryptonite, directory, filepath, hashable, hspec ··· 137929 testToolDepends = [ tasty-discover ]; 137930 description = "Core effects for interacting with the Nix store"; 137931 license = lib.licenses.asl20; 137932 + hydraPlatforms = lib.platforms.none; 137933 + maintainers = with lib.maintainers; [ Anton-Latukha sorki ]; 137934 }) {}; 137935 137936 + "hnix-store-core" = callPackage 137937 + ({ mkDerivation, algebraic-graphs, attoparsec, base 137938 + , base16-bytestring, base64-bytestring, binary, bytestring, cereal 137939 + , containers, cryptonite, directory, filepath, hashable, hspec 137940 + , lifted-base, memory, monad-control, mtl, nix-derivation, process 137941 + , relude, saltine, tasty, tasty-discover, tasty-golden, tasty-hspec 137942 + , tasty-hunit, tasty-quickcheck, temporary, text, time, unix 137943 + , unordered-containers, vector 137944 + }: 137945 + mkDerivation { 137946 + pname = "hnix-store-core"; 137947 + version = "0.6.0.0"; 137948 + sha256 = "1ypwkwc21dx2716chv7qpq75qs7hshy45sdbgwk1h33maisnkn88"; 137949 + libraryHaskellDepends = [ 137950 + algebraic-graphs attoparsec base base16-bytestring 137951 + base64-bytestring bytestring cereal containers cryptonite directory 137952 + filepath hashable lifted-base memory monad-control mtl 137953 + nix-derivation relude saltine text time unix unordered-containers 137954 + vector 137955 + ]; 137956 + testHaskellDepends = [ 137957 + attoparsec base base16-bytestring base64-bytestring binary 137958 + bytestring containers cryptonite directory filepath hspec process 137959 + relude tasty tasty-golden tasty-hspec tasty-hunit tasty-quickcheck 137960 + temporary text unix 137961 + ]; 137962 + testToolDepends = [ tasty-discover ]; 137963 + description = "Core effects for interacting with the Nix store"; 137964 + license = lib.licenses.asl20; 137965 + maintainers = with lib.maintainers; [ Anton-Latukha sorki ]; 137966 + }) {}; 137967 + 137968 + "hnix-store-remote_0_5_0_0" = callPackage 137969 ({ mkDerivation, attoparsec, base, binary, bytestring, containers 137970 , cryptonite, hnix-store-core, mtl, network, nix-derivation, text 137971 , time, unordered-containers ··· 137981 ]; 137982 description = "Remote hnix store"; 137983 license = lib.licenses.asl20; 137984 + hydraPlatforms = lib.platforms.none; 137985 + maintainers = with lib.maintainers; [ Anton-Latukha sorki ]; 137986 + }) {}; 137987 + 137988 + "hnix-store-remote" = callPackage 137989 + ({ mkDerivation, attoparsec, base, binary, bytestring, containers 137990 + , cryptonite, hnix-store-core, mtl, network, nix-derivation, relude 137991 + , text, time, unordered-containers 137992 + }: 137993 + mkDerivation { 137994 + pname = "hnix-store-remote"; 137995 + version = "0.6.0.0"; 137996 + sha256 = "1myib16z5rjx9wa3vbixwq3niqmkhdzjnsinqshvmk6hqwpgqv7r"; 137997 + libraryHaskellDepends = [ 137998 + attoparsec base binary bytestring containers cryptonite 137999 + hnix-store-core mtl network nix-derivation relude text time 138000 + unordered-containers 138001 + ]; 138002 + description = "Remote hnix store"; 138003 + license = lib.licenses.asl20; 138004 + maintainers = with lib.maintainers; [ Anton-Latukha sorki ]; 138005 }) {}; 138006 138007 "hnn" = callPackage ··· 141633 }: 141634 mkDerivation { 141635 pname = "hs-opentelemetry-api"; 141636 + version = "0.0.3.5"; 141637 + sha256 = "0jk623sg997d92iid7v04bh83mp09bb1fyf0j005r9f0zgmdmwvv"; 141638 libraryHaskellDepends = [ 141639 async attoparsec base binary bytestring charset clock containers 141640 ghc-prim hashable http-types memory mtl template-haskell text ··· 141690 mtl proto-lens text unordered-containers vector vector-builder zlib 141691 ]; 141692 description = "OpenTelemetry exporter supporting the standard OTLP protocol"; 141693 + license = lib.licenses.bsd3; 141694 + hydraPlatforms = lib.platforms.none; 141695 + }) {}; 141696 + 141697 + "hs-opentelemetry-instrumentation-cloudflare" = callPackage 141698 + ({ mkDerivation, base, case-insensitive, hs-opentelemetry-api 141699 + , hs-opentelemetry-instrumentation-conduit 141700 + , hs-opentelemetry-instrumentation-wai, http-types, text, wai 141701 + }: 141702 + mkDerivation { 141703 + pname = "hs-opentelemetry-instrumentation-cloudflare"; 141704 + version = "0.1.0.0"; 141705 + sha256 = "06y13lh1f6nad7rvkrgxmqm6rhaxfi97dgwqrjj5kv3cdi3rdl5m"; 141706 + libraryHaskellDepends = [ 141707 + base case-insensitive hs-opentelemetry-api 141708 + hs-opentelemetry-instrumentation-wai http-types text wai 141709 + ]; 141710 + testHaskellDepends = [ 141711 + base case-insensitive hs-opentelemetry-api 141712 + hs-opentelemetry-instrumentation-conduit 141713 + hs-opentelemetry-instrumentation-wai http-types text wai 141714 + ]; 141715 license = lib.licenses.bsd3; 141716 hydraPlatforms = lib.platforms.none; 141717 }) {}; ··· 141820 }: 141821 mkDerivation { 141822 pname = "hs-opentelemetry-instrumentation-yesod"; 141823 + version = "0.0.1.3"; 141824 + sha256 = "1222hkn0zjxd1bdclsridbz2bpr699k78fdvpcybgqvr2yazhyxa"; 141825 libraryHaskellDepends = [ 141826 base hs-opentelemetry-api hs-opentelemetry-instrumentation-wai 141827 microlens mtl template-haskell text unliftio wai yesod-core ··· 154058 benchmarkHaskellDepends = [ base criterion parsec ]; 154059 description = "A math-inspired programmatic 2D & 3D CAD system"; 154060 license = lib.licenses.agpl3Only; 154061 + maintainers = with lib.maintainers; [ sorki ]; 154062 }) {}; 154063 154064 "implicit-hie" = callPackage ··· 160458 ]; 160459 description = "JSaddle Hello World, an example package"; 160460 license = lib.licenses.mit; 160461 + platforms = [ 160462 + "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 160463 + ]; 160464 }) {}; 160465 160466 "jsaddle-warp" = callPackage ··· 160487 ]; 160488 description = "Interface for JavaScript that works with GHCJS and GHC"; 160489 license = lib.licenses.mit; 160490 }) {}; 160491 160492 "jsaddle-webkit2gtk" = callPackage ··· 161566 }: 161567 mkDerivation { 161568 pname = "jsonifier"; 161569 version = "0.2.1.1"; 161570 sha256 = "0wih0m3g2wj06zwl2wbs9y2bfbc593vmh25imy6hki2iq7wwr3l0"; 161571 libraryHaskellDepends = [ ··· 161577 ]; 161578 description = "Fast and simple JSON encoding toolkit"; 161579 license = lib.licenses.mit; 161580 }) {}; 161581 161582 "jsonl" = callPackage ··· 162992 license = lib.licenses.bsd3; 162993 }) {}; 162994 162995 + "katip-wai_0_1_2_0" = callPackage 162996 + ({ mkDerivation, aeson, async, base, bytestring, clock, containers 162997 + , hspec, hspec-discover, http-client, http-types, katip, network 162998 + , stm, text, uuid, wai, warp 162999 + }: 163000 + mkDerivation { 163001 + pname = "katip-wai"; 163002 + version = "0.1.2.0"; 163003 + sha256 = "10chkrjjh6ja6bil3s12hm7mfgi1j1idq490h5iqs1y3am44bda1"; 163004 + libraryHaskellDepends = [ 163005 + aeson base bytestring clock http-types katip network text uuid wai 163006 + ]; 163007 + testHaskellDepends = [ 163008 + aeson async base bytestring containers hspec http-client http-types 163009 + katip stm text uuid wai warp 163010 + ]; 163011 + testToolDepends = [ hspec-discover ]; 163012 + description = "WAI middleware for logging request and response info through katip"; 163013 + license = lib.licenses.bsd3; 163014 + hydraPlatforms = lib.platforms.none; 163015 + }) {}; 163016 + 163017 "katt" = callPackage 163018 ({ mkDerivation, aeson, base, bytestring, ConfigFile, containers 163019 , directory, errors, filepath, lens, mtl, parsec, text, url, wreq ··· 164197 164198 "keystore" = callPackage 164199 ({ mkDerivation, aeson, aeson-pretty, ansi-wl-pprint, api-tools 164200 + , array, asn1-encoding, asn1-types, base, base64-bytestring 164201 + , byteable, bytestring, containers, crypto-pubkey-types, cryptonite 164202 + , directory, filepath, lens, memory, mtl, old-locale 164203 + , optparse-applicative, pbkdf, process, raw-strings-qq, regex 164204 + , regex-base, regex-tdfa, safe, setenv, text, time 164205 + , unordered-containers, vector 164206 }: 164207 mkDerivation { 164208 pname = "keystore"; 164209 + version = "0.9.0.0"; 164210 + sha256 = "1wv9rsqz80n70z2fn2s7j4scxcx4dsdr54b8l29232vqzjyqnaxr"; 164211 isLibrary = true; 164212 isExecutable = true; 164213 enableSeparateDataOutput = true; 164214 libraryHaskellDepends = [ 164215 + aeson aeson-pretty ansi-wl-pprint api-tools array asn1-encoding 164216 + asn1-types base base64-bytestring byteable bytestring containers 164217 + crypto-pubkey-types cryptonite directory filepath lens memory mtl 164218 + old-locale optparse-applicative pbkdf regex regex-base regex-tdfa 164219 + safe setenv text time unordered-containers vector 164220 ]; 164221 executableHaskellDepends = [ 164222 aeson ansi-wl-pprint api-tools base bytestring directory filepath ··· 177437 isExecutable = true; 177438 description = "The Lazy Virtual Machine (LVM) Runtime System"; 177439 license = "LGPL"; 177440 + hydraPlatforms = lib.platforms.none; 177441 + broken = true; 177442 }) {}; 177443 177444 "lxc" = callPackage ··· 178805 maintainers = with lib.maintainers; [ Gabriel439 ]; 178806 }) {}; 178807 178808 + "managed-functions" = callPackage 178809 + ({ mkDerivation, base, containers, deepseq, exceptions, hspec }: 178810 + mkDerivation { 178811 + pname = "managed-functions"; 178812 + version = "1.1.0.0"; 178813 + sha256 = "122d71xbsw7n5rjx12378q7l9rl6vmhahak06j1rg7nxviwlb640"; 178814 + libraryHaskellDepends = [ base containers deepseq exceptions ]; 178815 + testHaskellDepends = [ base containers deepseq exceptions hspec ]; 178816 + description = "Remote Management Framework"; 178817 + license = lib.licenses.mit; 178818 + hydraPlatforms = lib.platforms.none; 178819 + broken = true; 178820 + }) {}; 178821 + 178822 + "managed-functions-http-connector" = callPackage 178823 + ({ mkDerivation, aeson, base, managed-functions 178824 + , managed-functions-json, servant-server, wai, warp 178825 + }: 178826 + mkDerivation { 178827 + pname = "managed-functions-http-connector"; 178828 + version = "1.0.0"; 178829 + sha256 = "0c7svxgmia98q72bv24kanjsp08n577sxn5n1yap7sl10y5gxvn2"; 178830 + libraryHaskellDepends = [ 178831 + aeson base managed-functions managed-functions-json servant-server 178832 + wai warp 178833 + ]; 178834 + description = "Simple HTTP-Based Connector for Managed Functions"; 178835 + license = lib.licenses.mit; 178836 + hydraPlatforms = lib.platforms.none; 178837 + }) {}; 178838 + 178839 + "managed-functions-json" = callPackage 178840 + ({ mkDerivation, aeson, base, managed-functions }: 178841 + mkDerivation { 178842 + pname = "managed-functions-json"; 178843 + version = "1.0.0"; 178844 + sha256 = "03l52pcvcirczcxrmdjc4bsrsmvdpzx3yw7q6kzcyl43i27d93ji"; 178845 + libraryHaskellDepends = [ aeson base managed-functions ]; 178846 + description = "JSON Support for the Managed Functions Framework"; 178847 + license = lib.licenses.mit; 178848 + hydraPlatforms = lib.platforms.none; 178849 + }) {}; 178850 + 178851 "manatee" = callPackage 178852 ({ mkDerivation, base, binary, cairo, containers, dbus-client 178853 , dbus-core, derive, directory, filepath, gtk, gtk-serialized-event ··· 182504 description = "Support for using mergeless from persistent-based databases"; 182505 license = lib.licenses.mit; 182506 hydraPlatforms = lib.platforms.none; 182507 + broken = true; 182508 }) {}; 182509 182510 "merkle-log" = callPackage ··· 192636 }: 192637 mkDerivation { 192638 pname = "mysql-simple"; 192639 version = "0.4.8.1"; 192640 sha256 = "18w6mp7s1dmvwzqdgdzywhp5li3h4kisrhgxllwi578nddwg2yx3"; 192641 libraryHaskellDepends = [ ··· 192647 ]; 192648 description = "A mid-level MySQL client library"; 192649 license = lib.licenses.bsd3; 192650 }) {}; 192651 192652 "mysql-simple-quasi" = callPackage ··· 196968 ]; 196969 description = "Explain why two Nix derivations differ"; 196970 license = lib.licenses.bsd3; 196971 + maintainers = with lib.maintainers; [ Gabriel439 sorki terlar ]; 196972 }) {}; 196973 196974 "nix-eval" = callPackage ··· 199439 pname = "nvim-hs"; 199440 version = "2.2.0.1"; 199441 sha256 = "1jj9n792cgv964rpgbbhc491wvyfyiplsg30n20x62gxclmjvir7"; 199442 + revision = "1"; 199443 + editedCabalFile = "0v9z8ia4ryh1rn8gc6kc1kx47k8qmlgl83sla2y4p4qdz3ysw2jh"; 199444 libraryHaskellDepends = [ 199445 base bytestring cereal cereal-conduit conduit containers 199446 data-default deepseq foreign-store hslogger megaparsec messagepack ··· 199465 license = lib.licenses.asl20; 199466 }) {}; 199467 199468 + "nvim-hs_2_2_0_2" = callPackage 199469 + ({ mkDerivation, base, bytestring, cereal, cereal-conduit, conduit 199470 + , containers, data-default, deepseq, foreign-store, hslogger, hspec 199471 + , hspec-discover, HUnit, megaparsec, messagepack, mtl, network 199472 + , optparse-applicative, path, path-io, prettyprinter 199473 + , prettyprinter-ansi-terminal, QuickCheck, resourcet, stm 199474 + , streaming-commons, template-haskell 199475 + , template-haskell-compat-v0208, text, time, time-locale-compat 199476 + , transformers, transformers-base, typed-process, unliftio 199477 + , unliftio-core, utf8-string, vector, void 199478 + }: 199479 + mkDerivation { 199480 + pname = "nvim-hs"; 199481 + version = "2.2.0.2"; 199482 + sha256 = "1l9acplyircn5bv0d5naynl0m6cz76gwfgn0rjlggy75324cddwl"; 199483 + libraryHaskellDepends = [ 199484 + base bytestring cereal cereal-conduit conduit containers 199485 + data-default deepseq foreign-store hslogger megaparsec messagepack 199486 + mtl network optparse-applicative path path-io prettyprinter 199487 + prettyprinter-ansi-terminal resourcet stm streaming-commons 199488 + template-haskell template-haskell-compat-v0208 text time 199489 + time-locale-compat transformers transformers-base typed-process 199490 + unliftio unliftio-core utf8-string vector void 199491 + ]; 199492 + testHaskellDepends = [ 199493 + base bytestring cereal cereal-conduit conduit containers 199494 + data-default foreign-store hslogger hspec hspec-discover HUnit 199495 + megaparsec messagepack mtl network optparse-applicative path 199496 + path-io prettyprinter prettyprinter-ansi-terminal QuickCheck 199497 + resourcet stm streaming-commons template-haskell 199498 + template-haskell-compat-v0208 text time time-locale-compat 199499 + transformers transformers-base typed-process unliftio unliftio-core 199500 + utf8-string vector 199501 + ]; 199502 + testToolDepends = [ hspec-discover ]; 199503 + description = "Haskell plugin backend for neovim"; 199504 + license = lib.licenses.asl20; 199505 + hydraPlatforms = lib.platforms.none; 199506 + }) {}; 199507 + 199508 "nvim-hs-contrib" = callPackage 199509 ({ mkDerivation, base, bytestring, data-default, directory 199510 , filepath, hspec, hspec-discover, messagepack, mtl, nvim-hs ··· 201530 description = "OpenAPI3 Haskell Client Code Generator"; 201531 license = lib.licenses.mit; 201532 hydraPlatforms = lib.platforms.none; 201533 + broken = true; 201534 }) {}; 201535 201536 "opencc" = callPackage ··· 205400 }: 205401 mkDerivation { 205402 pname = "pandoc-lua-marshal"; 205403 version = "0.1.6"; 205404 sha256 = "1z7hwvqaspapv97l36gq975cmhn11q0z2h1axz33bml7zf2z4bwc"; 205405 libraryHaskellDepends = [ ··· 205413 ]; 205414 description = "Use pandoc types in Lua"; 205415 license = lib.licenses.mit; 205416 }) {}; 205417 205418 "pandoc-markdown-ghci-filter" = callPackage ··· 212892 }: 212893 mkDerivation { 212894 pname = "pinned-warnings"; 212895 + version = "0.1.0.10"; 212896 + sha256 = "04ak277hv2zccfi1y8639cjz3sm881i3cjli35x7a17hn7dy8l38"; 212897 libraryHaskellDepends = [ 212898 base bytestring containers directory ghc time transformers 212899 ]; ··· 223283 ]; 223284 license = lib.licenses.bsd3; 223285 hydraPlatforms = lib.platforms.none; 223286 + broken = true; 223287 }) {}; 223288 223289 "proton-haskell" = callPackage ··· 238287 }) {}; 238288 238289 "rpmbuild-order" = callPackage 238290 ({ mkDerivation, base, case-insensitive, directory, extra, fgl 238291 , filepath, graphviz, hspec, optparse-applicative, simple-cmd 238292 , simple-cmd-args, unix ··· 239140 ]; 239141 testToolDepends = [ sydtest-discover ]; 239142 license = lib.licenses.mit; 239143 }) {}; 239144 239145 "safe-coloured-text-layout" = callPackage ··· 239157 testToolDepends = [ sydtest-discover ]; 239158 description = "Safely layout output coloured text"; 239159 license = lib.licenses.mit; 239160 }) {}; 239161 239162 "safe-coloured-text-layout-gen" = callPackage ··· 239177 ]; 239178 testToolDepends = [ sydtest-discover ]; 239179 license = lib.licenses.mit; 239180 }) {}; 239181 239182 "safe-coloured-text-terminfo" = callPackage ··· 241099 pname = "scalpel-core"; 241100 version = "0.6.2"; 241101 sha256 = "07mjff8aqwabx8yhq8bd7jpnarkkrjqss8h8s2wkfmfj808fllmf"; 241102 + revision = "1"; 241103 + editedCabalFile = "1dn9ffblmfrr5ly3v1kbcmzc3z6m4x4p5mym8pfwc9p1vfxqbvz7"; 241104 libraryHaskellDepends = [ 241105 base bytestring containers data-default fail mtl pointedlist 241106 regex-base regex-tdfa tagsoup text transformers vector ··· 242342 license = lib.licenses.gpl3Only; 242343 hydraPlatforms = lib.platforms.none; 242344 broken = true; 242345 + }) {}; 242346 + 242347 + "screenshot-to-clipboard" = callPackage 242348 + ({ mkDerivation, base, bytestring, filepath, gi-gdk, gi-gdkpixbuf 242349 + , gi-gio, gi-glib, gi-gtk, haskell-gi-base, process, temporary 242350 + , text 242351 + }: 242352 + mkDerivation { 242353 + pname = "screenshot-to-clipboard"; 242354 + version = "0.1.0.0"; 242355 + sha256 = "1pbslk15553vnvhwl2j2qzcp5lhm6fnksqfmf3d34l9a5n9y3d43"; 242356 + isLibrary = true; 242357 + isExecutable = true; 242358 + libraryHaskellDepends = [ 242359 + base bytestring filepath gi-gdk gi-gdkpixbuf gi-gio gi-glib gi-gtk 242360 + haskell-gi-base process temporary text 242361 + ]; 242362 + executableHaskellDepends = [ base ]; 242363 + description = "Take screenshot and copy it to the system clipboard"; 242364 + license = lib.licenses.bsd3; 242365 }) {}; 242366 242367 "script-monad" = callPackage ··· 256695 }: 256696 mkDerivation { 256697 pname = "souffle-haskell"; 256698 + version = "3.5.0"; 256699 + sha256 = "1s6398wfm6wly72b7kb7l13lskc1v4iivzz9d0vbwr8jv83grjbr"; 256700 libraryHaskellDepends = [ 256701 array base bytestring deepseq directory filepath mtl process 256702 profunctors temporary text text-short type-errors-pretty vector ··· 258595 "sqlite-simple" = callPackage 258596 ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder 258597 , blaze-textual, bytestring, containers, direct-sqlite, HUnit, Only 258598 , template-haskell, text, time, transformers 258599 }: 258600 mkDerivation { ··· 258610 ]; 258611 description = "Mid-Level SQLite client library"; 258612 license = lib.licenses.bsd3; 258613 }) {}; 258614 258615 "sqlite-simple-errors" = callPackage ··· 265265 description = "Configure your dotfile deployment with a DSL"; 265266 license = lib.licenses.mit; 265267 hydraPlatforms = lib.platforms.none; 265268 + broken = true; 265269 }) {}; 265270 265271 "superbubbles" = callPackage ··· 266306 }: 266307 mkDerivation { 266308 pname = "sydtest"; 266309 + version = "0.10.1.0"; 266310 + sha256 = "149nn1shdwixg3is7fgjav0ff4vaqkm39ha0gswds7z57pr18qhm"; 266311 libraryHaskellDepends = [ 266312 async autodocodec autodocodec-yaml base bytestring containers Diff 266313 dlist envparse filepath MonadRandom mtl optparse-applicative path ··· 266321 testToolDepends = [ sydtest-discover ]; 266322 description = "A modern testing framework for Haskell with good defaults and advanced testing features"; 266323 license = "unknown"; 266324 }) {}; 266325 266326 "sydtest-aeson" = callPackage ··· 266339 testToolDepends = [ sydtest-discover ]; 266340 description = "An aeson companion library for sydtest"; 266341 license = "unknown"; 266342 }) {}; 266343 266344 "sydtest-amqp" = callPackage ··· 266394 testToolDepends = [ sydtest-discover ]; 266395 description = "A Hedgehog companion library for sydtest"; 266396 license = "unknown"; 266397 }) {}; 266398 266399 "sydtest-hedis" = callPackage ··· 266414 description = "An hedis companion library for sydtest"; 266415 license = "unknown"; 266416 hydraPlatforms = lib.platforms.none; 266417 + broken = true; 266418 }) {}; 266419 266420 "sydtest-hspec" = callPackage ··· 266423 }: 266424 mkDerivation { 266425 pname = "sydtest-hspec"; 266426 + version = "0.3.0.1"; 266427 + sha256 = "1h08s06vvgm47cqrvgrkd4wy7igjx30map0k4a3xwnypa5fvbxmh"; 266428 libraryHaskellDepends = [ 266429 base hspec-core mtl QuickCheck stm sydtest 266430 ]; ··· 266432 testToolDepends = [ sydtest-discover ]; 266433 description = "An Hspec companion library for sydtest"; 266434 license = "unknown"; 266435 }) {}; 266436 266437 "sydtest-mongo" = callPackage ··· 266452 description = "An mongoDB companion library for sydtest"; 266453 license = "unknown"; 266454 hydraPlatforms = lib.platforms.none; 266455 + broken = true; 266456 }) {}; 266457 266458 "sydtest-persistent" = callPackage ··· 266468 ]; 266469 description = "A persistent companion library for sydtest"; 266470 license = "unknown"; 266471 }) {}; 266472 266473 "sydtest-persistent-postgresql" = callPackage ··· 266490 description = "An persistent-postgresql companion library for sydtest"; 266491 license = "unknown"; 266492 hydraPlatforms = lib.platforms.none; 266493 + broken = true; 266494 }) {}; 266495 266496 "sydtest-persistent-sqlite" = callPackage ··· 266509 testToolDepends = [ sydtest-discover ]; 266510 description = "A persistent-sqlite companion library for sydtest"; 266511 license = "unknown"; 266512 }) {}; 266513 266514 "sydtest-process" = callPackage ··· 266524 testToolDepends = [ sydtest-discover ]; 266525 description = "A typed-process companion library for sydtest"; 266526 license = "unknown"; 266527 }) {}; 266528 266529 "sydtest-rabbitmq" = callPackage ··· 266544 description = "An rabbitmq companion library for sydtest"; 266545 license = "unknown"; 266546 hydraPlatforms = lib.platforms.none; 266547 + broken = true; 266548 }) {}; 266549 266550 "sydtest-servant" = callPackage ··· 266564 testToolDepends = [ sydtest-discover ]; 266565 description = "A servant companion library for sydtest"; 266566 license = "unknown"; 266567 }) {}; 266568 266569 "sydtest-typed-process" = callPackage ··· 266579 testToolDepends = [ sydtest-discover ]; 266580 description = "A typed-process companion library for sydtest"; 266581 license = "unknown"; 266582 }) {}; 266583 266584 "sydtest-wai" = callPackage ··· 266600 testToolDepends = [ sydtest-discover ]; 266601 description = "A wai companion library for sydtest"; 266602 license = "unknown"; 266603 }) {}; 266604 266605 "sydtest-webdriver" = callPackage ··· 266702 description = "A yesod companion library for sydtest"; 266703 license = "unknown"; 266704 hydraPlatforms = lib.platforms.none; 266705 + broken = true; 266706 }) {}; 266707 266708 "syfco" = callPackage ··· 275627 }: 275628 mkDerivation { 275629 pname = "threads-supervisor"; 275630 + version = "1.2.0.2"; 275631 + sha256 = "0qaazhx88g2rgr16v5xp6dv92vmn0vpvj6yyd07a1frkplhhcxpi"; 275632 isLibrary = true; 275633 isExecutable = true; 275634 libraryHaskellDepends = [ ··· 277768 }: 277769 mkDerivation { 277770 pname = "tls"; 277771 + version = "1.5.8"; 277772 + sha256 = "0rxdv8ab98kd4nqql7djmmi51k4vayq21s38s43sx3rzn0iyla3b"; 277773 libraryHaskellDepends = [ 277774 asn1-encoding asn1-types async base bytestring cereal cryptonite 277775 data-default-class hourglass memory mtl network transformers x509 ··· 277787 license = lib.licenses.bsd3; 277788 }) {}; 277789 277790 + "tls_1_6_0" = callPackage 277791 ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring 277792 , cereal, cryptonite, data-default-class, gauge, hourglass, memory 277793 , mtl, network, QuickCheck, tasty, tasty-quickcheck, transformers ··· 277795 }: 277796 mkDerivation { 277797 pname = "tls"; 277798 + version = "1.6.0"; 277799 + sha256 = "1674i73dwha42ia1wlngi346lnfbag46w1wvqfim5f61q6pj17fj"; 277800 libraryHaskellDepends = [ 277801 asn1-encoding asn1-types async base bytestring cereal cryptonite 277802 data-default-class hourglass memory mtl network transformers x509 ··· 278342 testToolDepends = [ sydtest-discover ]; 278343 description = "A thread-safe concurrent token-bucket rate limiter that guarantees fairness"; 278344 license = lib.licenses.mit; 278345 }) {}; 278346 278347 "token-search" = callPackage ··· 278556 broken = true; 278557 }) {}; 278558 278559 + "toml-reader" = callPackage 278560 + ({ mkDerivation, aeson, base, bytestring, containers, deepseq 278561 + , directory, megaparsec, parser-combinators, process, tasty 278562 + , tasty-golden, tasty-hunit, text, time, unordered-containers 278563 + , vector 278564 + }: 278565 + mkDerivation { 278566 + pname = "toml-reader"; 278567 + version = "0.1.0.0"; 278568 + sha256 = "06gxp8pzh8cdrifg5n0mhlnrslrx7k235sz2ldpy60x7vz7qywv9"; 278569 + libraryHaskellDepends = [ 278570 + base containers deepseq megaparsec parser-combinators text time 278571 + ]; 278572 + testHaskellDepends = [ 278573 + aeson base bytestring containers directory process tasty 278574 + tasty-golden tasty-hunit text time unordered-containers vector 278575 + ]; 278576 + description = "TOML format parser compliant with v1.0.0."; 278577 + license = lib.licenses.bsd3; 278578 + }) {}; 278579 + 278580 "tomland" = callPackage 278581 ({ mkDerivation, base, bytestring, containers, deepseq, directory 278582 , hashable, hedgehog, hspec, hspec-hedgehog, hspec-megaparsec ··· 283675 }: 283676 mkDerivation { 283677 pname = "typed-process"; 283678 version = "0.2.10.1"; 283679 sha256 = "17h9jl7gi26v3cxb4jdcksbp755sqqp8w7303q8x8r36rmf8fdp4"; 283680 libraryHaskellDepends = [ ··· 283686 ]; 283687 description = "Run external processes, with strong typing of streams"; 283688 license = lib.licenses.mit; 283689 }) {}; 283690 283691 "typed-spreadsheet" = callPackage ··· 283759 ]; 283760 description = "Phantom-Typed version of UUID"; 283761 license = lib.licenses.mit; 283762 }) {}; 283763 283764 "typed-wire" = callPackage ··· 283938 pname = "typelits-witnesses"; 283939 version = "0.4.0.0"; 283940 sha256 = "1khy5nacmsl7h4vg7driv4yb9m3zvkhbf8divyhd249i6bdmql70"; 283941 + revision = "1"; 283942 + editedCabalFile = "11lpv0zymmxlqh2sac324znmr5rhvvfvjipddgyhv6y3l7zy7jhs"; 283943 libraryHaskellDepends = [ base dependent-sum ]; 283944 description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; 283945 license = lib.licenses.mit; ··· 289332 testHaskellDepends = [ aeson base hspec validity ]; 289333 description = "Validity instances for aeson"; 289334 license = lib.licenses.mit; 289335 }) {}; 289336 289337 "validity-bytestring" = callPackage ··· 299334 "x509" = callPackage 299335 ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base 299336 , bytestring, containers, cryptonite, hourglass, memory, mtl, pem 299337 , tasty, tasty-quickcheck, transformers 299338 }: 299339 mkDerivation { ··· 299350 ]; 299351 description = "X509 reader and writer"; 299352 license = lib.licenses.bsd3; 299353 }) {}; 299354 299355 "x509-store" = callPackage ··· 302658 }: 302659 mkDerivation { 302660 pname = "yampa-test"; 302661 + version = "0.13.5"; 302662 + sha256 = "1dc2cicrd6w1y5z14xp0h1zd1xwkj8sm5ihqlpwyvikqnzlvvi7z"; 302663 libraryHaskellDepends = [ 302664 base normaldistribution QuickCheck Yampa 302665 ];
+35
pkgs/development/libraries/sokol/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "sokol"; 5 + version = "unstable-2022-06-13"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "floooh"; 9 + repo = "sokol"; 10 + rev = "3c7016105f3b7463f0cfc74df8a55642e5448c11"; 11 + sha256 = "sha256-dKHb6GTp5aJPuWWXI4ZYnhgdXs23gGWyPymGPGwxcLY="; 12 + }; 13 + 14 + dontBuild = true; 15 + dontConfigure = true; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + 20 + mkdir -p $out/include/sokol 21 + cp *.h $out/include/sokol/ 22 + cp -R util $out/include/sokol/util 23 + 24 + runHook postInstall 25 + ''; 26 + 27 + meta = with lib; { 28 + description = "Minimal cross-platform standalone C headers"; 29 + homepage = "https://github.com/floooh/sokol"; 30 + license = licenses.zlib; 31 + platforms = platforms.all; 32 + maintainers = with maintainers; [ jonnybolton ]; 33 + }; 34 + } 35 +
+2 -2
pkgs/development/python-modules/apycula/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "apycula"; 15 - version = "0.3.1"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.8"; ··· 20 src = fetchPypi { 21 inherit version; 22 pname = "Apycula"; 23 - hash = "sha256-RoWZt2Ox0XjJ6vmuCCcNCTMfwZnwJ6fSx71fmipmu2c="; 24 }; 25 26 nativeBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "apycula"; 15 + version = "0.4"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.8"; ··· 20 src = fetchPypi { 21 inherit version; 22 pname = "Apycula"; 23 + hash = "sha256-+GVXmqoF9r/GPv2S7KP+PTS2WTeubhLBNaA9MXw5lRo="; 24 }; 25 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/django-filter/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "django-filter"; 10 - version = "21.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "sha256-YyolH6jxqttLjM7/kyu1L+L4Jt19/n8+rEDlxGPWg24="; 15 }; 16 17 propagatedBuildInputs = [ django ];
··· 7 8 buildPythonPackage rec { 9 pname = "django-filter"; 10 + version = "22.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "sha256-7Uc7duhPfoOyURuyBQw++zbRNSB9ASjf465LNuNZS6U="; 15 }; 16 17 propagatedBuildInputs = [ django ];
+37
pkgs/development/python-modules/mkdocs-gitlab-plugin/default.nix
···
··· 1 + { buildPythonPackage 2 + , fetchzip 3 + , isPy3k 4 + , lib 5 + , mkdocs 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "mkdocs-gitlab-plugin"; 10 + version = "0.1.4"; 11 + 12 + disabled = !isPy3k; 13 + 14 + src = fetchzip { 15 + url = "https://gitlab.inria.fr/vidjil/mkdocs-gitlab-plugin/-/archive/fb87fbfd404839e661a799c540664b1103096a5f/mkdocs-gitlab-plugin-fb87fbfd404839e661a799c540664b1103096a5f.tar.gz"; 16 + sha256 = "sha256-z+U0PRwymDDXVNM7a2Yl4pNNVBxpx/BhJnlx6kgyvww="; 17 + }; 18 + 19 + patches = [ ./mkdocs-gitlab-plugin.diff ]; 20 + 21 + propagatedBuildInputs = [ mkdocs ]; 22 + 23 + pythonImportsCheck = [ "mkdocs_gitlab_plugin" ]; 24 + 25 + meta = with lib; { 26 + description = "MkDocs plugin to transform strings such as #1234, %56, or !789 into links to a Gitlab repository."; 27 + homepage = "https://gitlab.inria.fr/vidjil/mkdocs-gitlab-plugin"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ snpschaaf ]; 30 + longDescription = '' 31 + Plugin for MkDocs. 32 + Transform handles such as #1234, %56, !789, &12 or $34 into links to a gitlab repository, 33 + given by the gitlab_url configuration option. 34 + Before the #/%/!/&/$ is needed either a space, a '(', or a '['. 35 + ''; 36 + }; 37 + }
+37
pkgs/development/python-modules/mkdocs-gitlab-plugin/mkdocs-gitlab-plugin.diff
···
··· 1 + diff --git a/mkdocs_gitlab_plugin/plugin.py b/mkdocs_gitlab_plugin/plugin.py 2 + index e8d7ab7..8b883f5 100644 3 + --- a/mkdocs_gitlab_plugin/plugin.py 4 + +++ b/mkdocs_gitlab_plugin/plugin.py 5 + @@ -3,7 +3,7 @@ 6 + import re 7 + import mkdocs 8 + 9 + -from mkdocs.config import Config 10 + +from mkdocs.config.config_options import Type 11 + from mkdocs.plugins import BasePlugin 12 + 13 + class GitlabLinksPlugin(BasePlugin): 14 + @@ -13,8 +13,8 @@ class GitlabLinksPlugin(BasePlugin): 15 + ''' 16 + 17 + config_scheme = ( 18 + - ('gitlab_url', mkdocs.config.config_options.Type(str, default='http://gitlab.com/XXX')), 19 + - ('verbose', mkdocs.config.config_options.Type(bool, default=False)) 20 + + ('gitlab_url', Type(str, default='http://gitlab.com/XXX')), 21 + + ('verbose', Type(bool, default=False)) 22 + ) 23 + 24 + TOKEN_PATHS = { 25 + diff --git a/mkdocs_gitlab_plugin/test.py b/mkdocs_gitlab_plugin/test.py 26 + index 4a5c35f..d5a19c6 100644 27 + --- a/mkdocs_gitlab_plugin/test.py 28 + +++ b/mkdocs_gitlab_plugin/test.py 29 + @@ -1,7 +1,7 @@ 30 + 31 + import sys 32 + 33 + -from plugin import GitlabLinksPlugin 34 + +from .plugin import GitlabLinksPlugin 35 + 36 + if __name__ == '__main__': 37 + plugin = GitlabLinksPlugin()
+3 -3
pkgs/development/python-modules/pysigma-pipeline-windows/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "pysigma-pipeline-windows"; 12 - version = "0.1.0"; 13 format = "pyproject"; 14 15 disabled = pythonOlder "3.8"; ··· 17 src = fetchFromGitHub { 18 owner = "SigmaHQ"; 19 repo = "pySigma-pipeline-windows"; 20 - rev = "v${version}"; 21 - hash = "sha256-BO6hiPLwEJX0sICqMZfcO4tqljdS+93Z1kG8IWsV9og="; 22 }; 23 24 nativeBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "pysigma-pipeline-windows"; 12 + version = "0.1.1"; 13 format = "pyproject"; 14 15 disabled = pythonOlder "3.8"; ··· 17 src = fetchFromGitHub { 18 owner = "SigmaHQ"; 19 repo = "pySigma-pipeline-windows"; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-ATDWhHY9tjuQbfIFgoGhz8qsluH9hTSI9zdPmP8GPWE="; 22 }; 23 24 nativeBuildInputs = [
+6 -14
pkgs/development/python-modules/pytorch/default.nix
··· 10 11 # Build inputs 12 numactl, 13 14 # Propagated build inputs 15 numpy, pyyaml, cffi, click, typing-extensions, ··· 145 # https://github.com/pytorch/pytorch/issues/70297 146 # https://github.com/google/breakpad/commit/605c51ed96ad44b34c457bbca320e74e194c317e 147 ./breakpad-sigstksz.patch 148 - ] ++ lib.optionals stdenv.isDarwin [ 149 # pthreadpool added support for Grand Central Dispatch in April 150 # 2020. However, this relies on functionality (DISPATCH_APPLY_AUTO) 151 # that is available starting with macOS 10.13. However, our current ··· 229 230 buildInputs = [ blas blas.provider pybind11 ] 231 ++ lib.optionals cudaSupport [ cudnn magma nccl ] 232 - ++ lib.optionals stdenv.isLinux [ numactl ]; 233 234 propagatedBuildInputs = [ 235 cffi ··· 295 296 install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libtorch.dylib 297 298 - install_name_tool -change @rpath/libtorch.dylib $lib/lib/libtorch.dylib $lib/lib/libcaffe2_observers.dylib 299 - install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libcaffe2_observers.dylib 300 - 301 - install_name_tool -change @rpath/libtorch.dylib $lib/lib/libtorch.dylib $lib/lib/libcaffe2_module_test_dynamic.dylib 302 - install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libcaffe2_module_test_dynamic.dylib 303 - 304 - install_name_tool -change @rpath/libtorch.dylib $lib/lib/libtorch.dylib $lib/lib/libcaffe2_detectron_ops.dylib 305 - install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libcaffe2_detectron_ops.dylib 306 - 307 install_name_tool -change @rpath/libtorch.dylib $lib/lib/libtorch.dylib $lib/lib/libshm.dylib 308 install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libshm.dylib 309 ''; ··· 319 }; 320 321 meta = with lib; { 322 - # darwin: error: use of undeclared identifier 'noU'; did you mean 'no'? 323 - broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 324 description = "Open source, prototype-to-production deep learning platform"; 325 homepage = "https://pytorch.org/"; 326 license = licenses.bsd3; 327 platforms = with platforms; linux ++ lib.optionals (!cudaSupport) darwin; 328 - maintainers = with maintainers; [ teh thoughtpolice tscholak ]; # tscholak esp. for darwin-related builds 329 }; 330 }
··· 10 11 # Build inputs 12 numactl, 13 + CoreServices, libobjc, 14 15 # Propagated build inputs 16 numpy, pyyaml, cffi, click, typing-extensions, ··· 146 # https://github.com/pytorch/pytorch/issues/70297 147 # https://github.com/google/breakpad/commit/605c51ed96ad44b34c457bbca320e74e194c317e 148 ./breakpad-sigstksz.patch 149 + ] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ 150 # pthreadpool added support for Grand Central Dispatch in April 151 # 2020. However, this relies on functionality (DISPATCH_APPLY_AUTO) 152 # that is available starting with macOS 10.13. However, our current ··· 230 231 buildInputs = [ blas blas.provider pybind11 ] 232 ++ lib.optionals cudaSupport [ cudnn magma nccl ] 233 + ++ lib.optionals stdenv.isLinux [ numactl ] 234 + ++ lib.optionals stdenv.isDarwin [ CoreServices libobjc ]; 235 236 propagatedBuildInputs = [ 237 cffi ··· 297 298 install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libtorch.dylib 299 300 install_name_tool -change @rpath/libtorch.dylib $lib/lib/libtorch.dylib $lib/lib/libshm.dylib 301 install_name_tool -change @rpath/libc10.dylib $lib/lib/libc10.dylib $lib/lib/libshm.dylib 302 ''; ··· 312 }; 313 314 meta = with lib; { 315 description = "Open source, prototype-to-production deep learning platform"; 316 homepage = "https://pytorch.org/"; 317 license = licenses.bsd3; 318 + maintainers = with maintainers; [ teh thoughtpolice tscholak ]; # tscholak esp. for darwin-related builds 319 platforms = with platforms; linux ++ lib.optionals (!cudaSupport) darwin; 320 + broken = stdenv.isLinux && stdenv.isAarch64; 321 }; 322 }
+3 -3
pkgs/development/python-modules/qiskit-finance/default.nix
··· 22 23 buildPythonPackage rec { 24 pname = "qiskit-finance"; 25 - version = "0.3.1"; 26 27 disabled = pythonOlder "3.6"; 28 29 src = fetchFromGitHub { 30 owner = "qiskit"; 31 repo = pname; 32 - rev = version; 33 - sha256 = "sha256-wnto3IqrJFAqIv6QAXe3BB9fvXQXe2fw/iUZe3+198M="; 34 }; 35 36 postPatch = ''
··· 22 23 buildPythonPackage rec { 24 pname = "qiskit-finance"; 25 + version = "0.3.2"; 26 27 disabled = pythonOlder "3.6"; 28 29 src = fetchFromGitHub { 30 owner = "qiskit"; 31 repo = pname; 32 + rev = "refs/tags/${version}"; 33 + sha256 = "sha256-ZmK4nYuv3DBJ0Ah819zGAh7inGVBWDnzJvl0FABJ6KU="; 34 }; 35 36 postPatch = ''
+2 -2
pkgs/development/python-modules/sagemaker/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "sagemaker"; 20 - version = "2.94.0"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.7"; 24 25 src = fetchPypi { 26 inherit pname version; 27 - hash = "sha256-WASgnF1IwqwiYcNEkHlhbV13rKdTTZgwvLcbBZaBNK8="; 28 }; 29 30 propagatedBuildInputs = [
··· 17 18 buildPythonPackage rec { 19 pname = "sagemaker"; 20 + version = "2.95.0"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.7"; 24 25 src = fetchPypi { 26 inherit pname version; 27 + hash = "sha256-Rx4PrQqWN6Q19ov9Ao5sAGvdgls+y6WjMxP+35dpKsQ="; 28 }; 29 30 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/yfinance/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "yfinance"; 13 - version = "0.1.70"; 14 15 src = fetchFromGitHub { 16 owner = "ranaroussi"; 17 repo = pname; 18 - rev = version; 19 - sha256 = "sha256-Anvt+ag0PysGynQv4q+2IrQmCPZViGqWI4dgfLQWGds="; 20 }; 21 22 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "yfinance"; 13 + version = "0.1.72"; 14 15 src = fetchFromGitHub { 16 owner = "ranaroussi"; 17 repo = pname; 18 + rev = "refs/tags/${version}"; 19 + sha256 = "sha256-7dA5+PJhuj/KAZoHMxx34yfyxDeiIf6DhufymfvD8Gg="; 20 }; 21 22 propagatedBuildInputs = [
+3 -3
pkgs/development/tools/conftest/default.nix
··· 2 3 buildGoModule rec { 4 pname = "conftest"; 5 - version = "0.32.0"; 6 7 src = fetchFromGitHub { 8 owner = "open-policy-agent"; 9 repo = "conftest"; 10 rev = "v${version}"; 11 - sha256 = "sha256-fPg3376QtbjrUJWZxjRqEFL2cWy1xb7vUX1Lfp5WFmY="; 12 }; 13 - vendorSha256 = "sha256-/RfIjCI2RMktUSVEoyJqMwdmlW6lGvXanX7RBxiaTyE="; 14 15 ldflags = [ 16 "-s"
··· 2 3 buildGoModule rec { 4 pname = "conftest"; 5 + version = "0.32.1"; 6 7 src = fetchFromGitHub { 8 owner = "open-policy-agent"; 9 repo = "conftest"; 10 rev = "v${version}"; 11 + sha256 = "sha256-lmz5ALGvTwPiz0PaGYlL3UTd6tYgO5rpUHXFoLKgS7E="; 12 }; 13 + vendorSha256 = "sha256-Y0S759iPSU7kboa9GxC56QR3caOG9gEmEG44B1Lp3w4="; 14 15 ldflags = [ 16 "-s"
+2 -2
pkgs/development/tools/continuous-integration/fly/default.nix
··· 2 3 buildGoModule rec { 4 pname = "fly"; 5 - version = "7.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "concourse"; 9 repo = "concourse"; 10 rev = "v${version}"; 11 - sha256 = "sha256-CYQQ44Yx97PvhFHrTzUM2RooNCh5Sdg8SXsV4BOzzPE="; 12 }; 13 14 vendorSha256 = "sha256-aYu5K6pK6Q0Fmagr91i6nc3t55nUjn5vasIO+kUXWrs=";
··· 2 3 buildGoModule rec { 4 pname = "fly"; 5 + version = "7.8.1"; 6 7 src = fetchFromGitHub { 8 owner = "concourse"; 9 repo = "concourse"; 10 rev = "v${version}"; 11 + sha256 = "sha256-A37XTLL6BcltKofriqai8RX+VQ4jcFRHriP4sUZ5g2c="; 12 }; 13 14 vendorSha256 = "sha256-aYu5K6pK6Q0Fmagr91i6nc3t55nUjn5vasIO+kUXWrs=";
+2 -2
pkgs/development/tools/open-policy-agent/default.nix
··· 11 12 buildGoModule rec { 13 pname = "open-policy-agent"; 14 - version = "0.40.0"; 15 16 src = fetchFromGitHub { 17 owner = "open-policy-agent"; 18 repo = "opa"; 19 rev = "v${version}"; 20 - sha256 = "sha256-rLfo2SUlxL6QFc2v+nxFnbyYcfy7i3OFhGt6ZAUteHY="; 21 }; 22 vendorSha256 = null; 23
··· 11 12 buildGoModule rec { 13 pname = "open-policy-agent"; 14 + version = "0.41.0"; 15 16 src = fetchFromGitHub { 17 owner = "open-policy-agent"; 18 repo = "opa"; 19 rev = "v${version}"; 20 + sha256 = "sha256-mvTaVKNE+XSBhJkodKSkLHoxJPOInPCycsoeeEJXABQ="; 21 }; 22 vendorSha256 = null; 23
+5
pkgs/os-specific/linux/nvidia-x11/builder.sh
··· 147 fi 148 fi 149 150 # All libs except GUI-only are installed now, so fixup them. 151 for libname in $(find "$out/lib/" $(test -n "$lib32" && echo "$lib32/lib/") $(test -n "$bin" && echo "$bin/lib/") -name '*.so.*') 152 do
··· 147 fi 148 fi 149 150 + if [ -n "$firmware" ]; then 151 + # Install the GSP firmware 152 + install -Dm644 firmware/gsp.bin $firmware/lib/firmware/nvidia/$version/gsp.bin 153 + fi 154 + 155 # All libs except GUI-only are installed now, so fixup them. 156 for libname in $(find "$out/lib/" $(test -n "$lib32" && echo "$lib32/lib/") $(test -n "$bin" && echo "$bin/lib/") -name '*.so.*') 157 do
+4 -3
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 3 let 4 generic = args: let 5 imported = import ./generic.nix args; 6 - in if lib.versionAtLeast args.version "391" 7 - && stdenv.hostPlatform.system != "x86_64-linux" then null 8 - else callPackage imported { 9 lib32 = (pkgsi686Linux.callPackage imported { 10 libsOnly = true; 11 kernel = null; ··· 21 then generic { 22 version = "515.48.07"; 23 sha256_64bit = "sha256-4odkzFsTwy52NwUT2ur8BcKJt37gURVSRQ8aAOMa4eM="; 24 settingsSha256 = "sha256-XwdMsAAu5132x2ZHqjtFvcBJk6Dao7I86UksxrOkknU="; 25 persistencedSha256 = "sha256-BTfYNDJKe4tOvV71/1JJSPltJua0Mx/RvDcWT5ccRRY="; 26 } ··· 32 beta = generic { 33 version = "515.43.04"; 34 sha256_64bit = "sha256-PodaTTUOSyMW8rtdtabIkSLskgzAymQyfToNlwxPPcc="; 35 settingsSha256 = "sha256-j47LtP6FNTPfiXFh9KwXX8vZOQzlytA30ZfW9N5F2PY="; 36 persistencedSha256 = "sha256-hULBy0wnVpLH8I0L6O9/HfgvJURtE2whpXOgN/vb3Wo="; 37 }; ··· 46 settingsSha256 = "sha256-fq6RlD6g3uylvvTjE4MmaQwxPJYU0u6IMfpPVzks0tI="; 47 persistencedSha256 = "sha256-eHvauvh8Wd+b8DK6B3ZWNjoWGztupWrR8iog9ok58io="; 48 url = "https://developer.nvidia.com/vulkan-beta-${lib.concatStrings (lib.splitString "." version)}-linux"; 49 }; 50 51 # Update note:
··· 3 let 4 generic = args: let 5 imported = import ./generic.nix args; 6 + in callPackage imported { 7 lib32 = (pkgsi686Linux.callPackage imported { 8 libsOnly = true; 9 kernel = null; ··· 19 then generic { 20 version = "515.48.07"; 21 sha256_64bit = "sha256-4odkzFsTwy52NwUT2ur8BcKJt37gURVSRQ8aAOMa4eM="; 22 + openSha256 = "sha256-EGIrdabPr+AhQxXhFb8XXumuPxC+U6XEeIeSYFvA/q4="; 23 settingsSha256 = "sha256-XwdMsAAu5132x2ZHqjtFvcBJk6Dao7I86UksxrOkknU="; 24 persistencedSha256 = "sha256-BTfYNDJKe4tOvV71/1JJSPltJua0Mx/RvDcWT5ccRRY="; 25 } ··· 31 beta = generic { 32 version = "515.43.04"; 33 sha256_64bit = "sha256-PodaTTUOSyMW8rtdtabIkSLskgzAymQyfToNlwxPPcc="; 34 + openSha256 = "sha256-1bAr5dWZ4jnY3Uo2JaEz/rhw2HuW9LZ5bACmA1VG068="; 35 settingsSha256 = "sha256-j47LtP6FNTPfiXFh9KwXX8vZOQzlytA30ZfW9N5F2PY="; 36 persistencedSha256 = "sha256-hULBy0wnVpLH8I0L6O9/HfgvJURtE2whpXOgN/vb3Wo="; 37 }; ··· 46 settingsSha256 = "sha256-fq6RlD6g3uylvvTjE4MmaQwxPJYU0u6IMfpPVzks0tI="; 47 persistencedSha256 = "sha256-eHvauvh8Wd+b8DK6B3ZWNjoWGztupWrR8iog9ok58io="; 48 url = "https://developer.nvidia.com/vulkan-beta-${lib.concatStrings (lib.splitString "." version)}-linux"; 49 + broken = kernel.kernelAtLeast "5.17"; 50 }; 51 52 # Update note:
+6 -2
pkgs/os-specific/linux/nvidia-x11/generic.nix
··· 2 , url ? null 3 , sha256_32bit ? null 4 , sha256_64bit 5 , settingsSha256 6 , settingsVersion ? version 7 , persistencedSha256 ··· 27 disable32Bit ? false 28 # 32 bit libs only version of this package 29 , lib32 ? null 30 }: 31 32 with lib; 33 34 assert !libsOnly -> kernel != null; 35 assert versionOlder version "391" -> sha256_32bit != null; 36 - assert versionAtLeast version "391" -> stdenv.hostPlatform.system == "x86_64-linux"; 37 38 let 39 nameSuffix = optionalString (!libsOnly) "-${kernel.version}"; ··· 72 73 outputs = [ "out" ] 74 ++ optional i686bundled "lib32" 75 - ++ optional (!libsOnly) "bin"; 76 outputDev = if libsOnly then null else "bin"; 77 78 kernel = if libsOnly then null else kernel.dev; ··· 100 disallowedReferences = optional (!libsOnly) [ kernel.dev ]; 101 102 passthru = { 103 settings = (if settings32Bit then pkgsi686Linux.callPackage else callPackage) (import ./settings.nix self settingsSha256) { 104 withGtk2 = preferGtk2; 105 withGtk3 = !preferGtk2;
··· 2 , url ? null 3 , sha256_32bit ? null 4 , sha256_64bit 5 + , openSha256 ? null 6 , settingsSha256 7 , settingsVersion ? version 8 , persistencedSha256 ··· 28 disable32Bit ? false 29 # 32 bit libs only version of this package 30 , lib32 ? null 31 + # Whether to extract the GSP firmware 32 + , firmware ? openSha256 != null 33 }: 34 35 with lib; 36 37 assert !libsOnly -> kernel != null; 38 assert versionOlder version "391" -> sha256_32bit != null; 39 40 let 41 nameSuffix = optionalString (!libsOnly) "-${kernel.version}"; ··· 74 75 outputs = [ "out" ] 76 ++ optional i686bundled "lib32" 77 + ++ optional (!libsOnly) "bin" 78 + ++ optional (!libsOnly && firmware) "firmware"; 79 outputDev = if libsOnly then null else "bin"; 80 81 kernel = if libsOnly then null else kernel.dev; ··· 103 disallowedReferences = optional (!libsOnly) [ kernel.dev ]; 104 105 passthru = { 106 + open = mapNullable (hash: callPackage (import ./open.nix self hash) { }) openSha256; 107 settings = (if settings32Bit then pkgsi686Linux.callPackage else callPackage) (import ./settings.nix self settingsSha256) { 108 withGtk2 = preferGtk2; 109 withGtk3 = !preferGtk2;
+37
pkgs/os-specific/linux/nvidia-x11/open.nix
···
··· 1 + nvidia_x11: hash: 2 + { stdenv 3 + , lib 4 + , fetchFromGitHub 5 + , kernel 6 + }: 7 + 8 + stdenv.mkDerivation { 9 + pname = "nvidia-open"; 10 + version = "${kernel.version}-${nvidia_x11.version}"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "NVIDIA"; 14 + repo = "open-gpu-kernel-modules"; 15 + rev = nvidia_x11.version; 16 + inherit hash; 17 + }; 18 + 19 + nativeBuildInputs = kernel.moduleBuildDependencies; 20 + 21 + makeFlags = kernel.makeFlags ++ [ 22 + "SYSSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source" 23 + "SYSOUT=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" 24 + "MODLIB=$(out)/lib/modules/${kernel.modDirVersion}" 25 + ]; 26 + 27 + installTargets = [ "modules_install" ]; 28 + enableParallelBuilding = true; 29 + 30 + meta = with lib; { 31 + description = "NVIDIA Linux Open GPU Kernel Module"; 32 + homepage = "https://github.com/NVIDIA/open-gpu-kernel-modules"; 33 + license = with licenses; [ gpl2Plus mit ]; 34 + platforms = platforms.linux; 35 + maintainers = with maintainers; [ nickcao ]; 36 + }; 37 + }
+47 -3
pkgs/os-specific/linux/upower/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitLab 4 , pkg-config 5 , rsync 6 , libxslt 7 , meson 8 , ninja 9 , python3 10 , gtk-doc 11 , docbook-xsl-nons 12 , udev ··· 23 24 stdenv.mkDerivation rec { 25 pname = "upower"; 26 - version = "0.99.17"; 27 28 outputs = [ "out" "dev" ] 29 ++ lib.optionals withDocs [ "devdoc" ]; ··· 33 owner = "upower"; 34 repo = "upower"; 35 rev = "v${version}"; 36 - sha256 = "xvvqzGxgkuGcvnO12jnLURNJUoSlnMw2g/mnII+i6Bs="; 37 }; 38 39 strictDeps = true; 40 41 depsBuildBuild = [ ··· 64 libimobiledevice 65 ]; 66 67 propagatedBuildInputs = [ 68 glib 69 ]; ··· 74 "-Dos_backend=linux" 75 "-Dsystemdsystemunitdir=${placeholder "out"}/etc/systemd/system" 76 "-Dudevrulesdir=${placeholder "out"}/lib/udev/rules.d" 77 "-Dintrospection=${if (stdenv.buildPlatform == stdenv.hostPlatform) then "auto" else "disabled"}" 78 "-Dgtk-doc=${lib.boolToString withDocs}" 79 ]; 80 81 - doCheck = false; # fails with "env: './linux/integration-test': No such file or directory" 82 83 postPatch = '' 84 patchShebangs src/linux/unittest_inspector.py 85 ''; 86 87 postInstall = ''
··· 1 { lib 2 , stdenv 3 , fetchFromGitLab 4 + , fetchpatch 5 , pkg-config 6 , rsync 7 , libxslt 8 , meson 9 , ninja 10 , python3 11 + , dbus 12 + , umockdev 13 + , libeatmydata 14 , gtk-doc 15 , docbook-xsl-nons 16 , udev ··· 27 28 stdenv.mkDerivation rec { 29 pname = "upower"; 30 + version = "0.99.19"; 31 32 outputs = [ "out" "dev" ] 33 ++ lib.optionals withDocs [ "devdoc" ]; ··· 37 owner = "upower"; 38 repo = "upower"; 39 rev = "v${version}"; 40 + sha256 = "gpLsBh4jgiDO8bxic2BTFhjIwc2q/tuAIxykTHqK6UM="; 41 }; 42 43 + patches = [ 44 + # Fix test 45 + # https://gitlab.freedesktop.org/upower/upower/-/merge_requests/150 46 + (fetchpatch { 47 + url = "https://gitlab.freedesktop.org/upower/upower/-/commit/a78ee6039054770b466749f8ec4bfbe4c278d697.patch"; 48 + sha256 = "aUPXnr/2PlOZNb7mQl43hmKe01DtuBUrGnqvwBFRf7Q="; 49 + }) 50 + ]; 51 + 52 strictDeps = true; 53 54 depsBuildBuild = [ ··· 77 libimobiledevice 78 ]; 79 80 + checkInputs = [ 81 + python3.pkgs.dbus-python 82 + python3.pkgs.python-dbusmock 83 + python3.pkgs.pygobject3 84 + dbus 85 + umockdev 86 + libeatmydata 87 + python3.pkgs.packaging 88 + ]; 89 + 90 propagatedBuildInputs = [ 91 glib 92 ]; ··· 97 "-Dos_backend=linux" 98 "-Dsystemdsystemunitdir=${placeholder "out"}/etc/systemd/system" 99 "-Dudevrulesdir=${placeholder "out"}/lib/udev/rules.d" 100 + "-Dudevhwdbdir=${placeholder "out"}/lib/udev/hwdb.d" 101 "-Dintrospection=${if (stdenv.buildPlatform == stdenv.hostPlatform) then "auto" else "disabled"}" 102 "-Dgtk-doc=${lib.boolToString withDocs}" 103 ]; 104 105 + doCheck = true; 106 107 postPatch = '' 108 + patchShebangs src/linux/integration-test.py 109 patchShebangs src/linux/unittest_inspector.py 110 + ''; 111 + 112 + preCheck = '' 113 + # Our gobject-introspection patches make the shared library paths absolute 114 + # in the GIR files. When running tests, the library is not yet installed, 115 + # though, so we need to replace the absolute path with a local one during build. 116 + # We are using a symlink that will be overwitten during installation. 117 + mkdir -p "$out/lib" 118 + ln -s "$PWD/libupower-glib/libupower-glib.so" "$out/lib/libupower-glib.so.3" 119 + ''; 120 + 121 + checkPhase = '' 122 + runHook preCheck 123 + 124 + # Slow fsync calls can make self-test fail: 125 + # https://gitlab.freedesktop.org/upower/upower/-/issues/195 126 + eatmydata meson test --print-errorlogs 127 + 128 + runHook postCheck 129 ''; 130 131 postInstall = ''
+2 -2
pkgs/servers/http/nginx/modules.nix
··· 252 name = "modsecurity-nginx"; 253 owner = "SpiderLabs"; 254 repo = "ModSecurity-nginx"; 255 - rev = "v1.0.2"; 256 - sha256 = "sha256-UXiitc3jZlgXlCsDPS+xEFLNRVgRbn8BCCXUEqAWlII="; 257 }; 258 inputs = [ pkgs.curl pkgs.geoip pkgs.libmodsecurity pkgs.libxml2 pkgs.lmdb pkgs.yajl ]; 259 disableIPC = true;
··· 252 name = "modsecurity-nginx"; 253 owner = "SpiderLabs"; 254 repo = "ModSecurity-nginx"; 255 + rev = "v1.0.3"; 256 + sha256 = "sha256-xp0/eqi5PJlzb9NaUbNnzEqNcxDPyjyNwZOwmlv1+ag="; 257 }; 258 inputs = [ pkgs.curl pkgs.geoip pkgs.libmodsecurity pkgs.libxml2 pkgs.lmdb pkgs.yajl ]; 259 disableIPC = true;
+8 -5
pkgs/servers/monitoring/grafana/default.nix
··· 2 3 buildGoModule rec { 4 pname = "grafana"; 5 - version = "8.5.5"; 6 7 - excludedPackages = [ "alert_webhook_listener" "clean-swagger" "release_publisher" "slow_proxy" "slow_proxy_mac" "macaron" ]; 8 9 src = fetchFromGitHub { 10 rev = "v${version}"; 11 owner = "grafana"; 12 repo = "grafana"; 13 - sha256 = "sha256-ixqvBwwnkdEb3dFFw+I3XUksf2uMezbwcyyhmLTqh2M="; 14 }; 15 16 srcStatic = fetchurl { 17 url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz"; 18 - sha256 = "0mqzrzi21qi3m4wm7q18i3n7cg8nwzlc3nw1axgmp7vs1bh5vs0l"; 19 }; 20 21 - vendorSha256 = "sha256-ZL+A6Sz0uHg7ZzYHmA4EU5ZxfRXBLyKglk135iQT600="; 22 23 nativeBuildInputs = [ wire ]; 24 ··· 27 # From https://github.com/grafana/grafana/blob/v8.2.3/Makefile#L33-L35 28 wire gen -tags oss ./pkg/server 29 wire gen -tags oss ./pkg/cmd/grafana-cli/runner 30 31 # The testcase makes an API call against grafana.com: 32 #
··· 2 3 buildGoModule rec { 4 pname = "grafana"; 5 + version = "9.0.0"; 6 7 + excludedPackages = [ "alert_webhook_listener" "clean-swagger" "release_publisher" "slow_proxy" "slow_proxy_mac" "macaron" "devenv" ]; 8 9 src = fetchFromGitHub { 10 rev = "v${version}"; 11 owner = "grafana"; 12 repo = "grafana"; 13 + sha256 = "sha256-vPPaOepx4uwOWOjeE+dWULxmJPk5To9UY3rnoEqeAJA="; 14 }; 15 16 srcStatic = fetchurl { 17 url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz"; 18 + sha256 = "0xl5z31mkgbwkwcpvr0v0hmc0ynvxjn39w4sb1vc572kjbwqpvkr"; 19 }; 20 21 + vendorSha256 = "sha256-E3uSwdgoPgQPQ/uCIuTxcYeNRYbQR7q7SrUrh/ypENk="; 22 23 nativeBuildInputs = [ wire ]; 24 ··· 27 # From https://github.com/grafana/grafana/blob/v8.2.3/Makefile#L33-L35 28 wire gen -tags oss ./pkg/server 29 wire gen -tags oss ./pkg/cmd/grafana-cli/runner 30 + 31 + go generate ./pkg/framework/coremodel 32 + go generate ./public/app/plugins 33 34 # The testcase makes an API call against grafana.com: 35 #
+23
pkgs/tools/misc/iam-policy-json-to-terraform/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "iam-policy-json-to-terraform"; 5 + version = "1.8.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "flosell"; 9 + repo = pname; 10 + rev = "${version}"; 11 + sha256 = "sha256-1OQvm3M/n/8F3QHNfPlq9YQVyV97NlHX3dXWA/VXEZU="; 12 + }; 13 + 14 + vendorSha256 = "sha256-Fn5GgGW9QhnQOKV34Kzl1Yctv3XLQ51lCuuGx5kvlIA="; 15 + 16 + meta = with lib; { 17 + description = "Small tool to convert an IAM Policy in JSON format into a Terraform aws_iam_policy_document "; 18 + homepage = "https://github.com/flosell/iam-policy-json-to-terraform"; 19 + changelog = "https://github.com/flosell/iam-policy-json-to-terraform/releases/tag/${version}"; 20 + license = licenses.asl20; 21 + maintainers = [ maintainers.ivankovnatsky ]; 22 + }; 23 + }
+2 -2
pkgs/tools/misc/mongodb-compass/default.nix
··· 33 }: 34 35 let 36 - version = "1.31.2"; 37 38 rpath = lib.makeLibraryPath [ 39 alsa-lib ··· 82 if stdenv.hostPlatform.system == "x86_64-linux" then 83 fetchurl { 84 url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb"; 85 - sha256 = "sha256-ij5lOP3xaty9YjKPionfUhZTcuumlFHt46MUMkjO2yA="; 86 } 87 else 88 throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}";
··· 33 }: 34 35 let 36 + version = "1.32.2"; 37 38 rpath = lib.makeLibraryPath [ 39 alsa-lib ··· 82 if stdenv.hostPlatform.system == "x86_64-linux" then 83 fetchurl { 84 url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb"; 85 + sha256 = "sha256-ceQp4EiLEWy8niGC0uUdWJrvmdt9Ijt29YdLt7vtcyY="; 86 } 87 else 88 throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}";
+10 -5
pkgs/tools/security/libmodsecurity/default.nix
··· 1 { lib, stdenv, fetchFromGitHub 2 , autoreconfHook, bison, flex, pkg-config 3 - , curl, geoip, libmaxminddb, libxml2, lmdb, lua, pcre 4 - , ssdeep, yajl 5 , nixosTests 6 }: 7 8 stdenv.mkDerivation rec { 9 pname = "libmodsecurity"; 10 - version = "3.0.6"; 11 12 src = fetchFromGitHub { 13 owner = "SpiderLabs"; 14 repo = "ModSecurity"; 15 rev = "v${version}"; 16 - sha256 = "sha256-V+NBT2YN8qO3Px8zEzSA2ZsjSf1pv8+VlLxYlrpqfGg="; 17 fetchSubmodules = true; 18 }; 19 20 nativeBuildInputs = [ autoreconfHook bison flex pkg-config ]; 21 - buildInputs = [ curl geoip libmaxminddb libxml2 lmdb lua pcre ssdeep yajl ]; 22 23 outputs = [ "out" "dev" ]; 24 25 configureFlags = [ 26 "--enable-parser-generation" 27 "--with-curl=${curl.dev}" 28 "--with-libxml=${libxml2.dev}" 29 "--with-lmdb=${lmdb.out}" 30 "--with-maxmind=${libmaxminddb}" 31 "--with-pcre=${pcre.dev}" 32 "--with-ssdeep=${ssdeep}" 33 ]; 34 ··· 36 substituteInPlace build/lmdb.m4 \ 37 --replace "\''${path}/include/lmdb.h" "${lmdb.dev}/include/lmdb.h" \ 38 --replace "lmdb_inc_path=\"\''${path}/include\"" "lmdb_inc_path=\"${lmdb.dev}/include\"" 39 substituteInPlace build/ssdeep.m4 \ 40 --replace "/usr/local/libfuzzy" "${ssdeep}/lib" \ 41 --replace "\''${path}/include/fuzzy.h" "${ssdeep}/include/fuzzy.h" \
··· 1 { lib, stdenv, fetchFromGitHub 2 , autoreconfHook, bison, flex, pkg-config 3 + , curl, geoip, libmaxminddb, libxml2, lmdb, lua, pcre, pcre2, ssdeep, yajl 4 , nixosTests 5 }: 6 7 stdenv.mkDerivation rec { 8 pname = "libmodsecurity"; 9 + version = "3.0.7"; 10 11 src = fetchFromGitHub { 12 owner = "SpiderLabs"; 13 repo = "ModSecurity"; 14 rev = "v${version}"; 15 + sha256 = "sha256-Xf+wtYg0ZKgP5qo891fCMML/7tgSM/fvBdrmsgJixY4="; 16 fetchSubmodules = true; 17 }; 18 19 nativeBuildInputs = [ autoreconfHook bison flex pkg-config ]; 20 + buildInputs = [ curl geoip libmaxminddb libxml2 lmdb lua pcre pcre2 ssdeep yajl ]; 21 22 outputs = [ "out" "dev" ]; 23 24 configureFlags = [ 25 "--enable-parser-generation" 26 + "--disable-doxygen-doc" 27 "--with-curl=${curl.dev}" 28 "--with-libxml=${libxml2.dev}" 29 "--with-lmdb=${lmdb.out}" 30 "--with-maxmind=${libmaxminddb}" 31 "--with-pcre=${pcre.dev}" 32 + "--with-pcre2=${pcre2.out}" 33 "--with-ssdeep=${ssdeep}" 34 ]; 35 ··· 37 substituteInPlace build/lmdb.m4 \ 38 --replace "\''${path}/include/lmdb.h" "${lmdb.dev}/include/lmdb.h" \ 39 --replace "lmdb_inc_path=\"\''${path}/include\"" "lmdb_inc_path=\"${lmdb.dev}/include\"" 40 + substituteInPlace build/pcre2.m4 \ 41 + --replace "/usr/local/pcre2" "${pcre2.out}/lib" \ 42 + --replace "\''${path}/include/pcre2.h" "${pcre2.dev}/include/pcre2.h" \ 43 + --replace "pcre2_inc_path=\"\''${path}/include\"" "pcre2_inc_path=\"${pcre2.dev}/include\"" 44 substituteInPlace build/ssdeep.m4 \ 45 --replace "/usr/local/libfuzzy" "${ssdeep}/lib" \ 46 --replace "\''${path}/include/fuzzy.h" "${ssdeep}/include/fuzzy.h" \
+3 -9
pkgs/tools/security/nmap-formatter/default.nix
··· 5 6 buildGoModule rec { 7 pname = "nmap-formatter"; 8 - version = "0.3.0"; 9 10 src = fetchFromGitHub { 11 owner = "vdjagilev"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-tG91Cutk+RCBPv4Rf8CVnZa5Wh8qgsxEL0C6WIoEdsw="; 15 }; 16 17 - vendorSha256 = "sha256-WXX1b8fPcwIE40w+Kzd7ZuSRXPiYtolRXC/Z8Kc9H2s="; 18 - 19 - postPatch = '' 20 - # Fix hard-coded release 21 - substituteInPlace cmd/root.go \ 22 - --replace "0.2.0" "${version}" 23 - ''; 24 25 meta = with lib; { 26 description = "Tool that allows you to convert nmap output";
··· 5 6 buildGoModule rec { 7 pname = "nmap-formatter"; 8 + version = "1.0.2"; 9 10 src = fetchFromGitHub { 11 owner = "vdjagilev"; 12 repo = pname; 13 rev = "v${version}"; 14 + hash = "sha256-ePhm1qwluHhMC0oS/qEHkZv04nAdh2IDSkIW507MLjo="; 15 }; 16 17 + vendorSha256 = "sha256-zkPXjCC+ZdR14O60ZaGFYdEZVxQ5z99HVmLOR10qqfg="; 18 19 meta = with lib; { 20 description = "Tool that allows you to convert nmap output";
+11 -1
pkgs/top-level/all-packages.nix
··· 1923 1924 iamy = callPackage ../tools/admin/iamy { }; 1925 1926 azure-cli = callPackage ../tools/admin/azure-cli { }; 1927 1928 azure-functions-core-tools = callPackage ../development/tools/azure-functions-core-tools { }; ··· 6050 fprintd-tod = callPackage ../tools/security/fprintd/tod.nix { }; 6051 6052 ferdi = callPackage ../applications/networking/instant-messengers/ferdi { 6053 mkFranzDerivation = callPackage ../applications/networking/instant-messengers/franz/generic.nix { }; 6054 }; 6055 ··· 20758 inherit (darwin.apple_sdk.frameworks) Carbon; 20759 }; 20760 20761 sonic = callPackage ../development/libraries/sonic { }; 20762 20763 sope = callPackage ../development/libraries/sope { }; ··· 22175 modules = [ nginxModules.rtmp nginxModules.dav nginxModules.moreheaders nginxModules.shibboleth ]; 22176 }; 22177 22178 - libmodsecurity = callPackage ../tools/security/libmodsecurity { }; 22179 22180 ngircd = callPackage ../servers/irc/ngircd { }; 22181
··· 1923 1924 iamy = callPackage ../tools/admin/iamy { }; 1925 1926 + iam-policy-json-to-terraform = callPackage ../tools/misc/iam-policy-json-to-terraform { }; 1927 + 1928 azure-cli = callPackage ../tools/admin/azure-cli { }; 1929 1930 azure-functions-core-tools = callPackage ../development/tools/azure-functions-core-tools { }; ··· 6052 fprintd-tod = callPackage ../tools/security/fprintd/tod.nix { }; 6053 6054 ferdi = callPackage ../applications/networking/instant-messengers/ferdi { 6055 + mkFranzDerivation = callPackage ../applications/networking/instant-messengers/franz/generic.nix { }; 6056 + }; 6057 + 6058 + ferdium = callPackage ../applications/networking/instant-messengers/ferdium { 6059 mkFranzDerivation = callPackage ../applications/networking/instant-messengers/franz/generic.nix { }; 6060 }; 6061 ··· 20764 inherit (darwin.apple_sdk.frameworks) Carbon; 20765 }; 20766 20767 + sokol = callPackage ../development/libraries/sokol { }; 20768 + 20769 sonic = callPackage ../development/libraries/sonic { }; 20770 20771 sope = callPackage ../development/libraries/sope { }; ··· 22183 modules = [ nginxModules.rtmp nginxModules.dav nginxModules.moreheaders nginxModules.shibboleth ]; 22184 }; 22185 22186 + libmodsecurity = callPackage ../tools/security/libmodsecurity { 22187 + autoreconfHook = buildPackages.autoreconfHook269; 22188 + }; 22189 22190 ngircd = callPackage ../servers/irc/ngircd { }; 22191
+4
pkgs/top-level/linux-kernels.nix
··· 357 nvidia_x11_vulkan_beta = nvidiaPackages.vulkan_beta; 358 nvidia_x11 = nvidiaPackages.stable; 359 360 openrazer = callPackage ../os-specific/linux/openrazer/driver.nix { }; 361 362 ply = callPackage ../os-specific/linux/ply { };
··· 357 nvidia_x11_vulkan_beta = nvidiaPackages.vulkan_beta; 358 nvidia_x11 = nvidiaPackages.stable; 359 360 + # this is not a replacement for nvidia_x11 361 + # only the opensource kernel driver exposed for hydra to build 362 + nvidia_x11_beta_open = nvidiaPackages.beta.open; 363 + 364 openrazer = callPackage ../os-specific/linux/openrazer/driver.nix { }; 365 366 ply = callPackage ../os-specific/linux/ply { };
+3
pkgs/top-level/python-packages.nix
··· 5439 mkdocs = callPackage ../development/python-modules/mkdocs { }; 5440 mkdocs-drawio-exporter = callPackage ../development/python-modules/mkdocs-drawio-exporter { }; 5441 mkdocs-exclude = callPackage ../development/python-modules/mkdocs-exclude { }; 5442 mkdocs-macros = callPackage ../development/python-modules/mkdocs-macros { }; 5443 mkdocs-material = callPackage ../development/python-modules/mkdocs-material { }; 5444 mkdocs-material-extensions = callPackage ../development/python-modules/mkdocs-material/mkdocs-material-extensions.nix { }; ··· 8760 8761 pytorch = callPackage ../development/python-modules/pytorch { 8762 cudaSupport = pkgs.config.cudaSupport or false; 8763 }; 8764 8765 pytorch-bin = callPackage ../development/python-modules/pytorch/bin.nix { };
··· 5439 mkdocs = callPackage ../development/python-modules/mkdocs { }; 5440 mkdocs-drawio-exporter = callPackage ../development/python-modules/mkdocs-drawio-exporter { }; 5441 mkdocs-exclude = callPackage ../development/python-modules/mkdocs-exclude { }; 5442 + mkdocs-gitlab = callPackage ../development/python-modules/mkdocs-gitlab-plugin { }; 5443 mkdocs-macros = callPackage ../development/python-modules/mkdocs-macros { }; 5444 mkdocs-material = callPackage ../development/python-modules/mkdocs-material { }; 5445 mkdocs-material-extensions = callPackage ../development/python-modules/mkdocs-material/mkdocs-material-extensions.nix { }; ··· 8761 8762 pytorch = callPackage ../development/python-modules/pytorch { 8763 cudaSupport = pkgs.config.cudaSupport or false; 8764 + inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices; 8765 + inherit (pkgs.darwin) libobjc; 8766 }; 8767 8768 pytorch-bin = callPackage ../development/python-modules/pytorch/bin.nix { };