Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
dc1fa2c7 dc7ebb01

+1368 -895
+6
maintainers/maintainer-list.nix
··· 5553 5553 matrix = "@chris:netsoj.nl"; 5554 5554 name = "Chris Josten"; 5555 5555 }; 5556 + henkery = { 5557 + email = "jim@reupload.nl"; 5558 + github = "henkery"; 5559 + githubId = 1923309; 5560 + name = "Jim van Abkoude"; 5561 + }; 5556 5562 henrikolsson = { 5557 5563 email = "henrik@fixme.se"; 5558 5564 github = "henrikolsson";
+119 -2
nixos/modules/programs/firefox.nix
··· 42 42 description = mdDoc '' 43 43 Group policies to install. 44 44 45 - See [Mozilla's documentation](https://github.com/mozilla/policy-templates/blob/master/README.md") 45 + See [Mozilla's documentation](https://github.com/mozilla/policy-templates/blob/master/README.md) 46 46 for a list of available options. 47 47 48 48 This can be used to install extensions declaratively! Check out the ··· 79 79 ''; 80 80 }; 81 81 82 + languagePacks = mkOption { 83 + # Available languages can be found in https://releases.mozilla.org/pub/firefox/releases/${cfg.package.version}/linux-x86_64/xpi/ 84 + type = types.listOf (types.enum ([ 85 + "ach" 86 + "af" 87 + "an" 88 + "ar" 89 + "ast" 90 + "az" 91 + "be" 92 + "bg" 93 + "bn" 94 + "br" 95 + "bs" 96 + "ca-valencia" 97 + "ca" 98 + "cak" 99 + "cs" 100 + "cy" 101 + "da" 102 + "de" 103 + "dsb" 104 + "el" 105 + "en-CA" 106 + "en-GB" 107 + "en-US" 108 + "eo" 109 + "es-AR" 110 + "es-CL" 111 + "es-ES" 112 + "es-MX" 113 + "et" 114 + "eu" 115 + "fa" 116 + "ff" 117 + "fi" 118 + "fr" 119 + "fy-NL" 120 + "ga-IE" 121 + "gd" 122 + "gl" 123 + "gn" 124 + "gu-IN" 125 + "he" 126 + "hi-IN" 127 + "hr" 128 + "hsb" 129 + "hu" 130 + "hy-AM" 131 + "ia" 132 + "id" 133 + "is" 134 + "it" 135 + "ja" 136 + "ka" 137 + "kab" 138 + "kk" 139 + "km" 140 + "kn" 141 + "ko" 142 + "lij" 143 + "lt" 144 + "lv" 145 + "mk" 146 + "mr" 147 + "ms" 148 + "my" 149 + "nb-NO" 150 + "ne-NP" 151 + "nl" 152 + "nn-NO" 153 + "oc" 154 + "pa-IN" 155 + "pl" 156 + "pt-BR" 157 + "pt-PT" 158 + "rm" 159 + "ro" 160 + "ru" 161 + "sco" 162 + "si" 163 + "sk" 164 + "sl" 165 + "son" 166 + "sq" 167 + "sr" 168 + "sv-SE" 169 + "szl" 170 + "ta" 171 + "te" 172 + "th" 173 + "tl" 174 + "tr" 175 + "trs" 176 + "uk" 177 + "ur" 178 + "uz" 179 + "vi" 180 + "xh" 181 + "zh-CN" 182 + "zh-TW" 183 + ])); 184 + default = [ ]; 185 + description = mdDoc '' 186 + The language packs to install. 187 + ''; 188 + }; 189 + 82 190 autoConfig = mkOption { 83 191 type = types.lines; 84 192 default = ""; ··· 136 244 }; 137 245 138 246 # Preferences are converted into a policy 139 - programs.firefox.policies = mkIf (cfg.preferences != { }) { 247 + programs.firefox.policies = { 140 248 Preferences = (mapAttrs 141 249 (_: value: { Value = value; Status = cfg.preferencesStatus; }) 142 250 cfg.preferences); 251 + ExtensionSettings = listToAttrs (map 252 + (lang: nameValuePair 253 + "langpack-${lang}@firefox.mozilla.org" 254 + { 255 + installation_mode = "normal_installed"; 256 + install_url = "https://releases.mozilla.org/pub/firefox/releases/${cfg.package.version}/linux-x86_64/xpi/${lang}.xpi"; 257 + } 258 + ) 259 + cfg.languagePacks); 143 260 }; 144 261 }; 145 262
+1 -1
nixos/tests/sourcehut.nix
··· 35 35 }; 36 36 37 37 security.sudo.wheelNeedsPassword = false; 38 - nix.trustedUsers = [ "root" "build" ]; 38 + nix.settings.trusted-users = [ "root" "build" ]; 39 39 documentation.nixos.enable = false; 40 40 41 41 # builds.sr.ht-image-specific network settings
+68
pkgs/applications/audio/tuner/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , pkg-config 5 + , meson 6 + , ninja 7 + , vala 8 + , glib 9 + , itstool 10 + , wrapGAppsHook 11 + , desktop-file-utils 12 + , libsoup 13 + , json-glib 14 + , geoclue2 15 + , geocode-glib 16 + , libgee 17 + , gtk3 18 + , pantheon 19 + , gst_all_1 20 + }: 21 + 22 + stdenv.mkDerivation rec { 23 + pname = "tuner"; 24 + version = "1.5.1"; 25 + 26 + src = fetchFromGitHub { 27 + owner = "louis77"; 28 + repo = pname; 29 + rev = version; 30 + sha256 = "sha256-tG1AMEqHcp4jHNgWDy9fS2FtlxFTlpMD5MVbepIY+GY="; 31 + }; 32 + 33 + nativeBuildInputs = [ 34 + pkg-config 35 + meson 36 + ninja 37 + vala 38 + glib 39 + itstool 40 + wrapGAppsHook 41 + desktop-file-utils 42 + ]; 43 + 44 + buildInputs = [ 45 + libsoup 46 + json-glib 47 + geoclue2 48 + geocode-glib 49 + libgee 50 + glib 51 + gtk3 52 + pantheon.granite 53 + gst_all_1.gstreamer 54 + gst_all_1.gst-plugins-base 55 + gst_all_1.gst-plugins-bad 56 + gst_all_1.gst-plugins-good 57 + gst_all_1.gst-plugins-ugly 58 + ]; 59 + 60 + meta = with lib; { 61 + homepage = "https://github.com/louis77/tuner"; 62 + description = "An app to discover and play internet radio stations"; 63 + license = licenses.gpl3Plus; 64 + platforms = platforms.linux; 65 + mainProgram = "com.github.louis77.tuner"; 66 + maintainers = [ maintainers.abbe ]; 67 + }; 68 + }
+5 -7
pkgs/applications/audio/vcv-rack/default.nix
··· 115 115 in 116 116 stdenv.mkDerivation rec { 117 117 pname = "VCV-Rack"; 118 - version = "2.2.0"; 118 + version = "2.2.1"; 119 119 120 120 desktopItems = [ 121 121 (makeDesktopItem { ··· 135 135 owner = "VCVRack"; 136 136 repo = "Rack"; 137 137 rev = "v${version}"; 138 - sha256 = "1ag1syjxdzxx13pdcfga9ksc6a5hw9bcdfhbry8qd2pxs9lmv2q6"; 138 + sha256 = "079alr6y0101k92v5lrnycljcbifh0hsvklbf4w5ax2zrxnyplq8"; 139 139 }; 140 140 141 141 patches = [ ··· 203 203 zstd 204 204 ]; 205 205 206 - makeFlags = [ 207 - ( if stdenv.hostPlatform.system == "aarch64-linux" 208 - then "MACHINE=arm64-linux" 209 - else "MACHINE=${stdenv.hostPlatform.config}" 210 - ) 206 + makeFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ 207 + "CROSS_COMPILE=${stdenv.cc.targetPrefix}" 208 + ] ++ [ 211 209 "all" 212 210 "plugins" 213 211 ];
+1 -1
pkgs/applications/audio/vcv-rack/rack-minimize-vendoring.patch
··· 1 1 diff --git a/Makefile b/Makefile 2 - index e1be07d1..309b3b0b 100644 2 + index fc7c3af1..c3672c6a 100644 3 3 --- a/Makefile 4 4 +++ b/Makefile 5 5 @@ -34,7 +34,7 @@ ifdef ARCH_LIN
+2 -2
pkgs/applications/blockchains/btcpayserver/default.nix
··· 6 6 7 7 buildDotnetModule rec { 8 8 pname = "btcpayserver"; 9 - version = "1.7.1"; 9 + version = "1.7.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = pname; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-6E8TJ1NgWlLTegDQ4UcCQpAAQibbefg5x7qhSrSKAgc="; 15 + sha256 = "sha256-EZ8gfpTBmTB/lGtexZYbD9x1F7rFXIEaEhhwS6gOEV4="; 16 16 }; 17 17 18 18 projectFile = "BTCPayServer/BTCPayServer.csproj";
+41 -46
pkgs/applications/blockchains/btcpayserver/deps.nix
··· 31 31 }) 32 32 (fetchNuGet { 33 33 pname = "BTCPayServer.Lightning.All"; 34 - version = "1.4.9"; 35 - sha256 = "0r9ssz00d0zbbszs1ypc9jvbwg5myh9jmw46wvzk0jhp5xfz5mip"; 34 + version = "1.4.12"; 35 + sha256 = "1n7yv6q8fbk02d334a19zyicvlammjhfrg9rf18jyb3szj8g36k7"; 36 36 }) 37 37 (fetchNuGet { 38 38 pname = "BTCPayServer.Lightning.Charge"; 39 - version = "1.3.14"; 40 - sha256 = "1frhj5jmncsdcb1x5jy733l40bqifdwirmq6mjdn3596fmgjvh9b"; 39 + version = "1.3.16"; 40 + sha256 = "050wh5gw3hgql8191z0yv7sj06wg5da6kvkbcg9hq3ildj0fdj67"; 41 41 }) 42 42 (fetchNuGet { 43 43 pname = "BTCPayServer.Lightning.CLightning"; 44 - version = "1.3.16"; 45 - sha256 = "0nh1fcjpkl6l2par60p0w7nwc45za28iagmdsq6czz68kpvfx83c"; 44 + version = "1.3.19"; 45 + sha256 = "1jx9233apry0kb54df7k0p7vrsp3hp27f5d0j2802gry04sihrl7"; 46 46 }) 47 47 (fetchNuGet { 48 48 pname = "BTCPayServer.Lightning.Common"; 49 - version = "1.3.15"; 50 - sha256 = "1axmdn6qdzxljdvidw8s68sfgy5ykmxv0nkzcdsgdmhisahaz2pa"; 49 + version = "1.3.16"; 50 + sha256 = "1g37736b4k0ncpyy2qycbk4l85fqvgwac3k98nbdj0dvhfghp1dn"; 51 51 }) 52 52 (fetchNuGet { 53 53 pname = "BTCPayServer.Lightning.Common"; 54 - version = "1.3.7"; 55 - sha256 = "1hsn51zx34fswjph1dgplwj92045d4ymallryjxbm5gl1wgnvqvz"; 54 + version = "1.3.17"; 55 + sha256 = "1bb8q57lnqnp3wijw41vvbwgz8rgg4g9pw8qhd4iiqi1w94q1bkz"; 56 56 }) 57 57 (fetchNuGet { 58 58 pname = "BTCPayServer.Lightning.Eclair"; 59 - version = "1.3.14"; 60 - sha256 = "1ld5diahj75jbnqmvvsc0h65sbd4i73k7sik325yw4gvz4jmw2ih"; 59 + version = "1.3.16"; 60 + sha256 = "1q109kmzj99axk35l68z3gi29ww1xd62zaxj1f39myvlcv9ncb41"; 61 61 }) 62 62 (fetchNuGet { 63 63 pname = "BTCPayServer.Lightning.LNBank"; 64 - version = "1.3.16"; 65 - sha256 = "0nq36jg0qfj93djk5b9i42v8gm2zqkf8a2ddb69z52gsg8ixvcm6"; 64 + version = "1.3.18"; 65 + sha256 = "166v6mhmy47fgny55c4mzqb2x7anqyxnd0g409vfgyg5fq4gc15v"; 66 66 }) 67 67 (fetchNuGet { 68 68 pname = "BTCPayServer.Lightning.LND"; 69 - version = "1.4.7"; 70 - sha256 = "144wlnlvkmn1hrl7kwsqfvlla3lknd599rmp6zf1nv0n4jsj15l4"; 69 + version = "1.4.9"; 70 + sha256 = "0ya365w3i3sjv7wafm6wmasf9mpfsh0fcbhawsv5br7m7lpppwhh"; 71 71 }) 72 72 (fetchNuGet { 73 73 pname = "BTCPayServer.Lightning.LNDhub"; 74 - version = "1.0.10"; 75 - sha256 = "12c5gmd62vik0ar786jlhzf0gid4smi5ysl12mxpx1i0dndgapbh"; 74 + version = "1.0.12"; 75 + sha256 = "1gb61a5mdmyigy7ps2c8n4iig6i32rdsif9kwn35yxx25zbnmbk2"; 76 + }) 77 + (fetchNuGet { 78 + pname = "BTCPayServer.NETCore.Plugins.Mvc"; 79 + version = "1.4.4"; 80 + sha256 = "1kmmj5m7s41wc1akpqw1b1j7pp4c0vn6sqxb487980ibpj6hyisl"; 81 + }) 82 + (fetchNuGet { 83 + pname = "BTCPayServer.NETCore.Plugins"; 84 + version = "1.4.4"; 85 + sha256 = "0rk0prmb0539ji5fd33cqy3yvw51i5i8m5hb43admr5z8960dd6l"; 76 86 }) 77 87 (fetchNuGet { 78 88 pname = "CsvHelper"; ··· 171 181 }) 172 182 (fetchNuGet { 173 183 pname = "LNURL"; 174 - version = "0.0.26"; 175 - sha256 = "0gb6n5zvf3mnmychbv3hmzbfllxamq26y1c18ql6y02wy2asrwff"; 184 + version = "0.0.27"; 185 + sha256 = "126rhls5yxxw4i419w59762cq3zmjccjd8x42qmb4nhqmbgybkzm"; 176 186 }) 177 187 (fetchNuGet { 178 188 pname = "MailKit"; ··· 180 190 sha256 = "18l0jkrc4d553kiw4vdjzzpafpvsgjs1n19kjbi8isnhzidmsl4j"; 181 191 }) 182 192 (fetchNuGet { 183 - pname = "McMaster.NETCore.Plugins.Mvc"; 184 - version = "1.4.0"; 185 - sha256 = "07i0p6236hyh1c3cb5v6zkayq5807rd6msc341v2jh6yd5radasy"; 186 - }) 187 - (fetchNuGet { 188 - pname = "McMaster.NETCore.Plugins"; 189 - version = "1.4.0"; 190 - sha256 = "1k2qz0qnf2b1kfwbzcynivy93jm7dcwl866d0fl7qlgq5vql7niy"; 191 - }) 192 - (fetchNuGet { 193 193 pname = "Microsoft.AspNet.SignalR.Client"; 194 194 version = "2.4.3"; 195 195 sha256 = "1whxcmxydcxjkw84sqk5idd406v3ia0xj2m4ia4b6wqbvkdqn7rf"; ··· 363 363 pname = "Microsoft.DotNet.PlatformAbstractions"; 364 364 version = "2.0.4"; 365 365 sha256 = "1fdzln4im9hb55agzwchbfgm3vmngigmbpci5j89b0gqcxixmv8j"; 366 - }) 367 - (fetchNuGet { 368 - pname = "Microsoft.DotNet.PlatformAbstractions"; 369 - version = "3.1.6"; 370 - sha256 = "0b9myd7gqbpaw9pkd2bx45jhik9mwj0f1ss57sk2cxmag2lkdws5"; 371 366 }) 372 367 (fetchNuGet { 373 368 pname = "Microsoft.EntityFrameworkCore.Abstractions"; ··· 556 551 }) 557 552 (fetchNuGet { 558 553 pname = "Microsoft.Extensions.DependencyModel"; 559 - version = "5.0.0"; 560 - sha256 = "1mma1zxi0b40972cwfvkj9y0w9r7vjbi74784jzcb22pric00k5x"; 561 - }) 562 - (fetchNuGet { 563 - pname = "Microsoft.Extensions.DependencyModel"; 564 554 version = "6.0.0"; 565 555 sha256 = "08c4fh1n8vsish1vh7h73mva34g0as4ph29s4lvps7kmjb4z64nl"; 566 556 }) ··· 816 806 }) 817 807 (fetchNuGet { 818 808 pname = "NBitcoin"; 819 - version = "7.0.14"; 820 - sha256 = "18nxx13fz3i7kmigijnynvrbx2i5cb3v4m89nvnxl38vcw7w5jys"; 809 + version = "7.0.18"; 810 + sha256 = "02kkgymdb80cidibrs6qpy1zjwcfbkwv9zqz9s0swf5zp7qvcakn"; 811 + }) 812 + (fetchNuGet { 813 + pname = "NBitcoin"; 814 + version = "7.0.20"; 815 + sha256 = "0gl39v1mvnhdrqn8dmmslsyj4w4yc4l447zp62bfnwm5ppcwda9z"; 821 816 }) 822 817 (fetchNuGet { 823 818 pname = "NBitpayClient"; ··· 826 821 }) 827 822 (fetchNuGet { 828 823 pname = "NBXplorer.Client"; 829 - version = "4.2.1"; 830 - sha256 = "0sizhzz6ry40fphd3lqqj8r9ik103jzrq1ql57rl1zfh1490zq5y"; 824 + version = "4.2.2"; 825 + sha256 = "0a8zy9iasgmr7mqhjrbxa2shnygpp97pbg5qnk7ix50y01k9blyw"; 831 826 }) 832 827 (fetchNuGet { 833 828 pname = "NETStandard.Library"; ··· 1036 1031 }) 1037 1032 (fetchNuGet { 1038 1033 pname = "Selenium.WebDriver.ChromeDriver"; 1039 - version = "105.0.5195.5200"; 1040 - sha256 = "0vna0mnd2zay6gpgjkd0c4haf2ga8l6grbbhjb6ffzhglyz14993"; 1034 + version = "108.0.5359.7100"; 1035 + sha256 = "13yy6j8vccwv0cd6idhb0hf4asbx9fypag9fj0ldx2rir02a5vxj"; 1041 1036 }) 1042 1037 (fetchNuGet { 1043 1038 pname = "Selenium.WebDriver";
+2 -2
pkgs/applications/blockchains/nbxplorer/default.nix
··· 6 6 7 7 buildDotnetModule rec { 8 8 pname = "nbxplorer"; 9 - version = "2.3.49"; 9 + version = "2.3.54"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "dgarage"; 13 13 repo = "NBXplorer"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-ErAdFY65EYY988+xqSd6v57NbFeOE3Yt5mvn6C0TuRE="; 15 + sha256 = "sha256-WINanMGAlZioD6XP0xK6H+KTlF/NRMAmhylmRV6y2uI="; 16 16 }; 17 17 18 18 projectFile = "NBXplorer/NBXplorer.csproj";
+4 -9
pkgs/applications/blockchains/nbxplorer/deps.nix
··· 191 191 }) 192 192 (fetchNuGet { 193 193 pname = "NBitcoin.TestFramework"; 194 - version = "3.0.15"; 195 - sha256 = "1bhm9hrm33nx4sn5i25az19nrmkfg074m52zpz0yf02ccdvk5x5w"; 194 + version = "3.0.19"; 195 + sha256 = "0wi5bpbab2lgsqhi4v52ycvpv5x64qkgf0if9v011hhk5xjn1x4m"; 196 196 }) 197 197 (fetchNuGet { 198 198 pname = "NBitcoin"; 199 - version = "7.0.14"; 200 - sha256 = "18nxx13fz3i7kmigijnynvrbx2i5cb3v4m89nvnxl38vcw7w5jys"; 201 - }) 202 - (fetchNuGet { 203 - pname = "NBitcoin"; 204 - version = "7.0.18"; 205 - sha256 = "02kkgymdb80cidibrs6qpy1zjwcfbkwv9zqz9s0swf5zp7qvcakn"; 199 + version = "7.0.22"; 200 + sha256 = "1911mwz23qm9qnlfsm2j6qdkj1l43gjym4di8r50zikfnyd654sx"; 206 201 }) 207 202 (fetchNuGet { 208 203 pname = "NETStandard.Library";
+2 -2
pkgs/applications/misc/mob/default.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "mob"; 12 - version = "4.0.0"; 12 + version = "4.1.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "remotemobprogramming"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-c6Feex0FGxxOWBEHxe0GqPHv65EwMMdxIeehZUGbl0Q="; 18 + sha256 = "sha256-P3OxqJNhzO/aPC4Nj3vvBy5cxaahQv0IsjlIKya0p1w="; 19 19 }; 20 20 21 21 vendorSha256 = null;
+1
pkgs/applications/networking/instant-messengers/pidgin-plugins/sipe/default.nix
··· 25 25 26 26 nativeBuildInputs = [ intltool ]; 27 27 buildInputs = [ pidgin gmime libxml2 nss ]; 28 + configureFlags = [ "--without-dbus" ]; 28 29 enableParallelBuilding = true; 29 30 30 31 postInstall = "ln -s \$out/lib/purple-2 \$out/share/pidgin-sipe";
+2
pkgs/applications/networking/instant-messengers/signal-desktop/generic.nix
··· 47 47 , libdbusmenu 48 48 , libpulseaudio 49 49 , xdg-utils 50 + , wayland 50 51 }: 51 52 52 53 stdenv.mkDerivation rec { ··· 112 113 libnotify 113 114 libdbusmenu 114 115 xdg-utils 116 + wayland 115 117 ]; 116 118 117 119 unpackPhase = "dpkg-deb -x $src .";
+2 -2
pkgs/applications/radio/dump1090/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "dump1090"; 14 - version = "7.1"; 14 + version = "8.2"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "flightaware"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-1fD8ZMkTS/r+p1rrOfJhH2sz3sJCapQcvk8f8crGApw="; 20 + sha256 = "sha256-SUvK9XTXIDimEMEnORnp/Af/F030TZTxLI43Jzz31Js="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ pkg-config ];
+4 -2
pkgs/applications/radio/qradiolink/default.nix
··· 14 14 , libsndfile 15 15 , libftdi 16 16 , limesuite 17 + , soapysdr-with-plugins 17 18 , protobuf 18 19 , speex 19 20 , speexdsp ··· 23 24 24 25 gnuradio3_8.pkgs.mkDerivation rec { 25 26 pname = "qradiolink"; 26 - version = "0.8.7-1"; 27 + version = "0.8.8-1"; 27 28 28 29 src = fetchFromGitHub { 29 30 owner = "qradiolink"; 30 31 repo = "qradiolink"; 31 32 rev = version; 32 - sha256 = "sha256-4WkAEJvWu1+ZYDeipRl1oJWn5IR1nTXJ8We0trhbkQE="; 33 + sha256 = "sha256-2M5TSTNbbH188GiKqjP+IfBqks379Fw0fiGLBNiaxEg="; 33 34 }; 34 35 35 36 preBuild = '' ··· 58 59 libopus 59 60 libjpeg 60 61 limesuite 62 + soapysdr-with-plugins 61 63 speex 62 64 speexdsp 63 65 gnuradio3_8.qt.qtbase
+2 -12
pkgs/development/libraries/gdal/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , bison 6 5 , cmake 7 6 , doxygen ··· 62 61 63 62 stdenv.mkDerivation rec { 64 63 pname = "gdal"; 65 - version = "3.6.0.1"; 64 + version = "3.6.1"; 66 65 67 66 src = fetchFromGitHub { 68 67 owner = "OSGeo"; 69 68 repo = "gdal"; 70 69 rev = "v${version}"; 71 - hash = "sha256-Yx7tmj2Y26FE5rzN+w1gg/7yRckNo6gLudrAPRoCro4="; 70 + hash = "sha256-hWuV73b7czmbxpnd82V2FHM+ak9JviDHVodVXAHh/pc="; 72 71 }; 73 - 74 - patches = [ 75 - # https://github.com/OSGeo/gdal/pull/6754 76 - (fetchpatch { 77 - name = "skip-test-failing-on-macos.patch"; 78 - url = "https://github.com/OSGeo/gdal/commit/65b2b12fa6638653f54d3ca0f8066225597832b9.patch"; 79 - hash = "sha256-zpj4jMp01Oz+Zk1b59qdoVxhkwWmTN9bwoKwbau2ADY="; 80 - }) 81 - ]; 82 72 83 73 nativeBuildInputs = [ 84 74 bison
+36
pkgs/development/libraries/mitama-cpp-result/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + }: 6 + 7 + stdenv.mkDerivation (finalAttrs: { 8 + pname = "mitama-cpp-result"; 9 + version = "9.3.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "LoliGothick"; 13 + repo = "mitama-cpp-result"; 14 + rev = "v${finalAttrs.version}"; 15 + hash = "sha256-CWYVPpmPIZZTsqXKh+Ft3SlQ4C9yjUof1mJ8Acn5kmM="; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + cmake 20 + ]; 21 + 22 + meta = with lib; { 23 + homepage = "https://github.com/LoliGothick/mitama-cpp-result"; 24 + description = "A Library that provides `result<T, E>` and `maybe<T>` and monadic functions for them"; 25 + longDescription = '' 26 + mitama-cpp-result is the C++17 libraries for error handling without exceptions. 27 + 28 + mitama-cpp-result provides `result<T, E>`, `maybe<T>`, and associated monadic functions 29 + (like Result and Option in Programming Language Rust). 30 + ''; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ ken-matsui ]; 33 + platforms = platforms.unix; 34 + }; 35 + }) 36 + # TODO [ ken-matsui ]: tests
+48 -8
pkgs/development/libraries/mygui/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, libX11, cmake, ois, freetype, libuuid, 2 - boost, pkg-config, withOgre ? false, ogre ? null, libGL, libGLU ? null } : 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , pkg-config 6 + , boost 7 + , freetype 8 + , libuuid 9 + , ois 10 + , withOgre ? false 11 + , ogre 12 + , libGL 13 + , libGLU 14 + , libX11 15 + , Cocoa 16 + }: 3 17 4 18 let 5 19 renderSystem = if withOgre then "3" else "4"; 6 - in stdenv.mkDerivation rec { 20 + in 21 + stdenv.mkDerivation rec { 7 22 pname = "mygui"; 8 23 version = "3.4.0"; 9 24 ··· 14 29 sha256 = "0a4zi8w18pjj813n7kmxldl1d9r1jp0iyhkw7pbqgl8f7qaq994w"; 15 30 }; 16 31 17 - nativeBuildInputs = [ cmake pkg-config ]; 18 - buildInputs = [ libX11 ois freetype libuuid boost ] 19 - ++ (if withOgre then [ ogre ] else [ libGL libGLU ]); 32 + patches = [ 33 + ./disable-framework.patch 34 + ]; 35 + 36 + nativeBuildInputs = [ 37 + cmake 38 + pkg-config 39 + ]; 40 + 41 + buildInputs = [ 42 + boost 43 + freetype 44 + libuuid 45 + ois 46 + ] ++ lib.optionals withOgre [ 47 + ogre 48 + ] ++ lib.optionals (!withOgre && stdenv.isLinux) [ 49 + libGL 50 + libGLU 51 + ] ++ lib.optionals stdenv.isLinux [ 52 + libX11 53 + ] ++ lib.optionals stdenv.isDarwin [ 54 + Cocoa 55 + ]; 20 56 21 57 # Tools are disabled due to compilation failures. 22 - cmakeFlags = [ "-DMYGUI_BUILD_TOOLS=OFF" "-DMYGUI_BUILD_DEMOS=OFF" "-DMYGUI_RENDERSYSTEM=${renderSystem}" ]; 58 + cmakeFlags = [ 59 + "-DMYGUI_BUILD_TOOLS=OFF" 60 + "-DMYGUI_BUILD_DEMOS=OFF" 61 + "-DMYGUI_RENDERSYSTEM=${renderSystem}" 62 + ]; 23 63 24 64 meta = with lib; { 25 65 homepage = "http://mygui.info/"; 26 66 description = "Library for creating GUIs for games and 3D applications"; 27 67 license = licenses.lgpl3Plus; 28 - platforms = platforms.linux; 68 + platforms = platforms.unix; 29 69 }; 30 70 }
+19
pkgs/development/libraries/mygui/disable-framework.patch
··· 1 + diff --git a/CMake/Utils/MyGUIConfigTargets.cmake b/CMake/Utils/MyGUIConfigTargets.cmake 2 + index bba3f91..8f4f351 100644 3 + --- a/CMake/Utils/MyGUIConfigTargets.cmake 4 + +++ b/CMake/Utils/MyGUIConfigTargets.cmake 5 + @@ -477,14 +477,6 @@ function(mygui_config_lib PROJECTNAME) 6 + if (CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "Intel") 7 + # add GCC visibility flags to shared library build 8 + set_target_properties(${PROJECTNAME} PROPERTIES COMPILE_FLAGS "${MYGUI_GCC_VISIBILITY_FLAGS}") 9 + - if (APPLE) 10 + - # deal with Mac OS X's framework system 11 + - set_target_properties(${PROJECTNAME} PROPERTIES FRAMEWORK TRUE) 12 + - set_target_properties(${PROJECTNAME} PROPERTIES PUBLIC_HEADER "${${PROJECTNAME}_HEADERS}") 13 + - set_target_properties(${PROJECTNAME} PROPERTIES OUTPUT_NAME ${PROJECTNAME}) 14 + - set_target_properties(${PROJECTNAME} PROPERTIES BUILD_WITH_INSTALL_RPATH TRUE) 15 + - set_target_properties(${PROJECTNAME} PROPERTIES INSTALL_NAME_DIR "@executable_path/../Frameworks") 16 + - endif (APPLE) 17 + endif () 18 + endif (MYGUI_STATIC) 19 + mygui_install_target(${PROJECTNAME} "")
+4 -2
pkgs/development/libraries/pdal/default.nix
··· 11 11 , enableE57 ? lib.meta.availableOn stdenv.hostPlatform libe57format 12 12 , libe57format 13 13 , libgeotiff 14 + , libtiff 14 15 , libxml2 15 16 , postgresql 16 17 , tiledb ··· 21 22 22 23 stdenv.mkDerivation rec { 23 24 pname = "pdal"; 24 - version = "2.4.0"; 25 + version = "2.4.3"; 25 26 26 27 src = fetchFromGitHub { 27 28 owner = "PDAL"; 28 29 repo = "PDAL"; 29 30 rev = version; 30 - sha256 = "sha256-w9Fu4Op6OdaxdvOUM+glpJUEZq//EwRD2lqzYrMXk8w="; 31 + sha256 = "sha256-9TQlhuGSTnHsTlJos9Hwnyl1CxI0tXLZdqsaGdp6WIE="; 31 32 }; 32 33 33 34 nativeBuildInputs = [ ··· 42 43 hdf5-cpp 43 44 LASzip 44 45 libgeotiff 46 + libtiff 45 47 libxml2 46 48 postgresql 47 49 tiledb
-2
pkgs/development/misc/resholve/default.nix
··· 16 16 self = python27'; 17 17 pkgsBuildHost = pkgsBuildHost // { python27 = python27'; }; 18 18 # strip down that python version as much as possible 19 - openssl = null; 20 19 bzip2 = null; 21 20 readline = null; 22 21 ncurses = null; 23 22 gdbm = null; 24 23 sqlite = null; 25 - libffi = null; 26 24 rebuildBytecode = false; 27 25 stripBytecode = true; 28 26 strip2to3 = true;
+4 -4
pkgs/development/python-modules/appthreat-vulnerability-db/default.nix
··· 3 3 , buildPythonPackage 4 4 , cvss 5 5 , fetchFromGitHub 6 + , httpx 6 7 , msgpack 7 8 , orjson 8 9 , packageurl-python 9 10 , pytestCheckHook 10 11 , pythonOlder 11 - , requests 12 12 , semver 13 13 , tabulate 14 14 }: 15 15 16 16 buildPythonPackage rec { 17 17 pname = "appthreat-vulnerability-db"; 18 - version = "4.1.12"; 18 + version = "4.2.0"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "AppThreat"; 25 25 repo = "vulnerability-db"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-DHjB8hT9rP1yyeo9I5D8JGIXq+17RYX+e6H7BBuWTw4="; 27 + hash = "sha256-uZkPQYuF8EbX5+Qyj7CjxJhpT+DywCSwbORKXqaY0z8="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [ 31 31 appdirs 32 32 cvss 33 + httpx 33 34 msgpack 34 35 orjson 35 36 packageurl-python 36 - requests 37 37 semver 38 38 tabulate 39 39 ];
+3 -2
pkgs/development/python-modules/google-cloud-access-context-manager/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "google-cloud-access-context-manager"; 10 - version = "0.1.14"; 10 + version = "0.1.15"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-GFS9VvdXHxP1KvJzQkgjmYXO3qpMXl8yICGZEr18O8M="; 17 + hash = "sha256-W6Nb+H2CaULQ7Hp1hYxtnF9ITYa++Usc7XVoPkQPnVk="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [ ··· 31 31 meta = with lib; { 32 32 description = "Protobufs for Google Access Context Manager"; 33 33 homepage = "https://github.com/googleapis/python-access-context-manager"; 34 + changelog = "https://github.com/googleapis/python-access-context-manager/blob/v${version}/CHANGELOG.md"; 34 35 license = licenses.asl20; 35 36 maintainers = with maintainers; [ austinbutler SuperSandro2000 ]; 36 37 };
+2 -2
pkgs/development/python-modules/hstspreload/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "hstspreload"; 9 - version = "2022.11.1"; 9 + version = "2022.12.1"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.6"; ··· 15 15 owner = "sethmlarson"; 16 16 repo = pname; 17 17 rev = version; 18 - sha256 = "sha256-4GirKCe84sYV+28ODPipixV3cl7wIV/NOd+iM0Cec4I="; 18 + sha256 = "sha256-W1WJWG5R7Sucdw6TzsGFs5mH6BoUfA8URTgWlnRXa14="; 19 19 }; 20 20 21 21 # Tests require network connection
+3 -2
pkgs/development/python-modules/immutabledict/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "immutabledict"; 11 - version = "2.2.2"; 11 + version = "2.2.3"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "corenting"; 18 18 repo = "immutabledict"; 19 19 rev = "v${version}"; 20 - hash = "sha256-YqUxkpFl2G/LFLtFWqocXbFvgVhqqiquoWNIIO9c/6o="; 20 + hash = "sha256-GeQ1BEBt+66YhohyaXt7rIVNpEk6mINwsC3JrmYNjRI="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ ··· 35 35 meta = with lib; { 36 36 description = "A fork of frozendict, an immutable wrapper around dictionaries"; 37 37 homepage = "https://github.com/corenting/immutabledict"; 38 + changelog = "https://github.com/corenting/immutabledict/blob/v${version}/CHANGELOG.md"; 38 39 license = licenses.mit; 39 40 maintainers = with maintainers; [ hexa ]; 40 41 };
+23 -5
pkgs/development/python-modules/ldapdomaindump/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, dnspython, future, ldap3 }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , dnspython 5 + , future 6 + , ldap3 7 + , pythonOlder 8 + }: 2 9 3 10 buildPythonPackage rec { 4 11 pname = "ldapdomaindump"; 5 - version = "0.9.3"; 12 + version = "0.9.4"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 6 16 7 17 src = fetchPypi { 8 18 inherit pname version; 9 - sha256 = "10cis8cllpa9qi5qil9k7521ag3921mxwg2wj9nyn0lk41rkjagc"; 19 + hash = "sha256-mdzaFwUKllSZZuU7yJ5x2mcAlNU9lUKzsNAZfQNeb1I="; 10 20 }; 11 21 12 - propagatedBuildInputs = [ dnspython future ldap3 ]; 22 + propagatedBuildInputs = [ 23 + dnspython 24 + future 25 + ldap3 26 + ]; 13 27 14 28 # requires ldap server 15 29 doCheck = false; 16 - pythonImportsCheck = [ "ldapdomaindump" ]; 30 + 31 + pythonImportsCheck = [ 32 + "ldapdomaindump" 33 + ]; 17 34 18 35 meta = with lib; { 19 36 description = "Active Directory information dumper via LDAP"; 20 37 homepage = "https://github.com/dirkjanm/ldapdomaindump/"; 38 + changelog = "https://github.com/dirkjanm/ldapdomaindump/releases/tag/v${version}"; 21 39 license = licenses.mit; 22 40 maintainers = with maintainers; [ SuperSandro2000 ]; 23 41 };
+2 -2
pkgs/development/python-modules/mathlibtools/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "mathlibtools"; 18 - version = "1.3.1"; 18 + version = "1.3.2"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.6"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - hash = "sha256-HwtmrDGInCI5Hl+qhl+7hOBJ3Ux0g8IjoAVa4iAccl8="; 25 + hash = "sha256-mkn0y3NV/acnkqVzi8xd+Sex4QLvxxmt++FtsZmgrGs="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+3 -2
pkgs/development/python-modules/pg8000/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pg8000"; 14 - version = "1.29.3"; 14 + version = "1.29.4"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-yMlU08htf79ZG8g7ANbs4on64XbIM1oYKnVwaZ2iv9w="; 21 + hash = "sha256-dtKqF1ejC8ceAwfa4Yw3TjNqaRI+awRuIGqWYR+iozA="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ··· 47 47 meta = with lib; { 48 48 description = "Python driver for PostgreSQL"; 49 49 homepage = "https://github.com/tlocke/pg8000"; 50 + changelog = "https://github.com/tlocke/pg8000#release-notes"; 50 51 license = with licenses; [ bsd3 ]; 51 52 maintainers = with maintainers; [ domenkozar ]; 52 53 platforms = platforms.unix;
+2 -2
pkgs/development/python-modules/plaid-python/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "plaid-python"; 12 - version = "11.2.0"; 12 + version = "11.3.0"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.6"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-hybWKNy1qicBcTiEc46iwJ/JhNVxqz9ZSSkR4Zm9m6I="; 19 + hash = "sha256-zZGnKFLsT29IX8EK1Tv5I1Ser+9tREzkJcYY6+Fid6o="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/rpy2/default.nix
··· 24 24 }: 25 25 26 26 buildPythonPackage rec { 27 - version = "3.5.5"; 27 + version = "3.5.6"; 28 28 pname = "rpy2"; 29 29 30 30 disabled = isPyPy; 31 31 src = fetchPypi { 32 32 inherit version pname; 33 - sha256 = "sha256-olLEDiHPTyOsbhO//cuCtZALScMEPtj9MdpcYftY0Dc="; 33 + sha256 = "sha256-NATxAx0tj/ihACZWq445S4rBbdNMpDr2je7RAvOW53E="; 34 34 }; 35 35 36 36 patches = [
+2 -2
pkgs/development/python-modules/types-pyyaml/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "types-pyyaml"; 8 - version = "6.0.12.1"; 8 + version = "6.0.12.2"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 12 pname = "types-PyYAML"; 13 13 inherit version; 14 - sha256 = "sha256-cMyq/PP7QE1Xv/wVKf3YahPotPLPn8PugaZAjOCtWdI="; 14 + sha256 = "sha256-aECBmHHJLe6+aiBn+4AMEbigY2MutOPnVZFOerNgToM="; 15 15 }; 16 16 17 17 # Module doesn't have tests
+2 -2
pkgs/development/tools/appthreat-depscan/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "appthreat-depscan"; 8 - version = "3.4.0"; 8 + version = "3.5.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "AppThreat"; 12 12 repo = "dep-scan"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-Gp0JXjtU8TZl/k6HHWvMvdggIgyn4zqLyyBqiPtlkA8="; 14 + hash = "sha256-kwur74jaAjGch4Jruq6OX1lWqX8b3NZYvxxNsp+n/TI="; 15 15 }; 16 16 17 17 propagatedBuildInputs = with python3.pkgs; [
+31
pkgs/development/tools/norminette/default.nix
··· 1 + { lib 2 + , python3Packages 3 + , fetchFromGitHub 4 + }: 5 + 6 + python3Packages.buildPythonApplication rec { 7 + pname = "norminette"; 8 + version = "3.3.51"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "42School"; 12 + repo = pname; 13 + rev = version; 14 + hash = "sha256-JpWziUKZPOD+AwiYeHR7e0B9l3XKNNp+XQkZEvynKGY="; 15 + }; 16 + 17 + checkInputs = with python3Packages; [ 18 + pytestCheckHook 19 + ]; 20 + 21 + preCheck = '' 22 + export PYTHONPATH=norminette:$PYTHONPATH 23 + ''; 24 + 25 + meta = with lib; { 26 + description = "Open source norminette to apply 42's norme to C files"; 27 + homepage = "https://github.com/42School/norminette"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ wegank ]; 30 + }; 31 + }
+3 -3
pkgs/development/tools/ruff/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "ruff"; 10 - version = "0.0.185"; 10 + version = "0.0.186"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "charliermarsh"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-L2NaBvSFy+x8mLxy7r0EQUKT4FE5JHaDkVjGiJ7HzTw="; 16 + sha256 = "sha256-mCX/s4DsnGoQgeP1oZmR8motTdKz7Gj2FWrvBkgM7WA="; 17 17 }; 18 18 19 - cargoSha256 = "sha256-/L9xgSG9ydGbjth6tBkqnuIAu7UqP+0IAX8izW1ZAkg="; 19 + cargoSha256 = "sha256-lvttZWSdqff8eRXEe6/GPelE1ZJheozN2dEBURapY9w="; 20 20 21 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 22 darwin.apple_sdk.frameworks.CoreServices
+3 -3
pkgs/development/tools/rust/cargo-llvm-lines/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-llvm-lines"; 5 - version = "0.4.22"; 5 + version = "0.4.23"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dtolnay"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-fQhYcY5b/KxDEbZws6IPq0EvVynWpQ8d1TJ2isTSwYQ="; 11 + sha256 = "sha256-u3MvDiagCGD7WjagbVF+TtZ0ATe8WBT3xeyduxrXPi4="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-aU+B/QrpKVtY/u53zS0q7/iNM0Z6xRMH3BPNmHd8Yps="; 14 + cargoSha256 = "sha256-9oBnETZqJV35FEw6NImy6cqfVOVE5EHPNVGajE2UT10="; 15 15 16 16 meta = with lib; { 17 17 description = "Count the number of lines of LLVM IR across all instantiations of a generic function";
+1
pkgs/development/tools/yarn2nix-moretea/yarn2nix/.prettierignore
··· 1 + node_modules
+31 -31
pkgs/development/tools/yarn2nix-moretea/yarn2nix/bin/yarn2nix.js
··· 1 1 #!/usr/bin/env node 2 2 3 - const fs = require('fs') 4 - const lockfile = require('@yarnpkg/lockfile') 5 - const { docopt } = require('docopt') 6 - const deepEqual = require('deep-equal') 7 - const R = require('ramda') 3 + const fs = require("fs"); 4 + const lockfile = require("@yarnpkg/lockfile"); 5 + const { docopt } = require("docopt"); 6 + const deepEqual = require("deep-equal"); 7 + const R = require("ramda"); 8 8 9 - const fixPkgAddMissingSha1 = require('../lib/fixPkgAddMissingSha1') 10 - const mapObjIndexedReturnArray = require('../lib/mapObjIndexedReturnArray') 11 - const generateNix = require('../lib/generateNix') 9 + const fixPkgAddMissingSha1 = require("../lib/fixPkgAddMissingSha1"); 10 + const mapObjIndexedReturnArray = require("../lib/mapObjIndexedReturnArray"); 11 + const generateNix = require("../lib/generateNix"); 12 12 13 13 const USAGE = ` 14 14 Usage: yarn2nix [options] ··· 19 19 --no-patch Don't patch the lockfile if hashes are missing 20 20 --lockfile=FILE Specify path to the lockfile [default: ./yarn.lock]. 21 21 --builtin-fetchgit Use builtin fetchGit for git dependencies to support on-the-fly generation of yarn.nix without an internet connection 22 - ` 22 + `; 23 23 24 - const options = docopt(USAGE) 24 + const options = docopt(USAGE); 25 25 26 - const data = fs.readFileSync(options['--lockfile'], 'utf8') 26 + const data = fs.readFileSync(options["--lockfile"], "utf8"); 27 27 28 28 // json example: 29 29 ··· 45 45 // } 46 46 // } 47 47 48 - const json = lockfile.parse(data) 48 + const json = lockfile.parse(data); 49 49 50 - if (json.type !== 'success') { 51 - throw new Error('yarn.lock parse error') 50 + if (json.type !== "success") { 51 + throw new Error("yarn.lock parse error"); 52 52 } 53 53 54 54 // Check for missing hashes in the yarn.lock and patch if necessary ··· 56 56 let pkgs = R.pipe( 57 57 mapObjIndexedReturnArray((value, key) => ({ 58 58 ...value, 59 - nameWithVersion: key, 59 + nameWithVersion: key 60 60 })), 61 - R.uniqBy(R.prop('resolved')), 62 - )(json.object) 61 + R.uniqBy(R.prop("resolved")) 62 + )(json.object); 63 63 64 - ;(async () => { 65 - if (!options['--no-patch']) { 66 - pkgs = await Promise.all(R.map(fixPkgAddMissingSha1, pkgs)) 64 + (async () => { 65 + if (!options["--no-patch"]) { 66 + pkgs = await Promise.all(R.map(fixPkgAddMissingSha1, pkgs)); 67 67 } 68 68 69 - const origJson = lockfile.parse(data) 69 + const origJson = lockfile.parse(data); 70 70 71 71 if (!deepEqual(origJson, json)) { 72 - console.error('found changes in the lockfile', options['--lockfile']) 72 + console.error("found changes in the lockfile", options["--lockfile"]); 73 73 74 - if (options['--no-patch']) { 75 - console.error('...aborting') 76 - process.exit(1) 74 + if (options["--no-patch"]) { 75 + console.error("...aborting"); 76 + process.exit(1); 77 77 } 78 78 79 - fs.writeFileSync(options['--lockfile'], lockfile.stringify(json.object)) 79 + fs.writeFileSync(options["--lockfile"], lockfile.stringify(json.object)); 80 80 } 81 81 82 - if (!options['--no-nix']) { 82 + if (!options["--no-nix"]) { 83 83 // print to stdout 84 - console.log(generateNix(pkgs, options['--builtin-fetchgit'])) 84 + console.log(generateNix(pkgs, options["--builtin-fetchgit"])); 85 85 } 86 86 })().catch(error => { 87 - console.error(error) 87 + console.error(error); 88 88 89 - process.exit(1) 90 - }) 89 + process.exit(1); 90 + });
+24 -24
pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_bin.js
··· 4 4 * node fixup_bin.js <bin_dir> <modules_dir> [<bin_pkg_1>, <bin_pkg_2> ... ] 5 5 */ 6 6 7 - const fs = require('fs') 8 - const path = require('path') 7 + const fs = require("fs"); 8 + const path = require("path"); 9 9 10 - const derivationBinPath = process.argv[2] 11 - const nodeModules = process.argv[3] 12 - const packagesToPublishBin = process.argv.slice(4) 10 + const derivationBinPath = process.argv[2]; 11 + const nodeModules = process.argv[3]; 12 + const packagesToPublishBin = process.argv.slice(4); 13 13 14 14 function processPackage(name) { 15 - console.log('fixup_bin: Processing ', name) 15 + console.log("fixup_bin: Processing ", name); 16 16 17 - const packagePath = `${nodeModules}/${name}` 18 - const packageJsonPath = `${packagePath}/package.json` 19 - const packageJson = JSON.parse(fs.readFileSync(packageJsonPath)) 17 + const packagePath = `${nodeModules}/${name}`; 18 + const packageJsonPath = `${packagePath}/package.json`; 19 + const packageJson = JSON.parse(fs.readFileSync(packageJsonPath)); 20 20 21 21 if (!packageJson.bin) { 22 - console.log('fixup_bin: No binaries provided') 23 - return 22 + console.log("fixup_bin: No binaries provided"); 23 + return; 24 24 } 25 25 26 26 // There are two alternative syntaxes for `bin` 27 27 // a) just a plain string, in which case the name of the package is the name of the binary. 28 28 // b) an object, where key is the name of the eventual binary, and the value the path to that binary. 29 - if (typeof packageJson.bin === 'string') { 30 - const binName = packageJson.bin 31 - packageJson.bin = {} 32 - packageJson.bin[packageJson.name] = binName 29 + if (typeof packageJson.bin === "string") { 30 + const binName = packageJson.bin; 31 + packageJson.bin = {}; 32 + packageJson.bin[packageJson.name] = binName; 33 33 } 34 34 35 35 // eslint-disable-next-line no-restricted-syntax, guard-for-in 36 36 for (const binName in packageJson.bin) { 37 - const binPath = packageJson.bin[binName] 38 - const normalizedBinName = binName.replace('@', '').replace('/', '-') 37 + const binPath = packageJson.bin[binName]; 38 + const normalizedBinName = binName.replace("@", "").replace("/", "-"); 39 39 40 - const targetPath = path.normalize(`${packagePath}/${binPath}`) 41 - const createdPath = `${derivationBinPath}/${normalizedBinName}` 40 + const targetPath = path.normalize(`${packagePath}/${binPath}`); 41 + const createdPath = `${derivationBinPath}/${normalizedBinName}`; 42 42 43 43 console.log( 44 - `fixup_bin: creating link ${createdPath} that points to ${targetPath}`, 45 - ) 44 + `fixup_bin: creating link ${createdPath} that points to ${targetPath}` 45 + ); 46 46 47 - fs.symlinkSync(targetPath, createdPath) 47 + fs.symlinkSync(targetPath, createdPath); 48 48 } 49 49 } 50 50 51 51 packagesToPublishBin.forEach(pkg => { 52 - processPackage(pkg) 53 - }) 52 + processPackage(pkg); 53 + });
+21 -21
pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_yarn_lock.js
··· 4 4 * node fixup_yarn_lock.js yarn.lock 5 5 */ 6 6 7 - const fs = require('fs') 8 - const readline = require('readline') 7 + const fs = require("fs"); 8 + const readline = require("readline"); 9 9 10 - const urlToName = require('../lib/urlToName') 10 + const urlToName = require("../lib/urlToName"); 11 11 12 - const yarnLockPath = process.argv[2] 12 + const yarnLockPath = process.argv[2]; 13 13 14 14 const readFile = readline.createInterface({ 15 - input: fs.createReadStream(yarnLockPath, { encoding: 'utf8' }), 15 + input: fs.createReadStream(yarnLockPath, { encoding: "utf8" }), 16 16 17 17 // Note: we use the crlfDelay option to recognize all instances of CR LF 18 18 // ('\r\n') in input.txt as a single line break. 19 19 crlfDelay: Infinity, 20 20 21 - terminal: false, // input and output should be treated like a TTY 22 - }) 21 + terminal: false // input and output should be treated like a TTY 22 + }); 23 23 24 - const result = [] 24 + const result = []; 25 25 26 26 readFile 27 - .on('line', line => { 28 - const arr = line.match(/^ {2}resolved "([^#]+)(#[^"]+)?"$/) 27 + .on("line", line => { 28 + const arr = line.match(/^ {2}resolved "([^#]+)(#[^"]+)?"$/); 29 29 30 30 if (arr !== null) { 31 - const [_, url, shaOrRev] = arr 31 + const [_, url, shaOrRev] = arr; 32 32 33 - const fileName = urlToName(url) 33 + const fileName = urlToName(url); 34 34 35 - result.push(` resolved "${fileName}${shaOrRev ?? ''}"`) 35 + result.push(` resolved "${fileName}${shaOrRev ?? ""}"`); 36 36 } else { 37 - result.push(line) 37 + result.push(line); 38 38 } 39 39 }) 40 - .on('close', () => { 41 - fs.writeFile(yarnLockPath, result.join('\n'), 'utf8', err => { 40 + .on("close", () => { 41 + fs.writeFile(yarnLockPath, result.join("\n"), "utf8", err => { 42 42 if (err) { 43 43 console.error( 44 - 'fixup_yarn_lock: fatal error when trying to write to yarn.lock', 45 - err, 46 - ) 44 + "fixup_yarn_lock: fatal error when trying to write to yarn.lock", 45 + err 46 + ); 47 47 } 48 - }) 49 - }) 48 + }); 49 + });
+26 -28
pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/fixPkgAddMissingSha1.js
··· 1 - const https = require('https') 2 - const crypto = require('crypto') 1 + const https = require("https"); 2 + const crypto = require("crypto"); 3 3 4 4 // TODO: 5 5 // make test case where getSha1 function is used, i.e. the case when resolved is without sha1? ··· 8 8 function getSha1(url) { 9 9 return new Promise((resolve, reject) => { 10 10 https.get(url, res => { 11 - const { statusCode } = res 12 - const hash = crypto.createHash('sha1') 11 + const { statusCode } = res; 12 + const hash = crypto.createHash("sha1"); 13 13 14 14 if (statusCode !== 200) { 15 - const err = new Error(`Request Failed.\nStatus Code: ${statusCode}`) 15 + const err = new Error(`Request Failed.\nStatus Code: ${statusCode}`); 16 16 17 17 // consume response data to free up memory 18 - res.resume() 18 + res.resume(); 19 19 20 - reject(err) 20 + reject(err); 21 21 } 22 22 23 - res.on('data', chunk => { 24 - hash.update(chunk) 25 - }) 23 + res.on("data", chunk => { 24 + hash.update(chunk); 25 + }); 26 26 27 - res.on('end', () => { 28 - resolve(hash.digest('hex')) 29 - }) 27 + res.on("end", () => { 28 + resolve(hash.digest("hex")); 29 + }); 30 30 31 - res.on('error', reject) 32 - }) 33 - }) 31 + res.on("error", reject); 32 + }); 33 + }); 34 34 } 35 35 36 36 // Object -> Object ··· 39 39 40 40 if (!pkg.resolved) { 41 41 console.error( 42 - `yarn2nix: can't find "resolved" field for package ${ 43 - pkg.nameWithVersion 44 - }, you probably required it using "file:...", this feature is not supported, ignoring`, 45 - ) 46 - return pkg 42 + `yarn2nix: can't find "resolved" field for package ${pkg.nameWithVersion}, you probably required it using "file:...", this feature is not supported, ignoring` 43 + ); 44 + return pkg; 47 45 } 48 46 49 - const [url, sha1] = pkg.resolved.split('#', 2) 47 + const [url, sha1] = pkg.resolved.split("#", 2); 50 48 51 - if (sha1 || url.startsWith('https://codeload.github.com')) { 52 - return pkg 49 + if (sha1 || url.startsWith("https://codeload.github.com")) { 50 + return pkg; 53 51 } 54 52 55 53 // if there is no sha1 in resolved url 56 54 // (this could happen if yarn.lock was generated by older version of yarn) 57 55 // - request it from registry by https and add it to pkg 58 - const newSha1 = await getSha1(url) 56 + const newSha1 = await getSha1(url); 59 57 60 58 return { 61 59 ...pkg, 62 - resolved: `${url}#${newSha1}`, 63 - } 60 + resolved: `${url}#${newSha1}` 61 + }; 64 62 } 65 63 66 - module.exports = fixPkgAddMissingSha1 64 + module.exports = fixPkgAddMissingSha1;
+100 -58
pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/generateNix.js
··· 1 - const R = require('ramda') 1 + const R = require("ramda"); 2 + const ssri = require("ssri"); 2 3 3 - const urlToName = require('./urlToName') 4 - const { execFileSync } = require('child_process') 4 + const urlToName = require("./urlToName"); 5 + const { execFileSync } = require("child_process"); 5 6 6 7 // fetchgit transforms 7 8 // ··· 33 34 34 35 function prefetchgit(url, rev) { 35 36 return JSON.parse( 36 - execFileSync("nix-prefetch-git", ["--rev", rev, url, "--fetch-submodules"], { 37 - stdio: [ "ignore", "pipe", "ignore" ], 38 - timeout: 60000, 39 - }) 40 - ).sha256 37 + execFileSync( 38 + "nix-prefetch-git", 39 + ["--rev", rev, url, "--fetch-submodules"], 40 + { 41 + stdio: ["ignore", "pipe", "ignore"], 42 + timeout: 60000 43 + } 44 + ) 45 + ).sha256; 41 46 } 42 47 43 48 function fetchgit(fileName, url, rev, branch, builtinFetchGit) { 49 + const repo = builtinFetchGit 50 + ? `builtins.fetchGit ({ 51 + url = "${url}"; 52 + ref = "${branch}"; 53 + rev = "${rev}"; 54 + } // (if builtins.compareVersions "2.4pre" builtins.nixVersion < 0 then { 55 + # workaround for https://github.com/NixOS/nix/issues/5128 56 + allRefs = true; 57 + } else {}))` 58 + : `fetchgit { 59 + url = "${url}"; 60 + rev = "${rev}"; 61 + sha256 = "${prefetchgit(url, rev)}"; 62 + }`; 63 + 44 64 return ` { 45 65 name = "${fileName}"; 46 66 path = 47 - let${builtinFetchGit ? ` 48 - repo = builtins.fetchGit ({ 49 - url = "${url}"; 50 - ref = "${branch}"; 51 - rev = "${rev}"; 52 - } // (if builtins.compareVersions "2.4pre" builtins.nixVersion < 0 then { 53 - # workaround for https://github.com/NixOS/nix/issues/5128 54 - allRefs = true; 55 - } else {})); 56 - ` : ` 57 - repo = fetchgit { 58 - url = "${url}"; 59 - rev = "${rev}"; 60 - sha256 = "${prefetchgit(url, rev)}"; 61 - }; 62 - `}in 63 - runCommand "${fileName}" { buildInputs = [gnutar]; } '' 64 - # Set u+w because tar-fs can't unpack archives with read-only dirs 65 - # https://github.com/mafintosh/tar-fs/issues/79 66 - tar cf $out --mode u+w -C \${repo} . 67 - ''; 68 - }` 67 + let repo = ${repo}; 68 + in runCommand "${fileName}" { buildInputs = [gnutar]; } '' 69 + # Set u+w because tar-fs can't unpack archives with read-only dirs 70 + # https://github.com/mafintosh/tar-fs/issues/79 71 + tar cf $out --mode u+w -C \${repo} . 72 + ''; 73 + }`; 74 + } 75 + 76 + /** 77 + * Parse an integrity hash out of an SSRI string. 78 + * 79 + * Provides a default and uses the "best" supported algorithm if there are multiple. 80 + */ 81 + function parseIntegrity(maybeIntegrity, fallbackHash) { 82 + if (!maybeIntegrity && fallbackHash) { 83 + return { algo: "sha1", hash: fallbackHash }; 84 + } 85 + 86 + const integrities = ssri.parse(maybeIntegrity); 87 + for (const key in integrities) { 88 + if (!/^sha(1|256|512)$/.test(key)) { 89 + delete integrities[key]; 90 + } 91 + } 92 + 93 + algo = integrities.pickAlgorithm(); 94 + hash = integrities[algo][0].digest; 95 + return { algo, hash }; 69 96 } 70 97 71 98 function fetchLockedDep(builtinFetchGit) { 72 - return function (pkg) { 73 - const { integrity, nameWithVersion, resolved } = pkg 99 + return function(pkg) { 100 + const { integrity, nameWithVersion, resolved } = pkg; 74 101 75 102 if (!resolved) { 76 103 console.error( 77 - `yarn2nix: can't find "resolved" field for package ${nameWithVersion}, you probably required it using "file:...", this feature is not supported, ignoring`, 78 - ) 79 - return '' 104 + `yarn2nix: can't find "resolved" field for package ${nameWithVersion}, you probably required it using "file:...", this feature is not supported, ignoring` 105 + ); 106 + return ""; 80 107 } 81 108 82 - const [url, sha1OrRev] = resolved.split('#') 109 + const [url, sha1OrRev] = resolved.split("#"); 83 110 84 - const fileName = urlToName(url) 111 + const fileName = urlToName(url); 85 112 86 - if (resolved.startsWith('https://codeload.github.com/')) { 87 - const s = resolved.split('/') 88 - const githubUrl = `https://github.com/${s[3]}/${s[4]}.git` 89 - const githubRev = s[6] 113 + if (resolved.startsWith("https://codeload.github.com/")) { 114 + const s = resolved.split("/"); 115 + const githubUrl = `https://github.com/${s[3]}/${s[4]}.git`; 116 + const githubRev = s[6]; 90 117 91 - const [_, branch] = nameWithVersion.split('#') 118 + const [_, branch] = nameWithVersion.split("#"); 92 119 93 - return fetchgit(fileName, githubUrl, githubRev, branch || 'master', builtinFetchGit) 120 + return fetchgit( 121 + fileName, 122 + githubUrl, 123 + githubRev, 124 + branch || "master", 125 + builtinFetchGit 126 + ); 94 127 } 95 128 96 - if (url.startsWith('git+') || url.startsWith("git:")) { 97 - const rev = sha1OrRev 129 + if (url.startsWith("git+") || url.startsWith("git:")) { 130 + const rev = sha1OrRev; 98 131 99 - const [_, branch] = nameWithVersion.split('#') 132 + const [_, branch] = nameWithVersion.split("#"); 100 133 101 - const urlForGit = url.replace(/^git\+/, '') 134 + const urlForGit = url.replace(/^git\+/, ""); 102 135 103 - return fetchgit(fileName, urlForGit, rev, branch || 'master', builtinFetchGit) 136 + return fetchgit( 137 + fileName, 138 + urlForGit, 139 + rev, 140 + branch || "master", 141 + builtinFetchGit 142 + ); 104 143 } 105 144 106 - const [algo, hash] = integrity ? integrity.split('-') : ['sha1', sha1OrRev] 145 + const { algo, hash } = parseIntegrity(integrity, sha1OrRev); 107 146 108 147 return ` { 109 148 name = "${fileName}"; ··· 112 151 url = "${url}"; 113 152 ${algo} = "${hash}"; 114 153 }; 115 - }` 116 - } 154 + }`; 155 + }; 117 156 } 118 157 119 158 const HEAD = ` 120 159 { fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec { 121 160 offline_cache = linkFarm "offline" packages; 122 161 packages = [ 123 - `.trim() 162 + `.trim(); 124 163 125 164 // Object -> String 126 165 function generateNix(pkgs, builtinFetchGit) { 127 - const nameWithVersionAndPackageNix = R.map(fetchLockedDep(builtinFetchGit), pkgs) 166 + const nameWithVersionAndPackageNix = R.map( 167 + fetchLockedDep(builtinFetchGit), 168 + pkgs 169 + ); 128 170 129 171 const packagesDefinition = R.join( 130 - '\n', 131 - R.values(nameWithVersionAndPackageNix), 132 - ) 172 + "\n", 173 + R.values(nameWithVersionAndPackageNix) 174 + ); 133 175 134 - return R.join('\n', [HEAD, packagesDefinition, ' ];', '}']) 176 + return R.join("\n", [HEAD, packagesDefinition, " ];", "}"]); 135 177 } 136 178 137 - module.exports = generateNix 179 + module.exports = generateNix;
+6 -6
pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/mapObjIndexedReturnArray.js
··· 1 - const _curry2 = require('ramda/src/internal/_curry2') 2 - const _map = require('ramda/src/internal/_map') 3 - const keys = require('ramda/src/keys') 1 + const _curry2 = require("ramda/src/internal/_curry2"); 2 + const _map = require("ramda/src/internal/_map"); 3 + const keys = require("ramda/src/keys"); 4 4 5 5 // mapObjIndexed: ((v, k, {k: v}) → v') → {k: v} → {k: v'} 6 6 // mapObjIndexedReturnArray: ((v, k, {k: v}) → v') → {k: v} → [v'] ··· 15 15 */ 16 16 17 17 const mapObjIndexedReturnArray = _curry2((fn, obj) => 18 - _map(key => fn(obj[key], key, obj), keys(obj)), 19 - ) 18 + _map(key => fn(obj[key], key, obj), keys(obj)) 19 + ); 20 20 21 - module.exports = mapObjIndexedReturnArray 21 + module.exports = mapObjIndexedReturnArray;
+7 -8
pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/urlToName.js
··· 1 - const path = require('path') 1 + const path = require("path"); 2 2 3 3 // String -> String 4 4 ··· 10 10 // - https://codeload.github.com/Gargron/emoji-mart/tar.gz/934f314fd8322276765066e8a2a6be5bac61b1cf 11 11 12 12 function urlToName(url) { 13 - 14 13 // Yarn generates `codeload.github.com` tarball URLs, where the final 15 14 // path component (file name) is the git hash. See #111. 16 15 // See also https://github.com/yarnpkg/yarn/blob/989a7406/src/resolvers/exotics/github-resolver.js#L24-L26 17 16 let isCodeloadGitTarballUrl = 18 - url.startsWith('https://codeload.github.com/') && url.includes('/tar.gz/') 17 + url.startsWith("https://codeload.github.com/") && url.includes("/tar.gz/"); 19 18 20 - if (url.startsWith('git+') || isCodeloadGitTarballUrl) { 21 - return path.basename(url) 19 + if (url.startsWith("git+") || isCodeloadGitTarballUrl) { 20 + return path.basename(url); 22 21 } 23 22 24 23 return url 25 - .replace(/https:\/\/(.)*(.com)\//g, '') // prevents having long directory names 26 - .replace(/[@/%:-]/g, '_') // replace @ and : and - and % characters with underscore 24 + .replace(/https:\/\/(.)*(.com)\//g, "") // prevents having long directory names 25 + .replace(/[@/%:-]/g, "_"); // replace @ and : and - and % characters with underscore 27 26 } 28 27 29 - module.exports = urlToName 28 + module.exports = urlToName;
+4 -3
pkgs/development/tools/yarn2nix-moretea/yarn2nix/package.json
··· 14 14 "bin": { 15 15 "yarn2nix": "bin/yarn2nix.js" 16 16 }, 17 - "engines" : { 18 - "node" : ">=8.0.0" 17 + "engines": { 18 + "node": ">=8.0.0" 19 19 }, 20 20 "dependencies": { 21 21 "@yarnpkg/lockfile": "^1.1.0", 22 22 "deep-equal": "^1.0.1", 23 23 "docopt": "^0.6.2", 24 - "ramda": "^0.26.1" 24 + "ramda": "^0.26.1", 25 + "ssri": "^10.0.0" 25 26 }, 26 27 "devDependencies": { 27 28 "babel-eslint": "^10.0.1",
+19
pkgs/development/tools/yarn2nix-moretea/yarn2nix/yarn.lock
··· 2228 2228 resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2229 2229 integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2230 2230 2231 + minipass@^3.1.1: 2232 + version "3.3.4" 2233 + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.4.tgz#ca99f95dd77c43c7a76bf51e6d200025eee0ffae" 2234 + integrity sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw== 2235 + dependencies: 2236 + yallist "^4.0.0" 2237 + 2231 2238 mixin-deep@^1.2.0: 2232 2239 version "1.3.2" 2233 2240 resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" ··· 3136 3143 resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3137 3144 integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3138 3145 3146 + ssri@^10.0.0: 3147 + version "10.0.0" 3148 + resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.0.tgz#1e34554cbbc4728f5290674264e21b64aaf27ca7" 3149 + integrity sha512-64ghGOpqW0k+jh7m5jndBGdVEoPikWwGQmBNN5ks6jyUSMymzHDTlnNHOvzp+6MmHOljr2MokUzvRksnTwG0Iw== 3150 + dependencies: 3151 + minipass "^3.1.1" 3152 + 3139 3153 staged-git-files@1.1.2: 3140 3154 version "1.1.2" 3141 3155 resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-1.1.2.tgz#4326d33886dc9ecfa29a6193bf511ba90a46454b" ··· 3544 3558 version "2.1.2" 3545 3559 resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3546 3560 integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 3561 + 3562 + yallist@^4.0.0: 3563 + version "4.0.0" 3564 + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 3565 + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 3547 3566 3548 3567 yargs-parser@^8.0.0: 3549 3568 version "8.1.0"
+520 -496
pkgs/development/tools/yarn2nix-moretea/yarn2nix/yarn.nix
··· 6 6 path = fetchurl { 7 7 name = "_babel_code_frame___code_frame_7.8.3.tgz"; 8 8 url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz"; 9 - sha1 = "33e25903d7481181534e12ec0a25f16b6fcf419e"; 9 + sha512 = "a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g=="; 10 10 }; 11 11 } 12 12 { ··· 14 14 path = fetchurl { 15 15 name = "_babel_generator___generator_7.9.6.tgz"; 16 16 url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.6.tgz"; 17 - sha1 = "5408c82ac5de98cda0d77d8124e99fa1f2170a43"; 17 + sha512 = "+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ=="; 18 18 }; 19 19 } 20 20 { ··· 22 22 path = fetchurl { 23 23 name = "_babel_helper_function_name___helper_function_name_7.9.5.tgz"; 24 24 url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz"; 25 - sha1 = "2b53820d35275120e1874a82e5aabe1376920a5c"; 25 + sha512 = "JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw=="; 26 26 }; 27 27 } 28 28 { ··· 30 30 path = fetchurl { 31 31 name = "_babel_helper_get_function_arity___helper_get_function_arity_7.8.3.tgz"; 32 32 url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz"; 33 - sha1 = "b894b947bd004381ce63ea1db9f08547e920abd5"; 33 + sha512 = "FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA=="; 34 34 }; 35 35 } 36 36 { ··· 38 38 path = fetchurl { 39 39 name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.8.3.tgz"; 40 40 url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz"; 41 - sha1 = "31a9f30070f91368a7182cf05f831781065fc7a9"; 41 + sha512 = "3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA=="; 42 42 }; 43 43 } 44 44 { ··· 46 46 path = fetchurl { 47 47 name = "_babel_helper_validator_identifier___helper_validator_identifier_7.9.5.tgz"; 48 48 url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz"; 49 - sha1 = "90977a8e6fbf6b431a7dc31752eee233bf052d80"; 49 + sha512 = "/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g=="; 50 50 }; 51 51 } 52 52 { ··· 54 54 path = fetchurl { 55 55 name = "_babel_highlight___highlight_7.9.0.tgz"; 56 56 url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz"; 57 - sha1 = "4e9b45ccb82b79607271b2979ad82c7b68163079"; 57 + sha512 = "lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ=="; 58 58 }; 59 59 } 60 60 { ··· 62 62 path = fetchurl { 63 63 name = "_babel_parser___parser_7.9.6.tgz"; 64 64 url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.6.tgz"; 65 - sha1 = "3b1bbb30dabe600cd72db58720998376ff653bc7"; 65 + sha512 = "AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q=="; 66 66 }; 67 67 } 68 68 { ··· 70 70 path = fetchurl { 71 71 name = "_babel_runtime_corejs3___runtime_corejs3_7.9.6.tgz"; 72 72 url = "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.9.6.tgz"; 73 - sha1 = "67aded13fffbbc2cb93247388cf84d77a4be9a71"; 73 + sha512 = "6toWAfaALQjt3KMZQc6fABqZwUDDuWzz+cAfPhqyEnzxvdWOAkjwPNxgF8xlmo7OWLsSjaKjsskpKHRLaMArOA=="; 74 74 }; 75 75 } 76 76 { ··· 78 78 path = fetchurl { 79 79 name = "_babel_runtime___runtime_7.9.6.tgz"; 80 80 url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz"; 81 - sha1 = "a9102eb5cadedf3f31d08a9ecf294af7827ea29f"; 81 + sha512 = "64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ=="; 82 82 }; 83 83 } 84 84 { ··· 86 86 path = fetchurl { 87 87 name = "_babel_template___template_7.8.6.tgz"; 88 88 url = "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz"; 89 - sha1 = "86b22af15f828dfb086474f964dcc3e39c43ce2b"; 89 + sha512 = "zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg=="; 90 90 }; 91 91 } 92 92 { ··· 94 94 path = fetchurl { 95 95 name = "_babel_traverse___traverse_7.9.6.tgz"; 96 96 url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.6.tgz"; 97 - sha1 = "5540d7577697bf619cc57b92aa0f1c231a94f442"; 97 + sha512 = "b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg=="; 98 98 }; 99 99 } 100 100 { ··· 102 102 path = fetchurl { 103 103 name = "_babel_types___types_7.9.6.tgz"; 104 104 url = "https://registry.yarnpkg.com/@babel/types/-/types-7.9.6.tgz"; 105 - sha1 = "2c5502b427251e9de1bd2dff95add646d95cc9f7"; 105 + sha512 = "qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA=="; 106 106 }; 107 107 } 108 108 { ··· 110 110 path = fetchurl { 111 111 name = "_samverschueren_stream_to_observable___stream_to_observable_0.3.0.tgz"; 112 112 url = "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz"; 113 - sha1 = "ecdf48d532c58ea477acfcab80348424f8d0662f"; 113 + sha512 = "MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg=="; 114 114 }; 115 115 } 116 116 { ··· 118 118 path = fetchurl { 119 119 name = "_yarnpkg_lockfile___lockfile_1.1.0.tgz"; 120 120 url = "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz"; 121 - sha1 = "e77a97fbd345b76d83245edcd17d393b1b41fb31"; 121 + sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; 122 122 }; 123 123 } 124 124 { ··· 126 126 path = fetchurl { 127 127 name = "abbrev___abbrev_1.1.1.tgz"; 128 128 url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz"; 129 - sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; 129 + sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 130 130 }; 131 131 } 132 132 { ··· 134 134 path = fetchurl { 135 135 name = "acorn_jsx___acorn_jsx_3.0.1.tgz"; 136 136 url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz"; 137 - sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b"; 137 + sha1 = "r9+UiPsezvyDSPb7IvRk4ypYs2s="; 138 138 }; 139 139 } 140 140 { ··· 142 142 path = fetchurl { 143 143 name = "acorn_jsx___acorn_jsx_5.2.0.tgz"; 144 144 url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz"; 145 - sha1 = "4c66069173d6fdd68ed85239fc256226182b2ebe"; 145 + sha512 = "HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ=="; 146 146 }; 147 147 } 148 148 { ··· 150 150 path = fetchurl { 151 151 name = "acorn___acorn_3.3.0.tgz"; 152 152 url = "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz"; 153 - sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a"; 153 + sha1 = "ReN/s56No/JbruP/U2niu18iAXo="; 154 154 }; 155 155 } 156 156 { ··· 158 158 path = fetchurl { 159 159 name = "acorn___acorn_5.7.4.tgz"; 160 160 url = "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz"; 161 - sha1 = "3e8d8a9947d0599a1796d10225d7432f4a4acf5e"; 161 + sha512 = "1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg=="; 162 162 }; 163 163 } 164 164 { ··· 166 166 path = fetchurl { 167 167 name = "acorn___acorn_6.4.1.tgz"; 168 168 url = "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz"; 169 - sha1 = "531e58ba3f51b9dacb9a6646ca4debf5b14ca474"; 169 + sha512 = "ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA=="; 170 170 }; 171 171 } 172 172 { ··· 174 174 path = fetchurl { 175 175 name = "ajv_keywords___ajv_keywords_2.1.1.tgz"; 176 176 url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz"; 177 - sha1 = "617997fc5f60576894c435f940d819e135b80762"; 177 + sha1 = "YXmX/F9gV2iUxDX5QNgZ4TW4B2I="; 178 178 }; 179 179 } 180 180 { ··· 182 182 path = fetchurl { 183 183 name = "ajv___ajv_5.5.2.tgz"; 184 184 url = "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz"; 185 - sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965"; 185 + sha1 = "c7Xuyj+rZT49P5Qis0GtQiBdyWU="; 186 186 }; 187 187 } 188 188 { ··· 190 190 path = fetchurl { 191 191 name = "ajv___ajv_6.12.2.tgz"; 192 192 url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz"; 193 - sha1 = "c629c5eced17baf314437918d2da88c99d5958cd"; 193 + sha512 = "k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ=="; 194 194 }; 195 195 } 196 196 { ··· 198 198 path = fetchurl { 199 199 name = "ansi_escapes___ansi_escapes_3.2.0.tgz"; 200 200 url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz"; 201 - sha1 = "8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"; 201 + sha512 = "cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ=="; 202 202 }; 203 203 } 204 204 { ··· 206 206 path = fetchurl { 207 207 name = "ansi_regex___ansi_regex_2.1.1.tgz"; 208 208 url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz"; 209 - sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 209 + sha1 = "w7M6te42DYbg5ijwRorn7yfWVN8="; 210 210 }; 211 211 } 212 212 { ··· 214 214 path = fetchurl { 215 215 name = "ansi_regex___ansi_regex_3.0.0.tgz"; 216 216 url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz"; 217 - sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 217 + sha1 = "7QMXwyIGT3lGbAKWa922Bas32Zg="; 218 218 }; 219 219 } 220 220 { ··· 222 222 path = fetchurl { 223 223 name = "ansi_regex___ansi_regex_4.1.0.tgz"; 224 224 url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz"; 225 - sha1 = "8b9f8f08cf1acb843756a839ca8c7e3168c51997"; 225 + sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 226 226 }; 227 227 } 228 228 { ··· 230 230 path = fetchurl { 231 231 name = "ansi_styles___ansi_styles_2.2.1.tgz"; 232 232 url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz"; 233 - sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; 233 + sha1 = "tDLdM1i2NM914eRmQ2gkBTPB3b4="; 234 234 }; 235 235 } 236 236 { ··· 238 238 path = fetchurl { 239 239 name = "ansi_styles___ansi_styles_3.2.1.tgz"; 240 240 url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; 241 - sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d"; 241 + sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 242 242 }; 243 243 } 244 244 { ··· 246 246 path = fetchurl { 247 247 name = "any_observable___any_observable_0.3.0.tgz"; 248 248 url = "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz"; 249 - sha1 = "af933475e5806a67d0d7df090dd5e8bef65d119b"; 249 + sha512 = "/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog=="; 250 250 }; 251 251 } 252 252 { ··· 254 254 path = fetchurl { 255 255 name = "argparse___argparse_1.0.10.tgz"; 256 256 url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; 257 - sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911"; 257 + sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; 258 258 }; 259 259 } 260 260 { ··· 262 262 path = fetchurl { 263 263 name = "aria_query___aria_query_3.0.0.tgz"; 264 264 url = "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz"; 265 - sha1 = "65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc"; 265 + sha1 = "ZbP8wcoRVajJrmTW7uKX8V1RM8w="; 266 266 }; 267 267 } 268 268 { ··· 270 270 path = fetchurl { 271 271 name = "arr_diff___arr_diff_4.0.0.tgz"; 272 272 url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz"; 273 - sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; 273 + sha1 = "1kYQdP6/7HHn4VI1dhoyml3HxSA="; 274 274 }; 275 275 } 276 276 { ··· 278 278 path = fetchurl { 279 279 name = "arr_flatten___arr_flatten_1.1.0.tgz"; 280 280 url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz"; 281 - sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1"; 281 + sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="; 282 282 }; 283 283 } 284 284 { ··· 286 286 path = fetchurl { 287 287 name = "arr_union___arr_union_3.1.0.tgz"; 288 288 url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz"; 289 - sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; 289 + sha1 = "45sJrqne+Gao8gbiiK9jkZuuOcQ="; 290 290 }; 291 291 } 292 292 { ··· 294 294 path = fetchurl { 295 295 name = "array_includes___array_includes_3.1.1.tgz"; 296 296 url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz"; 297 - sha1 = "cdd67e6852bdf9c1215460786732255ed2459348"; 297 + sha512 = "c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ=="; 298 298 }; 299 299 } 300 300 { ··· 302 302 path = fetchurl { 303 303 name = "array_union___array_union_1.0.2.tgz"; 304 304 url = "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz"; 305 - sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39"; 305 + sha1 = "mjRBDk9OPaI96jdb5b5w8kd47Dk="; 306 306 }; 307 307 } 308 308 { ··· 310 310 path = fetchurl { 311 311 name = "array_uniq___array_uniq_1.0.3.tgz"; 312 312 url = "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz"; 313 - sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; 313 + sha1 = "r2rId6Jcx/dOBYiUdThY39sk/bY="; 314 314 }; 315 315 } 316 316 { ··· 318 318 path = fetchurl { 319 319 name = "array_unique___array_unique_0.3.2.tgz"; 320 320 url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz"; 321 - sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; 321 + sha1 = "qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="; 322 322 }; 323 323 } 324 324 { ··· 326 326 path = fetchurl { 327 327 name = "array.prototype.flat___array.prototype.flat_1.2.3.tgz"; 328 328 url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz"; 329 - sha1 = "0de82b426b0318dbfdb940089e38b043d37f6c7b"; 329 + sha512 = "gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ=="; 330 330 }; 331 331 } 332 332 { ··· 334 334 path = fetchurl { 335 335 name = "arrify___arrify_1.0.1.tgz"; 336 336 url = "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz"; 337 - sha1 = "898508da2226f380df904728456849c1501a4b0d"; 337 + sha1 = "iYUI2iIm84DfkEcoRWhJwVAaSw0="; 338 338 }; 339 339 } 340 340 { ··· 342 342 path = fetchurl { 343 343 name = "assign_symbols___assign_symbols_1.0.0.tgz"; 344 344 url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz"; 345 - sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 345 + sha1 = "WWZ/QfrdTyDMvCu5a41Pf3jsA2c="; 346 346 }; 347 347 } 348 348 { ··· 350 350 path = fetchurl { 351 351 name = "ast_types_flow___ast_types_flow_0.0.7.tgz"; 352 352 url = "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz"; 353 - sha1 = "f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"; 353 + sha1 = "9wtzXGvKGlycItmCw+Oef+ujva0="; 354 354 }; 355 355 } 356 356 { ··· 358 358 path = fetchurl { 359 359 name = "astral_regex___astral_regex_1.0.0.tgz"; 360 360 url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; 361 - sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; 361 + sha512 = "+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="; 362 362 }; 363 363 } 364 364 { ··· 366 366 path = fetchurl { 367 367 name = "atob___atob_2.1.2.tgz"; 368 368 url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz"; 369 - sha1 = "6d9517eb9e030d2436666651e86bd9f6f13533c9"; 369 + sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="; 370 370 }; 371 371 } 372 372 { ··· 374 374 path = fetchurl { 375 375 name = "axobject_query___axobject_query_2.1.2.tgz"; 376 376 url = "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.1.2.tgz"; 377 - sha1 = "2bdffc0371e643e5f03ba99065d5179b9ca79799"; 377 + sha512 = "ICt34ZmrVt8UQnvPl6TVyDTkmhXmAyAT4Jh5ugfGUX4MOrZ+U/ZY6/sdylRw3qGNr9Ub5AJsaHeDMzNLehRdOQ=="; 378 378 }; 379 379 } 380 380 { ··· 382 382 path = fetchurl { 383 383 name = "babel_code_frame___babel_code_frame_6.26.0.tgz"; 384 384 url = "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; 385 - sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"; 385 + sha1 = "Y/1D99weO7fONZR9uP42mj9Yx0s="; 386 386 }; 387 387 } 388 388 { ··· 390 390 path = fetchurl { 391 391 name = "babel_eslint___babel_eslint_10.1.0.tgz"; 392 392 url = "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz"; 393 - sha1 = "6968e568a910b78fb3779cdd8b6ac2f479943232"; 393 + sha512 = "ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg=="; 394 394 }; 395 395 } 396 396 { ··· 398 398 path = fetchurl { 399 399 name = "babel_runtime___babel_runtime_6.26.0.tgz"; 400 400 url = "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz"; 401 - sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 401 + sha1 = "llxwWGaOgrVde/4E/yM3vItWR/4="; 402 402 }; 403 403 } 404 404 { ··· 406 406 path = fetchurl { 407 407 name = "balanced_match___balanced_match_1.0.0.tgz"; 408 408 url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; 409 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 409 + sha1 = "ibTRmasr7kneFk6gK4nORi1xt2c="; 410 410 }; 411 411 } 412 412 { ··· 414 414 path = fetchurl { 415 415 name = "base___base_0.11.2.tgz"; 416 416 url = "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz"; 417 - sha1 = "7bde5ced145b6d551a90db87f83c558b4eb48a8f"; 417 + sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg=="; 418 418 }; 419 419 } 420 420 { ··· 422 422 path = fetchurl { 423 423 name = "boolify___boolify_1.0.1.tgz"; 424 424 url = "https://registry.yarnpkg.com/boolify/-/boolify-1.0.1.tgz"; 425 - sha1 = "b5c09e17cacd113d11b7bb3ed384cc012994d86b"; 425 + sha1 = "tcCeF8rNET0Rt7s+04TMASmU2Gs="; 426 426 }; 427 427 } 428 428 { ··· 430 430 path = fetchurl { 431 431 name = "brace_expansion___brace_expansion_1.1.11.tgz"; 432 432 url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; 433 - sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd"; 433 + sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; 434 434 }; 435 435 } 436 436 { ··· 438 438 path = fetchurl { 439 439 name = "braces___braces_2.3.2.tgz"; 440 440 url = "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz"; 441 - sha1 = "5979fd3f14cd531565e5fa2df1abfff1dfaee729"; 441 + sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w=="; 442 442 }; 443 443 } 444 444 { ··· 446 446 path = fetchurl { 447 447 name = "buffer_from___buffer_from_1.1.1.tgz"; 448 448 url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; 449 - sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef"; 449 + sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 450 450 }; 451 451 } 452 452 { ··· 454 454 path = fetchurl { 455 455 name = "cache_base___cache_base_1.0.1.tgz"; 456 456 url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz"; 457 - sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2"; 457 + sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; 458 458 }; 459 459 } 460 460 { ··· 462 462 path = fetchurl { 463 463 name = "caller_callsite___caller_callsite_2.0.0.tgz"; 464 464 url = "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz"; 465 - sha1 = "847e0fce0a223750a9a027c54b33731ad3154134"; 465 + sha1 = "hH4PzgoiN1CpoCfFSzNzGtMVQTQ="; 466 466 }; 467 467 } 468 468 { ··· 470 470 path = fetchurl { 471 471 name = "caller_path___caller_path_0.1.0.tgz"; 472 472 url = "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz"; 473 - sha1 = "94085ef63581ecd3daa92444a8fe94e82577751f"; 473 + sha1 = "lAhe9jWB7NPaqSREqP6U6CV3dR8="; 474 474 }; 475 475 } 476 476 { ··· 478 478 path = fetchurl { 479 479 name = "caller_path___caller_path_2.0.0.tgz"; 480 480 url = "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz"; 481 - sha1 = "468f83044e369ab2010fac5f06ceee15bb2cb1f4"; 481 + sha1 = "Ro+DBE42mrIBD6xfBs7uFbsssfQ="; 482 482 }; 483 483 } 484 484 { ··· 486 486 path = fetchurl { 487 487 name = "callsites___callsites_0.2.0.tgz"; 488 488 url = "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz"; 489 - sha1 = "afab96262910a7f33c19a5775825c69f34e350ca"; 489 + sha1 = "r6uWJikQp/M8GaV3WCXGnzTjUMo="; 490 490 }; 491 491 } 492 492 { ··· 494 494 path = fetchurl { 495 495 name = "callsites___callsites_2.0.0.tgz"; 496 496 url = "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz"; 497 - sha1 = "06eb84f00eea413da86affefacbffb36093b3c50"; 497 + sha1 = "BuuE8A7qQT2oav/vrL/7Ngk7PFA="; 498 498 }; 499 499 } 500 500 { ··· 502 502 path = fetchurl { 503 503 name = "callsites___callsites_3.1.0.tgz"; 504 504 url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz"; 505 - sha1 = "b3630abd8943432f54b3f0519238e33cd7df2f73"; 505 + sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; 506 506 }; 507 507 } 508 508 { ··· 510 510 path = fetchurl { 511 511 name = "camelcase_keys___camelcase_keys_4.2.0.tgz"; 512 512 url = "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz"; 513 - sha1 = "a2aa5fb1af688758259c32c141426d78923b9b77"; 513 + sha1 = "oqpfsa9oh1glnDLBQUJteJI7m3c="; 514 514 }; 515 515 } 516 516 { ··· 518 518 path = fetchurl { 519 519 name = "camelcase___camelcase_4.1.0.tgz"; 520 520 url = "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz"; 521 - sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; 521 + sha1 = "1UVjW+HjPFQmScaRc+Xeas+uNN0="; 522 522 }; 523 523 } 524 524 { ··· 526 526 path = fetchurl { 527 527 name = "chalk___chalk_2.3.0.tgz"; 528 528 url = "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz"; 529 - sha1 = "b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"; 529 + sha512 = "Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q=="; 530 530 }; 531 531 } 532 532 { ··· 534 534 path = fetchurl { 535 535 name = "chalk___chalk_1.1.3.tgz"; 536 536 url = "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz"; 537 - sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; 537 + sha1 = "qBFcVeSnAv5NFQq9OHKCKn4J/Jg="; 538 538 }; 539 539 } 540 540 { ··· 542 542 path = fetchurl { 543 543 name = "chalk___chalk_2.4.2.tgz"; 544 544 url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; 545 - sha1 = "cd42541677a54333cf541a49108c1432b44c9424"; 545 + sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 546 546 }; 547 547 } 548 548 { ··· 550 550 path = fetchurl { 551 551 name = "chardet___chardet_0.4.2.tgz"; 552 552 url = "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz"; 553 - sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"; 553 + sha1 = "tUc7M9yXxCTl2Y3IfVXU2KKci/I="; 554 554 }; 555 555 } 556 556 { ··· 558 558 path = fetchurl { 559 559 name = "chardet___chardet_0.7.0.tgz"; 560 560 url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz"; 561 - sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e"; 561 + sha512 = "mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="; 562 562 }; 563 563 } 564 564 { ··· 566 566 path = fetchurl { 567 567 name = "ci_info___ci_info_2.0.0.tgz"; 568 568 url = "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz"; 569 - sha1 = "67a9e964be31a51e15e5010d58e6f12834002f46"; 569 + sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; 570 570 }; 571 571 } 572 572 { ··· 574 574 path = fetchurl { 575 575 name = "circular_json___circular_json_0.3.3.tgz"; 576 576 url = "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz"; 577 - sha1 = "815c99ea84f6809529d2f45791bdf82711352d66"; 577 + sha512 = "UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A=="; 578 578 }; 579 579 } 580 580 { ··· 582 582 path = fetchurl { 583 583 name = "class_utils___class_utils_0.3.6.tgz"; 584 584 url = "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz"; 585 - sha1 = "f93369ae8b9a7ce02fd41faad0ca83033190c463"; 585 + sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg=="; 586 586 }; 587 587 } 588 588 { ··· 590 590 path = fetchurl { 591 591 name = "cli_cursor___cli_cursor_2.1.0.tgz"; 592 592 url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz"; 593 - sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; 593 + sha1 = "s12sN2R5+sw+lHR9QdDQ9SOP/LU="; 594 594 }; 595 595 } 596 596 { ··· 598 598 path = fetchurl { 599 599 name = "cli_truncate___cli_truncate_0.2.1.tgz"; 600 600 url = "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz"; 601 - sha1 = "9f15cfbb0705005369216c626ac7d05ab90dd574"; 601 + sha1 = "nxXPuwcFAFNpIWxiasfQWrkN1XQ="; 602 602 }; 603 603 } 604 604 { ··· 606 606 path = fetchurl { 607 607 name = "cli_width___cli_width_2.2.1.tgz"; 608 608 url = "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz"; 609 - sha1 = "b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"; 609 + sha512 = "GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw=="; 610 610 }; 611 611 } 612 612 { ··· 614 614 path = fetchurl { 615 615 name = "cliui___cliui_3.2.0.tgz"; 616 616 url = "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz"; 617 - sha1 = "120601537a916d29940f934da3b48d585a39213d"; 617 + sha1 = "EgYBU3qRbSmUD5NNo7SNWFo5IT0="; 618 618 }; 619 619 } 620 620 { ··· 622 622 path = fetchurl { 623 623 name = "co___co_4.6.0.tgz"; 624 624 url = "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz"; 625 - sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; 625 + sha1 = "bqa989hTrlTMuOR7+gvz+QMfsYQ="; 626 626 }; 627 627 } 628 628 { ··· 630 630 path = fetchurl { 631 631 name = "code_point_at___code_point_at_1.1.0.tgz"; 632 632 url = "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz"; 633 - sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; 633 + sha1 = "DQcLTQQ6W+ozovGkDi7bPZpMz3c="; 634 634 }; 635 635 } 636 636 { ··· 638 638 path = fetchurl { 639 639 name = "collection_visit___collection_visit_1.0.0.tgz"; 640 640 url = "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz"; 641 - sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; 641 + sha1 = "S8A3PBZLwykbTTaMgpzxqApZ3KA="; 642 642 }; 643 643 } 644 644 { ··· 646 646 path = fetchurl { 647 647 name = "color_convert___color_convert_1.9.3.tgz"; 648 648 url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; 649 - sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8"; 649 + sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 650 650 }; 651 651 } 652 652 { ··· 654 654 path = fetchurl { 655 655 name = "color_name___color_name_1.1.3.tgz"; 656 656 url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; 657 - sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 657 + sha1 = "p9BVi9icQveV3UIyj3QIMcpTvCU="; 658 658 }; 659 659 } 660 660 { ··· 662 662 path = fetchurl { 663 663 name = "commander___commander_2.20.3.tgz"; 664 664 url = "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz"; 665 - sha1 = "fd485e84c03eb4881c20722ba48035e8531aeb33"; 665 + sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; 666 666 }; 667 667 } 668 668 { ··· 670 670 path = fetchurl { 671 671 name = "common_tags___common_tags_1.8.0.tgz"; 672 672 url = "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz"; 673 - sha1 = "8e3153e542d4a39e9b10554434afaaf98956a937"; 673 + sha512 = "6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw=="; 674 674 }; 675 675 } 676 676 { ··· 678 678 path = fetchurl { 679 679 name = "component_emitter___component_emitter_1.3.0.tgz"; 680 680 url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz"; 681 - sha1 = "16e4070fba8ae29b679f2215853ee181ab2eabc0"; 681 + sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="; 682 682 }; 683 683 } 684 684 { ··· 686 686 path = fetchurl { 687 687 name = "concat_map___concat_map_0.0.1.tgz"; 688 688 url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; 689 - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 689 + sha1 = "2Klr13/Wjfd5OnMDajug1UBdR3s="; 690 690 }; 691 691 } 692 692 { ··· 694 694 path = fetchurl { 695 695 name = "concat_stream___concat_stream_1.6.2.tgz"; 696 696 url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz"; 697 - sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"; 697 + sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; 698 698 }; 699 699 } 700 700 { ··· 702 702 path = fetchurl { 703 703 name = "confusing_browser_globals___confusing_browser_globals_1.0.9.tgz"; 704 704 url = "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz"; 705 - sha1 = "72bc13b483c0276801681871d4898516f8f54fdd"; 705 + sha512 = "KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw=="; 706 706 }; 707 707 } 708 708 { ··· 710 710 path = fetchurl { 711 711 name = "contains_path___contains_path_0.1.0.tgz"; 712 712 url = "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz"; 713 - sha1 = "fe8cf184ff6670b6baef01a9d4861a5cbec4120a"; 713 + sha1 = "/ozxhP9mcLa67wGp1IYaXL7EEgo="; 714 714 }; 715 715 } 716 716 { ··· 718 718 path = fetchurl { 719 719 name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; 720 720 url = "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; 721 - sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; 721 + sha1 = "Z29us8OZl8LuGsOpJP1hJHSPV40="; 722 722 }; 723 723 } 724 724 { ··· 726 726 path = fetchurl { 727 727 name = "core_js_pure___core_js_pure_3.6.5.tgz"; 728 728 url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz"; 729 - sha1 = "c79e75f5e38dbc85a662d91eea52b8256d53b813"; 729 + sha512 = "lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA=="; 730 730 }; 731 731 } 732 732 { ··· 734 734 path = fetchurl { 735 735 name = "core_js___core_js_2.6.11.tgz"; 736 736 url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz"; 737 - sha1 = "38831469f9922bded8ee21c9dc46985e0399308c"; 737 + sha512 = "5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg=="; 738 738 }; 739 739 } 740 740 { ··· 742 742 path = fetchurl { 743 743 name = "core_util_is___core_util_is_1.0.2.tgz"; 744 744 url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; 745 - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 745 + sha1 = "tf1UIgqivFq1eqtxQMlAdUUDwac="; 746 746 }; 747 747 } 748 748 { ··· 750 750 path = fetchurl { 751 751 name = "cosmiconfig___cosmiconfig_5.2.1.tgz"; 752 752 url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz"; 753 - sha1 = "040f726809c591e77a17c0a3626ca45b4f168b1a"; 753 + sha512 = "H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA=="; 754 754 }; 755 755 } 756 756 { ··· 758 758 path = fetchurl { 759 759 name = "cross_spawn___cross_spawn_5.1.0.tgz"; 760 760 url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz"; 761 - sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449"; 761 + sha1 = "6L0O/uWPz/b4+UUQoKVUu/ojVEk="; 762 762 }; 763 763 } 764 764 { ··· 766 766 path = fetchurl { 767 767 name = "cross_spawn___cross_spawn_6.0.5.tgz"; 768 768 url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; 769 - sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"; 769 + sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="; 770 770 }; 771 771 } 772 772 { ··· 774 774 path = fetchurl { 775 775 name = "damerau_levenshtein___damerau_levenshtein_1.0.6.tgz"; 776 776 url = "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz"; 777 - sha1 = "143c1641cb3d85c60c32329e26899adea8701791"; 777 + sha512 = "JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug=="; 778 778 }; 779 779 } 780 780 { ··· 782 782 path = fetchurl { 783 783 name = "date_fns___date_fns_1.30.1.tgz"; 784 784 url = "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz"; 785 - sha1 = "2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"; 785 + sha512 = "hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw=="; 786 786 }; 787 787 } 788 788 { ··· 790 790 path = fetchurl { 791 791 name = "debug___debug_2.6.9.tgz"; 792 792 url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; 793 - sha1 = "5d128515df134ff327e90a4c93f4e077a536341f"; 793 + sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 794 794 }; 795 795 } 796 796 { ··· 798 798 path = fetchurl { 799 799 name = "debug___debug_3.2.6.tgz"; 800 800 url = "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz"; 801 - sha1 = "e83d17de16d8a7efb7717edbe5fb10135eee629b"; 801 + sha512 = "mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ=="; 802 802 }; 803 803 } 804 804 { ··· 806 806 path = fetchurl { 807 807 name = "debug___debug_4.1.1.tgz"; 808 808 url = "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz"; 809 - sha1 = "3b72260255109c6b589cee050f1d516139664791"; 809 + sha512 = "pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw=="; 810 810 }; 811 811 } 812 812 { ··· 814 814 path = fetchurl { 815 815 name = "decamelize___decamelize_1.2.0.tgz"; 816 816 url = "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz"; 817 - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 817 + sha1 = "9lNNFRSCabIDUue+4m9QH5oZEpA="; 818 818 }; 819 819 } 820 820 { ··· 822 822 path = fetchurl { 823 823 name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 824 824 url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; 825 - sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; 825 + sha1 = "6zkTMzRYd1y4TNGh+uBiEGu4dUU="; 826 826 }; 827 827 } 828 828 { ··· 830 830 path = fetchurl { 831 831 name = "dedent___dedent_0.7.0.tgz"; 832 832 url = "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz"; 833 - sha1 = "2495ddbaf6eb874abb0e1be9df22d2e5a544326c"; 833 + sha1 = "JJXduvbrh0q7Dhvp3yLS5aVEMmw="; 834 834 }; 835 835 } 836 836 { ··· 838 838 path = fetchurl { 839 839 name = "deep_equal___deep_equal_1.1.1.tgz"; 840 840 url = "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz"; 841 - sha1 = "b5c98c942ceffaf7cb051e24e1434a25a2e6076a"; 841 + sha512 = "yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g=="; 842 842 }; 843 843 } 844 844 { ··· 846 846 path = fetchurl { 847 847 name = "deep_is___deep_is_0.1.3.tgz"; 848 848 url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz"; 849 - sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 849 + sha1 = "s2nW+128E+7PUk+RsHD+7cNXzzQ="; 850 850 }; 851 851 } 852 852 { ··· 854 854 path = fetchurl { 855 855 name = "define_properties___define_properties_1.1.3.tgz"; 856 856 url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz"; 857 - sha1 = "cf88da6cbee26fe6db7094f61d870cbd84cee9f1"; 857 + sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="; 858 858 }; 859 859 } 860 860 { ··· 862 862 path = fetchurl { 863 863 name = "define_property___define_property_0.2.5.tgz"; 864 864 url = "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz"; 865 - sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; 865 + sha1 = "w1se+RjsPJkPmlvFe+BKrOxcgRY="; 866 866 }; 867 867 } 868 868 { ··· 870 870 path = fetchurl { 871 871 name = "define_property___define_property_1.0.0.tgz"; 872 872 url = "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz"; 873 - sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; 873 + sha1 = "dp66rz9KY6rTr56NMEybvnm/sOY="; 874 874 }; 875 875 } 876 876 { ··· 878 878 path = fetchurl { 879 879 name = "define_property___define_property_2.0.2.tgz"; 880 880 url = "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz"; 881 - sha1 = "d459689e8d654ba77e02a817f8710d702cb16e9d"; 881 + sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ=="; 882 882 }; 883 883 } 884 884 { ··· 886 886 path = fetchurl { 887 887 name = "del___del_3.0.0.tgz"; 888 888 url = "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz"; 889 - sha1 = "53ecf699ffcbcb39637691ab13baf160819766e5"; 889 + sha1 = "U+z2mf/LyzljdpGrE7rxYIGXZuU="; 890 890 }; 891 891 } 892 892 { ··· 894 894 path = fetchurl { 895 895 name = "dlv___dlv_1.1.3.tgz"; 896 896 url = "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz"; 897 - sha1 = "5c198a8a11453596e751494d49874bc7732f2e79"; 897 + sha512 = "+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="; 898 898 }; 899 899 } 900 900 { ··· 902 902 path = fetchurl { 903 903 name = "docopt___docopt_0.6.2.tgz"; 904 904 url = "https://registry.yarnpkg.com/docopt/-/docopt-0.6.2.tgz"; 905 - sha1 = "b28e9e2220da5ec49f7ea5bb24a47787405eeb11"; 905 + sha1 = "so6eIiDaXsSffqW7JKR3h0Be6xE="; 906 906 }; 907 907 } 908 908 { ··· 910 910 path = fetchurl { 911 911 name = "doctrine___doctrine_1.5.0.tgz"; 912 912 url = "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz"; 913 - sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa"; 913 + sha1 = "N53Ocw9hZvds76TmcHoVmwLFpvo="; 914 914 }; 915 915 } 916 916 { ··· 918 918 path = fetchurl { 919 919 name = "doctrine___doctrine_2.1.0.tgz"; 920 920 url = "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz"; 921 - sha1 = "5cd01fc101621b42c4cd7f5d1a66243716d3f39d"; 921 + sha512 = "35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="; 922 922 }; 923 923 } 924 924 { ··· 926 926 path = fetchurl { 927 927 name = "doctrine___doctrine_3.0.0.tgz"; 928 928 url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz"; 929 - sha1 = "addebead72a6574db783639dc87a121773973961"; 929 + sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="; 930 930 }; 931 931 } 932 932 { ··· 934 934 path = fetchurl { 935 935 name = "elegant_spinner___elegant_spinner_1.0.1.tgz"; 936 936 url = "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz"; 937 - sha1 = "db043521c95d7e303fd8f345bedc3349cfb0729e"; 937 + sha1 = "2wQ1IcldfjA/2PNFvtwzSc+wcp4="; 938 938 }; 939 939 } 940 940 { ··· 942 942 path = fetchurl { 943 943 name = "emoji_regex___emoji_regex_7.0.3.tgz"; 944 944 url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz"; 945 - sha1 = "933a04052860c85e83c122479c4748a8e4c72156"; 945 + sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; 946 946 }; 947 947 } 948 948 { ··· 950 950 path = fetchurl { 951 951 name = "end_of_stream___end_of_stream_1.4.4.tgz"; 952 952 url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz"; 953 - sha1 = "5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"; 953 + sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 954 954 }; 955 955 } 956 956 { ··· 958 958 path = fetchurl { 959 959 name = "error_ex___error_ex_1.3.2.tgz"; 960 960 url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; 961 - sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf"; 961 + sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 962 962 }; 963 963 } 964 964 { ··· 966 966 path = fetchurl { 967 967 name = "es_abstract___es_abstract_1.17.5.tgz"; 968 968 url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz"; 969 - sha1 = "d8c9d1d66c8981fb9200e2251d799eee92774ae9"; 969 + sha512 = "BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg=="; 970 970 }; 971 971 } 972 972 { ··· 974 974 path = fetchurl { 975 975 name = "es_to_primitive___es_to_primitive_1.2.1.tgz"; 976 976 url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; 977 - sha1 = "e55cd4c9cdc188bcefb03b366c736323fc5c898a"; 977 + sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="; 978 978 }; 979 979 } 980 980 { ··· 982 982 path = fetchurl { 983 983 name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 984 984 url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 985 - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 985 + sha1 = "G2HAViGQqN/2rjuyzwIAyhMLhtQ="; 986 986 }; 987 987 } 988 988 { ··· 990 990 path = fetchurl { 991 991 name = "eslint_config_airbnb_base___eslint_config_airbnb_base_13.2.0.tgz"; 992 992 url = "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-13.2.0.tgz"; 993 - sha1 = "f6ea81459ff4dec2dda200c35f1d8f7419d57943"; 993 + sha512 = "1mg/7eoB4AUeB0X1c/ho4vb2gYkNH8Trr/EgCT/aGmKhhG+F6vF5s8+iRBlWAzFIAphxIdp3YfEKgEl0f9Xg+w=="; 994 994 }; 995 995 } 996 996 { ··· 998 998 path = fetchurl { 999 999 name = "eslint_config_airbnb___eslint_config_airbnb_17.1.1.tgz"; 1000 1000 url = "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-17.1.1.tgz"; 1001 - sha1 = "2272e0b86bb1e2b138cdf88d07a3b6f4cda3d626"; 1001 + sha512 = "xCu//8a/aWqagKljt+1/qAM62BYZeNq04HmdevG5yUGWpja0I/xhqd6GdLRch5oetEGFiJAnvtGuTEAese53Qg=="; 1002 1002 }; 1003 1003 } 1004 1004 { ··· 1006 1006 path = fetchurl { 1007 1007 name = "eslint_config_prettier___eslint_config_prettier_3.6.0.tgz"; 1008 1008 url = "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-3.6.0.tgz"; 1009 - sha1 = "8ca3ffac4bd6eeef623a0651f9d754900e3ec217"; 1009 + sha512 = "ixJ4U3uTLXwJts4rmSVW/lMXjlGwCijhBJHk8iVqKKSifeI0qgFEfWl8L63isfc8Od7EiBALF6BX3jKLluf/jQ=="; 1010 1010 }; 1011 1011 } 1012 1012 { ··· 1014 1014 path = fetchurl { 1015 1015 name = "eslint_config_standard___eslint_config_standard_12.0.0.tgz"; 1016 1016 url = "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz"; 1017 - sha1 = "638b4c65db0bd5a41319f96bba1f15ddad2107d9"; 1017 + sha512 = "COUz8FnXhqFitYj4DTqHzidjIL/t4mumGZto5c7DrBpvWoie+Sn3P4sLEzUGeYhRElWuFEf8K1S1EfvD1vixCQ=="; 1018 1018 }; 1019 1019 } 1020 1020 { ··· 1022 1022 path = fetchurl { 1023 1023 name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.3.tgz"; 1024 1024 url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz"; 1025 - sha1 = "dbaa52b6b2816b50bc6711af75422de808e98404"; 1025 + sha512 = "b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg=="; 1026 1026 }; 1027 1027 } 1028 1028 { ··· 1030 1030 path = fetchurl { 1031 1031 name = "eslint_module_utils___eslint_module_utils_2.6.0.tgz"; 1032 1032 url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz"; 1033 - sha1 = "579ebd094f56af7797d19c9866c9c9486629bfa6"; 1033 + sha512 = "6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA=="; 1034 1034 }; 1035 1035 } 1036 1036 { ··· 1038 1038 path = fetchurl { 1039 1039 name = "eslint_plugin_es___eslint_plugin_es_1.4.1.tgz"; 1040 1040 url = "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz"; 1041 - sha1 = "12acae0f4953e76ba444bfd1b2271081ac620998"; 1041 + sha512 = "5fa/gR2yR3NxQf+UXkeLeP8FBBl6tSgdrAz1+cF84v1FMM4twGwQoqTnn+QxFLcPOrF4pdKEJKDB/q9GoyJrCA=="; 1042 1042 }; 1043 1043 } 1044 1044 { ··· 1046 1046 path = fetchurl { 1047 1047 name = "eslint_plugin_import___eslint_plugin_import_2.20.2.tgz"; 1048 1048 url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.2.tgz"; 1049 - sha1 = "91fc3807ce08be4837141272c8b99073906e588d"; 1049 + sha512 = "FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg=="; 1050 1050 }; 1051 1051 } 1052 1052 { ··· 1054 1054 path = fetchurl { 1055 1055 name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.2.3.tgz"; 1056 1056 url = "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz"; 1057 - sha1 = "b872a09d5de51af70a97db1eea7dc933043708aa"; 1057 + sha512 = "CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg=="; 1058 1058 }; 1059 1059 } 1060 1060 { ··· 1062 1062 path = fetchurl { 1063 1063 name = "eslint_plugin_node___eslint_plugin_node_8.0.1.tgz"; 1064 1064 url = "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz"; 1065 - sha1 = "55ae3560022863d141fa7a11799532340a685964"; 1065 + sha512 = "ZjOjbjEi6jd82rIpFSgagv4CHWzG9xsQAVp1ZPlhRnnYxcTgENUVBvhYmkQ7GvT1QFijUSo69RaiOJKhMu6i8w=="; 1066 1066 }; 1067 1067 } 1068 1068 { ··· 1070 1070 path = fetchurl { 1071 1071 name = "eslint_plugin_promise___eslint_plugin_promise_4.2.1.tgz"; 1072 1072 url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz"; 1073 - sha1 = "845fd8b2260ad8f82564c1222fce44ad71d9418a"; 1073 + sha512 = "VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw=="; 1074 1074 }; 1075 1075 } 1076 1076 { ··· 1078 1078 path = fetchurl { 1079 1079 name = "eslint_plugin_react___eslint_plugin_react_7.20.0.tgz"; 1080 1080 url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.20.0.tgz"; 1081 - sha1 = "f98712f0a5e57dfd3e5542ef0604b8739cd47be3"; 1081 + sha512 = "rqe1abd0vxMjmbPngo4NaYxTcR3Y4Hrmc/jg4T+sYz63yqlmJRknpEQfmWY+eDWPuMmix6iUIK+mv0zExjeLgA=="; 1082 1082 }; 1083 1083 } 1084 1084 { ··· 1086 1086 path = fetchurl { 1087 1087 name = "eslint_plugin_standard___eslint_plugin_standard_4.0.1.tgz"; 1088 1088 url = "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.1.tgz"; 1089 - sha1 = "ff0519f7ffaff114f76d1bd7c3996eef0f6e20b4"; 1089 + sha512 = "v/KBnfyaOMPmZc/dmc6ozOdWqekGp7bBGq4jLAecEfPGmfKiWS4sA8sC0LqiV9w5qmXAtXVn4M3p1jSyhY85SQ=="; 1090 1090 }; 1091 1091 } 1092 1092 { ··· 1094 1094 path = fetchurl { 1095 1095 name = "eslint_scope___eslint_scope_3.7.3.tgz"; 1096 1096 url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz"; 1097 - sha1 = "bb507200d3d17f60247636160b4826284b108535"; 1097 + sha512 = "W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA=="; 1098 1098 }; 1099 1099 } 1100 1100 { ··· 1102 1102 path = fetchurl { 1103 1103 name = "eslint_scope___eslint_scope_4.0.3.tgz"; 1104 1104 url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz"; 1105 - sha1 = "ca03833310f6889a3264781aa82e63eb9cfe7848"; 1105 + sha512 = "p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg=="; 1106 1106 }; 1107 1107 } 1108 1108 { ··· 1110 1110 path = fetchurl { 1111 1111 name = "eslint_utils___eslint_utils_1.4.3.tgz"; 1112 1112 url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz"; 1113 - sha1 = "74fec7c54d0776b6f67e0251040b5806564e981f"; 1113 + sha512 = "fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q=="; 1114 1114 }; 1115 1115 } 1116 1116 { ··· 1118 1118 path = fetchurl { 1119 1119 name = "eslint_visitor_keys___eslint_visitor_keys_1.1.0.tgz"; 1120 1120 url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz"; 1121 - sha1 = "e2a82cea84ff246ad6fb57f9bde5b46621459ec2"; 1121 + sha512 = "8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A=="; 1122 1122 }; 1123 1123 } 1124 1124 { ··· 1126 1126 path = fetchurl { 1127 1127 name = "eslint___eslint_4.19.1.tgz"; 1128 1128 url = "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz"; 1129 - sha1 = "32d1d653e1d90408854bfb296f076ec7e186a300"; 1129 + sha512 = "bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ=="; 1130 1130 }; 1131 1131 } 1132 1132 { ··· 1134 1134 path = fetchurl { 1135 1135 name = "eslint___eslint_5.16.0.tgz"; 1136 1136 url = "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz"; 1137 - sha1 = "a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea"; 1137 + sha512 = "S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg=="; 1138 1138 }; 1139 1139 } 1140 1140 { ··· 1142 1142 path = fetchurl { 1143 1143 name = "espree___espree_3.5.4.tgz"; 1144 1144 url = "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz"; 1145 - sha1 = "b0f447187c8a8bed944b815a660bddf5deb5d1a7"; 1145 + sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A=="; 1146 1146 }; 1147 1147 } 1148 1148 { ··· 1150 1150 path = fetchurl { 1151 1151 name = "espree___espree_5.0.1.tgz"; 1152 1152 url = "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz"; 1153 - sha1 = "5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a"; 1153 + sha512 = "qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A=="; 1154 1154 }; 1155 1155 } 1156 1156 { ··· 1158 1158 path = fetchurl { 1159 1159 name = "esprima___esprima_4.0.1.tgz"; 1160 1160 url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; 1161 - sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71"; 1161 + sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 1162 1162 }; 1163 1163 } 1164 1164 { ··· 1166 1166 path = fetchurl { 1167 1167 name = "esquery___esquery_1.3.1.tgz"; 1168 1168 url = "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz"; 1169 - sha1 = "b78b5828aa8e214e29fb74c4d5b752e1c033da57"; 1169 + sha512 = "olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ=="; 1170 1170 }; 1171 1171 } 1172 1172 { ··· 1174 1174 path = fetchurl { 1175 1175 name = "esrecurse___esrecurse_4.2.1.tgz"; 1176 1176 url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz"; 1177 - sha1 = "007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"; 1177 + sha512 = "64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ=="; 1178 1178 }; 1179 1179 } 1180 1180 { ··· 1182 1182 path = fetchurl { 1183 1183 name = "estraverse___estraverse_4.3.0.tgz"; 1184 1184 url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; 1185 - sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d"; 1185 + sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="; 1186 1186 }; 1187 1187 } 1188 1188 { ··· 1190 1190 path = fetchurl { 1191 1191 name = "estraverse___estraverse_5.1.0.tgz"; 1192 1192 url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz"; 1193 - sha1 = "374309d39fd935ae500e7b92e8a6b4c720e59642"; 1193 + sha512 = "FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw=="; 1194 1194 }; 1195 1195 } 1196 1196 { ··· 1198 1198 path = fetchurl { 1199 1199 name = "esutils___esutils_2.0.3.tgz"; 1200 1200 url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz"; 1201 - sha1 = "74d2eb4de0b8da1293711910d50775b9b710ef64"; 1201 + sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; 1202 1202 }; 1203 1203 } 1204 1204 { ··· 1206 1206 path = fetchurl { 1207 1207 name = "execa___execa_0.7.0.tgz"; 1208 1208 url = "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz"; 1209 - sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777"; 1209 + sha1 = "lEvs00zEHuMqY6n68nrVpl/Fl3c="; 1210 1210 }; 1211 1211 } 1212 1212 { ··· 1214 1214 path = fetchurl { 1215 1215 name = "execa___execa_1.0.0.tgz"; 1216 1216 url = "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz"; 1217 - sha1 = "c6236a5bb4df6d6f15e88e7f017798216749ddd8"; 1217 + sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 1218 1218 }; 1219 1219 } 1220 1220 { ··· 1222 1222 path = fetchurl { 1223 1223 name = "expand_brackets___expand_brackets_2.1.4.tgz"; 1224 1224 url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz"; 1225 - sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; 1225 + sha1 = "t3c14xXOMPa27/D4OwQVGiJEliI="; 1226 1226 }; 1227 1227 } 1228 1228 { ··· 1230 1230 path = fetchurl { 1231 1231 name = "extend_shallow___extend_shallow_2.0.1.tgz"; 1232 1232 url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz"; 1233 - sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; 1233 + sha1 = "Ua99YUrZqfYQ6huvu5idaxxWiQ8="; 1234 1234 }; 1235 1235 } 1236 1236 { ··· 1238 1238 path = fetchurl { 1239 1239 name = "extend_shallow___extend_shallow_3.0.2.tgz"; 1240 1240 url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz"; 1241 - sha1 = "26a71aaf073b39fb2127172746131c2704028db8"; 1241 + sha1 = "Jqcarwc7OfshJxcnRhMcJwQCjbg="; 1242 1242 }; 1243 1243 } 1244 1244 { ··· 1246 1246 path = fetchurl { 1247 1247 name = "external_editor___external_editor_2.2.0.tgz"; 1248 1248 url = "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz"; 1249 - sha1 = "045511cfd8d133f3846673d1047c154e214ad3d5"; 1249 + sha512 = "bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A=="; 1250 1250 }; 1251 1251 } 1252 1252 { ··· 1254 1254 path = fetchurl { 1255 1255 name = "external_editor___external_editor_3.1.0.tgz"; 1256 1256 url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz"; 1257 - sha1 = "cb03f740befae03ea4d283caed2741a83f335495"; 1257 + sha512 = "hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew=="; 1258 1258 }; 1259 1259 } 1260 1260 { ··· 1262 1262 path = fetchurl { 1263 1263 name = "extglob___extglob_2.0.4.tgz"; 1264 1264 url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz"; 1265 - sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543"; 1265 + sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw=="; 1266 1266 }; 1267 1267 } 1268 1268 { ··· 1270 1270 path = fetchurl { 1271 1271 name = "fast_deep_equal___fast_deep_equal_1.1.0.tgz"; 1272 1272 url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz"; 1273 - sha1 = "c053477817c86b51daa853c81e059b733d023614"; 1273 + sha1 = "wFNHeBfIa1HaqFPIHgWbcz0CNhQ="; 1274 1274 }; 1275 1275 } 1276 1276 { ··· 1278 1278 path = fetchurl { 1279 1279 name = "fast_deep_equal___fast_deep_equal_3.1.1.tgz"; 1280 1280 url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz"; 1281 - sha1 = "545145077c501491e33b15ec408c294376e94ae4"; 1281 + sha512 = "8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA=="; 1282 1282 }; 1283 1283 } 1284 1284 { ··· 1286 1286 path = fetchurl { 1287 1287 name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; 1288 1288 url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 1289 - sha1 = "874bf69c6f404c2b5d99c481341399fd55892633"; 1289 + sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 1290 1290 }; 1291 1291 } 1292 1292 { ··· 1294 1294 path = fetchurl { 1295 1295 name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 1296 1296 url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 1297 - sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; 1297 + sha1 = "PYpcZog6FqMMqGQ+hR8Zuqd5eRc="; 1298 1298 }; 1299 1299 } 1300 1300 { ··· 1302 1302 path = fetchurl { 1303 1303 name = "figures___figures_1.7.0.tgz"; 1304 1304 url = "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz"; 1305 - sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"; 1305 + sha1 = "y+Hjr/zxzUS4DK3+0o3Hk6lwHS4="; 1306 1306 }; 1307 1307 } 1308 1308 { ··· 1310 1310 path = fetchurl { 1311 1311 name = "figures___figures_2.0.0.tgz"; 1312 1312 url = "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz"; 1313 - sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; 1313 + sha1 = "OrGi0qYsi/tDGgyUy3l6L84nyWI="; 1314 1314 }; 1315 1315 } 1316 1316 { ··· 1318 1318 path = fetchurl { 1319 1319 name = "file_entry_cache___file_entry_cache_2.0.0.tgz"; 1320 1320 url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz"; 1321 - sha1 = "c392990c3e684783d838b8c84a45d8a048458361"; 1321 + sha1 = "w5KZDD5oR4PYOLjISkXYoEhFg2E="; 1322 1322 }; 1323 1323 } 1324 1324 { ··· 1326 1326 path = fetchurl { 1327 1327 name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 1328 1328 url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 1329 - sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c"; 1329 + sha512 = "bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g=="; 1330 1330 }; 1331 1331 } 1332 1332 { ··· 1334 1334 path = fetchurl { 1335 1335 name = "fill_range___fill_range_4.0.0.tgz"; 1336 1336 url = "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz"; 1337 - sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; 1337 + sha1 = "1USBHUKPmOsGpj3EAtJAPDKMOPc="; 1338 1338 }; 1339 1339 } 1340 1340 { ··· 1342 1342 path = fetchurl { 1343 1343 name = "find_up___find_up_2.1.0.tgz"; 1344 1344 url = "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz"; 1345 - sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7"; 1345 + sha1 = "RdG35QbHF93UgndaK3eSCjwMV6c="; 1346 1346 }; 1347 1347 } 1348 1348 { ··· 1350 1350 path = fetchurl { 1351 1351 name = "find_up___find_up_3.0.0.tgz"; 1352 1352 url = "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz"; 1353 - sha1 = "49169f1d7993430646da61ecc5ae355c21c97b73"; 1353 + sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="; 1354 1354 }; 1355 1355 } 1356 1356 { ··· 1358 1358 path = fetchurl { 1359 1359 name = "flat_cache___flat_cache_1.3.4.tgz"; 1360 1360 url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz"; 1361 - sha1 = "2c2ef77525cc2929007dfffa1dd314aa9c9dee6f"; 1361 + sha512 = "VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg=="; 1362 1362 }; 1363 1363 } 1364 1364 { ··· 1366 1366 path = fetchurl { 1367 1367 name = "flat_cache___flat_cache_2.0.1.tgz"; 1368 1368 url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz"; 1369 - sha1 = "5d296d6f04bda44a4630a301413bdbc2ec085ec0"; 1369 + sha512 = "LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA=="; 1370 1370 }; 1371 1371 } 1372 1372 { ··· 1374 1374 path = fetchurl { 1375 1375 name = "flatted___flatted_2.0.2.tgz"; 1376 1376 url = "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz"; 1377 - sha1 = "4575b21e2bcee7434aa9be662f4b7b5f9c2b5138"; 1377 + sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; 1378 1378 }; 1379 1379 } 1380 1380 { ··· 1382 1382 path = fetchurl { 1383 1383 name = "fn_name___fn_name_2.0.1.tgz"; 1384 1384 url = "https://registry.yarnpkg.com/fn-name/-/fn-name-2.0.1.tgz"; 1385 - sha1 = "5214d7537a4d06a4a301c0cc262feb84188002e7"; 1385 + sha1 = "UhTXU3pNBqSjAcDMJi/rhBiAAuc="; 1386 1386 }; 1387 1387 } 1388 1388 { ··· 1390 1390 path = fetchurl { 1391 1391 name = "for_in___for_in_1.0.2.tgz"; 1392 1392 url = "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz"; 1393 - sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; 1393 + sha1 = "gQaNKVqBQuwKxybG4iAMMPttXoA="; 1394 1394 }; 1395 1395 } 1396 1396 { ··· 1398 1398 path = fetchurl { 1399 1399 name = "fragment_cache___fragment_cache_0.2.1.tgz"; 1400 1400 url = "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz"; 1401 - sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; 1401 + sha1 = "QpD60n8T6Jvn8zeZxrxaCr//DRk="; 1402 1402 }; 1403 1403 } 1404 1404 { ··· 1406 1406 path = fetchurl { 1407 1407 name = "fs.realpath___fs.realpath_1.0.0.tgz"; 1408 1408 url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; 1409 - sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 1409 + sha1 = "FQStJSMVjKpA20onh8sBQRmU6k8="; 1410 1410 }; 1411 1411 } 1412 1412 { ··· 1414 1414 path = fetchurl { 1415 1415 name = "function_bind___function_bind_1.1.1.tgz"; 1416 1416 url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; 1417 - sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d"; 1417 + sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 1418 1418 }; 1419 1419 } 1420 1420 { ··· 1422 1422 path = fetchurl { 1423 1423 name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; 1424 1424 url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; 1425 - sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; 1425 + sha1 = "GwqzvVU7Kg1jmdKcDj6gslIHgyc="; 1426 1426 }; 1427 1427 } 1428 1428 { ··· 1430 1430 path = fetchurl { 1431 1431 name = "g_status___g_status_2.0.2.tgz"; 1432 1432 url = "https://registry.yarnpkg.com/g-status/-/g-status-2.0.2.tgz"; 1433 - sha1 = "270fd32119e8fc9496f066fe5fe88e0a6bc78b97"; 1433 + sha512 = "kQoE9qH+T1AHKgSSD0Hkv98bobE90ILQcXAF4wvGgsr7uFqNvwmh8j+Lq3l0RVt3E3HjSbv2B9biEGcEtpHLCA=="; 1434 1434 }; 1435 1435 } 1436 1436 { ··· 1438 1438 path = fetchurl { 1439 1439 name = "get_caller_file___get_caller_file_1.0.3.tgz"; 1440 1440 url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz"; 1441 - sha1 = "f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"; 1441 + sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w=="; 1442 1442 }; 1443 1443 } 1444 1444 { ··· 1446 1446 path = fetchurl { 1447 1447 name = "get_own_enumerable_property_symbols___get_own_enumerable_property_symbols_3.0.2.tgz"; 1448 1448 url = "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz"; 1449 - sha1 = "b5fde77f22cbe35f390b4e089922c50bce6ef664"; 1449 + sha512 = "I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g=="; 1450 1450 }; 1451 1451 } 1452 1452 { ··· 1454 1454 path = fetchurl { 1455 1455 name = "get_stdin___get_stdin_5.0.1.tgz"; 1456 1456 url = "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz"; 1457 - sha1 = "122e161591e21ff4c52530305693f20e6393a398"; 1457 + sha1 = "Ei4WFZHiH/TFJTAwVpPyDmOTo5g="; 1458 1458 }; 1459 1459 } 1460 1460 { ··· 1462 1462 path = fetchurl { 1463 1463 name = "get_stdin___get_stdin_6.0.0.tgz"; 1464 1464 url = "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz"; 1465 - sha1 = "9e09bf712b360ab9225e812048f71fde9c89657b"; 1465 + sha512 = "jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g=="; 1466 1466 }; 1467 1467 } 1468 1468 { ··· 1470 1470 path = fetchurl { 1471 1471 name = "get_stream___get_stream_3.0.0.tgz"; 1472 1472 url = "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz"; 1473 - sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14"; 1473 + sha1 = "jpQ9E1jcN1VQVOy+LtsFqhdO3hQ="; 1474 1474 }; 1475 1475 } 1476 1476 { ··· 1478 1478 path = fetchurl { 1479 1479 name = "get_stream___get_stream_4.1.0.tgz"; 1480 1480 url = "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz"; 1481 - sha1 = "c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"; 1481 + sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w=="; 1482 1482 }; 1483 1483 } 1484 1484 { ··· 1486 1486 path = fetchurl { 1487 1487 name = "get_value___get_value_2.0.6.tgz"; 1488 1488 url = "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz"; 1489 - sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; 1489 + sha1 = "3BXKHGcjh8p2vTesCjlbogQqLCg="; 1490 1490 }; 1491 1491 } 1492 1492 { ··· 1494 1494 path = fetchurl { 1495 1495 name = "glob___glob_7.1.6.tgz"; 1496 1496 url = "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz"; 1497 - sha1 = "141f33b81a7c2492e125594307480c46679278a6"; 1497 + sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 1498 1498 }; 1499 1499 } 1500 1500 { ··· 1502 1502 path = fetchurl { 1503 1503 name = "glob___glob_7.0.6.tgz"; 1504 1504 url = "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz"; 1505 - sha1 = "211bafaf49e525b8cd93260d14ab136152b3f57a"; 1505 + sha1 = "IRuvr0nlJbjNkyYNFKsTYVKz9Xo="; 1506 1506 }; 1507 1507 } 1508 1508 { ··· 1510 1510 path = fetchurl { 1511 1511 name = "globals___globals_11.12.0.tgz"; 1512 1512 url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz"; 1513 - sha1 = "ab8795338868a0babd8525758018c2a7eb95c42e"; 1513 + sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 1514 1514 }; 1515 1515 } 1516 1516 { ··· 1518 1518 path = fetchurl { 1519 1519 name = "globby___globby_6.1.0.tgz"; 1520 1520 url = "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz"; 1521 - sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c"; 1521 + sha1 = "9abXDoOV4hyFj7BInWTfAkJNUGw="; 1522 1522 }; 1523 1523 } 1524 1524 { ··· 1526 1526 path = fetchurl { 1527 1527 name = "graceful_fs___graceful_fs_4.2.4.tgz"; 1528 1528 url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz"; 1529 - sha1 = "2256bde14d3632958c465ebc96dc467ca07a29fb"; 1529 + sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="; 1530 1530 }; 1531 1531 } 1532 1532 { ··· 1534 1534 path = fetchurl { 1535 1535 name = "has_ansi___has_ansi_2.0.0.tgz"; 1536 1536 url = "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz"; 1537 - sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; 1537 + sha1 = "NPUEnOHs3ysGSa8+8k5F7TVBbZE="; 1538 1538 }; 1539 1539 } 1540 1540 { ··· 1542 1542 path = fetchurl { 1543 1543 name = "has_flag___has_flag_2.0.0.tgz"; 1544 1544 url = "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz"; 1545 - sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51"; 1545 + sha1 = "6CB68cx7MNRGzHC3NLXovhj4jVE="; 1546 1546 }; 1547 1547 } 1548 1548 { ··· 1550 1550 path = fetchurl { 1551 1551 name = "has_flag___has_flag_3.0.0.tgz"; 1552 1552 url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; 1553 - sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 1553 + sha1 = "tdRU3CGZriJWmfNGfloH87lVuv0="; 1554 1554 }; 1555 1555 } 1556 1556 { ··· 1558 1558 path = fetchurl { 1559 1559 name = "has_symbols___has_symbols_1.0.1.tgz"; 1560 1560 url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz"; 1561 - sha1 = "9f5214758a44196c406d9bd76cebf81ec2dd31e8"; 1561 + sha512 = "PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg=="; 1562 1562 }; 1563 1563 } 1564 1564 { ··· 1566 1566 path = fetchurl { 1567 1567 name = "has_value___has_value_0.3.1.tgz"; 1568 1568 url = "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz"; 1569 - sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; 1569 + sha1 = "ex9YutpiyoJ+wKIHgCVlSEWZXh8="; 1570 1570 }; 1571 1571 } 1572 1572 { ··· 1574 1574 path = fetchurl { 1575 1575 name = "has_value___has_value_1.0.0.tgz"; 1576 1576 url = "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz"; 1577 - sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177"; 1577 + sha1 = "GLKB2lhbHFxR3vJMkw7SmgvmsXc="; 1578 1578 }; 1579 1579 } 1580 1580 { ··· 1582 1582 path = fetchurl { 1583 1583 name = "has_values___has_values_0.1.4.tgz"; 1584 1584 url = "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz"; 1585 - sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; 1585 + sha1 = "bWHeldkd/Km5oCCJrThL/49it3E="; 1586 1586 }; 1587 1587 } 1588 1588 { ··· 1590 1590 path = fetchurl { 1591 1591 name = "has_values___has_values_1.0.0.tgz"; 1592 1592 url = "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz"; 1593 - sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; 1593 + sha1 = "lbC2P+whRmGab+V/51Yo1aOe/k8="; 1594 1594 }; 1595 1595 } 1596 1596 { ··· 1598 1598 path = fetchurl { 1599 1599 name = "has___has_1.0.3.tgz"; 1600 1600 url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; 1601 - sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796"; 1601 + sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 1602 1602 }; 1603 1603 } 1604 1604 { ··· 1606 1606 path = fetchurl { 1607 1607 name = "hosted_git_info___hosted_git_info_2.8.8.tgz"; 1608 1608 url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz"; 1609 - sha1 = "7539bd4bc1e0e0a895815a2e0262420b12858488"; 1609 + sha512 = "f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg=="; 1610 1610 }; 1611 1611 } 1612 1612 { ··· 1614 1614 path = fetchurl { 1615 1615 name = "husky___husky_1.3.1.tgz"; 1616 1616 url = "https://registry.yarnpkg.com/husky/-/husky-1.3.1.tgz"; 1617 - sha1 = "26823e399300388ca2afff11cfa8a86b0033fae0"; 1617 + sha512 = "86U6sVVVf4b5NYSZ0yvv88dRgBSSXXmHaiq5pP4KDj5JVzdwKgBjEtUPOm8hcoytezFwbU+7gotXNhpHdystlg=="; 1618 1618 }; 1619 1619 } 1620 1620 { ··· 1622 1622 path = fetchurl { 1623 1623 name = "iconv_lite___iconv_lite_0.4.24.tgz"; 1624 1624 url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"; 1625 - sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b"; 1625 + sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 1626 1626 }; 1627 1627 } 1628 1628 { ··· 1630 1630 path = fetchurl { 1631 1631 name = "ignore___ignore_3.3.10.tgz"; 1632 1632 url = "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz"; 1633 - sha1 = "0a97fb876986e8081c631160f8f9f389157f0043"; 1633 + sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug=="; 1634 1634 }; 1635 1635 } 1636 1636 { ··· 1638 1638 path = fetchurl { 1639 1639 name = "ignore___ignore_4.0.6.tgz"; 1640 1640 url = "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz"; 1641 - sha1 = "750e3db5862087b4737ebac8207ffd1ef27b25fc"; 1641 + sha512 = "cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="; 1642 1642 }; 1643 1643 } 1644 1644 { ··· 1646 1646 path = fetchurl { 1647 1647 name = "ignore___ignore_5.1.4.tgz"; 1648 1648 url = "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz"; 1649 - sha1 = "84b7b3dbe64552b6ef0eca99f6743dbec6d97adf"; 1649 + sha512 = "MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A=="; 1650 1650 }; 1651 1651 } 1652 1652 { ··· 1654 1654 path = fetchurl { 1655 1655 name = "import_fresh___import_fresh_2.0.0.tgz"; 1656 1656 url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz"; 1657 - sha1 = "d81355c15612d386c61f9ddd3922d4304822a546"; 1657 + sha1 = "2BNVwVYS04bGH53dOSLUMEgipUY="; 1658 1658 }; 1659 1659 } 1660 1660 { ··· 1662 1662 path = fetchurl { 1663 1663 name = "import_fresh___import_fresh_3.2.1.tgz"; 1664 1664 url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz"; 1665 - sha1 = "633ff618506e793af5ac91bf48b72677e15cbe66"; 1665 + sha512 = "6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ=="; 1666 1666 }; 1667 1667 } 1668 1668 { ··· 1670 1670 path = fetchurl { 1671 1671 name = "imurmurhash___imurmurhash_0.1.4.tgz"; 1672 1672 url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; 1673 - sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; 1673 + sha1 = "khi5srkoojixPcT7a21XbyMUU+o="; 1674 1674 }; 1675 1675 } 1676 1676 { ··· 1678 1678 path = fetchurl { 1679 1679 name = "indent_string___indent_string_3.2.0.tgz"; 1680 1680 url = "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz"; 1681 - sha1 = "4a5fd6d27cc332f37e5419a504dbb837105c9289"; 1681 + sha1 = "Sl/W0nzDMvN+VBmlBNu4NxBckok="; 1682 1682 }; 1683 1683 } 1684 1684 { ··· 1686 1686 path = fetchurl { 1687 1687 name = "inflight___inflight_1.0.6.tgz"; 1688 1688 url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; 1689 - sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 1689 + sha1 = "Sb1jMdfQLQwJvJEKEHW6gWW1bfk="; 1690 1690 }; 1691 1691 } 1692 1692 { ··· 1694 1694 path = fetchurl { 1695 1695 name = "inherits___inherits_2.0.4.tgz"; 1696 1696 url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; 1697 - sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c"; 1697 + sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 1698 1698 }; 1699 1699 } 1700 1700 { ··· 1702 1702 path = fetchurl { 1703 1703 name = "inquirer___inquirer_3.3.0.tgz"; 1704 1704 url = "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz"; 1705 - sha1 = "9dd2f2ad765dcab1ff0443b491442a20ba227dc9"; 1705 + sha512 = "h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ=="; 1706 1706 }; 1707 1707 } 1708 1708 { ··· 1710 1710 path = fetchurl { 1711 1711 name = "inquirer___inquirer_6.5.2.tgz"; 1712 1712 url = "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz"; 1713 - sha1 = "ad50942375d036d327ff528c08bd5fab089928ca"; 1713 + sha512 = "cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ=="; 1714 1714 }; 1715 1715 } 1716 1716 { ··· 1718 1718 path = fetchurl { 1719 1719 name = "internal_slot___internal_slot_1.0.2.tgz"; 1720 1720 url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz"; 1721 - sha1 = "9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3"; 1721 + sha512 = "2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g=="; 1722 1722 }; 1723 1723 } 1724 1724 { ··· 1726 1726 path = fetchurl { 1727 1727 name = "invert_kv___invert_kv_1.0.0.tgz"; 1728 1728 url = "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz"; 1729 - sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; 1729 + sha1 = "EEqOSqym09jNFXqO+L+rLXo//bY="; 1730 1730 }; 1731 1731 } 1732 1732 { ··· 1734 1734 path = fetchurl { 1735 1735 name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; 1736 1736 url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; 1737 - sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; 1737 + sha1 = "qeEss66Nh2cn7u84Q/igiXtcmNY="; 1738 1738 }; 1739 1739 } 1740 1740 { ··· 1742 1742 path = fetchurl { 1743 1743 name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; 1744 1744 url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; 1745 - sha1 = "169c2f6d3df1f992618072365c9b0ea1f6878656"; 1745 + sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ=="; 1746 1746 }; 1747 1747 } 1748 1748 { ··· 1750 1750 path = fetchurl { 1751 1751 name = "is_arguments___is_arguments_1.0.4.tgz"; 1752 1752 url = "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz"; 1753 - sha1 = "3faf966c7cba0ff437fb31f6250082fcf0448cf3"; 1753 + sha512 = "xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA=="; 1754 1754 }; 1755 1755 } 1756 1756 { ··· 1758 1758 path = fetchurl { 1759 1759 name = "is_arrayish___is_arrayish_0.2.1.tgz"; 1760 1760 url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; 1761 - sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; 1761 + sha1 = "d8mYQFJ6qOyxqLppe4BkWnqSap0="; 1762 1762 }; 1763 1763 } 1764 1764 { ··· 1766 1766 path = fetchurl { 1767 1767 name = "is_buffer___is_buffer_1.1.6.tgz"; 1768 1768 url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz"; 1769 - sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"; 1769 + sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; 1770 1770 }; 1771 1771 } 1772 1772 { ··· 1774 1774 path = fetchurl { 1775 1775 name = "is_callable___is_callable_1.1.5.tgz"; 1776 1776 url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz"; 1777 - sha1 = "f7e46b596890456db74e7f6e976cb3273d06faab"; 1777 + sha512 = "ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q=="; 1778 1778 }; 1779 1779 } 1780 1780 { ··· 1782 1782 path = fetchurl { 1783 1783 name = "is_ci___is_ci_2.0.0.tgz"; 1784 1784 url = "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz"; 1785 - sha1 = "6bc6334181810e04b5c22b3d589fdca55026404c"; 1785 + sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="; 1786 1786 }; 1787 1787 } 1788 1788 { ··· 1790 1790 path = fetchurl { 1791 1791 name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; 1792 1792 url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; 1793 - sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; 1793 + sha1 = "C17mSDiOLIYCgueT8YVv7D8wG1Y="; 1794 1794 }; 1795 1795 } 1796 1796 { ··· 1798 1798 path = fetchurl { 1799 1799 name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; 1800 1800 url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; 1801 - sha1 = "d84876321d0e7add03990406abbbbd36ba9268c7"; 1801 + sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; 1802 1802 }; 1803 1803 } 1804 1804 { ··· 1806 1806 path = fetchurl { 1807 1807 name = "is_date_object___is_date_object_1.0.2.tgz"; 1808 1808 url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz"; 1809 - sha1 = "bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"; 1809 + sha512 = "USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g=="; 1810 1810 }; 1811 1811 } 1812 1812 { ··· 1814 1814 path = fetchurl { 1815 1815 name = "is_descriptor___is_descriptor_0.1.6.tgz"; 1816 1816 url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz"; 1817 - sha1 = "366d8240dde487ca51823b1ab9f07a10a78251ca"; 1817 + sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg=="; 1818 1818 }; 1819 1819 } 1820 1820 { ··· 1822 1822 path = fetchurl { 1823 1823 name = "is_descriptor___is_descriptor_1.0.2.tgz"; 1824 1824 url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz"; 1825 - sha1 = "3b159746a66604b04f8c81524ba365c5f14d86ec"; 1825 + sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="; 1826 1826 }; 1827 1827 } 1828 1828 { ··· 1830 1830 path = fetchurl { 1831 1831 name = "is_directory___is_directory_0.3.1.tgz"; 1832 1832 url = "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz"; 1833 - sha1 = "61339b6f2475fc772fd9c9d83f5c8575dc154ae1"; 1833 + sha1 = "YTObbyR1/Hcv2cnYP1yFddwVSuE="; 1834 1834 }; 1835 1835 } 1836 1836 { ··· 1838 1838 path = fetchurl { 1839 1839 name = "is_extendable___is_extendable_0.1.1.tgz"; 1840 1840 url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz"; 1841 - sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; 1841 + sha1 = "YrEQ4omkcUGOPsNqYX1HLjAd/Ik="; 1842 1842 }; 1843 1843 } 1844 1844 { ··· 1846 1846 path = fetchurl { 1847 1847 name = "is_extendable___is_extendable_1.0.1.tgz"; 1848 1848 url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz"; 1849 - sha1 = "a7470f9e426733d81bd81e1155264e3a3507cab4"; 1849 + sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA=="; 1850 1850 }; 1851 1851 } 1852 1852 { ··· 1854 1854 path = fetchurl { 1855 1855 name = "is_extglob___is_extglob_2.1.1.tgz"; 1856 1856 url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz"; 1857 - sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; 1857 + sha1 = "qIwCU1eR8C7TfHahueqXc8gz+MI="; 1858 1858 }; 1859 1859 } 1860 1860 { ··· 1862 1862 path = fetchurl { 1863 1863 name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; 1864 1864 url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; 1865 - sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; 1865 + sha1 = "754xOG8DGn8NZDr4L95QxFfvAMs="; 1866 1866 }; 1867 1867 } 1868 1868 { ··· 1870 1870 path = fetchurl { 1871 1871 name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; 1872 1872 url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 1873 - sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 1873 + sha1 = "o7MKXE8ZkYMWeqq5O+764937ZU8="; 1874 1874 }; 1875 1875 } 1876 1876 { ··· 1878 1878 path = fetchurl { 1879 1879 name = "is_glob___is_glob_4.0.1.tgz"; 1880 1880 url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz"; 1881 - sha1 = "7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"; 1881 + sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="; 1882 1882 }; 1883 1883 } 1884 1884 { ··· 1886 1886 path = fetchurl { 1887 1887 name = "is_number___is_number_3.0.0.tgz"; 1888 1888 url = "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz"; 1889 - sha1 = "24fd6201a4782cf50561c810276afc7d12d71195"; 1889 + sha1 = "JP1iAaR4LPUFYcgQJ2r8fRLXEZU="; 1890 1890 }; 1891 1891 } 1892 1892 { ··· 1894 1894 path = fetchurl { 1895 1895 name = "is_obj___is_obj_1.0.1.tgz"; 1896 1896 url = "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz"; 1897 - sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; 1897 + sha1 = "PkcprB9f3gJc19g6iW2rn09n2w8="; 1898 1898 }; 1899 1899 } 1900 1900 { ··· 1902 1902 path = fetchurl { 1903 1903 name = "is_observable___is_observable_1.1.0.tgz"; 1904 1904 url = "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz"; 1905 - sha1 = "b3e986c8f44de950867cab5403f5a3465005975e"; 1905 + sha512 = "NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA=="; 1906 1906 }; 1907 1907 } 1908 1908 { ··· 1910 1910 path = fetchurl { 1911 1911 name = "is_path_cwd___is_path_cwd_1.0.0.tgz"; 1912 1912 url = "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz"; 1913 - sha1 = "d225ec23132e89edd38fda767472e62e65f1106d"; 1913 + sha1 = "0iXsIxMuie3Tj9p2dHLmLmXxEG0="; 1914 1914 }; 1915 1915 } 1916 1916 { ··· 1918 1918 path = fetchurl { 1919 1919 name = "is_path_in_cwd___is_path_in_cwd_1.0.1.tgz"; 1920 1920 url = "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz"; 1921 - sha1 = "5ac48b345ef675339bd6c7a48a912110b241cf52"; 1921 + sha512 = "FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ=="; 1922 1922 }; 1923 1923 } 1924 1924 { ··· 1926 1926 path = fetchurl { 1927 1927 name = "is_path_inside___is_path_inside_1.0.1.tgz"; 1928 1928 url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz"; 1929 - sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"; 1929 + sha1 = "jvW33lBDej/cprToZe96pVy0gDY="; 1930 1930 }; 1931 1931 } 1932 1932 { ··· 1934 1934 path = fetchurl { 1935 1935 name = "is_plain_object___is_plain_object_2.0.4.tgz"; 1936 1936 url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz"; 1937 - sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677"; 1937 + sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; 1938 1938 }; 1939 1939 } 1940 1940 { ··· 1942 1942 path = fetchurl { 1943 1943 name = "is_promise___is_promise_2.2.2.tgz"; 1944 1944 url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz"; 1945 - sha1 = "39ab959ccbf9a774cf079f7b40c7a26f763135f1"; 1945 + sha512 = "+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ=="; 1946 1946 }; 1947 1947 } 1948 1948 { ··· 1950 1950 path = fetchurl { 1951 1951 name = "is_regex___is_regex_1.0.5.tgz"; 1952 1952 url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz"; 1953 - sha1 = "39d589a358bf18967f726967120b8fc1aed74eae"; 1953 + sha512 = "vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ=="; 1954 1954 }; 1955 1955 } 1956 1956 { ··· 1958 1958 path = fetchurl { 1959 1959 name = "is_regexp___is_regexp_1.0.0.tgz"; 1960 1960 url = "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz"; 1961 - sha1 = "fd2d883545c46bac5a633e7b9a09e87fa2cb5069"; 1961 + sha1 = "/S2INUXEa6xaYz57mgnof6LLUGk="; 1962 1962 }; 1963 1963 } 1964 1964 { ··· 1966 1966 path = fetchurl { 1967 1967 name = "is_resolvable___is_resolvable_1.1.0.tgz"; 1968 1968 url = "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz"; 1969 - sha1 = "fb18f87ce1feb925169c9a407c19318a3206ed88"; 1969 + sha512 = "qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg=="; 1970 1970 }; 1971 1971 } 1972 1972 { ··· 1974 1974 path = fetchurl { 1975 1975 name = "is_stream___is_stream_1.1.0.tgz"; 1976 1976 url = "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz"; 1977 - sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; 1977 + sha1 = "EtSj3U5o4Lec6428hBc66A2RykQ="; 1978 1978 }; 1979 1979 } 1980 1980 { ··· 1982 1982 path = fetchurl { 1983 1983 name = "is_string___is_string_1.0.5.tgz"; 1984 1984 url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz"; 1985 - sha1 = "40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"; 1985 + sha512 = "buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ=="; 1986 1986 }; 1987 1987 } 1988 1988 { ··· 1990 1990 path = fetchurl { 1991 1991 name = "is_symbol___is_symbol_1.0.3.tgz"; 1992 1992 url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz"; 1993 - sha1 = "38e1014b9e6329be0de9d24a414fd7441ec61937"; 1993 + sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ=="; 1994 1994 }; 1995 1995 } 1996 1996 { ··· 1998 1998 path = fetchurl { 1999 1999 name = "is_windows___is_windows_1.0.2.tgz"; 2000 2000 url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz"; 2001 - sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d"; 2001 + sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="; 2002 2002 }; 2003 2003 } 2004 2004 { ··· 2006 2006 path = fetchurl { 2007 2007 name = "isarray___isarray_1.0.0.tgz"; 2008 2008 url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; 2009 - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 2009 + sha1 = "u5NdSFgsuhaMBoNJV6VKPgcSTxE="; 2010 2010 }; 2011 2011 } 2012 2012 { ··· 2014 2014 path = fetchurl { 2015 2015 name = "isexe___isexe_2.0.0.tgz"; 2016 2016 url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz"; 2017 - sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 2017 + sha1 = "6PvzdNxVb/iUehDcsFctYz8s+hA="; 2018 2018 }; 2019 2019 } 2020 2020 { ··· 2022 2022 path = fetchurl { 2023 2023 name = "isobject___isobject_2.1.0.tgz"; 2024 2024 url = "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz"; 2025 - sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89"; 2025 + sha1 = "8GVWEJaj8dou9GJy+BXIQNh+DIk="; 2026 2026 }; 2027 2027 } 2028 2028 { ··· 2030 2030 path = fetchurl { 2031 2031 name = "isobject___isobject_3.0.1.tgz"; 2032 2032 url = "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz"; 2033 - sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; 2033 + sha1 = "TkMekrEalzFjaqH5yNHMvP2reN8="; 2034 2034 }; 2035 2035 } 2036 2036 { ··· 2038 2038 path = fetchurl { 2039 2039 name = "js_tokens___js_tokens_4.0.0.tgz"; 2040 2040 url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; 2041 - sha1 = "19203fb59991df98e3a287050d4647cdeaf32499"; 2041 + sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 2042 2042 }; 2043 2043 } 2044 2044 { ··· 2046 2046 path = fetchurl { 2047 2047 name = "js_tokens___js_tokens_3.0.2.tgz"; 2048 2048 url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz"; 2049 - sha1 = "9866df395102130e38f7f996bceb65443209c25b"; 2049 + sha1 = "mGbfOVECEw449/mWvOtlRDIJwls="; 2050 2050 }; 2051 2051 } 2052 2052 { ··· 2054 2054 path = fetchurl { 2055 2055 name = "js_yaml___js_yaml_3.13.1.tgz"; 2056 2056 url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz"; 2057 - sha1 = "aff151b30bfdfa8e49e05da22e7415e9dfa37847"; 2057 + sha512 = "YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw=="; 2058 2058 }; 2059 2059 } 2060 2060 { ··· 2062 2062 path = fetchurl { 2063 2063 name = "jsesc___jsesc_2.5.2.tgz"; 2064 2064 url = "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz"; 2065 - sha1 = "80564d2e483dacf6e8ef209650a67df3f0c283a4"; 2065 + sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; 2066 2066 }; 2067 2067 } 2068 2068 { ··· 2070 2070 path = fetchurl { 2071 2071 name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; 2072 2072 url = "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"; 2073 - sha1 = "bb867cfb3450e69107c131d1c514bab3dc8bcaa9"; 2073 + sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="; 2074 2074 }; 2075 2075 } 2076 2076 { ··· 2078 2078 path = fetchurl { 2079 2079 name = "json_schema_traverse___json_schema_traverse_0.3.1.tgz"; 2080 2080 url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz"; 2081 - sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340"; 2081 + sha1 = "NJptRMU6Ud6JtAgFxdXlm0F9M0A="; 2082 2082 }; 2083 2083 } 2084 2084 { ··· 2086 2086 path = fetchurl { 2087 2087 name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; 2088 2088 url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; 2089 - sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660"; 2089 + sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 2090 2090 }; 2091 2091 } 2092 2092 { ··· 2094 2094 path = fetchurl { 2095 2095 name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; 2096 2096 url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 2097 - sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; 2097 + sha1 = "nbe1lJatPzz+8wp1FC0tkwrXJlE="; 2098 2098 }; 2099 2099 } 2100 2100 { ··· 2102 2102 path = fetchurl { 2103 2103 name = "jsx_ast_utils___jsx_ast_utils_2.2.3.tgz"; 2104 2104 url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz"; 2105 - sha1 = "8a9364e402448a3ce7f14d357738310d9248054f"; 2105 + sha512 = "EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA=="; 2106 2106 }; 2107 2107 } 2108 2108 { ··· 2110 2110 path = fetchurl { 2111 2111 name = "kind_of___kind_of_3.2.2.tgz"; 2112 2112 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz"; 2113 - sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; 2113 + sha1 = "MeohpzS6ubuw8yRm2JOupR5KPGQ="; 2114 2114 }; 2115 2115 } 2116 2116 { ··· 2118 2118 path = fetchurl { 2119 2119 name = "kind_of___kind_of_4.0.0.tgz"; 2120 2120 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz"; 2121 - sha1 = "20813df3d712928b207378691a45066fae72dd57"; 2121 + sha1 = "IIE989cSkosgc3hpGkUGb65y3Vc="; 2122 2122 }; 2123 2123 } 2124 2124 { ··· 2126 2126 path = fetchurl { 2127 2127 name = "kind_of___kind_of_5.1.0.tgz"; 2128 2128 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz"; 2129 - sha1 = "729c91e2d857b7a419a1f9aa65685c4c33f5845d"; 2129 + sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="; 2130 2130 }; 2131 2131 } 2132 2132 { ··· 2134 2134 path = fetchurl { 2135 2135 name = "kind_of___kind_of_6.0.3.tgz"; 2136 2136 url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz"; 2137 - sha1 = "07c05034a6c349fa06e24fa35aa76db4580ce4dd"; 2137 + sha512 = "dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="; 2138 2138 }; 2139 2139 } 2140 2140 { ··· 2142 2142 path = fetchurl { 2143 2143 name = "lcid___lcid_1.0.0.tgz"; 2144 2144 url = "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz"; 2145 - sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; 2145 + sha1 = "MIrMr6C8SDo4Z7S28rlQYlHRuDU="; 2146 2146 }; 2147 2147 } 2148 2148 { ··· 2150 2150 path = fetchurl { 2151 2151 name = "levn___levn_0.3.0.tgz"; 2152 2152 url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; 2153 - sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; 2153 + sha1 = "OwmSTt+fCDwEkP3UwLxEIeBHZO4="; 2154 2154 }; 2155 2155 } 2156 2156 { ··· 2158 2158 path = fetchurl { 2159 2159 name = "lint_staged___lint_staged_8.2.1.tgz"; 2160 2160 url = "https://registry.yarnpkg.com/lint-staged/-/lint-staged-8.2.1.tgz"; 2161 - sha1 = "752fcf222d9d28f323a3b80f1e668f3654ff221f"; 2161 + sha512 = "n0tDGR/rTCgQNwXnUf/eWIpPNddGWxC32ANTNYsj2k02iZb7Cz5ox2tytwBu+2r0zDXMEMKw7Y9OD/qsav561A=="; 2162 2162 }; 2163 2163 } 2164 2164 { ··· 2166 2166 path = fetchurl { 2167 2167 name = "listr_silent_renderer___listr_silent_renderer_1.1.1.tgz"; 2168 2168 url = "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz"; 2169 - sha1 = "924b5a3757153770bf1a8e3fbf74b8bbf3f9242e"; 2169 + sha1 = "kktaN1cVN3C/Go4/v3S4u/P5JC4="; 2170 2170 }; 2171 2171 } 2172 2172 { ··· 2174 2174 path = fetchurl { 2175 2175 name = "listr_update_renderer___listr_update_renderer_0.5.0.tgz"; 2176 2176 url = "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz"; 2177 - sha1 = "4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2"; 2177 + sha512 = "tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA=="; 2178 2178 }; 2179 2179 } 2180 2180 { ··· 2182 2182 path = fetchurl { 2183 2183 name = "listr_verbose_renderer___listr_verbose_renderer_0.5.0.tgz"; 2184 2184 url = "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz"; 2185 - sha1 = "f1132167535ea4c1261102b9f28dac7cba1e03db"; 2185 + sha512 = "04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw=="; 2186 2186 }; 2187 2187 } 2188 2188 { ··· 2190 2190 path = fetchurl { 2191 2191 name = "listr___listr_0.14.3.tgz"; 2192 2192 url = "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz"; 2193 - sha1 = "2fea909604e434be464c50bddba0d496928fa586"; 2193 + sha512 = "RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA=="; 2194 2194 }; 2195 2195 } 2196 2196 { ··· 2198 2198 path = fetchurl { 2199 2199 name = "load_json_file___load_json_file_2.0.0.tgz"; 2200 2200 url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz"; 2201 - sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; 2201 + sha1 = "eUfkIUmvgNaWy/eXvKq8/h/inKg="; 2202 2202 }; 2203 2203 } 2204 2204 { ··· 2206 2206 path = fetchurl { 2207 2207 name = "locate_path___locate_path_2.0.0.tgz"; 2208 2208 url = "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz"; 2209 - sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"; 2209 + sha1 = "K1aLJl7slExtnA3pw9u7ygNUzY4="; 2210 2210 }; 2211 2211 } 2212 2212 { ··· 2214 2214 path = fetchurl { 2215 2215 name = "locate_path___locate_path_3.0.0.tgz"; 2216 2216 url = "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz"; 2217 - sha1 = "dbec3b3ab759758071b58fe59fc41871af21400e"; 2217 + sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="; 2218 2218 }; 2219 2219 } 2220 2220 { ··· 2222 2222 path = fetchurl { 2223 2223 name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; 2224 2224 url = "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; 2225 - sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; 2225 + sha1 = "vMbEmkKihA7Zl/Mj6tpezRguC/4="; 2226 2226 }; 2227 2227 } 2228 2228 { ··· 2230 2230 path = fetchurl { 2231 2231 name = "lodash.merge___lodash.merge_4.6.2.tgz"; 2232 2232 url = "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz"; 2233 - sha1 = "558aa53b43b661e1925a0afdfa36a9a1085fe57a"; 2233 + sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 2234 2234 }; 2235 2235 } 2236 2236 { ··· 2238 2238 path = fetchurl { 2239 2239 name = "lodash.unescape___lodash.unescape_4.0.1.tgz"; 2240 2240 url = "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz"; 2241 - sha1 = "bf2249886ce514cda112fae9218cdc065211fc9c"; 2241 + sha1 = "vyJJiGzlFM2hEvrpIYzcBlIR/Jw="; 2242 2242 }; 2243 2243 } 2244 2244 { ··· 2246 2246 path = fetchurl { 2247 2247 name = "lodash___lodash_4.17.15.tgz"; 2248 2248 url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz"; 2249 - sha1 = "b447f6670a0455bbfeedd11392eff330ea097548"; 2249 + sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; 2250 2250 }; 2251 2251 } 2252 2252 { ··· 2254 2254 path = fetchurl { 2255 2255 name = "log_symbols___log_symbols_1.0.2.tgz"; 2256 2256 url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz"; 2257 - sha1 = "376ff7b58ea3086a0f09facc74617eca501e1a18"; 2257 + sha1 = "N2/3tY6jCGoPCfrMdGF+ylAeGhg="; 2258 2258 }; 2259 2259 } 2260 2260 { ··· 2262 2262 path = fetchurl { 2263 2263 name = "log_symbols___log_symbols_2.2.0.tgz"; 2264 2264 url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz"; 2265 - sha1 = "5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"; 2265 + sha512 = "VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg=="; 2266 2266 }; 2267 2267 } 2268 2268 { ··· 2270 2270 path = fetchurl { 2271 2271 name = "log_update___log_update_2.3.0.tgz"; 2272 2272 url = "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz"; 2273 - sha1 = "88328fd7d1ce7938b29283746f0b1bc126b24708"; 2273 + sha1 = "iDKP19HOeTiykoN0bwsbwSayRwg="; 2274 2274 }; 2275 2275 } 2276 2276 { ··· 2278 2278 path = fetchurl { 2279 2279 name = "loglevel_colored_level_prefix___loglevel_colored_level_prefix_1.0.0.tgz"; 2280 2280 url = "https://registry.yarnpkg.com/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz"; 2281 - sha1 = "6a40218fdc7ae15fc76c3d0f3e676c465388603e"; 2281 + sha1 = "akAhj9x64V/HbD0PPmdsRlOIYD4="; 2282 2282 }; 2283 2283 } 2284 2284 { ··· 2286 2286 path = fetchurl { 2287 2287 name = "loglevel___loglevel_1.6.8.tgz"; 2288 2288 url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.8.tgz"; 2289 - sha1 = "8a25fb75d092230ecd4457270d80b54e28011171"; 2289 + sha512 = "bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA=="; 2290 2290 }; 2291 2291 } 2292 2292 { ··· 2294 2294 path = fetchurl { 2295 2295 name = "loose_envify___loose_envify_1.4.0.tgz"; 2296 2296 url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"; 2297 - sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf"; 2297 + sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; 2298 2298 }; 2299 2299 } 2300 2300 { ··· 2302 2302 path = fetchurl { 2303 2303 name = "lru_cache___lru_cache_4.1.5.tgz"; 2304 2304 url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz"; 2305 - sha1 = "8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"; 2305 + sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="; 2306 2306 }; 2307 2307 } 2308 2308 { ··· 2310 2310 path = fetchurl { 2311 2311 name = "make_plural___make_plural_4.3.0.tgz"; 2312 2312 url = "https://registry.yarnpkg.com/make-plural/-/make-plural-4.3.0.tgz"; 2313 - sha1 = "f23de08efdb0cac2e0c9ba9f315b0dff6b4c2735"; 2313 + sha512 = "xTYd4JVHpSCW+aqDof6w/MebaMVNTVYBZhbB/vi513xXdiPT92JMVCo0Jq8W2UZnzYRFeVbQiQ+I25l13JuKvA=="; 2314 2314 }; 2315 2315 } 2316 2316 { ··· 2318 2318 path = fetchurl { 2319 2319 name = "map_cache___map_cache_0.2.2.tgz"; 2320 2320 url = "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz"; 2321 - sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; 2321 + sha1 = "wyq9C9ZSXZsFFkW7TyasXcmKDb8="; 2322 2322 }; 2323 2323 } 2324 2324 { ··· 2326 2326 path = fetchurl { 2327 2327 name = "map_obj___map_obj_2.0.0.tgz"; 2328 2328 url = "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz"; 2329 - sha1 = "a65cd29087a92598b8791257a523e021222ac1f9"; 2329 + sha1 = "plzSkIepJZi4eRJXpSPgISIqwfk="; 2330 2330 }; 2331 2331 } 2332 2332 { ··· 2334 2334 path = fetchurl { 2335 2335 name = "map_visit___map_visit_1.0.0.tgz"; 2336 2336 url = "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz"; 2337 - sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; 2337 + sha1 = "7Nyo8TFE5mDxtb1B8S80edmN+48="; 2338 2338 }; 2339 2339 } 2340 2340 { ··· 2342 2342 path = fetchurl { 2343 2343 name = "matcher___matcher_1.1.1.tgz"; 2344 2344 url = "https://registry.yarnpkg.com/matcher/-/matcher-1.1.1.tgz"; 2345 - sha1 = "51d8301e138f840982b338b116bb0c09af62c1c2"; 2345 + sha512 = "+BmqxWIubKTRKNWx/ahnCkk3mG8m7OturVlqq6HiojGJTd5hVYbgZm6WzcYPCoB+KBT4Vd6R7WSRG2OADNaCjg=="; 2346 2346 }; 2347 2347 } 2348 2348 { ··· 2350 2350 path = fetchurl { 2351 2351 name = "mem___mem_1.1.0.tgz"; 2352 2352 url = "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz"; 2353 - sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76"; 2353 + sha1 = "Xt1StIXKHZAP5kiVUFOZoN+kX3Y="; 2354 2354 }; 2355 2355 } 2356 2356 { ··· 2358 2358 path = fetchurl { 2359 2359 name = "messageformat_parser___messageformat_parser_1.1.0.tgz"; 2360 2360 url = "https://registry.yarnpkg.com/messageformat-parser/-/messageformat-parser-1.1.0.tgz"; 2361 - sha1 = "13ba2250a76bbde8e0fca0dbb3475f95c594a90a"; 2361 + sha512 = "Hwem6G3MsKDLS1FtBRGIs8T50P1Q00r3srS6QJePCFbad9fq0nYxwf3rnU2BreApRGhmpKMV7oZI06Sy1c9TPA=="; 2362 2362 }; 2363 2363 } 2364 2364 { ··· 2366 2366 path = fetchurl { 2367 2367 name = "messageformat___messageformat_1.1.1.tgz"; 2368 2368 url = "https://registry.yarnpkg.com/messageformat/-/messageformat-1.1.1.tgz"; 2369 - sha1 = "ceaa2e6c86929d4807058275a7372b1bd963bdf6"; 2369 + sha512 = "Q0uXcDtF5pEZsVSyhzDOGgZZK6ykN79VY9CwU3Nv0gsqx62BjdJW0MT+63UkHQ4exe3HE33ZlxR2/YwoJarRTg=="; 2370 2370 }; 2371 2371 } 2372 2372 { ··· 2374 2374 path = fetchurl { 2375 2375 name = "micromatch___micromatch_3.1.10.tgz"; 2376 2376 url = "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz"; 2377 - sha1 = "70859bc95c9840952f359a068a3fc49f9ecfac23"; 2377 + sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="; 2378 2378 }; 2379 2379 } 2380 2380 { ··· 2382 2382 path = fetchurl { 2383 2383 name = "mimic_fn___mimic_fn_1.2.0.tgz"; 2384 2384 url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz"; 2385 - sha1 = "820c86a39334640e99516928bd03fca88057d022"; 2385 + sha512 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="; 2386 2386 }; 2387 2387 } 2388 2388 { ··· 2390 2390 path = fetchurl { 2391 2391 name = "minimatch___minimatch_3.0.4.tgz"; 2392 2392 url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; 2393 - sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; 2393 + sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 2394 2394 }; 2395 2395 } 2396 2396 { ··· 2398 2398 path = fetchurl { 2399 2399 name = "minimist___minimist_1.2.5.tgz"; 2400 2400 url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 2401 - sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602"; 2401 + sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 2402 + }; 2403 + } 2404 + { 2405 + name = "minipass___minipass_3.3.4.tgz"; 2406 + path = fetchurl { 2407 + name = "minipass___minipass_3.3.4.tgz"; 2408 + url = "https://registry.yarnpkg.com/minipass/-/minipass-3.3.4.tgz"; 2409 + sha512 = "I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw=="; 2402 2410 }; 2403 2411 } 2404 2412 { ··· 2406 2414 path = fetchurl { 2407 2415 name = "mixin_deep___mixin_deep_1.3.2.tgz"; 2408 2416 url = "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz"; 2409 - sha1 = "1120b43dc359a785dce65b55b82e257ccf479566"; 2417 + sha512 = "WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA=="; 2410 2418 }; 2411 2419 } 2412 2420 { ··· 2414 2422 path = fetchurl { 2415 2423 name = "mkdirp___mkdirp_0.5.5.tgz"; 2416 2424 url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz"; 2417 - sha1 = "d91cefd62d1436ca0f41620e251288d420099def"; 2425 + sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 2418 2426 }; 2419 2427 } 2420 2428 { ··· 2422 2430 path = fetchurl { 2423 2431 name = "ms___ms_2.0.0.tgz"; 2424 2432 url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz"; 2425 - sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 2433 + sha1 = "VgiurfwAvmwpAd9fmGF4jeDVl8g="; 2426 2434 }; 2427 2435 } 2428 2436 { ··· 2430 2438 path = fetchurl { 2431 2439 name = "ms___ms_2.1.2.tgz"; 2432 2440 url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz"; 2433 - sha1 = "d09d1f357b443f493382a8eb3ccd183872ae6009"; 2441 + sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 2434 2442 }; 2435 2443 } 2436 2444 { ··· 2438 2446 path = fetchurl { 2439 2447 name = "mute_stream___mute_stream_0.0.7.tgz"; 2440 2448 url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz"; 2441 - sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; 2449 + sha1 = "MHXOk7whuPq0PhvE2n6BFe0ee6s="; 2442 2450 }; 2443 2451 } 2444 2452 { ··· 2446 2454 path = fetchurl { 2447 2455 name = "nanomatch___nanomatch_1.2.13.tgz"; 2448 2456 url = "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz"; 2449 - sha1 = "b87a8aa4fc0de8fe6be88895b38983ff265bd119"; 2457 + sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA=="; 2450 2458 }; 2451 2459 } 2452 2460 { ··· 2454 2462 path = fetchurl { 2455 2463 name = "natural_compare___natural_compare_1.4.0.tgz"; 2456 2464 url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; 2457 - sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; 2465 + sha1 = "Sr6/7tdUHywnrPspvbvRXI1bpPc="; 2458 2466 }; 2459 2467 } 2460 2468 { ··· 2462 2470 path = fetchurl { 2463 2471 name = "nice_try___nice_try_1.0.5.tgz"; 2464 2472 url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz"; 2465 - sha1 = "a3378a7696ce7d223e88fc9b764bd7ef1089e366"; 2473 + sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; 2466 2474 }; 2467 2475 } 2468 2476 { ··· 2470 2478 path = fetchurl { 2471 2479 name = "nopt___nopt_3.0.6.tgz"; 2472 2480 url = "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz"; 2473 - sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; 2481 + sha1 = "xkZdvwirzU2zWTF/eaxopkayj/k="; 2474 2482 }; 2475 2483 } 2476 2484 { ··· 2478 2486 path = fetchurl { 2479 2487 name = "normalize_package_data___normalize_package_data_2.5.0.tgz"; 2480 2488 url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz"; 2481 - sha1 = "e66db1838b200c1dfc233225d12cb36520e234a8"; 2489 + sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="; 2482 2490 }; 2483 2491 } 2484 2492 { ··· 2486 2494 path = fetchurl { 2487 2495 name = "npm_path___npm_path_2.0.4.tgz"; 2488 2496 url = "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz"; 2489 - sha1 = "c641347a5ff9d6a09e4d9bce5580c4f505278e64"; 2497 + sha512 = "IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw=="; 2490 2498 }; 2491 2499 } 2492 2500 { ··· 2494 2502 path = fetchurl { 2495 2503 name = "npm_run_path___npm_run_path_2.0.2.tgz"; 2496 2504 url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz"; 2497 - sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; 2505 + sha1 = "NakjLfo11wZ7TLLd8jV7GHFTbF8="; 2498 2506 }; 2499 2507 } 2500 2508 { ··· 2502 2510 path = fetchurl { 2503 2511 name = "npm_which___npm_which_3.0.1.tgz"; 2504 2512 url = "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz"; 2505 - sha1 = "9225f26ec3a285c209cae67c3b11a6b4ab7140aa"; 2513 + sha1 = "kiXybsOihcIJyuZ8OxGmtKtxQKo="; 2506 2514 }; 2507 2515 } 2508 2516 { ··· 2510 2518 path = fetchurl { 2511 2519 name = "number_is_nan___number_is_nan_1.0.1.tgz"; 2512 2520 url = "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz"; 2513 - sha1 = "097b602b53422a522c1afb8790318336941a011d"; 2521 + sha1 = "CXtgK1NCKlIsGvuHkDGDNpQaAR0="; 2514 2522 }; 2515 2523 } 2516 2524 { ··· 2518 2526 path = fetchurl { 2519 2527 name = "object_assign___object_assign_4.1.1.tgz"; 2520 2528 url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz"; 2521 - sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 2529 + sha1 = "IQmtx5ZYh8/AXLvUQsrIv7s2CGM="; 2522 2530 }; 2523 2531 } 2524 2532 { ··· 2526 2534 path = fetchurl { 2527 2535 name = "object_copy___object_copy_0.1.0.tgz"; 2528 2536 url = "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz"; 2529 - sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; 2537 + sha1 = "fn2Fi3gb18mRpBupde04EnVOmYw="; 2530 2538 }; 2531 2539 } 2532 2540 { ··· 2534 2542 path = fetchurl { 2535 2543 name = "object_inspect___object_inspect_1.7.0.tgz"; 2536 2544 url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz"; 2537 - sha1 = "f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"; 2545 + sha512 = "a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw=="; 2538 2546 }; 2539 2547 } 2540 2548 { ··· 2542 2550 path = fetchurl { 2543 2551 name = "object_is___object_is_1.1.2.tgz"; 2544 2552 url = "https://registry.yarnpkg.com/object-is/-/object-is-1.1.2.tgz"; 2545 - sha1 = "c5d2e87ff9e119f78b7a088441519e2eec1573b6"; 2553 + sha512 = "5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ=="; 2546 2554 }; 2547 2555 } 2548 2556 { ··· 2550 2558 path = fetchurl { 2551 2559 name = "object_keys___object_keys_1.1.1.tgz"; 2552 2560 url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz"; 2553 - sha1 = "1c47f272df277f3b1daf061677d9c82e2322c60e"; 2561 + sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; 2554 2562 }; 2555 2563 } 2556 2564 { ··· 2558 2566 path = fetchurl { 2559 2567 name = "object_visit___object_visit_1.0.1.tgz"; 2560 2568 url = "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz"; 2561 - sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; 2569 + sha1 = "95xEk68MU3e1n+OdOV5BBC3QRbs="; 2562 2570 }; 2563 2571 } 2564 2572 { ··· 2566 2574 path = fetchurl { 2567 2575 name = "object.assign___object.assign_4.1.0.tgz"; 2568 2576 url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz"; 2569 - sha1 = "968bf1100d7956bb3ca086f006f846b3bc4008da"; 2577 + sha512 = "exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w=="; 2570 2578 }; 2571 2579 } 2572 2580 { ··· 2574 2582 path = fetchurl { 2575 2583 name = "object.entries___object.entries_1.1.1.tgz"; 2576 2584 url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz"; 2577 - sha1 = "ee1cf04153de02bb093fec33683900f57ce5399b"; 2585 + sha512 = "ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ=="; 2578 2586 }; 2579 2587 } 2580 2588 { ··· 2582 2590 path = fetchurl { 2583 2591 name = "object.fromentries___object.fromentries_2.0.2.tgz"; 2584 2592 url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz"; 2585 - sha1 = "4a09c9b9bb3843dd0f89acdb517a794d4f355ac9"; 2593 + sha512 = "r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ=="; 2586 2594 }; 2587 2595 } 2588 2596 { ··· 2590 2598 path = fetchurl { 2591 2599 name = "object.pick___object.pick_1.3.0.tgz"; 2592 2600 url = "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz"; 2593 - sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; 2601 + sha1 = "h6EKxMFpS9Lhy/U1kaZhQftd10c="; 2594 2602 }; 2595 2603 } 2596 2604 { ··· 2598 2606 path = fetchurl { 2599 2607 name = "object.values___object.values_1.1.1.tgz"; 2600 2608 url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz"; 2601 - sha1 = "68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"; 2609 + sha512 = "WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA=="; 2602 2610 }; 2603 2611 } 2604 2612 { ··· 2606 2614 path = fetchurl { 2607 2615 name = "once___once_1.4.0.tgz"; 2608 2616 url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; 2609 - sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 2617 + sha1 = "WDsap3WWHUsROsF9nFC6753Xa9E="; 2610 2618 }; 2611 2619 } 2612 2620 { ··· 2614 2622 path = fetchurl { 2615 2623 name = "onetime___onetime_2.0.1.tgz"; 2616 2624 url = "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz"; 2617 - sha1 = "067428230fd67443b2794b22bba528b6867962d4"; 2625 + sha1 = "BnQoIw/WdEOyeUsiu6UotoZ5YtQ="; 2618 2626 }; 2619 2627 } 2620 2628 { ··· 2622 2630 path = fetchurl { 2623 2631 name = "optionator___optionator_0.8.3.tgz"; 2624 2632 url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz"; 2625 - sha1 = "84fa1d036fe9d3c7e21d99884b601167ec8fb495"; 2633 + sha512 = "+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA=="; 2626 2634 }; 2627 2635 } 2628 2636 { ··· 2630 2638 path = fetchurl { 2631 2639 name = "os_locale___os_locale_2.1.0.tgz"; 2632 2640 url = "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz"; 2633 - sha1 = "42bc2900a6b5b8bd17376c8e882b65afccf24bf2"; 2641 + sha512 = "3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA=="; 2634 2642 }; 2635 2643 } 2636 2644 { ··· 2638 2646 path = fetchurl { 2639 2647 name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 2640 2648 url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 2641 - sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 2649 + sha1 = "u+Z0BseaqFxc/sdm/lc0VV36EnQ="; 2642 2650 }; 2643 2651 } 2644 2652 { ··· 2646 2654 path = fetchurl { 2647 2655 name = "p_finally___p_finally_1.0.0.tgz"; 2648 2656 url = "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz"; 2649 - sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; 2657 + sha1 = "P7z7FbiZpEEjs0ttzBi3JDNqLK4="; 2650 2658 }; 2651 2659 } 2652 2660 { ··· 2654 2662 path = fetchurl { 2655 2663 name = "p_limit___p_limit_1.3.0.tgz"; 2656 2664 url = "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz"; 2657 - sha1 = "b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"; 2665 + sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q=="; 2658 2666 }; 2659 2667 } 2660 2668 { ··· 2662 2670 path = fetchurl { 2663 2671 name = "p_limit___p_limit_2.3.0.tgz"; 2664 2672 url = "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz"; 2665 - sha1 = "3dd33c647a214fdfffd835933eb086da0dc21db1"; 2673 + sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="; 2666 2674 }; 2667 2675 } 2668 2676 { ··· 2670 2678 path = fetchurl { 2671 2679 name = "p_locate___p_locate_2.0.0.tgz"; 2672 2680 url = "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz"; 2673 - sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43"; 2681 + sha1 = "IKAQOyIqcMj9OcwuWAaA893l7EM="; 2674 2682 }; 2675 2683 } 2676 2684 { ··· 2678 2686 path = fetchurl { 2679 2687 name = "p_locate___p_locate_3.0.0.tgz"; 2680 2688 url = "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz"; 2681 - sha1 = "322d69a05c0264b25997d9f40cd8a891ab0064a4"; 2689 + sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; 2682 2690 }; 2683 2691 } 2684 2692 { ··· 2686 2694 path = fetchurl { 2687 2695 name = "p_map___p_map_1.2.0.tgz"; 2688 2696 url = "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz"; 2689 - sha1 = "e4e94f311eabbc8633a1e79908165fca26241b6b"; 2697 + sha512 = "r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA=="; 2690 2698 }; 2691 2699 } 2692 2700 { ··· 2694 2702 path = fetchurl { 2695 2703 name = "p_map___p_map_2.1.0.tgz"; 2696 2704 url = "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz"; 2697 - sha1 = "310928feef9c9ecc65b68b17693018a665cea175"; 2705 + sha512 = "y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw=="; 2698 2706 }; 2699 2707 } 2700 2708 { ··· 2702 2710 path = fetchurl { 2703 2711 name = "p_try___p_try_1.0.0.tgz"; 2704 2712 url = "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz"; 2705 - sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"; 2713 + sha1 = "y8ec26+P1CKOE/Yh8rGiN8GyB7M="; 2706 2714 }; 2707 2715 } 2708 2716 { ··· 2710 2718 path = fetchurl { 2711 2719 name = "p_try___p_try_2.2.0.tgz"; 2712 2720 url = "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz"; 2713 - sha1 = "cb2868540e313d61de58fafbe35ce9004d5540e6"; 2721 + sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 2714 2722 }; 2715 2723 } 2716 2724 { ··· 2718 2726 path = fetchurl { 2719 2727 name = "parent_module___parent_module_1.0.1.tgz"; 2720 2728 url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz"; 2721 - sha1 = "691d2709e78c79fae3a156622452d00762caaaa2"; 2729 + sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; 2722 2730 }; 2723 2731 } 2724 2732 { ··· 2726 2734 path = fetchurl { 2727 2735 name = "parse_json___parse_json_2.2.0.tgz"; 2728 2736 url = "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz"; 2729 - sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; 2737 + sha1 = "9ID0BDTvgHQfhGkJn43qGPVaTck="; 2730 2738 }; 2731 2739 } 2732 2740 { ··· 2734 2742 path = fetchurl { 2735 2743 name = "parse_json___parse_json_4.0.0.tgz"; 2736 2744 url = "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz"; 2737 - sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0"; 2745 + sha1 = "vjX1Qlvh9/bHRxhPmKeIy5lHfuA="; 2738 2746 }; 2739 2747 } 2740 2748 { ··· 2742 2750 path = fetchurl { 2743 2751 name = "pascalcase___pascalcase_0.1.1.tgz"; 2744 2752 url = "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz"; 2745 - sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; 2753 + sha1 = "s2PlXoAGym/iF4TS2yK9FdeRfxQ="; 2746 2754 }; 2747 2755 } 2748 2756 { ··· 2750 2758 path = fetchurl { 2751 2759 name = "path_exists___path_exists_3.0.0.tgz"; 2752 2760 url = "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz"; 2753 - sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; 2761 + sha1 = "zg6+ql94yxiSXqfYENe1mwEP1RU="; 2754 2762 }; 2755 2763 } 2756 2764 { ··· 2758 2766 path = fetchurl { 2759 2767 name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 2760 2768 url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 2761 - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 2769 + sha1 = "F0uSaHNVNP+8es5r9TpanhtcX18="; 2762 2770 }; 2763 2771 } 2764 2772 { ··· 2766 2774 path = fetchurl { 2767 2775 name = "path_is_inside___path_is_inside_1.0.2.tgz"; 2768 2776 url = "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz"; 2769 - sha1 = "365417dede44430d1c11af61027facf074bdfc53"; 2777 + sha1 = "NlQX3t5EQw0cEa9hAn+s8HS9/FM="; 2770 2778 }; 2771 2779 } 2772 2780 { ··· 2774 2782 path = fetchurl { 2775 2783 name = "path_key___path_key_2.0.1.tgz"; 2776 2784 url = "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz"; 2777 - sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; 2785 + sha1 = "QRyttXTFoUDTpLGRDUDYDMn0C0A="; 2778 2786 }; 2779 2787 } 2780 2788 { ··· 2782 2790 path = fetchurl { 2783 2791 name = "path_parse___path_parse_1.0.6.tgz"; 2784 2792 url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz"; 2785 - sha1 = "d62dbb5679405d72c4737ec58600e9ddcf06d24c"; 2793 + sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="; 2786 2794 }; 2787 2795 } 2788 2796 { ··· 2790 2798 path = fetchurl { 2791 2799 name = "path_type___path_type_2.0.0.tgz"; 2792 2800 url = "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz"; 2793 - sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; 2801 + sha1 = "8BLMuEFbcJb8LaoQVMPXI4lZTHM="; 2794 2802 }; 2795 2803 } 2796 2804 { ··· 2798 2806 path = fetchurl { 2799 2807 name = "pify___pify_2.3.0.tgz"; 2800 2808 url = "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz"; 2801 - sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; 2809 + sha1 = "7RQaasBDqEnqWISY59yosVMw6Qw="; 2802 2810 }; 2803 2811 } 2804 2812 { ··· 2806 2814 path = fetchurl { 2807 2815 name = "pify___pify_3.0.0.tgz"; 2808 2816 url = "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz"; 2809 - sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"; 2817 + sha1 = "5aSs0sEB/fPZpNB/DbxNtJ3SgXY="; 2810 2818 }; 2811 2819 } 2812 2820 { ··· 2814 2822 path = fetchurl { 2815 2823 name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; 2816 2824 url = "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; 2817 - sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 2825 + sha1 = "ITXW36ejWMBprJsXh3YogihFD/o="; 2818 2826 }; 2819 2827 } 2820 2828 { ··· 2822 2830 path = fetchurl { 2823 2831 name = "pinkie___pinkie_2.0.4.tgz"; 2824 2832 url = "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz"; 2825 - sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; 2833 + sha1 = "clVrgM+g1IqXToDnckjoDtT3+HA="; 2826 2834 }; 2827 2835 } 2828 2836 { ··· 2830 2838 path = fetchurl { 2831 2839 name = "pkg_dir___pkg_dir_2.0.0.tgz"; 2832 2840 url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz"; 2833 - sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b"; 2841 + sha1 = "9tXREJ4Z1j7fQo4L1X4Sd3YVM0s="; 2834 2842 }; 2835 2843 } 2836 2844 { ··· 2838 2846 path = fetchurl { 2839 2847 name = "pkg_dir___pkg_dir_3.0.0.tgz"; 2840 2848 url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz"; 2841 - sha1 = "2749020f239ed990881b1f71210d51eb6523bea3"; 2849 + sha512 = "/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw=="; 2842 2850 }; 2843 2851 } 2844 2852 { ··· 2846 2854 path = fetchurl { 2847 2855 name = "please_upgrade_node___please_upgrade_node_3.2.0.tgz"; 2848 2856 url = "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz"; 2849 - sha1 = "aeddd3f994c933e4ad98b99d9a556efa0e2fe942"; 2857 + sha512 = "gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg=="; 2850 2858 }; 2851 2859 } 2852 2860 { ··· 2854 2862 path = fetchurl { 2855 2863 name = "pluralize___pluralize_7.0.0.tgz"; 2856 2864 url = "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz"; 2857 - sha1 = "298b89df8b93b0221dbf421ad2b1b1ea23fc6777"; 2865 + sha512 = "ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow=="; 2858 2866 }; 2859 2867 } 2860 2868 { ··· 2862 2870 path = fetchurl { 2863 2871 name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; 2864 2872 url = "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; 2865 - sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 2873 + sha1 = "AerA/jta9xoqbAL+q7jB/vfgDqs="; 2866 2874 }; 2867 2875 } 2868 2876 { ··· 2870 2878 path = fetchurl { 2871 2879 name = "prelude_ls___prelude_ls_1.1.2.tgz"; 2872 2880 url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; 2873 - sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; 2881 + sha1 = "IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ="; 2874 2882 }; 2875 2883 } 2876 2884 { ··· 2878 2886 path = fetchurl { 2879 2887 name = "prettier_eslint_cli___prettier_eslint_cli_4.7.1.tgz"; 2880 2888 url = "https://registry.yarnpkg.com/prettier-eslint-cli/-/prettier-eslint-cli-4.7.1.tgz"; 2881 - sha1 = "3d103c494baa4e80b99ad53e2b9db7620101859f"; 2889 + sha512 = "hQbsGaEVz97oBBcKdsJ46khv0kOGkMyWrXzcFOXW6X8UuetZ/j0yDJkNJgUTVc6PVFbbzBXk+qgd5vos9qzXPQ=="; 2882 2890 }; 2883 2891 } 2884 2892 { ··· 2886 2894 path = fetchurl { 2887 2895 name = "prettier_eslint___prettier_eslint_8.8.2.tgz"; 2888 2896 url = "https://registry.yarnpkg.com/prettier-eslint/-/prettier-eslint-8.8.2.tgz"; 2889 - sha1 = "fcb29a48ab4524e234680797fe70e9d136ccaf0b"; 2897 + sha512 = "2UzApPuxi2yRoyMlXMazgR6UcH9DKJhNgCviIwY3ixZ9THWSSrUww5vkiZ3C48WvpFl1M1y/oU63deSy1puWEA=="; 2890 2898 }; 2891 2899 } 2892 2900 { ··· 2894 2902 path = fetchurl { 2895 2903 name = "prettier___prettier_1.19.1.tgz"; 2896 2904 url = "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz"; 2897 - sha1 = "f7d7f5ff8a9cd872a7be4ca142095956a60797cb"; 2905 + sha512 = "s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew=="; 2898 2906 }; 2899 2907 } 2900 2908 { ··· 2902 2910 path = fetchurl { 2903 2911 name = "pretty_format___pretty_format_23.6.0.tgz"; 2904 2912 url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz"; 2905 - sha1 = "5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760"; 2913 + sha512 = "zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw=="; 2906 2914 }; 2907 2915 } 2908 2916 { ··· 2910 2918 path = fetchurl { 2911 2919 name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; 2912 2920 url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 2913 - sha1 = "7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"; 2921 + sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 2914 2922 }; 2915 2923 } 2916 2924 { ··· 2918 2926 path = fetchurl { 2919 2927 name = "progress___progress_2.0.3.tgz"; 2920 2928 url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz"; 2921 - sha1 = "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"; 2929 + sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="; 2922 2930 }; 2923 2931 } 2924 2932 { ··· 2926 2934 path = fetchurl { 2927 2935 name = "prop_types___prop_types_15.7.2.tgz"; 2928 2936 url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz"; 2929 - sha1 = "52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"; 2937 + sha512 = "8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ=="; 2930 2938 }; 2931 2939 } 2932 2940 { ··· 2934 2942 path = fetchurl { 2935 2943 name = "property_expr___property_expr_1.5.1.tgz"; 2936 2944 url = "https://registry.yarnpkg.com/property-expr/-/property-expr-1.5.1.tgz"; 2937 - sha1 = "22e8706894a0c8e28d58735804f6ba3a3673314f"; 2945 + sha512 = "CGuc0VUTGthpJXL36ydB6jnbyOf/rAHFvmVrJlH+Rg0DqqLFQGAP6hIaxD/G0OAmBJPhXDHuEJigrp0e0wFV6g=="; 2938 2946 }; 2939 2947 } 2940 2948 { ··· 2942 2950 path = fetchurl { 2943 2951 name = "pseudomap___pseudomap_1.0.2.tgz"; 2944 2952 url = "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz"; 2945 - sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; 2953 + sha1 = "8FKijacOYYkX7wqKw0wa5aaChrM="; 2946 2954 }; 2947 2955 } 2948 2956 { ··· 2950 2958 path = fetchurl { 2951 2959 name = "pump___pump_3.0.0.tgz"; 2952 2960 url = "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz"; 2953 - sha1 = "b4a2116815bde2f4e1ea602354e8c75565107a64"; 2961 + sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="; 2954 2962 }; 2955 2963 } 2956 2964 { ··· 2958 2966 path = fetchurl { 2959 2967 name = "punycode___punycode_2.1.1.tgz"; 2960 2968 url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; 2961 - sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec"; 2969 + sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 2962 2970 }; 2963 2971 } 2964 2972 { ··· 2966 2974 path = fetchurl { 2967 2975 name = "quick_lru___quick_lru_1.1.0.tgz"; 2968 2976 url = "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz"; 2969 - sha1 = "4360b17c61136ad38078397ff11416e186dcfbb8"; 2977 + sha1 = "Q2CxfGETatOAeDl/8RQW4Ybc+7g="; 2970 2978 }; 2971 2979 } 2972 2980 { ··· 2974 2982 path = fetchurl { 2975 2983 name = "ramda___ramda_0.26.1.tgz"; 2976 2984 url = "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz"; 2977 - sha1 = "8d41351eb8111c55353617fc3bbffad8e4d35d06"; 2985 + sha512 = "hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ=="; 2978 2986 }; 2979 2987 } 2980 2988 { ··· 2982 2990 path = fetchurl { 2983 2991 name = "react_is___react_is_16.13.1.tgz"; 2984 2992 url = "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz"; 2985 - sha1 = "789729a4dc36de2999dc156dd6c1d9c18cea56a4"; 2993 + sha512 = "24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="; 2986 2994 }; 2987 2995 } 2988 2996 { ··· 2990 2998 path = fetchurl { 2991 2999 name = "read_pkg_up___read_pkg_up_2.0.0.tgz"; 2992 3000 url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; 2993 - sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; 3001 + sha1 = "a3KoBImE4MQeeVEP1en6mbO1Sb4="; 2994 3002 }; 2995 3003 } 2996 3004 { ··· 2998 3006 path = fetchurl { 2999 3007 name = "read_pkg___read_pkg_2.0.0.tgz"; 3000 3008 url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz"; 3001 - sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; 3009 + sha1 = "jvHAYjxqbbDcZxPEv6xGMysjaPg="; 3002 3010 }; 3003 3011 } 3004 3012 { ··· 3006 3014 path = fetchurl { 3007 3015 name = "read_pkg___read_pkg_4.0.1.tgz"; 3008 3016 url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-4.0.1.tgz"; 3009 - sha1 = "963625378f3e1c4d48c85872b5a6ec7d5d093237"; 3017 + sha1 = "ljYlN48+HE1IyFhytabsfV0JMjc="; 3010 3018 }; 3011 3019 } 3012 3020 { ··· 3014 3022 path = fetchurl { 3015 3023 name = "readable_stream___readable_stream_2.3.7.tgz"; 3016 3024 url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz"; 3017 - sha1 = "1eca1cf711aef814c04f62252a36a62f6cb23b57"; 3025 + sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 3018 3026 }; 3019 3027 } 3020 3028 { ··· 3022 3030 path = fetchurl { 3023 3031 name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; 3024 3032 url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; 3025 - sha1 = "be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"; 3033 + sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="; 3026 3034 }; 3027 3035 } 3028 3036 { ··· 3030 3038 path = fetchurl { 3031 3039 name = "regenerator_runtime___regenerator_runtime_0.13.5.tgz"; 3032 3040 url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz"; 3033 - sha1 = "d878a1d094b4306d10b9096484b33ebd55e26697"; 3041 + sha512 = "ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="; 3034 3042 }; 3035 3043 } 3036 3044 { ··· 3038 3046 path = fetchurl { 3039 3047 name = "regex_not___regex_not_1.0.2.tgz"; 3040 3048 url = "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz"; 3041 - sha1 = "1f4ece27e00b0b65e0247a6810e6a85d83a5752c"; 3049 + sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; 3042 3050 }; 3043 3051 } 3044 3052 { ··· 3046 3054 path = fetchurl { 3047 3055 name = "regexp.prototype.flags___regexp.prototype.flags_1.3.0.tgz"; 3048 3056 url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz"; 3049 - sha1 = "7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75"; 3057 + sha512 = "2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ=="; 3050 3058 }; 3051 3059 } 3052 3060 { ··· 3054 3062 path = fetchurl { 3055 3063 name = "regexpp___regexpp_1.1.0.tgz"; 3056 3064 url = "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz"; 3057 - sha1 = "0e3516dd0b7904f413d2d4193dce4618c3a689ab"; 3065 + sha512 = "LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw=="; 3058 3066 }; 3059 3067 } 3060 3068 { ··· 3062 3070 path = fetchurl { 3063 3071 name = "regexpp___regexpp_2.0.1.tgz"; 3064 3072 url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz"; 3065 - sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f"; 3073 + sha512 = "lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw=="; 3066 3074 }; 3067 3075 } 3068 3076 { ··· 3070 3078 path = fetchurl { 3071 3079 name = "repeat_element___repeat_element_1.1.3.tgz"; 3072 3080 url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz"; 3073 - sha1 = "782e0d825c0c5a3bb39731f84efee6b742e6b1ce"; 3081 + sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g=="; 3074 3082 }; 3075 3083 } 3076 3084 { ··· 3078 3086 path = fetchurl { 3079 3087 name = "repeat_string___repeat_string_1.6.1.tgz"; 3080 3088 url = "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz"; 3081 - sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; 3089 + sha1 = "jcrkcOHIirwtYA//Sndihtp15jc="; 3082 3090 }; 3083 3091 } 3084 3092 { ··· 3086 3094 path = fetchurl { 3087 3095 name = "require_directory___require_directory_2.1.1.tgz"; 3088 3096 url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz"; 3089 - sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 3097 + sha1 = "jGStX9MNqxyXbiNE/+f3kqam30I="; 3090 3098 }; 3091 3099 } 3092 3100 { ··· 3094 3102 path = fetchurl { 3095 3103 name = "require_main_filename___require_main_filename_1.0.1.tgz"; 3096 3104 url = "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz"; 3097 - sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; 3105 + sha1 = "l/cXtp1IeE9fUmpsWqj/3aBVpNE="; 3098 3106 }; 3099 3107 } 3100 3108 { ··· 3102 3110 path = fetchurl { 3103 3111 name = "require_relative___require_relative_0.8.7.tgz"; 3104 3112 url = "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz"; 3105 - sha1 = "7999539fc9e047a37928fa196f8e1563dabd36de"; 3113 + sha1 = "eZlTn8ngR6N5KPoZb44VY9q9Nt4="; 3106 3114 }; 3107 3115 } 3108 3116 { ··· 3110 3118 path = fetchurl { 3111 3119 name = "require_uncached___require_uncached_1.0.3.tgz"; 3112 3120 url = "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz"; 3113 - sha1 = "4e0d56d6c9662fd31e43011c4b95aa49955421d3"; 3121 + sha1 = "Tg1W1slmL9MeQwEcS5WqSZVUIdM="; 3114 3122 }; 3115 3123 } 3116 3124 { ··· 3118 3126 path = fetchurl { 3119 3127 name = "reserved_words___reserved_words_0.1.2.tgz"; 3120 3128 url = "https://registry.yarnpkg.com/reserved-words/-/reserved-words-0.1.2.tgz"; 3121 - sha1 = "00a0940f98cd501aeaaac316411d9adc52b31ab1"; 3129 + sha1 = "AKCUD5jNUBrqqsMWQR2a3FKzGrE="; 3122 3130 }; 3123 3131 } 3124 3132 { ··· 3126 3134 path = fetchurl { 3127 3135 name = "resolve_from___resolve_from_1.0.1.tgz"; 3128 3136 url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz"; 3129 - sha1 = "26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"; 3137 + sha1 = "Jsv+k10a7uq7Kbw/5a6wHpPUQiY="; 3130 3138 }; 3131 3139 } 3132 3140 { ··· 3134 3142 path = fetchurl { 3135 3143 name = "resolve_from___resolve_from_3.0.0.tgz"; 3136 3144 url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz"; 3137 - sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748"; 3145 + sha1 = "six699nWiBvItuZTM17rywoYh0g="; 3138 3146 }; 3139 3147 } 3140 3148 { ··· 3142 3150 path = fetchurl { 3143 3151 name = "resolve_from___resolve_from_4.0.0.tgz"; 3144 3152 url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; 3145 - sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6"; 3153 + sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; 3146 3154 }; 3147 3155 } 3148 3156 { ··· 3150 3158 path = fetchurl { 3151 3159 name = "resolve_url___resolve_url_0.2.1.tgz"; 3152 3160 url = "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz"; 3153 - sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; 3161 + sha1 = "LGN/53yJOv0qZj/iGqkIAGjiBSo="; 3154 3162 }; 3155 3163 } 3156 3164 { ··· 3158 3166 path = fetchurl { 3159 3167 name = "resolve___resolve_1.17.0.tgz"; 3160 3168 url = "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz"; 3161 - sha1 = "b25941b54968231cc2d1bb76a79cb7f2c0bf8444"; 3169 + sha512 = "ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w=="; 3162 3170 }; 3163 3171 } 3164 3172 { ··· 3166 3174 path = fetchurl { 3167 3175 name = "restore_cursor___restore_cursor_2.0.0.tgz"; 3168 3176 url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz"; 3169 - sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; 3177 + sha1 = "n37ih/gv0ybU/RYpI9YhKe7g368="; 3170 3178 }; 3171 3179 } 3172 3180 { ··· 3174 3182 path = fetchurl { 3175 3183 name = "ret___ret_0.1.15.tgz"; 3176 3184 url = "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz"; 3177 - sha1 = "b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"; 3185 + sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="; 3178 3186 }; 3179 3187 } 3180 3188 { ··· 3182 3190 path = fetchurl { 3183 3191 name = "rimraf___rimraf_2.6.3.tgz"; 3184 3192 url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz"; 3185 - sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"; 3193 + sha512 = "mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA=="; 3186 3194 }; 3187 3195 } 3188 3196 { ··· 3190 3198 path = fetchurl { 3191 3199 name = "rimraf___rimraf_2.7.1.tgz"; 3192 3200 url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz"; 3193 - sha1 = "35797f13a7fdadc566142c29d4f07ccad483e3ec"; 3201 + sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="; 3194 3202 }; 3195 3203 } 3196 3204 { ··· 3198 3206 path = fetchurl { 3199 3207 name = "run_async___run_async_2.4.1.tgz"; 3200 3208 url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz"; 3201 - sha1 = "8440eccf99ea3e70bd409d49aab88e10c189a455"; 3209 + sha512 = "tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ=="; 3202 3210 }; 3203 3211 } 3204 3212 { ··· 3206 3214 path = fetchurl { 3207 3215 name = "run_node___run_node_1.0.0.tgz"; 3208 3216 url = "https://registry.yarnpkg.com/run-node/-/run-node-1.0.0.tgz"; 3209 - sha1 = "46b50b946a2aa2d4947ae1d886e9856fd9cabe5e"; 3217 + sha512 = "kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A=="; 3210 3218 }; 3211 3219 } 3212 3220 { ··· 3214 3222 path = fetchurl { 3215 3223 name = "rx_lite_aggregates___rx_lite_aggregates_4.0.8.tgz"; 3216 3224 url = "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz"; 3217 - sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be"; 3225 + sha1 = "dTuHqJoRyVRnxKwWJsTvxOBcZ74="; 3218 3226 }; 3219 3227 } 3220 3228 { ··· 3222 3230 path = fetchurl { 3223 3231 name = "rx_lite___rx_lite_4.0.8.tgz"; 3224 3232 url = "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz"; 3225 - sha1 = "0b1e11af8bc44836f04a6407e92da42467b79444"; 3233 + sha1 = "Cx4Rr4vESDbwSmQH6S2kJGe3lEQ="; 3226 3234 }; 3227 3235 } 3228 3236 { ··· 3230 3238 path = fetchurl { 3231 3239 name = "rxjs___rxjs_5.5.12.tgz"; 3232 3240 url = "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz"; 3233 - sha1 = "6fa61b8a77c3d793dbaf270bee2f43f652d741cc"; 3241 + sha512 = "xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw=="; 3234 3242 }; 3235 3243 } 3236 3244 { ··· 3238 3246 path = fetchurl { 3239 3247 name = "rxjs___rxjs_6.5.5.tgz"; 3240 3248 url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz"; 3241 - sha1 = "c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec"; 3249 + sha512 = "WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ=="; 3242 3250 }; 3243 3251 } 3244 3252 { ··· 3246 3254 path = fetchurl { 3247 3255 name = "safe_buffer___safe_buffer_5.1.2.tgz"; 3248 3256 url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; 3249 - sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d"; 3257 + sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 3250 3258 }; 3251 3259 } 3252 3260 { ··· 3254 3262 path = fetchurl { 3255 3263 name = "safe_regex___safe_regex_1.1.0.tgz"; 3256 3264 url = "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz"; 3257 - sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; 3265 + sha1 = "QKNmnzsHfR6UPURinhV91IAjvy4="; 3258 3266 }; 3259 3267 } 3260 3268 { ··· 3262 3270 path = fetchurl { 3263 3271 name = "safer_buffer___safer_buffer_2.1.2.tgz"; 3264 3272 url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; 3265 - sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a"; 3273 + sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 3266 3274 }; 3267 3275 } 3268 3276 { ··· 3270 3278 path = fetchurl { 3271 3279 name = "semver_compare___semver_compare_1.0.0.tgz"; 3272 3280 url = "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz"; 3273 - sha1 = "0dee216a1c941ab37e9efb1788f6afc5ff5537fc"; 3281 + sha1 = "De4hahyUGrN+nvsXiPavxf9VN/w="; 3274 3282 }; 3275 3283 } 3276 3284 { ··· 3278 3286 path = fetchurl { 3279 3287 name = "semver___semver_5.7.1.tgz"; 3280 3288 url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz"; 3281 - sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7"; 3289 + sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 3282 3290 }; 3283 3291 } 3284 3292 { ··· 3286 3294 path = fetchurl { 3287 3295 name = "semver___semver_5.5.0.tgz"; 3288 3296 url = "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz"; 3289 - sha1 = "dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"; 3297 + sha512 = "4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA=="; 3290 3298 }; 3291 3299 } 3292 3300 { ··· 3294 3302 path = fetchurl { 3295 3303 name = "set_blocking___set_blocking_2.0.0.tgz"; 3296 3304 url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz"; 3297 - sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 3305 + sha1 = "BF+XgtARrppoA93TgrJDkrPYkPc="; 3298 3306 }; 3299 3307 } 3300 3308 { ··· 3302 3310 path = fetchurl { 3303 3311 name = "set_value___set_value_2.0.1.tgz"; 3304 3312 url = "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz"; 3305 - sha1 = "a18d40530e6f07de4228c7defe4227af8cad005b"; 3313 + sha512 = "JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw=="; 3306 3314 }; 3307 3315 } 3308 3316 { ··· 3310 3318 path = fetchurl { 3311 3319 name = "shebang_command___shebang_command_1.2.0.tgz"; 3312 3320 url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz"; 3313 - sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; 3321 + sha1 = "RKrGW2lbAzmJaMOfNj/uXer98eo="; 3314 3322 }; 3315 3323 } 3316 3324 { ··· 3318 3326 path = fetchurl { 3319 3327 name = "shebang_regex___shebang_regex_1.0.0.tgz"; 3320 3328 url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz"; 3321 - sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; 3329 + sha1 = "2kL0l0DAtC2yypcoVxyxkMmO/qM="; 3322 3330 }; 3323 3331 } 3324 3332 { ··· 3326 3334 path = fetchurl { 3327 3335 name = "side_channel___side_channel_1.0.2.tgz"; 3328 3336 url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz"; 3329 - sha1 = "df5d1abadb4e4bf4af1cd8852bf132d2f7876947"; 3337 + sha512 = "7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA=="; 3330 3338 }; 3331 3339 } 3332 3340 { ··· 3334 3342 path = fetchurl { 3335 3343 name = "signal_exit___signal_exit_3.0.3.tgz"; 3336 3344 url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz"; 3337 - sha1 = "a1410c2edd8f077b08b4e253c8eacfcaf057461c"; 3345 + sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="; 3338 3346 }; 3339 3347 } 3340 3348 { ··· 3342 3350 path = fetchurl { 3343 3351 name = "simple_git___simple_git_1.132.0.tgz"; 3344 3352 url = "https://registry.yarnpkg.com/simple-git/-/simple-git-1.132.0.tgz"; 3345 - sha1 = "53ac4c5ec9e74e37c2fd461e23309f22fcdf09b1"; 3353 + sha512 = "xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg=="; 3346 3354 }; 3347 3355 } 3348 3356 { ··· 3350 3358 path = fetchurl { 3351 3359 name = "slash___slash_2.0.0.tgz"; 3352 3360 url = "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz"; 3353 - sha1 = "de552851a1759df3a8f206535442f5ec4ddeab44"; 3361 + sha512 = "ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A=="; 3354 3362 }; 3355 3363 } 3356 3364 { ··· 3358 3366 path = fetchurl { 3359 3367 name = "slice_ansi___slice_ansi_0.0.4.tgz"; 3360 3368 url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz"; 3361 - sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35"; 3369 + sha1 = "7b+JA/ZvfOL46v1s7tZeJkyDGzU="; 3362 3370 }; 3363 3371 } 3364 3372 { ··· 3366 3374 path = fetchurl { 3367 3375 name = "slice_ansi___slice_ansi_1.0.0.tgz"; 3368 3376 url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz"; 3369 - sha1 = "044f1a49d8842ff307aad6b505ed178bd950134d"; 3377 + sha512 = "POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg=="; 3370 3378 }; 3371 3379 } 3372 3380 { ··· 3374 3382 path = fetchurl { 3375 3383 name = "slice_ansi___slice_ansi_2.1.0.tgz"; 3376 3384 url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz"; 3377 - sha1 = "cacd7693461a637a5788d92a7dd4fba068e81636"; 3385 + sha512 = "Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ=="; 3378 3386 }; 3379 3387 } 3380 3388 { ··· 3382 3390 path = fetchurl { 3383 3391 name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; 3384 3392 url = "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; 3385 - sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b"; 3393 + sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw=="; 3386 3394 }; 3387 3395 } 3388 3396 { ··· 3390 3398 path = fetchurl { 3391 3399 name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; 3392 3400 url = "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; 3393 - sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2"; 3401 + sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ=="; 3394 3402 }; 3395 3403 } 3396 3404 { ··· 3398 3406 path = fetchurl { 3399 3407 name = "snapdragon___snapdragon_0.8.2.tgz"; 3400 3408 url = "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz"; 3401 - sha1 = "64922e7c565b0e14204ba1aa7d6964278d25182d"; 3409 + sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg=="; 3402 3410 }; 3403 3411 } 3404 3412 { ··· 3406 3414 path = fetchurl { 3407 3415 name = "source_map_resolve___source_map_resolve_0.5.3.tgz"; 3408 3416 url = "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz"; 3409 - sha1 = "190866bece7553e1f8f267a2ee82c606b5509a1a"; 3417 + sha512 = "Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw=="; 3410 3418 }; 3411 3419 } 3412 3420 { ··· 3414 3422 path = fetchurl { 3415 3423 name = "source_map_url___source_map_url_0.4.0.tgz"; 3416 3424 url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz"; 3417 - sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; 3425 + sha1 = "PpNdfd1zYxuXZZlW1VEo6HtQhKM="; 3418 3426 }; 3419 3427 } 3420 3428 { ··· 3422 3430 path = fetchurl { 3423 3431 name = "source_map___source_map_0.5.7.tgz"; 3424 3432 url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; 3425 - sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; 3433 + sha1 = "igOdLRAh0i0eoUyA2OpGi6LvP8w="; 3426 3434 }; 3427 3435 } 3428 3436 { ··· 3430 3438 path = fetchurl { 3431 3439 name = "spdx_correct___spdx_correct_3.1.0.tgz"; 3432 3440 url = "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz"; 3433 - sha1 = "fb83e504445268f154b074e218c87c003cd31df4"; 3441 + sha512 = "lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q=="; 3434 3442 }; 3435 3443 } 3436 3444 { ··· 3438 3446 path = fetchurl { 3439 3447 name = "spdx_exceptions___spdx_exceptions_2.3.0.tgz"; 3440 3448 url = "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"; 3441 - sha1 = "3f28ce1a77a00372683eade4a433183527a2163d"; 3449 + sha512 = "/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A=="; 3442 3450 }; 3443 3451 } 3444 3452 { ··· 3446 3454 path = fetchurl { 3447 3455 name = "spdx_expression_parse___spdx_expression_parse_3.0.1.tgz"; 3448 3456 url = "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"; 3449 - sha1 = "cf70f50482eefdc98e3ce0a6833e4a53ceeba679"; 3457 + sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 3450 3458 }; 3451 3459 } 3452 3460 { ··· 3454 3462 path = fetchurl { 3455 3463 name = "spdx_license_ids___spdx_license_ids_3.0.5.tgz"; 3456 3464 url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz"; 3457 - sha1 = "3694b5804567a458d3c8045842a6358632f62654"; 3465 + sha512 = "J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q=="; 3458 3466 }; 3459 3467 } 3460 3468 { ··· 3462 3470 path = fetchurl { 3463 3471 name = "split_string___split_string_3.1.0.tgz"; 3464 3472 url = "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz"; 3465 - sha1 = "7cb09dda3a86585705c64b39a6466038682e8fe2"; 3473 + sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw=="; 3466 3474 }; 3467 3475 } 3468 3476 { ··· 3470 3478 path = fetchurl { 3471 3479 name = "sprintf_js___sprintf_js_1.0.3.tgz"; 3472 3480 url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz"; 3473 - sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 3481 + sha1 = "BOaSb2YolTVPPdAVIDYzuFcpfiw="; 3482 + }; 3483 + } 3484 + { 3485 + name = "ssri___ssri_10.0.0.tgz"; 3486 + path = fetchurl { 3487 + name = "ssri___ssri_10.0.0.tgz"; 3488 + url = "https://registry.yarnpkg.com/ssri/-/ssri-10.0.0.tgz"; 3489 + sha512 = "64ghGOpqW0k+jh7m5jndBGdVEoPikWwGQmBNN5ks6jyUSMymzHDTlnNHOvzp+6MmHOljr2MokUzvRksnTwG0Iw=="; 3474 3490 }; 3475 3491 } 3476 3492 { ··· 3478 3494 path = fetchurl { 3479 3495 name = "staged_git_files___staged_git_files_1.1.2.tgz"; 3480 3496 url = "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-1.1.2.tgz"; 3481 - sha1 = "4326d33886dc9ecfa29a6193bf511ba90a46454b"; 3497 + sha512 = "0Eyrk6uXW6tg9PYkhi/V/J4zHp33aNyi2hOCmhFLqLTIhbgqWn5jlSzI+IU0VqrZq6+DbHcabQl/WP6P3BG0QA=="; 3482 3498 }; 3483 3499 } 3484 3500 { ··· 3486 3502 path = fetchurl { 3487 3503 name = "static_extend___static_extend_0.1.2.tgz"; 3488 3504 url = "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz"; 3489 - sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; 3505 + sha1 = "YICcOcv/VTNyJv1eC1IPNB8ftcY="; 3490 3506 }; 3491 3507 } 3492 3508 { ··· 3494 3510 path = fetchurl { 3495 3511 name = "string_argv___string_argv_0.0.2.tgz"; 3496 3512 url = "https://registry.yarnpkg.com/string-argv/-/string-argv-0.0.2.tgz"; 3497 - sha1 = "dac30408690c21f3c3630a3ff3a05877bdcbd736"; 3513 + sha1 = "2sMECGkMIfPDYwo/86BYd73L1zY="; 3498 3514 }; 3499 3515 } 3500 3516 { ··· 3502 3518 path = fetchurl { 3503 3519 name = "string_width___string_width_1.0.2.tgz"; 3504 3520 url = "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz"; 3505 - sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; 3521 + sha1 = "EYvfW4zcUaKn5w0hHgfisLmxB9M="; 3506 3522 }; 3507 3523 } 3508 3524 { ··· 3510 3526 path = fetchurl { 3511 3527 name = "string_width___string_width_2.1.1.tgz"; 3512 3528 url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz"; 3513 - sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e"; 3529 + sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; 3514 3530 }; 3515 3531 } 3516 3532 { ··· 3518 3534 path = fetchurl { 3519 3535 name = "string_width___string_width_3.1.0.tgz"; 3520 3536 url = "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz"; 3521 - sha1 = "22767be21b62af1081574306f69ac51b62203961"; 3537 + sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; 3522 3538 }; 3523 3539 } 3524 3540 { ··· 3526 3542 path = fetchurl { 3527 3543 name = "string.prototype.matchall___string.prototype.matchall_4.0.2.tgz"; 3528 3544 url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz"; 3529 - sha1 = "48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e"; 3545 + sha512 = "N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg=="; 3530 3546 }; 3531 3547 } 3532 3548 { ··· 3534 3550 path = fetchurl { 3535 3551 name = "string.prototype.trimend___string.prototype.trimend_1.0.1.tgz"; 3536 3552 url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz"; 3537 - sha1 = "85812a6b847ac002270f5808146064c995fb6913"; 3553 + sha512 = "LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g=="; 3538 3554 }; 3539 3555 } 3540 3556 { ··· 3542 3558 path = fetchurl { 3543 3559 name = "string.prototype.trimleft___string.prototype.trimleft_2.1.2.tgz"; 3544 3560 url = "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz"; 3545 - sha1 = "4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc"; 3561 + sha512 = "gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw=="; 3546 3562 }; 3547 3563 } 3548 3564 { ··· 3550 3566 path = fetchurl { 3551 3567 name = "string.prototype.trimright___string.prototype.trimright_2.1.2.tgz"; 3552 3568 url = "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz"; 3553 - sha1 = "c76f1cef30f21bbad8afeb8db1511496cfb0f2a3"; 3569 + sha512 = "ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg=="; 3554 3570 }; 3555 3571 } 3556 3572 { ··· 3558 3574 path = fetchurl { 3559 3575 name = "string.prototype.trimstart___string.prototype.trimstart_1.0.1.tgz"; 3560 3576 url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz"; 3561 - sha1 = "14af6d9f34b053f7cfc89b72f8f2ee14b9039a54"; 3577 + sha512 = "XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw=="; 3562 3578 }; 3563 3579 } 3564 3580 { ··· 3566 3582 path = fetchurl { 3567 3583 name = "string_decoder___string_decoder_1.1.1.tgz"; 3568 3584 url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz"; 3569 - sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8"; 3585 + sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 3570 3586 }; 3571 3587 } 3572 3588 { ··· 3574 3590 path = fetchurl { 3575 3591 name = "stringify_object___stringify_object_3.3.0.tgz"; 3576 3592 url = "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz"; 3577 - sha1 = "703065aefca19300d3ce88af4f5b3956d7556629"; 3593 + sha512 = "rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw=="; 3578 3594 }; 3579 3595 } 3580 3596 { ··· 3582 3598 path = fetchurl { 3583 3599 name = "strip_ansi___strip_ansi_3.0.1.tgz"; 3584 3600 url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz"; 3585 - sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; 3601 + sha1 = "ajhfuIU9lS1f8F0Oiq+UJ43GPc8="; 3586 3602 }; 3587 3603 } 3588 3604 { ··· 3590 3606 path = fetchurl { 3591 3607 name = "strip_ansi___strip_ansi_4.0.0.tgz"; 3592 3608 url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz"; 3593 - sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; 3609 + sha1 = "qEeQIusaw2iocTibY1JixQXuNo8="; 3594 3610 }; 3595 3611 } 3596 3612 { ··· 3598 3614 path = fetchurl { 3599 3615 name = "strip_ansi___strip_ansi_5.2.0.tgz"; 3600 3616 url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz"; 3601 - sha1 = "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"; 3617 + sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; 3602 3618 }; 3603 3619 } 3604 3620 { ··· 3606 3622 path = fetchurl { 3607 3623 name = "strip_bom___strip_bom_3.0.0.tgz"; 3608 3624 url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz"; 3609 - sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; 3625 + sha1 = "IzTBjpx1n3vdVv3vfprj1YjmjtM="; 3610 3626 }; 3611 3627 } 3612 3628 { ··· 3614 3630 path = fetchurl { 3615 3631 name = "strip_eof___strip_eof_1.0.0.tgz"; 3616 3632 url = "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz"; 3617 - sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; 3633 + sha1 = "u0P/VZim6wXYm1n80SnJgzE2Br8="; 3618 3634 }; 3619 3635 } 3620 3636 { ··· 3622 3638 path = fetchurl { 3623 3639 name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; 3624 3640 url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; 3625 - sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 3641 + sha1 = "PFMZQukIwml8DsNEhYwobHygpgo="; 3626 3642 }; 3627 3643 } 3628 3644 { ··· 3630 3646 path = fetchurl { 3631 3647 name = "supports_color___supports_color_2.0.0.tgz"; 3632 3648 url = "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz"; 3633 - sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; 3649 + sha1 = "U10EXOa2Nj+kARcIRimZXp3zJMc="; 3634 3650 }; 3635 3651 } 3636 3652 { ··· 3638 3654 path = fetchurl { 3639 3655 name = "supports_color___supports_color_4.5.0.tgz"; 3640 3656 url = "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz"; 3641 - sha1 = "be7a0de484dec5c5cddf8b3d59125044912f635b"; 3657 + sha1 = "vnoN5ITexcXN34s9WRJQRJEvY1s="; 3642 3658 }; 3643 3659 } 3644 3660 { ··· 3646 3662 path = fetchurl { 3647 3663 name = "supports_color___supports_color_5.5.0.tgz"; 3648 3664 url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; 3649 - sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f"; 3665 + sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 3650 3666 }; 3651 3667 } 3652 3668 { ··· 3654 3670 path = fetchurl { 3655 3671 name = "symbol_observable___symbol_observable_1.0.1.tgz"; 3656 3672 url = "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz"; 3657 - sha1 = "8340fc4702c3122df5d22288f88283f513d3fdd4"; 3673 + sha1 = "g0D8RwLDEi310iKI+IKD9RPT/dQ="; 3658 3674 }; 3659 3675 } 3660 3676 { ··· 3662 3678 path = fetchurl { 3663 3679 name = "symbol_observable___symbol_observable_1.2.0.tgz"; 3664 3680 url = "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz"; 3665 - sha1 = "c22688aed4eab3cdc2dfeacbb561660560a00804"; 3681 + sha512 = "e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="; 3666 3682 }; 3667 3683 } 3668 3684 { ··· 3670 3686 path = fetchurl { 3671 3687 name = "synchronous_promise___synchronous_promise_2.0.12.tgz"; 3672 3688 url = "https://registry.yarnpkg.com/synchronous-promise/-/synchronous-promise-2.0.12.tgz"; 3673 - sha1 = "219934f23c19c9aa716276cf2e1f8d4e5b04d07f"; 3689 + sha512 = "rIDJiHmIK02tXU+eW1v6a7rNIIiMLm5JUF5Uj2fT6oLSulg7WNDVoqvkYqkFoJzf4v2gmTLppvzegdo9R+7h1Q=="; 3674 3690 }; 3675 3691 } 3676 3692 { ··· 3678 3694 path = fetchurl { 3679 3695 name = "table___table_4.0.2.tgz"; 3680 3696 url = "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz"; 3681 - sha1 = "a33447375391e766ad34d3486e6e2aedc84d2e36"; 3697 + sha512 = "UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA=="; 3682 3698 }; 3683 3699 } 3684 3700 { ··· 3686 3702 path = fetchurl { 3687 3703 name = "table___table_5.4.6.tgz"; 3688 3704 url = "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz"; 3689 - sha1 = "1292d19500ce3f86053b05f0e8e7e4a3bb21079e"; 3705 + sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="; 3690 3706 }; 3691 3707 } 3692 3708 { ··· 3694 3710 path = fetchurl { 3695 3711 name = "text_table___text_table_0.2.0.tgz"; 3696 3712 url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz"; 3697 - sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; 3713 + sha1 = "f17oI66AUgfACvLfSoTsP8+lcLQ="; 3698 3714 }; 3699 3715 } 3700 3716 { ··· 3702 3718 path = fetchurl { 3703 3719 name = "through___through_2.3.8.tgz"; 3704 3720 url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; 3705 - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 3721 + sha1 = "DdTJ/6q8NXlgsbckEV1+Doai4fU="; 3706 3722 }; 3707 3723 } 3708 3724 { ··· 3710 3726 path = fetchurl { 3711 3727 name = "tmp___tmp_0.0.33.tgz"; 3712 3728 url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; 3713 - sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; 3729 + sha512 = "jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="; 3714 3730 }; 3715 3731 } 3716 3732 { ··· 3718 3734 path = fetchurl { 3719 3735 name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; 3720 3736 url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 3721 - sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; 3737 + sha1 = "3F5pjL0HkmW8c+A3doGk5Og/YW4="; 3722 3738 }; 3723 3739 } 3724 3740 { ··· 3726 3742 path = fetchurl { 3727 3743 name = "to_object_path___to_object_path_0.3.0.tgz"; 3728 3744 url = "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz"; 3729 - sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; 3745 + sha1 = "KXWIt7Dn4KwI4E5nL4XB9JmeF68="; 3730 3746 }; 3731 3747 } 3732 3748 { ··· 3734 3750 path = fetchurl { 3735 3751 name = "to_regex_range___to_regex_range_2.1.1.tgz"; 3736 3752 url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz"; 3737 - sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; 3753 + sha1 = "fIDBe53+vlmeJzZ+DU3VWQFB2zg="; 3738 3754 }; 3739 3755 } 3740 3756 { ··· 3742 3758 path = fetchurl { 3743 3759 name = "to_regex___to_regex_3.0.2.tgz"; 3744 3760 url = "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz"; 3745 - sha1 = "13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"; 3761 + sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw=="; 3746 3762 }; 3747 3763 } 3748 3764 { ··· 3750 3766 path = fetchurl { 3751 3767 name = "toposort___toposort_2.0.2.tgz"; 3752 3768 url = "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz"; 3753 - sha1 = "ae21768175d1559d48bef35420b2f4962f09c330"; 3769 + sha1 = "riF2gXXRVZ1IvvNUILL0li8JwzA="; 3754 3770 }; 3755 3771 } 3756 3772 { ··· 3758 3774 path = fetchurl { 3759 3775 name = "tslib___tslib_1.13.0.tgz"; 3760 3776 url = "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz"; 3761 - sha1 = "c881e13cc7015894ed914862d276436fa9a47043"; 3777 + sha512 = "i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="; 3762 3778 }; 3763 3779 } 3764 3780 { ··· 3766 3782 path = fetchurl { 3767 3783 name = "type_check___type_check_0.3.2.tgz"; 3768 3784 url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; 3769 - sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; 3785 + sha1 = "WITKtRLPHTVeP7eE8wgEsrUg23I="; 3770 3786 }; 3771 3787 } 3772 3788 { ··· 3774 3790 path = fetchurl { 3775 3791 name = "typedarray___typedarray_0.0.6.tgz"; 3776 3792 url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; 3777 - sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 3793 + sha1 = "hnrHTjhkGHsdPUfZlqeOxciDB3c="; 3778 3794 }; 3779 3795 } 3780 3796 { ··· 3782 3798 path = fetchurl { 3783 3799 name = "typescript_eslint_parser___typescript_eslint_parser_16.0.1.tgz"; 3784 3800 url = "https://registry.yarnpkg.com/typescript-eslint-parser/-/typescript-eslint-parser-16.0.1.tgz"; 3785 - sha1 = "b40681c7043b222b9772748b700a000b241c031b"; 3801 + sha512 = "IKawLTu4A2xN3aN/cPLxvZ0bhxZHILGDKTZWvWNJ3sLNhJ3PjfMEDQmR2VMpdRPrmWOadgWXRwjLBzSA8AGsaQ=="; 3786 3802 }; 3787 3803 } 3788 3804 { ··· 3790 3806 path = fetchurl { 3791 3807 name = "typescript___typescript_2.9.2.tgz"; 3792 3808 url = "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz"; 3793 - sha1 = "1cbf61d05d6b96269244eb6a3bce4bd914e0f00c"; 3809 + sha512 = "Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w=="; 3794 3810 }; 3795 3811 } 3796 3812 { ··· 3798 3814 path = fetchurl { 3799 3815 name = "union_value___union_value_1.0.1.tgz"; 3800 3816 url = "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz"; 3801 - sha1 = "0b6fe7b835aecda61c6ea4d4f02c14221e109847"; 3817 + sha512 = "tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg=="; 3802 3818 }; 3803 3819 } 3804 3820 { ··· 3806 3822 path = fetchurl { 3807 3823 name = "unset_value___unset_value_1.0.0.tgz"; 3808 3824 url = "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz"; 3809 - sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; 3825 + sha1 = "g3aHP30jNRef+x5vw6jtDfyKtVk="; 3810 3826 }; 3811 3827 } 3812 3828 { ··· 3814 3830 path = fetchurl { 3815 3831 name = "uri_js___uri_js_4.2.2.tgz"; 3816 3832 url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz"; 3817 - sha1 = "94c540e1ff772956e2299507c010aea6c8838eb0"; 3833 + sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ=="; 3818 3834 }; 3819 3835 } 3820 3836 { ··· 3822 3838 path = fetchurl { 3823 3839 name = "urix___urix_0.1.0.tgz"; 3824 3840 url = "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz"; 3825 - sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; 3841 + sha1 = "2pN/emLiH+wf0Y1Js1wpNQZ6bHI="; 3826 3842 }; 3827 3843 } 3828 3844 { ··· 3830 3846 path = fetchurl { 3831 3847 name = "use___use_3.1.1.tgz"; 3832 3848 url = "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz"; 3833 - sha1 = "d50c8cac79a19fbc20f2911f56eb973f4e10070f"; 3849 + sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="; 3834 3850 }; 3835 3851 } 3836 3852 { ··· 3838 3854 path = fetchurl { 3839 3855 name = "util_deprecate___util_deprecate_1.0.2.tgz"; 3840 3856 url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; 3841 - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 3857 + sha1 = "RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="; 3842 3858 }; 3843 3859 } 3844 3860 { ··· 3846 3862 path = fetchurl { 3847 3863 name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; 3848 3864 url = "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; 3849 - sha1 = "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"; 3865 + sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="; 3850 3866 }; 3851 3867 } 3852 3868 { ··· 3854 3870 path = fetchurl { 3855 3871 name = "vue_eslint_parser___vue_eslint_parser_2.0.3.tgz"; 3856 3872 url = "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz"; 3857 - sha1 = "c268c96c6d94cfe3d938a5f7593959b0ca3360d1"; 3873 + sha512 = "ZezcU71Owm84xVF6gfurBQUGg8WQ+WZGxgDEQu1IHFBZNx7BFZg3L1yHxrCBNNwbwFtE1GuvfJKMtb6Xuwc/Bw=="; 3858 3874 }; 3859 3875 } 3860 3876 { ··· 3862 3878 path = fetchurl { 3863 3879 name = "which_module___which_module_2.0.0.tgz"; 3864 3880 url = "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz"; 3865 - sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; 3881 + sha1 = "2e8H3Od7mQK4o6j6SzHD4/fm6Ho="; 3866 3882 }; 3867 3883 } 3868 3884 { ··· 3870 3886 path = fetchurl { 3871 3887 name = "which___which_1.3.1.tgz"; 3872 3888 url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz"; 3873 - sha1 = "a45043d54f5805316da8d62f9f50918d3da70b0a"; 3889 + sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="; 3874 3890 }; 3875 3891 } 3876 3892 { ··· 3878 3894 path = fetchurl { 3879 3895 name = "word_wrap___word_wrap_1.2.3.tgz"; 3880 3896 url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz"; 3881 - sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c"; 3897 + sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 3882 3898 }; 3883 3899 } 3884 3900 { ··· 3886 3902 path = fetchurl { 3887 3903 name = "wrap_ansi___wrap_ansi_2.1.0.tgz"; 3888 3904 url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; 3889 - sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; 3905 + sha1 = "2Pw9KE3QV5T+hJc8rs3Rz4JP3YU="; 3890 3906 }; 3891 3907 } 3892 3908 { ··· 3894 3910 path = fetchurl { 3895 3911 name = "wrap_ansi___wrap_ansi_3.0.1.tgz"; 3896 3912 url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz"; 3897 - sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba"; 3913 + sha1 = "KIoE2H7aXChuBg3+jxNc6NAH+Lo="; 3898 3914 }; 3899 3915 } 3900 3916 { ··· 3902 3918 path = fetchurl { 3903 3919 name = "wrappy___wrappy_1.0.2.tgz"; 3904 3920 url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; 3905 - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 3921 + sha1 = "tSQ9jz7BqjXxNkYFvA0QNuMKtp8="; 3906 3922 }; 3907 3923 } 3908 3924 { ··· 3910 3926 path = fetchurl { 3911 3927 name = "write___write_1.0.3.tgz"; 3912 3928 url = "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz"; 3913 - sha1 = "0800e14523b923a387e415123c865616aae0f5c3"; 3929 + sha512 = "/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig=="; 3914 3930 }; 3915 3931 } 3916 3932 { ··· 3918 3934 path = fetchurl { 3919 3935 name = "write___write_0.2.1.tgz"; 3920 3936 url = "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz"; 3921 - sha1 = "5fc03828e264cea3fe91455476f7a3c566cb0757"; 3937 + sha1 = "X8A4KOJkzqP+kUVUdvejxWbLB1c="; 3922 3938 }; 3923 3939 } 3924 3940 { ··· 3926 3942 path = fetchurl { 3927 3943 name = "xregexp___xregexp_4.3.0.tgz"; 3928 3944 url = "https://registry.yarnpkg.com/xregexp/-/xregexp-4.3.0.tgz"; 3929 - sha1 = "7e92e73d9174a99a59743f67a4ce879a04b5ae50"; 3945 + sha512 = "7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g=="; 3930 3946 }; 3931 3947 } 3932 3948 { ··· 3934 3950 path = fetchurl { 3935 3951 name = "y18n___y18n_3.2.1.tgz"; 3936 3952 url = "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz"; 3937 - sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41"; 3953 + sha1 = "bRX7qITAhnnA136I53WegR4H+kE="; 3938 3954 }; 3939 3955 } 3940 3956 { ··· 3942 3958 path = fetchurl { 3943 3959 name = "yallist___yallist_2.1.2.tgz"; 3944 3960 url = "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz"; 3945 - sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; 3961 + sha1 = "HBH5IY8HYImkfdUS+TxmmaaoHVI="; 3962 + }; 3963 + } 3964 + { 3965 + name = "yallist___yallist_4.0.0.tgz"; 3966 + path = fetchurl { 3967 + name = "yallist___yallist_4.0.0.tgz"; 3968 + url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz"; 3969 + sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 3946 3970 }; 3947 3971 } 3948 3972 { ··· 3950 3974 path = fetchurl { 3951 3975 name = "yargs_parser___yargs_parser_8.1.0.tgz"; 3952 3976 url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz"; 3953 - sha1 = "f1376a33b6629a5d063782944da732631e966950"; 3977 + sha512 = "yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ=="; 3954 3978 }; 3955 3979 } 3956 3980 { ··· 3958 3982 path = fetchurl { 3959 3983 name = "yargs___yargs_10.0.3.tgz"; 3960 3984 url = "https://registry.yarnpkg.com/yargs/-/yargs-10.0.3.tgz"; 3961 - sha1 = "6542debd9080ad517ec5048fb454efe9e4d4aaae"; 3985 + sha512 = "DqBpQ8NAUX4GyPP/ijDGHsJya4tYqLQrjPr95HNsr1YwL3+daCfvBwg7+gIC6IdJhR2kATh3hb61vjzMWEtjdw=="; 3962 3986 }; 3963 3987 } 3964 3988 { ··· 3966 3990 path = fetchurl { 3967 3991 name = "yup___yup_0.27.0.tgz"; 3968 3992 url = "https://registry.yarnpkg.com/yup/-/yup-0.27.0.tgz"; 3969 - sha1 = "f8cb198c8e7dd2124beddc2457571329096b06e7"; 3993 + sha512 = "v1yFnE4+u9za42gG/b/081E7uNW9mUj3qtkmelLbW5YPROZzSH/KUUyJu9Wt8vxFJcT9otL/eZopS0YK1L5yPQ=="; 3970 3994 }; 3971 3995 } 3972 3996 ];
+41
pkgs/misc/uboot/default.nix
··· 211 211 ''; 212 212 }; 213 213 214 + # Flashing instructions: 215 + # dd if=u-boot.gxl.sd.bin of=<sdcard> conv=fsync,notrunc bs=512 skip=1 seek=1 216 + # dd if=u-boot.gxl.sd.bin of=<sdcard> conv=fsync,notrunc bs=1 count=444 217 + ubootLibreTechCC = let 218 + firmwareImagePkg = fetchFromGitHub { 219 + owner = "LibreELEC"; 220 + repo = "amlogic-boot-fip"; 221 + rev = "4369a138ca24c5ab932b8cbd1af4504570b709df"; 222 + sha256 = "sha256-mGRUwdh3nW4gBwWIYHJGjzkezHxABwcwk/1gVRis7Tc="; 223 + meta.license = lib.licenses.unfreeRedistributableFirmware; 224 + }; 225 + in 226 + assert stdenv.buildPlatform.system == "x86_64-linux"; # aml_encrypt_gxl is a x86_64 binary 227 + buildUBoot { 228 + defconfig = "libretech-cc_defconfig"; 229 + extraMeta.platforms = ["aarch64-linux"]; 230 + filesToInstall = ["u-boot.bin"]; 231 + postBuild = '' 232 + # Copy binary files & tools from LibreELEC/amlogic-boot-fip, and u-boot build to working dir 233 + mkdir $out tmp 234 + cp ${firmwareImagePkg}/lepotato/{acs.bin,bl2.bin,bl21.bin,bl30.bin,bl301.bin,bl31.img} \ 235 + ${firmwareImagePkg}/lepotato/{acs_tool.py,aml_encrypt_gxl,blx_fix.sh} \ 236 + u-boot.bin tmp/ 237 + cd tmp 238 + python3 acs_tool.py bl2.bin bl2_acs.bin acs.bin 0 239 + 240 + bash -e blx_fix.sh bl2_acs.bin zero bl2_zero.bin bl21.bin bl21_zero.bin bl2_new.bin bl2 241 + [ -f zero ] && rm zero 242 + 243 + bash -e blx_fix.sh bl30.bin zero bl30_zero.bin bl301.bin bl301_zero.bin bl30_new.bin bl30 244 + [ -f zero ] && rm zero 245 + 246 + ./aml_encrypt_gxl --bl2sig --input bl2_new.bin --output bl2.n.bin.sig 247 + ./aml_encrypt_gxl --bl3enc --input bl30_new.bin --output bl30_new.bin.enc 248 + ./aml_encrypt_gxl --bl3enc --input bl31.img --output bl31.img.enc 249 + ./aml_encrypt_gxl --bl3enc --input u-boot.bin --output bl33.bin.enc 250 + ./aml_encrypt_gxl --bootmk --output $out/u-boot.gxl \ 251 + --bl2 bl2.n.bin.sig --bl30 bl30_new.bin.enc --bl31 bl31.img.enc --bl33 bl33.bin.enc 252 + ''; 253 + }; 254 + 214 255 ubootNanoPCT4 = buildUBoot rec { 215 256 rkbin = fetchFromGitHub { 216 257 owner = "armbian";
+10 -14
pkgs/os-specific/linux/firmware/sof-firmware/default.nix
··· 1 1 { lib 2 + , fetchurl 2 3 , stdenvNoCC 3 - , fetchFromGitHub 4 4 }: 5 5 6 6 stdenvNoCC.mkDerivation rec { 7 7 pname = "sof-firmware"; 8 - version = "2.2.2"; 8 + version = "2.2.3"; 9 9 10 - src = fetchFromGitHub { 11 - owner = "thesofproject"; 12 - repo = "sof-bin"; 13 - rev = "v${version}"; 14 - sha256 = "sha256-ztewE/8Mc0bbKbxmbJ2sBn3TysuM9hoaSgqrboy77oI="; 10 + src = fetchurl { 11 + url = "https://github.com/thesofproject/sof-bin/releases/download/v${version}/sof-bin-v${version}.tar.gz"; 12 + sha256 = "sha256-WR/9ZvHisycDjJHt88hQK0FywdyFDP5EBQ6t+OT620I="; 15 13 }; 16 14 17 15 dontFixup = true; # binaries must not be stripped or patchelfed 18 16 19 - # There is no proper structure in the upstream repo. 20 - # This needs to be adapted by hand for every new release. 21 17 installPhase = '' 22 18 runHook preInstall 23 - cd "v2.2.x" 24 - mkdir -p $out/lib/firmware/intel/sof{,-tplg} 25 - cp -a sof-v2.2/* $out/lib/firmware/intel/sof 26 - cp -a sof-v2.2.2/* $out/lib/firmware/intel/sof 27 - cp -a sof-tplg-v2.2.1/* $out/lib/firmware/intel/sof-tplg 19 + mkdir -p $out/lib/firmware/intel 20 + cp -av sof-v${version} $out/lib/firmware/intel/sof 21 + cp -av sof-tplg-v${version} $out/lib/firmware/intel/sof-tplg 28 22 runHook postInstall 29 23 ''; 30 24 31 25 meta = with lib; { 26 + changelog = "https://github.com/thesofproject/sof-bin/releases/tag/v${version}"; 32 27 description = "Sound Open Firmware"; 33 28 homepage = "https://www.sofproject.org/"; 34 29 license = with licenses; [ bsd3 isc ]; 35 30 maintainers = with maintainers; [ lblasc evenbrenden hmenke ]; 36 31 platforms = with platforms; linux; 32 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 37 33 }; 38 34 }
+26
pkgs/servers/code-server/build-vscode-nogit.patch
··· 1 + --- ./ci/build/build-vscode.sh 2 + +++ ./ci/build/build-vscode.sh 3 + @@ -45,14 +45,12 @@ 4 + # Set the commit Code will embed into the product.json. We need to do this 5 + # since Code tries to get the commit from the `.git` directory which will fail 6 + # as it is a submodule. 7 + - export VSCODE_DISTRO_COMMIT 8 + - VSCODE_DISTRO_COMMIT=$(git rev-parse HEAD) 9 + + export VSCODE_DISTRO_COMMIT=none 10 + 11 + # Add the date, our name, links, and enable telemetry (this just makes 12 + # telemetry available; telemetry can still be disabled by flag or setting). 13 + # This needs to be done before building as Code will read this file and embed 14 + # it into the client-side code. 15 + - git checkout product.json # Reset in case the script exited early. 16 + cp product.json product.original.json # Since jq has no inline edit. 17 + jq --slurp '.[0] * .[1]' product.original.json <( 18 + cat << EOF 19 + @@ -99,7 +97,6 @@ 20 + # Reset so if you develop after building you will not be stuck with the wrong 21 + # commit (the dev client will use `oss-dev` but the dev server will still use 22 + # product.json which will have `stable-$commit`). 23 + - git checkout product.json 24 + 25 + popd 26 +
+47 -52
pkgs/servers/code-server/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, buildGoModule, makeWrapper, runCommand 2 2 , cacert, moreutils, jq, git, rsync, pkg-config, yarn, python3 3 - , esbuild, nodejs-14_x, node-gyp, libsecret, xorg, ripgrep 4 - , AppKit, Cocoa, CoreServices, Security, cctools, xcbuild }: 3 + , esbuild, nodejs-16_x, node-gyp, libsecret, xorg, ripgrep 4 + , AppKit, Cocoa, CoreServices, Security, cctools, xcbuild, quilt }: 5 5 6 6 let 7 7 system = stdenv.hostPlatform.system; 8 8 9 - nodejs = nodejs-14_x; 9 + nodejs = nodejs-16_x; 10 10 python = python3; 11 11 yarn' = yarn.override { inherit nodejs; }; 12 - defaultYarnOpts = [ "frozen-lockfile" "non-interactive" "no-progress"]; 12 + defaultYarnOpts = [ ]; 13 13 14 14 # replaces esbuild's download script with a binary from nixpkgs 15 15 patchEsbuild = path : version : '' ··· 21 21 22 22 in stdenv.mkDerivation rec { 23 23 pname = "code-server"; 24 - version = "4.0.1"; 25 - commit = "7fe23daf009e5234eaa54a1ea5ff26df384c47ac"; 24 + version = "4.8.3"; 26 25 27 26 src = fetchFromGitHub { 28 - owner = "cdr"; 27 + owner = "coder"; 29 28 repo = "code-server"; 30 29 rev = "v${version}"; 31 - sha256 = "1s3dcmzlkyh7qfs3ai1p7dlp45iys0ax1fbxxz17p395pw9anrrl"; 30 + fetchSubmodules = true; 31 + sha256 = "1h5ng60wf3gpsydfkv20x30xsw1f5zcvv77l1mzrqz1mhcw93lvz"; 32 32 }; 33 33 34 34 cloudAgent = buildGoModule rec { 35 35 pname = "cloud-agent"; 36 - version = "0.2.3"; 36 + version = "0.2.6"; 37 37 38 38 src = fetchFromGitHub { 39 - owner = "cdr"; 39 + owner = "coder"; 40 40 repo = "cloud-agent"; 41 41 rev = "v${version}"; 42 - sha256 = "14i1qq273f0yn5v52ryiqwj7izkd1yd212di4gh4bqypmmzhw3jj"; 42 + sha256 = "1s3jpgvzizc9skc27c3x35sya2p4ywhvdi3l73927z3j47wszy7f"; 43 43 }; 44 44 45 - vendorSha256 = "0k9v10wkzx53r5syf6bmm81gr4s5dalyaa07y9zvx6vv5r2h0661"; 45 + vendorSha256 = "14xzlbmki8fk8mbcci62q8sklyd0nyga07ww1ap0vdrv7d1g31hn"; 46 46 47 47 postPatch = '' 48 48 # the cloud-agent release tag has an empty version string, so add it back in ··· 66 66 xargs -I {} yarn --cwd {} \ 67 67 --frozen-lockfile --ignore-scripts --ignore-platform \ 68 68 --ignore-engines --no-progress --non-interactive 69 + 70 + find ./lib/vscode -name "yarn.lock" -printf "%h\n" | \ 71 + xargs -I {} yarn --cwd {} \ 72 + --ignore-scripts --ignore-engines 69 73 ''; 70 74 outputHashMode = "recursive"; 71 75 outputHashAlgo = "sha256"; 72 76 73 77 # to get hash values use nix-build -A code-server.prefetchYarnCache 74 - outputHash = "0qmfsirld1qfl2s26rxbpmvxsyj2pvzkgk8w89zlrgbhgc5fj8p9"; 78 + outputHash = "0jzzbmmgv1nfq975mi9ii9l6c4f1wy10fyy117xgm4s6vxana7qn"; 75 79 }; 76 80 77 81 nativeBuildInputs = [ 78 - nodejs yarn' python pkg-config makeWrapper git rsync jq moreutils 82 + nodejs yarn' python pkg-config makeWrapper git rsync jq moreutils quilt 79 83 ]; 80 84 buildInputs = lib.optionals (!stdenv.isDarwin) [ libsecret ] 81 85 ++ (with xorg; [ libX11 libxkbfile ]) ··· 86 90 patches = [ 87 91 # remove download of coder-cloud agent 88 92 ./remove-cloud-agent-download.patch 93 + # remove git calls from vscode build script 94 + ./build-vscode-nogit.patch 89 95 ]; 90 96 91 97 postPatch = '' ··· 133 139 # install code-server dependencies 134 140 yarn --offline --ignore-scripts 135 141 142 + # apply patches 143 + quilt push -a 144 + 136 145 # patch shebangs of everything to allow binary packages to build 137 146 patchShebangs . 138 147 139 - # Skip shellcheck download 140 - jq "del(.scripts.preinstall)" node_modules/shellcheck/package.json | sponge node_modules/shellcheck/package.json 148 + export PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 149 + export SKIP_SUBMODULE_DEPS=1 150 + export NODE_OPTIONS=--openssl-legacy-provider 141 151 142 152 # rebuild binary packages now that scripts have been patched 143 - npm rebuild 153 + echo "----- NPM rebuild" 154 + npm rebuild --prefer-offline 144 155 145 156 # Replicate ci/dev/postinstall.sh 146 157 echo "----- Replicate ci/dev/postinstall.sh" 147 158 yarn --cwd "./vendor" install --modules-folder modules --offline --ignore-scripts --frozen-lockfile 148 159 149 - # Replicate vendor/postinstall.sh 150 - echo " ----- Replicate vendor/postinstall.sh" 151 - yarn --cwd "./vendor/modules/code-oss-dev" --offline --frozen-lockfile --ignore-scripts install 152 - 153 160 # remove all built-in extensions, as these are 3rd party extensions that 154 161 # get downloaded from vscode marketplace 155 - jq --slurp '.[0] * .[1]' "vendor/modules/code-oss-dev/product.json" <( 162 + jq --slurp '.[0] * .[1]' "./lib/vscode/product.json" <( 156 163 cat << EOF 157 164 { 158 165 "builtInExtensions": [] 159 166 } 160 167 EOF 161 - ) | sponge vendor/modules/code-oss-dev/product.json 168 + ) | sponge ./lib/vscode/product.json 162 169 163 170 # disable automatic updates 164 171 sed -i '/update.mode/,/\}/{s/default:.*/default: "none",/g}' \ 165 - vendor/modules/code-oss-dev/src/vs/platform/update/common/update.config.contribution.ts 166 - 167 - # put ripgrep binary into bin, so postinstall does not try to download it 168 - find -name vscode-ripgrep -type d \ 169 - -execdir mkdir -p {}/bin \; \ 170 - -execdir ln -s ${ripgrep}/bin/rg {}/bin/rg \; 171 - 172 - # Playwright is only needed for tests, we can disable it for builds. 173 - # There's an environment variable to disable downloads, but the package makes a breaking call to 174 - # sw_vers before that variable is checked. 175 - patch -p1 -i ${./playwright.patch} 172 + lib/vscode/src/vs/platform/update/common/update.config.contribution.ts 176 173 177 174 # Patch out remote download of nodejs from build script 178 175 patch -p1 -i ${./remove-node-download.patch} 179 176 180 - # Replicate install vscode dependencies without running script for all vscode packages 181 - # that require patching for postinstall scripts to succeed 182 - find ./vendor/modules/code-oss-dev -path "*node_modules" -prune -o \ 183 - -path "./*/*/*/*/*" -name "yarn.lock" -printf "%h\n" | \ 177 + # Fetch packages for vscode 178 + find ./lib/vscode -name "yarn.lock" -printf "%h\n" | \ 184 179 xargs -I {} yarn --cwd {} \ 185 - --frozen-lockfile --offline --ignore-scripts --ignore-engines 186 - 180 + --frozen-lockfile --ignore-scripts --ignore-engines 187 181 188 182 # patch shebangs of everything to allow binary packages to build 189 183 patchShebangs . 190 184 191 - ${patchEsbuild "./vendor/modules/code-oss-dev/build" "0.12.6"} 192 - ${patchEsbuild "./vendor/modules/code-oss-dev/extensions" "0.11.23"} 193 - '' + lib.optionalString stdenv.isDarwin '' 185 + ${patchEsbuild "./lib/vscode/build" "0.12.6"} 186 + ${patchEsbuild "./lib/vscode/extensions" "0.11.23"} 187 + '' + lib.optionalString stdenv.isDarwin '' 194 188 # use prebuilt binary for @parcel/watcher, which requires macOS SDK 10.13+ 195 189 # (see issue #101229) 196 - pushd ./vendor/modules/code-oss-dev/remote/node_modules/@parcel/watcher 190 + pushd ./lib/vscode/remote/node_modules/@parcel/watcher 197 191 mkdir -p ./build/Release 198 192 mv ./prebuilds/darwin-x64/node.napi.glibc.node ./build/Release/watcher.node 199 193 jq "del(.scripts) | .gypfile = false" ./package.json | sponge ./package.json 200 194 popd 201 195 '' + '' 202 - # rebuild binaries, we use npm here, as yarn does not provide an alternative 203 - # that would not attempt to try to reinstall everything and break our 204 - # patching attempts 205 - npm rebuild --prefix vendor/modules/code-oss-dev --update-binary 196 + 197 + # put ripgrep binary into bin, so postinstall does not try to download it 198 + find -name ripgrep -type d \ 199 + -execdir mkdir -p {}/bin \; \ 200 + -execdir ln -s ${ripgrep}/bin/rg {}/bin/rg \; 206 201 207 202 # run postinstall scripts after patching 208 - find ./vendor/modules/code-oss-dev -path "*node_modules" -prune -o \ 203 + find ./lib/vscode -path "*node_modules" -prune -o \ 209 204 -path "./*/*/*/*/*" -name "yarn.lock" -printf "%h\n" | \ 210 205 xargs -I {} sh -c 'jq -e ".scripts.postinstall" {}/package.json >/dev/null && yarn --cwd {} postinstall --frozen-lockfile --offline || true' 211 206 ··· 233 228 ln -s "${cloudAgent}/bin/cloud-agent" $out/libexec/code-server/lib/coder-cloud-agent 234 229 235 230 # create wrapper 236 - makeWrapper "${nodejs-14_x}/bin/node" "$out/bin/code-server" \ 231 + makeWrapper "${nodejs-16_x}/bin/node" "$out/bin/code-server" \ 237 232 --add-flags "$out/libexec/code-server/out/node/entry.js" 238 233 ''; 239 234 ··· 249 244 code-server is VS Code running on a remote server, accessible through the 250 245 browser. 251 246 ''; 252 - homepage = "https://github.com/cdr/code-server"; 247 + homepage = "https://github.com/coder/code-server"; 253 248 license = licenses.mit; 254 - maintainers = with maintainers; [ offline ]; 249 + maintainers = with maintainers; [ offline henkery ]; 255 250 platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ]; 256 251 }; 257 252 }
+7 -7
pkgs/servers/code-server/remove-cloud-agent-download.patch
··· 1 1 --- ./ci/build/npm-postinstall.sh 2 2 +++ ./ci/build/npm-postinstall.sh 3 - @@ -58,14 +58,6 @@ 4 - 5 - OS="$(uname | tr '[:upper:]' '[:lower:]')" 6 - 3 + @@ -102,14 +102,6 @@ 4 + ;; 5 + esac 6 + 7 7 - mkdir -p ./lib 8 8 - 9 - - if curl -fsSL "https://github.com/cdr/cloud-agent/releases/latest/download/cloud-agent-$OS-$ARCH" -o ./lib/coder-cloud-agent; then 9 + - if curl -fsSL "https://github.com/coder/cloud-agent/releases/latest/download/cloud-agent-$OS-$ARCH" -o ./lib/coder-cloud-agent; then 10 10 - chmod +x ./lib/coder-cloud-agent 11 11 - else 12 12 - echo "Failed to download cloud agent; --link will not work" 13 13 - fi 14 14 - 15 - if ! vscode_yarn; then 15 + if ! vscode_install; then 16 16 echo "You may not have the required dependencies to build the native modules." 17 - echo "Please see https://github.com/cdr/code-server/blob/master/docs/npm.md" 17 + echo "Please see https://github.com/coder/code-server/blob/main/docs/npm.md"
+9 -8
pkgs/servers/code-server/remove-node-download.patch
··· 1 - --- ./vendor/modules/code-oss-dev/build/gulpfile.reh.js 2 - +++ ./vendor/modules/code-oss-dev/build/gulpfile.reh.js 3 - @@ -277,8 +277,6 @@ 1 + --- ./lib/vscode/build/gulpfile.reh.js 2 + +++ ./lib/vscode/build/gulpfile.reh.js 3 + @@ -268,9 +268,6 @@ 4 4 .pipe(util.stripSourceMappingURL()) 5 5 .pipe(jsFilter.restore); 6 6 7 - - const nodePath = `.build/node/v${nodeVersion}/${platform}-${platform === 'darwin' ? 'x64' : arch}`; 7 + - const nodePath = `.build/node/v${nodeVersion}/${platform}-${arch}`; 8 8 - const node = gulp.src(`${nodePath}/**`, { base: nodePath, dot: true }); 9 - 9 + - 10 10 let web = []; 11 11 if (type === 'reh-web') { 12 - @@ -296,7 +294,6 @@ 12 + web = [ 13 + @@ -287,7 +284,6 @@ 13 14 license, 14 15 sources, 15 16 deps, ··· 17 18 ...web 18 19 ); 19 20 20 - @@ -376,7 +373,6 @@ 21 + @@ -385,7 +381,6 @@ 21 22 const destinationFolderName = `vscode-${type}${dashed(platform)}${dashed(arch)}`; 22 23 23 24 const serverTaskCI = task.define(`vscode-${type}${dashed(platform)}${dashed(arch)}${dashed(minified)}-ci`, task.series( 24 - - gulp.task(`node-${platform}-${platform === 'darwin' ? 'x64' : arch}`), 25 + - gulp.task(`node-${platform}-${arch}`), 25 26 util.rimraf(path.join(BUILD_ROOT, destinationFolderName)), 26 27 packageTask(type, platform, arch, sourceFolderName, destinationFolderName) 27 28 ));
+2 -1
pkgs/tools/admin/salt/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , python3 3 4 , openssl 4 5 , fetchpatch ··· 35 36 36 37 postPatch = '' 37 38 substituteInPlace "salt/utils/rsax931.py" \ 38 - --subst-var-by "libcrypto" "${lib.getLib openssl}/lib/libcrypto.so" 39 + --subst-var-by "libcrypto" "${lib.getLib openssl}/lib/libcrypto${stdenv.hostPlatform.extensions.sharedLibrary}" 39 40 substituteInPlace requirements/base.txt \ 40 41 --replace contextvars "" 41 42
+3 -3
pkgs/tools/misc/faketty/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "faketty"; 5 - version = "1.0.11"; 5 + version = "1.0.12"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-HMeJNUF4VT2WdGwAW21GvCp33Bg2HB8NCHv0+3cf74U="; 9 + sha256 = "sha256-1q1TOwKC2Tse/Ct/6Nw7YiOviJyBZAsOBEp3sT4N0ss="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-jhSleyhBquU0PxmVPGo1CkuwrzLG7WG5ANPmZ14/ui0="; 12 + cargoSha256 = "sha256-x8+7sZJnA+kEwKAu8DBF8z7JhWjJ6ZFiLaQP8kFOt08="; 13 13 14 14 postPatch = '' 15 15 patchShebangs tests/test.sh
+2 -2
pkgs/tools/networking/lxi-tools/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "lxi-tools"; 13 - version = "2.3"; 13 + version = "2.4"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "lxi-tools"; 17 17 repo = "lxi-tools"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-c53Jn/9xKsxQDsRWU2LKtNWs28AuG4t5OwYOAMxpcPA="; 19 + sha256 = "sha256-1CuE/OuClVqw8bG1N8DFNqqQGmXyGyk1LICrcHyuVxw="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+8
pkgs/top-level/all-packages.nix
··· 14975 14975 14976 14976 mint = callPackage ../development/compilers/mint { }; 14977 14977 14978 + mitama-cpp-result = callPackage ../development/libraries/mitama-cpp-result { }; 14979 + 14978 14980 mitscheme = callPackage ../development/compilers/mit-scheme 14979 14981 { stdenv = gcc10StdenvCompat; texLive = texlive.combine { inherit (texlive) scheme-small epsf texinfo; }; }; 14980 14982 ··· 17711 17713 17712 17714 nmrpflash = callPackage ../development/embedded/nmrpflash { }; 17713 17715 17716 + norminette = callPackage ../development/tools/norminette { }; 17717 + 17714 17718 nwjs = callPackage ../development/tools/nwjs { }; 17715 17719 17716 17720 nwjs-sdk = callPackage ../development/tools/nwjs { ··· 21705 21709 mygpoclient = with python3.pkgs; toPythonApplication mygpoclient; 21706 21710 21707 21711 mygui = callPackage ../development/libraries/mygui { 21712 + inherit (darwin.apple_sdk.frameworks) Cocoa; 21708 21713 ogre = ogre1_9; 21709 21714 }; 21710 21715 ··· 26138 26143 ubootCubieboard2 26139 26144 ubootGuruplug 26140 26145 ubootJetsonTK1 26146 + ubootLibreTechCC 26141 26147 ubootNanoPCT4 26142 26148 ubootNovena 26143 26149 ubootOdroidC2 ··· 38246 38252 widevine-cdm = callPackage ../applications/networking/browsers/misc/widevine-cdm.nix { }; 38247 38253 38248 38254 alsa-scarlett-gui = callPackage ../applications/audio/alsa-scarlett-gui { }; 38255 + 38256 + tuner = callPackage ../applications/audio/tuner { }; 38249 38257 }