Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
933682b5 83fa5d20

+1426 -1103
+7
nixos/modules/services/misc/gitlab.nix
··· 196 196 domain: "${cfg.smtp.domain}", 197 197 ${optionalString (cfg.smtp.authentication != null) "authentication: :${cfg.smtp.authentication},"} 198 198 enable_starttls_auto: ${boolToString cfg.smtp.enableStartTLSAuto}, 199 + tls: ${boolToString cfg.smtp.tls}, 199 200 ca_file: "/etc/ssl/certs/ca-certificates.crt", 200 201 openssl_verify_mode: '${cfg.smtp.opensslVerifyMode}' 201 202 } ··· 461 462 type = types.bool; 462 463 default = true; 463 464 description = "Whether to try to use StartTLS."; 465 + }; 466 + 467 + tls = mkOption { 468 + type = types.bool; 469 + default = false; 470 + description = "Whether to use TLS wrapper-mode."; 464 471 }; 465 472 466 473 opensslVerifyMode = mkOption {
+31 -16
nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py
··· 15 15 import datetime 16 16 import glob 17 17 import os.path 18 + from typing import Tuple, List, Optional 19 + 18 20 19 - def copy_if_not_exists(source, dest): 21 + def copy_if_not_exists(source: str, dest: str) -> None: 20 22 if not os.path.exists(dest): 21 23 shutil.copyfile(source, dest) 22 24 23 - def system_dir(profile, generation): 25 + 26 + def system_dir(profile: Optional[str], generation: int) -> str: 24 27 if profile: 25 28 return "/nix/var/nix/profiles/system-profiles/%s-%d-link" % (profile, generation) 26 29 else: ··· 42 45 efi /efi/memtest86/BOOTX64.efi 43 46 """ 44 47 45 - def write_loader_conf(profile, generation): 48 + 49 + def write_loader_conf(profile: Optional[str], generation: int) -> None: 46 50 with open("@efiSysMountPoint@/loader/loader.conf.tmp", 'w') as f: 47 51 if "@timeout@" != "": 48 52 f.write("timeout @timeout@\n") ··· 55 59 f.write("console-mode @consoleMode@\n"); 56 60 os.rename("@efiSysMountPoint@/loader/loader.conf.tmp", "@efiSysMountPoint@/loader/loader.conf") 57 61 58 - def profile_path(profile, generation, name): 62 + 63 + def profile_path(profile: Optional[str], generation: int, name: str) -> str: 59 64 return os.readlink("%s/%s" % (system_dir(profile, generation), name)) 60 65 61 - def copy_from_profile(profile, generation, name, dry_run=False): 66 + 67 + def copy_from_profile(profile: Optional[str], generation: int, name: str, dry_run: bool = False) -> str: 62 68 store_file_path = profile_path(profile, generation, name) 63 69 suffix = os.path.basename(store_file_path) 64 70 store_dir = os.path.basename(os.path.dirname(store_file_path)) ··· 67 73 copy_if_not_exists(store_file_path, "@efiSysMountPoint@%s" % (efi_file_path)) 68 74 return efi_file_path 69 75 70 - def describe_generation(generation_dir): 76 + 77 + def describe_generation(generation_dir: str) -> str: 71 78 try: 72 79 with open("%s/nixos-version" % generation_dir) as f: 73 80 nixos_version = f.read() ··· 87 94 88 95 return description 89 96 90 - def write_entry(profile, generation, machine_id): 97 + 98 + def write_entry(profile: Optional[str], generation: int, machine_id: str) -> None: 91 99 kernel = copy_from_profile(profile, generation, "kernel") 92 100 initrd = copy_from_profile(profile, generation, "initrd") 93 101 try: ··· 116 124 f.write("machine-id %s\n" % machine_id) 117 125 os.rename(tmp_path, entry_file) 118 126 119 - def mkdir_p(path): 127 + 128 + def mkdir_p(path: str) -> None: 120 129 try: 121 130 os.makedirs(path) 122 131 except OSError as e: 123 132 if e.errno != errno.EEXIST or not os.path.isdir(path): 124 133 raise 125 134 126 - def get_generations(profile=None): 135 + 136 + def get_generations(profile: Optional[str] = None) -> List[Tuple[Optional[str], int]]: 127 137 gen_list = subprocess.check_output([ 128 138 "@nix@/bin/nix-env", 129 139 "--list-generations", ··· 137 147 configurationLimit = @configurationLimit@ 138 148 return [ (profile, int(line.split()[0])) for line in gen_lines ][-configurationLimit:] 139 149 140 - def remove_old_entries(gens): 150 + 151 + def remove_old_entries(gens: List[Tuple[Optional[str], int]]) -> None: 141 152 rex_profile = re.compile("^@efiSysMountPoint@/loader/entries/nixos-(.*)-generation-.*\.conf$") 142 153 rex_generation = re.compile("^@efiSysMountPoint@/loader/entries/nixos.*-generation-(.*)\.conf$") 143 154 known_paths = [] ··· 150 161 prof = rex_profile.sub(r"\1", path) 151 162 else: 152 163 prof = "system" 153 - gen = int(rex_generation.sub(r"\1", path)) 154 - if not (prof, gen) in gens: 164 + gen_number = int(rex_generation.sub(r"\1", path)) 165 + if not (prof, gen_number) in gens: 155 166 os.unlink(path) 156 167 except ValueError: 157 168 pass ··· 159 170 if not path in known_paths and not os.path.isdir(path): 160 171 os.unlink(path) 161 172 162 - def get_profiles(): 173 + 174 + def get_profiles() -> List[str]: 163 175 if os.path.isdir("/nix/var/nix/profiles/system-profiles/"): 164 176 return [x 165 177 for x in os.listdir("/nix/var/nix/profiles/system-profiles/") ··· 167 179 else: 168 180 return [] 169 181 170 - def main(): 182 + 183 + def main() -> None: 171 184 parser = argparse.ArgumentParser(description='Update NixOS-related systemd-boot files') 172 185 parser.add_argument('default_config', metavar='DEFAULT-CONFIG', help='The default NixOS config to boot') 173 186 args = parser.parse_args() ··· 182 195 # be there on newly installed systems, so let's generate one so that 183 196 # bootctl can find it and we can also pass it to write_entry() later. 184 197 cmd = ["@systemd@/bin/systemd-machine-id-setup", "--print"] 185 - machine_id = subprocess.check_output(cmd).rstrip() 198 + machine_id = subprocess.run( 199 + cmd, text=True, check=True, stdout=subprocess.PIPE 200 + ).stdout.rstrip() 186 201 187 202 if os.getenv("NIXOS_INSTALL_GRUB") == "1": 188 203 warnings.warn("NIXOS_INSTALL_GRUB env var deprecated, use NIXOS_INSTALL_BOOTLOADER", DeprecationWarning) ··· 212 227 if systemd_version > sdboot_version: 213 228 print("updating systemd-boot from %s to %s" % (sdboot_version, systemd_version)) 214 229 subprocess.check_call(["@systemd@/bin/bootctl", "--path=@efiSysMountPoint@", "update"]) 215 - 216 230 217 231 mkdir_p("@efiSysMountPoint@/efi/nixos") 218 232 mkdir_p("@efiSysMountPoint@/loader/entries") ··· 251 265 rc = libc.syncfs(os.open("@efiSysMountPoint@", os.O_RDONLY)) 252 266 if rc != 0: 253 267 print("could not sync @efiSysMountPoint@: {}".format(os.strerror(rc)), file=sys.stderr) 268 + 254 269 255 270 if __name__ == '__main__': 256 271 main()
+13 -2
nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix
··· 7 7 8 8 efi = config.boot.loader.efi; 9 9 10 - gummibootBuilder = pkgs.substituteAll { 10 + systemdBootBuilder = pkgs.substituteAll { 11 11 src = ./systemd-boot-builder.py; 12 12 13 13 isExecutable = true; ··· 30 30 31 31 memtest86 = if cfg.memtest86.enable then pkgs.memtest86-efi else ""; 32 32 }; 33 + 34 + checkedSystemdBootBuilder = pkgs.runCommand "systemd-boot" { 35 + nativeBuildInputs = [ pkgs.mypy ]; 36 + } '' 37 + install -m755 ${systemdBootBuilder} $out 38 + mypy \ 39 + --no-implicit-optional \ 40 + --disallow-untyped-calls \ 41 + --disallow-untyped-defs \ 42 + $out 43 + ''; 33 44 in { 34 45 35 46 imports = ··· 131 142 boot.loader.supportsInitrdSecrets = true; 132 143 133 144 system = { 134 - build.installBootLoader = gummibootBuilder; 145 + build.installBootLoader = checkedSystemdBootBuilder; 135 146 136 147 boot.loader.id = "systemd-boot"; 137 148
+9
pkgs/applications/audio/bambootracker/default.nix
··· 1 1 { mkDerivation 2 + , stdenv 2 3 , lib 3 4 , fetchFromGitHub 4 5 , fetchpatch ··· 38 39 qmakeFlags = [ "CONFIG+=system_rtaudio" "CONFIG+=system_rtmidi" ]; 39 40 40 41 postConfigure = "make qmake_all"; 42 + 43 + # installs app bundle on darwin, re-extract the binary 44 + # wrapQtAppsHook fails to wrap mach-o binaries, manually call wrapper (https://github.com/NixOS/nixpkgs/issues/102044) 45 + postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' 46 + mv $out/bin/BambooTracker{.app/Contents/MacOS/BambooTracker,} 47 + rm -r $out/bin/BambooTracker.app 48 + wrapQtApp $out/bin/BambooTracker 49 + ''; 41 50 42 51 meta = with lib; { 43 52 description = "A tracker for YM2608 (OPNA) which was used in NEC PC-8801/9801 series computers";
+8 -1
pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, faust2jaqt, faust2lv2 }: 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, faust2jaqt, faust2lv2 }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "MBdistortion"; 4 4 version = "1.1.1"; ··· 9 9 rev = "V${version}"; 10 10 sha256 = "0mdzaqmxzgspfgx9w1hdip18y17hwpdcgjyq1rrfm843vkascwip"; 11 11 }; 12 + 13 + patches = [ 14 + (fetchpatch { 15 + url = "https://github.com/magnetophon/MBdistortion/commit/10e35084b88c559f1b63760cf40fd5ef5a6745a5.patch"; 16 + sha256 = "0hwjl3rzvn3id0sr0qs8f37jdmr915mdan8miaf78ra0ir3wnk76"; 17 + }) 18 + ]; 12 19 13 20 buildInputs = [ faust2jaqt faust2lv2 ]; 14 21
+1 -1
pkgs/applications/editors/poke/default.nix
··· 10 10 , readline 11 11 , guiSupport ? false, tcl, tcllib, tk 12 12 , miSupport ? true, json_c 13 - , nbdSupport ? true, libnbd 13 + , nbdSupport ? !stdenv.isDarwin, libnbd 14 14 , textStylingSupport ? true 15 15 , dejagnu 16 16 }:
+2 -2
pkgs/applications/misc/crow-translate/default.nix
··· 46 46 in 47 47 mkDerivation rec { 48 48 pname = "crow-translate"; 49 - version = "2.8.0"; 49 + version = "2.8.1"; 50 50 51 51 src = fetchFromGitHub { 52 52 owner = "crow-translate"; 53 53 repo = "crow-translate"; 54 54 rev = version; 55 - sha256 = "sha256-kpr3Xn1ZLBS1fVhhJ/sxo8UgB4M+SdOVhddnU8pNUfA="; 55 + sha256 = "sha256-fmlNUhNorV/MUdfdDXM6puAblTTa6p2slVT/EKy5THg="; 56 56 }; 57 57 58 58 patches = [
+25
pkgs/applications/misc/sunwait/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "sunwait"; 5 + version = "2020-10-26"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "risacher"; 9 + repo = "sunwait"; 10 + rev = "102cb417ecbb7a3757ba9ee4b94d6db3225124c4"; 11 + sha256 = "0cs8rdcnzsl10zia2k49a6c2z6gvp5rnf31sgn3hn5c7kgy7l3ax"; 12 + }; 13 + 14 + installPhase = '' 15 + install -Dm755 sunwait -t $out/bin 16 + ''; 17 + 18 + meta = with lib; { 19 + description = "Calculates sunrise or sunset times with civil, nautical, astronomical and custom twilights"; 20 + homepage = "https://github.com/risacher/sunwait"; 21 + license = licenses.gpl3Only; 22 + maintainers = with maintainers; [ etu ]; 23 + platforms = platforms.all; 24 + }; 25 + }
+7 -4
pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
··· 1 1 { lib, stdenv, fetchurl, dpkg 2 2 , alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, gdk-pixbuf, glib, glibc, gnome2, gnome3 3 3 , gtk3, libappindicator-gtk3, libnotify, libpulseaudio, libsecret, libv4l, nspr, nss, pango, systemd, wrapGAppsHook, xorg 4 - , at-spi2-atk, libuuid, at-spi2-core }: 4 + , at-spi2-atk, libuuid, at-spi2-core, libdrm, mesa, libxkbcommon }: 5 5 6 6 let 7 7 8 8 # Please keep the version x.y.0.z and do not update to x.y.76.z because the 9 9 # source of the latter disappears much faster. 10 - version = "8.68.0.100"; 10 + version = "8.69.0.77"; 11 11 12 12 rpath = lib.makeLibraryPath [ 13 13 alsaLib ··· 40 40 pango 41 41 stdenv.cc.cc 42 42 systemd 43 + 43 44 libv4l 44 - 45 + libdrm 46 + mesa 47 + libxkbcommon 45 48 xorg.libxkbfile 46 49 xorg.libX11 47 50 xorg.libXcomposite ··· 65 68 "https://mirror.cs.uchicago.edu/skype/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb" 66 69 "https://web.archive.org/web/https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb" 67 70 ]; 68 - sha256 = "gHjgQRdNABO+R+fcDurHDAQtZpckIxLbODM6Txz+LH4="; 71 + sha256 = "PaqlPp+BRS0cH7XI4x1/5HqYti63rQThmTtPaghIQH0="; 69 72 } 70 73 else 71 74 throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}";
+2
pkgs/applications/science/math/sage/sagelib.nix
··· 32 32 , ntl 33 33 , numpy 34 34 , pari 35 + , pkgconfig # the python module, not the pkg-config alias 35 36 , pkg-config 36 37 , planarity 37 38 , ppl ··· 85 86 cypari2 86 87 jinja2 87 88 numpy 89 + pkgconfig 88 90 boost 89 91 arb 90 92 brial
+7 -7
pkgs/applications/version-management/gitlab/data.json
··· 1 1 { 2 - "version": "13.8.6", 3 - "repo_hash": "0izzvr4bw86nbrqkf44gkcf63ham10cw4vp5yk0ylgm7w0kimv8v", 2 + "version": "13.9.4", 3 + "repo_hash": "0gwxjmph3ac5v0h5zz8664412yq09cka5p4amdbxk7hna24igksz", 4 4 "owner": "gitlab-org", 5 5 "repo": "gitlab", 6 - "rev": "v13.8.6-ee", 6 + "rev": "v13.9.4-ee", 7 7 "passthru": { 8 - "GITALY_SERVER_VERSION": "13.8.6", 9 - "GITLAB_PAGES_VERSION": "1.34.0", 10 - "GITLAB_SHELL_VERSION": "13.15.1", 11 - "GITLAB_WORKHORSE_VERSION": "8.59.2" 8 + "GITALY_SERVER_VERSION": "13.9.4", 9 + "GITLAB_PAGES_VERSION": "1.35.0", 10 + "GITLAB_SHELL_VERSION": "13.17.0", 11 + "GITLAB_WORKHORSE_VERSION": "8.63.2" 12 12 } 13 13 }
+5 -5
pkgs/applications/version-management/gitlab/gitaly/Gemfile
··· 1 1 source 'https://rubygems.org' 2 2 3 - gem 'rugged', '~> 0.28' 3 + gem 'rugged', '~> 1.0.1' 4 4 gem 'github-linguist', '~> 7.12', require: 'linguist' 5 5 gem 'gitlab-markup', '~> 1.7.1' 6 6 gem 'activesupport', '~> 6.0.3.4' 7 7 gem 'rdoc', '~> 6.0' 8 - gem 'gitlab-gollum-lib', '~> 4.2.7.9', require: false 9 - gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4.2', require: false 8 + gem 'gitlab-gollum-lib', '~> 4.2.7.10.gitlab.1', require: false 9 + gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4.3.gitlab.1', require: false 10 10 gem 'grpc', '~> 1.30.2' 11 11 gem 'sentry-raven', '~> 3.0', require: false 12 12 gem 'faraday', '~> 1.0' 13 13 gem 'rbtrace', require: false 14 14 15 15 # Labkit provides observability functionality 16 - gem 'gitlab-labkit', '~> 0.13.2' 16 + gem 'gitlab-labkit', '~> 0.15.0' 17 17 18 18 # Detects the open source license the repository includes 19 19 # This version needs to be in sync with GitLab CE/EE 20 - gem 'licensee', '~> 8.9.0' 20 + gem 'licensee', '~> 9.14.1' 21 21 22 22 gem 'google-protobuf', '~> 3.12' 23 23
+40 -21
pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock
··· 24 24 adamantium (0.2.0) 25 25 ice_nine (~> 0.11.0) 26 26 memoizable (~> 0.4.0) 27 + addressable (2.7.0) 28 + public_suffix (>= 2.0.2, < 5.0) 27 29 ast (2.4.1) 28 30 binding_ninja (0.2.3) 29 31 builder (3.2.4) ··· 35 37 concurrent-ruby (1.1.7) 36 38 crass (1.0.6) 37 39 diff-lcs (1.3) 40 + dotenv (2.7.6) 38 41 equalizer (0.0.11) 39 - erubi (1.9.0) 42 + erubi (1.10.0) 40 43 escape_utils (1.2.1) 41 44 factory_bot (5.0.2) 42 45 activesupport (>= 4.2.0) ··· 51 54 mini_mime (~> 1.0) 52 55 rugged (>= 0.25.1) 53 56 github-markup (1.7.0) 54 - gitlab-gollum-lib (4.2.7.9) 57 + gitlab-gollum-lib (4.2.7.10.gitlab.1) 55 58 gemojione (~> 3.2) 56 59 github-markup (~> 1.6) 57 - gitlab-gollum-rugged_adapter (~> 0.4.4.2) 60 + gitlab-gollum-rugged_adapter (~> 0.4.4.3.gitlab.1) 58 61 nokogiri (>= 1.6.1, < 2.0) 59 62 rouge (~> 3.1) 60 63 sanitize (~> 4.6.4) 61 64 stringex (~> 2.6) 62 - gitlab-gollum-rugged_adapter (0.4.4.2) 65 + gitlab-gollum-rugged_adapter (0.4.4.3.gitlab.1) 63 66 mime-types (>= 1.15) 64 - rugged (~> 0.25) 65 - gitlab-labkit (0.13.2) 66 - actionpack (>= 5.0.0, < 6.1.0) 67 - activesupport (>= 5.0.0, < 6.1.0) 67 + rugged (~> 1.0) 68 + gitlab-labkit (0.15.0) 69 + actionpack (>= 5.0.0, < 7.0.0) 70 + activesupport (>= 5.0.0, < 7.0.0) 68 71 grpc (~> 1.19) 69 72 jaeger-client (~> 1.1) 70 73 opentracing (~> 0.4) 74 + pg_query (~> 1.3) 71 75 redis (> 3.0.0, < 5.0.0) 72 76 gitlab-markup (1.7.1) 73 77 google-protobuf (3.12.4) ··· 83 87 jaeger-client (1.1.0) 84 88 opentracing (~> 0.3) 85 89 thrift 86 - json (2.3.1) 87 - licensee (8.9.2) 88 - rugged (~> 0.24) 89 - loofah (2.8.0) 90 + json (2.5.1) 91 + licensee (9.14.1) 92 + dotenv (~> 2.0) 93 + octokit (~> 4.17) 94 + reverse_markdown (~> 1.0) 95 + rugged (>= 0.24, < 2.0) 96 + thor (>= 0.19, < 2.0) 97 + loofah (2.9.0) 90 98 crass (~> 1.0.2) 91 99 nokogiri (>= 1.5.9) 92 100 memoizable (0.4.2) ··· 94 102 method_source (0.9.2) 95 103 mime-types (3.3.1) 96 104 mime-types-data (~> 3.2015) 97 - mime-types-data (3.2020.0512) 105 + mime-types-data (3.2020.1104) 98 106 mini_mime (1.0.2) 99 107 mini_portile2 (2.5.0) 100 108 minitest (5.14.2) ··· 105 113 racc (~> 1.4) 106 114 nokogumbo (1.5.0) 107 115 nokogiri 116 + octokit (4.20.0) 117 + faraday (>= 0.9) 118 + sawyer (~> 0.8.0, >= 0.5.3) 108 119 opentracing (0.5.0) 109 120 optimist (3.0.1) 110 121 parallel (1.19.2) 111 122 parser (2.7.2.0) 112 123 ast (~> 2.4.1) 124 + pg_query (1.3.0) 113 125 proc_to_ast (0.1.0) 114 126 coderay 115 127 parser ··· 118 130 pry (0.12.2) 119 131 coderay (~> 1.1.0) 120 132 method_source (~> 0.9.0) 133 + public_suffix (4.0.6) 121 134 racc (1.5.2) 122 135 rack (2.2.3) 123 136 rack-test (1.1.0) ··· 133 146 msgpack (>= 0.4.3) 134 147 optimist (>= 3.0.0) 135 148 rdoc (6.2.0) 136 - redis (4.1.3) 149 + redis (4.2.5) 137 150 regexp_parser (1.8.1) 151 + reverse_markdown (1.4.0) 152 + nokogiri 138 153 rexml (3.2.4) 139 154 rouge (3.26.0) 140 155 rspec (3.8.0) ··· 168 183 rubocop-ast (0.2.0) 169 184 parser (>= 2.7.0.1) 170 185 ruby-progressbar (1.10.1) 171 - rugged (0.28.4.1) 186 + rugged (1.0.1) 172 187 sanitize (4.6.6) 173 188 crass (~> 1.0.2) 174 189 nokogiri (>= 1.4.4) 175 190 nokogumbo (~> 1.4) 191 + sawyer (0.8.2) 192 + addressable (>= 2.3.5) 193 + faraday (> 0.8, < 2.0) 176 194 sentry-raven (3.0.4) 177 195 faraday (>= 1.0) 178 196 stringex (2.8.5) 197 + thor (1.1.0) 179 198 thread_safe (0.3.6) 180 - thrift (0.11.0.0) 199 + thrift (0.13.0) 181 200 timecop (0.9.1) 182 201 tzinfo (1.2.9) 183 202 thread_safe (~> 0.1) ··· 200 219 factory_bot 201 220 faraday (~> 1.0) 202 221 github-linguist (~> 7.12) 203 - gitlab-gollum-lib (~> 4.2.7.9) 204 - gitlab-gollum-rugged_adapter (~> 0.4.4.2) 205 - gitlab-labkit (~> 0.13.2) 222 + gitlab-gollum-lib (~> 4.2.7.10.gitlab.1) 223 + gitlab-gollum-rugged_adapter (~> 0.4.4.3.gitlab.1) 224 + gitlab-labkit (~> 0.15.0) 206 225 gitlab-markup (~> 1.7.1) 207 226 google-protobuf (~> 3.12) 208 227 grpc (~> 1.30.2) 209 228 grpc-tools (= 1.30.2) 210 - licensee (~> 8.9.0) 229 + licensee (~> 9.14.1) 211 230 pry (~> 0.12.2) 212 231 rbtrace 213 232 rdoc (~> 6.0) 214 233 rspec 215 234 rspec-parameterized 216 235 rubocop (~> 0.69) 217 - rugged (~> 0.28) 236 + rugged (~> 1.0.1) 218 237 sentry-raven (~> 3.0) 219 238 timecop 220 239
+2 -2
pkgs/applications/version-management/gitlab/gitaly/default.nix
··· 33 33 }; 34 34 }; 35 35 in buildGoModule rec { 36 - version = "13.8.6"; 36 + version = "13.9.4"; 37 37 pname = "gitaly"; 38 38 39 39 src = fetchFromGitLab { ··· 43 43 sha256 = "sha256-6ocP4SMafvLI2jfvcB8jk1AemAI/TiBQ1iaVxK7I54A="; 44 44 }; 45 45 46 - vendorSha256 = "sha256-oVw6vXI3CyOn4l02PkYx3HVpZfzQPi3yBuf9tRvoWoM="; 46 + vendorSha256 = "10ssx0dvbzg70vr2sgnhzijnjxfw6533wdjxwakj62rpfayklp51"; 47 47 48 48 passthru = { 49 49 inherit rubyEnv;
+112 -26
pkgs/applications/version-management/gitlab/gitaly/gemset.nix
··· 49 49 }; 50 50 version = "0.2.0"; 51 51 }; 52 + addressable = { 53 + dependencies = ["public_suffix"]; 54 + groups = ["default"]; 55 + platforms = []; 56 + source = { 57 + remotes = ["https://rubygems.org"]; 58 + sha256 = "1fvchp2rhp2rmigx7qglf69xvjqvzq7x0g49naliw29r2bz656sy"; 59 + type = "gem"; 60 + }; 61 + version = "2.7.0"; 62 + }; 52 63 ast = { 53 64 groups = ["default" "development" "test"]; 54 65 platforms = []; ··· 134 145 }; 135 146 version = "1.3"; 136 147 }; 148 + dotenv = { 149 + groups = ["default"]; 150 + platforms = []; 151 + source = { 152 + remotes = ["https://rubygems.org"]; 153 + sha256 = "0iym172c5337sm1x2ykc2i3f961vj3wdclbyg1x6sxs3irgfsl94"; 154 + type = "gem"; 155 + }; 156 + version = "2.7.6"; 157 + }; 137 158 equalizer = { 138 159 source = { 139 160 remotes = ["https://rubygems.org"]; ··· 147 168 platforms = []; 148 169 source = { 149 170 remotes = ["https://rubygems.org"]; 150 - sha256 = "1nwzxnqhr31fn7nbqmffcysvxjdfl3bhxi0bld5qqhcnfc1xd13x"; 171 + sha256 = "09l8lz3j00m898li0yfsnb6ihc63rdvhw3k5xczna5zrjk104f2l"; 151 172 type = "gem"; 152 173 }; 153 - version = "1.9.0"; 174 + version = "1.10.0"; 154 175 }; 155 176 escape_utils = { 156 177 source = { ··· 226 247 platforms = []; 227 248 source = { 228 249 remotes = ["https://rubygems.org"]; 229 - sha256 = "0y21k8bix3h2qdys2kz2z831cclmx3zc15x67cp8s945dkmh39sj"; 250 + sha256 = "0r6smbqnh0m84fxwb2g11qjfbcsljfin4vhnf43nmmbql2l1i3ah"; 230 251 type = "gem"; 231 252 }; 232 - version = "4.2.7.9"; 253 + version = "4.2.7.10.gitlab.1"; 233 254 }; 234 255 gitlab-gollum-rugged_adapter = { 235 256 dependencies = ["mime-types" "rugged"]; ··· 237 258 platforms = []; 238 259 source = { 239 260 remotes = ["https://rubygems.org"]; 240 - sha256 = "1d32d3yfadzwrarv0biwbfbkz2bqcc0dc3q0imnk962jaay19gc4"; 261 + sha256 = "0rqi9h6k32azljmx2q0zibvs1m59wgh879h04jflxkcqyzj6wyyj"; 241 262 type = "gem"; 242 263 }; 243 - version = "0.4.4.2"; 264 + version = "0.4.4.3.gitlab.1"; 244 265 }; 245 266 gitlab-labkit = { 246 - dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing" "redis"]; 267 + dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing" "pg_query" "redis"]; 247 268 groups = ["default"]; 248 269 platforms = []; 249 270 source = { 250 271 remotes = ["https://rubygems.org"]; 251 - sha256 = "0vgd61xdclihifcdivddfs1gipxy1ql0kf9q47k9h0xisscyjhd2"; 272 + sha256 = "1l9bsjszp5zyzbdsr9ls09d4yr2sb0xjc40x4rv7fbzk19n9xs71"; 252 273 type = "gem"; 253 274 }; 254 - version = "0.13.2"; 275 + version = "0.15.0"; 255 276 }; 256 277 gitlab-markup = { 257 278 groups = ["default"]; ··· 336 357 version = "1.1.0"; 337 358 }; 338 359 json = { 339 - groups = ["default" "development" "test"]; 360 + groups = ["default"]; 340 361 platforms = []; 341 362 source = { 342 363 remotes = ["https://rubygems.org"]; 343 - sha256 = "158fawfwmv2sq4whqqaksfykkiad2xxrrj0nmpnc6vnlzi1bp7iz"; 364 + sha256 = "0lrirj0gw420kw71bjjlqkqhqbrplla61gbv1jzgsz6bv90qr3ci"; 344 365 type = "gem"; 345 366 }; 346 - version = "2.3.1"; 367 + version = "2.5.1"; 347 368 }; 348 369 licensee = { 349 - dependencies = ["rugged"]; 370 + dependencies = ["dotenv" "octokit" "reverse_markdown" "rugged" "thor"]; 371 + groups = ["default"]; 372 + platforms = []; 350 373 source = { 351 374 remotes = ["https://rubygems.org"]; 352 - sha256 = "0w6d2smhg3kzcx4m2ii06akakypwhiglansk51bpx290hhc8h3pc"; 375 + sha256 = "0c551j4qy773d79hgypjaz43h5wjn08mnxnxy9s2vdjc40qm95k5"; 353 376 type = "gem"; 354 377 }; 355 - version = "8.9.2"; 378 + version = "9.14.1"; 356 379 }; 357 380 loofah = { 358 381 dependencies = ["crass" "nokogiri"]; ··· 360 383 platforms = []; 361 384 source = { 362 385 remotes = ["https://rubygems.org"]; 363 - sha256 = "0ndimir6k3kfrh8qrb7ir1j836l4r3qlwyclwjh88b86clblhszh"; 386 + sha256 = "0bzwvxvilx7w1p3pg028ks38925y9i0xm870lm7s12w7598hiyck"; 364 387 type = "gem"; 365 388 }; 366 - version = "2.8.0"; 389 + version = "2.9.0"; 367 390 }; 368 391 memoizable = { 369 392 dependencies = ["thread_safe"]; ··· 398 421 platforms = []; 399 422 source = { 400 423 remotes = ["https://rubygems.org"]; 401 - sha256 = "1z75svngyhsglx0y2f9rnil2j08f9ab54b3l95bpgz67zq2if753"; 424 + sha256 = "0ipjyfwn9nlvpcl8knq3jk4g5f12cflwdbaiqxcq1s7vwfwfxcag"; 402 425 type = "gem"; 403 426 }; 404 - version = "3.2020.0512"; 427 + version = "3.2020.1104"; 405 428 }; 406 429 mini_mime = { 407 430 groups = ["default"]; ··· 473 496 }; 474 497 version = "1.5.0"; 475 498 }; 499 + octokit = { 500 + dependencies = ["faraday" "sawyer"]; 501 + groups = ["default"]; 502 + platforms = []; 503 + source = { 504 + remotes = ["https://rubygems.org"]; 505 + sha256 = "1fl517ld5vj0llyshp3f9kb7xyl9iqy28cbz3k999fkbwcxzhlyq"; 506 + type = "gem"; 507 + }; 508 + version = "4.20.0"; 509 + }; 476 510 opentracing = { 477 511 groups = ["default"]; 478 512 platforms = []; ··· 514 548 }; 515 549 version = "2.7.2.0"; 516 550 }; 551 + pg_query = { 552 + groups = ["default"]; 553 + platforms = []; 554 + source = { 555 + remotes = ["https://rubygems.org"]; 556 + sha256 = "1i9l3y502ddm2lq3ajhxhqq17vs9hgxkxm443yw221ccibcfh6qf"; 557 + type = "gem"; 558 + }; 559 + version = "1.3.0"; 560 + }; 517 561 proc_to_ast = { 518 562 dependencies = ["coderay" "parser" "unparser"]; 519 563 source = { ··· 540 584 }; 541 585 version = "0.12.2"; 542 586 }; 587 + public_suffix = { 588 + groups = ["default"]; 589 + platforms = []; 590 + source = { 591 + remotes = ["https://rubygems.org"]; 592 + sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9"; 593 + type = "gem"; 594 + }; 595 + version = "4.0.6"; 596 + }; 543 597 racc = { 544 598 groups = ["default"]; 545 599 platforms = []; ··· 627 681 platforms = []; 628 682 source = { 629 683 remotes = ["https://rubygems.org"]; 630 - sha256 = "08v2y91q1pmv12g9zsvwj66w3s8j9d82yrmxgyv4y4gz380j3wyh"; 684 + sha256 = "15x2sr6h094rjbvg8pkq6m3lcd5abpyx93aifvfdz3wv6x55xa48"; 631 685 type = "gem"; 632 686 }; 633 - version = "4.1.3"; 687 + version = "4.2.5"; 634 688 }; 635 689 regexp_parser = { 636 690 groups = ["default" "development" "test"]; ··· 642 696 }; 643 697 version = "1.8.1"; 644 698 }; 699 + reverse_markdown = { 700 + dependencies = ["nokogiri"]; 701 + groups = ["default"]; 702 + platforms = []; 703 + source = { 704 + remotes = ["https://rubygems.org"]; 705 + sha256 = "0w786j869fjhjf72waj0hc9i4ghi45b78a2am27kij4sa2hmsc53"; 706 + type = "gem"; 707 + }; 708 + version = "1.4.0"; 709 + }; 645 710 rexml = { 646 711 groups = ["default" "development" "test"]; 647 712 platforms = []; ··· 764 829 platforms = []; 765 830 source = { 766 831 remotes = ["https://rubygems.org"]; 767 - sha256 = "0rdidxgpk1b6y1jq9v77lcx5khq0s9q0s253lr8x57d3hk43iskx"; 832 + sha256 = "056bwiwxvnbkbgsr2wqcsknnc73nqasqdnjcpgj2r61wkm8mzmbn"; 768 833 type = "gem"; 769 834 }; 770 - version = "0.28.4.1"; 835 + version = "1.0.1"; 771 836 }; 772 837 sanitize = { 773 838 dependencies = ["crass" "nokogiri" "nokogumbo"]; ··· 778 843 }; 779 844 version = "4.6.6"; 780 845 }; 846 + sawyer = { 847 + dependencies = ["addressable" "faraday"]; 848 + groups = ["default"]; 849 + platforms = []; 850 + source = { 851 + remotes = ["https://rubygems.org"]; 852 + sha256 = "0yrdchs3psh583rjapkv33mljdivggqn99wkydkjdckcjn43j3cz"; 853 + type = "gem"; 854 + }; 855 + version = "0.8.2"; 856 + }; 781 857 sentry-raven = { 782 858 dependencies = ["faraday"]; 783 859 groups = ["default"]; ··· 799 875 }; 800 876 version = "2.8.5"; 801 877 }; 878 + thor = { 879 + groups = ["default"]; 880 + platforms = []; 881 + source = { 882 + remotes = ["https://rubygems.org"]; 883 + sha256 = "18yhlvmfya23cs3pvhr1qy38y41b6mhr5q9vwv5lrgk16wmf3jna"; 884 + type = "gem"; 885 + }; 886 + version = "1.1.0"; 887 + }; 802 888 thread_safe = { 803 889 source = { 804 890 remotes = ["https://rubygems.org"]; ··· 812 898 platforms = []; 813 899 source = { 814 900 remotes = ["https://rubygems.org"]; 815 - sha256 = "02p107kwx7jnkh6fpdgvaji0xdg6xkaarngkqjml6s4zny4m8slv"; 901 + sha256 = "08076cmdx0g51yrkd7dlxlr45nflink3jhdiq7006ljc2pc3212q"; 816 902 type = "gem"; 817 903 }; 818 - version = "0.11.0.0"; 904 + version = "0.13.0"; 819 905 }; 820 906 timecop = { 821 907 source = { ··· 867 953 }; 868 954 version = "2.4.2"; 869 955 }; 870 - } 956 + }
+1 -1
pkgs/applications/version-management/gitlab/gitlab-shell/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gitlab-shell"; 5 - version = "13.15.1"; 5 + version = "13.17.0"; 6 6 src = fetchFromGitLab { 7 7 owner = "gitlab-org"; 8 8 repo = "gitlab-shell";
+3 -3
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 3 3 buildGoModule rec { 4 4 pname = "gitlab-workhorse"; 5 5 6 - version = "8.59.2"; 6 + version = "8.63.2"; 7 7 8 8 src = fetchFromGitLab { 9 9 owner = "gitlab-org"; 10 10 repo = "gitlab-workhorse"; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-hMcE7dlUw34DyUO0v5JxwvvEh/HC2emrIKc1K1U4bPE="; 12 + sha256 = "1vjk7r7228p2gblx9nmqiz70ckbllg1p3bwkyfd4m49jhp13hryi"; 13 13 }; 14 14 15 - vendorSha256 = "0vkw12w7vr0g4hf4f0im79y7l36d3ah01n1vl7siy94si47g8ir5"; 15 + vendorSha256 = "0hc02nxw5jp1mhpjcx1f2a2dfaq7ji4qkf5g7lbpd1rzhqwp6zsz"; 16 16 buildInputs = [ git ]; 17 17 buildFlagsArray = "-ldflags=-X main.Version=${version}"; 18 18 doCheck = false;
+21 -15
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile
··· 1 + # frozen_string_literal: true 2 + 1 3 source 'https://rubygems.org' 2 4 3 5 gem 'rails', '~> 6.0.3.1' ··· 10 12 gem 'sprockets', '~> 3.7.0' 11 13 12 14 # Default values for AR models 13 - gem 'default_value_for', '~> 3.3.0' 15 + gem 'default_value_for', '~> 3.4.0' 14 16 15 17 # Supported DBs 16 18 gem 'pg', '~> 1.1' 17 19 18 - gem 'rugged', '~> 0.28' 20 + gem 'rugged', '~> 1.0.1' 19 21 gem 'grape-path-helpers', '~> 1.6.1' 20 22 21 23 gem 'faraday', '~> 1.0' ··· 25 27 gem 'devise', '~> 4.7.2' 26 28 # TODO: verify ARM compile issue on 3.1.13+ version (see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/18828) 27 29 gem 'bcrypt', '3.1.12' 28 - gem 'doorkeeper', '~> 5.3.0' 29 - gem 'doorkeeper-openid_connect', '~> 1.7.4' 30 + gem 'doorkeeper', '~> 5.5.0.rc2' 31 + gem 'doorkeeper-openid_connect', '~> 1.7.5' 30 32 gem 'omniauth', '~> 1.8' 31 33 gem 'omniauth-auth0', '~> 2.0.0' 32 34 gem 'omniauth-azure-oauth2', '~> 0.0.9' ··· 81 83 gem 'net-ldap', '~> 0.16.3' 82 84 83 85 # API 84 - gem 'grape', '~> 1.5.1' 86 + gem 'grape', '~> 1.5.2' 85 87 gem 'grape-entity', '~> 0.7.1' 86 88 gem 'rack-cors', '~> 1.0.6', require: 'rack/cors' 87 89 ··· 103 105 gem 'kaminari', '~> 1.0' 104 106 105 107 # HAML 106 - gem 'hamlit', '~> 2.11.0' 108 + gem 'hamlit', '~> 2.14.4' 107 109 108 110 # Files attachments 109 111 gem 'carrierwave', '~> 1.3' ··· 154 156 gem 'asciidoctor', '~> 2.0.10' 155 157 gem 'asciidoctor-include-ext', '~> 0.3.1', require: false 156 158 gem 'asciidoctor-plantuml', '~> 0.0.12' 157 - gem 'asciidoctor-kroki', '~> 0.2.2', require: false 159 + gem 'asciidoctor-kroki', '~> 0.4.0', require: false 158 160 gem 'rouge', '~> 3.26.0' 159 161 gem 'truncato', '~> 0.7.11' 160 162 gem 'bootstrap_form', '~> 4.2.0' ··· 266 268 gem 'loofah', '~> 2.2' 267 269 268 270 # Working with license 269 - gem 'licensee', '~> 8.9' 271 + gem 'licensee', '~> 9.14.1' 270 272 271 273 # Detect and convert string character encoding 272 274 gem 'charlock_holmes', '~> 0.7.7' ··· 284 286 gem 'rack-proxy', '~> 0.6.0' 285 287 286 288 gem 'sassc-rails', '~> 2.1.0' 289 + gem 'autoprefixer-rails', '10.2.0.0' 287 290 gem 'terser', '1.0.2' 288 291 289 292 gem 'addressable', '~> 2.7' ··· 292 295 gem 'request_store', '~> 1.5' 293 296 gem 'base32', '~> 0.3.0' 294 297 295 - gem "gitlab-license", "~> 1.0" 298 + gem "gitlab-license", "~> 1.3" 296 299 297 300 # Protect against bruteforcing 298 301 gem 'rack-attack', '~> 6.3.0' ··· 339 342 group :development do 340 343 gem 'brakeman', '~> 4.2', require: false 341 344 gem 'danger', '~> 8.0.6', require: false 345 + gem 'lefthook', '~> 0.7', require: false 342 346 343 347 gem 'letter_opener_web', '~> 1.3.4' 344 348 ··· 346 350 gem 'better_errors', '~> 2.7.1' 347 351 348 352 # thin instead webrick 349 - gem 'thin', '~> 1.7.0' 353 + gem 'thin', '~> 1.8.0' 350 354 end 351 355 352 356 group :development, :test do 353 357 gem 'deprecation_toolkit', '~> 1.5.1', require: false 354 - gem 'bullet', '~> 6.1.0' 358 + gem 'bullet', '~> 6.1.3' 355 359 gem 'gitlab-pry-byebug', platform: :mri, require: ['pry-byebug', 'pry-byebug/pry_remote_ext'] 356 360 gem 'pry-rails', '~> 0.3.9' 357 361 gem 'pry-remote' ··· 360 364 361 365 gem 'database_cleaner', '~> 1.7.0' 362 366 gem 'factory_bot_rails', '~> 6.1.0' 363 - gem 'rspec-rails', '~> 4.0.1' 367 + gem 'rspec-rails', '~> 4.0.2' 364 368 365 369 # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) 366 370 gem 'minitest', '~> 5.11.0' ··· 375 379 376 380 gem 'scss_lint', '~> 0.59.0', require: false 377 381 gem 'haml_lint', '~> 0.36.0', require: false 378 - gem 'bundler-audit', '~> 0.6.1', require: false 382 + gem 'bundler-audit', '~> 0.7.0.1', require: false 379 383 380 384 gem 'benchmark-ips', '~> 2.3.0', require: false 381 385 ··· 465 469 end 466 470 467 471 # Gitaly GRPC protocol definitions 468 - gem 'gitaly', '~> 13.8.0.pre.rc2' 472 + gem 'gitaly', '~> 13.9.0.pre.rc1' 469 473 470 474 gem 'grpc', '~> 1.30.2' 471 475 ··· 478 482 gem 'flipper-active_record', '~> 0.17.1' 479 483 gem 'flipper-active_support_cache_store', '~> 0.17.1' 480 484 gem 'unleash', '~> 0.1.5' 481 - gem 'gitlab-experiment', '~> 0.4.5' 485 + gem 'gitlab-experiment', '~> 0.4.9' 482 486 483 487 # Structured logging 484 488 gem 'lograge', '~> 0.5' ··· 520 524 521 525 # IPAddress utilities 522 526 gem 'ipaddress', '~> 0.8.3' 527 + 528 + gem 'parslet', '~> 1.8'
+58 -45
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock
··· 81 81 faraday_middleware (~> 1.0) 82 82 faraday_middleware-multi_json (~> 0.0) 83 83 oauth2 (~> 1.4) 84 - asciidoctor (2.0.10) 84 + asciidoctor (2.0.12) 85 85 asciidoctor-include-ext (0.3.1) 86 86 asciidoctor (>= 1.5.6, < 3.0.0) 87 - asciidoctor-kroki (0.2.2) 87 + asciidoctor-kroki (0.4.0) 88 88 asciidoctor (~> 2.0) 89 89 asciidoctor-plantuml (0.0.12) 90 90 asciidoctor (>= 1.5.6, < 3.0.0) ··· 94 94 attr_encrypted (3.1.0) 95 95 encryptor (~> 3.0.0) 96 96 attr_required (1.0.1) 97 + autoprefixer-rails (10.2.0.0) 98 + execjs 97 99 awesome_print (1.8.0) 98 100 awrence (1.1.1) 99 101 aws-eventstream (1.1.0) ··· 145 147 brakeman (4.2.1) 146 148 browser (4.2.0) 147 149 builder (3.2.4) 148 - bullet (6.1.0) 150 + bullet (6.1.3) 149 151 activesupport (>= 3.0.0) 150 152 uniform_notifier (~> 1.11) 151 - bundler-audit (0.6.1) 153 + bundler-audit (0.7.0.1) 152 154 bundler (>= 1.2.0, < 3) 153 - thor (~> 0.18) 155 + thor (>= 0.18, < 2) 154 156 byebug (11.1.3) 155 157 capybara (3.34.0) 156 158 addressable ··· 205 207 git 206 208 css_parser (1.7.0) 207 209 addressable 208 - daemons (1.2.6) 210 + daemons (1.3.1) 209 211 danger (8.0.6) 210 212 claide (~> 1.0) 211 213 claide-plugins (>= 0.9.2) ··· 225 227 html-pipeline 226 228 declarative (0.0.20) 227 229 declarative-option (0.1.0) 228 - default_value_for (3.3.0) 229 - activerecord (>= 3.2.0, < 6.1) 230 + default_value_for (3.4.0) 231 + activerecord (>= 3.2.0, < 7.0) 230 232 deprecation_toolkit (1.5.1) 231 233 activesupport (>= 4.2) 232 234 derailed_benchmarks (1.8.1) ··· 260 262 docile (1.3.2) 261 263 domain_name (0.5.20190701) 262 264 unf (>= 0.0.5, < 1.0.0) 263 - doorkeeper (5.3.3) 265 + doorkeeper (5.5.0.rc2) 264 266 railties (>= 5) 265 - doorkeeper-openid_connect (1.7.4) 267 + doorkeeper-openid_connect (1.7.5) 266 268 doorkeeper (>= 5.2, < 5.5) 267 269 json-jwt (>= 1.11.0) 270 + dotenv (2.7.6) 268 271 dry-configurable (0.12.0) 269 272 concurrent-ruby (~> 1.0) 270 273 dry-core (~> 0.5, >= 0.5.0) ··· 417 420 rails (>= 3.2.0) 418 421 git (1.7.0) 419 422 rchardet (~> 1.8) 420 - gitaly (13.8.0.pre.rc2) 423 + gitaly (13.9.0.pre.rc1) 421 424 grpc (~> 1.0) 422 425 github-markup (1.7.0) 423 426 gitlab-chronic (0.10.5) 424 427 numerizer (~> 0.2) 425 - gitlab-experiment (0.4.5) 428 + gitlab-experiment (0.4.9) 426 429 activesupport (>= 3.0) 427 430 scientist (~> 1.5, >= 1.5.0) 428 431 gitlab-fog-azure-rm (1.0.0) ··· 440 443 jaeger-client (~> 1.1) 441 444 opentracing (~> 0.4) 442 445 redis (> 3.0.0, < 5.0.0) 443 - gitlab-license (1.0.0) 446 + gitlab-license (1.3.0) 444 447 gitlab-mail_room (0.0.8) 445 448 gitlab-markup (1.7.1) 446 449 gitlab-net-dns (0.9.1) ··· 492 495 signet (~> 0.14) 493 496 gpgme (2.0.20) 494 497 mini_portile2 (~> 2.3) 495 - grape (1.5.1) 498 + grape (1.5.2) 496 499 activesupport 497 500 builder 498 501 dry-types (>= 1.1) ··· 557 560 rainbow 558 561 rubocop (>= 0.50.0) 559 562 sysexits (~> 1.1) 560 - hamlit (2.11.0) 563 + hamlit (2.14.4) 561 564 temple (>= 0.8.2) 562 565 thor 563 566 tilt ··· 658 661 rest-client (~> 2.0) 659 662 launchy (2.4.3) 660 663 addressable (~> 2.3) 664 + lefthook (0.7.2) 661 665 letter_opener (1.7.0) 662 666 launchy (~> 2.2) 663 667 letter_opener_web (1.3.4) ··· 671 675 toml (= 0.2.0) 672 676 with_env (= 1.1.0) 673 677 xml-simple 674 - licensee (8.9.2) 675 - rugged (~> 0.24) 678 + licensee (9.14.1) 679 + dotenv (~> 2.0) 680 + octokit (~> 4.17) 681 + reverse_markdown (~> 1.0) 682 + rugged (>= 0.24, < 2.0) 683 + thor (>= 0.19, < 2.0) 676 684 listen (3.2.1) 677 685 rb-fsevent (~> 0.10, >= 0.10.3) 678 686 rb-inotify (~> 0.9, >= 0.9.10) ··· 753 761 multi_json (~> 1.3) 754 762 multi_xml (~> 0.5) 755 763 rack (>= 1.2, < 3) 756 - octokit (4.15.0) 764 + octokit (4.20.0) 757 765 faraday (>= 0.9) 758 766 sawyer (~> 0.8.0, >= 0.5.3) 759 767 oj (3.10.6) ··· 987 995 mime-types (>= 1.16, < 4.0) 988 996 netrc (~> 0.8) 989 997 retriable (3.1.2) 998 + reverse_markdown (1.4.0) 999 + nokogiri 990 1000 rexml (3.2.4) 991 1001 rinku (2.0.0) 992 1002 rotp (2.1.2) ··· 999 1009 rspec-core (~> 3.10.0) 1000 1010 rspec-expectations (~> 3.10.0) 1001 1011 rspec-mocks (~> 3.10.0) 1002 - rspec-core (3.10.0) 1012 + rspec-core (3.10.1) 1003 1013 rspec-support (~> 3.10.0) 1004 - rspec-expectations (3.10.0) 1014 + rspec-expectations (3.10.1) 1005 1015 diff-lcs (>= 1.2.0, < 2.0) 1006 1016 rspec-support (~> 3.10.0) 1007 - rspec-mocks (3.10.0) 1017 + rspec-mocks (3.10.2) 1008 1018 diff-lcs (>= 1.2.0, < 2.0) 1009 1019 rspec-support (~> 3.10.0) 1010 1020 rspec-parameterized (0.4.2) ··· 1013 1023 proc_to_ast 1014 1024 rspec (>= 2.13, < 4) 1015 1025 unparser 1016 - rspec-rails (4.0.1) 1026 + rspec-rails (4.0.2) 1017 1027 actionpack (>= 4.2) 1018 1028 activesupport (>= 4.2) 1019 1029 railties (>= 4.2) 1020 - rspec-core (~> 3.9) 1021 - rspec-expectations (~> 3.9) 1022 - rspec-mocks (~> 3.9) 1023 - rspec-support (~> 3.9) 1030 + rspec-core (~> 3.10) 1031 + rspec-expectations (~> 3.10) 1032 + rspec-mocks (~> 3.10) 1033 + rspec-support (~> 3.10) 1024 1034 rspec-retry (0.6.1) 1025 1035 rspec-core (> 3.3) 1026 - rspec-support (3.10.0) 1036 + rspec-support (3.10.2) 1027 1037 rspec_junit_formatter (0.4.1) 1028 1038 rspec-core (>= 2, < 4, != 2.12.0) 1029 1039 rspec_profiling (0.0.6) ··· 1069 1079 rubyntlm (0.6.2) 1070 1080 rubypants (0.2.0) 1071 1081 rubyzip (2.0.0) 1072 - rugged (0.28.4.1) 1082 + rugged (1.0.1) 1073 1083 safe_yaml (1.0.4) 1074 1084 safety_net_attestation (0.4.0) 1075 1085 jwt (~> 2.0) ··· 1170 1180 execjs (>= 0.3.0, < 3) 1171 1181 test-prof (0.12.0) 1172 1182 text (1.3.1) 1173 - thin (1.7.2) 1183 + thin (1.8.0) 1174 1184 daemons (~> 1.0, >= 1.0.9) 1175 1185 eventmachine (~> 1.0, >= 1.0.4) 1176 1186 rack (>= 1, < 3) 1177 - thor (0.20.3) 1187 + thor (1.1.0) 1178 1188 thread_safe (0.3.6) 1179 1189 thrift (0.14.0) 1180 1190 tilt (2.0.10) ··· 1281 1291 asana (~> 0.10.3) 1282 1292 asciidoctor (~> 2.0.10) 1283 1293 asciidoctor-include-ext (~> 0.3.1) 1284 - asciidoctor-kroki (~> 0.2.2) 1294 + asciidoctor-kroki (~> 0.4.0) 1285 1295 asciidoctor-plantuml (~> 0.0.12) 1286 1296 atlassian-jwt (~> 0.2.0) 1287 1297 attr_encrypted (~> 3.1.0) 1298 + autoprefixer-rails (= 10.2.0.0) 1288 1299 awesome_print 1289 1300 aws-sdk-cloudformation (~> 1) 1290 1301 aws-sdk-core (~> 3) ··· 1301 1312 bootstrap_form (~> 4.2.0) 1302 1313 brakeman (~> 4.2) 1303 1314 browser (~> 4.2) 1304 - bullet (~> 6.1.0) 1305 - bundler-audit (~> 0.6.1) 1315 + bullet (~> 6.1.3) 1316 + bundler-audit (~> 0.7.0.1) 1306 1317 capybara (~> 3.34.0) 1307 1318 capybara-screenshot (~> 1.0.22) 1308 1319 carrierwave (~> 1.3) ··· 1316 1327 danger (~> 8.0.6) 1317 1328 database_cleaner (~> 1.7.0) 1318 1329 deckar01-task_list (= 2.3.1) 1319 - default_value_for (~> 3.3.0) 1330 + default_value_for (~> 3.4.0) 1320 1331 deprecation_toolkit (~> 1.5.1) 1321 1332 derailed_benchmarks 1322 1333 device_detector ··· 1325 1336 diff_match_patch (~> 0.1.0) 1326 1337 diffy (~> 3.3) 1327 1338 discordrb-webhooks-blackst0ne (~> 3.3) 1328 - doorkeeper (~> 5.3.0) 1329 - doorkeeper-openid_connect (~> 1.7.4) 1339 + doorkeeper (~> 5.5.0.rc2) 1340 + doorkeeper-openid_connect (~> 1.7.5) 1330 1341 ed25519 (~> 1.2) 1331 1342 elasticsearch-api (~> 6.8.2) 1332 1343 elasticsearch-model (~> 6.1) ··· 1357 1368 gettext (~> 3.3) 1358 1369 gettext_i18n_rails (~> 1.8.0) 1359 1370 gettext_i18n_rails_js (~> 1.3) 1360 - gitaly (~> 13.8.0.pre.rc2) 1371 + gitaly (~> 13.9.0.pre.rc1) 1361 1372 github-markup (~> 1.7.0) 1362 1373 gitlab-chronic (~> 0.10.5) 1363 - gitlab-experiment (~> 0.4.5) 1374 + gitlab-experiment (~> 0.4.9) 1364 1375 gitlab-fog-azure-rm (~> 1.0) 1365 1376 gitlab-labkit (= 0.14.0) 1366 - gitlab-license (~> 1.0) 1377 + gitlab-license (~> 1.3) 1367 1378 gitlab-mail_room (~> 0.0.8) 1368 1379 gitlab-markup (~> 1.7.1) 1369 1380 gitlab-net-dns (~> 0.9.1) ··· 1376 1387 google-api-client (~> 0.33) 1377 1388 google-protobuf (~> 3.12) 1378 1389 gpgme (~> 2.0.19) 1379 - grape (~> 1.5.1) 1390 + grape (~> 1.5.2) 1380 1391 grape-entity (~> 0.7.1) 1381 1392 grape-path-helpers (~> 1.6.1) 1382 1393 grape_logging (~> 1.7) ··· 1388 1399 gssapi 1389 1400 guard-rspec 1390 1401 haml_lint (~> 0.36.0) 1391 - hamlit (~> 2.11.0) 1402 + hamlit (~> 2.14.4) 1392 1403 hangouts-chat (~> 0.0.5) 1393 1404 hashie 1394 1405 hashie-forbidden_attributes ··· 1410 1421 knapsack (~> 1.17) 1411 1422 kramdown (~> 2.3.0) 1412 1423 kubeclient (~> 4.9.1) 1424 + lefthook (~> 0.7) 1413 1425 letter_opener_web (~> 1.3.4) 1414 1426 license_finder (~> 6.0) 1415 - licensee (~> 8.9) 1427 + licensee (~> 9.14.1) 1416 1428 lockbox (~> 0.3.3) 1417 1429 lograge (~> 0.5) 1418 1430 loofah (~> 2.2) ··· 1452 1464 omniauth_openid_connect (~> 0.3.5) 1453 1465 org-ruby (~> 0.9.12) 1454 1466 parallel (~> 1.19) 1467 + parslet (~> 1.8) 1455 1468 peek (~> 1.1) 1456 1469 pg (~> 1.1) 1457 1470 pg_query (~> 1.3.0) ··· 1487 1500 rouge (~> 3.26.0) 1488 1501 rqrcode-rails3 (~> 0.1.7) 1489 1502 rspec-parameterized 1490 - rspec-rails (~> 4.0.1) 1503 + rspec-rails (~> 4.0.2) 1491 1504 rspec-retry (~> 0.6.1) 1492 1505 rspec_junit_formatter 1493 1506 rspec_profiling (~> 0.0.6) ··· 1496 1509 ruby-progressbar (~> 1.10) 1497 1510 ruby_parser (~> 3.15) 1498 1511 rubyzip (~> 2.0.0) 1499 - rugged (~> 0.28) 1512 + rugged (~> 1.0.1) 1500 1513 sanitize (~> 5.2.1) 1501 1514 sassc-rails (~> 2.1.0) 1502 1515 scss_lint (~> 0.59.0) ··· 1521 1534 sys-filesystem (~> 1.1.6) 1522 1535 terser (= 1.0.2) 1523 1536 test-prof (~> 0.12.0) 1524 - thin (~> 1.7.0) 1537 + thin (~> 1.8.0) 1525 1538 thrift (>= 0.14.0) 1526 1539 timecop (~> 0.9.1) 1527 1540 toml-rb (~> 1.0.0)
+90 -48
pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix
··· 242 242 platforms = []; 243 243 source = { 244 244 remotes = ["https://rubygems.org"]; 245 - sha256 = "1b2ajs3sabl0s27r7lhwkacw0yn0zfk4jpmidg9l8lzp2qlgjgbz"; 245 + sha256 = "1gjk9v83vw0pz4x0xqqnw231z9sgscm6vnacjw7hy5njkw8fskj9"; 246 246 type = "gem"; 247 247 }; 248 - version = "2.0.10"; 248 + version = "2.0.12"; 249 249 }; 250 250 asciidoctor-include-ext = { 251 251 dependencies = ["asciidoctor"]; ··· 264 264 platforms = []; 265 265 source = { 266 266 remotes = ["https://rubygems.org"]; 267 - sha256 = "10yc07x2z9f122wnncf34s91vlfcd4wy8y9wshxc7j2m4a2jlzm5"; 267 + sha256 = "13gx22xld4rbxxirnsxyrsajy9v666r8a4ngms71611af5afgk6w"; 268 268 type = "gem"; 269 269 }; 270 - version = "0.2.2"; 270 + version = "0.4.0"; 271 271 }; 272 272 asciidoctor-plantuml = { 273 273 dependencies = ["asciidoctor"]; ··· 322 322 }; 323 323 version = "1.0.1"; 324 324 }; 325 + autoprefixer-rails = { 326 + dependencies = ["execjs"]; 327 + groups = ["default"]; 328 + platforms = []; 329 + source = { 330 + remotes = ["https://rubygems.org"]; 331 + sha256 = "0p9j0sxw0nm27x7wj0n8a9zikwb0v8b6varr601rcgymsjj2v7wy"; 332 + type = "gem"; 333 + }; 334 + version = "10.2.0.0"; 335 + }; 325 336 awesome_print = { 326 337 groups = ["development" "test"]; 327 338 platforms = []; ··· 599 610 platforms = []; 600 611 source = { 601 612 remotes = ["https://rubygems.org"]; 602 - sha256 = "18ifwnvn13755qkfigapyj5bflpby3phxzbb7x5336d0kzv5k7d9"; 613 + sha256 = "04wm807czdixpgnqp446vj8vc7dj96k26p90rmwll9ahlib37mmm"; 603 614 type = "gem"; 604 615 }; 605 - version = "6.1.0"; 616 + version = "6.1.3"; 606 617 }; 607 618 bundler-audit = { 608 619 dependencies = ["thor"]; ··· 610 621 platforms = []; 611 622 source = { 612 623 remotes = ["https://rubygems.org"]; 613 - sha256 = "0pm22xpn3xyymsainixnrk8v3l3xi9bzwkjkspx00cfzp84xvxbq"; 624 + sha256 = "04l9rs56rlvihbr2ybkrigjajgd3swa98lxvmdl8iylj1g5m7n0j"; 614 625 type = "gem"; 615 626 }; 616 - version = "0.6.1"; 627 + version = "0.7.0.1"; 617 628 }; 618 629 byebug = { 619 630 groups = ["default" "development" "test"]; ··· 910 921 platforms = []; 911 922 source = { 912 923 remotes = ["https://rubygems.org"]; 913 - sha256 = "0lxqq6dgb8xhliywar2lvkwqy2ssraf9dk4b501pb4ixc2mvxbp2"; 924 + sha256 = "0l5gai3vd4g7aqff0k1mp41j9zcsvm2rbwmqn115a325k9r7pf4w"; 914 925 type = "gem"; 915 926 }; 916 - version = "1.2.6"; 927 + version = "1.3.1"; 917 928 }; 918 929 danger = { 919 930 dependencies = ["claide" "claide-plugins" "colored2" "cork" "faraday" "faraday-http-cache" "git" "kramdown" "kramdown-parser-gfm" "no_proxy_fix" "octokit" "terminal-table"]; ··· 987 998 platforms = []; 988 999 source = { 989 1000 remotes = ["https://rubygems.org"]; 990 - sha256 = "08hwnnqm3bxd4n627isliq79zysdlmfkf813403v0b4mkhika5my"; 1001 + sha256 = "03zln3mp8wa734jl7abd6gby08xq8j6n4y2phzxfsssscx8xrlim"; 991 1002 type = "gem"; 992 1003 }; 993 - version = "3.3.0"; 1004 + version = "3.4.0"; 994 1005 }; 995 1006 deprecation_toolkit = { 996 1007 dependencies = ["activesupport"]; ··· 1114 1125 platforms = []; 1115 1126 source = { 1116 1127 remotes = ["https://rubygems.org"]; 1117 - sha256 = "01scvhvrw44ksv1aaywpp9kfm4c8qs4gwnnha40r5mq0vpc0qrny"; 1128 + sha256 = "1mdjnw5n2r3hclg4gmzx19w750sdcxw9y6dhcawbzb9wrbzj58wk"; 1118 1129 type = "gem"; 1119 1130 }; 1120 - version = "5.3.3"; 1131 + version = "5.5.0.rc2"; 1121 1132 }; 1122 1133 doorkeeper-openid_connect = { 1123 1134 dependencies = ["doorkeeper" "json-jwt"]; ··· 1125 1136 platforms = []; 1126 1137 source = { 1127 1138 remotes = ["https://rubygems.org"]; 1128 - sha256 = "1yylcg4j7msxma0s8rx8990bfgr0c414a7vafs3gpgmbwy47wq45"; 1139 + sha256 = "1cj7b45lxiifi6pw8gnylfzlhji572v0pj896rbyqjwyzlgj1sid"; 1129 1140 type = "gem"; 1130 1141 }; 1131 - version = "1.7.4"; 1142 + version = "1.7.5"; 1143 + }; 1144 + dotenv = { 1145 + groups = ["default"]; 1146 + platforms = []; 1147 + source = { 1148 + remotes = ["https://rubygems.org"]; 1149 + sha256 = "0iym172c5337sm1x2ykc2i3f961vj3wdclbyg1x6sxs3irgfsl94"; 1150 + type = "gem"; 1151 + }; 1152 + version = "2.7.6"; 1132 1153 }; 1133 1154 dry-configurable = { 1134 1155 dependencies = ["concurrent-ruby" "dry-core"]; ··· 1798 1819 platforms = []; 1799 1820 source = { 1800 1821 remotes = ["https://rubygems.org"]; 1801 - sha256 = "0kns9lw8gdxm61vyvf3jin448zrl2h3qdx2ggilzxig28hdi0vha"; 1822 + sha256 = "137gr4nbxhcyh4s60r2z0js8q2bfnmxiggwnf122wp9csywlnyg2"; 1802 1823 type = "gem"; 1803 1824 }; 1804 - version = "13.8.0.pre.rc2"; 1825 + version = "13.9.0.pre.rc1"; 1805 1826 }; 1806 1827 github-markup = { 1807 1828 groups = ["default"]; ··· 1830 1851 platforms = []; 1831 1852 source = { 1832 1853 remotes = ["https://rubygems.org"]; 1833 - sha256 = "1v8ygrc2c98rz72za59g313n1mmr18jdbzr965lkp2zv2rw7cs9n"; 1854 + sha256 = "0skqg90i6qdpm7dhy8bv99gk8siwgm6mpr675790ngri1ns4f5xk"; 1834 1855 type = "gem"; 1835 1856 }; 1836 - version = "0.4.5"; 1857 + version = "0.4.9"; 1837 1858 }; 1838 1859 gitlab-fog-azure-rm = { 1839 1860 dependencies = ["azure-storage-blob" "azure-storage-common" "fog-core" "fog-json" "mime-types" "ms_rest_azure"]; ··· 1862 1883 platforms = []; 1863 1884 source = { 1864 1885 remotes = ["https://rubygems.org"]; 1865 - sha256 = "1q26cgp3ln3b36n3sc69r6hxafkxjwdr3m0d7jlch5j7vyib9bih"; 1886 + sha256 = "04846kr8pw0fkw4mavakai978raq5d2kjna4rawxpc3dqlr897g4"; 1866 1887 type = "gem"; 1867 1888 }; 1868 - version = "1.0.0"; 1889 + version = "1.3.0"; 1869 1890 }; 1870 1891 gitlab-mail_room = { 1871 1892 groups = ["default"]; ··· 2059 2080 platforms = []; 2060 2081 source = { 2061 2082 remotes = ["https://rubygems.org"]; 2062 - sha256 = "0lizcma35sygkd3q7zjv13mrr905ncn80f1ym6n305s75kc0pk9n"; 2083 + sha256 = "0adf01kihxbmh8q84r6zyfgdmpbyb0lwcar3fi8j6bl6qcsbgwqx"; 2063 2084 type = "gem"; 2064 2085 }; 2065 - version = "1.5.1"; 2086 + version = "1.5.2"; 2066 2087 }; 2067 2088 grape-entity = { 2068 2089 dependencies = ["activesupport" "multi_json"]; ··· 2233 2254 platforms = []; 2234 2255 source = { 2235 2256 remotes = ["https://rubygems.org"]; 2236 - sha256 = "13wkrvyldk21xlc9illam495fpgf7w7bksaj8y6n00y036wmbg60"; 2257 + sha256 = "1gjbdni9jdpsdahrx2q7cvrc6jkrzpf9rdi0rli8mdvwi9xjafz5"; 2237 2258 type = "gem"; 2238 2259 }; 2239 - version = "2.11.0"; 2260 + version = "2.14.4"; 2240 2261 }; 2241 2262 hana = { 2242 2263 groups = ["default"]; ··· 2705 2726 }; 2706 2727 version = "2.4.3"; 2707 2728 }; 2729 + lefthook = { 2730 + groups = ["development"]; 2731 + platforms = []; 2732 + source = { 2733 + remotes = ["https://rubygems.org"]; 2734 + sha256 = "17bv6zfdzwbbh8n0iw8zgjngsvyp2imrrfshj62yrlxpka9ka0z3"; 2735 + type = "gem"; 2736 + }; 2737 + version = "0.7.2"; 2738 + }; 2708 2739 letter_opener = { 2709 2740 dependencies = ["launchy"]; 2710 2741 groups = ["default" "development"]; ··· 2739 2770 version = "6.0.0"; 2740 2771 }; 2741 2772 licensee = { 2742 - dependencies = ["rugged"]; 2773 + dependencies = ["dotenv" "octokit" "reverse_markdown" "rugged" "thor"]; 2743 2774 groups = ["default"]; 2744 2775 platforms = []; 2745 2776 source = { 2746 2777 remotes = ["https://rubygems.org"]; 2747 - sha256 = "0w6d2smhg3kzcx4m2ii06akakypwhiglansk51bpx290hhc8h3pc"; 2778 + sha256 = "0c551j4qy773d79hgypjaz43h5wjn08mnxnxy9s2vdjc40qm95k5"; 2748 2779 type = "gem"; 2749 2780 }; 2750 - version = "8.9.2"; 2781 + version = "9.14.1"; 2751 2782 }; 2752 2783 listen = { 2753 2784 dependencies = ["rb-fsevent" "rb-inotify"]; ··· 3236 3267 platforms = []; 3237 3268 source = { 3238 3269 remotes = ["https://rubygems.org"]; 3239 - sha256 = "0yg6dhd028j74sm8hpw9w7bwfwlkml9wiis7nq20ivfsbcz4g8ac"; 3270 + sha256 = "1fl517ld5vj0llyshp3f9kb7xyl9iqy28cbz3k999fkbwcxzhlyq"; 3240 3271 type = "gem"; 3241 3272 }; 3242 - version = "4.15.0"; 3273 + version = "4.20.0"; 3243 3274 }; 3244 3275 oj = { 3245 3276 groups = ["default"]; ··· 4259 4290 type = "gem"; 4260 4291 }; 4261 4292 version = "3.1.2"; 4293 + }; 4294 + reverse_markdown = { 4295 + dependencies = ["nokogiri"]; 4296 + groups = ["default"]; 4297 + platforms = []; 4298 + source = { 4299 + remotes = ["https://rubygems.org"]; 4300 + sha256 = "0w786j869fjhjf72waj0hc9i4ghi45b78a2am27kij4sa2hmsc53"; 4301 + type = "gem"; 4302 + }; 4303 + version = "1.4.0"; 4262 4304 }; 4263 4305 rexml = { 4264 4306 groups = ["default" "development" "test"]; ··· 4339 4381 platforms = []; 4340 4382 source = { 4341 4383 remotes = ["https://rubygems.org"]; 4342 - sha256 = "0n2rdv8f26yw8c6asymc0mgddyr5d2b5n6mfvpd3n6lnpf1jdyv2"; 4384 + sha256 = "0wwnfhxxvrlxlk1a3yxlb82k2f9lm0yn0598x7lk8fksaz4vv6mc"; 4343 4385 type = "gem"; 4344 4386 }; 4345 - version = "3.10.0"; 4387 + version = "3.10.1"; 4346 4388 }; 4347 4389 rspec-expectations = { 4348 4390 dependencies = ["diff-lcs" "rspec-support"]; ··· 4350 4392 platforms = []; 4351 4393 source = { 4352 4394 remotes = ["https://rubygems.org"]; 4353 - sha256 = "0j37dvnvfbjwj8dqx27yfvz0frl7f2jc1abqg99h0ppriz9za6dc"; 4395 + sha256 = "1sz9bj4ri28adsklnh257pnbq4r5ayziw02qf67wry0kvzazbb17"; 4354 4396 type = "gem"; 4355 4397 }; 4356 - version = "3.10.0"; 4398 + version = "3.10.1"; 4357 4399 }; 4358 4400 rspec-mocks = { 4359 4401 dependencies = ["diff-lcs" "rspec-support"]; ··· 4361 4403 platforms = []; 4362 4404 source = { 4363 4405 remotes = ["https://rubygems.org"]; 4364 - sha256 = "1pz89y1522i6f8wzrg72ykmch3318ih87nlpl0y1ghsrs5hqymw3"; 4406 + sha256 = "1d13g6kipqqc9lmwz5b244pdwc97z15vcbnbq6n9rlf32bipdz4k"; 4365 4407 type = "gem"; 4366 4408 }; 4367 - version = "3.10.0"; 4409 + version = "3.10.2"; 4368 4410 }; 4369 4411 rspec-parameterized = { 4370 4412 dependencies = ["binding_ninja" "parser" "proc_to_ast" "rspec" "unparser"]; ··· 4383 4425 platforms = []; 4384 4426 source = { 4385 4427 remotes = ["https://rubygems.org"]; 4386 - sha256 = "0lzik01ziaskgpdpy8knffpw0fsy9151f5lfigyhb89wq4q45hfs"; 4428 + sha256 = "0aw5knjij21kzwis3vkcmqc16p55lbig1wq0i37093qga7zfsdg1"; 4387 4429 type = "gem"; 4388 4430 }; 4389 - version = "4.0.1"; 4431 + version = "4.0.2"; 4390 4432 }; 4391 4433 rspec-retry = { 4392 4434 dependencies = ["rspec-core"]; ··· 4404 4446 platforms = []; 4405 4447 source = { 4406 4448 remotes = ["https://rubygems.org"]; 4407 - sha256 = "0j0n28i6zci5j7gg370bdy87dy43hlwx6dw428d9kamf5a0i2klz"; 4449 + sha256 = "15j52parvb8cgvl6s0pbxi2ywxrv6x0764g222kz5flz0s4mycbl"; 4408 4450 type = "gem"; 4409 4451 }; 4410 - version = "3.10.0"; 4452 + version = "3.10.2"; 4411 4453 }; 4412 4454 rspec_junit_formatter = { 4413 4455 dependencies = ["rspec-core"]; ··· 4616 4658 platforms = []; 4617 4659 source = { 4618 4660 remotes = ["https://rubygems.org"]; 4619 - sha256 = "0rdidxgpk1b6y1jq9v77lcx5khq0s9q0s253lr8x57d3hk43iskx"; 4661 + sha256 = "056bwiwxvnbkbgsr2wqcsknnc73nqasqdnjcpgj2r61wkm8mzmbn"; 4620 4662 type = "gem"; 4621 4663 }; 4622 - version = "0.28.4.1"; 4664 + version = "1.0.1"; 4623 4665 }; 4624 4666 safe_yaml = { 4625 4667 groups = ["default" "test"]; ··· 5124 5166 platforms = []; 5125 5167 source = { 5126 5168 remotes = ["https://rubygems.org"]; 5127 - sha256 = "0nagbf9pwy1vg09k6j4xqhbjjzrg5dwzvkn4ffvlj76fsn6vv61f"; 5169 + sha256 = "0g5p3r47qxxfmfagdf8wb68pd24938cgzdfn6pmpysrn296pg5m5"; 5128 5170 type = "gem"; 5129 5171 }; 5130 - version = "1.7.2"; 5172 + version = "1.8.0"; 5131 5173 }; 5132 5174 thor = { 5133 5175 groups = ["default" "development" "omnibus" "test"]; 5134 5176 platforms = []; 5135 5177 source = { 5136 5178 remotes = ["https://rubygems.org"]; 5137 - sha256 = "1yhrnp9x8qcy5vc7g438amd5j9sw83ih7c30dr6g6slgw9zj3g29"; 5179 + sha256 = "18yhlvmfya23cs3pvhr1qy38y41b6mhr5q9vwv5lrgk16wmf3jna"; 5138 5180 type = "gem"; 5139 5181 }; 5140 - version = "0.20.3"; 5182 + version = "1.1.0"; 5141 5183 }; 5142 5184 thread_safe = { 5143 5185 groups = ["default" "development" "test"]; ··· 5590 5632 }; 5591 5633 version = "2.4.2"; 5592 5634 }; 5593 - } 5635 + }
+772 -836
pkgs/applications/version-management/gitlab/yarnPkgs.nix
··· 770 770 }; 771 771 } 772 772 { 773 - name = "_gitlab_at.js___at.js_1.5.5.tgz"; 773 + name = "_eslint_eslintrc___eslintrc_0.3.0.tgz"; 774 774 path = fetchurl { 775 - name = "_gitlab_at.js___at.js_1.5.5.tgz"; 776 - url = "https://registry.yarnpkg.com/@gitlab/at.js/-/at.js-1.5.5.tgz"; 777 - sha1 = "5f6bfe6baaef360daa9b038fa78798d7a6a916b4"; 775 + name = "_eslint_eslintrc___eslintrc_0.3.0.tgz"; 776 + url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.3.0.tgz"; 777 + sha1 = "d736d6963d7003b6514e6324bec9c602ac340318"; 778 778 }; 779 779 } 780 780 { 781 - name = "_gitlab_eslint_plugin___eslint_plugin_6.0.0.tgz"; 781 + name = "_gitlab_at.js___at.js_1.5.7.tgz"; 782 782 path = fetchurl { 783 - name = "_gitlab_eslint_plugin___eslint_plugin_6.0.0.tgz"; 784 - url = "https://registry.yarnpkg.com/@gitlab/eslint-plugin/-/eslint-plugin-6.0.0.tgz"; 785 - sha1 = "deb18f63808af1cb1cc117a92558f07edb1e2256"; 783 + name = "_gitlab_at.js___at.js_1.5.7.tgz"; 784 + url = "https://registry.yarnpkg.com/@gitlab/at.js/-/at.js-1.5.7.tgz"; 785 + sha1 = "1ee6f838cc4410a1d797770934df91d90df8179e"; 786 + }; 787 + } 788 + { 789 + name = "_gitlab_eslint_plugin___eslint_plugin_8.0.0.tgz"; 790 + path = fetchurl { 791 + name = "_gitlab_eslint_plugin___eslint_plugin_8.0.0.tgz"; 792 + url = "https://registry.yarnpkg.com/@gitlab/eslint-plugin/-/eslint-plugin-8.0.0.tgz"; 793 + sha1 = "e8d30fd98e2102f417617d0c60ef1810520a8ac6"; 786 794 }; 787 795 } 788 796 { ··· 794 802 }; 795 803 } 796 804 { 797 - name = "_gitlab_svgs___svgs_1.178.0.tgz"; 805 + name = "_gitlab_svgs___svgs_1.182.0.tgz"; 798 806 path = fetchurl { 799 - name = "_gitlab_svgs___svgs_1.178.0.tgz"; 800 - url = "https://registry.yarnpkg.com/@gitlab/svgs/-/svgs-1.178.0.tgz"; 801 - sha1 = "069edb8abb4c7137d48f527592476655f066538b"; 807 + name = "_gitlab_svgs___svgs_1.182.0.tgz"; 808 + url = "https://registry.yarnpkg.com/@gitlab/svgs/-/svgs-1.182.0.tgz"; 809 + sha1 = "600cb577c598ff63325c3f6f049e3254abdbb580"; 802 810 }; 803 811 } 804 812 { ··· 810 818 }; 811 819 } 812 820 { 813 - name = "_gitlab_ui___ui_25.11.3.tgz"; 821 + name = "_gitlab_ui___ui_27.4.6.tgz"; 814 822 path = fetchurl { 815 - name = "_gitlab_ui___ui_25.11.3.tgz"; 816 - url = "https://registry.yarnpkg.com/@gitlab/ui/-/ui-25.11.3.tgz"; 817 - sha1 = "54719d1276f417e66904f9f951671633f1647006"; 823 + name = "_gitlab_ui___ui_27.4.6.tgz"; 824 + url = "https://registry.yarnpkg.com/@gitlab/ui/-/ui-27.4.6.tgz"; 825 + sha1 = "2364c2ba981024cdce32b4657c5f0eb2ae781a4d"; 818 826 }; 819 827 } 820 828 { ··· 967 975 name = "_nodelib_fs.stat___fs.stat_1.1.3.tgz"; 968 976 url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz"; 969 977 sha1 = "2b5a3ab3f918cca48a8c754c08168e3f03eba61b"; 978 + }; 979 + } 980 + { 981 + name = "_npmcli_move_file___move_file_1.0.1.tgz"; 982 + path = fetchurl { 983 + name = "_npmcli_move_file___move_file_1.0.1.tgz"; 984 + url = "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.0.1.tgz"; 985 + sha1 = "de103070dac0f48ce49cf6693c23af59c0f70464"; 970 986 }; 971 987 } 972 988 { ··· 1186 1202 }; 1187 1203 } 1188 1204 { 1189 - name = "_types_json_schema___json_schema_7.0.6.tgz"; 1205 + name = "_types_json_schema___json_schema_7.0.7.tgz"; 1206 + path = fetchurl { 1207 + name = "_types_json_schema___json_schema_7.0.7.tgz"; 1208 + url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz"; 1209 + sha1 = "98a993516c859eb0d5c4c8f098317a9ea68db9ad"; 1210 + }; 1211 + } 1212 + { 1213 + name = "_types_json5___json5_0.0.29.tgz"; 1190 1214 path = fetchurl { 1191 - name = "_types_json_schema___json_schema_7.0.6.tgz"; 1192 - url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz"; 1193 - sha1 = "f4c7ec43e81b319a9815115031709f26987891f0"; 1215 + name = "_types_json5___json5_0.0.29.tgz"; 1216 + url = "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz"; 1217 + sha1 = "ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"; 1194 1218 }; 1195 1219 } 1196 1220 { ··· 1330 1354 }; 1331 1355 } 1332 1356 { 1333 - name = "_webassemblyjs_ast___ast_1.8.5.tgz"; 1357 + name = "_webassemblyjs_ast___ast_1.9.0.tgz"; 1334 1358 path = fetchurl { 1335 - name = "_webassemblyjs_ast___ast_1.8.5.tgz"; 1336 - url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz"; 1337 - sha1 = "51b1c5fe6576a34953bf4b253df9f0d490d9e359"; 1359 + name = "_webassemblyjs_ast___ast_1.9.0.tgz"; 1360 + url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz"; 1361 + sha1 = "bd850604b4042459a5a41cd7d338cbed695ed964"; 1338 1362 }; 1339 1363 } 1340 1364 { 1341 - name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.8.5.tgz"; 1365 + name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.9.0.tgz"; 1342 1366 path = fetchurl { 1343 - name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.8.5.tgz"; 1344 - url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz"; 1345 - sha1 = "1ba926a2923613edce496fd5b02e8ce8a5f49721"; 1367 + name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.9.0.tgz"; 1368 + url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz"; 1369 + sha1 = "3c3d3b271bddfc84deb00f71344438311d52ffb4"; 1346 1370 }; 1347 1371 } 1348 1372 { 1349 - name = "_webassemblyjs_helper_api_error___helper_api_error_1.8.5.tgz"; 1373 + name = "_webassemblyjs_helper_api_error___helper_api_error_1.9.0.tgz"; 1350 1374 path = fetchurl { 1351 - name = "_webassemblyjs_helper_api_error___helper_api_error_1.8.5.tgz"; 1352 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz"; 1353 - sha1 = "c49dad22f645227c5edb610bdb9697f1aab721f7"; 1375 + name = "_webassemblyjs_helper_api_error___helper_api_error_1.9.0.tgz"; 1376 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz"; 1377 + sha1 = "203f676e333b96c9da2eeab3ccef33c45928b6a2"; 1354 1378 }; 1355 1379 } 1356 1380 { 1357 - name = "_webassemblyjs_helper_buffer___helper_buffer_1.8.5.tgz"; 1381 + name = "_webassemblyjs_helper_buffer___helper_buffer_1.9.0.tgz"; 1358 1382 path = fetchurl { 1359 - name = "_webassemblyjs_helper_buffer___helper_buffer_1.8.5.tgz"; 1360 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz"; 1361 - sha1 = "fea93e429863dd5e4338555f42292385a653f204"; 1383 + name = "_webassemblyjs_helper_buffer___helper_buffer_1.9.0.tgz"; 1384 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz"; 1385 + sha1 = "a1442d269c5feb23fcbc9ef759dac3547f29de00"; 1362 1386 }; 1363 1387 } 1364 1388 { 1365 - name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.8.5.tgz"; 1389 + name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.9.0.tgz"; 1366 1390 path = fetchurl { 1367 - name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.8.5.tgz"; 1368 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz"; 1369 - sha1 = "9a740ff48e3faa3022b1dff54423df9aa293c25e"; 1391 + name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.9.0.tgz"; 1392 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz"; 1393 + sha1 = "647f8892cd2043a82ac0c8c5e75c36f1d9159f27"; 1370 1394 }; 1371 1395 } 1372 1396 { 1373 - name = "_webassemblyjs_helper_fsm___helper_fsm_1.8.5.tgz"; 1397 + name = "_webassemblyjs_helper_fsm___helper_fsm_1.9.0.tgz"; 1374 1398 path = fetchurl { 1375 - name = "_webassemblyjs_helper_fsm___helper_fsm_1.8.5.tgz"; 1376 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz"; 1377 - sha1 = "ba0b7d3b3f7e4733da6059c9332275d860702452"; 1399 + name = "_webassemblyjs_helper_fsm___helper_fsm_1.9.0.tgz"; 1400 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz"; 1401 + sha1 = "c05256b71244214671f4b08ec108ad63b70eddb8"; 1378 1402 }; 1379 1403 } 1380 1404 { 1381 - name = "_webassemblyjs_helper_module_context___helper_module_context_1.8.5.tgz"; 1405 + name = "_webassemblyjs_helper_module_context___helper_module_context_1.9.0.tgz"; 1382 1406 path = fetchurl { 1383 - name = "_webassemblyjs_helper_module_context___helper_module_context_1.8.5.tgz"; 1384 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz"; 1385 - sha1 = "def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245"; 1407 + name = "_webassemblyjs_helper_module_context___helper_module_context_1.9.0.tgz"; 1408 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz"; 1409 + sha1 = "25d8884b76839871a08a6c6f806c3979ef712f07"; 1386 1410 }; 1387 1411 } 1388 1412 { 1389 - name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.8.5.tgz"; 1413 + name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.9.0.tgz"; 1390 1414 path = fetchurl { 1391 - name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.8.5.tgz"; 1392 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz"; 1393 - sha1 = "537a750eddf5c1e932f3744206551c91c1b93e61"; 1415 + name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.9.0.tgz"; 1416 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz"; 1417 + sha1 = "4fed8beac9b8c14f8c58b70d124d549dd1fe5790"; 1394 1418 }; 1395 1419 } 1396 1420 { 1397 - name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.8.5.tgz"; 1421 + name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.9.0.tgz"; 1398 1422 path = fetchurl { 1399 - name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.8.5.tgz"; 1400 - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz"; 1401 - sha1 = "74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf"; 1423 + name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.9.0.tgz"; 1424 + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz"; 1425 + sha1 = "5a4138d5a6292ba18b04c5ae49717e4167965346"; 1402 1426 }; 1403 1427 } 1404 1428 { 1405 - name = "_webassemblyjs_ieee754___ieee754_1.8.5.tgz"; 1429 + name = "_webassemblyjs_ieee754___ieee754_1.9.0.tgz"; 1406 1430 path = fetchurl { 1407 - name = "_webassemblyjs_ieee754___ieee754_1.8.5.tgz"; 1408 - url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz"; 1409 - sha1 = "712329dbef240f36bf57bd2f7b8fb9bf4154421e"; 1431 + name = "_webassemblyjs_ieee754___ieee754_1.9.0.tgz"; 1432 + url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz"; 1433 + sha1 = "15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"; 1410 1434 }; 1411 1435 } 1412 1436 { 1413 - name = "_webassemblyjs_leb128___leb128_1.8.5.tgz"; 1437 + name = "_webassemblyjs_leb128___leb128_1.9.0.tgz"; 1414 1438 path = fetchurl { 1415 - name = "_webassemblyjs_leb128___leb128_1.8.5.tgz"; 1416 - url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz"; 1417 - sha1 = "044edeb34ea679f3e04cd4fd9824d5e35767ae10"; 1439 + name = "_webassemblyjs_leb128___leb128_1.9.0.tgz"; 1440 + url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz"; 1441 + sha1 = "f19ca0b76a6dc55623a09cffa769e838fa1e1c95"; 1418 1442 }; 1419 1443 } 1420 1444 { 1421 - name = "_webassemblyjs_utf8___utf8_1.8.5.tgz"; 1445 + name = "_webassemblyjs_utf8___utf8_1.9.0.tgz"; 1422 1446 path = fetchurl { 1423 - name = "_webassemblyjs_utf8___utf8_1.8.5.tgz"; 1424 - url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz"; 1425 - sha1 = "a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc"; 1447 + name = "_webassemblyjs_utf8___utf8_1.9.0.tgz"; 1448 + url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz"; 1449 + sha1 = "04d33b636f78e6a6813227e82402f7637b6229ab"; 1426 1450 }; 1427 1451 } 1428 1452 { 1429 - name = "_webassemblyjs_wasm_edit___wasm_edit_1.8.5.tgz"; 1453 + name = "_webassemblyjs_wasm_edit___wasm_edit_1.9.0.tgz"; 1430 1454 path = fetchurl { 1431 - name = "_webassemblyjs_wasm_edit___wasm_edit_1.8.5.tgz"; 1432 - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz"; 1433 - sha1 = "962da12aa5acc1c131c81c4232991c82ce56e01a"; 1455 + name = "_webassemblyjs_wasm_edit___wasm_edit_1.9.0.tgz"; 1456 + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz"; 1457 + sha1 = "3fe6d79d3f0f922183aa86002c42dd256cfee9cf"; 1434 1458 }; 1435 1459 } 1436 1460 { 1437 - name = "_webassemblyjs_wasm_gen___wasm_gen_1.8.5.tgz"; 1461 + name = "_webassemblyjs_wasm_gen___wasm_gen_1.9.0.tgz"; 1438 1462 path = fetchurl { 1439 - name = "_webassemblyjs_wasm_gen___wasm_gen_1.8.5.tgz"; 1440 - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz"; 1441 - sha1 = "54840766c2c1002eb64ed1abe720aded714f98bc"; 1463 + name = "_webassemblyjs_wasm_gen___wasm_gen_1.9.0.tgz"; 1464 + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz"; 1465 + sha1 = "50bc70ec68ded8e2763b01a1418bf43491a7a49c"; 1442 1466 }; 1443 1467 } 1444 1468 { 1445 - name = "_webassemblyjs_wasm_opt___wasm_opt_1.8.5.tgz"; 1469 + name = "_webassemblyjs_wasm_opt___wasm_opt_1.9.0.tgz"; 1446 1470 path = fetchurl { 1447 - name = "_webassemblyjs_wasm_opt___wasm_opt_1.8.5.tgz"; 1448 - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz"; 1449 - sha1 = "b24d9f6ba50394af1349f510afa8ffcb8a63d264"; 1471 + name = "_webassemblyjs_wasm_opt___wasm_opt_1.9.0.tgz"; 1472 + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz"; 1473 + sha1 = "2211181e5b31326443cc8112eb9f0b9028721a61"; 1450 1474 }; 1451 1475 } 1452 1476 { 1453 - name = "_webassemblyjs_wasm_parser___wasm_parser_1.8.5.tgz"; 1477 + name = "_webassemblyjs_wasm_parser___wasm_parser_1.9.0.tgz"; 1454 1478 path = fetchurl { 1455 - name = "_webassemblyjs_wasm_parser___wasm_parser_1.8.5.tgz"; 1456 - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz"; 1457 - sha1 = "21576f0ec88b91427357b8536383668ef7c66b8d"; 1479 + name = "_webassemblyjs_wasm_parser___wasm_parser_1.9.0.tgz"; 1480 + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz"; 1481 + sha1 = "9d48e44826df4a6598294aa6c87469d642fff65e"; 1458 1482 }; 1459 1483 } 1460 1484 { 1461 - name = "_webassemblyjs_wast_parser___wast_parser_1.8.5.tgz"; 1485 + name = "_webassemblyjs_wast_parser___wast_parser_1.9.0.tgz"; 1462 1486 path = fetchurl { 1463 - name = "_webassemblyjs_wast_parser___wast_parser_1.8.5.tgz"; 1464 - url = "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz"; 1465 - sha1 = "e10eecd542d0e7bd394f6827c49f3df6d4eefb8c"; 1487 + name = "_webassemblyjs_wast_parser___wast_parser_1.9.0.tgz"; 1488 + url = "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz"; 1489 + sha1 = "3031115d79ac5bd261556cecc3fa90a3ef451914"; 1466 1490 }; 1467 1491 } 1468 1492 { 1469 - name = "_webassemblyjs_wast_printer___wast_printer_1.8.5.tgz"; 1493 + name = "_webassemblyjs_wast_printer___wast_printer_1.9.0.tgz"; 1470 1494 path = fetchurl { 1471 - name = "_webassemblyjs_wast_printer___wast_printer_1.8.5.tgz"; 1472 - url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz"; 1473 - sha1 = "114bbc481fd10ca0e23b3560fa812748b0bae5bc"; 1495 + name = "_webassemblyjs_wast_printer___wast_printer_1.9.0.tgz"; 1496 + url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz"; 1497 + sha1 = "4935d54c85fef637b00ce9f52377451d00d47899"; 1474 1498 }; 1475 1499 } 1476 1500 { ··· 1554 1578 }; 1555 1579 } 1556 1580 { 1557 - name = "acorn_walk___acorn_walk_6.2.0.tgz"; 1558 - path = fetchurl { 1559 - name = "acorn_walk___acorn_walk_6.2.0.tgz"; 1560 - url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz"; 1561 - sha1 = "123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"; 1562 - }; 1563 - } 1564 - { 1565 1581 name = "acorn_walk___acorn_walk_7.2.0.tgz"; 1566 1582 path = fetchurl { 1567 1583 name = "acorn_walk___acorn_walk_7.2.0.tgz"; ··· 1570 1586 }; 1571 1587 } 1572 1588 { 1573 - name = "acorn___acorn_6.3.0.tgz"; 1589 + name = "acorn___acorn_6.4.2.tgz"; 1574 1590 path = fetchurl { 1575 - name = "acorn___acorn_6.3.0.tgz"; 1576 - url = "https://registry.yarnpkg.com/acorn/-/acorn-6.3.0.tgz"; 1577 - sha1 = "0087509119ffa4fc0a0041d1e93a417e68cb856e"; 1591 + name = "acorn___acorn_6.4.2.tgz"; 1592 + url = "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz"; 1593 + sha1 = "35866fd710528e92de10cf06016498e47e39e1e6"; 1578 1594 }; 1579 1595 } 1580 1596 { ··· 1634 1650 }; 1635 1651 } 1636 1652 { 1653 + name = "ajv___ajv_7.0.4.tgz"; 1654 + path = fetchurl { 1655 + name = "ajv___ajv_7.0.4.tgz"; 1656 + url = "https://registry.yarnpkg.com/ajv/-/ajv-7.0.4.tgz"; 1657 + sha1 = "827e5f5ae32f5e5c1637db61f253a112229b5e2f"; 1658 + }; 1659 + } 1660 + { 1637 1661 name = "amdefine___amdefine_1.0.1.tgz"; 1638 1662 path = fetchurl { 1639 1663 name = "amdefine___amdefine_1.0.1.tgz"; ··· 1655 1679 name = "ansi_colors___ansi_colors_3.2.4.tgz"; 1656 1680 url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz"; 1657 1681 sha1 = "e3a3da4bfbae6c86a9c285625de124a234026fbf"; 1682 + }; 1683 + } 1684 + { 1685 + name = "ansi_colors___ansi_colors_4.1.1.tgz"; 1686 + path = fetchurl { 1687 + name = "ansi_colors___ansi_colors_4.1.1.tgz"; 1688 + url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz"; 1689 + sha1 = "cbb9ae256bf750af1eab344f229aa27fe94ba348"; 1658 1690 }; 1659 1691 } 1660 1692 { ··· 1914 1946 }; 1915 1947 } 1916 1948 { 1917 - name = "array_includes___array_includes_3.0.3.tgz"; 1949 + name = "array_includes___array_includes_3.1.2.tgz"; 1918 1950 path = fetchurl { 1919 - name = "array_includes___array_includes_3.0.3.tgz"; 1920 - url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz"; 1921 - sha1 = "184b48f62d92d7452bb31b323165c7f8bd02266d"; 1951 + name = "array_includes___array_includes_3.1.2.tgz"; 1952 + url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.2.tgz"; 1953 + sha1 = "a8db03e0b88c8c6aeddc49cb132f9bcab4ebf9c8"; 1922 1954 }; 1923 1955 } 1924 1956 { ··· 1946 1978 }; 1947 1979 } 1948 1980 { 1949 - name = "array.prototype.flat___array.prototype.flat_1.2.3.tgz"; 1981 + name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz"; 1950 1982 path = fetchurl { 1951 - name = "array.prototype.flat___array.prototype.flat_1.2.3.tgz"; 1952 - url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz"; 1953 - sha1 = "0de82b426b0318dbfdb940089e38b043d37f6c7b"; 1983 + name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz"; 1984 + url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz"; 1985 + sha1 = "6ef638b43312bd401b4c6199fdec7e2dc9e9a123"; 1954 1986 }; 1955 1987 } 1956 1988 { ··· 2015 2047 name = "astral_regex___astral_regex_1.0.0.tgz"; 2016 2048 url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; 2017 2049 sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; 2050 + }; 2051 + } 2052 + { 2053 + name = "astral_regex___astral_regex_2.0.0.tgz"; 2054 + path = fetchurl { 2055 + name = "astral_regex___astral_regex_2.0.0.tgz"; 2056 + url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz"; 2057 + sha1 = "483143c567aeed4785759c0865786dc77d7d2e31"; 2018 2058 }; 2019 2059 } 2020 2060 { ··· 2130 2170 }; 2131 2171 } 2132 2172 { 2133 - name = "babel_loader___babel_loader_8.0.6.tgz"; 2173 + name = "babel_loader___babel_loader_8.2.2.tgz"; 2134 2174 path = fetchurl { 2135 - name = "babel_loader___babel_loader_8.0.6.tgz"; 2136 - url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.6.tgz"; 2137 - sha1 = "e33bdb6f362b03f4bb141a0c21ab87c501b70dfb"; 2175 + name = "babel_loader___babel_loader_8.2.2.tgz"; 2176 + url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.2.tgz"; 2177 + sha1 = "9363ce84c10c9a40e6c753748e1441b60c8a0b81"; 2138 2178 }; 2139 2179 } 2140 2180 { ··· 2330 2370 }; 2331 2371 } 2332 2372 { 2333 - name = "bn.js___bn.js_4.11.8.tgz"; 2373 + name = "bn.js___bn.js_4.11.9.tgz"; 2334 2374 path = fetchurl { 2335 - name = "bn.js___bn.js_4.11.8.tgz"; 2336 - url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz"; 2337 - sha1 = "2cde09eb5ee341f484746bb0309b3253b1b1442f"; 2375 + name = "bn.js___bn.js_4.11.9.tgz"; 2376 + url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz"; 2377 + sha1 = "26d556829458f9d1e81fc48952493d0ba3507828"; 2338 2378 }; 2339 2379 } 2340 2380 { ··· 2466 2506 }; 2467 2507 } 2468 2508 { 2469 - name = "browserslist___browserslist_4.12.0.tgz"; 2509 + name = "browserslist___browserslist_4.16.1.tgz"; 2470 2510 path = fetchurl { 2471 - name = "browserslist___browserslist_4.12.0.tgz"; 2472 - url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.0.tgz"; 2473 - sha1 = "06c6d5715a1ede6c51fc39ff67fd647f740b656d"; 2511 + name = "browserslist___browserslist_4.16.1.tgz"; 2512 + url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz"; 2513 + sha1 = "bf757a2da376b3447b800a16f0f1c96358138766"; 2474 2514 }; 2475 2515 } 2476 2516 { ··· 2562 2602 }; 2563 2603 } 2564 2604 { 2565 - name = "cacache___cacache_13.0.1.tgz"; 2605 + name = "cacache___cacache_15.0.5.tgz"; 2566 2606 path = fetchurl { 2567 - name = "cacache___cacache_13.0.1.tgz"; 2568 - url = "https://registry.yarnpkg.com/cacache/-/cacache-13.0.1.tgz"; 2569 - sha1 = "a8000c21697089082f85287a1aec6e382024a71c"; 2607 + name = "cacache___cacache_15.0.5.tgz"; 2608 + url = "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz"; 2609 + sha1 = "69162833da29170d6732334643c60e005f5f17d0"; 2570 2610 }; 2571 2611 } 2572 2612 { ··· 2594 2634 }; 2595 2635 } 2596 2636 { 2637 + name = "call_bind___call_bind_1.0.2.tgz"; 2638 + path = fetchurl { 2639 + name = "call_bind___call_bind_1.0.2.tgz"; 2640 + url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz"; 2641 + sha1 = "b1d4e89e688119c3c9a903ad30abb2f6a919be3c"; 2642 + }; 2643 + } 2644 + { 2597 2645 name = "call_me_maybe___call_me_maybe_1.0.1.tgz"; 2598 2646 path = fetchurl { 2599 2647 name = "call_me_maybe___call_me_maybe_1.0.1.tgz"; ··· 2698 2746 }; 2699 2747 } 2700 2748 { 2701 - name = "caniuse_lite___caniuse_lite_1.0.30001081.tgz"; 2749 + name = "caniuse_lite___caniuse_lite_1.0.30001178.tgz"; 2702 2750 path = fetchurl { 2703 - name = "caniuse_lite___caniuse_lite_1.0.30001081.tgz"; 2704 - url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001081.tgz"; 2705 - sha1 = "40615a3c416a047c5a4d45673e5257bf128eb3b5"; 2751 + name = "caniuse_lite___caniuse_lite_1.0.30001178.tgz"; 2752 + url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001178.tgz"; 2753 + sha1 = "3ad813b2b2c7d585b0be0a2440e1e233c6eabdbc"; 2706 2754 }; 2707 2755 } 2708 2756 { ··· 2738 2786 }; 2739 2787 } 2740 2788 { 2741 - name = "chalk___chalk_2.4.2.tgz"; 2742 - path = fetchurl { 2743 - name = "chalk___chalk_2.4.2.tgz"; 2744 - url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; 2745 - sha1 = "cd42541677a54333cf541a49108c1432b44c9424"; 2746 - }; 2747 - } 2748 - { 2749 2789 name = "chalk___chalk_1.1.3.tgz"; 2750 2790 path = fetchurl { 2751 2791 name = "chalk___chalk_1.1.3.tgz"; ··· 2754 2794 }; 2755 2795 } 2756 2796 { 2797 + name = "chalk___chalk_2.4.2.tgz"; 2798 + path = fetchurl { 2799 + name = "chalk___chalk_2.4.2.tgz"; 2800 + url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; 2801 + sha1 = "cd42541677a54333cf541a49108c1432b44c9424"; 2802 + }; 2803 + } 2804 + { 2757 2805 name = "chalk___chalk_3.0.0.tgz"; 2758 2806 path = fetchurl { 2759 2807 name = "chalk___chalk_3.0.0.tgz"; ··· 2810 2858 }; 2811 2859 } 2812 2860 { 2813 - name = "chardet___chardet_0.7.0.tgz"; 2814 - path = fetchurl { 2815 - name = "chardet___chardet_0.7.0.tgz"; 2816 - url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz"; 2817 - sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e"; 2818 - }; 2819 - } 2820 - { 2821 2861 name = "charenc___charenc_0.0.2.tgz"; 2822 2862 path = fetchurl { 2823 2863 name = "charenc___charenc_0.0.2.tgz"; ··· 2850 2890 }; 2851 2891 } 2852 2892 { 2893 + name = "chownr___chownr_2.0.0.tgz"; 2894 + path = fetchurl { 2895 + name = "chownr___chownr_2.0.0.tgz"; 2896 + url = "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz"; 2897 + sha1 = "15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"; 2898 + }; 2899 + } 2900 + { 2853 2901 name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz"; 2854 2902 path = fetchurl { 2855 2903 name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz"; ··· 2906 2954 }; 2907 2955 } 2908 2956 { 2909 - name = "cli_cursor___cli_cursor_3.1.0.tgz"; 2910 - path = fetchurl { 2911 - name = "cli_cursor___cli_cursor_3.1.0.tgz"; 2912 - url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz"; 2913 - sha1 = "264305a7ae490d1d03bf0c9ba7c925d1753af307"; 2914 - }; 2915 - } 2916 - { 2917 - name = "cli_width___cli_width_2.2.0.tgz"; 2918 - path = fetchurl { 2919 - name = "cli_width___cli_width_2.2.0.tgz"; 2920 - url = "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz"; 2921 - sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639"; 2922 - }; 2923 - } 2924 - { 2925 2957 name = "clipboard___clipboard_1.7.1.tgz"; 2926 2958 path = fetchurl { 2927 2959 name = "clipboard___clipboard_1.7.1.tgz"; ··· 2935 2967 name = "clipboard___clipboard_2.0.6.tgz"; 2936 2968 url = "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz"; 2937 2969 sha1 = "52921296eec0fdf77ead1749421b21c968647376"; 2938 - }; 2939 - } 2940 - { 2941 - name = "cliui___cliui_4.1.0.tgz"; 2942 - path = fetchurl { 2943 - name = "cliui___cliui_4.1.0.tgz"; 2944 - url = "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz"; 2945 - sha1 = "348422dbe82d800b3022eef4f6ac10bf2e4d1b49"; 2946 2970 }; 2947 2971 } 2948 2972 { ··· 3098 3122 }; 3099 3123 } 3100 3124 { 3125 + name = "colorette___colorette_1.2.1.tgz"; 3126 + path = fetchurl { 3127 + name = "colorette___colorette_1.2.1.tgz"; 3128 + url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz"; 3129 + sha1 = "4d0b921325c14faf92633086a536db6e89564b1b"; 3130 + }; 3131 + } 3132 + { 3101 3133 name = "colors___colors_1.3.3.tgz"; 3102 3134 path = fetchurl { 3103 3135 name = "colors___colors_1.3.3.tgz"; ··· 3178 3210 }; 3179 3211 } 3180 3212 { 3181 - name = "compression_webpack_plugin___compression_webpack_plugin_3.0.1.tgz"; 3213 + name = "compression_webpack_plugin___compression_webpack_plugin_5.0.2.tgz"; 3182 3214 path = fetchurl { 3183 - name = "compression_webpack_plugin___compression_webpack_plugin_3.0.1.tgz"; 3184 - url = "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-3.0.1.tgz"; 3185 - sha1 = "be7a343e6dfbccbd64a77c5fbe29627d140fc321"; 3215 + name = "compression_webpack_plugin___compression_webpack_plugin_5.0.2.tgz"; 3216 + url = "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-5.0.2.tgz"; 3217 + sha1 = "df84e682cfa1fb2a230e71cf83d50c323d5369c2"; 3186 3218 }; 3187 3219 } 3188 3220 { ··· 3234 3266 }; 3235 3267 } 3236 3268 { 3237 - name = "confusing_browser_globals___confusing_browser_globals_1.0.9.tgz"; 3269 + name = "confusing_browser_globals___confusing_browser_globals_1.0.10.tgz"; 3238 3270 path = fetchurl { 3239 - name = "confusing_browser_globals___confusing_browser_globals_1.0.9.tgz"; 3240 - url = "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz"; 3241 - sha1 = "72bc13b483c0276801681871d4898516f8f54fdd"; 3271 + name = "confusing_browser_globals___confusing_browser_globals_1.0.10.tgz"; 3272 + url = "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz"; 3273 + sha1 = "30d1e7f3d1b882b25ec4933d1d1adac353d20a59"; 3242 3274 }; 3243 3275 } 3244 3276 { ··· 3378 3410 }; 3379 3411 } 3380 3412 { 3381 - name = "copy_webpack_plugin___copy_webpack_plugin_5.1.1.tgz"; 3413 + name = "copy_webpack_plugin___copy_webpack_plugin_5.1.2.tgz"; 3382 3414 path = fetchurl { 3383 - name = "copy_webpack_plugin___copy_webpack_plugin_5.1.1.tgz"; 3384 - url = "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.1.1.tgz"; 3385 - sha1 = "5481a03dea1123d88a988c6ff8b78247214f0b88"; 3415 + name = "copy_webpack_plugin___copy_webpack_plugin_5.1.2.tgz"; 3416 + url = "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.1.2.tgz"; 3417 + sha1 = "8a889e1dcafa6c91c6cd4be1ad158f1d3823bae2"; 3386 3418 }; 3387 3419 } 3388 3420 { ··· 3402 3434 }; 3403 3435 } 3404 3436 { 3405 - name = "core_js___core_js_3.6.4.tgz"; 3437 + name = "core_js___core_js_3.8.3.tgz"; 3406 3438 path = fetchurl { 3407 - name = "core_js___core_js_3.6.4.tgz"; 3408 - url = "https://registry.yarnpkg.com/core-js/-/core-js-3.6.4.tgz"; 3409 - sha1 = "440a83536b458114b9cb2ac1580ba377dc470647"; 3439 + name = "core_js___core_js_3.8.3.tgz"; 3440 + url = "https://registry.yarnpkg.com/core-js/-/core-js-3.8.3.tgz"; 3441 + sha1 = "c21906e1f14f3689f93abcc6e26883550dd92dd0"; 3410 3442 }; 3411 3443 } 3412 3444 { ··· 3474 3506 }; 3475 3507 } 3476 3508 { 3477 - name = "cross_spawn___cross_spawn_6.0.5.tgz"; 3478 - path = fetchurl { 3479 - name = "cross_spawn___cross_spawn_6.0.5.tgz"; 3480 - url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; 3481 - sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"; 3482 - }; 3483 - } 3484 - { 3485 3509 name = "cross_spawn___cross_spawn_3.0.1.tgz"; 3486 3510 path = fetchurl { 3487 3511 name = "cross_spawn___cross_spawn_3.0.1.tgz"; 3488 3512 url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz"; 3489 3513 sha1 = "1256037ecb9f0c5f79e3d6ef135e30770184b982"; 3514 + }; 3515 + } 3516 + { 3517 + name = "cross_spawn___cross_spawn_6.0.5.tgz"; 3518 + path = fetchurl { 3519 + name = "cross_spawn___cross_spawn_6.0.5.tgz"; 3520 + url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; 3521 + sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"; 3490 3522 }; 3491 3523 } 3492 3524 { ··· 3519 3551 name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; 3520 3552 url = "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz"; 3521 3553 sha1 = "ef2a7a966ec11083388369baa02ebead229b30d5"; 3522 - }; 3523 - } 3524 - { 3525 - name = "crypto_random_string___crypto_random_string_3.0.1.tgz"; 3526 - path = fetchurl { 3527 - name = "crypto_random_string___crypto_random_string_3.0.1.tgz"; 3528 - url = "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-3.0.1.tgz"; 3529 - sha1 = "29d7dc759d577a768afb3b7b2765dd9bd7ffe36a"; 3530 3554 }; 3531 3555 } 3532 3556 { ··· 4426 4450 }; 4427 4451 } 4428 4452 { 4429 - name = "dot_prop___dot_prop_4.2.0.tgz"; 4453 + name = "dot_prop___dot_prop_4.2.1.tgz"; 4430 4454 path = fetchurl { 4431 - name = "dot_prop___dot_prop_4.2.0.tgz"; 4432 - url = "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz"; 4433 - sha1 = "1f19e0c2e1aa0e32797c49799f2837ac6af69c57"; 4455 + name = "dot_prop___dot_prop_4.2.1.tgz"; 4456 + url = "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.1.tgz"; 4457 + sha1 = "45884194a71fc2cda71cbb4bceb3a4dd2f433ba4"; 4434 4458 }; 4435 4459 } 4436 4460 { ··· 4482 4506 }; 4483 4507 } 4484 4508 { 4485 - name = "echarts___echarts_4.6.0.tgz"; 4509 + name = "echarts___echarts_4.9.0.tgz"; 4486 4510 path = fetchurl { 4487 - name = "echarts___echarts_4.6.0.tgz"; 4488 - url = "https://registry.yarnpkg.com/echarts/-/echarts-4.6.0.tgz"; 4489 - sha1 = "b5a47a1046cec93ceeef954f9ee54751340558ec"; 4511 + name = "echarts___echarts_4.9.0.tgz"; 4512 + url = "https://registry.yarnpkg.com/echarts/-/echarts-4.9.0.tgz"; 4513 + sha1 = "a9b9baa03f03a2a731e6340c55befb57a9e1347d"; 4490 4514 }; 4491 4515 } 4492 4516 { ··· 4522 4546 }; 4523 4547 } 4524 4548 { 4525 - name = "electron_to_chromium___electron_to_chromium_1.3.466.tgz"; 4549 + name = "electron_to_chromium___electron_to_chromium_1.3.642.tgz"; 4526 4550 path = fetchurl { 4527 - name = "electron_to_chromium___electron_to_chromium_1.3.466.tgz"; 4528 - url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.466.tgz"; 4529 - sha1 = "89f716db3afc4bb482ea2aaaa16c4808f89f762a"; 4551 + name = "electron_to_chromium___electron_to_chromium_1.3.642.tgz"; 4552 + url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.642.tgz"; 4553 + sha1 = "8b884f50296c2ae2a9997f024d0e3e57facc2b94"; 4530 4554 }; 4531 4555 } 4532 4556 { 4533 - name = "elliptic___elliptic_6.4.0.tgz"; 4557 + name = "elliptic___elliptic_6.5.4.tgz"; 4534 4558 path = fetchurl { 4535 - name = "elliptic___elliptic_6.4.0.tgz"; 4536 - url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz"; 4537 - sha1 = "cac9af8762c85836187003c8dfe193e5e2eae5df"; 4559 + name = "elliptic___elliptic_6.5.4.tgz"; 4560 + url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz"; 4561 + sha1 = "da37cebd31e79a1367e941b592ed1fbebd58abbb"; 4538 4562 }; 4539 4563 } 4540 4564 { ··· 4570 4594 }; 4571 4595 } 4572 4596 { 4573 - name = "emojis_list___emojis_list_2.1.0.tgz"; 4574 - path = fetchurl { 4575 - name = "emojis_list___emojis_list_2.1.0.tgz"; 4576 - url = "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz"; 4577 - sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389"; 4578 - }; 4579 - } 4580 - { 4581 4597 name = "emojis_list___emojis_list_3.0.0.tgz"; 4582 4598 path = fetchurl { 4583 4599 name = "emojis_list___emojis_list_3.0.0.tgz"; ··· 4626 4642 }; 4627 4643 } 4628 4644 { 4629 - name = "enhanced_resolve___enhanced_resolve_4.1.0.tgz"; 4630 - path = fetchurl { 4631 - name = "enhanced_resolve___enhanced_resolve_4.1.0.tgz"; 4632 - url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz"; 4633 - sha1 = "41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f"; 4634 - }; 4635 - } 4636 - { 4637 4645 name = "enhanced_resolve___enhanced_resolve_0.9.1.tgz"; 4638 4646 path = fetchurl { 4639 4647 name = "enhanced_resolve___enhanced_resolve_0.9.1.tgz"; 4640 4648 url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz"; 4641 4649 sha1 = "4d6e689b3725f86090927ccc86cd9f1635b89e2e"; 4650 + }; 4651 + } 4652 + { 4653 + name = "enhanced_resolve___enhanced_resolve_4.5.0.tgz"; 4654 + path = fetchurl { 4655 + name = "enhanced_resolve___enhanced_resolve_4.5.0.tgz"; 4656 + url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz"; 4657 + sha1 = "2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec"; 4658 + }; 4659 + } 4660 + { 4661 + name = "enquirer___enquirer_2.3.6.tgz"; 4662 + path = fetchurl { 4663 + name = "enquirer___enquirer_2.3.6.tgz"; 4664 + url = "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz"; 4665 + sha1 = "2a7fe5dd634a1e4125a975ec994ff5456dc3734d"; 4642 4666 }; 4643 4667 } 4644 4668 { ··· 4690 4714 }; 4691 4715 } 4692 4716 { 4693 - name = "es_abstract___es_abstract_1.17.4.tgz"; 4717 + name = "es_abstract___es_abstract_1.18.0_next.2.tgz"; 4694 4718 path = fetchurl { 4695 - name = "es_abstract___es_abstract_1.17.4.tgz"; 4696 - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.4.tgz"; 4697 - sha1 = "e3aedf19706b20e7c2594c35fc0d57605a79e184"; 4719 + name = "es_abstract___es_abstract_1.18.0_next.2.tgz"; 4720 + url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.2.tgz"; 4721 + sha1 = "088101a55f0541f595e7e057199e27ddc8f3a5c2"; 4698 4722 }; 4699 4723 } 4700 4724 { ··· 4730 4754 }; 4731 4755 } 4732 4756 { 4757 + name = "escalade___escalade_3.1.1.tgz"; 4758 + path = fetchurl { 4759 + name = "escalade___escalade_3.1.1.tgz"; 4760 + url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz"; 4761 + sha1 = "d8cfdc7000965c5a0174b4a82eaa5c0552742e40"; 4762 + }; 4763 + } 4764 + { 4733 4765 name = "escape_goat___escape_goat_2.1.1.tgz"; 4734 4766 path = fetchurl { 4735 4767 name = "escape_goat___escape_goat_2.1.1.tgz"; ··· 4762 4794 }; 4763 4795 } 4764 4796 { 4765 - name = "escaper___escaper_2.5.3.tgz"; 4766 - path = fetchurl { 4767 - name = "escaper___escaper_2.5.3.tgz"; 4768 - url = "https://registry.yarnpkg.com/escaper/-/escaper-2.5.3.tgz"; 4769 - sha1 = "8b8fe90ba364054151ab7eff18b4ce43b1e13ab5"; 4770 - }; 4771 - } 4772 - { 4773 4797 name = "escodegen___escodegen_1.14.3.tgz"; 4774 4798 path = fetchurl { 4775 4799 name = "escodegen___escodegen_1.14.3.tgz"; ··· 4778 4802 }; 4779 4803 } 4780 4804 { 4781 - name = "eslint_config_airbnb_base___eslint_config_airbnb_base_14.0.0.tgz"; 4805 + name = "eslint_config_airbnb_base___eslint_config_airbnb_base_14.2.1.tgz"; 4782 4806 path = fetchurl { 4783 - name = "eslint_config_airbnb_base___eslint_config_airbnb_base_14.0.0.tgz"; 4784 - url = "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.0.0.tgz"; 4785 - sha1 = "8a7bcb9643d13c55df4dd7444f138bf4efa61e17"; 4807 + name = "eslint_config_airbnb_base___eslint_config_airbnb_base_14.2.1.tgz"; 4808 + url = "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz"; 4809 + sha1 = "8a2eb38455dc5a312550193b319cdaeef042cd1e"; 4786 4810 }; 4787 4811 } 4788 4812 { ··· 4794 4818 }; 4795 4819 } 4796 4820 { 4797 - name = "eslint_import_resolver_jest___eslint_import_resolver_jest_2.1.2.tgz"; 4821 + name = "eslint_import_resolver_jest___eslint_import_resolver_jest_3.0.0.tgz"; 4798 4822 path = fetchurl { 4799 - name = "eslint_import_resolver_jest___eslint_import_resolver_jest_2.1.2.tgz"; 4800 - url = "https://registry.yarnpkg.com/eslint-import-resolver-jest/-/eslint-import-resolver-jest-2.1.2.tgz"; 4801 - sha1 = "8720fbe8b8498e95cb2bc6ef52b46b713aedaa59"; 4823 + name = "eslint_import_resolver_jest___eslint_import_resolver_jest_3.0.0.tgz"; 4824 + url = "https://registry.yarnpkg.com/eslint-import-resolver-jest/-/eslint-import-resolver-jest-3.0.0.tgz"; 4825 + sha1 = "fd61da30fe58f4c1074af1f069b4267c70a91fd6"; 4802 4826 }; 4803 4827 } 4804 4828 { 4805 - name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; 4829 + name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.4.tgz"; 4806 4830 path = fetchurl { 4807 - name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; 4808 - url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz"; 4809 - sha1 = "58f15fb839b8d0576ca980413476aab2472db66a"; 4831 + name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.4.tgz"; 4832 + url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz"; 4833 + sha1 = "85ffa81942c25012d8231096ddf679c03042c717"; 4810 4834 }; 4811 4835 } 4812 4836 { 4813 - name = "eslint_import_resolver_webpack___eslint_import_resolver_webpack_0.12.1.tgz"; 4837 + name = "eslint_import_resolver_webpack___eslint_import_resolver_webpack_0.13.0.tgz"; 4814 4838 path = fetchurl { 4815 - name = "eslint_import_resolver_webpack___eslint_import_resolver_webpack_0.12.1.tgz"; 4816 - url = "https://registry.yarnpkg.com/eslint-import-resolver-webpack/-/eslint-import-resolver-webpack-0.12.1.tgz"; 4817 - sha1 = "771ae561e887ca4e53ee87605fbb36c5e290b0f5"; 4839 + name = "eslint_import_resolver_webpack___eslint_import_resolver_webpack_0.13.0.tgz"; 4840 + url = "https://registry.yarnpkg.com/eslint-import-resolver-webpack/-/eslint-import-resolver-webpack-0.13.0.tgz"; 4841 + sha1 = "5cb19cf4b6996c8a2514aeb10f909e2c70488dc3"; 4818 4842 }; 4819 4843 } 4820 4844 { 4821 - name = "eslint_module_utils___eslint_module_utils_2.5.2.tgz"; 4845 + name = "eslint_module_utils___eslint_module_utils_2.6.0.tgz"; 4822 4846 path = fetchurl { 4823 - name = "eslint_module_utils___eslint_module_utils_2.5.2.tgz"; 4824 - url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.5.2.tgz"; 4825 - sha1 = "7878f7504824e1b857dd2505b59a8e5eda26a708"; 4847 + name = "eslint_module_utils___eslint_module_utils_2.6.0.tgz"; 4848 + url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz"; 4849 + sha1 = "579ebd094f56af7797d19c9866c9c9486629bfa6"; 4826 4850 }; 4827 4851 } 4828 4852 { ··· 4842 4866 }; 4843 4867 } 4844 4868 { 4845 - name = "eslint_plugin_import___eslint_plugin_import_2.20.1.tgz"; 4869 + name = "eslint_plugin_import___eslint_plugin_import_2.22.1.tgz"; 4846 4870 path = fetchurl { 4847 - name = "eslint_plugin_import___eslint_plugin_import_2.20.1.tgz"; 4848 - url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.1.tgz"; 4849 - sha1 = "802423196dcb11d9ce8435a5fc02a6d3b46939b3"; 4871 + name = "eslint_plugin_import___eslint_plugin_import_2.22.1.tgz"; 4872 + url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz"; 4873 + sha1 = "0896c7e6a0cf44109a2d97b95903c2bb689d7702"; 4850 4874 }; 4851 4875 } 4852 4876 { 4853 - name = "eslint_plugin_jasmine___eslint_plugin_jasmine_4.1.0.tgz"; 4877 + name = "eslint_plugin_jasmine___eslint_plugin_jasmine_4.1.2.tgz"; 4854 4878 path = fetchurl { 4855 - name = "eslint_plugin_jasmine___eslint_plugin_jasmine_4.1.0.tgz"; 4856 - url = "https://registry.yarnpkg.com/eslint-plugin-jasmine/-/eslint-plugin-jasmine-4.1.0.tgz"; 4857 - sha1 = "4f6d41b1a8622348c97559cbcd29badffa74dbfa"; 4879 + name = "eslint_plugin_jasmine___eslint_plugin_jasmine_4.1.2.tgz"; 4880 + url = "https://registry.yarnpkg.com/eslint-plugin-jasmine/-/eslint-plugin-jasmine-4.1.2.tgz"; 4881 + sha1 = "50cc20d603b02b37727f8d174d4b83b9b8ef25a5"; 4858 4882 }; 4859 4883 } 4860 4884 { ··· 4866 4890 }; 4867 4891 } 4868 4892 { 4869 - name = "eslint_plugin_no_jquery___eslint_plugin_no_jquery_2.3.1.tgz"; 4893 + name = "eslint_plugin_no_jquery___eslint_plugin_no_jquery_2.5.0.tgz"; 4870 4894 path = fetchurl { 4871 - name = "eslint_plugin_no_jquery___eslint_plugin_no_jquery_2.3.1.tgz"; 4872 - url = "https://registry.yarnpkg.com/eslint-plugin-no-jquery/-/eslint-plugin-no-jquery-2.3.1.tgz"; 4873 - sha1 = "1c364cb863a38cc1570c8020155b6004cca62178"; 4895 + name = "eslint_plugin_no_jquery___eslint_plugin_no_jquery_2.5.0.tgz"; 4896 + url = "https://registry.yarnpkg.com/eslint-plugin-no-jquery/-/eslint-plugin-no-jquery-2.5.0.tgz"; 4897 + sha1 = "6c12e3aae172bfd3363b7ac8c3f3e944704867f4"; 4874 4898 }; 4875 4899 } 4876 4900 { ··· 4882 4906 }; 4883 4907 } 4884 4908 { 4885 - name = "eslint_plugin_vue___eslint_plugin_vue_7.4.1.tgz"; 4909 + name = "eslint_plugin_vue___eslint_plugin_vue_7.5.0.tgz"; 4886 4910 path = fetchurl { 4887 - name = "eslint_plugin_vue___eslint_plugin_vue_7.4.1.tgz"; 4888 - url = "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.4.1.tgz"; 4889 - sha1 = "2526ef0c010c218824a89423dbe6ddbe76f04fd6"; 4911 + name = "eslint_plugin_vue___eslint_plugin_vue_7.5.0.tgz"; 4912 + url = "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.5.0.tgz"; 4913 + sha1 = "cc6d983eb22781fa2440a7573cf39af439bb5725"; 4890 4914 }; 4891 4915 } 4892 4916 { ··· 4906 4930 }; 4907 4931 } 4908 4932 { 4909 - name = "eslint_scope___eslint_scope_5.0.0.tgz"; 4933 + name = "eslint_scope___eslint_scope_5.1.1.tgz"; 4910 4934 path = fetchurl { 4911 - name = "eslint_scope___eslint_scope_5.0.0.tgz"; 4912 - url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz"; 4913 - sha1 = "e87c8887c73e8d1ec84f1ca591645c358bfc8fb9"; 4914 - }; 4915 - } 4916 - { 4917 - name = "eslint_utils___eslint_utils_1.4.3.tgz"; 4918 - path = fetchurl { 4919 - name = "eslint_utils___eslint_utils_1.4.3.tgz"; 4920 - url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz"; 4921 - sha1 = "74fec7c54d0776b6f67e0251040b5806564e981f"; 4935 + name = "eslint_scope___eslint_scope_5.1.1.tgz"; 4936 + url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz"; 4937 + sha1 = "e786e59a66cb92b3f6c1fb0d508aab174848f48c"; 4922 4938 }; 4923 4939 } 4924 4940 { ··· 4930 4946 }; 4931 4947 } 4932 4948 { 4933 - name = "eslint_visitor_keys___eslint_visitor_keys_1.1.0.tgz"; 4949 + name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz"; 4934 4950 path = fetchurl { 4935 - name = "eslint_visitor_keys___eslint_visitor_keys_1.1.0.tgz"; 4936 - url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz"; 4937 - sha1 = "e2a82cea84ff246ad6fb57f9bde5b46621459ec2"; 4951 + name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz"; 4952 + url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"; 4953 + sha1 = "30ebd1ef7c2fdff01c3a4f151044af25fab0523e"; 4938 4954 }; 4939 4955 } 4940 4956 { 4941 - name = "eslint___eslint_6.8.0.tgz"; 4957 + name = "eslint_visitor_keys___eslint_visitor_keys_2.0.0.tgz"; 4958 + path = fetchurl { 4959 + name = "eslint_visitor_keys___eslint_visitor_keys_2.0.0.tgz"; 4960 + url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz"; 4961 + sha1 = "21fdc8fbcd9c795cc0321f0563702095751511a8"; 4962 + }; 4963 + } 4964 + { 4965 + name = "eslint___eslint_7.19.0.tgz"; 4942 4966 path = fetchurl { 4943 - name = "eslint___eslint_6.8.0.tgz"; 4944 - url = "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz"; 4945 - sha1 = "62262d6729739f9275723824302fb227c8c93ffb"; 4967 + name = "eslint___eslint_7.19.0.tgz"; 4968 + url = "https://registry.yarnpkg.com/eslint/-/eslint-7.19.0.tgz"; 4969 + sha1 = "6719621b196b5fad72e43387981314e5d0dc3f41"; 4946 4970 }; 4947 4971 } 4948 4972 { ··· 4954 4978 }; 4955 4979 } 4956 4980 { 4981 + name = "espree___espree_7.3.1.tgz"; 4982 + path = fetchurl { 4983 + name = "espree___espree_7.3.1.tgz"; 4984 + url = "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz"; 4985 + sha1 = "f2df330b752c6f55019f8bd89b7660039c1bbbb6"; 4986 + }; 4987 + } 4988 + { 4957 4989 name = "esprima___esprima_4.0.1.tgz"; 4958 4990 path = fetchurl { 4959 4991 name = "esprima___esprima_4.0.1.tgz"; ··· 4962 4994 }; 4963 4995 } 4964 4996 { 4965 - name = "esquery___esquery_1.0.1.tgz"; 4997 + name = "esquery___esquery_1.3.1.tgz"; 4966 4998 path = fetchurl { 4967 - name = "esquery___esquery_1.0.1.tgz"; 4968 - url = "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz"; 4969 - sha1 = "406c51658b1f5991a5f9b62b1dc25b00e3e5c708"; 4999 + name = "esquery___esquery_1.3.1.tgz"; 5000 + url = "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz"; 5001 + sha1 = "b78b5828aa8e214e29fb74c4d5b752e1c033da57"; 4970 5002 }; 4971 5003 } 4972 5004 { 4973 - name = "esrecurse___esrecurse_4.2.1.tgz"; 5005 + name = "esrecurse___esrecurse_4.3.0.tgz"; 4974 5006 path = fetchurl { 4975 - name = "esrecurse___esrecurse_4.2.1.tgz"; 4976 - url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz"; 4977 - sha1 = "007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"; 5007 + name = "esrecurse___esrecurse_4.3.0.tgz"; 5008 + url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz"; 5009 + sha1 = "7ad7964d679abb28bee72cec63758b1c5d2c9921"; 4978 5010 }; 4979 5011 } 4980 5012 { ··· 4983 5015 name = "estraverse___estraverse_4.3.0.tgz"; 4984 5016 url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; 4985 5017 sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d"; 5018 + }; 5019 + } 5020 + { 5021 + name = "estraverse___estraverse_5.2.0.tgz"; 5022 + path = fetchurl { 5023 + name = "estraverse___estraverse_5.2.0.tgz"; 5024 + url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz"; 5025 + sha1 = "307df42547e6cc7324d3cf03c155d5cdb8c53880"; 4986 5026 }; 4987 5027 } 4988 5028 { ··· 5154 5194 }; 5155 5195 } 5156 5196 { 5157 - name = "external_editor___external_editor_3.1.0.tgz"; 5158 - path = fetchurl { 5159 - name = "external_editor___external_editor_3.1.0.tgz"; 5160 - url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz"; 5161 - sha1 = "cb03f740befae03ea4d283caed2741a83f335495"; 5162 - }; 5163 - } 5164 - { 5165 5197 name = "extglob___extglob_2.0.4.tgz"; 5166 5198 path = fetchurl { 5167 5199 name = "extglob___extglob_2.0.4.tgz"; ··· 5250 5282 }; 5251 5283 } 5252 5284 { 5253 - name = "faye_websocket___faye_websocket_0.10.0.tgz"; 5254 - path = fetchurl { 5255 - name = "faye_websocket___faye_websocket_0.10.0.tgz"; 5256 - url = "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz"; 5257 - sha1 = "4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"; 5258 - }; 5259 - } 5260 - { 5261 - name = "faye_websocket___faye_websocket_0.11.1.tgz"; 5285 + name = "faye_websocket___faye_websocket_0.11.3.tgz"; 5262 5286 path = fetchurl { 5263 - name = "faye_websocket___faye_websocket_0.11.1.tgz"; 5264 - url = "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz"; 5265 - sha1 = "f0efe18c4f56e4f40afc7e06c719fd5ee6188f38"; 5287 + name = "faye_websocket___faye_websocket_0.11.3.tgz"; 5288 + url = "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz"; 5289 + sha1 = "5c0e9a8968e8912c286639fde977a8b209f2508e"; 5266 5290 }; 5267 5291 } 5268 5292 { ··· 5282 5306 }; 5283 5307 } 5284 5308 { 5285 - name = "figures___figures_3.2.0.tgz"; 5286 - path = fetchurl { 5287 - name = "figures___figures_3.2.0.tgz"; 5288 - url = "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz"; 5289 - sha1 = "625c18bd293c604dc4a8ddb2febf0c88341746af"; 5290 - }; 5291 - } 5292 - { 5293 5309 name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 5294 5310 path = fetchurl { 5295 5311 name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 5296 5312 url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 5297 5313 sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c"; 5314 + }; 5315 + } 5316 + { 5317 + name = "file_entry_cache___file_entry_cache_6.0.0.tgz"; 5318 + path = fetchurl { 5319 + name = "file_entry_cache___file_entry_cache_6.0.0.tgz"; 5320 + url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.0.tgz"; 5321 + sha1 = "7921a89c391c6d93efec2169ac6bf300c527ea0a"; 5298 5322 }; 5299 5323 } 5300 5324 { ··· 5362 5386 }; 5363 5387 } 5364 5388 { 5365 - name = "find_cache_dir___find_cache_dir_3.0.0.tgz"; 5389 + name = "find_cache_dir___find_cache_dir_3.3.1.tgz"; 5366 5390 path = fetchurl { 5367 - name = "find_cache_dir___find_cache_dir_3.0.0.tgz"; 5368 - url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.0.0.tgz"; 5369 - sha1 = "cd4b7dd97b7185b7e17dbfe2d6e4115ee3eeb8fc"; 5391 + name = "find_cache_dir___find_cache_dir_3.3.1.tgz"; 5392 + url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz"; 5393 + sha1 = "89b33fad4a4670daa94f855f7fbe31d6d84fe880"; 5370 5394 }; 5371 5395 } 5372 5396 { ··· 5426 5450 }; 5427 5451 } 5428 5452 { 5453 + name = "flat_cache___flat_cache_3.0.4.tgz"; 5454 + path = fetchurl { 5455 + name = "flat_cache___flat_cache_3.0.4.tgz"; 5456 + url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz"; 5457 + sha1 = "61b0338302b2fe9f957dcc32fc2a87f1c3048b11"; 5458 + }; 5459 + } 5460 + { 5429 5461 name = "flatted___flatted_2.0.0.tgz"; 5430 5462 path = fetchurl { 5431 5463 name = "flatted___flatted_2.0.0.tgz"; ··· 5434 5466 }; 5435 5467 } 5436 5468 { 5469 + name = "flatted___flatted_3.1.1.tgz"; 5470 + path = fetchurl { 5471 + name = "flatted___flatted_3.1.1.tgz"; 5472 + url = "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz"; 5473 + sha1 = "c4b489e80096d9df1dfc97c79871aea7c617c469"; 5474 + }; 5475 + } 5476 + { 5437 5477 name = "flush_write_stream___flush_write_stream_1.1.1.tgz"; 5438 5478 path = fetchurl { 5439 5479 name = "flush_write_stream___flush_write_stream_1.1.1.tgz"; ··· 5450 5490 }; 5451 5491 } 5452 5492 { 5453 - name = "font_awesome___font_awesome_4.7.0.tgz"; 5454 - path = fetchurl { 5455 - name = "font_awesome___font_awesome_4.7.0.tgz"; 5456 - url = "https://registry.yarnpkg.com/font-awesome/-/font-awesome-4.7.0.tgz"; 5457 - sha1 = "8fa8cf0411a1a31afd07b06d2902bb9fc815a133"; 5458 - }; 5459 - } 5460 - { 5461 5493 name = "for_in___for_in_1.0.2.tgz"; 5462 5494 path = fetchurl { 5463 5495 name = "for_in___for_in_1.0.2.tgz"; ··· 5618 5650 }; 5619 5651 } 5620 5652 { 5621 - name = "get_caller_file___get_caller_file_1.0.3.tgz"; 5622 - path = fetchurl { 5623 - name = "get_caller_file___get_caller_file_1.0.3.tgz"; 5624 - url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz"; 5625 - sha1 = "f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"; 5626 - }; 5627 - } 5628 - { 5629 5653 name = "get_caller_file___get_caller_file_2.0.5.tgz"; 5630 5654 path = fetchurl { 5631 5655 name = "get_caller_file___get_caller_file_2.0.5.tgz"; 5632 5656 url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz"; 5633 5657 sha1 = "4f94412a82db32f36e3b0b9741f8a97feb031f7e"; 5658 + }; 5659 + } 5660 + { 5661 + name = "get_intrinsic___get_intrinsic_1.1.1.tgz"; 5662 + path = fetchurl { 5663 + name = "get_intrinsic___get_intrinsic_1.1.1.tgz"; 5664 + url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz"; 5665 + sha1 = "15f59f376f855c446963948f0d24cd3637b4abc6"; 5634 5666 }; 5635 5667 } 5636 5668 { ··· 5706 5738 }; 5707 5739 } 5708 5740 { 5709 - name = "gettext_extractor_vue___gettext_extractor_vue_4.0.2.tgz"; 5741 + name = "gettext_extractor_vue___gettext_extractor_vue_5.0.0.tgz"; 5710 5742 path = fetchurl { 5711 - name = "gettext_extractor_vue___gettext_extractor_vue_4.0.2.tgz"; 5712 - url = "https://registry.yarnpkg.com/gettext-extractor-vue/-/gettext-extractor-vue-4.0.2.tgz"; 5713 - sha1 = "16e1cdbdaf37e5bdf3cb0aff63685bdc5e74e906"; 5743 + name = "gettext_extractor_vue___gettext_extractor_vue_5.0.0.tgz"; 5744 + url = "https://registry.yarnpkg.com/gettext-extractor-vue/-/gettext-extractor-vue-5.0.0.tgz"; 5745 + sha1 = "dc463868d49e14097c4545c8ed4851d8d3edd6dd"; 5714 5746 }; 5715 5747 } 5716 5748 { 5717 - name = "gettext_extractor___gettext_extractor_3.4.3.tgz"; 5749 + name = "gettext_extractor___gettext_extractor_3.5.3.tgz"; 5718 5750 path = fetchurl { 5719 - name = "gettext_extractor___gettext_extractor_3.4.3.tgz"; 5720 - url = "https://registry.yarnpkg.com/gettext-extractor/-/gettext-extractor-3.4.3.tgz"; 5721 - sha1 = "882679cefc71888eb6e69297e6b2dc14c0384fef"; 5751 + name = "gettext_extractor___gettext_extractor_3.5.3.tgz"; 5752 + url = "https://registry.yarnpkg.com/gettext-extractor/-/gettext-extractor-3.5.3.tgz"; 5753 + sha1 = "6ed46931c154a7485a80fa8b91b835ff7b8d0411"; 5722 5754 }; 5723 5755 } 5724 5756 { ··· 5770 5802 }; 5771 5803 } 5772 5804 { 5773 - name = "global_modules___global_modules_2.0.0.tgz"; 5774 - path = fetchurl { 5775 - name = "global_modules___global_modules_2.0.0.tgz"; 5776 - url = "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz"; 5777 - sha1 = "997605ad2345f27f51539bea26574421215c7780"; 5778 - }; 5779 - } 5780 - { 5781 5805 name = "global_modules___global_modules_1.0.0.tgz"; 5782 5806 path = fetchurl { 5783 5807 name = "global_modules___global_modules_1.0.0.tgz"; 5784 5808 url = "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz"; 5785 5809 sha1 = "6d770f0eb523ac78164d72b5e71a8877265cc3ea"; 5810 + }; 5811 + } 5812 + { 5813 + name = "global_modules___global_modules_2.0.0.tgz"; 5814 + path = fetchurl { 5815 + name = "global_modules___global_modules_2.0.0.tgz"; 5816 + url = "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz"; 5817 + sha1 = "997605ad2345f27f51539bea26574421215c7780"; 5786 5818 }; 5787 5819 } 5788 5820 { ··· 6178 6210 }; 6179 6211 } 6180 6212 { 6181 - name = "html_entities___html_entities_1.2.1.tgz"; 6213 + name = "html_entities___html_entities_1.4.0.tgz"; 6182 6214 path = fetchurl { 6183 - name = "html_entities___html_entities_1.2.1.tgz"; 6184 - url = "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz"; 6185 - sha1 = "0df29351f0721163515dfb9e5543e5f6eed5162f"; 6215 + name = "html_entities___html_entities_1.4.0.tgz"; 6216 + url = "https://registry.yarnpkg.com/html-entities/-/html-entities-1.4.0.tgz"; 6217 + sha1 = "cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc"; 6186 6218 }; 6187 6219 } 6188 6220 { ··· 6250 6282 }; 6251 6283 } 6252 6284 { 6285 + name = "http_parser_js___http_parser_js_0.5.3.tgz"; 6286 + path = fetchurl { 6287 + name = "http_parser_js___http_parser_js_0.5.3.tgz"; 6288 + url = "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.3.tgz"; 6289 + sha1 = "01d2709c79d41698bb01d4decc5e9da4e4a033d9"; 6290 + }; 6291 + } 6292 + { 6253 6293 name = "http_proxy_agent___http_proxy_agent_2.1.0.tgz"; 6254 6294 path = fetchurl { 6255 6295 name = "http_proxy_agent___http_proxy_agent_2.1.0.tgz"; ··· 6266 6306 }; 6267 6307 } 6268 6308 { 6269 - name = "http_proxy___http_proxy_1.18.0.tgz"; 6309 + name = "http_proxy___http_proxy_1.18.1.tgz"; 6270 6310 path = fetchurl { 6271 - name = "http_proxy___http_proxy_1.18.0.tgz"; 6272 - url = "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.0.tgz"; 6273 - sha1 = "dbe55f63e75a347db7f3d99974f2692a314a6a3a"; 6311 + name = "http_proxy___http_proxy_1.18.1.tgz"; 6312 + url = "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz"; 6313 + sha1 = "401541f0534884bbf95260334e72f88ee3976549"; 6274 6314 }; 6275 6315 } 6276 6316 { ··· 6402 6442 }; 6403 6443 } 6404 6444 { 6405 - name = "import_fresh___import_fresh_3.2.1.tgz"; 6445 + name = "import_fresh___import_fresh_3.3.0.tgz"; 6406 6446 path = fetchurl { 6407 - name = "import_fresh___import_fresh_3.2.1.tgz"; 6408 - url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz"; 6409 - sha1 = "633ff618506e793af5ac91bf48b72677e15cbe66"; 6447 + name = "import_fresh___import_fresh_3.3.0.tgz"; 6448 + url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz"; 6449 + sha1 = "37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"; 6410 6450 }; 6411 6451 } 6412 6452 { ··· 6442 6482 }; 6443 6483 } 6444 6484 { 6445 - name = "imports_loader___imports_loader_0.8.0.tgz"; 6446 - path = fetchurl { 6447 - name = "imports_loader___imports_loader_0.8.0.tgz"; 6448 - url = "https://registry.yarnpkg.com/imports-loader/-/imports-loader-0.8.0.tgz"; 6449 - sha1 = "030ea51b8ca05977c40a3abfd9b4088fe0be9a69"; 6450 - }; 6451 - } 6452 - { 6453 6485 name = "imurmurhash___imurmurhash_0.1.4.tgz"; 6454 6486 path = fetchurl { 6455 6487 name = "imurmurhash___imurmurhash_0.1.4.tgz"; ··· 6530 6562 }; 6531 6563 } 6532 6564 { 6533 - name = "inherits___inherits_2.0.3.tgz"; 6565 + name = "inherits___inherits_2.0.4.tgz"; 6534 6566 path = fetchurl { 6535 - name = "inherits___inherits_2.0.3.tgz"; 6536 - url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; 6537 - sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 6567 + name = "inherits___inherits_2.0.4.tgz"; 6568 + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; 6569 + sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c"; 6538 6570 }; 6539 6571 } 6540 6572 { ··· 6546 6578 }; 6547 6579 } 6548 6580 { 6549 - name = "ini___ini_1.3.5.tgz"; 6581 + name = "inherits___inherits_2.0.3.tgz"; 6550 6582 path = fetchurl { 6551 - name = "ini___ini_1.3.5.tgz"; 6552 - url = "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz"; 6553 - sha1 = "eee25f56db1c9ec6085e0c22778083f596abf927"; 6583 + name = "inherits___inherits_2.0.3.tgz"; 6584 + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; 6585 + sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 6554 6586 }; 6555 6587 } 6556 6588 { 6557 - name = "inquirer___inquirer_7.0.4.tgz"; 6589 + name = "ini___ini_1.3.8.tgz"; 6558 6590 path = fetchurl { 6559 - name = "inquirer___inquirer_7.0.4.tgz"; 6560 - url = "https://registry.yarnpkg.com/inquirer/-/inquirer-7.0.4.tgz"; 6561 - sha1 = "99af5bde47153abca23f5c7fc30db247f39da703"; 6591 + name = "ini___ini_1.3.8.tgz"; 6592 + url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz"; 6593 + sha1 = "a29da425b48806f34767a4efce397269af28432c"; 6562 6594 }; 6563 6595 } 6564 6596 { ··· 6570 6602 }; 6571 6603 } 6572 6604 { 6573 - name = "interpret___interpret_1.2.0.tgz"; 6605 + name = "interpret___interpret_1.4.0.tgz"; 6574 6606 path = fetchurl { 6575 - name = "interpret___interpret_1.2.0.tgz"; 6576 - url = "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz"; 6577 - sha1 = "d5061a6224be58e8083985f5014d844359576296"; 6607 + name = "interpret___interpret_1.4.0.tgz"; 6608 + url = "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz"; 6609 + sha1 = "665ab8bc4da27a774a40584e812e3e0fa45b1a1e"; 6578 6610 }; 6579 6611 } 6580 6612 { ··· 6583 6615 name = "invariant___invariant_2.2.4.tgz"; 6584 6616 url = "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz"; 6585 6617 sha1 = "610f3c92c9359ce1db616e538008d23ff35158e6"; 6586 - }; 6587 - } 6588 - { 6589 - name = "invert_kv___invert_kv_2.0.0.tgz"; 6590 - path = fetchurl { 6591 - name = "invert_kv___invert_kv_2.0.0.tgz"; 6592 - url = "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz"; 6593 - sha1 = "7393f5afa59ec9ff5f67a27620d11c226e3eec02"; 6594 6618 }; 6595 6619 } 6596 6620 { ··· 6706 6730 }; 6707 6731 } 6708 6732 { 6709 - name = "is_callable___is_callable_1.1.5.tgz"; 6733 + name = "is_callable___is_callable_1.2.3.tgz"; 6710 6734 path = fetchurl { 6711 - name = "is_callable___is_callable_1.1.5.tgz"; 6712 - url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz"; 6713 - sha1 = "f7e46b596890456db74e7f6e976cb3273d06faab"; 6735 + name = "is_callable___is_callable_1.2.3.tgz"; 6736 + url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz"; 6737 + sha1 = "8b1e0500b73a1d76c70487636f368e519de8db8e"; 6714 6738 }; 6715 6739 } 6716 6740 { ··· 6879 6903 name = "is_installed_globally___is_installed_globally_0.3.2.tgz"; 6880 6904 url = "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz"; 6881 6905 sha1 = "fd3efa79ee670d1187233182d5b0a1dd00313141"; 6906 + }; 6907 + } 6908 + { 6909 + name = "is_negative_zero___is_negative_zero_2.0.1.tgz"; 6910 + path = fetchurl { 6911 + name = "is_negative_zero___is_negative_zero_2.0.1.tgz"; 6912 + url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz"; 6913 + sha1 = "3de746c18dda2319241a53675908d8f766f11c24"; 6882 6914 }; 6883 6915 } 6884 6916 { ··· 6978 7010 }; 6979 7011 } 6980 7012 { 6981 - name = "is_promise___is_promise_2.1.0.tgz"; 6982 - path = fetchurl { 6983 - name = "is_promise___is_promise_2.1.0.tgz"; 6984 - url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz"; 6985 - sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"; 6986 - }; 6987 - } 6988 - { 6989 - name = "is_regex___is_regex_1.0.5.tgz"; 6990 - path = fetchurl { 6991 - name = "is_regex___is_regex_1.0.5.tgz"; 6992 - url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz"; 6993 - sha1 = "39d589a358bf18967f726967120b8fc1aed74eae"; 6994 - }; 6995 - } 6996 - { 6997 - name = "is_regexp___is_regexp_1.0.0.tgz"; 7013 + name = "is_regex___is_regex_1.1.2.tgz"; 6998 7014 path = fetchurl { 6999 - name = "is_regexp___is_regexp_1.0.0.tgz"; 7000 - url = "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz"; 7001 - sha1 = "fd2d883545c46bac5a633e7b9a09e87fa2cb5069"; 7015 + name = "is_regex___is_regex_1.1.2.tgz"; 7016 + url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.2.tgz"; 7017 + sha1 = "81c8ebde4db142f2cf1c53fc86d6a45788266251"; 7002 7018 }; 7003 7019 } 7004 7020 { ··· 7026 7042 }; 7027 7043 } 7028 7044 { 7045 + name = "is_string___is_string_1.0.5.tgz"; 7046 + path = fetchurl { 7047 + name = "is_string___is_string_1.0.5.tgz"; 7048 + url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz"; 7049 + sha1 = "40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"; 7050 + }; 7051 + } 7052 + { 7029 7053 name = "is_symbol___is_symbol_1.0.2.tgz"; 7030 7054 path = fetchurl { 7031 7055 name = "is_symbol___is_symbol_1.0.2.tgz"; ··· 7730 7754 }; 7731 7755 } 7732 7756 { 7757 + name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz"; 7758 + path = fetchurl { 7759 + name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz"; 7760 + url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 7761 + sha1 = "ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"; 7762 + }; 7763 + } 7764 + { 7733 7765 name = "json_schema___json_schema_0.2.3.tgz"; 7734 7766 path = fetchurl { 7735 7767 name = "json_schema___json_schema_0.2.3.tgz"; ··· 7754 7786 }; 7755 7787 } 7756 7788 { 7757 - name = "json3___json3_3.3.2.tgz"; 7789 + name = "json3___json3_3.3.3.tgz"; 7758 7790 path = fetchurl { 7759 - name = "json3___json3_3.3.2.tgz"; 7760 - url = "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz"; 7761 - sha1 = "3c0434743df93e2f5c42aee7b19bcb483575f4e1"; 7791 + name = "json3___json3_3.3.3.tgz"; 7792 + url = "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz"; 7793 + sha1 = "7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"; 7762 7794 }; 7763 7795 } 7764 7796 { ··· 7906 7938 }; 7907 7939 } 7908 7940 { 7941 + name = "khroma___khroma_1.2.0.tgz"; 7942 + path = fetchurl { 7943 + name = "khroma___khroma_1.2.0.tgz"; 7944 + url = "https://registry.yarnpkg.com/khroma/-/khroma-1.2.0.tgz"; 7945 + sha1 = "46dcc9d7533923c228b51724db108f11fec108d8"; 7946 + }; 7947 + } 7948 + { 7909 7949 name = "killable___killable_1.0.1.tgz"; 7910 7950 path = fetchurl { 7911 7951 name = "killable___killable_1.0.1.tgz"; ··· 7938 7978 }; 7939 7979 } 7940 7980 { 7941 - name = "kind_of___kind_of_6.0.2.tgz"; 7981 + name = "kind_of___kind_of_6.0.3.tgz"; 7942 7982 path = fetchurl { 7943 - name = "kind_of___kind_of_6.0.2.tgz"; 7944 - url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz"; 7945 - sha1 = "01146b36a6218e64e58f3a8d66de5d7fc6f6d051"; 7983 + name = "kind_of___kind_of_6.0.3.tgz"; 7984 + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz"; 7985 + sha1 = "07c05034a6c349fa06e24fa35aa76db4580ce4dd"; 7946 7986 }; 7947 7987 } 7948 7988 { ··· 7978 8018 }; 7979 8019 } 7980 8020 { 7981 - name = "lcid___lcid_2.0.0.tgz"; 7982 - path = fetchurl { 7983 - name = "lcid___lcid_2.0.0.tgz"; 7984 - url = "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz"; 7985 - sha1 = "6ef5d2df60e52f82eb228a4c373e8d1f397253cf"; 7986 - }; 7987 - } 7988 - { 7989 8021 name = "leven___leven_3.1.0.tgz"; 7990 8022 path = fetchurl { 7991 8023 name = "leven___leven_3.1.0.tgz"; ··· 8002 8034 }; 8003 8035 } 8004 8036 { 8037 + name = "levn___levn_0.4.1.tgz"; 8038 + path = fetchurl { 8039 + name = "levn___levn_0.4.1.tgz"; 8040 + url = "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz"; 8041 + sha1 = "ae4562c007473b932a6200d403268dd2fffc6ade"; 8042 + }; 8043 + } 8044 + { 8005 8045 name = "levn___levn_0.3.0.tgz"; 8006 8046 path = fetchurl { 8007 8047 name = "levn___levn_0.3.0.tgz"; ··· 8079 8119 name = "loader_runner___loader_runner_2.4.0.tgz"; 8080 8120 url = "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz"; 8081 8121 sha1 = "ed47066bfe534d7e84c4c7b9998c2a75607d9357"; 8082 - }; 8083 - } 8084 - { 8085 - name = "loader_utils___loader_utils_1.2.3.tgz"; 8086 - path = fetchurl { 8087 - name = "loader_utils___loader_utils_1.2.3.tgz"; 8088 - url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz"; 8089 - sha1 = "1ff5dc6911c9f0a062531a4c04b609406108c2c7"; 8090 8122 }; 8091 8123 } 8092 8124 { ··· 8386 8418 }; 8387 8419 } 8388 8420 { 8389 - name = "loglevel___loglevel_1.6.7.tgz"; 8421 + name = "loglevel___loglevel_1.7.1.tgz"; 8390 8422 path = fetchurl { 8391 - name = "loglevel___loglevel_1.6.7.tgz"; 8392 - url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.7.tgz"; 8393 - sha1 = "b3e034233188c68b889f5b862415306f565e2c56"; 8423 + name = "loglevel___loglevel_1.7.1.tgz"; 8424 + url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz"; 8425 + sha1 = "005fde2f5e6e47068f935ff28573e125ef72f197"; 8394 8426 }; 8395 8427 } 8396 8428 { ··· 8466 8498 }; 8467 8499 } 8468 8500 { 8501 + name = "lru_cache___lru_cache_6.0.0.tgz"; 8502 + path = fetchurl { 8503 + name = "lru_cache___lru_cache_6.0.0.tgz"; 8504 + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; 8505 + sha1 = "6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"; 8506 + }; 8507 + } 8508 + { 8469 8509 name = "lz_string___lz_string_1.4.4.tgz"; 8470 8510 path = fetchurl { 8471 8511 name = "lz_string___lz_string_1.4.4.tgz"; ··· 8482 8522 }; 8483 8523 } 8484 8524 { 8485 - name = "make_dir___make_dir_3.0.0.tgz"; 8525 + name = "make_dir___make_dir_3.1.0.tgz"; 8486 8526 path = fetchurl { 8487 - name = "make_dir___make_dir_3.0.0.tgz"; 8488 - url = "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.0.tgz"; 8489 - sha1 = "1b5f39f6b9270ed33f9f054c5c0f84304989f801"; 8527 + name = "make_dir___make_dir_3.1.0.tgz"; 8528 + url = "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz"; 8529 + sha1 = "415e967046b3a7f1d185277d84aa58203726a13f"; 8490 8530 }; 8491 8531 } 8492 8532 { ··· 8506 8546 }; 8507 8547 } 8508 8548 { 8509 - name = "mamacro___mamacro_0.0.3.tgz"; 8510 - path = fetchurl { 8511 - name = "mamacro___mamacro_0.0.3.tgz"; 8512 - url = "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz"; 8513 - sha1 = "ad2c9576197c9f1abf308d0787865bd975a3f3e4"; 8514 - }; 8515 - } 8516 - { 8517 - name = "map_age_cleaner___map_age_cleaner_0.1.3.tgz"; 8518 - path = fetchurl { 8519 - name = "map_age_cleaner___map_age_cleaner_0.1.3.tgz"; 8520 - url = "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz"; 8521 - sha1 = "7d583a7306434c055fe474b0f45078e6e1b4b92a"; 8522 - }; 8523 - } 8524 - { 8525 8549 name = "map_cache___map_cache_0.2.2.tgz"; 8526 8550 path = fetchurl { 8527 8551 name = "map_cache___map_cache_0.2.2.tgz"; ··· 8674 8698 }; 8675 8699 } 8676 8700 { 8677 - name = "mem___mem_4.3.0.tgz"; 8678 - path = fetchurl { 8679 - name = "mem___mem_4.3.0.tgz"; 8680 - url = "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz"; 8681 - sha1 = "461af497bc4ae09608cdb2e60eefb69bff744178"; 8682 - }; 8683 - } 8684 - { 8685 8701 name = "memory_fs___memory_fs_0.2.0.tgz"; 8686 8702 path = fetchurl { 8687 8703 name = "memory_fs___memory_fs_0.2.0.tgz"; ··· 8695 8711 name = "memory_fs___memory_fs_0.4.1.tgz"; 8696 8712 url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz"; 8697 8713 sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552"; 8714 + }; 8715 + } 8716 + { 8717 + name = "memory_fs___memory_fs_0.5.0.tgz"; 8718 + path = fetchurl { 8719 + name = "memory_fs___memory_fs_0.5.0.tgz"; 8720 + url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz"; 8721 + sha1 = "324c01288b88652966d161db77838720845a8e3c"; 8698 8722 }; 8699 8723 } 8700 8724 { ··· 8746 8770 }; 8747 8771 } 8748 8772 { 8749 - name = "mermaid___mermaid_8.5.2.tgz"; 8773 + name = "mermaid___mermaid_8.9.0.tgz"; 8750 8774 path = fetchurl { 8751 - name = "mermaid___mermaid_8.5.2.tgz"; 8752 - url = "https://registry.yarnpkg.com/mermaid/-/mermaid-8.5.2.tgz"; 8753 - sha1 = "0f1914cda53d4ea5377380e5ce07a38bef2ea7e8"; 8775 + name = "mermaid___mermaid_8.9.0.tgz"; 8776 + url = "https://registry.yarnpkg.com/mermaid/-/mermaid-8.9.0.tgz"; 8777 + sha1 = "e569517863ab903aa5389cd746b68ca958a8ca7c"; 8754 8778 }; 8755 8779 } 8756 8780 { ··· 8850 8874 }; 8851 8875 } 8852 8876 { 8853 - name = "minimalistic_assert___minimalistic_assert_1.0.0.tgz"; 8877 + name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; 8854 8878 path = fetchurl { 8855 - name = "minimalistic_assert___minimalistic_assert_1.0.0.tgz"; 8856 - url = "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz"; 8857 - sha1 = "702be2dda6b37f4836bcb3f5db56641b64a1d3d3"; 8879 + name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; 8880 + url = "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"; 8881 + sha1 = "2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"; 8858 8882 }; 8859 8883 } 8860 8884 { ··· 8882 8906 }; 8883 8907 } 8884 8908 { 8885 - name = "minimist___minimist_0.0.8.tgz"; 8886 - path = fetchurl { 8887 - name = "minimist___minimist_0.0.8.tgz"; 8888 - url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; 8889 - sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; 8890 - }; 8891 - } 8892 - { 8893 8909 name = "minimist___minimist_1.1.3.tgz"; 8894 8910 path = fetchurl { 8895 8911 name = "minimist___minimist_1.1.3.tgz"; ··· 8903 8919 name = "minimist___minimist_1.2.5.tgz"; 8904 8920 url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 8905 8921 sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602"; 8922 + }; 8923 + } 8924 + { 8925 + name = "minimist___minimist_0.0.8.tgz"; 8926 + path = fetchurl { 8927 + name = "minimist___minimist_0.0.8.tgz"; 8928 + url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; 8929 + sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; 8906 8930 }; 8907 8931 } 8908 8932 { ··· 8938 8962 }; 8939 8963 } 8940 8964 { 8965 + name = "minizlib___minizlib_2.1.2.tgz"; 8966 + path = fetchurl { 8967 + name = "minizlib___minizlib_2.1.2.tgz"; 8968 + url = "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz"; 8969 + sha1 = "e90d3466ba209b932451508a11ce3d3632145931"; 8970 + }; 8971 + } 8972 + { 8941 8973 name = "miragejs___miragejs_0.1.40.tgz"; 8942 8974 path = fetchurl { 8943 8975 name = "miragejs___miragejs_0.1.40.tgz"; ··· 8970 9002 }; 8971 9003 } 8972 9004 { 8973 - name = "https___registry.npmjs.org_mkdirp___mkdirp_0.5.1.tgz"; 9005 + name = "mkdirp___mkdirp_0.5.5.tgz"; 8974 9006 path = fetchurl { 8975 - name = "https___registry.npmjs.org_mkdirp___mkdirp_0.5.1.tgz"; 8976 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; 8977 - sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 9007 + name = "mkdirp___mkdirp_0.5.5.tgz"; 9008 + url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz"; 9009 + sha1 = "d91cefd62d1436ca0f41620e251288d420099def"; 8978 9010 }; 8979 9011 } 8980 9012 { ··· 9066 9098 }; 9067 9099 } 9068 9100 { 9069 - name = "mute_stream___mute_stream_0.0.8.tgz"; 9070 - path = fetchurl { 9071 - name = "mute_stream___mute_stream_0.0.8.tgz"; 9072 - url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz"; 9073 - sha1 = "1630c42b2251ff81e2a283de96a5497ea92e5e0d"; 9074 - }; 9075 - } 9076 - { 9077 9101 name = "nan___nan_2.14.1.tgz"; 9078 9102 path = fetchurl { 9079 9103 name = "nan___nan_2.14.1.tgz"; ··· 9138 9162 }; 9139 9163 } 9140 9164 { 9141 - name = "node_fetch___node_fetch_2.6.0.tgz"; 9165 + name = "node_fetch___node_fetch_2.6.1.tgz"; 9142 9166 path = fetchurl { 9143 - name = "node_fetch___node_fetch_2.6.0.tgz"; 9144 - url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz"; 9145 - sha1 = "e633456386d4aa55863f676a7ab0daa8fdecb0fd"; 9167 + name = "node_fetch___node_fetch_2.6.1.tgz"; 9168 + url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz"; 9169 + sha1 = "045bd323631f76ed2e2b55573394416b639a0052"; 9146 9170 }; 9147 9171 } 9148 9172 { 9149 - name = "node_forge___node_forge_0.9.0.tgz"; 9173 + name = "node_forge___node_forge_0.10.0.tgz"; 9150 9174 path = fetchurl { 9151 - name = "node_forge___node_forge_0.9.0.tgz"; 9152 - url = "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.0.tgz"; 9153 - sha1 = "d624050edbb44874adca12bb9a52ec63cb782579"; 9175 + name = "node_forge___node_forge_0.10.0.tgz"; 9176 + url = "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz"; 9177 + sha1 = "32dea2afb3e9926f02ee5ce8794902691a676bf3"; 9154 9178 }; 9155 9179 } 9156 9180 { ··· 9194 9218 }; 9195 9219 } 9196 9220 { 9197 - name = "node_releases___node_releases_1.1.58.tgz"; 9221 + name = "node_releases___node_releases_1.1.70.tgz"; 9198 9222 path = fetchurl { 9199 - name = "node_releases___node_releases_1.1.58.tgz"; 9200 - url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.58.tgz"; 9201 - sha1 = "8ee20eef30fa60e52755fcc0942def5a734fe935"; 9223 + name = "node_releases___node_releases_1.1.70.tgz"; 9224 + url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz"; 9225 + sha1 = "66e0ed0273aa65666d7fe78febe7634875426a08"; 9202 9226 }; 9203 9227 } 9204 9228 { ··· 9370 9394 }; 9371 9395 } 9372 9396 { 9373 - name = "object_inspect___object_inspect_1.7.0.tgz"; 9397 + name = "object_inspect___object_inspect_1.9.0.tgz"; 9374 9398 path = fetchurl { 9375 - name = "object_inspect___object_inspect_1.7.0.tgz"; 9376 - url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz"; 9377 - sha1 = "f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"; 9399 + name = "object_inspect___object_inspect_1.9.0.tgz"; 9400 + url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz"; 9401 + sha1 = "c90521d74e1127b67266ded3394ad6116986533a"; 9378 9402 }; 9379 9403 } 9380 9404 { ··· 9394 9418 }; 9395 9419 } 9396 9420 { 9397 - name = "object.assign___object.assign_4.1.0.tgz"; 9421 + name = "object.assign___object.assign_4.1.2.tgz"; 9398 9422 path = fetchurl { 9399 - name = "object.assign___object.assign_4.1.0.tgz"; 9400 - url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz"; 9401 - sha1 = "968bf1100d7956bb3ca086f006f846b3bc4008da"; 9423 + name = "object.assign___object.assign_4.1.2.tgz"; 9424 + url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz"; 9425 + sha1 = "0ed54a342eceb37b38ff76eb831a0e788cb63940"; 9402 9426 }; 9403 9427 } 9404 9428 { 9405 - name = "object.entries___object.entries_1.1.1.tgz"; 9429 + name = "object.entries___object.entries_1.1.3.tgz"; 9406 9430 path = fetchurl { 9407 - name = "object.entries___object.entries_1.1.1.tgz"; 9408 - url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz"; 9409 - sha1 = "ee1cf04153de02bb093fec33683900f57ce5399b"; 9431 + name = "object.entries___object.entries_1.1.3.tgz"; 9432 + url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz"; 9433 + sha1 = "c601c7f168b62374541a07ddbd3e2d5e4f7711a6"; 9410 9434 }; 9411 9435 } 9412 9436 { ··· 9418 9442 }; 9419 9443 } 9420 9444 { 9421 - name = "object.values___object.values_1.1.0.tgz"; 9445 + name = "object.values___object.values_1.1.2.tgz"; 9422 9446 path = fetchurl { 9423 - name = "object.values___object.values_1.1.0.tgz"; 9424 - url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz"; 9425 - sha1 = "bf6810ef5da3e5325790eaaa2be213ea84624da9"; 9447 + name = "object.values___object.values_1.1.2.tgz"; 9448 + url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.2.tgz"; 9449 + sha1 = "7a2015e06fcb0f546bd652486ce8583a4731c731"; 9426 9450 }; 9427 9451 } 9428 9452 { ··· 9506 9530 }; 9507 9531 } 9508 9532 { 9533 + name = "optionator___optionator_0.9.1.tgz"; 9534 + path = fetchurl { 9535 + name = "optionator___optionator_0.9.1.tgz"; 9536 + url = "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz"; 9537 + sha1 = "4f236a6373dae0566a6d43e1326674f50c291499"; 9538 + }; 9539 + } 9540 + { 9509 9541 name = "orderedmap___orderedmap_1.0.0.tgz"; 9510 9542 path = fetchurl { 9511 9543 name = "orderedmap___orderedmap_1.0.0.tgz"; ··· 9538 9570 }; 9539 9571 } 9540 9572 { 9541 - name = "os_locale___os_locale_3.1.0.tgz"; 9542 - path = fetchurl { 9543 - name = "os_locale___os_locale_3.1.0.tgz"; 9544 - url = "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz"; 9545 - sha1 = "a802a6ee17f24c10483ab9935719cef4ed16bf1a"; 9546 - }; 9547 - } 9548 - { 9549 9573 name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 9550 9574 path = fetchurl { 9551 9575 name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; ··· 9570 9594 }; 9571 9595 } 9572 9596 { 9573 - name = "p_defer___p_defer_1.0.0.tgz"; 9574 - path = fetchurl { 9575 - name = "p_defer___p_defer_1.0.0.tgz"; 9576 - url = "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz"; 9577 - sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"; 9578 - }; 9579 - } 9580 - { 9581 9597 name = "p_each_series___p_each_series_2.1.0.tgz"; 9582 9598 path = fetchurl { 9583 9599 name = "p_each_series___p_each_series_2.1.0.tgz"; ··· 9591 9607 name = "p_finally___p_finally_1.0.0.tgz"; 9592 9608 url = "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz"; 9593 9609 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; 9594 - }; 9595 - } 9596 - { 9597 - name = "p_is_promise___p_is_promise_2.1.0.tgz"; 9598 - path = fetchurl { 9599 - name = "p_is_promise___p_is_promise_2.1.0.tgz"; 9600 - url = "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz"; 9601 - sha1 = "918cebaea248a62cf7ffab8e3bca8c5f882fc42e"; 9602 9610 }; 9603 9611 } 9604 9612 { ··· 9650 9658 }; 9651 9659 } 9652 9660 { 9653 - name = "p_map___p_map_3.0.0.tgz"; 9661 + name = "p_map___p_map_4.0.0.tgz"; 9654 9662 path = fetchurl { 9655 - name = "p_map___p_map_3.0.0.tgz"; 9656 - url = "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz"; 9657 - sha1 = "d704d9af8a2ba684e2600d9a215983d4141a979d"; 9663 + name = "p_map___p_map_4.0.0.tgz"; 9664 + url = "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz"; 9665 + sha1 = "bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"; 9658 9666 }; 9659 9667 } 9660 9668 { ··· 10018 10026 }; 10019 10027 } 10020 10028 { 10021 - name = "pixelmatch___pixelmatch_4.0.2.tgz"; 10022 - path = fetchurl { 10023 - name = "pixelmatch___pixelmatch_4.0.2.tgz"; 10024 - url = "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz"; 10025 - sha1 = "8f47dcec5011b477b67db03c243bc1f3085e8854"; 10026 - }; 10027 - } 10028 - { 10029 10029 name = "pkg_dir___pkg_dir_2.0.0.tgz"; 10030 10030 path = fetchurl { 10031 10031 name = "pkg_dir___pkg_dir_2.0.0.tgz"; ··· 10050 10050 }; 10051 10051 } 10052 10052 { 10053 - name = "pkg_up___pkg_up_2.0.0.tgz"; 10054 - path = fetchurl { 10055 - name = "pkg_up___pkg_up_2.0.0.tgz"; 10056 - url = "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz"; 10057 - sha1 = "c819ac728059a461cab1c3889a2be3c49a004d7f"; 10058 - }; 10059 - } 10060 - { 10061 - name = "pngjs___pngjs_3.3.3.tgz"; 10062 - path = fetchurl { 10063 - name = "pngjs___pngjs_3.3.3.tgz"; 10064 - url = "https://registry.yarnpkg.com/pngjs/-/pngjs-3.3.3.tgz"; 10065 - sha1 = "85173703bde3edac8998757b96e5821d0966a21b"; 10066 - }; 10067 - } 10068 - { 10069 10053 name = "pofile___pofile_1.0.11.tgz"; 10070 10054 path = fetchurl { 10071 10055 name = "pofile___pofile_1.0.11.tgz"; ··· 10090 10074 }; 10091 10075 } 10092 10076 { 10093 - name = "portfinder___portfinder_1.0.25.tgz"; 10077 + name = "portfinder___portfinder_1.0.28.tgz"; 10094 10078 path = fetchurl { 10095 - name = "portfinder___portfinder_1.0.25.tgz"; 10096 - url = "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.25.tgz"; 10097 - sha1 = "254fd337ffba869f4b9d37edc298059cb4d35eca"; 10079 + name = "portfinder___portfinder_1.0.28.tgz"; 10080 + url = "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz"; 10081 + sha1 = "67c4622852bd5374dd1dd900f779f53462fac778"; 10098 10082 }; 10099 10083 } 10100 10084 { ··· 10263 10247 name = "postcss___postcss_7.0.30.tgz"; 10264 10248 url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.30.tgz"; 10265 10249 sha1 = "cc9378beffe46a02cbc4506a0477d05fcea9a8e2"; 10250 + }; 10251 + } 10252 + { 10253 + name = "prelude_ls___prelude_ls_1.2.1.tgz"; 10254 + path = fetchurl { 10255 + name = "prelude_ls___prelude_ls_1.2.1.tgz"; 10256 + url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz"; 10257 + sha1 = "debc6489d7a6e6b0e7611888cec880337d316396"; 10266 10258 }; 10267 10259 } 10268 10260 { ··· 10658 10650 }; 10659 10651 } 10660 10652 { 10661 - name = "querystringify___querystringify_2.1.0.tgz"; 10653 + name = "querystringify___querystringify_2.2.0.tgz"; 10662 10654 path = fetchurl { 10663 - name = "querystringify___querystringify_2.1.0.tgz"; 10664 - url = "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.0.tgz"; 10665 - sha1 = "7ded8dfbf7879dcc60d0a644ac6754b283ad17ef"; 10655 + name = "querystringify___querystringify_2.2.0.tgz"; 10656 + url = "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz"; 10657 + sha1 = "3345941b4153cb9d082d8eee4cda2016a9aef7f6"; 10666 10658 }; 10667 10659 } 10668 10660 { ··· 10674 10666 }; 10675 10667 } 10676 10668 { 10677 - name = "randombytes___randombytes_2.0.6.tgz"; 10669 + name = "randombytes___randombytes_2.1.0.tgz"; 10678 10670 path = fetchurl { 10679 - name = "randombytes___randombytes_2.0.6.tgz"; 10680 - url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz"; 10681 - sha1 = "d302c522948588848a8d300c932b44c24231da80"; 10671 + name = "randombytes___randombytes_2.1.0.tgz"; 10672 + url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz"; 10673 + sha1 = "df6f84372f0270dc65cdf6291349ab7a473d4f2a"; 10682 10674 }; 10683 10675 } 10684 10676 { ··· 10714 10706 }; 10715 10707 } 10716 10708 { 10717 - name = "raw_loader___raw_loader_4.0.0.tgz"; 10709 + name = "raw_loader___raw_loader_4.0.2.tgz"; 10718 10710 path = fetchurl { 10719 - name = "raw_loader___raw_loader_4.0.0.tgz"; 10720 - url = "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.0.tgz"; 10721 - sha1 = "d639c40fb9d72b5c7f8abc1fb2ddb25b29d3d540"; 10711 + name = "raw_loader___raw_loader_4.0.2.tgz"; 10712 + url = "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.2.tgz"; 10713 + sha1 = "1aac6b7d1ad1501e66efdac1522c73e59a584eb6"; 10722 10714 }; 10723 10715 } 10724 10716 { ··· 10898 10890 }; 10899 10891 } 10900 10892 { 10901 - name = "regexpp___regexpp_2.0.1.tgz"; 10893 + name = "regexpp___regexpp_3.1.0.tgz"; 10902 10894 path = fetchurl { 10903 - name = "regexpp___regexpp_2.0.1.tgz"; 10904 - url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz"; 10905 - sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f"; 10895 + name = "regexpp___regexpp_3.1.0.tgz"; 10896 + url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz"; 10897 + sha1 = "206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"; 10906 10898 }; 10907 10899 } 10908 10900 { ··· 11058 11050 }; 11059 11051 } 11060 11052 { 11061 - name = "require_main_filename___require_main_filename_1.0.1.tgz"; 11053 + name = "require_from_string___require_from_string_2.0.2.tgz"; 11062 11054 path = fetchurl { 11063 - name = "require_main_filename___require_main_filename_1.0.1.tgz"; 11064 - url = "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz"; 11065 - sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; 11055 + name = "require_from_string___require_from_string_2.0.2.tgz"; 11056 + url = "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz"; 11057 + sha1 = "89a7fdd938261267318eafe14f9c32e598c36909"; 11066 11058 }; 11067 11059 } 11068 11060 { ··· 11178 11170 }; 11179 11171 } 11180 11172 { 11181 - name = "restore_cursor___restore_cursor_3.1.0.tgz"; 11182 - path = fetchurl { 11183 - name = "restore_cursor___restore_cursor_3.1.0.tgz"; 11184 - url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz"; 11185 - sha1 = "39f67c54b3a7a58cea5236d95cf0034239631f7e"; 11186 - }; 11187 - } 11188 - { 11189 11173 name = "ret___ret_0.1.15.tgz"; 11190 11174 path = fetchurl { 11191 11175 name = "ret___ret_0.1.15.tgz"; ··· 11210 11194 }; 11211 11195 } 11212 11196 { 11213 - name = "rimraf___rimraf_2.7.1.tgz"; 11214 - path = fetchurl { 11215 - name = "rimraf___rimraf_2.7.1.tgz"; 11216 - url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz"; 11217 - sha1 = "35797f13a7fdadc566142c29d4f07ccad483e3ec"; 11218 - }; 11219 - } 11220 - { 11221 11197 name = "rimraf___rimraf_2.6.3.tgz"; 11222 11198 path = fetchurl { 11223 11199 name = "rimraf___rimraf_2.6.3.tgz"; ··· 11266 11242 }; 11267 11243 } 11268 11244 { 11269 - name = "run_async___run_async_2.3.0.tgz"; 11270 - path = fetchurl { 11271 - name = "run_async___run_async_2.3.0.tgz"; 11272 - url = "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz"; 11273 - sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"; 11274 - }; 11275 - } 11276 - { 11277 11245 name = "run_queue___run_queue_1.0.3.tgz"; 11278 11246 path = fetchurl { 11279 11247 name = "run_queue___run_queue_1.0.3.tgz"; ··· 11290 11258 }; 11291 11259 } 11292 11260 { 11293 - name = "rxjs___rxjs_6.5.4.tgz"; 11294 - path = fetchurl { 11295 - name = "rxjs___rxjs_6.5.4.tgz"; 11296 - url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.4.tgz"; 11297 - sha1 = "e0777fe0d184cec7872df147f303572d414e211c"; 11298 - }; 11299 - } 11300 - { 11301 11261 name = "safe_buffer___safe_buffer_5.1.2.tgz"; 11302 11262 path = fetchurl { 11303 11263 name = "safe_buffer___safe_buffer_5.1.2.tgz"; ··· 11378 11338 }; 11379 11339 } 11380 11340 { 11381 - name = "scope_css___scope_css_1.2.1.tgz"; 11341 + name = "schema_utils___schema_utils_3.0.0.tgz"; 11382 11342 path = fetchurl { 11383 - name = "scope_css___scope_css_1.2.1.tgz"; 11384 - url = "https://registry.yarnpkg.com/scope-css/-/scope-css-1.2.1.tgz"; 11385 - sha1 = "c35768bc900cad030a3e0d663a818c0f6a57f40e"; 11343 + name = "schema_utils___schema_utils_3.0.0.tgz"; 11344 + url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz"; 11345 + sha1 = "67502f6aa2b66a2d4032b4279a2944978a0913ef"; 11386 11346 }; 11387 11347 } 11388 11348 { ··· 11418 11378 }; 11419 11379 } 11420 11380 { 11421 - name = "selfsigned___selfsigned_1.10.7.tgz"; 11381 + name = "selfsigned___selfsigned_1.10.8.tgz"; 11422 11382 path = fetchurl { 11423 - name = "selfsigned___selfsigned_1.10.7.tgz"; 11424 - url = "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.7.tgz"; 11425 - sha1 = "da5819fd049d5574f28e88a9bcc6dbc6e6f3906b"; 11383 + name = "selfsigned___selfsigned_1.10.8.tgz"; 11384 + url = "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.8.tgz"; 11385 + sha1 = "0d17208b7d12c33f8eac85c41835f27fc3d81a30"; 11426 11386 }; 11427 11387 } 11428 11388 { ··· 11450 11410 }; 11451 11411 } 11452 11412 { 11453 - name = "semver___semver_7.3.2.tgz"; 11413 + name = "semver___semver_7.3.4.tgz"; 11454 11414 path = fetchurl { 11455 - name = "semver___semver_7.3.2.tgz"; 11456 - url = "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz"; 11457 - sha1 = "604962b052b81ed0786aae84389ffba70ffd3938"; 11415 + name = "semver___semver_7.3.4.tgz"; 11416 + url = "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz"; 11417 + sha1 = "27aaa7d2e4ca76452f98d3add093a72c943edc97"; 11458 11418 }; 11459 11419 } 11460 11420 { ··· 11487 11447 name = "serialize_javascript___serialize_javascript_2.1.2.tgz"; 11488 11448 url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz"; 11489 11449 sha1 = "ecec53b0e0317bdc95ef76ab7074b7384785fa61"; 11450 + }; 11451 + } 11452 + { 11453 + name = "serialize_javascript___serialize_javascript_4.0.0.tgz"; 11454 + path = fetchurl { 11455 + name = "serialize_javascript___serialize_javascript_4.0.0.tgz"; 11456 + url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz"; 11457 + sha1 = "b525e1238489a5ecfc42afacc3fe99e666f4b1aa"; 11490 11458 }; 11491 11459 } 11492 11460 { ··· 11658 11626 }; 11659 11627 } 11660 11628 { 11661 - name = "slugify___slugify_1.3.1.tgz"; 11629 + name = "slice_ansi___slice_ansi_4.0.0.tgz"; 11662 11630 path = fetchurl { 11663 - name = "slugify___slugify_1.3.1.tgz"; 11664 - url = "https://registry.yarnpkg.com/slugify/-/slugify-1.3.1.tgz"; 11665 - sha1 = "f572127e8535329fbc6c1edb74ab856b61ad7de2"; 11631 + name = "slice_ansi___slice_ansi_4.0.0.tgz"; 11632 + url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz"; 11633 + sha1 = "500e8dd0fd55b05815086255b3195adf2a45fe6b"; 11666 11634 }; 11667 11635 } 11668 11636 { ··· 11730 11698 }; 11731 11699 } 11732 11700 { 11733 - name = "sockjs_client___sockjs_client_1.4.0.tgz"; 11701 + name = "sockjs_client___sockjs_client_1.5.0.tgz"; 11734 11702 path = fetchurl { 11735 - name = "sockjs_client___sockjs_client_1.4.0.tgz"; 11736 - url = "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.4.0.tgz"; 11737 - sha1 = "c9f2568e19c8fd8173b4997ea3420e0bb306c7d5"; 11703 + name = "sockjs_client___sockjs_client_1.5.0.tgz"; 11704 + url = "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.5.0.tgz"; 11705 + sha1 = "2f8ff5d4b659e0d092f7aba0b7c386bd2aa20add"; 11738 11706 }; 11739 11707 } 11740 11708 { 11741 - name = "sockjs___sockjs_0.3.19.tgz"; 11709 + name = "sockjs___sockjs_0.3.21.tgz"; 11742 11710 path = fetchurl { 11743 - name = "sockjs___sockjs_0.3.19.tgz"; 11744 - url = "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.19.tgz"; 11745 - sha1 = "d976bbe800af7bd20ae08598d582393508993c0d"; 11711 + name = "sockjs___sockjs_0.3.21.tgz"; 11712 + url = "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.21.tgz"; 11713 + sha1 = "b34ffb98e796930b60a0cfa11904d6a339a7d417"; 11746 11714 }; 11747 11715 } 11748 11716 { ··· 11866 11834 }; 11867 11835 } 11868 11836 { 11869 - name = "spdy___spdy_4.0.1.tgz"; 11837 + name = "spdy___spdy_4.0.2.tgz"; 11870 11838 path = fetchurl { 11871 - name = "spdy___spdy_4.0.1.tgz"; 11872 - url = "https://registry.yarnpkg.com/spdy/-/spdy-4.0.1.tgz"; 11873 - sha1 = "6f12ed1c5db7ea4f24ebb8b89ba58c87c08257f2"; 11839 + name = "spdy___spdy_4.0.2.tgz"; 11840 + url = "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz"; 11841 + sha1 = "b74f466203a3eda452c02492b91fb9e84a27677b"; 11874 11842 }; 11875 11843 } 11876 11844 { ··· 11922 11890 }; 11923 11891 } 11924 11892 { 11925 - name = "ssri___ssri_7.1.0.tgz"; 11893 + name = "ssri___ssri_8.0.0.tgz"; 11926 11894 path = fetchurl { 11927 - name = "ssri___ssri_7.1.0.tgz"; 11928 - url = "https://registry.yarnpkg.com/ssri/-/ssri-7.1.0.tgz"; 11929 - sha1 = "92c241bf6de82365b5c7fb4bd76e975522e1294d"; 11895 + name = "ssri___ssri_8.0.0.tgz"; 11896 + url = "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz"; 11897 + sha1 = "79ca74e21f8ceaeddfcb4b90143c458b8d988808"; 11930 11898 }; 11931 11899 } 11932 11900 { ··· 11983 11951 name = "stealthy_require___stealthy_require_1.1.1.tgz"; 11984 11952 url = "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz"; 11985 11953 sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b"; 11986 - }; 11987 - } 11988 - { 11989 - name = "stickyfilljs___stickyfilljs_2.1.0.tgz"; 11990 - path = fetchurl { 11991 - name = "stickyfilljs___stickyfilljs_2.1.0.tgz"; 11992 - url = "https://registry.yarnpkg.com/stickyfilljs/-/stickyfilljs-2.1.0.tgz"; 11993 - sha1 = "46dabb599d8275d185bdb97db597f86a2e3afa7b"; 11994 11954 }; 11995 11955 } 11996 11956 { ··· 12058 12018 }; 12059 12019 } 12060 12020 { 12061 - name = "string_width___string_width_2.1.1.tgz"; 12062 - path = fetchurl { 12063 - name = "string_width___string_width_2.1.1.tgz"; 12064 - url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz"; 12065 - sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e"; 12066 - }; 12067 - } 12068 - { 12069 12021 name = "string_width___string_width_3.1.0.tgz"; 12070 12022 path = fetchurl { 12071 12023 name = "string_width___string_width_3.1.0.tgz"; ··· 12082 12034 }; 12083 12035 } 12084 12036 { 12085 - name = "string.prototype.trimleft___string.prototype.trimleft_2.1.1.tgz"; 12037 + name = "string.prototype.trimend___string.prototype.trimend_1.0.3.tgz"; 12086 12038 path = fetchurl { 12087 - name = "string.prototype.trimleft___string.prototype.trimleft_2.1.1.tgz"; 12088 - url = "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz"; 12089 - sha1 = "9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74"; 12039 + name = "string.prototype.trimend___string.prototype.trimend_1.0.3.tgz"; 12040 + url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz"; 12041 + sha1 = "a22bd53cca5c7cf44d7c9d5c732118873d6cd18b"; 12090 12042 }; 12091 12043 } 12092 12044 { 12093 - name = "string.prototype.trimright___string.prototype.trimright_2.1.1.tgz"; 12045 + name = "string.prototype.trimstart___string.prototype.trimstart_1.0.3.tgz"; 12094 12046 path = fetchurl { 12095 - name = "string.prototype.trimright___string.prototype.trimright_2.1.1.tgz"; 12096 - url = "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz"; 12097 - sha1 = "440314b15996c866ce8a0341894d45186200c5d9"; 12047 + name = "string.prototype.trimstart___string.prototype.trimstart_1.0.3.tgz"; 12048 + url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz"; 12049 + sha1 = "9b4cb590e123bb36564401d59824298de50fd5aa"; 12098 12050 }; 12099 12051 } 12100 12052 { ··· 12178 12130 }; 12179 12131 } 12180 12132 { 12181 - name = "strip_css_comments___strip_css_comments_3.0.0.tgz"; 12182 - path = fetchurl { 12183 - name = "strip_css_comments___strip_css_comments_3.0.0.tgz"; 12184 - url = "https://registry.yarnpkg.com/strip-css-comments/-/strip-css-comments-3.0.0.tgz"; 12185 - sha1 = "7a5625eff8a2b226cf8947a11254da96e13dae89"; 12186 - }; 12187 - } 12188 - { 12189 12133 name = "strip_eof___strip_eof_1.0.0.tgz"; 12190 12134 path = fetchurl { 12191 12135 name = "strip_eof___strip_eof_1.0.0.tgz"; ··· 12218 12162 }; 12219 12163 } 12220 12164 { 12221 - name = "strip_json_comments___strip_json_comments_3.0.1.tgz"; 12165 + name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; 12222 12166 path = fetchurl { 12223 - name = "strip_json_comments___strip_json_comments_3.0.1.tgz"; 12224 - url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz"; 12225 - sha1 = "85713975a91fb87bf1b305cca77395e40d2a64a7"; 12167 + name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; 12168 + url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; 12169 + sha1 = "31f1281b3832630434831c310c01cccda8cbe006"; 12226 12170 }; 12227 12171 } 12228 12172 { ··· 12274 12218 }; 12275 12219 } 12276 12220 { 12277 - name = "sugarss___sugarss_2.0.0.tgz"; 12221 + name = "stylis___stylis_3.5.4.tgz"; 12278 12222 path = fetchurl { 12279 - name = "sugarss___sugarss_2.0.0.tgz"; 12280 - url = "https://registry.yarnpkg.com/sugarss/-/sugarss-2.0.0.tgz"; 12281 - sha1 = "ddd76e0124b297d40bf3cca31c8b22ecb43bc61d"; 12223 + name = "stylis___stylis_3.5.4.tgz"; 12224 + url = "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz"; 12225 + sha1 = "f665f25f5e299cf3d64654ab949a57c768b73fbe"; 12282 12226 }; 12283 12227 } 12284 12228 { 12285 - name = "supports_color___supports_color_6.1.0.tgz"; 12229 + name = "sugarss___sugarss_2.0.0.tgz"; 12286 12230 path = fetchurl { 12287 - name = "supports_color___supports_color_6.1.0.tgz"; 12288 - url = "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz"; 12289 - sha1 = "0764abc69c63d5ac842dd4867e8d025e880df8f3"; 12231 + name = "sugarss___sugarss_2.0.0.tgz"; 12232 + url = "https://registry.yarnpkg.com/sugarss/-/sugarss-2.0.0.tgz"; 12233 + sha1 = "ddd76e0124b297d40bf3cca31c8b22ecb43bc61d"; 12290 12234 }; 12291 12235 } 12292 12236 { ··· 12303 12247 name = "supports_color___supports_color_5.5.0.tgz"; 12304 12248 url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; 12305 12249 sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f"; 12250 + }; 12251 + } 12252 + { 12253 + name = "supports_color___supports_color_6.1.0.tgz"; 12254 + path = fetchurl { 12255 + name = "supports_color___supports_color_6.1.0.tgz"; 12256 + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz"; 12257 + sha1 = "0764abc69c63d5ac842dd4867e8d025e880df8f3"; 12306 12258 }; 12307 12259 } 12308 12260 { ··· 12362 12314 }; 12363 12315 } 12364 12316 { 12317 + name = "table___table_6.0.7.tgz"; 12318 + path = fetchurl { 12319 + name = "table___table_6.0.7.tgz"; 12320 + url = "https://registry.yarnpkg.com/table/-/table-6.0.7.tgz"; 12321 + sha1 = "e45897ffbcc1bcf9e8a87bf420f2c9e5a7a52a34"; 12322 + }; 12323 + } 12324 + { 12365 12325 name = "taffydb___taffydb_2.6.2.tgz"; 12366 12326 path = fetchurl { 12367 12327 name = "taffydb___taffydb_2.6.2.tgz"; ··· 12391 12351 name = "tar___tar_2.2.2.tgz"; 12392 12352 url = "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz"; 12393 12353 sha1 = "0ca8848562c7299b8b446ff6a4d60cdbb23edc40"; 12354 + }; 12355 + } 12356 + { 12357 + name = "tar___tar_6.0.5.tgz"; 12358 + path = fetchurl { 12359 + name = "tar___tar_6.0.5.tgz"; 12360 + url = "https://registry.yarnpkg.com/tar/-/tar-6.0.5.tgz"; 12361 + sha1 = "bde815086e10b39f1dcd298e89d596e1535e200f"; 12394 12362 }; 12395 12363 } 12396 12364 { ··· 12495 12463 name = "through2___through2_2.0.5.tgz"; 12496 12464 url = "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz"; 12497 12465 sha1 = "01c1e39eb31d07cb7d03a96a70823260b23132cd"; 12498 - }; 12499 - } 12500 - { 12501 - name = "through___through_2.3.8.tgz"; 12502 - path = fetchurl { 12503 - name = "through___through_2.3.8.tgz"; 12504 - url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; 12505 - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 12506 12466 }; 12507 12467 } 12508 12468 { ··· 12794 12754 }; 12795 12755 } 12796 12756 { 12757 + name = "tsconfig_paths___tsconfig_paths_3.9.0.tgz"; 12758 + path = fetchurl { 12759 + name = "tsconfig_paths___tsconfig_paths_3.9.0.tgz"; 12760 + url = "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz"; 12761 + sha1 = "098547a6c4448807e8fcb8eae081064ee9a3c90b"; 12762 + }; 12763 + } 12764 + { 12797 12765 name = "tslib___tslib_1.13.0.tgz"; 12798 12766 path = fetchurl { 12799 12767 name = "tslib___tslib_1.13.0.tgz"; ··· 12834 12802 }; 12835 12803 } 12836 12804 { 12805 + name = "type_check___type_check_0.4.0.tgz"; 12806 + path = fetchurl { 12807 + name = "type_check___type_check_0.4.0.tgz"; 12808 + url = "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz"; 12809 + sha1 = "07b8203bfa7056c0657050e3ccd2c37730bab8f1"; 12810 + }; 12811 + } 12812 + { 12837 12813 name = "type_check___type_check_0.3.2.tgz"; 12838 12814 path = fetchurl { 12839 12815 name = "type_check___type_check_0.3.2.tgz"; ··· 12847 12823 name = "type_detect___type_detect_4.0.8.tgz"; 12848 12824 url = "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz"; 12849 12825 sha1 = "7646fb5f18871cfbb7749e69bd39a6388eb7450c"; 12850 - }; 12851 - } 12852 - { 12853 - name = "type_fest___type_fest_0.5.2.tgz"; 12854 - path = fetchurl { 12855 - name = "type_fest___type_fest_0.5.2.tgz"; 12856 - url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.5.2.tgz"; 12857 - sha1 = "d6ef42a0356c6cd45f49485c3b6281fc148e48a2"; 12858 12826 }; 12859 12827 } 12860 12828 { ··· 12898 12866 }; 12899 12867 } 12900 12868 { 12901 - name = "typescript___typescript_3.9.7.tgz"; 12869 + name = "typescript___typescript_4.1.5.tgz"; 12902 12870 path = fetchurl { 12903 - name = "typescript___typescript_3.9.7.tgz"; 12904 - url = "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz"; 12905 - sha1 = "98d600a5ebdc38f40cb277522f12dc800e9e25fa"; 12871 + name = "typescript___typescript_4.1.5.tgz"; 12872 + url = "https://registry.yarnpkg.com/typescript/-/typescript-4.1.5.tgz"; 12873 + sha1 = "123a3b214aaff3be32926f0d8f1f6e704eb89a72"; 12906 12874 }; 12907 12875 } 12908 12876 { ··· 13170 13138 }; 13171 13139 } 13172 13140 { 13173 - name = "url_parse___url_parse_1.4.4.tgz"; 13141 + name = "url_parse___url_parse_1.4.7.tgz"; 13174 13142 path = fetchurl { 13175 - name = "url_parse___url_parse_1.4.4.tgz"; 13176 - url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.4.tgz"; 13177 - sha1 = "cac1556e95faa0303691fec5cf9d5a1bc34648f8"; 13143 + name = "url_parse___url_parse_1.4.7.tgz"; 13144 + url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz"; 13145 + sha1 = "a8a83535e8c00a316e403a5db4ac1b9b853ae278"; 13178 13146 }; 13179 13147 } 13180 13148 { ··· 13282 13250 }; 13283 13251 } 13284 13252 { 13285 - name = "v8_compile_cache___v8_compile_cache_2.0.3.tgz"; 13253 + name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 13286 13254 path = fetchurl { 13287 - name = "v8_compile_cache___v8_compile_cache_2.0.3.tgz"; 13288 - url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz"; 13289 - sha1 = "00f7494d2ae2b688cfe2899df6ed2c54bef91dbe"; 13255 + name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 13256 + url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"; 13257 + sha1 = "9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"; 13290 13258 }; 13291 13259 } 13292 13260 { ··· 13474 13442 }; 13475 13443 } 13476 13444 { 13477 - name = "vue_eslint_parser___vue_eslint_parser_7.3.0.tgz"; 13445 + name = "vue_eslint_parser___vue_eslint_parser_7.4.1.tgz"; 13478 13446 path = fetchurl { 13479 - name = "vue_eslint_parser___vue_eslint_parser_7.3.0.tgz"; 13480 - url = "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.3.0.tgz"; 13481 - sha1 = "894085839d99d81296fa081d19643733f23d7559"; 13447 + name = "vue_eslint_parser___vue_eslint_parser_7.4.1.tgz"; 13448 + url = "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-7.4.1.tgz"; 13449 + sha1 = "e4adcf7876a7379758d9056a72235af18a587f92"; 13482 13450 }; 13483 13451 } 13484 13452 { ··· 13618 13586 }; 13619 13587 } 13620 13588 { 13621 - name = "watchpack_chokidar2___watchpack_chokidar2_2.0.0.tgz"; 13589 + name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz"; 13622 13590 path = fetchurl { 13623 - name = "watchpack_chokidar2___watchpack_chokidar2_2.0.0.tgz"; 13624 - url = "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz"; 13625 - sha1 = "9948a1866cbbd6cb824dea13a7ed691f6c8ddff0"; 13591 + name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz"; 13592 + url = "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz"; 13593 + sha1 = "38500072ee6ece66f3769936950ea1771be1c957"; 13626 13594 }; 13627 13595 } 13628 13596 { 13629 - name = "watchpack___watchpack_1.7.2.tgz"; 13597 + name = "watchpack___watchpack_1.7.5.tgz"; 13630 13598 path = fetchurl { 13631 - name = "watchpack___watchpack_1.7.2.tgz"; 13632 - url = "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz"; 13633 - sha1 = "c02e4d4d49913c3e7e122c3325365af9d331e9aa"; 13599 + name = "watchpack___watchpack_1.7.5.tgz"; 13600 + url = "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz"; 13601 + sha1 = "1267e6c55e0b9b5be44c2023aed5437a2c26c453"; 13634 13602 }; 13635 13603 } 13636 13604 { ··· 13666 13634 }; 13667 13635 } 13668 13636 { 13669 - name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.6.0.tgz"; 13637 + name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.9.0.tgz"; 13670 13638 path = fetchurl { 13671 - name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.6.0.tgz"; 13672 - url = "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.6.0.tgz"; 13673 - sha1 = "39b3a8f829ca044682bc6f9e011c95deb554aefd"; 13639 + name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.9.0.tgz"; 13640 + url = "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz"; 13641 + sha1 = "f6f94db108fb574e415ad313de41a2707d33ef3c"; 13674 13642 }; 13675 13643 } 13676 13644 { 13677 - name = "webpack_cli___webpack_cli_3.3.11.tgz"; 13645 + name = "webpack_cli___webpack_cli_3.3.12.tgz"; 13678 13646 path = fetchurl { 13679 - name = "webpack_cli___webpack_cli_3.3.11.tgz"; 13680 - url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.11.tgz"; 13681 - sha1 = "3bf21889bf597b5d82c38f215135a411edfdc631"; 13647 + name = "webpack_cli___webpack_cli_3.3.12.tgz"; 13648 + url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.12.tgz"; 13649 + sha1 = "94e9ada081453cd0aa609c99e500012fd3ad2d4a"; 13682 13650 }; 13683 13651 } 13684 13652 { ··· 13690 13658 }; 13691 13659 } 13692 13660 { 13693 - name = "webpack_dev_server___webpack_dev_server_3.10.3.tgz"; 13661 + name = "webpack_dev_server___webpack_dev_server_3.11.2.tgz"; 13694 13662 path = fetchurl { 13695 - name = "webpack_dev_server___webpack_dev_server_3.10.3.tgz"; 13696 - url = "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.10.3.tgz"; 13697 - sha1 = "f35945036813e57ef582c2420ef7b470e14d3af0"; 13663 + name = "webpack_dev_server___webpack_dev_server_3.11.2.tgz"; 13664 + url = "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz"; 13665 + sha1 = "695ebced76a4929f0d5de7fd73fafe185fe33708"; 13698 13666 }; 13699 13667 } 13700 13668 { ··· 13722 13690 }; 13723 13691 } 13724 13692 { 13725 - name = "webpack___webpack_4.42.0.tgz"; 13693 + name = "webpack___webpack_4.46.0.tgz"; 13726 13694 path = fetchurl { 13727 - name = "webpack___webpack_4.42.0.tgz"; 13728 - url = "https://registry.yarnpkg.com/webpack/-/webpack-4.42.0.tgz"; 13729 - sha1 = "b901635dd6179391d90740a63c93f76f39883eb8"; 13695 + name = "webpack___webpack_4.46.0.tgz"; 13696 + url = "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz"; 13697 + sha1 = "bf9b4404ea20a073605e0a011d188d77cb6ad542"; 13730 13698 }; 13731 13699 } 13732 13700 { 13733 - name = "websocket_driver___websocket_driver_0.6.5.tgz"; 13701 + name = "websocket_driver___websocket_driver_0.7.4.tgz"; 13734 13702 path = fetchurl { 13735 - name = "websocket_driver___websocket_driver_0.6.5.tgz"; 13736 - url = "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz"; 13737 - sha1 = "5cb2556ceb85f4373c6d8238aa691c8454e13a36"; 13703 + name = "websocket_driver___websocket_driver_0.7.4.tgz"; 13704 + url = "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz"; 13705 + sha1 = "89ad5295bbf64b480abcba31e4953aca706f5760"; 13738 13706 }; 13739 13707 } 13740 13708 { ··· 13839 13807 name = "worker_loader___worker_loader_2.0.0.tgz"; 13840 13808 url = "https://registry.yarnpkg.com/worker-loader/-/worker-loader-2.0.0.tgz"; 13841 13809 sha1 = "45fda3ef76aca815771a89107399ee4119b430ac"; 13842 - }; 13843 - } 13844 - { 13845 - name = "wrap_ansi___wrap_ansi_2.1.0.tgz"; 13846 - path = fetchurl { 13847 - name = "wrap_ansi___wrap_ansi_2.1.0.tgz"; 13848 - url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; 13849 - sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; 13850 13810 }; 13851 13811 } 13852 13812 { ··· 14082 14042 }; 14083 14043 } 14084 14044 { 14085 - name = "yargs_parser___yargs_parser_11.1.1.tgz"; 14086 - path = fetchurl { 14087 - name = "yargs_parser___yargs_parser_11.1.1.tgz"; 14088 - url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz"; 14089 - sha1 = "879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"; 14090 - }; 14091 - } 14092 - { 14093 14045 name = "yargs_parser___yargs_parser_13.1.2.tgz"; 14094 14046 path = fetchurl { 14095 14047 name = "yargs_parser___yargs_parser_13.1.2.tgz"; ··· 14103 14055 name = "yargs_parser___yargs_parser_18.1.3.tgz"; 14104 14056 url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz"; 14105 14057 sha1 = "be68c4975c6b2abf469236b0c870362fab09a7b0"; 14106 - }; 14107 - } 14108 - { 14109 - name = "yargs___yargs_12.0.5.tgz"; 14110 - path = fetchurl { 14111 - name = "yargs___yargs_12.0.5.tgz"; 14112 - url = "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz"; 14113 - sha1 = "05f5997b609647b64f66b81e3b4b10a368e7ad13"; 14114 - }; 14115 - } 14116 - { 14117 - name = "yargs___yargs_13.2.4.tgz"; 14118 - path = fetchurl { 14119 - name = "yargs___yargs_13.2.4.tgz"; 14120 - url = "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz"; 14121 - sha1 = "0b562b794016eb9651b98bd37acf364aa5d6dc83"; 14122 14058 }; 14123 14059 } 14124 14060 { ··· 14178 14114 }; 14179 14115 } 14180 14116 { 14181 - name = "zrender___zrender_4.2.0.tgz"; 14117 + name = "zrender___zrender_4.3.2.tgz"; 14182 14118 path = fetchurl { 14183 - name = "zrender___zrender_4.2.0.tgz"; 14184 - url = "https://registry.yarnpkg.com/zrender/-/zrender-4.2.0.tgz"; 14185 - sha1 = "d001302e155f28de1f9fc7fcd5c254bad28471cf"; 14119 + name = "zrender___zrender_4.3.2.tgz"; 14120 + url = "https://registry.yarnpkg.com/zrender/-/zrender-4.3.2.tgz"; 14121 + sha1 = "ec7432f9415c82c73584b6b7b8c47e1b016209c6"; 14186 14122 }; 14187 14123 } 14188 14124 ];
+4 -1
pkgs/development/haskell-modules/configuration-common.nix
··· 946 946 947 947 # Generate shell completion. 948 948 cabal2nix = generateOptparseApplicativeCompletion "cabal2nix" super.cabal2nix; 949 - niv = generateOptparseApplicativeCompletion "niv" super.niv; 949 + niv = generateOptparseApplicativeCompletion "niv" (super.niv.overrideScope (self: super: { 950 + # Needs override because of: https://github.com/nmattia/niv/issues/312 951 + optparse-applicative = self.optparse-applicative_0_15_1_0; 952 + })); 950 953 ormolu = generateOptparseApplicativeCompletion "ormolu" super.ormolu; 951 954 stack = generateOptparseApplicativeCompletion "stack" super.stack; 952 955
+1
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 2753 2753 - haskell-lsp == 0.23.0.0 # required by hls-plugin-api 0.7.0.0, 2021-02-08 2754 2754 - haskell-lsp-types == 0.23.0.0 # required by hls-plugin-api 0.7.0.0, 2021-02-08 2755 2755 - lsp-test == 0.11.0.7 # required by hls-plugin-api 0.7.0.0, 2021-02-08 2756 + - optparse-applicative < 0.16 # needed for niv-0.2.19 2756 2757 2757 2758 package-maintainers: 2758 2759 peti:
+19
pkgs/development/haskell-modules/hackage-packages.nix
··· 192102 192102 broken = true; 192103 192103 }) {}; 192104 192104 192105 + "optparse-applicative_0_15_1_0" = callPackage 192106 + ({ mkDerivation, ansi-wl-pprint, base, bytestring, process 192107 + , QuickCheck, transformers, transformers-compat 192108 + }: 192109 + mkDerivation { 192110 + pname = "optparse-applicative"; 192111 + version = "0.15.1.0"; 192112 + sha256 = "1ws6y3b3f6hsgv0ff0yp6lw4hba1rps4dnvry3yllng0s5gngcsd"; 192113 + revision = "1"; 192114 + editedCabalFile = "0zmhqkd96v2z1ilhqdkd9z4jgsnsxb8yi2479ind8m5zm9363zr9"; 192115 + libraryHaskellDepends = [ 192116 + ansi-wl-pprint base process transformers transformers-compat 192117 + ]; 192118 + testHaskellDepends = [ base bytestring QuickCheck ]; 192119 + description = "Utilities and combinators for parsing command line options"; 192120 + license = lib.licenses.bsd3; 192121 + hydraPlatforms = lib.platforms.none; 192122 + }) {}; 192123 + 192105 192124 "optparse-applicative" = callPackage 192106 192125 ({ mkDerivation, ansi-wl-pprint, base, process, QuickCheck 192107 192126 , transformers, transformers-compat
+48
pkgs/development/interpreters/trealla/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, readline, openssl, withThread ? true, withSSL ? true, xxd }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "trealla"; 5 + version = "1.7.65"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "infradig"; 9 + repo = "trealla"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-uCDACBwdiCeAwF6IZHz7s5pD83JXTP7jAQDjGld8tt0="; 12 + }; 13 + 14 + postPatch = '' 15 + substituteInPlace Makefile \ 16 + --replace '-I/usr/local/include' "" \ 17 + --replace '-L/usr/local/lib' "" \ 18 + --replace 'GIT_VERSION :=' 'GIT_VERSION ?=' 19 + ''; 20 + 21 + makeFlags = [ 22 + "GIT_VERSION=\"v${version}\"" 23 + (lib.optionalString withThread "THREADS=1") 24 + (lib.optionalString (!withSSL) "NOSSL=1") 25 + (lib.optionalString stdenv.isDarwin "NOLDLIBS=1") 26 + ]; 27 + 28 + nativeBuildInputs = [ xxd ]; 29 + buildInputs = [ readline openssl ]; 30 + 31 + installPhase = '' 32 + install -Dm755 -t $out/bin tpl 33 + ''; 34 + 35 + doCheck = true; 36 + preCheck = '' 37 + # Disable test 81 due to floating point error 38 + rm tests/issues/test081.expected tests/issues/test081.pl 39 + ''; 40 + 41 + meta = with lib; { 42 + description = "A compact, efficient Prolog interpreter written in ANSI C"; 43 + homepage = "https://github.com/infradig/trealla"; 44 + license = licenses.mit; 45 + maintainers = with maintainers; [ siraben ]; 46 + platforms = platforms.all; 47 + }; 48 + }
+2 -12
pkgs/development/libraries/qt-5/modules/qtwebengine.nix
··· 90 90 '' else '' 91 91 substituteInPlace src/3rdparty/chromium/base/mac/mach_port_broker.mm \ 92 92 --replace "audit_token_to_pid(msg.trailer.msgh_audit)" "msg.trailer.msgh_audit.val[5]" 93 - '') 94 - + '' 95 - substituteInPlace src/3rdparty/chromium/sandbox/mac/BUILD.gn \ 96 - --replace 'libs = [ "sandbox" ]' 'libs = [ "/usr/lib/libsandbox.1.dylib" ]' 97 - ''); 93 + '')); 98 94 99 95 NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isGNU [ 100 96 # with gcc8, -Wclass-memaccess became part of -Wall and this exceeds the logging limit ··· 190 186 191 187 buildInputs = optionals stdenv.isDarwin (with darwin; [ 192 188 cups 189 + apple_sdk.libs.sandbox 193 190 194 191 # `sw_vers` is used by `src/3rdparty/chromium/build/config/mac/sdk_info.py` 195 192 # to get some information about the host platform. ··· 205 202 shift 206 203 done 207 204 '') 208 - 209 - # For sandbox.h include 210 - (runCommand "MacOS_SDK_sandbox.h" {} '' 211 - install -Dm444 "${lib.getDev darwin.apple_sdk.sdk}"/include/sandbox.h "$out"/include/sandbox.h 212 - '') 213 205 ]); 214 - 215 - __impureHostDeps = optional stdenv.isDarwin "/usr/lib/libsandbox.1.dylib"; 216 206 217 207 dontUseNinjaBuild = true; 218 208 dontUseNinjaInstall = true;
+4 -5
pkgs/development/python-modules/APScheduler/default.nix
··· 11 11 , tornado 12 12 , twisted 13 13 , mock 14 - , trollius 15 14 , gevent 16 15 , six 17 16 , pytz 18 17 , tzlocal 19 18 , funcsigs 20 - , futures 21 19 , setuptools 22 - , isPy3k 20 + , pythonOlder 23 21 }: 24 22 25 23 buildPythonPackage rec { 26 24 pname = "APScheduler"; 27 25 version = "3.7.0"; 26 + disabled = pythonOlder "3.7"; 28 27 29 28 src = fetchPypi { 30 29 inherit pname version; ··· 45 44 twisted 46 45 mock 47 46 gevent 48 - ] ++ lib.optionals (!isPy3k) [ trollius ]; 47 + ]; 49 48 50 49 propagatedBuildInputs = [ 51 50 six ··· 53 52 tzlocal 54 53 funcsigs 55 54 setuptools 56 - ] ++ lib.optional (!isPy3k) futures; 55 + ]; 57 56 58 57 disabledTests = lib.optionals stdenv.isDarwin [ 59 58 "test_submit_job"
+17 -14
pkgs/development/tools/literate-programming/noweb/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, gawk, groff, icon-lang ? null }: 1 + { lib, stdenv, fetchFromGitHub, nawk, groff, icon-lang }: 2 2 3 - let noweb = stdenv.mkDerivation rec { 3 + lib.fix (noweb: stdenv.mkDerivation rec { 4 4 pname = "noweb"; 5 5 version = "2.12"; 6 6 ··· 11 11 sha256 = "1160i2ghgzqvnb44kgwd6s3p4jnk9668rmc15jlcwl7pdf3xqm95"; 12 12 }; 13 13 14 - patches = [ ./no-FAQ.patch ]; 14 + sourceRoot = "source/src"; 15 + 16 + patches = [ 17 + # Remove FAQ 18 + ./no-FAQ.patch 19 + ]; 20 + 21 + postPatch = '' 22 + substituteInPlace Makefile --replace 'strip' '${stdenv.cc.targetPrefix}strip' 23 + ''; 15 24 16 25 nativeBuildInputs = [ groff ] ++ lib.optionals (!isNull icon-lang) [ icon-lang ]; 26 + buildInputs = [ nawk ]; 17 27 18 28 preBuild = '' 19 29 mkdir -p "$out/lib/noweb" 20 - cd src 21 30 ''; 22 31 23 32 makeFlags = lib.optionals (!isNull icon-lang) [ 24 33 "LIBSRC=icon" 25 34 "ICONC=icont" 26 - ] ++ lib.optionals stdenv.isDarwin [ 27 - "CC=clang" 28 - ]; 29 - 30 - 31 - installFlags = [ 32 - ]; 35 + ] ++ [ "CC=${stdenv.cc.targetPrefix}cc" ]; 33 36 34 37 preInstall = '' 35 38 mkdir -p "$tex/tex/latex/noweb" ··· 50 53 for f in $out/bin/no{index,roff,roots,untangle,web} \ 51 54 $out/lib/noweb/to{ascii,html,roff,tex} \ 52 55 $out/lib/noweb/{bt,empty}defn \ 53 - $out/lib/noweb/{noidx,unmarkup}; do 56 + $out/lib/noweb/{noidx,pipedocs,unmarkup}; do 54 57 # NOTE: substituteInPlace breaks Icon binaries, so make sure the script 55 58 # uses (n)awk before calling. 56 59 if grep -q nawk "$f"; then 57 - substituteInPlace "$f" --replace "nawk" "${gawk}/bin/awk" 60 + substituteInPlace "$f" --replace "nawk" "${nawk}/bin/awk" 58 61 fi 59 62 done 60 63 ··· 77 80 maintainers = with maintainers; [ yurrriq ]; 78 81 platforms = with platforms; linux ++ darwin; 79 82 }; 80 - }; in noweb 83 + })
+2 -2
pkgs/development/tools/literate-programming/noweb/no-FAQ.patch
··· 1 - --- a/src/Makefile 2006-06-12 22:14:20.000000000 +0200 2 - +++ b/src/Makefile 2010-06-17 11:30:11.804018145 +0200 1 + --- a/Makefile 2006-06-12 22:14:20.000000000 +0200 2 + +++ b/Makefile 2010-06-17 11:30:11.804018145 +0200 3 3 @@ -198,7 +198,7 @@ 4 4 (cd elisp; ci -l $(CINAME) $(CIMSG) *.el) 5 5 ci -l $(CINAME) $(CIMSG) Makefile.nw INSTALL INSTALL.DOS README FAQ COPYRIGHT nwmake *.nw
+2 -2
pkgs/development/tools/minizinc/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake, flex, bison }: 2 2 let 3 - version = "2.5.3"; 3 + version = "2.5.4"; 4 4 in 5 5 stdenv.mkDerivation { 6 6 pname = "minizinc"; ··· 12 12 owner = "MiniZinc"; 13 13 repo = "libminizinc"; 14 14 rev = version; 15 - sha256 = "1kc65sxkc64pr560qaaznc44jnlvq7pbpzwijad410lpcnna5byg"; 15 + sha256 = "sha256-/vJyh2WdESimJTCASsg6xjVzG2EkL4V87B+xvIUBcMM="; 16 16 }; 17 17 18 18 meta = with lib; {
+2 -2
pkgs/development/web/insomnia/default.nix
··· 16 16 ]; 17 17 in stdenv.mkDerivation rec { 18 18 pname = "insomnia"; 19 - version = "2021.1.0"; 19 + version = "2021.1.1"; 20 20 21 21 src = fetchurl { 22 22 url = 23 23 "https://github.com/Kong/insomnia/releases/download/core%40${version}/Insomnia.Core-${version}.deb"; 24 - sha256 = "sha256-3T334t+Oje6LOzUBqQCK6wdJ/4Mi4WLmW5vcHig8zj4="; 24 + sha256 = "sha256-GPOeLSbKiaJR5ppzyJMllzM+2gSddZN7+P5ttkocuDg="; 25 25 }; 26 26 27 27 nativeBuildInputs =
+2 -2
pkgs/games/steam/steam.nix
··· 2 2 3 3 let 4 4 traceLog = "/tmp/steam-trace-dependencies.log"; 5 - version = "1.0.0.68"; 5 + version = "1.0.0.69"; 6 6 7 7 in stdenv.mkDerivation { 8 8 pname = "steam-original"; ··· 10 10 11 11 src = fetchurl { 12 12 url = "https://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz"; 13 - sha256 = "sha256-ZeiCYjxnH0Ath5bB20QHmE8R3wU4/3RiAw2NUhrrKNM="; 13 + sha256 = "sha256-b5g4AUprE/lTunJs59IDlGu5O/1dB0kBvCFq0Eqyx2c="; 14 14 }; 15 15 16 16 makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
+33 -4
pkgs/misc/drivers/epkowa/default.nix
··· 13 13 , rpm 14 14 , cpio 15 15 , getopt 16 - , patchelf 17 16 , autoPatchelfHook 18 17 , gcc 19 18 }: ··· 98 97 hw = "Perfection V37/V370"; 99 98 }; 100 99 meta = common_meta // { description = "Plugin to support " + passthru.hw + " scanner in sane"; }; 100 + }; 101 + v600 = stdenv.mkDerivation rec { 102 + pname = "iscan-gt-x820-bundle"; 103 + version = "2.30.4"; 104 + 105 + nativeBuildInputs = [ autoPatchelfHook rpm ]; 106 + src = fetchurl { 107 + urls = [ 108 + "https://download2.ebz.epson.net/iscan/plugin/gt-x820/rpm/x64/iscan-gt-x820-bundle-${version}.x64.rpm.tar.gz" 109 + "https://web.archive.org/web/https://download2.ebz.epson.net/iscan/plugin/gt-x820/rpm/x64/iscan-gt-x820-bundle-${version}.x64.rpm.tar.gz" 110 + ]; 111 + sha256 = "1vlba7dsgpk35nn3n7is8nwds3yzlk38q43mppjzwsz2d2n7sr33"; 112 + }; 113 + installPhase = '' 114 + cd plugins 115 + ${rpm}/bin/rpm2cpio iscan-plugin-gt-x820-*.x86_64.rpm | ${cpio}/bin/cpio -idmv 116 + mkdir $out 117 + cp -r usr/share $out 118 + cp -r usr/lib64 $out/lib 119 + mv $out/share/iscan $out/share/esci 120 + mv $out/lib/iscan $out/lib/esci 121 + ''; 122 + passthru = { 123 + registrationCommand = '' 124 + $registry --add interpreter usb 0x04b8 0x013a "$plugin/lib/esci/libesintA1 $plugin/share/esci/esfwA1.bin" 125 + ''; 126 + hw = "Perfection V600 Photo"; 127 + }; 128 + meta = common_meta // { description = "iscan esci x820 plugin for " + passthru.hw; }; 101 129 }; 102 130 x770 = stdenv.mkDerivation rec { 103 131 pname = "iscan-gt-x770-bundle"; ··· 295 323 sha256 = "1ma76jj0k3bz0fy06fiyl4di4y77rcryb0mwjmzs5ms2vq9rjysr"; 296 324 }; 297 325 298 - nativeBuildInputs = [ pkg-config ]; 326 + nativeBuildInputs = [ pkg-config libtool makeWrapper ]; 299 327 buildInputs = [ 300 328 gtk2 301 329 libxml2 302 - libtool 303 330 libusb-compat-0_1 304 331 sane-backends 305 - makeWrapper 306 332 ]; 307 333 308 334 patches = [ 335 + # Patch for compatibility with libpng versions greater than 10499 309 336 (fetchpatch { 310 337 urls = [ 311 338 "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-gfx/iscan/files/iscan-2.28.1.3+libpng-1.5.patch?h=b6e4c805d53b49da79a0f64ef16bb82d6d800fcf" ··· 313 340 ]; 314 341 sha256 = "04y70qjd220dpyh771fiq50lha16pms98mfigwjczdfmx6kpj1jd"; 315 342 }) 343 + # Patch iscan to search appropriate folders for firmware files 316 344 ./firmware_location.patch 345 + # Patch deprecated use of sscanf code to use a more modern C99 compatible version 317 346 ./sscanf.patch 318 347 ]; 319 348 patchFlags = [ "-p0" ];
+3 -2
pkgs/misc/emulators/snes9x-gtk/default.nix
··· 19 19 preConfigure = "cd gtk"; 20 20 21 21 meta = with lib; { 22 - homepage = "http://www.snes9x.com"; 22 + homepage = "https://www.snes9x.com"; 23 23 description = "Super Nintendo Entertainment System (SNES) emulator"; 24 24 25 25 longDescription = '' ··· 29 29 includes some real gems that were only ever released in Japan. 30 30 ''; 31 31 32 - license = licenses.lgpl2; 32 + # see https://github.com/snes9xgit/snes9x/blob/master/LICENSE for exact details 33 + license = licenses.unfreeRedistributable; 33 34 maintainers = with maintainers; [ qknight ]; 34 35 platforms = platforms.linux; 35 36 };
+12
pkgs/os-specific/darwin/apple-sdk/default.nix
··· 241 241 popd >/dev/null 242 242 ''; 243 243 }; 244 + 245 + sandbox = stdenv.mkDerivation { 246 + name = "apple-lib-sandbox"; 247 + dontUnpack = true; 248 + 249 + installPhase = '' 250 + mkdir -p $out/include $out/lib 251 + ln -s "${lib.getDev sdk}/include/sandbox.h" $out/include/sandbox.h 252 + cp "${darwin-stubs}/usr/lib/libsandbox.1.tbd" $out/lib 253 + ln -s libsandbox.1.tbd $out/lib/libsandbox.tbd 254 + ''; 255 + }; 244 256 }; 245 257 246 258 overrides = super: {
+2 -2
pkgs/os-specific/linux/ell/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "ell"; 10 - version = "0.36"; 10 + version = "0.38"; 11 11 12 12 outputs = [ "out" "dev" ]; 13 13 14 14 src = fetchgit { 15 15 url = "https://git.kernel.org/pub/scm/libs/${pname}/${pname}.git"; 16 16 rev = version; 17 - sha256 = "0w7v2hihwwmnqd56bsmbjsiw8yyadr7zbdssjamqxx0pyl3dnrda"; 17 + sha256 = "sha256-UR6NHIO/L/QbuVerXe32RNT33wwrDvIZpV6nlYaImI8="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+3 -4
pkgs/os-specific/linux/iwd/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchgit 3 - , fetchpatch 4 3 , autoreconfHook 5 4 , pkg-config 6 5 , ell ··· 13 12 14 13 stdenv.mkDerivation rec { 15 14 pname = "iwd"; 16 - version = "1.11"; 15 + version = "1.12"; 17 16 18 17 src = fetchgit { 19 18 url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git"; 20 19 rev = version; 21 - sha256 = "0wnyg0f1swi7gvvgf5kzbiz44g2wscf5d5bp320iwyfwnlbqb1bn"; 20 + sha256 = "sha256-o3Vc5p/AFZwbkEWJZzO6wWAJ/BmSh0eKxdnjm5B9BFU="; 22 21 }; 23 22 24 23 outputs = [ "out" "man" ] ··· 88 87 meta = with lib; { 89 88 homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git"; 90 89 description = "Wireless daemon for Linux"; 91 - license = licenses.lgpl21; 90 + license = licenses.lgpl21Plus; 92 91 platforms = platforms.linux; 93 92 maintainers = with maintainers; [ dtzWill fpletz ]; 94 93 };
+8 -1
pkgs/servers/home-assistant/appdaemon.nix
··· 6 6 let 7 7 python = python3.override { 8 8 packageOverrides = self: super: { 9 + astral = super.astral.overridePythonAttrs (oldAttrs: rec { 10 + version = "1.10.1"; 11 + src = oldAttrs.src.override { 12 + inherit version; 13 + sha256 = "1wbvnqffbgh8grxm07cabdpahlnyfq91pyyaav432cahqi1p59nj"; 14 + }; 15 + }); 16 + 9 17 bcrypt = super.bcrypt.overridePythonAttrs (oldAttrs: rec { 10 18 version = "3.1.7"; 11 19 src = oldAttrs.src.override { ··· 62 70 --replace "sockjs==0.10.0" "sockjs" \ 63 71 --replace "deepdiff==4.3.1" "deepdiff" \ 64 72 --replace "voluptuous==0.11.7" "voluptuous" \ 65 - --replace "astral==1.10.1" "astral" \ 66 73 --replace "python-socketio==4.4.0" "python-socketio" \ 67 74 --replace "feedparser==5.2.1" "feedparser>=5.2.1" \ 68 75 --replace "aiohttp_jinja2==1.2.0" "aiohttp_jinja2>=1.2.0" \
+23
pkgs/tools/misc/hidrd/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "hidrd"; 5 + version = "unstable-2019-06-03"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "DIGImend"; 9 + repo = "hidrd"; 10 + rev = "6c0ed39708a5777ac620f902f39c8a0e03eefe4e"; 11 + sha256 = "1rnhq6b0nrmphdig1qrpzpbpqlg3943gzpw0v7p5rwcdynb6bb94"; 12 + }; 13 + 14 + nativeBuildInputs = [ autoreconfHook ]; 15 + 16 + meta = with lib; { 17 + description = "HID report descriptor I/O library and conversion tool"; 18 + homepage = "https://github.com/DIGImend/hidrd"; 19 + license = licenses.gpl2Plus; 20 + maintainers = with maintainers; [ pacien ]; 21 + platforms = platforms.all; 22 + }; 23 + }
+2 -2
pkgs/tools/networking/haproxy/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "haproxy"; 14 - version = "2.3.6"; 14 + version = "2.3.7"; 15 15 16 16 src = fetchurl { 17 17 url = "https://www.haproxy.org/download/${lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz"; 18 - sha256 = "sha256-bUYg5dodk+118ikBEhbbgdUJe2i/F14wny+rKJC7oDY="; 18 + sha256 = "sha256-Mbp6zQ14NnxxtW5Kh8nxHNI1/FYCvFuEaQd5Eg4KMFs="; 19 19 }; 20 20 21 21 buildInputs = [ openssl zlib ]
+2 -2
pkgs/tools/system/nq/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nq"; 5 - version = "0.3.1"; 5 + version = "0.4"; 6 6 src = fetchFromGitHub { 7 7 owner = "chneukirchen"; 8 8 repo = "nq"; 9 9 rev = "v${version}"; 10 - sha256 = "1db96ykz35r273jyhf7cdknqk4p2jj9l8gbz7pjy1hq4pb6ffk99"; 10 + sha256 = "sha256-UfCeHwOD+tG6X2obW64DYZr6j90yh1Yl7My4ur+sqmk="; 11 11 }; 12 12 makeFlags = [ "PREFIX=$(out)" ]; 13 13 postPatch = ''
+13 -11
pkgs/tools/text/nawk/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, yacc }: 1 + { lib, stdenv, fetchFromGitHub, bison, buildPackages }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nawk"; 5 - version = "20180827"; 5 + version = "unstable-2021-02-15"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "onetrueawk"; 9 9 repo = "awk"; 10 - rev = version; 11 - sha256 = "0qcsxhcwg6g3c0zxmbipqa8d8d5n8zxrq0hymb8yavsaz103fcl6"; 10 + rev = "c0f4e97e4561ff42544e92512bbaf3d7d1f6a671"; 11 + sha256 = "kQCvItpSJnDJMDvlB8ruY+i0KdjmAphRDqCKw8f0m/8="; 12 12 }; 13 13 14 - nativeBuildInputs = [ yacc ]; 15 - 16 - patchPhase = '' 17 - substituteInPlace ./makefile \ 18 - --replace "YACC = yacc -d -S" "" 19 - ''; 14 + depsBuildBuild = [ buildPackages.stdenv.cc ]; 15 + nativeBuildInputs = [ bison ]; 16 + makeFlags = [ 17 + "CC=${stdenv.cc.targetPrefix}cc" 18 + "HOSTCC=${if stdenv.buildPlatform.isDarwin then "clang" else "cc"}" 19 + ]; 20 20 21 21 installPhase = '' 22 + runHook preInstall 22 23 install -Dm755 a.out "$out/bin/nawk" 23 24 install -Dm644 awk.1 "$out/share/man/man1/nawk.1" 25 + runHook postInstall 24 26 ''; 25 27 26 28 meta = { ··· 33 35 homepage = "https://www.cs.princeton.edu/~bwk/btl.mirror/"; 34 36 license = lib.licenses.mit; 35 37 maintainers = [ lib.maintainers.konimex ]; 36 - platforms = lib.platforms.linux; 38 + platforms = lib.platforms.all; 37 39 }; 38 40 }
+6
pkgs/top-level/all-packages.nix
··· 2531 2531 2532 2532 hid-listen = callPackage ../tools/misc/hid-listen { }; 2533 2533 2534 + hidrd = callPackage ../tools/misc/hidrd { }; 2535 + 2534 2536 hocr-tools = with python3Packages; toPythonApplication hocr-tools; 2535 2537 2536 2538 home-manager = callPackage ../tools/package-management/home-manager {}; ··· 8185 8187 8186 8188 stubby = callPackage ../tools/networking/stubby { }; 8187 8189 8190 + sunwait = callPackage ../applications/misc/sunwait { }; 8191 + 8188 8192 surface-control = callPackage ../applications/misc/surface-control { }; 8189 8193 8190 8194 syntex = callPackage ../tools/graphics/syntex {}; ··· 11786 11790 tcl-8_6 = callPackage ../development/interpreters/tcl/8.6.nix { }; 11787 11791 11788 11792 tclreadline = callPackage ../development/interpreters/tclreadline { }; 11793 + 11794 + trealla = callPackage ../development/interpreters/trealla { }; 11789 11795 11790 11796 wasm = ocamlPackages.wasm; 11791 11797