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 domain: "${cfg.smtp.domain}", 197 ${optionalString (cfg.smtp.authentication != null) "authentication: :${cfg.smtp.authentication},"} 198 enable_starttls_auto: ${boolToString cfg.smtp.enableStartTLSAuto}, 199 ca_file: "/etc/ssl/certs/ca-certificates.crt", 200 openssl_verify_mode: '${cfg.smtp.opensslVerifyMode}' 201 } ··· 461 type = types.bool; 462 default = true; 463 description = "Whether to try to use StartTLS."; 464 }; 465 466 opensslVerifyMode = mkOption {
··· 196 domain: "${cfg.smtp.domain}", 197 ${optionalString (cfg.smtp.authentication != null) "authentication: :${cfg.smtp.authentication},"} 198 enable_starttls_auto: ${boolToString cfg.smtp.enableStartTLSAuto}, 199 + tls: ${boolToString cfg.smtp.tls}, 200 ca_file: "/etc/ssl/certs/ca-certificates.crt", 201 openssl_verify_mode: '${cfg.smtp.opensslVerifyMode}' 202 } ··· 462 type = types.bool; 463 default = true; 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."; 471 }; 472 473 opensslVerifyMode = mkOption {
+31 -16
nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py
··· 15 import datetime 16 import glob 17 import os.path 18 19 - def copy_if_not_exists(source, dest): 20 if not os.path.exists(dest): 21 shutil.copyfile(source, dest) 22 23 - def system_dir(profile, generation): 24 if profile: 25 return "/nix/var/nix/profiles/system-profiles/%s-%d-link" % (profile, generation) 26 else: ··· 42 efi /efi/memtest86/BOOTX64.efi 43 """ 44 45 - def write_loader_conf(profile, generation): 46 with open("@efiSysMountPoint@/loader/loader.conf.tmp", 'w') as f: 47 if "@timeout@" != "": 48 f.write("timeout @timeout@\n") ··· 55 f.write("console-mode @consoleMode@\n"); 56 os.rename("@efiSysMountPoint@/loader/loader.conf.tmp", "@efiSysMountPoint@/loader/loader.conf") 57 58 - def profile_path(profile, generation, name): 59 return os.readlink("%s/%s" % (system_dir(profile, generation), name)) 60 61 - def copy_from_profile(profile, generation, name, dry_run=False): 62 store_file_path = profile_path(profile, generation, name) 63 suffix = os.path.basename(store_file_path) 64 store_dir = os.path.basename(os.path.dirname(store_file_path)) ··· 67 copy_if_not_exists(store_file_path, "@efiSysMountPoint@%s" % (efi_file_path)) 68 return efi_file_path 69 70 - def describe_generation(generation_dir): 71 try: 72 with open("%s/nixos-version" % generation_dir) as f: 73 nixos_version = f.read() ··· 87 88 return description 89 90 - def write_entry(profile, generation, machine_id): 91 kernel = copy_from_profile(profile, generation, "kernel") 92 initrd = copy_from_profile(profile, generation, "initrd") 93 try: ··· 116 f.write("machine-id %s\n" % machine_id) 117 os.rename(tmp_path, entry_file) 118 119 - def mkdir_p(path): 120 try: 121 os.makedirs(path) 122 except OSError as e: 123 if e.errno != errno.EEXIST or not os.path.isdir(path): 124 raise 125 126 - def get_generations(profile=None): 127 gen_list = subprocess.check_output([ 128 "@nix@/bin/nix-env", 129 "--list-generations", ··· 137 configurationLimit = @configurationLimit@ 138 return [ (profile, int(line.split()[0])) for line in gen_lines ][-configurationLimit:] 139 140 - def remove_old_entries(gens): 141 rex_profile = re.compile("^@efiSysMountPoint@/loader/entries/nixos-(.*)-generation-.*\.conf$") 142 rex_generation = re.compile("^@efiSysMountPoint@/loader/entries/nixos.*-generation-(.*)\.conf$") 143 known_paths = [] ··· 150 prof = rex_profile.sub(r"\1", path) 151 else: 152 prof = "system" 153 - gen = int(rex_generation.sub(r"\1", path)) 154 - if not (prof, gen) in gens: 155 os.unlink(path) 156 except ValueError: 157 pass ··· 159 if not path in known_paths and not os.path.isdir(path): 160 os.unlink(path) 161 162 - def get_profiles(): 163 if os.path.isdir("/nix/var/nix/profiles/system-profiles/"): 164 return [x 165 for x in os.listdir("/nix/var/nix/profiles/system-profiles/") ··· 167 else: 168 return [] 169 170 - def main(): 171 parser = argparse.ArgumentParser(description='Update NixOS-related systemd-boot files') 172 parser.add_argument('default_config', metavar='DEFAULT-CONFIG', help='The default NixOS config to boot') 173 args = parser.parse_args() ··· 182 # be there on newly installed systems, so let's generate one so that 183 # bootctl can find it and we can also pass it to write_entry() later. 184 cmd = ["@systemd@/bin/systemd-machine-id-setup", "--print"] 185 - machine_id = subprocess.check_output(cmd).rstrip() 186 187 if os.getenv("NIXOS_INSTALL_GRUB") == "1": 188 warnings.warn("NIXOS_INSTALL_GRUB env var deprecated, use NIXOS_INSTALL_BOOTLOADER", DeprecationWarning) ··· 212 if systemd_version > sdboot_version: 213 print("updating systemd-boot from %s to %s" % (sdboot_version, systemd_version)) 214 subprocess.check_call(["@systemd@/bin/bootctl", "--path=@efiSysMountPoint@", "update"]) 215 - 216 217 mkdir_p("@efiSysMountPoint@/efi/nixos") 218 mkdir_p("@efiSysMountPoint@/loader/entries") ··· 251 rc = libc.syncfs(os.open("@efiSysMountPoint@", os.O_RDONLY)) 252 if rc != 0: 253 print("could not sync @efiSysMountPoint@: {}".format(os.strerror(rc)), file=sys.stderr) 254 255 if __name__ == '__main__': 256 main()
··· 15 import datetime 16 import glob 17 import os.path 18 + from typing import Tuple, List, Optional 19 + 20 21 + def copy_if_not_exists(source: str, dest: str) -> None: 22 if not os.path.exists(dest): 23 shutil.copyfile(source, dest) 24 25 + 26 + def system_dir(profile: Optional[str], generation: int) -> str: 27 if profile: 28 return "/nix/var/nix/profiles/system-profiles/%s-%d-link" % (profile, generation) 29 else: ··· 45 efi /efi/memtest86/BOOTX64.efi 46 """ 47 48 + 49 + def write_loader_conf(profile: Optional[str], generation: int) -> None: 50 with open("@efiSysMountPoint@/loader/loader.conf.tmp", 'w') as f: 51 if "@timeout@" != "": 52 f.write("timeout @timeout@\n") ··· 59 f.write("console-mode @consoleMode@\n"); 60 os.rename("@efiSysMountPoint@/loader/loader.conf.tmp", "@efiSysMountPoint@/loader/loader.conf") 61 62 + 63 + def profile_path(profile: Optional[str], generation: int, name: str) -> str: 64 return os.readlink("%s/%s" % (system_dir(profile, generation), name)) 65 66 + 67 + def copy_from_profile(profile: Optional[str], generation: int, name: str, dry_run: bool = False) -> str: 68 store_file_path = profile_path(profile, generation, name) 69 suffix = os.path.basename(store_file_path) 70 store_dir = os.path.basename(os.path.dirname(store_file_path)) ··· 73 copy_if_not_exists(store_file_path, "@efiSysMountPoint@%s" % (efi_file_path)) 74 return efi_file_path 75 76 + 77 + def describe_generation(generation_dir: str) -> str: 78 try: 79 with open("%s/nixos-version" % generation_dir) as f: 80 nixos_version = f.read() ··· 94 95 return description 96 97 + 98 + def write_entry(profile: Optional[str], generation: int, machine_id: str) -> None: 99 kernel = copy_from_profile(profile, generation, "kernel") 100 initrd = copy_from_profile(profile, generation, "initrd") 101 try: ··· 124 f.write("machine-id %s\n" % machine_id) 125 os.rename(tmp_path, entry_file) 126 127 + 128 + def mkdir_p(path: str) -> None: 129 try: 130 os.makedirs(path) 131 except OSError as e: 132 if e.errno != errno.EEXIST or not os.path.isdir(path): 133 raise 134 135 + 136 + def get_generations(profile: Optional[str] = None) -> List[Tuple[Optional[str], int]]: 137 gen_list = subprocess.check_output([ 138 "@nix@/bin/nix-env", 139 "--list-generations", ··· 147 configurationLimit = @configurationLimit@ 148 return [ (profile, int(line.split()[0])) for line in gen_lines ][-configurationLimit:] 149 150 + 151 + def remove_old_entries(gens: List[Tuple[Optional[str], int]]) -> None: 152 rex_profile = re.compile("^@efiSysMountPoint@/loader/entries/nixos-(.*)-generation-.*\.conf$") 153 rex_generation = re.compile("^@efiSysMountPoint@/loader/entries/nixos.*-generation-(.*)\.conf$") 154 known_paths = [] ··· 161 prof = rex_profile.sub(r"\1", path) 162 else: 163 prof = "system" 164 + gen_number = int(rex_generation.sub(r"\1", path)) 165 + if not (prof, gen_number) in gens: 166 os.unlink(path) 167 except ValueError: 168 pass ··· 170 if not path in known_paths and not os.path.isdir(path): 171 os.unlink(path) 172 173 + 174 + def get_profiles() -> List[str]: 175 if os.path.isdir("/nix/var/nix/profiles/system-profiles/"): 176 return [x 177 for x in os.listdir("/nix/var/nix/profiles/system-profiles/") ··· 179 else: 180 return [] 181 182 + 183 + def main() -> None: 184 parser = argparse.ArgumentParser(description='Update NixOS-related systemd-boot files') 185 parser.add_argument('default_config', metavar='DEFAULT-CONFIG', help='The default NixOS config to boot') 186 args = parser.parse_args() ··· 195 # be there on newly installed systems, so let's generate one so that 196 # bootctl can find it and we can also pass it to write_entry() later. 197 cmd = ["@systemd@/bin/systemd-machine-id-setup", "--print"] 198 + machine_id = subprocess.run( 199 + cmd, text=True, check=True, stdout=subprocess.PIPE 200 + ).stdout.rstrip() 201 202 if os.getenv("NIXOS_INSTALL_GRUB") == "1": 203 warnings.warn("NIXOS_INSTALL_GRUB env var deprecated, use NIXOS_INSTALL_BOOTLOADER", DeprecationWarning) ··· 227 if systemd_version > sdboot_version: 228 print("updating systemd-boot from %s to %s" % (sdboot_version, systemd_version)) 229 subprocess.check_call(["@systemd@/bin/bootctl", "--path=@efiSysMountPoint@", "update"]) 230 231 mkdir_p("@efiSysMountPoint@/efi/nixos") 232 mkdir_p("@efiSysMountPoint@/loader/entries") ··· 265 rc = libc.syncfs(os.open("@efiSysMountPoint@", os.O_RDONLY)) 266 if rc != 0: 267 print("could not sync @efiSysMountPoint@: {}".format(os.strerror(rc)), file=sys.stderr) 268 + 269 270 if __name__ == '__main__': 271 main()
+13 -2
nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix
··· 7 8 efi = config.boot.loader.efi; 9 10 - gummibootBuilder = pkgs.substituteAll { 11 src = ./systemd-boot-builder.py; 12 13 isExecutable = true; ··· 30 31 memtest86 = if cfg.memtest86.enable then pkgs.memtest86-efi else ""; 32 }; 33 in { 34 35 imports = ··· 131 boot.loader.supportsInitrdSecrets = true; 132 133 system = { 134 - build.installBootLoader = gummibootBuilder; 135 136 boot.loader.id = "systemd-boot"; 137
··· 7 8 efi = config.boot.loader.efi; 9 10 + systemdBootBuilder = pkgs.substituteAll { 11 src = ./systemd-boot-builder.py; 12 13 isExecutable = true; ··· 30 31 memtest86 = if cfg.memtest86.enable then pkgs.memtest86-efi else ""; 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 + ''; 44 in { 45 46 imports = ··· 142 boot.loader.supportsInitrdSecrets = true; 143 144 system = { 145 + build.installBootLoader = checkedSystemdBootBuilder; 146 147 boot.loader.id = "systemd-boot"; 148
+9
pkgs/applications/audio/bambootracker/default.nix
··· 1 { mkDerivation 2 , lib 3 , fetchFromGitHub 4 , fetchpatch ··· 38 qmakeFlags = [ "CONFIG+=system_rtaudio" "CONFIG+=system_rtmidi" ]; 39 40 postConfigure = "make qmake_all"; 41 42 meta = with lib; { 43 description = "A tracker for YM2608 (OPNA) which was used in NEC PC-8801/9801 series computers";
··· 1 { mkDerivation 2 + , stdenv 3 , lib 4 , fetchFromGitHub 5 , fetchpatch ··· 39 qmakeFlags = [ "CONFIG+=system_rtaudio" "CONFIG+=system_rtmidi" ]; 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 + ''; 50 51 meta = with lib; { 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 }: 2 stdenv.mkDerivation rec { 3 pname = "MBdistortion"; 4 version = "1.1.1"; ··· 9 rev = "V${version}"; 10 sha256 = "0mdzaqmxzgspfgx9w1hdip18y17hwpdcgjyq1rrfm843vkascwip"; 11 }; 12 13 buildInputs = [ faust2jaqt faust2lv2 ]; 14
··· 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, faust2jaqt, faust2lv2 }: 2 stdenv.mkDerivation rec { 3 pname = "MBdistortion"; 4 version = "1.1.1"; ··· 9 rev = "V${version}"; 10 sha256 = "0mdzaqmxzgspfgx9w1hdip18y17hwpdcgjyq1rrfm843vkascwip"; 11 }; 12 + 13 + patches = [ 14 + (fetchpatch { 15 + url = "https://github.com/magnetophon/MBdistortion/commit/10e35084b88c559f1b63760cf40fd5ef5a6745a5.patch"; 16 + sha256 = "0hwjl3rzvn3id0sr0qs8f37jdmr915mdan8miaf78ra0ir3wnk76"; 17 + }) 18 + ]; 19 20 buildInputs = [ faust2jaqt faust2lv2 ]; 21
+1 -1
pkgs/applications/editors/poke/default.nix
··· 10 , readline 11 , guiSupport ? false, tcl, tcllib, tk 12 , miSupport ? true, json_c 13 - , nbdSupport ? true, libnbd 14 , textStylingSupport ? true 15 , dejagnu 16 }:
··· 10 , readline 11 , guiSupport ? false, tcl, tcllib, tk 12 , miSupport ? true, json_c 13 + , nbdSupport ? !stdenv.isDarwin, libnbd 14 , textStylingSupport ? true 15 , dejagnu 16 }:
+2 -2
pkgs/applications/misc/crow-translate/default.nix
··· 46 in 47 mkDerivation rec { 48 pname = "crow-translate"; 49 - version = "2.8.0"; 50 51 src = fetchFromGitHub { 52 owner = "crow-translate"; 53 repo = "crow-translate"; 54 rev = version; 55 - sha256 = "sha256-kpr3Xn1ZLBS1fVhhJ/sxo8UgB4M+SdOVhddnU8pNUfA="; 56 }; 57 58 patches = [
··· 46 in 47 mkDerivation rec { 48 pname = "crow-translate"; 49 + version = "2.8.1"; 50 51 src = fetchFromGitHub { 52 owner = "crow-translate"; 53 repo = "crow-translate"; 54 rev = version; 55 + sha256 = "sha256-fmlNUhNorV/MUdfdDXM6puAblTTa6p2slVT/EKy5THg="; 56 }; 57 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 { lib, stdenv, fetchurl, dpkg 2 , alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, gdk-pixbuf, glib, glibc, gnome2, gnome3 3 , gtk3, libappindicator-gtk3, libnotify, libpulseaudio, libsecret, libv4l, nspr, nss, pango, systemd, wrapGAppsHook, xorg 4 - , at-spi2-atk, libuuid, at-spi2-core }: 5 6 let 7 8 # Please keep the version x.y.0.z and do not update to x.y.76.z because the 9 # source of the latter disappears much faster. 10 - version = "8.68.0.100"; 11 12 rpath = lib.makeLibraryPath [ 13 alsaLib ··· 40 pango 41 stdenv.cc.cc 42 systemd 43 libv4l 44 - 45 xorg.libxkbfile 46 xorg.libX11 47 xorg.libXcomposite ··· 65 "https://mirror.cs.uchicago.edu/skype/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb" 66 "https://web.archive.org/web/https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb" 67 ]; 68 - sha256 = "gHjgQRdNABO+R+fcDurHDAQtZpckIxLbODM6Txz+LH4="; 69 } 70 else 71 throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}";
··· 1 { lib, stdenv, fetchurl, dpkg 2 , alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, gdk-pixbuf, glib, glibc, gnome2, gnome3 3 , gtk3, libappindicator-gtk3, libnotify, libpulseaudio, libsecret, libv4l, nspr, nss, pango, systemd, wrapGAppsHook, xorg 4 + , at-spi2-atk, libuuid, at-spi2-core, libdrm, mesa, libxkbcommon }: 5 6 let 7 8 # Please keep the version x.y.0.z and do not update to x.y.76.z because the 9 # source of the latter disappears much faster. 10 + version = "8.69.0.77"; 11 12 rpath = lib.makeLibraryPath [ 13 alsaLib ··· 40 pango 41 stdenv.cc.cc 42 systemd 43 + 44 libv4l 45 + libdrm 46 + mesa 47 + libxkbcommon 48 xorg.libxkbfile 49 xorg.libX11 50 xorg.libXcomposite ··· 68 "https://mirror.cs.uchicago.edu/skype/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb" 69 "https://web.archive.org/web/https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb" 70 ]; 71 + sha256 = "PaqlPp+BRS0cH7XI4x1/5HqYti63rQThmTtPaghIQH0="; 72 } 73 else 74 throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}";
+2
pkgs/applications/science/math/sage/sagelib.nix
··· 32 , ntl 33 , numpy 34 , pari 35 , pkg-config 36 , planarity 37 , ppl ··· 85 cypari2 86 jinja2 87 numpy 88 boost 89 arb 90 brial
··· 32 , ntl 33 , numpy 34 , pari 35 + , pkgconfig # the python module, not the pkg-config alias 36 , pkg-config 37 , planarity 38 , ppl ··· 86 cypari2 87 jinja2 88 numpy 89 + pkgconfig 90 boost 91 arb 92 brial
+7 -7
pkgs/applications/version-management/gitlab/data.json
··· 1 { 2 - "version": "13.8.6", 3 - "repo_hash": "0izzvr4bw86nbrqkf44gkcf63ham10cw4vp5yk0ylgm7w0kimv8v", 4 "owner": "gitlab-org", 5 "repo": "gitlab", 6 - "rev": "v13.8.6-ee", 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" 12 } 13 }
··· 1 { 2 + "version": "13.9.4", 3 + "repo_hash": "0gwxjmph3ac5v0h5zz8664412yq09cka5p4amdbxk7hna24igksz", 4 "owner": "gitlab-org", 5 "repo": "gitlab", 6 + "rev": "v13.9.4-ee", 7 "passthru": { 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 } 13 }
+5 -5
pkgs/applications/version-management/gitlab/gitaly/Gemfile
··· 1 source 'https://rubygems.org' 2 3 - gem 'rugged', '~> 0.28' 4 gem 'github-linguist', '~> 7.12', require: 'linguist' 5 gem 'gitlab-markup', '~> 1.7.1' 6 gem 'activesupport', '~> 6.0.3.4' 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 10 gem 'grpc', '~> 1.30.2' 11 gem 'sentry-raven', '~> 3.0', require: false 12 gem 'faraday', '~> 1.0' 13 gem 'rbtrace', require: false 14 15 # Labkit provides observability functionality 16 - gem 'gitlab-labkit', '~> 0.13.2' 17 18 # Detects the open source license the repository includes 19 # This version needs to be in sync with GitLab CE/EE 20 - gem 'licensee', '~> 8.9.0' 21 22 gem 'google-protobuf', '~> 3.12' 23
··· 1 source 'https://rubygems.org' 2 3 + gem 'rugged', '~> 1.0.1' 4 gem 'github-linguist', '~> 7.12', require: 'linguist' 5 gem 'gitlab-markup', '~> 1.7.1' 6 gem 'activesupport', '~> 6.0.3.4' 7 gem 'rdoc', '~> 6.0' 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 gem 'grpc', '~> 1.30.2' 11 gem 'sentry-raven', '~> 3.0', require: false 12 gem 'faraday', '~> 1.0' 13 gem 'rbtrace', require: false 14 15 # Labkit provides observability functionality 16 + gem 'gitlab-labkit', '~> 0.15.0' 17 18 # Detects the open source license the repository includes 19 # This version needs to be in sync with GitLab CE/EE 20 + gem 'licensee', '~> 9.14.1' 21 22 gem 'google-protobuf', '~> 3.12' 23
+40 -21
pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock
··· 24 adamantium (0.2.0) 25 ice_nine (~> 0.11.0) 26 memoizable (~> 0.4.0) 27 ast (2.4.1) 28 binding_ninja (0.2.3) 29 builder (3.2.4) ··· 35 concurrent-ruby (1.1.7) 36 crass (1.0.6) 37 diff-lcs (1.3) 38 equalizer (0.0.11) 39 - erubi (1.9.0) 40 escape_utils (1.2.1) 41 factory_bot (5.0.2) 42 activesupport (>= 4.2.0) ··· 51 mini_mime (~> 1.0) 52 rugged (>= 0.25.1) 53 github-markup (1.7.0) 54 - gitlab-gollum-lib (4.2.7.9) 55 gemojione (~> 3.2) 56 github-markup (~> 1.6) 57 - gitlab-gollum-rugged_adapter (~> 0.4.4.2) 58 nokogiri (>= 1.6.1, < 2.0) 59 rouge (~> 3.1) 60 sanitize (~> 4.6.4) 61 stringex (~> 2.6) 62 - gitlab-gollum-rugged_adapter (0.4.4.2) 63 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) 68 grpc (~> 1.19) 69 jaeger-client (~> 1.1) 70 opentracing (~> 0.4) 71 redis (> 3.0.0, < 5.0.0) 72 gitlab-markup (1.7.1) 73 google-protobuf (3.12.4) ··· 83 jaeger-client (1.1.0) 84 opentracing (~> 0.3) 85 thrift 86 - json (2.3.1) 87 - licensee (8.9.2) 88 - rugged (~> 0.24) 89 - loofah (2.8.0) 90 crass (~> 1.0.2) 91 nokogiri (>= 1.5.9) 92 memoizable (0.4.2) ··· 94 method_source (0.9.2) 95 mime-types (3.3.1) 96 mime-types-data (~> 3.2015) 97 - mime-types-data (3.2020.0512) 98 mini_mime (1.0.2) 99 mini_portile2 (2.5.0) 100 minitest (5.14.2) ··· 105 racc (~> 1.4) 106 nokogumbo (1.5.0) 107 nokogiri 108 opentracing (0.5.0) 109 optimist (3.0.1) 110 parallel (1.19.2) 111 parser (2.7.2.0) 112 ast (~> 2.4.1) 113 proc_to_ast (0.1.0) 114 coderay 115 parser ··· 118 pry (0.12.2) 119 coderay (~> 1.1.0) 120 method_source (~> 0.9.0) 121 racc (1.5.2) 122 rack (2.2.3) 123 rack-test (1.1.0) ··· 133 msgpack (>= 0.4.3) 134 optimist (>= 3.0.0) 135 rdoc (6.2.0) 136 - redis (4.1.3) 137 regexp_parser (1.8.1) 138 rexml (3.2.4) 139 rouge (3.26.0) 140 rspec (3.8.0) ··· 168 rubocop-ast (0.2.0) 169 parser (>= 2.7.0.1) 170 ruby-progressbar (1.10.1) 171 - rugged (0.28.4.1) 172 sanitize (4.6.6) 173 crass (~> 1.0.2) 174 nokogiri (>= 1.4.4) 175 nokogumbo (~> 1.4) 176 sentry-raven (3.0.4) 177 faraday (>= 1.0) 178 stringex (2.8.5) 179 thread_safe (0.3.6) 180 - thrift (0.11.0.0) 181 timecop (0.9.1) 182 tzinfo (1.2.9) 183 thread_safe (~> 0.1) ··· 200 factory_bot 201 faraday (~> 1.0) 202 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) 206 gitlab-markup (~> 1.7.1) 207 google-protobuf (~> 3.12) 208 grpc (~> 1.30.2) 209 grpc-tools (= 1.30.2) 210 - licensee (~> 8.9.0) 211 pry (~> 0.12.2) 212 rbtrace 213 rdoc (~> 6.0) 214 rspec 215 rspec-parameterized 216 rubocop (~> 0.69) 217 - rugged (~> 0.28) 218 sentry-raven (~> 3.0) 219 timecop 220
··· 24 adamantium (0.2.0) 25 ice_nine (~> 0.11.0) 26 memoizable (~> 0.4.0) 27 + addressable (2.7.0) 28 + public_suffix (>= 2.0.2, < 5.0) 29 ast (2.4.1) 30 binding_ninja (0.2.3) 31 builder (3.2.4) ··· 37 concurrent-ruby (1.1.7) 38 crass (1.0.6) 39 diff-lcs (1.3) 40 + dotenv (2.7.6) 41 equalizer (0.0.11) 42 + erubi (1.10.0) 43 escape_utils (1.2.1) 44 factory_bot (5.0.2) 45 activesupport (>= 4.2.0) ··· 54 mini_mime (~> 1.0) 55 rugged (>= 0.25.1) 56 github-markup (1.7.0) 57 + gitlab-gollum-lib (4.2.7.10.gitlab.1) 58 gemojione (~> 3.2) 59 github-markup (~> 1.6) 60 + gitlab-gollum-rugged_adapter (~> 0.4.4.3.gitlab.1) 61 nokogiri (>= 1.6.1, < 2.0) 62 rouge (~> 3.1) 63 sanitize (~> 4.6.4) 64 stringex (~> 2.6) 65 + gitlab-gollum-rugged_adapter (0.4.4.3.gitlab.1) 66 mime-types (>= 1.15) 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) 71 grpc (~> 1.19) 72 jaeger-client (~> 1.1) 73 opentracing (~> 0.4) 74 + pg_query (~> 1.3) 75 redis (> 3.0.0, < 5.0.0) 76 gitlab-markup (1.7.1) 77 google-protobuf (3.12.4) ··· 87 jaeger-client (1.1.0) 88 opentracing (~> 0.3) 89 thrift 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) 98 crass (~> 1.0.2) 99 nokogiri (>= 1.5.9) 100 memoizable (0.4.2) ··· 102 method_source (0.9.2) 103 mime-types (3.3.1) 104 mime-types-data (~> 3.2015) 105 + mime-types-data (3.2020.1104) 106 mini_mime (1.0.2) 107 mini_portile2 (2.5.0) 108 minitest (5.14.2) ··· 113 racc (~> 1.4) 114 nokogumbo (1.5.0) 115 nokogiri 116 + octokit (4.20.0) 117 + faraday (>= 0.9) 118 + sawyer (~> 0.8.0, >= 0.5.3) 119 opentracing (0.5.0) 120 optimist (3.0.1) 121 parallel (1.19.2) 122 parser (2.7.2.0) 123 ast (~> 2.4.1) 124 + pg_query (1.3.0) 125 proc_to_ast (0.1.0) 126 coderay 127 parser ··· 130 pry (0.12.2) 131 coderay (~> 1.1.0) 132 method_source (~> 0.9.0) 133 + public_suffix (4.0.6) 134 racc (1.5.2) 135 rack (2.2.3) 136 rack-test (1.1.0) ··· 146 msgpack (>= 0.4.3) 147 optimist (>= 3.0.0) 148 rdoc (6.2.0) 149 + redis (4.2.5) 150 regexp_parser (1.8.1) 151 + reverse_markdown (1.4.0) 152 + nokogiri 153 rexml (3.2.4) 154 rouge (3.26.0) 155 rspec (3.8.0) ··· 183 rubocop-ast (0.2.0) 184 parser (>= 2.7.0.1) 185 ruby-progressbar (1.10.1) 186 + rugged (1.0.1) 187 sanitize (4.6.6) 188 crass (~> 1.0.2) 189 nokogiri (>= 1.4.4) 190 nokogumbo (~> 1.4) 191 + sawyer (0.8.2) 192 + addressable (>= 2.3.5) 193 + faraday (> 0.8, < 2.0) 194 sentry-raven (3.0.4) 195 faraday (>= 1.0) 196 stringex (2.8.5) 197 + thor (1.1.0) 198 thread_safe (0.3.6) 199 + thrift (0.13.0) 200 timecop (0.9.1) 201 tzinfo (1.2.9) 202 thread_safe (~> 0.1) ··· 219 factory_bot 220 faraday (~> 1.0) 221 github-linguist (~> 7.12) 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) 225 gitlab-markup (~> 1.7.1) 226 google-protobuf (~> 3.12) 227 grpc (~> 1.30.2) 228 grpc-tools (= 1.30.2) 229 + licensee (~> 9.14.1) 230 pry (~> 0.12.2) 231 rbtrace 232 rdoc (~> 6.0) 233 rspec 234 rspec-parameterized 235 rubocop (~> 0.69) 236 + rugged (~> 1.0.1) 237 sentry-raven (~> 3.0) 238 timecop 239
+2 -2
pkgs/applications/version-management/gitlab/gitaly/default.nix
··· 33 }; 34 }; 35 in buildGoModule rec { 36 - version = "13.8.6"; 37 pname = "gitaly"; 38 39 src = fetchFromGitLab { ··· 43 sha256 = "sha256-6ocP4SMafvLI2jfvcB8jk1AemAI/TiBQ1iaVxK7I54A="; 44 }; 45 46 - vendorSha256 = "sha256-oVw6vXI3CyOn4l02PkYx3HVpZfzQPi3yBuf9tRvoWoM="; 47 48 passthru = { 49 inherit rubyEnv;
··· 33 }; 34 }; 35 in buildGoModule rec { 36 + version = "13.9.4"; 37 pname = "gitaly"; 38 39 src = fetchFromGitLab { ··· 43 sha256 = "sha256-6ocP4SMafvLI2jfvcB8jk1AemAI/TiBQ1iaVxK7I54A="; 44 }; 45 46 + vendorSha256 = "10ssx0dvbzg70vr2sgnhzijnjxfw6533wdjxwakj62rpfayklp51"; 47 48 passthru = { 49 inherit rubyEnv;
+112 -26
pkgs/applications/version-management/gitlab/gitaly/gemset.nix
··· 49 }; 50 version = "0.2.0"; 51 }; 52 ast = { 53 groups = ["default" "development" "test"]; 54 platforms = []; ··· 134 }; 135 version = "1.3"; 136 }; 137 equalizer = { 138 source = { 139 remotes = ["https://rubygems.org"]; ··· 147 platforms = []; 148 source = { 149 remotes = ["https://rubygems.org"]; 150 - sha256 = "1nwzxnqhr31fn7nbqmffcysvxjdfl3bhxi0bld5qqhcnfc1xd13x"; 151 type = "gem"; 152 }; 153 - version = "1.9.0"; 154 }; 155 escape_utils = { 156 source = { ··· 226 platforms = []; 227 source = { 228 remotes = ["https://rubygems.org"]; 229 - sha256 = "0y21k8bix3h2qdys2kz2z831cclmx3zc15x67cp8s945dkmh39sj"; 230 type = "gem"; 231 }; 232 - version = "4.2.7.9"; 233 }; 234 gitlab-gollum-rugged_adapter = { 235 dependencies = ["mime-types" "rugged"]; ··· 237 platforms = []; 238 source = { 239 remotes = ["https://rubygems.org"]; 240 - sha256 = "1d32d3yfadzwrarv0biwbfbkz2bqcc0dc3q0imnk962jaay19gc4"; 241 type = "gem"; 242 }; 243 - version = "0.4.4.2"; 244 }; 245 gitlab-labkit = { 246 - dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing" "redis"]; 247 groups = ["default"]; 248 platforms = []; 249 source = { 250 remotes = ["https://rubygems.org"]; 251 - sha256 = "0vgd61xdclihifcdivddfs1gipxy1ql0kf9q47k9h0xisscyjhd2"; 252 type = "gem"; 253 }; 254 - version = "0.13.2"; 255 }; 256 gitlab-markup = { 257 groups = ["default"]; ··· 336 version = "1.1.0"; 337 }; 338 json = { 339 - groups = ["default" "development" "test"]; 340 platforms = []; 341 source = { 342 remotes = ["https://rubygems.org"]; 343 - sha256 = "158fawfwmv2sq4whqqaksfykkiad2xxrrj0nmpnc6vnlzi1bp7iz"; 344 type = "gem"; 345 }; 346 - version = "2.3.1"; 347 }; 348 licensee = { 349 - dependencies = ["rugged"]; 350 source = { 351 remotes = ["https://rubygems.org"]; 352 - sha256 = "0w6d2smhg3kzcx4m2ii06akakypwhiglansk51bpx290hhc8h3pc"; 353 type = "gem"; 354 }; 355 - version = "8.9.2"; 356 }; 357 loofah = { 358 dependencies = ["crass" "nokogiri"]; ··· 360 platforms = []; 361 source = { 362 remotes = ["https://rubygems.org"]; 363 - sha256 = "0ndimir6k3kfrh8qrb7ir1j836l4r3qlwyclwjh88b86clblhszh"; 364 type = "gem"; 365 }; 366 - version = "2.8.0"; 367 }; 368 memoizable = { 369 dependencies = ["thread_safe"]; ··· 398 platforms = []; 399 source = { 400 remotes = ["https://rubygems.org"]; 401 - sha256 = "1z75svngyhsglx0y2f9rnil2j08f9ab54b3l95bpgz67zq2if753"; 402 type = "gem"; 403 }; 404 - version = "3.2020.0512"; 405 }; 406 mini_mime = { 407 groups = ["default"]; ··· 473 }; 474 version = "1.5.0"; 475 }; 476 opentracing = { 477 groups = ["default"]; 478 platforms = []; ··· 514 }; 515 version = "2.7.2.0"; 516 }; 517 proc_to_ast = { 518 dependencies = ["coderay" "parser" "unparser"]; 519 source = { ··· 540 }; 541 version = "0.12.2"; 542 }; 543 racc = { 544 groups = ["default"]; 545 platforms = []; ··· 627 platforms = []; 628 source = { 629 remotes = ["https://rubygems.org"]; 630 - sha256 = "08v2y91q1pmv12g9zsvwj66w3s8j9d82yrmxgyv4y4gz380j3wyh"; 631 type = "gem"; 632 }; 633 - version = "4.1.3"; 634 }; 635 regexp_parser = { 636 groups = ["default" "development" "test"]; ··· 642 }; 643 version = "1.8.1"; 644 }; 645 rexml = { 646 groups = ["default" "development" "test"]; 647 platforms = []; ··· 764 platforms = []; 765 source = { 766 remotes = ["https://rubygems.org"]; 767 - sha256 = "0rdidxgpk1b6y1jq9v77lcx5khq0s9q0s253lr8x57d3hk43iskx"; 768 type = "gem"; 769 }; 770 - version = "0.28.4.1"; 771 }; 772 sanitize = { 773 dependencies = ["crass" "nokogiri" "nokogumbo"]; ··· 778 }; 779 version = "4.6.6"; 780 }; 781 sentry-raven = { 782 dependencies = ["faraday"]; 783 groups = ["default"]; ··· 799 }; 800 version = "2.8.5"; 801 }; 802 thread_safe = { 803 source = { 804 remotes = ["https://rubygems.org"]; ··· 812 platforms = []; 813 source = { 814 remotes = ["https://rubygems.org"]; 815 - sha256 = "02p107kwx7jnkh6fpdgvaji0xdg6xkaarngkqjml6s4zny4m8slv"; 816 type = "gem"; 817 }; 818 - version = "0.11.0.0"; 819 }; 820 timecop = { 821 source = { ··· 867 }; 868 version = "2.4.2"; 869 }; 870 - }
··· 49 }; 50 version = "0.2.0"; 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 + }; 63 ast = { 64 groups = ["default" "development" "test"]; 65 platforms = []; ··· 145 }; 146 version = "1.3"; 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 + }; 158 equalizer = { 159 source = { 160 remotes = ["https://rubygems.org"]; ··· 168 platforms = []; 169 source = { 170 remotes = ["https://rubygems.org"]; 171 + sha256 = "09l8lz3j00m898li0yfsnb6ihc63rdvhw3k5xczna5zrjk104f2l"; 172 type = "gem"; 173 }; 174 + version = "1.10.0"; 175 }; 176 escape_utils = { 177 source = { ··· 247 platforms = []; 248 source = { 249 remotes = ["https://rubygems.org"]; 250 + sha256 = "0r6smbqnh0m84fxwb2g11qjfbcsljfin4vhnf43nmmbql2l1i3ah"; 251 type = "gem"; 252 }; 253 + version = "4.2.7.10.gitlab.1"; 254 }; 255 gitlab-gollum-rugged_adapter = { 256 dependencies = ["mime-types" "rugged"]; ··· 258 platforms = []; 259 source = { 260 remotes = ["https://rubygems.org"]; 261 + sha256 = "0rqi9h6k32azljmx2q0zibvs1m59wgh879h04jflxkcqyzj6wyyj"; 262 type = "gem"; 263 }; 264 + version = "0.4.4.3.gitlab.1"; 265 }; 266 gitlab-labkit = { 267 + dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing" "pg_query" "redis"]; 268 groups = ["default"]; 269 platforms = []; 270 source = { 271 remotes = ["https://rubygems.org"]; 272 + sha256 = "1l9bsjszp5zyzbdsr9ls09d4yr2sb0xjc40x4rv7fbzk19n9xs71"; 273 type = "gem"; 274 }; 275 + version = "0.15.0"; 276 }; 277 gitlab-markup = { 278 groups = ["default"]; ··· 357 version = "1.1.0"; 358 }; 359 json = { 360 + groups = ["default"]; 361 platforms = []; 362 source = { 363 remotes = ["https://rubygems.org"]; 364 + sha256 = "0lrirj0gw420kw71bjjlqkqhqbrplla61gbv1jzgsz6bv90qr3ci"; 365 type = "gem"; 366 }; 367 + version = "2.5.1"; 368 }; 369 licensee = { 370 + dependencies = ["dotenv" "octokit" "reverse_markdown" "rugged" "thor"]; 371 + groups = ["default"]; 372 + platforms = []; 373 source = { 374 remotes = ["https://rubygems.org"]; 375 + sha256 = "0c551j4qy773d79hgypjaz43h5wjn08mnxnxy9s2vdjc40qm95k5"; 376 type = "gem"; 377 }; 378 + version = "9.14.1"; 379 }; 380 loofah = { 381 dependencies = ["crass" "nokogiri"]; ··· 383 platforms = []; 384 source = { 385 remotes = ["https://rubygems.org"]; 386 + sha256 = "0bzwvxvilx7w1p3pg028ks38925y9i0xm870lm7s12w7598hiyck"; 387 type = "gem"; 388 }; 389 + version = "2.9.0"; 390 }; 391 memoizable = { 392 dependencies = ["thread_safe"]; ··· 421 platforms = []; 422 source = { 423 remotes = ["https://rubygems.org"]; 424 + sha256 = "0ipjyfwn9nlvpcl8knq3jk4g5f12cflwdbaiqxcq1s7vwfwfxcag"; 425 type = "gem"; 426 }; 427 + version = "3.2020.1104"; 428 }; 429 mini_mime = { 430 groups = ["default"]; ··· 496 }; 497 version = "1.5.0"; 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 + }; 510 opentracing = { 511 groups = ["default"]; 512 platforms = []; ··· 548 }; 549 version = "2.7.2.0"; 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 + }; 561 proc_to_ast = { 562 dependencies = ["coderay" "parser" "unparser"]; 563 source = { ··· 584 }; 585 version = "0.12.2"; 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 + }; 597 racc = { 598 groups = ["default"]; 599 platforms = []; ··· 681 platforms = []; 682 source = { 683 remotes = ["https://rubygems.org"]; 684 + sha256 = "15x2sr6h094rjbvg8pkq6m3lcd5abpyx93aifvfdz3wv6x55xa48"; 685 type = "gem"; 686 }; 687 + version = "4.2.5"; 688 }; 689 regexp_parser = { 690 groups = ["default" "development" "test"]; ··· 696 }; 697 version = "1.8.1"; 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 + }; 710 rexml = { 711 groups = ["default" "development" "test"]; 712 platforms = []; ··· 829 platforms = []; 830 source = { 831 remotes = ["https://rubygems.org"]; 832 + sha256 = "056bwiwxvnbkbgsr2wqcsknnc73nqasqdnjcpgj2r61wkm8mzmbn"; 833 type = "gem"; 834 }; 835 + version = "1.0.1"; 836 }; 837 sanitize = { 838 dependencies = ["crass" "nokogiri" "nokogumbo"]; ··· 843 }; 844 version = "4.6.6"; 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 + }; 857 sentry-raven = { 858 dependencies = ["faraday"]; 859 groups = ["default"]; ··· 875 }; 876 version = "2.8.5"; 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 + }; 888 thread_safe = { 889 source = { 890 remotes = ["https://rubygems.org"]; ··· 898 platforms = []; 899 source = { 900 remotes = ["https://rubygems.org"]; 901 + sha256 = "08076cmdx0g51yrkd7dlxlr45nflink3jhdiq7006ljc2pc3212q"; 902 type = "gem"; 903 }; 904 + version = "0.13.0"; 905 }; 906 timecop = { 907 source = { ··· 953 }; 954 version = "2.4.2"; 955 }; 956 + }
+1 -1
pkgs/applications/version-management/gitlab/gitlab-shell/default.nix
··· 2 3 buildGoModule rec { 4 pname = "gitlab-shell"; 5 - version = "13.15.1"; 6 src = fetchFromGitLab { 7 owner = "gitlab-org"; 8 repo = "gitlab-shell";
··· 2 3 buildGoModule rec { 4 pname = "gitlab-shell"; 5 + version = "13.17.0"; 6 src = fetchFromGitLab { 7 owner = "gitlab-org"; 8 repo = "gitlab-shell";
+3 -3
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 3 buildGoModule rec { 4 pname = "gitlab-workhorse"; 5 6 - version = "8.59.2"; 7 8 src = fetchFromGitLab { 9 owner = "gitlab-org"; 10 repo = "gitlab-workhorse"; 11 rev = "v${version}"; 12 - sha256 = "sha256-hMcE7dlUw34DyUO0v5JxwvvEh/HC2emrIKc1K1U4bPE="; 13 }; 14 15 - vendorSha256 = "0vkw12w7vr0g4hf4f0im79y7l36d3ah01n1vl7siy94si47g8ir5"; 16 buildInputs = [ git ]; 17 buildFlagsArray = "-ldflags=-X main.Version=${version}"; 18 doCheck = false;
··· 3 buildGoModule rec { 4 pname = "gitlab-workhorse"; 5 6 + version = "8.63.2"; 7 8 src = fetchFromGitLab { 9 owner = "gitlab-org"; 10 repo = "gitlab-workhorse"; 11 rev = "v${version}"; 12 + sha256 = "1vjk7r7228p2gblx9nmqiz70ckbllg1p3bwkyfd4m49jhp13hryi"; 13 }; 14 15 + vendorSha256 = "0hc02nxw5jp1mhpjcx1f2a2dfaq7ji4qkf5g7lbpd1rzhqwp6zsz"; 16 buildInputs = [ git ]; 17 buildFlagsArray = "-ldflags=-X main.Version=${version}"; 18 doCheck = false;
+21 -15
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile
··· 1 source 'https://rubygems.org' 2 3 gem 'rails', '~> 6.0.3.1' ··· 10 gem 'sprockets', '~> 3.7.0' 11 12 # Default values for AR models 13 - gem 'default_value_for', '~> 3.3.0' 14 15 # Supported DBs 16 gem 'pg', '~> 1.1' 17 18 - gem 'rugged', '~> 0.28' 19 gem 'grape-path-helpers', '~> 1.6.1' 20 21 gem 'faraday', '~> 1.0' ··· 25 gem 'devise', '~> 4.7.2' 26 # TODO: verify ARM compile issue on 3.1.13+ version (see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/18828) 27 gem 'bcrypt', '3.1.12' 28 - gem 'doorkeeper', '~> 5.3.0' 29 - gem 'doorkeeper-openid_connect', '~> 1.7.4' 30 gem 'omniauth', '~> 1.8' 31 gem 'omniauth-auth0', '~> 2.0.0' 32 gem 'omniauth-azure-oauth2', '~> 0.0.9' ··· 81 gem 'net-ldap', '~> 0.16.3' 82 83 # API 84 - gem 'grape', '~> 1.5.1' 85 gem 'grape-entity', '~> 0.7.1' 86 gem 'rack-cors', '~> 1.0.6', require: 'rack/cors' 87 ··· 103 gem 'kaminari', '~> 1.0' 104 105 # HAML 106 - gem 'hamlit', '~> 2.11.0' 107 108 # Files attachments 109 gem 'carrierwave', '~> 1.3' ··· 154 gem 'asciidoctor', '~> 2.0.10' 155 gem 'asciidoctor-include-ext', '~> 0.3.1', require: false 156 gem 'asciidoctor-plantuml', '~> 0.0.12' 157 - gem 'asciidoctor-kroki', '~> 0.2.2', require: false 158 gem 'rouge', '~> 3.26.0' 159 gem 'truncato', '~> 0.7.11' 160 gem 'bootstrap_form', '~> 4.2.0' ··· 266 gem 'loofah', '~> 2.2' 267 268 # Working with license 269 - gem 'licensee', '~> 8.9' 270 271 # Detect and convert string character encoding 272 gem 'charlock_holmes', '~> 0.7.7' ··· 284 gem 'rack-proxy', '~> 0.6.0' 285 286 gem 'sassc-rails', '~> 2.1.0' 287 gem 'terser', '1.0.2' 288 289 gem 'addressable', '~> 2.7' ··· 292 gem 'request_store', '~> 1.5' 293 gem 'base32', '~> 0.3.0' 294 295 - gem "gitlab-license", "~> 1.0" 296 297 # Protect against bruteforcing 298 gem 'rack-attack', '~> 6.3.0' ··· 339 group :development do 340 gem 'brakeman', '~> 4.2', require: false 341 gem 'danger', '~> 8.0.6', require: false 342 343 gem 'letter_opener_web', '~> 1.3.4' 344 ··· 346 gem 'better_errors', '~> 2.7.1' 347 348 # thin instead webrick 349 - gem 'thin', '~> 1.7.0' 350 end 351 352 group :development, :test do 353 gem 'deprecation_toolkit', '~> 1.5.1', require: false 354 - gem 'bullet', '~> 6.1.0' 355 gem 'gitlab-pry-byebug', platform: :mri, require: ['pry-byebug', 'pry-byebug/pry_remote_ext'] 356 gem 'pry-rails', '~> 0.3.9' 357 gem 'pry-remote' ··· 360 361 gem 'database_cleaner', '~> 1.7.0' 362 gem 'factory_bot_rails', '~> 6.1.0' 363 - gem 'rspec-rails', '~> 4.0.1' 364 365 # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) 366 gem 'minitest', '~> 5.11.0' ··· 375 376 gem 'scss_lint', '~> 0.59.0', require: false 377 gem 'haml_lint', '~> 0.36.0', require: false 378 - gem 'bundler-audit', '~> 0.6.1', require: false 379 380 gem 'benchmark-ips', '~> 2.3.0', require: false 381 ··· 465 end 466 467 # Gitaly GRPC protocol definitions 468 - gem 'gitaly', '~> 13.8.0.pre.rc2' 469 470 gem 'grpc', '~> 1.30.2' 471 ··· 478 gem 'flipper-active_record', '~> 0.17.1' 479 gem 'flipper-active_support_cache_store', '~> 0.17.1' 480 gem 'unleash', '~> 0.1.5' 481 - gem 'gitlab-experiment', '~> 0.4.5' 482 483 # Structured logging 484 gem 'lograge', '~> 0.5' ··· 520 521 # IPAddress utilities 522 gem 'ipaddress', '~> 0.8.3'
··· 1 + # frozen_string_literal: true 2 + 3 source 'https://rubygems.org' 4 5 gem 'rails', '~> 6.0.3.1' ··· 12 gem 'sprockets', '~> 3.7.0' 13 14 # Default values for AR models 15 + gem 'default_value_for', '~> 3.4.0' 16 17 # Supported DBs 18 gem 'pg', '~> 1.1' 19 20 + gem 'rugged', '~> 1.0.1' 21 gem 'grape-path-helpers', '~> 1.6.1' 22 23 gem 'faraday', '~> 1.0' ··· 27 gem 'devise', '~> 4.7.2' 28 # TODO: verify ARM compile issue on 3.1.13+ version (see https://gitlab.com/gitlab-org/gitlab/-/merge_requests/18828) 29 gem 'bcrypt', '3.1.12' 30 + gem 'doorkeeper', '~> 5.5.0.rc2' 31 + gem 'doorkeeper-openid_connect', '~> 1.7.5' 32 gem 'omniauth', '~> 1.8' 33 gem 'omniauth-auth0', '~> 2.0.0' 34 gem 'omniauth-azure-oauth2', '~> 0.0.9' ··· 83 gem 'net-ldap', '~> 0.16.3' 84 85 # API 86 + gem 'grape', '~> 1.5.2' 87 gem 'grape-entity', '~> 0.7.1' 88 gem 'rack-cors', '~> 1.0.6', require: 'rack/cors' 89 ··· 105 gem 'kaminari', '~> 1.0' 106 107 # HAML 108 + gem 'hamlit', '~> 2.14.4' 109 110 # Files attachments 111 gem 'carrierwave', '~> 1.3' ··· 156 gem 'asciidoctor', '~> 2.0.10' 157 gem 'asciidoctor-include-ext', '~> 0.3.1', require: false 158 gem 'asciidoctor-plantuml', '~> 0.0.12' 159 + gem 'asciidoctor-kroki', '~> 0.4.0', require: false 160 gem 'rouge', '~> 3.26.0' 161 gem 'truncato', '~> 0.7.11' 162 gem 'bootstrap_form', '~> 4.2.0' ··· 268 gem 'loofah', '~> 2.2' 269 270 # Working with license 271 + gem 'licensee', '~> 9.14.1' 272 273 # Detect and convert string character encoding 274 gem 'charlock_holmes', '~> 0.7.7' ··· 286 gem 'rack-proxy', '~> 0.6.0' 287 288 gem 'sassc-rails', '~> 2.1.0' 289 + gem 'autoprefixer-rails', '10.2.0.0' 290 gem 'terser', '1.0.2' 291 292 gem 'addressable', '~> 2.7' ··· 295 gem 'request_store', '~> 1.5' 296 gem 'base32', '~> 0.3.0' 297 298 + gem "gitlab-license", "~> 1.3" 299 300 # Protect against bruteforcing 301 gem 'rack-attack', '~> 6.3.0' ··· 342 group :development do 343 gem 'brakeman', '~> 4.2', require: false 344 gem 'danger', '~> 8.0.6', require: false 345 + gem 'lefthook', '~> 0.7', require: false 346 347 gem 'letter_opener_web', '~> 1.3.4' 348 ··· 350 gem 'better_errors', '~> 2.7.1' 351 352 # thin instead webrick 353 + gem 'thin', '~> 1.8.0' 354 end 355 356 group :development, :test do 357 gem 'deprecation_toolkit', '~> 1.5.1', require: false 358 + gem 'bullet', '~> 6.1.3' 359 gem 'gitlab-pry-byebug', platform: :mri, require: ['pry-byebug', 'pry-byebug/pry_remote_ext'] 360 gem 'pry-rails', '~> 0.3.9' 361 gem 'pry-remote' ··· 364 365 gem 'database_cleaner', '~> 1.7.0' 366 gem 'factory_bot_rails', '~> 6.1.0' 367 + gem 'rspec-rails', '~> 4.0.2' 368 369 # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) 370 gem 'minitest', '~> 5.11.0' ··· 379 380 gem 'scss_lint', '~> 0.59.0', require: false 381 gem 'haml_lint', '~> 0.36.0', require: false 382 + gem 'bundler-audit', '~> 0.7.0.1', require: false 383 384 gem 'benchmark-ips', '~> 2.3.0', require: false 385 ··· 469 end 470 471 # Gitaly GRPC protocol definitions 472 + gem 'gitaly', '~> 13.9.0.pre.rc1' 473 474 gem 'grpc', '~> 1.30.2' 475 ··· 482 gem 'flipper-active_record', '~> 0.17.1' 483 gem 'flipper-active_support_cache_store', '~> 0.17.1' 484 gem 'unleash', '~> 0.1.5' 485 + gem 'gitlab-experiment', '~> 0.4.9' 486 487 # Structured logging 488 gem 'lograge', '~> 0.5' ··· 524 525 # IPAddress utilities 526 gem 'ipaddress', '~> 0.8.3' 527 + 528 + gem 'parslet', '~> 1.8'
+58 -45
pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock
··· 81 faraday_middleware (~> 1.0) 82 faraday_middleware-multi_json (~> 0.0) 83 oauth2 (~> 1.4) 84 - asciidoctor (2.0.10) 85 asciidoctor-include-ext (0.3.1) 86 asciidoctor (>= 1.5.6, < 3.0.0) 87 - asciidoctor-kroki (0.2.2) 88 asciidoctor (~> 2.0) 89 asciidoctor-plantuml (0.0.12) 90 asciidoctor (>= 1.5.6, < 3.0.0) ··· 94 attr_encrypted (3.1.0) 95 encryptor (~> 3.0.0) 96 attr_required (1.0.1) 97 awesome_print (1.8.0) 98 awrence (1.1.1) 99 aws-eventstream (1.1.0) ··· 145 brakeman (4.2.1) 146 browser (4.2.0) 147 builder (3.2.4) 148 - bullet (6.1.0) 149 activesupport (>= 3.0.0) 150 uniform_notifier (~> 1.11) 151 - bundler-audit (0.6.1) 152 bundler (>= 1.2.0, < 3) 153 - thor (~> 0.18) 154 byebug (11.1.3) 155 capybara (3.34.0) 156 addressable ··· 205 git 206 css_parser (1.7.0) 207 addressable 208 - daemons (1.2.6) 209 danger (8.0.6) 210 claide (~> 1.0) 211 claide-plugins (>= 0.9.2) ··· 225 html-pipeline 226 declarative (0.0.20) 227 declarative-option (0.1.0) 228 - default_value_for (3.3.0) 229 - activerecord (>= 3.2.0, < 6.1) 230 deprecation_toolkit (1.5.1) 231 activesupport (>= 4.2) 232 derailed_benchmarks (1.8.1) ··· 260 docile (1.3.2) 261 domain_name (0.5.20190701) 262 unf (>= 0.0.5, < 1.0.0) 263 - doorkeeper (5.3.3) 264 railties (>= 5) 265 - doorkeeper-openid_connect (1.7.4) 266 doorkeeper (>= 5.2, < 5.5) 267 json-jwt (>= 1.11.0) 268 dry-configurable (0.12.0) 269 concurrent-ruby (~> 1.0) 270 dry-core (~> 0.5, >= 0.5.0) ··· 417 rails (>= 3.2.0) 418 git (1.7.0) 419 rchardet (~> 1.8) 420 - gitaly (13.8.0.pre.rc2) 421 grpc (~> 1.0) 422 github-markup (1.7.0) 423 gitlab-chronic (0.10.5) 424 numerizer (~> 0.2) 425 - gitlab-experiment (0.4.5) 426 activesupport (>= 3.0) 427 scientist (~> 1.5, >= 1.5.0) 428 gitlab-fog-azure-rm (1.0.0) ··· 440 jaeger-client (~> 1.1) 441 opentracing (~> 0.4) 442 redis (> 3.0.0, < 5.0.0) 443 - gitlab-license (1.0.0) 444 gitlab-mail_room (0.0.8) 445 gitlab-markup (1.7.1) 446 gitlab-net-dns (0.9.1) ··· 492 signet (~> 0.14) 493 gpgme (2.0.20) 494 mini_portile2 (~> 2.3) 495 - grape (1.5.1) 496 activesupport 497 builder 498 dry-types (>= 1.1) ··· 557 rainbow 558 rubocop (>= 0.50.0) 559 sysexits (~> 1.1) 560 - hamlit (2.11.0) 561 temple (>= 0.8.2) 562 thor 563 tilt ··· 658 rest-client (~> 2.0) 659 launchy (2.4.3) 660 addressable (~> 2.3) 661 letter_opener (1.7.0) 662 launchy (~> 2.2) 663 letter_opener_web (1.3.4) ··· 671 toml (= 0.2.0) 672 with_env (= 1.1.0) 673 xml-simple 674 - licensee (8.9.2) 675 - rugged (~> 0.24) 676 listen (3.2.1) 677 rb-fsevent (~> 0.10, >= 0.10.3) 678 rb-inotify (~> 0.9, >= 0.9.10) ··· 753 multi_json (~> 1.3) 754 multi_xml (~> 0.5) 755 rack (>= 1.2, < 3) 756 - octokit (4.15.0) 757 faraday (>= 0.9) 758 sawyer (~> 0.8.0, >= 0.5.3) 759 oj (3.10.6) ··· 987 mime-types (>= 1.16, < 4.0) 988 netrc (~> 0.8) 989 retriable (3.1.2) 990 rexml (3.2.4) 991 rinku (2.0.0) 992 rotp (2.1.2) ··· 999 rspec-core (~> 3.10.0) 1000 rspec-expectations (~> 3.10.0) 1001 rspec-mocks (~> 3.10.0) 1002 - rspec-core (3.10.0) 1003 rspec-support (~> 3.10.0) 1004 - rspec-expectations (3.10.0) 1005 diff-lcs (>= 1.2.0, < 2.0) 1006 rspec-support (~> 3.10.0) 1007 - rspec-mocks (3.10.0) 1008 diff-lcs (>= 1.2.0, < 2.0) 1009 rspec-support (~> 3.10.0) 1010 rspec-parameterized (0.4.2) ··· 1013 proc_to_ast 1014 rspec (>= 2.13, < 4) 1015 unparser 1016 - rspec-rails (4.0.1) 1017 actionpack (>= 4.2) 1018 activesupport (>= 4.2) 1019 railties (>= 4.2) 1020 - rspec-core (~> 3.9) 1021 - rspec-expectations (~> 3.9) 1022 - rspec-mocks (~> 3.9) 1023 - rspec-support (~> 3.9) 1024 rspec-retry (0.6.1) 1025 rspec-core (> 3.3) 1026 - rspec-support (3.10.0) 1027 rspec_junit_formatter (0.4.1) 1028 rspec-core (>= 2, < 4, != 2.12.0) 1029 rspec_profiling (0.0.6) ··· 1069 rubyntlm (0.6.2) 1070 rubypants (0.2.0) 1071 rubyzip (2.0.0) 1072 - rugged (0.28.4.1) 1073 safe_yaml (1.0.4) 1074 safety_net_attestation (0.4.0) 1075 jwt (~> 2.0) ··· 1170 execjs (>= 0.3.0, < 3) 1171 test-prof (0.12.0) 1172 text (1.3.1) 1173 - thin (1.7.2) 1174 daemons (~> 1.0, >= 1.0.9) 1175 eventmachine (~> 1.0, >= 1.0.4) 1176 rack (>= 1, < 3) 1177 - thor (0.20.3) 1178 thread_safe (0.3.6) 1179 thrift (0.14.0) 1180 tilt (2.0.10) ··· 1281 asana (~> 0.10.3) 1282 asciidoctor (~> 2.0.10) 1283 asciidoctor-include-ext (~> 0.3.1) 1284 - asciidoctor-kroki (~> 0.2.2) 1285 asciidoctor-plantuml (~> 0.0.12) 1286 atlassian-jwt (~> 0.2.0) 1287 attr_encrypted (~> 3.1.0) 1288 awesome_print 1289 aws-sdk-cloudformation (~> 1) 1290 aws-sdk-core (~> 3) ··· 1301 bootstrap_form (~> 4.2.0) 1302 brakeman (~> 4.2) 1303 browser (~> 4.2) 1304 - bullet (~> 6.1.0) 1305 - bundler-audit (~> 0.6.1) 1306 capybara (~> 3.34.0) 1307 capybara-screenshot (~> 1.0.22) 1308 carrierwave (~> 1.3) ··· 1316 danger (~> 8.0.6) 1317 database_cleaner (~> 1.7.0) 1318 deckar01-task_list (= 2.3.1) 1319 - default_value_for (~> 3.3.0) 1320 deprecation_toolkit (~> 1.5.1) 1321 derailed_benchmarks 1322 device_detector ··· 1325 diff_match_patch (~> 0.1.0) 1326 diffy (~> 3.3) 1327 discordrb-webhooks-blackst0ne (~> 3.3) 1328 - doorkeeper (~> 5.3.0) 1329 - doorkeeper-openid_connect (~> 1.7.4) 1330 ed25519 (~> 1.2) 1331 elasticsearch-api (~> 6.8.2) 1332 elasticsearch-model (~> 6.1) ··· 1357 gettext (~> 3.3) 1358 gettext_i18n_rails (~> 1.8.0) 1359 gettext_i18n_rails_js (~> 1.3) 1360 - gitaly (~> 13.8.0.pre.rc2) 1361 github-markup (~> 1.7.0) 1362 gitlab-chronic (~> 0.10.5) 1363 - gitlab-experiment (~> 0.4.5) 1364 gitlab-fog-azure-rm (~> 1.0) 1365 gitlab-labkit (= 0.14.0) 1366 - gitlab-license (~> 1.0) 1367 gitlab-mail_room (~> 0.0.8) 1368 gitlab-markup (~> 1.7.1) 1369 gitlab-net-dns (~> 0.9.1) ··· 1376 google-api-client (~> 0.33) 1377 google-protobuf (~> 3.12) 1378 gpgme (~> 2.0.19) 1379 - grape (~> 1.5.1) 1380 grape-entity (~> 0.7.1) 1381 grape-path-helpers (~> 1.6.1) 1382 grape_logging (~> 1.7) ··· 1388 gssapi 1389 guard-rspec 1390 haml_lint (~> 0.36.0) 1391 - hamlit (~> 2.11.0) 1392 hangouts-chat (~> 0.0.5) 1393 hashie 1394 hashie-forbidden_attributes ··· 1410 knapsack (~> 1.17) 1411 kramdown (~> 2.3.0) 1412 kubeclient (~> 4.9.1) 1413 letter_opener_web (~> 1.3.4) 1414 license_finder (~> 6.0) 1415 - licensee (~> 8.9) 1416 lockbox (~> 0.3.3) 1417 lograge (~> 0.5) 1418 loofah (~> 2.2) ··· 1452 omniauth_openid_connect (~> 0.3.5) 1453 org-ruby (~> 0.9.12) 1454 parallel (~> 1.19) 1455 peek (~> 1.1) 1456 pg (~> 1.1) 1457 pg_query (~> 1.3.0) ··· 1487 rouge (~> 3.26.0) 1488 rqrcode-rails3 (~> 0.1.7) 1489 rspec-parameterized 1490 - rspec-rails (~> 4.0.1) 1491 rspec-retry (~> 0.6.1) 1492 rspec_junit_formatter 1493 rspec_profiling (~> 0.0.6) ··· 1496 ruby-progressbar (~> 1.10) 1497 ruby_parser (~> 3.15) 1498 rubyzip (~> 2.0.0) 1499 - rugged (~> 0.28) 1500 sanitize (~> 5.2.1) 1501 sassc-rails (~> 2.1.0) 1502 scss_lint (~> 0.59.0) ··· 1521 sys-filesystem (~> 1.1.6) 1522 terser (= 1.0.2) 1523 test-prof (~> 0.12.0) 1524 - thin (~> 1.7.0) 1525 thrift (>= 0.14.0) 1526 timecop (~> 0.9.1) 1527 toml-rb (~> 1.0.0)
··· 81 faraday_middleware (~> 1.0) 82 faraday_middleware-multi_json (~> 0.0) 83 oauth2 (~> 1.4) 84 + asciidoctor (2.0.12) 85 asciidoctor-include-ext (0.3.1) 86 asciidoctor (>= 1.5.6, < 3.0.0) 87 + asciidoctor-kroki (0.4.0) 88 asciidoctor (~> 2.0) 89 asciidoctor-plantuml (0.0.12) 90 asciidoctor (>= 1.5.6, < 3.0.0) ··· 94 attr_encrypted (3.1.0) 95 encryptor (~> 3.0.0) 96 attr_required (1.0.1) 97 + autoprefixer-rails (10.2.0.0) 98 + execjs 99 awesome_print (1.8.0) 100 awrence (1.1.1) 101 aws-eventstream (1.1.0) ··· 147 brakeman (4.2.1) 148 browser (4.2.0) 149 builder (3.2.4) 150 + bullet (6.1.3) 151 activesupport (>= 3.0.0) 152 uniform_notifier (~> 1.11) 153 + bundler-audit (0.7.0.1) 154 bundler (>= 1.2.0, < 3) 155 + thor (>= 0.18, < 2) 156 byebug (11.1.3) 157 capybara (3.34.0) 158 addressable ··· 207 git 208 css_parser (1.7.0) 209 addressable 210 + daemons (1.3.1) 211 danger (8.0.6) 212 claide (~> 1.0) 213 claide-plugins (>= 0.9.2) ··· 227 html-pipeline 228 declarative (0.0.20) 229 declarative-option (0.1.0) 230 + default_value_for (3.4.0) 231 + activerecord (>= 3.2.0, < 7.0) 232 deprecation_toolkit (1.5.1) 233 activesupport (>= 4.2) 234 derailed_benchmarks (1.8.1) ··· 262 docile (1.3.2) 263 domain_name (0.5.20190701) 264 unf (>= 0.0.5, < 1.0.0) 265 + doorkeeper (5.5.0.rc2) 266 railties (>= 5) 267 + doorkeeper-openid_connect (1.7.5) 268 doorkeeper (>= 5.2, < 5.5) 269 json-jwt (>= 1.11.0) 270 + dotenv (2.7.6) 271 dry-configurable (0.12.0) 272 concurrent-ruby (~> 1.0) 273 dry-core (~> 0.5, >= 0.5.0) ··· 420 rails (>= 3.2.0) 421 git (1.7.0) 422 rchardet (~> 1.8) 423 + gitaly (13.9.0.pre.rc1) 424 grpc (~> 1.0) 425 github-markup (1.7.0) 426 gitlab-chronic (0.10.5) 427 numerizer (~> 0.2) 428 + gitlab-experiment (0.4.9) 429 activesupport (>= 3.0) 430 scientist (~> 1.5, >= 1.5.0) 431 gitlab-fog-azure-rm (1.0.0) ··· 443 jaeger-client (~> 1.1) 444 opentracing (~> 0.4) 445 redis (> 3.0.0, < 5.0.0) 446 + gitlab-license (1.3.0) 447 gitlab-mail_room (0.0.8) 448 gitlab-markup (1.7.1) 449 gitlab-net-dns (0.9.1) ··· 495 signet (~> 0.14) 496 gpgme (2.0.20) 497 mini_portile2 (~> 2.3) 498 + grape (1.5.2) 499 activesupport 500 builder 501 dry-types (>= 1.1) ··· 560 rainbow 561 rubocop (>= 0.50.0) 562 sysexits (~> 1.1) 563 + hamlit (2.14.4) 564 temple (>= 0.8.2) 565 thor 566 tilt ··· 661 rest-client (~> 2.0) 662 launchy (2.4.3) 663 addressable (~> 2.3) 664 + lefthook (0.7.2) 665 letter_opener (1.7.0) 666 launchy (~> 2.2) 667 letter_opener_web (1.3.4) ··· 675 toml (= 0.2.0) 676 with_env (= 1.1.0) 677 xml-simple 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) 684 listen (3.2.1) 685 rb-fsevent (~> 0.10, >= 0.10.3) 686 rb-inotify (~> 0.9, >= 0.9.10) ··· 761 multi_json (~> 1.3) 762 multi_xml (~> 0.5) 763 rack (>= 1.2, < 3) 764 + octokit (4.20.0) 765 faraday (>= 0.9) 766 sawyer (~> 0.8.0, >= 0.5.3) 767 oj (3.10.6) ··· 995 mime-types (>= 1.16, < 4.0) 996 netrc (~> 0.8) 997 retriable (3.1.2) 998 + reverse_markdown (1.4.0) 999 + nokogiri 1000 rexml (3.2.4) 1001 rinku (2.0.0) 1002 rotp (2.1.2) ··· 1009 rspec-core (~> 3.10.0) 1010 rspec-expectations (~> 3.10.0) 1011 rspec-mocks (~> 3.10.0) 1012 + rspec-core (3.10.1) 1013 rspec-support (~> 3.10.0) 1014 + rspec-expectations (3.10.1) 1015 diff-lcs (>= 1.2.0, < 2.0) 1016 rspec-support (~> 3.10.0) 1017 + rspec-mocks (3.10.2) 1018 diff-lcs (>= 1.2.0, < 2.0) 1019 rspec-support (~> 3.10.0) 1020 rspec-parameterized (0.4.2) ··· 1023 proc_to_ast 1024 rspec (>= 2.13, < 4) 1025 unparser 1026 + rspec-rails (4.0.2) 1027 actionpack (>= 4.2) 1028 activesupport (>= 4.2) 1029 railties (>= 4.2) 1030 + rspec-core (~> 3.10) 1031 + rspec-expectations (~> 3.10) 1032 + rspec-mocks (~> 3.10) 1033 + rspec-support (~> 3.10) 1034 rspec-retry (0.6.1) 1035 rspec-core (> 3.3) 1036 + rspec-support (3.10.2) 1037 rspec_junit_formatter (0.4.1) 1038 rspec-core (>= 2, < 4, != 2.12.0) 1039 rspec_profiling (0.0.6) ··· 1079 rubyntlm (0.6.2) 1080 rubypants (0.2.0) 1081 rubyzip (2.0.0) 1082 + rugged (1.0.1) 1083 safe_yaml (1.0.4) 1084 safety_net_attestation (0.4.0) 1085 jwt (~> 2.0) ··· 1180 execjs (>= 0.3.0, < 3) 1181 test-prof (0.12.0) 1182 text (1.3.1) 1183 + thin (1.8.0) 1184 daemons (~> 1.0, >= 1.0.9) 1185 eventmachine (~> 1.0, >= 1.0.4) 1186 rack (>= 1, < 3) 1187 + thor (1.1.0) 1188 thread_safe (0.3.6) 1189 thrift (0.14.0) 1190 tilt (2.0.10) ··· 1291 asana (~> 0.10.3) 1292 asciidoctor (~> 2.0.10) 1293 asciidoctor-include-ext (~> 0.3.1) 1294 + asciidoctor-kroki (~> 0.4.0) 1295 asciidoctor-plantuml (~> 0.0.12) 1296 atlassian-jwt (~> 0.2.0) 1297 attr_encrypted (~> 3.1.0) 1298 + autoprefixer-rails (= 10.2.0.0) 1299 awesome_print 1300 aws-sdk-cloudformation (~> 1) 1301 aws-sdk-core (~> 3) ··· 1312 bootstrap_form (~> 4.2.0) 1313 brakeman (~> 4.2) 1314 browser (~> 4.2) 1315 + bullet (~> 6.1.3) 1316 + bundler-audit (~> 0.7.0.1) 1317 capybara (~> 3.34.0) 1318 capybara-screenshot (~> 1.0.22) 1319 carrierwave (~> 1.3) ··· 1327 danger (~> 8.0.6) 1328 database_cleaner (~> 1.7.0) 1329 deckar01-task_list (= 2.3.1) 1330 + default_value_for (~> 3.4.0) 1331 deprecation_toolkit (~> 1.5.1) 1332 derailed_benchmarks 1333 device_detector ··· 1336 diff_match_patch (~> 0.1.0) 1337 diffy (~> 3.3) 1338 discordrb-webhooks-blackst0ne (~> 3.3) 1339 + doorkeeper (~> 5.5.0.rc2) 1340 + doorkeeper-openid_connect (~> 1.7.5) 1341 ed25519 (~> 1.2) 1342 elasticsearch-api (~> 6.8.2) 1343 elasticsearch-model (~> 6.1) ··· 1368 gettext (~> 3.3) 1369 gettext_i18n_rails (~> 1.8.0) 1370 gettext_i18n_rails_js (~> 1.3) 1371 + gitaly (~> 13.9.0.pre.rc1) 1372 github-markup (~> 1.7.0) 1373 gitlab-chronic (~> 0.10.5) 1374 + gitlab-experiment (~> 0.4.9) 1375 gitlab-fog-azure-rm (~> 1.0) 1376 gitlab-labkit (= 0.14.0) 1377 + gitlab-license (~> 1.3) 1378 gitlab-mail_room (~> 0.0.8) 1379 gitlab-markup (~> 1.7.1) 1380 gitlab-net-dns (~> 0.9.1) ··· 1387 google-api-client (~> 0.33) 1388 google-protobuf (~> 3.12) 1389 gpgme (~> 2.0.19) 1390 + grape (~> 1.5.2) 1391 grape-entity (~> 0.7.1) 1392 grape-path-helpers (~> 1.6.1) 1393 grape_logging (~> 1.7) ··· 1399 gssapi 1400 guard-rspec 1401 haml_lint (~> 0.36.0) 1402 + hamlit (~> 2.14.4) 1403 hangouts-chat (~> 0.0.5) 1404 hashie 1405 hashie-forbidden_attributes ··· 1421 knapsack (~> 1.17) 1422 kramdown (~> 2.3.0) 1423 kubeclient (~> 4.9.1) 1424 + lefthook (~> 0.7) 1425 letter_opener_web (~> 1.3.4) 1426 license_finder (~> 6.0) 1427 + licensee (~> 9.14.1) 1428 lockbox (~> 0.3.3) 1429 lograge (~> 0.5) 1430 loofah (~> 2.2) ··· 1464 omniauth_openid_connect (~> 0.3.5) 1465 org-ruby (~> 0.9.12) 1466 parallel (~> 1.19) 1467 + parslet (~> 1.8) 1468 peek (~> 1.1) 1469 pg (~> 1.1) 1470 pg_query (~> 1.3.0) ··· 1500 rouge (~> 3.26.0) 1501 rqrcode-rails3 (~> 0.1.7) 1502 rspec-parameterized 1503 + rspec-rails (~> 4.0.2) 1504 rspec-retry (~> 0.6.1) 1505 rspec_junit_formatter 1506 rspec_profiling (~> 0.0.6) ··· 1509 ruby-progressbar (~> 1.10) 1510 ruby_parser (~> 3.15) 1511 rubyzip (~> 2.0.0) 1512 + rugged (~> 1.0.1) 1513 sanitize (~> 5.2.1) 1514 sassc-rails (~> 2.1.0) 1515 scss_lint (~> 0.59.0) ··· 1534 sys-filesystem (~> 1.1.6) 1535 terser (= 1.0.2) 1536 test-prof (~> 0.12.0) 1537 + thin (~> 1.8.0) 1538 thrift (>= 0.14.0) 1539 timecop (~> 0.9.1) 1540 toml-rb (~> 1.0.0)
+90 -48
pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix
··· 242 platforms = []; 243 source = { 244 remotes = ["https://rubygems.org"]; 245 - sha256 = "1b2ajs3sabl0s27r7lhwkacw0yn0zfk4jpmidg9l8lzp2qlgjgbz"; 246 type = "gem"; 247 }; 248 - version = "2.0.10"; 249 }; 250 asciidoctor-include-ext = { 251 dependencies = ["asciidoctor"]; ··· 264 platforms = []; 265 source = { 266 remotes = ["https://rubygems.org"]; 267 - sha256 = "10yc07x2z9f122wnncf34s91vlfcd4wy8y9wshxc7j2m4a2jlzm5"; 268 type = "gem"; 269 }; 270 - version = "0.2.2"; 271 }; 272 asciidoctor-plantuml = { 273 dependencies = ["asciidoctor"]; ··· 322 }; 323 version = "1.0.1"; 324 }; 325 awesome_print = { 326 groups = ["development" "test"]; 327 platforms = []; ··· 599 platforms = []; 600 source = { 601 remotes = ["https://rubygems.org"]; 602 - sha256 = "18ifwnvn13755qkfigapyj5bflpby3phxzbb7x5336d0kzv5k7d9"; 603 type = "gem"; 604 }; 605 - version = "6.1.0"; 606 }; 607 bundler-audit = { 608 dependencies = ["thor"]; ··· 610 platforms = []; 611 source = { 612 remotes = ["https://rubygems.org"]; 613 - sha256 = "0pm22xpn3xyymsainixnrk8v3l3xi9bzwkjkspx00cfzp84xvxbq"; 614 type = "gem"; 615 }; 616 - version = "0.6.1"; 617 }; 618 byebug = { 619 groups = ["default" "development" "test"]; ··· 910 platforms = []; 911 source = { 912 remotes = ["https://rubygems.org"]; 913 - sha256 = "0lxqq6dgb8xhliywar2lvkwqy2ssraf9dk4b501pb4ixc2mvxbp2"; 914 type = "gem"; 915 }; 916 - version = "1.2.6"; 917 }; 918 danger = { 919 dependencies = ["claide" "claide-plugins" "colored2" "cork" "faraday" "faraday-http-cache" "git" "kramdown" "kramdown-parser-gfm" "no_proxy_fix" "octokit" "terminal-table"]; ··· 987 platforms = []; 988 source = { 989 remotes = ["https://rubygems.org"]; 990 - sha256 = "08hwnnqm3bxd4n627isliq79zysdlmfkf813403v0b4mkhika5my"; 991 type = "gem"; 992 }; 993 - version = "3.3.0"; 994 }; 995 deprecation_toolkit = { 996 dependencies = ["activesupport"]; ··· 1114 platforms = []; 1115 source = { 1116 remotes = ["https://rubygems.org"]; 1117 - sha256 = "01scvhvrw44ksv1aaywpp9kfm4c8qs4gwnnha40r5mq0vpc0qrny"; 1118 type = "gem"; 1119 }; 1120 - version = "5.3.3"; 1121 }; 1122 doorkeeper-openid_connect = { 1123 dependencies = ["doorkeeper" "json-jwt"]; ··· 1125 platforms = []; 1126 source = { 1127 remotes = ["https://rubygems.org"]; 1128 - sha256 = "1yylcg4j7msxma0s8rx8990bfgr0c414a7vafs3gpgmbwy47wq45"; 1129 type = "gem"; 1130 }; 1131 - version = "1.7.4"; 1132 }; 1133 dry-configurable = { 1134 dependencies = ["concurrent-ruby" "dry-core"]; ··· 1798 platforms = []; 1799 source = { 1800 remotes = ["https://rubygems.org"]; 1801 - sha256 = "0kns9lw8gdxm61vyvf3jin448zrl2h3qdx2ggilzxig28hdi0vha"; 1802 type = "gem"; 1803 }; 1804 - version = "13.8.0.pre.rc2"; 1805 }; 1806 github-markup = { 1807 groups = ["default"]; ··· 1830 platforms = []; 1831 source = { 1832 remotes = ["https://rubygems.org"]; 1833 - sha256 = "1v8ygrc2c98rz72za59g313n1mmr18jdbzr965lkp2zv2rw7cs9n"; 1834 type = "gem"; 1835 }; 1836 - version = "0.4.5"; 1837 }; 1838 gitlab-fog-azure-rm = { 1839 dependencies = ["azure-storage-blob" "azure-storage-common" "fog-core" "fog-json" "mime-types" "ms_rest_azure"]; ··· 1862 platforms = []; 1863 source = { 1864 remotes = ["https://rubygems.org"]; 1865 - sha256 = "1q26cgp3ln3b36n3sc69r6hxafkxjwdr3m0d7jlch5j7vyib9bih"; 1866 type = "gem"; 1867 }; 1868 - version = "1.0.0"; 1869 }; 1870 gitlab-mail_room = { 1871 groups = ["default"]; ··· 2059 platforms = []; 2060 source = { 2061 remotes = ["https://rubygems.org"]; 2062 - sha256 = "0lizcma35sygkd3q7zjv13mrr905ncn80f1ym6n305s75kc0pk9n"; 2063 type = "gem"; 2064 }; 2065 - version = "1.5.1"; 2066 }; 2067 grape-entity = { 2068 dependencies = ["activesupport" "multi_json"]; ··· 2233 platforms = []; 2234 source = { 2235 remotes = ["https://rubygems.org"]; 2236 - sha256 = "13wkrvyldk21xlc9illam495fpgf7w7bksaj8y6n00y036wmbg60"; 2237 type = "gem"; 2238 }; 2239 - version = "2.11.0"; 2240 }; 2241 hana = { 2242 groups = ["default"]; ··· 2705 }; 2706 version = "2.4.3"; 2707 }; 2708 letter_opener = { 2709 dependencies = ["launchy"]; 2710 groups = ["default" "development"]; ··· 2739 version = "6.0.0"; 2740 }; 2741 licensee = { 2742 - dependencies = ["rugged"]; 2743 groups = ["default"]; 2744 platforms = []; 2745 source = { 2746 remotes = ["https://rubygems.org"]; 2747 - sha256 = "0w6d2smhg3kzcx4m2ii06akakypwhiglansk51bpx290hhc8h3pc"; 2748 type = "gem"; 2749 }; 2750 - version = "8.9.2"; 2751 }; 2752 listen = { 2753 dependencies = ["rb-fsevent" "rb-inotify"]; ··· 3236 platforms = []; 3237 source = { 3238 remotes = ["https://rubygems.org"]; 3239 - sha256 = "0yg6dhd028j74sm8hpw9w7bwfwlkml9wiis7nq20ivfsbcz4g8ac"; 3240 type = "gem"; 3241 }; 3242 - version = "4.15.0"; 3243 }; 3244 oj = { 3245 groups = ["default"]; ··· 4259 type = "gem"; 4260 }; 4261 version = "3.1.2"; 4262 }; 4263 rexml = { 4264 groups = ["default" "development" "test"]; ··· 4339 platforms = []; 4340 source = { 4341 remotes = ["https://rubygems.org"]; 4342 - sha256 = "0n2rdv8f26yw8c6asymc0mgddyr5d2b5n6mfvpd3n6lnpf1jdyv2"; 4343 type = "gem"; 4344 }; 4345 - version = "3.10.0"; 4346 }; 4347 rspec-expectations = { 4348 dependencies = ["diff-lcs" "rspec-support"]; ··· 4350 platforms = []; 4351 source = { 4352 remotes = ["https://rubygems.org"]; 4353 - sha256 = "0j37dvnvfbjwj8dqx27yfvz0frl7f2jc1abqg99h0ppriz9za6dc"; 4354 type = "gem"; 4355 }; 4356 - version = "3.10.0"; 4357 }; 4358 rspec-mocks = { 4359 dependencies = ["diff-lcs" "rspec-support"]; ··· 4361 platforms = []; 4362 source = { 4363 remotes = ["https://rubygems.org"]; 4364 - sha256 = "1pz89y1522i6f8wzrg72ykmch3318ih87nlpl0y1ghsrs5hqymw3"; 4365 type = "gem"; 4366 }; 4367 - version = "3.10.0"; 4368 }; 4369 rspec-parameterized = { 4370 dependencies = ["binding_ninja" "parser" "proc_to_ast" "rspec" "unparser"]; ··· 4383 platforms = []; 4384 source = { 4385 remotes = ["https://rubygems.org"]; 4386 - sha256 = "0lzik01ziaskgpdpy8knffpw0fsy9151f5lfigyhb89wq4q45hfs"; 4387 type = "gem"; 4388 }; 4389 - version = "4.0.1"; 4390 }; 4391 rspec-retry = { 4392 dependencies = ["rspec-core"]; ··· 4404 platforms = []; 4405 source = { 4406 remotes = ["https://rubygems.org"]; 4407 - sha256 = "0j0n28i6zci5j7gg370bdy87dy43hlwx6dw428d9kamf5a0i2klz"; 4408 type = "gem"; 4409 }; 4410 - version = "3.10.0"; 4411 }; 4412 rspec_junit_formatter = { 4413 dependencies = ["rspec-core"]; ··· 4616 platforms = []; 4617 source = { 4618 remotes = ["https://rubygems.org"]; 4619 - sha256 = "0rdidxgpk1b6y1jq9v77lcx5khq0s9q0s253lr8x57d3hk43iskx"; 4620 type = "gem"; 4621 }; 4622 - version = "0.28.4.1"; 4623 }; 4624 safe_yaml = { 4625 groups = ["default" "test"]; ··· 5124 platforms = []; 5125 source = { 5126 remotes = ["https://rubygems.org"]; 5127 - sha256 = "0nagbf9pwy1vg09k6j4xqhbjjzrg5dwzvkn4ffvlj76fsn6vv61f"; 5128 type = "gem"; 5129 }; 5130 - version = "1.7.2"; 5131 }; 5132 thor = { 5133 groups = ["default" "development" "omnibus" "test"]; 5134 platforms = []; 5135 source = { 5136 remotes = ["https://rubygems.org"]; 5137 - sha256 = "1yhrnp9x8qcy5vc7g438amd5j9sw83ih7c30dr6g6slgw9zj3g29"; 5138 type = "gem"; 5139 }; 5140 - version = "0.20.3"; 5141 }; 5142 thread_safe = { 5143 groups = ["default" "development" "test"]; ··· 5590 }; 5591 version = "2.4.2"; 5592 }; 5593 - }
··· 242 platforms = []; 243 source = { 244 remotes = ["https://rubygems.org"]; 245 + sha256 = "1gjk9v83vw0pz4x0xqqnw231z9sgscm6vnacjw7hy5njkw8fskj9"; 246 type = "gem"; 247 }; 248 + version = "2.0.12"; 249 }; 250 asciidoctor-include-ext = { 251 dependencies = ["asciidoctor"]; ··· 264 platforms = []; 265 source = { 266 remotes = ["https://rubygems.org"]; 267 + sha256 = "13gx22xld4rbxxirnsxyrsajy9v666r8a4ngms71611af5afgk6w"; 268 type = "gem"; 269 }; 270 + version = "0.4.0"; 271 }; 272 asciidoctor-plantuml = { 273 dependencies = ["asciidoctor"]; ··· 322 }; 323 version = "1.0.1"; 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 + }; 336 awesome_print = { 337 groups = ["development" "test"]; 338 platforms = []; ··· 610 platforms = []; 611 source = { 612 remotes = ["https://rubygems.org"]; 613 + sha256 = "04wm807czdixpgnqp446vj8vc7dj96k26p90rmwll9ahlib37mmm"; 614 type = "gem"; 615 }; 616 + version = "6.1.3"; 617 }; 618 bundler-audit = { 619 dependencies = ["thor"]; ··· 621 platforms = []; 622 source = { 623 remotes = ["https://rubygems.org"]; 624 + sha256 = "04l9rs56rlvihbr2ybkrigjajgd3swa98lxvmdl8iylj1g5m7n0j"; 625 type = "gem"; 626 }; 627 + version = "0.7.0.1"; 628 }; 629 byebug = { 630 groups = ["default" "development" "test"]; ··· 921 platforms = []; 922 source = { 923 remotes = ["https://rubygems.org"]; 924 + sha256 = "0l5gai3vd4g7aqff0k1mp41j9zcsvm2rbwmqn115a325k9r7pf4w"; 925 type = "gem"; 926 }; 927 + version = "1.3.1"; 928 }; 929 danger = { 930 dependencies = ["claide" "claide-plugins" "colored2" "cork" "faraday" "faraday-http-cache" "git" "kramdown" "kramdown-parser-gfm" "no_proxy_fix" "octokit" "terminal-table"]; ··· 998 platforms = []; 999 source = { 1000 remotes = ["https://rubygems.org"]; 1001 + sha256 = "03zln3mp8wa734jl7abd6gby08xq8j6n4y2phzxfsssscx8xrlim"; 1002 type = "gem"; 1003 }; 1004 + version = "3.4.0"; 1005 }; 1006 deprecation_toolkit = { 1007 dependencies = ["activesupport"]; ··· 1125 platforms = []; 1126 source = { 1127 remotes = ["https://rubygems.org"]; 1128 + sha256 = "1mdjnw5n2r3hclg4gmzx19w750sdcxw9y6dhcawbzb9wrbzj58wk"; 1129 type = "gem"; 1130 }; 1131 + version = "5.5.0.rc2"; 1132 }; 1133 doorkeeper-openid_connect = { 1134 dependencies = ["doorkeeper" "json-jwt"]; ··· 1136 platforms = []; 1137 source = { 1138 remotes = ["https://rubygems.org"]; 1139 + sha256 = "1cj7b45lxiifi6pw8gnylfzlhji572v0pj896rbyqjwyzlgj1sid"; 1140 type = "gem"; 1141 }; 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"; 1153 }; 1154 dry-configurable = { 1155 dependencies = ["concurrent-ruby" "dry-core"]; ··· 1819 platforms = []; 1820 source = { 1821 remotes = ["https://rubygems.org"]; 1822 + sha256 = "137gr4nbxhcyh4s60r2z0js8q2bfnmxiggwnf122wp9csywlnyg2"; 1823 type = "gem"; 1824 }; 1825 + version = "13.9.0.pre.rc1"; 1826 }; 1827 github-markup = { 1828 groups = ["default"]; ··· 1851 platforms = []; 1852 source = { 1853 remotes = ["https://rubygems.org"]; 1854 + sha256 = "0skqg90i6qdpm7dhy8bv99gk8siwgm6mpr675790ngri1ns4f5xk"; 1855 type = "gem"; 1856 }; 1857 + version = "0.4.9"; 1858 }; 1859 gitlab-fog-azure-rm = { 1860 dependencies = ["azure-storage-blob" "azure-storage-common" "fog-core" "fog-json" "mime-types" "ms_rest_azure"]; ··· 1883 platforms = []; 1884 source = { 1885 remotes = ["https://rubygems.org"]; 1886 + sha256 = "04846kr8pw0fkw4mavakai978raq5d2kjna4rawxpc3dqlr897g4"; 1887 type = "gem"; 1888 }; 1889 + version = "1.3.0"; 1890 }; 1891 gitlab-mail_room = { 1892 groups = ["default"]; ··· 2080 platforms = []; 2081 source = { 2082 remotes = ["https://rubygems.org"]; 2083 + sha256 = "0adf01kihxbmh8q84r6zyfgdmpbyb0lwcar3fi8j6bl6qcsbgwqx"; 2084 type = "gem"; 2085 }; 2086 + version = "1.5.2"; 2087 }; 2088 grape-entity = { 2089 dependencies = ["activesupport" "multi_json"]; ··· 2254 platforms = []; 2255 source = { 2256 remotes = ["https://rubygems.org"]; 2257 + sha256 = "1gjbdni9jdpsdahrx2q7cvrc6jkrzpf9rdi0rli8mdvwi9xjafz5"; 2258 type = "gem"; 2259 }; 2260 + version = "2.14.4"; 2261 }; 2262 hana = { 2263 groups = ["default"]; ··· 2726 }; 2727 version = "2.4.3"; 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 + }; 2739 letter_opener = { 2740 dependencies = ["launchy"]; 2741 groups = ["default" "development"]; ··· 2770 version = "6.0.0"; 2771 }; 2772 licensee = { 2773 + dependencies = ["dotenv" "octokit" "reverse_markdown" "rugged" "thor"]; 2774 groups = ["default"]; 2775 platforms = []; 2776 source = { 2777 remotes = ["https://rubygems.org"]; 2778 + sha256 = "0c551j4qy773d79hgypjaz43h5wjn08mnxnxy9s2vdjc40qm95k5"; 2779 type = "gem"; 2780 }; 2781 + version = "9.14.1"; 2782 }; 2783 listen = { 2784 dependencies = ["rb-fsevent" "rb-inotify"]; ··· 3267 platforms = []; 3268 source = { 3269 remotes = ["https://rubygems.org"]; 3270 + sha256 = "1fl517ld5vj0llyshp3f9kb7xyl9iqy28cbz3k999fkbwcxzhlyq"; 3271 type = "gem"; 3272 }; 3273 + version = "4.20.0"; 3274 }; 3275 oj = { 3276 groups = ["default"]; ··· 4290 type = "gem"; 4291 }; 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"; 4304 }; 4305 rexml = { 4306 groups = ["default" "development" "test"]; ··· 4381 platforms = []; 4382 source = { 4383 remotes = ["https://rubygems.org"]; 4384 + sha256 = "0wwnfhxxvrlxlk1a3yxlb82k2f9lm0yn0598x7lk8fksaz4vv6mc"; 4385 type = "gem"; 4386 }; 4387 + version = "3.10.1"; 4388 }; 4389 rspec-expectations = { 4390 dependencies = ["diff-lcs" "rspec-support"]; ··· 4392 platforms = []; 4393 source = { 4394 remotes = ["https://rubygems.org"]; 4395 + sha256 = "1sz9bj4ri28adsklnh257pnbq4r5ayziw02qf67wry0kvzazbb17"; 4396 type = "gem"; 4397 }; 4398 + version = "3.10.1"; 4399 }; 4400 rspec-mocks = { 4401 dependencies = ["diff-lcs" "rspec-support"]; ··· 4403 platforms = []; 4404 source = { 4405 remotes = ["https://rubygems.org"]; 4406 + sha256 = "1d13g6kipqqc9lmwz5b244pdwc97z15vcbnbq6n9rlf32bipdz4k"; 4407 type = "gem"; 4408 }; 4409 + version = "3.10.2"; 4410 }; 4411 rspec-parameterized = { 4412 dependencies = ["binding_ninja" "parser" "proc_to_ast" "rspec" "unparser"]; ··· 4425 platforms = []; 4426 source = { 4427 remotes = ["https://rubygems.org"]; 4428 + sha256 = "0aw5knjij21kzwis3vkcmqc16p55lbig1wq0i37093qga7zfsdg1"; 4429 type = "gem"; 4430 }; 4431 + version = "4.0.2"; 4432 }; 4433 rspec-retry = { 4434 dependencies = ["rspec-core"]; ··· 4446 platforms = []; 4447 source = { 4448 remotes = ["https://rubygems.org"]; 4449 + sha256 = "15j52parvb8cgvl6s0pbxi2ywxrv6x0764g222kz5flz0s4mycbl"; 4450 type = "gem"; 4451 }; 4452 + version = "3.10.2"; 4453 }; 4454 rspec_junit_formatter = { 4455 dependencies = ["rspec-core"]; ··· 4658 platforms = []; 4659 source = { 4660 remotes = ["https://rubygems.org"]; 4661 + sha256 = "056bwiwxvnbkbgsr2wqcsknnc73nqasqdnjcpgj2r61wkm8mzmbn"; 4662 type = "gem"; 4663 }; 4664 + version = "1.0.1"; 4665 }; 4666 safe_yaml = { 4667 groups = ["default" "test"]; ··· 5166 platforms = []; 5167 source = { 5168 remotes = ["https://rubygems.org"]; 5169 + sha256 = "0g5p3r47qxxfmfagdf8wb68pd24938cgzdfn6pmpysrn296pg5m5"; 5170 type = "gem"; 5171 }; 5172 + version = "1.8.0"; 5173 }; 5174 thor = { 5175 groups = ["default" "development" "omnibus" "test"]; 5176 platforms = []; 5177 source = { 5178 remotes = ["https://rubygems.org"]; 5179 + sha256 = "18yhlvmfya23cs3pvhr1qy38y41b6mhr5q9vwv5lrgk16wmf3jna"; 5180 type = "gem"; 5181 }; 5182 + version = "1.1.0"; 5183 }; 5184 thread_safe = { 5185 groups = ["default" "development" "test"]; ··· 5632 }; 5633 version = "2.4.2"; 5634 }; 5635 + }
+772 -836
pkgs/applications/version-management/gitlab/yarnPkgs.nix
··· 770 }; 771 } 772 { 773 - name = "_gitlab_at.js___at.js_1.5.5.tgz"; 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"; 778 }; 779 } 780 { 781 - name = "_gitlab_eslint_plugin___eslint_plugin_6.0.0.tgz"; 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"; 786 }; 787 } 788 { ··· 794 }; 795 } 796 { 797 - name = "_gitlab_svgs___svgs_1.178.0.tgz"; 798 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"; 802 }; 803 } 804 { ··· 810 }; 811 } 812 { 813 - name = "_gitlab_ui___ui_25.11.3.tgz"; 814 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"; 818 }; 819 } 820 { ··· 967 name = "_nodelib_fs.stat___fs.stat_1.1.3.tgz"; 968 url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz"; 969 sha1 = "2b5a3ab3f918cca48a8c754c08168e3f03eba61b"; 970 }; 971 } 972 { ··· 1186 }; 1187 } 1188 { 1189 - name = "_types_json_schema___json_schema_7.0.6.tgz"; 1190 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"; 1194 }; 1195 } 1196 { ··· 1330 }; 1331 } 1332 { 1333 - name = "_webassemblyjs_ast___ast_1.8.5.tgz"; 1334 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"; 1338 }; 1339 } 1340 { 1341 - name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.8.5.tgz"; 1342 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"; 1346 }; 1347 } 1348 { 1349 - name = "_webassemblyjs_helper_api_error___helper_api_error_1.8.5.tgz"; 1350 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"; 1354 }; 1355 } 1356 { 1357 - name = "_webassemblyjs_helper_buffer___helper_buffer_1.8.5.tgz"; 1358 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"; 1362 }; 1363 } 1364 { 1365 - name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.8.5.tgz"; 1366 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"; 1370 }; 1371 } 1372 { 1373 - name = "_webassemblyjs_helper_fsm___helper_fsm_1.8.5.tgz"; 1374 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"; 1378 }; 1379 } 1380 { 1381 - name = "_webassemblyjs_helper_module_context___helper_module_context_1.8.5.tgz"; 1382 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"; 1386 }; 1387 } 1388 { 1389 - name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.8.5.tgz"; 1390 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"; 1394 }; 1395 } 1396 { 1397 - name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.8.5.tgz"; 1398 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"; 1402 }; 1403 } 1404 { 1405 - name = "_webassemblyjs_ieee754___ieee754_1.8.5.tgz"; 1406 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"; 1410 }; 1411 } 1412 { 1413 - name = "_webassemblyjs_leb128___leb128_1.8.5.tgz"; 1414 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"; 1418 }; 1419 } 1420 { 1421 - name = "_webassemblyjs_utf8___utf8_1.8.5.tgz"; 1422 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"; 1426 }; 1427 } 1428 { 1429 - name = "_webassemblyjs_wasm_edit___wasm_edit_1.8.5.tgz"; 1430 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"; 1434 }; 1435 } 1436 { 1437 - name = "_webassemblyjs_wasm_gen___wasm_gen_1.8.5.tgz"; 1438 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"; 1442 }; 1443 } 1444 { 1445 - name = "_webassemblyjs_wasm_opt___wasm_opt_1.8.5.tgz"; 1446 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"; 1450 }; 1451 } 1452 { 1453 - name = "_webassemblyjs_wasm_parser___wasm_parser_1.8.5.tgz"; 1454 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"; 1458 }; 1459 } 1460 { 1461 - name = "_webassemblyjs_wast_parser___wast_parser_1.8.5.tgz"; 1462 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"; 1466 }; 1467 } 1468 { 1469 - name = "_webassemblyjs_wast_printer___wast_printer_1.8.5.tgz"; 1470 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"; 1474 }; 1475 } 1476 { ··· 1554 }; 1555 } 1556 { 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 name = "acorn_walk___acorn_walk_7.2.0.tgz"; 1566 path = fetchurl { 1567 name = "acorn_walk___acorn_walk_7.2.0.tgz"; ··· 1570 }; 1571 } 1572 { 1573 - name = "acorn___acorn_6.3.0.tgz"; 1574 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"; 1578 }; 1579 } 1580 { ··· 1634 }; 1635 } 1636 { 1637 name = "amdefine___amdefine_1.0.1.tgz"; 1638 path = fetchurl { 1639 name = "amdefine___amdefine_1.0.1.tgz"; ··· 1655 name = "ansi_colors___ansi_colors_3.2.4.tgz"; 1656 url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz"; 1657 sha1 = "e3a3da4bfbae6c86a9c285625de124a234026fbf"; 1658 }; 1659 } 1660 { ··· 1914 }; 1915 } 1916 { 1917 - name = "array_includes___array_includes_3.0.3.tgz"; 1918 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"; 1922 }; 1923 } 1924 { ··· 1946 }; 1947 } 1948 { 1949 - name = "array.prototype.flat___array.prototype.flat_1.2.3.tgz"; 1950 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"; 1954 }; 1955 } 1956 { ··· 2015 name = "astral_regex___astral_regex_1.0.0.tgz"; 2016 url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; 2017 sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; 2018 }; 2019 } 2020 { ··· 2130 }; 2131 } 2132 { 2133 - name = "babel_loader___babel_loader_8.0.6.tgz"; 2134 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"; 2138 }; 2139 } 2140 { ··· 2330 }; 2331 } 2332 { 2333 - name = "bn.js___bn.js_4.11.8.tgz"; 2334 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"; 2338 }; 2339 } 2340 { ··· 2466 }; 2467 } 2468 { 2469 - name = "browserslist___browserslist_4.12.0.tgz"; 2470 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"; 2474 }; 2475 } 2476 { ··· 2562 }; 2563 } 2564 { 2565 - name = "cacache___cacache_13.0.1.tgz"; 2566 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"; 2570 }; 2571 } 2572 { ··· 2594 }; 2595 } 2596 { 2597 name = "call_me_maybe___call_me_maybe_1.0.1.tgz"; 2598 path = fetchurl { 2599 name = "call_me_maybe___call_me_maybe_1.0.1.tgz"; ··· 2698 }; 2699 } 2700 { 2701 - name = "caniuse_lite___caniuse_lite_1.0.30001081.tgz"; 2702 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"; 2706 }; 2707 } 2708 { ··· 2738 }; 2739 } 2740 { 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 name = "chalk___chalk_1.1.3.tgz"; 2750 path = fetchurl { 2751 name = "chalk___chalk_1.1.3.tgz"; ··· 2754 }; 2755 } 2756 { 2757 name = "chalk___chalk_3.0.0.tgz"; 2758 path = fetchurl { 2759 name = "chalk___chalk_3.0.0.tgz"; ··· 2810 }; 2811 } 2812 { 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 name = "charenc___charenc_0.0.2.tgz"; 2822 path = fetchurl { 2823 name = "charenc___charenc_0.0.2.tgz"; ··· 2850 }; 2851 } 2852 { 2853 name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz"; 2854 path = fetchurl { 2855 name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz"; ··· 2906 }; 2907 } 2908 { 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 name = "clipboard___clipboard_1.7.1.tgz"; 2926 path = fetchurl { 2927 name = "clipboard___clipboard_1.7.1.tgz"; ··· 2935 name = "clipboard___clipboard_2.0.6.tgz"; 2936 url = "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz"; 2937 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 }; 2947 } 2948 { ··· 3098 }; 3099 } 3100 { 3101 name = "colors___colors_1.3.3.tgz"; 3102 path = fetchurl { 3103 name = "colors___colors_1.3.3.tgz"; ··· 3178 }; 3179 } 3180 { 3181 - name = "compression_webpack_plugin___compression_webpack_plugin_3.0.1.tgz"; 3182 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"; 3186 }; 3187 } 3188 { ··· 3234 }; 3235 } 3236 { 3237 - name = "confusing_browser_globals___confusing_browser_globals_1.0.9.tgz"; 3238 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"; 3242 }; 3243 } 3244 { ··· 3378 }; 3379 } 3380 { 3381 - name = "copy_webpack_plugin___copy_webpack_plugin_5.1.1.tgz"; 3382 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"; 3386 }; 3387 } 3388 { ··· 3402 }; 3403 } 3404 { 3405 - name = "core_js___core_js_3.6.4.tgz"; 3406 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"; 3410 }; 3411 } 3412 { ··· 3474 }; 3475 } 3476 { 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 name = "cross_spawn___cross_spawn_3.0.1.tgz"; 3486 path = fetchurl { 3487 name = "cross_spawn___cross_spawn_3.0.1.tgz"; 3488 url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz"; 3489 sha1 = "1256037ecb9f0c5f79e3d6ef135e30770184b982"; 3490 }; 3491 } 3492 { ··· 3519 name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; 3520 url = "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz"; 3521 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 }; 3531 } 3532 { ··· 4426 }; 4427 } 4428 { 4429 - name = "dot_prop___dot_prop_4.2.0.tgz"; 4430 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"; 4434 }; 4435 } 4436 { ··· 4482 }; 4483 } 4484 { 4485 - name = "echarts___echarts_4.6.0.tgz"; 4486 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"; 4490 }; 4491 } 4492 { ··· 4522 }; 4523 } 4524 { 4525 - name = "electron_to_chromium___electron_to_chromium_1.3.466.tgz"; 4526 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"; 4530 }; 4531 } 4532 { 4533 - name = "elliptic___elliptic_6.4.0.tgz"; 4534 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"; 4538 }; 4539 } 4540 { ··· 4570 }; 4571 } 4572 { 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 name = "emojis_list___emojis_list_3.0.0.tgz"; 4582 path = fetchurl { 4583 name = "emojis_list___emojis_list_3.0.0.tgz"; ··· 4626 }; 4627 } 4628 { 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 name = "enhanced_resolve___enhanced_resolve_0.9.1.tgz"; 4638 path = fetchurl { 4639 name = "enhanced_resolve___enhanced_resolve_0.9.1.tgz"; 4640 url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz"; 4641 sha1 = "4d6e689b3725f86090927ccc86cd9f1635b89e2e"; 4642 }; 4643 } 4644 { ··· 4690 }; 4691 } 4692 { 4693 - name = "es_abstract___es_abstract_1.17.4.tgz"; 4694 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"; 4698 }; 4699 } 4700 { ··· 4730 }; 4731 } 4732 { 4733 name = "escape_goat___escape_goat_2.1.1.tgz"; 4734 path = fetchurl { 4735 name = "escape_goat___escape_goat_2.1.1.tgz"; ··· 4762 }; 4763 } 4764 { 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 name = "escodegen___escodegen_1.14.3.tgz"; 4774 path = fetchurl { 4775 name = "escodegen___escodegen_1.14.3.tgz"; ··· 4778 }; 4779 } 4780 { 4781 - name = "eslint_config_airbnb_base___eslint_config_airbnb_base_14.0.0.tgz"; 4782 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"; 4786 }; 4787 } 4788 { ··· 4794 }; 4795 } 4796 { 4797 - name = "eslint_import_resolver_jest___eslint_import_resolver_jest_2.1.2.tgz"; 4798 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"; 4802 }; 4803 } 4804 { 4805 - name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; 4806 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"; 4810 }; 4811 } 4812 { 4813 - name = "eslint_import_resolver_webpack___eslint_import_resolver_webpack_0.12.1.tgz"; 4814 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"; 4818 }; 4819 } 4820 { 4821 - name = "eslint_module_utils___eslint_module_utils_2.5.2.tgz"; 4822 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"; 4826 }; 4827 } 4828 { ··· 4842 }; 4843 } 4844 { 4845 - name = "eslint_plugin_import___eslint_plugin_import_2.20.1.tgz"; 4846 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"; 4850 }; 4851 } 4852 { 4853 - name = "eslint_plugin_jasmine___eslint_plugin_jasmine_4.1.0.tgz"; 4854 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"; 4858 }; 4859 } 4860 { ··· 4866 }; 4867 } 4868 { 4869 - name = "eslint_plugin_no_jquery___eslint_plugin_no_jquery_2.3.1.tgz"; 4870 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"; 4874 }; 4875 } 4876 { ··· 4882 }; 4883 } 4884 { 4885 - name = "eslint_plugin_vue___eslint_plugin_vue_7.4.1.tgz"; 4886 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"; 4890 }; 4891 } 4892 { ··· 4906 }; 4907 } 4908 { 4909 - name = "eslint_scope___eslint_scope_5.0.0.tgz"; 4910 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"; 4922 }; 4923 } 4924 { ··· 4930 }; 4931 } 4932 { 4933 - name = "eslint_visitor_keys___eslint_visitor_keys_1.1.0.tgz"; 4934 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"; 4938 }; 4939 } 4940 { 4941 - name = "eslint___eslint_6.8.0.tgz"; 4942 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"; 4946 }; 4947 } 4948 { ··· 4954 }; 4955 } 4956 { 4957 name = "esprima___esprima_4.0.1.tgz"; 4958 path = fetchurl { 4959 name = "esprima___esprima_4.0.1.tgz"; ··· 4962 }; 4963 } 4964 { 4965 - name = "esquery___esquery_1.0.1.tgz"; 4966 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"; 4970 }; 4971 } 4972 { 4973 - name = "esrecurse___esrecurse_4.2.1.tgz"; 4974 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"; 4978 }; 4979 } 4980 { ··· 4983 name = "estraverse___estraverse_4.3.0.tgz"; 4984 url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; 4985 sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d"; 4986 }; 4987 } 4988 { ··· 5154 }; 5155 } 5156 { 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 name = "extglob___extglob_2.0.4.tgz"; 5166 path = fetchurl { 5167 name = "extglob___extglob_2.0.4.tgz"; ··· 5250 }; 5251 } 5252 { 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"; 5262 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"; 5266 }; 5267 } 5268 { ··· 5282 }; 5283 } 5284 { 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 name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 5294 path = fetchurl { 5295 name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 5296 url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 5297 sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c"; 5298 }; 5299 } 5300 { ··· 5362 }; 5363 } 5364 { 5365 - name = "find_cache_dir___find_cache_dir_3.0.0.tgz"; 5366 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"; 5370 }; 5371 } 5372 { ··· 5426 }; 5427 } 5428 { 5429 name = "flatted___flatted_2.0.0.tgz"; 5430 path = fetchurl { 5431 name = "flatted___flatted_2.0.0.tgz"; ··· 5434 }; 5435 } 5436 { 5437 name = "flush_write_stream___flush_write_stream_1.1.1.tgz"; 5438 path = fetchurl { 5439 name = "flush_write_stream___flush_write_stream_1.1.1.tgz"; ··· 5450 }; 5451 } 5452 { 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 name = "for_in___for_in_1.0.2.tgz"; 5462 path = fetchurl { 5463 name = "for_in___for_in_1.0.2.tgz"; ··· 5618 }; 5619 } 5620 { 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 name = "get_caller_file___get_caller_file_2.0.5.tgz"; 5630 path = fetchurl { 5631 name = "get_caller_file___get_caller_file_2.0.5.tgz"; 5632 url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz"; 5633 sha1 = "4f94412a82db32f36e3b0b9741f8a97feb031f7e"; 5634 }; 5635 } 5636 { ··· 5706 }; 5707 } 5708 { 5709 - name = "gettext_extractor_vue___gettext_extractor_vue_4.0.2.tgz"; 5710 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"; 5714 }; 5715 } 5716 { 5717 - name = "gettext_extractor___gettext_extractor_3.4.3.tgz"; 5718 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"; 5722 }; 5723 } 5724 { ··· 5770 }; 5771 } 5772 { 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 name = "global_modules___global_modules_1.0.0.tgz"; 5782 path = fetchurl { 5783 name = "global_modules___global_modules_1.0.0.tgz"; 5784 url = "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz"; 5785 sha1 = "6d770f0eb523ac78164d72b5e71a8877265cc3ea"; 5786 }; 5787 } 5788 { ··· 6178 }; 6179 } 6180 { 6181 - name = "html_entities___html_entities_1.2.1.tgz"; 6182 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"; 6186 }; 6187 } 6188 { ··· 6250 }; 6251 } 6252 { 6253 name = "http_proxy_agent___http_proxy_agent_2.1.0.tgz"; 6254 path = fetchurl { 6255 name = "http_proxy_agent___http_proxy_agent_2.1.0.tgz"; ··· 6266 }; 6267 } 6268 { 6269 - name = "http_proxy___http_proxy_1.18.0.tgz"; 6270 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"; 6274 }; 6275 } 6276 { ··· 6402 }; 6403 } 6404 { 6405 - name = "import_fresh___import_fresh_3.2.1.tgz"; 6406 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"; 6410 }; 6411 } 6412 { ··· 6442 }; 6443 } 6444 { 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 name = "imurmurhash___imurmurhash_0.1.4.tgz"; 6454 path = fetchurl { 6455 name = "imurmurhash___imurmurhash_0.1.4.tgz"; ··· 6530 }; 6531 } 6532 { 6533 - name = "inherits___inherits_2.0.3.tgz"; 6534 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"; 6538 }; 6539 } 6540 { ··· 6546 }; 6547 } 6548 { 6549 - name = "ini___ini_1.3.5.tgz"; 6550 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"; 6554 }; 6555 } 6556 { 6557 - name = "inquirer___inquirer_7.0.4.tgz"; 6558 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"; 6562 }; 6563 } 6564 { ··· 6570 }; 6571 } 6572 { 6573 - name = "interpret___interpret_1.2.0.tgz"; 6574 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"; 6578 }; 6579 } 6580 { ··· 6583 name = "invariant___invariant_2.2.4.tgz"; 6584 url = "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz"; 6585 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 }; 6595 } 6596 { ··· 6706 }; 6707 } 6708 { 6709 - name = "is_callable___is_callable_1.1.5.tgz"; 6710 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"; 6714 }; 6715 } 6716 { ··· 6879 name = "is_installed_globally___is_installed_globally_0.3.2.tgz"; 6880 url = "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz"; 6881 sha1 = "fd3efa79ee670d1187233182d5b0a1dd00313141"; 6882 }; 6883 } 6884 { ··· 6978 }; 6979 } 6980 { 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"; 6998 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"; 7002 }; 7003 } 7004 { ··· 7026 }; 7027 } 7028 { 7029 name = "is_symbol___is_symbol_1.0.2.tgz"; 7030 path = fetchurl { 7031 name = "is_symbol___is_symbol_1.0.2.tgz"; ··· 7730 }; 7731 } 7732 { 7733 name = "json_schema___json_schema_0.2.3.tgz"; 7734 path = fetchurl { 7735 name = "json_schema___json_schema_0.2.3.tgz"; ··· 7754 }; 7755 } 7756 { 7757 - name = "json3___json3_3.3.2.tgz"; 7758 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"; 7762 }; 7763 } 7764 { ··· 7906 }; 7907 } 7908 { 7909 name = "killable___killable_1.0.1.tgz"; 7910 path = fetchurl { 7911 name = "killable___killable_1.0.1.tgz"; ··· 7938 }; 7939 } 7940 { 7941 - name = "kind_of___kind_of_6.0.2.tgz"; 7942 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"; 7946 }; 7947 } 7948 { ··· 7978 }; 7979 } 7980 { 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 name = "leven___leven_3.1.0.tgz"; 7990 path = fetchurl { 7991 name = "leven___leven_3.1.0.tgz"; ··· 8002 }; 8003 } 8004 { 8005 name = "levn___levn_0.3.0.tgz"; 8006 path = fetchurl { 8007 name = "levn___levn_0.3.0.tgz"; ··· 8079 name = "loader_runner___loader_runner_2.4.0.tgz"; 8080 url = "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz"; 8081 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 }; 8091 } 8092 { ··· 8386 }; 8387 } 8388 { 8389 - name = "loglevel___loglevel_1.6.7.tgz"; 8390 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"; 8394 }; 8395 } 8396 { ··· 8466 }; 8467 } 8468 { 8469 name = "lz_string___lz_string_1.4.4.tgz"; 8470 path = fetchurl { 8471 name = "lz_string___lz_string_1.4.4.tgz"; ··· 8482 }; 8483 } 8484 { 8485 - name = "make_dir___make_dir_3.0.0.tgz"; 8486 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"; 8490 }; 8491 } 8492 { ··· 8506 }; 8507 } 8508 { 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 name = "map_cache___map_cache_0.2.2.tgz"; 8526 path = fetchurl { 8527 name = "map_cache___map_cache_0.2.2.tgz"; ··· 8674 }; 8675 } 8676 { 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 name = "memory_fs___memory_fs_0.2.0.tgz"; 8686 path = fetchurl { 8687 name = "memory_fs___memory_fs_0.2.0.tgz"; ··· 8695 name = "memory_fs___memory_fs_0.4.1.tgz"; 8696 url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz"; 8697 sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552"; 8698 }; 8699 } 8700 { ··· 8746 }; 8747 } 8748 { 8749 - name = "mermaid___mermaid_8.5.2.tgz"; 8750 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"; 8754 }; 8755 } 8756 { ··· 8850 }; 8851 } 8852 { 8853 - name = "minimalistic_assert___minimalistic_assert_1.0.0.tgz"; 8854 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"; 8858 }; 8859 } 8860 { ··· 8882 }; 8883 } 8884 { 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 name = "minimist___minimist_1.1.3.tgz"; 8894 path = fetchurl { 8895 name = "minimist___minimist_1.1.3.tgz"; ··· 8903 name = "minimist___minimist_1.2.5.tgz"; 8904 url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 8905 sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602"; 8906 }; 8907 } 8908 { ··· 8938 }; 8939 } 8940 { 8941 name = "miragejs___miragejs_0.1.40.tgz"; 8942 path = fetchurl { 8943 name = "miragejs___miragejs_0.1.40.tgz"; ··· 8970 }; 8971 } 8972 { 8973 - name = "https___registry.npmjs.org_mkdirp___mkdirp_0.5.1.tgz"; 8974 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"; 8978 }; 8979 } 8980 { ··· 9066 }; 9067 } 9068 { 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 name = "nan___nan_2.14.1.tgz"; 9078 path = fetchurl { 9079 name = "nan___nan_2.14.1.tgz"; ··· 9138 }; 9139 } 9140 { 9141 - name = "node_fetch___node_fetch_2.6.0.tgz"; 9142 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"; 9146 }; 9147 } 9148 { 9149 - name = "node_forge___node_forge_0.9.0.tgz"; 9150 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"; 9154 }; 9155 } 9156 { ··· 9194 }; 9195 } 9196 { 9197 - name = "node_releases___node_releases_1.1.58.tgz"; 9198 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"; 9202 }; 9203 } 9204 { ··· 9370 }; 9371 } 9372 { 9373 - name = "object_inspect___object_inspect_1.7.0.tgz"; 9374 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"; 9378 }; 9379 } 9380 { ··· 9394 }; 9395 } 9396 { 9397 - name = "object.assign___object.assign_4.1.0.tgz"; 9398 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"; 9402 }; 9403 } 9404 { 9405 - name = "object.entries___object.entries_1.1.1.tgz"; 9406 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"; 9410 }; 9411 } 9412 { ··· 9418 }; 9419 } 9420 { 9421 - name = "object.values___object.values_1.1.0.tgz"; 9422 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"; 9426 }; 9427 } 9428 { ··· 9506 }; 9507 } 9508 { 9509 name = "orderedmap___orderedmap_1.0.0.tgz"; 9510 path = fetchurl { 9511 name = "orderedmap___orderedmap_1.0.0.tgz"; ··· 9538 }; 9539 } 9540 { 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 name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 9550 path = fetchurl { 9551 name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; ··· 9570 }; 9571 } 9572 { 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 name = "p_each_series___p_each_series_2.1.0.tgz"; 9582 path = fetchurl { 9583 name = "p_each_series___p_each_series_2.1.0.tgz"; ··· 9591 name = "p_finally___p_finally_1.0.0.tgz"; 9592 url = "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz"; 9593 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 }; 9603 } 9604 { ··· 9650 }; 9651 } 9652 { 9653 - name = "p_map___p_map_3.0.0.tgz"; 9654 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"; 9658 }; 9659 } 9660 { ··· 10018 }; 10019 } 10020 { 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 name = "pkg_dir___pkg_dir_2.0.0.tgz"; 10030 path = fetchurl { 10031 name = "pkg_dir___pkg_dir_2.0.0.tgz"; ··· 10050 }; 10051 } 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 name = "pofile___pofile_1.0.11.tgz"; 10070 path = fetchurl { 10071 name = "pofile___pofile_1.0.11.tgz"; ··· 10090 }; 10091 } 10092 { 10093 - name = "portfinder___portfinder_1.0.25.tgz"; 10094 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"; 10098 }; 10099 } 10100 { ··· 10263 name = "postcss___postcss_7.0.30.tgz"; 10264 url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.30.tgz"; 10265 sha1 = "cc9378beffe46a02cbc4506a0477d05fcea9a8e2"; 10266 }; 10267 } 10268 { ··· 10658 }; 10659 } 10660 { 10661 - name = "querystringify___querystringify_2.1.0.tgz"; 10662 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"; 10666 }; 10667 } 10668 { ··· 10674 }; 10675 } 10676 { 10677 - name = "randombytes___randombytes_2.0.6.tgz"; 10678 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"; 10682 }; 10683 } 10684 { ··· 10714 }; 10715 } 10716 { 10717 - name = "raw_loader___raw_loader_4.0.0.tgz"; 10718 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"; 10722 }; 10723 } 10724 { ··· 10898 }; 10899 } 10900 { 10901 - name = "regexpp___regexpp_2.0.1.tgz"; 10902 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"; 10906 }; 10907 } 10908 { ··· 11058 }; 11059 } 11060 { 11061 - name = "require_main_filename___require_main_filename_1.0.1.tgz"; 11062 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"; 11066 }; 11067 } 11068 { ··· 11178 }; 11179 } 11180 { 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 name = "ret___ret_0.1.15.tgz"; 11190 path = fetchurl { 11191 name = "ret___ret_0.1.15.tgz"; ··· 11210 }; 11211 } 11212 { 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 name = "rimraf___rimraf_2.6.3.tgz"; 11222 path = fetchurl { 11223 name = "rimraf___rimraf_2.6.3.tgz"; ··· 11266 }; 11267 } 11268 { 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 name = "run_queue___run_queue_1.0.3.tgz"; 11278 path = fetchurl { 11279 name = "run_queue___run_queue_1.0.3.tgz"; ··· 11290 }; 11291 } 11292 { 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 name = "safe_buffer___safe_buffer_5.1.2.tgz"; 11302 path = fetchurl { 11303 name = "safe_buffer___safe_buffer_5.1.2.tgz"; ··· 11378 }; 11379 } 11380 { 11381 - name = "scope_css___scope_css_1.2.1.tgz"; 11382 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"; 11386 }; 11387 } 11388 { ··· 11418 }; 11419 } 11420 { 11421 - name = "selfsigned___selfsigned_1.10.7.tgz"; 11422 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"; 11426 }; 11427 } 11428 { ··· 11450 }; 11451 } 11452 { 11453 - name = "semver___semver_7.3.2.tgz"; 11454 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"; 11458 }; 11459 } 11460 { ··· 11487 name = "serialize_javascript___serialize_javascript_2.1.2.tgz"; 11488 url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz"; 11489 sha1 = "ecec53b0e0317bdc95ef76ab7074b7384785fa61"; 11490 }; 11491 } 11492 { ··· 11658 }; 11659 } 11660 { 11661 - name = "slugify___slugify_1.3.1.tgz"; 11662 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"; 11666 }; 11667 } 11668 { ··· 11730 }; 11731 } 11732 { 11733 - name = "sockjs_client___sockjs_client_1.4.0.tgz"; 11734 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"; 11738 }; 11739 } 11740 { 11741 - name = "sockjs___sockjs_0.3.19.tgz"; 11742 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"; 11746 }; 11747 } 11748 { ··· 11866 }; 11867 } 11868 { 11869 - name = "spdy___spdy_4.0.1.tgz"; 11870 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"; 11874 }; 11875 } 11876 { ··· 11922 }; 11923 } 11924 { 11925 - name = "ssri___ssri_7.1.0.tgz"; 11926 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"; 11930 }; 11931 } 11932 { ··· 11983 name = "stealthy_require___stealthy_require_1.1.1.tgz"; 11984 url = "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz"; 11985 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 }; 11995 } 11996 { ··· 12058 }; 12059 } 12060 { 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 name = "string_width___string_width_3.1.0.tgz"; 12070 path = fetchurl { 12071 name = "string_width___string_width_3.1.0.tgz"; ··· 12082 }; 12083 } 12084 { 12085 - name = "string.prototype.trimleft___string.prototype.trimleft_2.1.1.tgz"; 12086 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"; 12090 }; 12091 } 12092 { 12093 - name = "string.prototype.trimright___string.prototype.trimright_2.1.1.tgz"; 12094 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"; 12098 }; 12099 } 12100 { ··· 12178 }; 12179 } 12180 { 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 name = "strip_eof___strip_eof_1.0.0.tgz"; 12190 path = fetchurl { 12191 name = "strip_eof___strip_eof_1.0.0.tgz"; ··· 12218 }; 12219 } 12220 { 12221 - name = "strip_json_comments___strip_json_comments_3.0.1.tgz"; 12222 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"; 12226 }; 12227 } 12228 { ··· 12274 }; 12275 } 12276 { 12277 - name = "sugarss___sugarss_2.0.0.tgz"; 12278 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"; 12282 }; 12283 } 12284 { 12285 - name = "supports_color___supports_color_6.1.0.tgz"; 12286 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"; 12290 }; 12291 } 12292 { ··· 12303 name = "supports_color___supports_color_5.5.0.tgz"; 12304 url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; 12305 sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f"; 12306 }; 12307 } 12308 { ··· 12362 }; 12363 } 12364 { 12365 name = "taffydb___taffydb_2.6.2.tgz"; 12366 path = fetchurl { 12367 name = "taffydb___taffydb_2.6.2.tgz"; ··· 12391 name = "tar___tar_2.2.2.tgz"; 12392 url = "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz"; 12393 sha1 = "0ca8848562c7299b8b446ff6a4d60cdbb23edc40"; 12394 }; 12395 } 12396 { ··· 12495 name = "through2___through2_2.0.5.tgz"; 12496 url = "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz"; 12497 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 }; 12507 } 12508 { ··· 12794 }; 12795 } 12796 { 12797 name = "tslib___tslib_1.13.0.tgz"; 12798 path = fetchurl { 12799 name = "tslib___tslib_1.13.0.tgz"; ··· 12834 }; 12835 } 12836 { 12837 name = "type_check___type_check_0.3.2.tgz"; 12838 path = fetchurl { 12839 name = "type_check___type_check_0.3.2.tgz"; ··· 12847 name = "type_detect___type_detect_4.0.8.tgz"; 12848 url = "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz"; 12849 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 }; 12859 } 12860 { ··· 12898 }; 12899 } 12900 { 12901 - name = "typescript___typescript_3.9.7.tgz"; 12902 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"; 12906 }; 12907 } 12908 { ··· 13170 }; 13171 } 13172 { 13173 - name = "url_parse___url_parse_1.4.4.tgz"; 13174 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"; 13178 }; 13179 } 13180 { ··· 13282 }; 13283 } 13284 { 13285 - name = "v8_compile_cache___v8_compile_cache_2.0.3.tgz"; 13286 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"; 13290 }; 13291 } 13292 { ··· 13474 }; 13475 } 13476 { 13477 - name = "vue_eslint_parser___vue_eslint_parser_7.3.0.tgz"; 13478 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"; 13482 }; 13483 } 13484 { ··· 13618 }; 13619 } 13620 { 13621 - name = "watchpack_chokidar2___watchpack_chokidar2_2.0.0.tgz"; 13622 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"; 13626 }; 13627 } 13628 { 13629 - name = "watchpack___watchpack_1.7.2.tgz"; 13630 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"; 13634 }; 13635 } 13636 { ··· 13666 }; 13667 } 13668 { 13669 - name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.6.0.tgz"; 13670 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"; 13674 }; 13675 } 13676 { 13677 - name = "webpack_cli___webpack_cli_3.3.11.tgz"; 13678 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"; 13682 }; 13683 } 13684 { ··· 13690 }; 13691 } 13692 { 13693 - name = "webpack_dev_server___webpack_dev_server_3.10.3.tgz"; 13694 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"; 13698 }; 13699 } 13700 { ··· 13722 }; 13723 } 13724 { 13725 - name = "webpack___webpack_4.42.0.tgz"; 13726 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"; 13730 }; 13731 } 13732 { 13733 - name = "websocket_driver___websocket_driver_0.6.5.tgz"; 13734 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"; 13738 }; 13739 } 13740 { ··· 13839 name = "worker_loader___worker_loader_2.0.0.tgz"; 13840 url = "https://registry.yarnpkg.com/worker-loader/-/worker-loader-2.0.0.tgz"; 13841 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 }; 13851 } 13852 { ··· 14082 }; 14083 } 14084 { 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 name = "yargs_parser___yargs_parser_13.1.2.tgz"; 14094 path = fetchurl { 14095 name = "yargs_parser___yargs_parser_13.1.2.tgz"; ··· 14103 name = "yargs_parser___yargs_parser_18.1.3.tgz"; 14104 url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz"; 14105 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 }; 14123 } 14124 { ··· 14178 }; 14179 } 14180 { 14181 - name = "zrender___zrender_4.2.0.tgz"; 14182 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"; 14186 }; 14187 } 14188 ];
··· 770 }; 771 } 772 { 773 + name = "_eslint_eslintrc___eslintrc_0.3.0.tgz"; 774 path = fetchurl { 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 }; 779 } 780 { 781 + name = "_gitlab_at.js___at.js_1.5.7.tgz"; 782 path = fetchurl { 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"; 794 }; 795 } 796 { ··· 802 }; 803 } 804 { 805 + name = "_gitlab_svgs___svgs_1.182.0.tgz"; 806 path = fetchurl { 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"; 810 }; 811 } 812 { ··· 818 }; 819 } 820 { 821 + name = "_gitlab_ui___ui_27.4.6.tgz"; 822 path = fetchurl { 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"; 826 }; 827 } 828 { ··· 975 name = "_nodelib_fs.stat___fs.stat_1.1.3.tgz"; 976 url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz"; 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"; 986 }; 987 } 988 { ··· 1202 }; 1203 } 1204 { 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"; 1214 path = fetchurl { 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"; 1218 }; 1219 } 1220 { ··· 1354 }; 1355 } 1356 { 1357 + name = "_webassemblyjs_ast___ast_1.9.0.tgz"; 1358 path = fetchurl { 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"; 1362 }; 1363 } 1364 { 1365 + name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.9.0.tgz"; 1366 path = fetchurl { 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"; 1370 }; 1371 } 1372 { 1373 + name = "_webassemblyjs_helper_api_error___helper_api_error_1.9.0.tgz"; 1374 path = fetchurl { 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"; 1378 }; 1379 } 1380 { 1381 + name = "_webassemblyjs_helper_buffer___helper_buffer_1.9.0.tgz"; 1382 path = fetchurl { 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"; 1386 }; 1387 } 1388 { 1389 + name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.9.0.tgz"; 1390 path = fetchurl { 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"; 1394 }; 1395 } 1396 { 1397 + name = "_webassemblyjs_helper_fsm___helper_fsm_1.9.0.tgz"; 1398 path = fetchurl { 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"; 1402 }; 1403 } 1404 { 1405 + name = "_webassemblyjs_helper_module_context___helper_module_context_1.9.0.tgz"; 1406 path = fetchurl { 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"; 1410 }; 1411 } 1412 { 1413 + name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.9.0.tgz"; 1414 path = fetchurl { 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"; 1418 }; 1419 } 1420 { 1421 + name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.9.0.tgz"; 1422 path = fetchurl { 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"; 1426 }; 1427 } 1428 { 1429 + name = "_webassemblyjs_ieee754___ieee754_1.9.0.tgz"; 1430 path = fetchurl { 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"; 1434 }; 1435 } 1436 { 1437 + name = "_webassemblyjs_leb128___leb128_1.9.0.tgz"; 1438 path = fetchurl { 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"; 1442 }; 1443 } 1444 { 1445 + name = "_webassemblyjs_utf8___utf8_1.9.0.tgz"; 1446 path = fetchurl { 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"; 1450 }; 1451 } 1452 { 1453 + name = "_webassemblyjs_wasm_edit___wasm_edit_1.9.0.tgz"; 1454 path = fetchurl { 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"; 1458 }; 1459 } 1460 { 1461 + name = "_webassemblyjs_wasm_gen___wasm_gen_1.9.0.tgz"; 1462 path = fetchurl { 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"; 1466 }; 1467 } 1468 { 1469 + name = "_webassemblyjs_wasm_opt___wasm_opt_1.9.0.tgz"; 1470 path = fetchurl { 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"; 1474 }; 1475 } 1476 { 1477 + name = "_webassemblyjs_wasm_parser___wasm_parser_1.9.0.tgz"; 1478 path = fetchurl { 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"; 1482 }; 1483 } 1484 { 1485 + name = "_webassemblyjs_wast_parser___wast_parser_1.9.0.tgz"; 1486 path = fetchurl { 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"; 1490 }; 1491 } 1492 { 1493 + name = "_webassemblyjs_wast_printer___wast_printer_1.9.0.tgz"; 1494 path = fetchurl { 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"; 1498 }; 1499 } 1500 { ··· 1578 }; 1579 } 1580 { 1581 name = "acorn_walk___acorn_walk_7.2.0.tgz"; 1582 path = fetchurl { 1583 name = "acorn_walk___acorn_walk_7.2.0.tgz"; ··· 1586 }; 1587 } 1588 { 1589 + name = "acorn___acorn_6.4.2.tgz"; 1590 path = fetchurl { 1591 + name = "acorn___acorn_6.4.2.tgz"; 1592 + url = "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz"; 1593 + sha1 = "35866fd710528e92de10cf06016498e47e39e1e6"; 1594 }; 1595 } 1596 { ··· 1650 }; 1651 } 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 + { 1661 name = "amdefine___amdefine_1.0.1.tgz"; 1662 path = fetchurl { 1663 name = "amdefine___amdefine_1.0.1.tgz"; ··· 1679 name = "ansi_colors___ansi_colors_3.2.4.tgz"; 1680 url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz"; 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"; 1690 }; 1691 } 1692 { ··· 1946 }; 1947 } 1948 { 1949 + name = "array_includes___array_includes_3.1.2.tgz"; 1950 path = fetchurl { 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"; 1954 }; 1955 } 1956 { ··· 1978 }; 1979 } 1980 { 1981 + name = "array.prototype.flat___array.prototype.flat_1.2.4.tgz"; 1982 path = fetchurl { 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"; 1986 }; 1987 } 1988 { ··· 2047 name = "astral_regex___astral_regex_1.0.0.tgz"; 2048 url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; 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"; 2058 }; 2059 } 2060 { ··· 2170 }; 2171 } 2172 { 2173 + name = "babel_loader___babel_loader_8.2.2.tgz"; 2174 path = fetchurl { 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"; 2178 }; 2179 } 2180 { ··· 2370 }; 2371 } 2372 { 2373 + name = "bn.js___bn.js_4.11.9.tgz"; 2374 path = fetchurl { 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"; 2378 }; 2379 } 2380 { ··· 2506 }; 2507 } 2508 { 2509 + name = "browserslist___browserslist_4.16.1.tgz"; 2510 path = fetchurl { 2511 + name = "browserslist___browserslist_4.16.1.tgz"; 2512 + url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz"; 2513 + sha1 = "bf757a2da376b3447b800a16f0f1c96358138766"; 2514 }; 2515 } 2516 { ··· 2602 }; 2603 } 2604 { 2605 + name = "cacache___cacache_15.0.5.tgz"; 2606 path = fetchurl { 2607 + name = "cacache___cacache_15.0.5.tgz"; 2608 + url = "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz"; 2609 + sha1 = "69162833da29170d6732334643c60e005f5f17d0"; 2610 }; 2611 } 2612 { ··· 2634 }; 2635 } 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 + { 2645 name = "call_me_maybe___call_me_maybe_1.0.1.tgz"; 2646 path = fetchurl { 2647 name = "call_me_maybe___call_me_maybe_1.0.1.tgz"; ··· 2746 }; 2747 } 2748 { 2749 + name = "caniuse_lite___caniuse_lite_1.0.30001178.tgz"; 2750 path = fetchurl { 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"; 2754 }; 2755 } 2756 { ··· 2786 }; 2787 } 2788 { 2789 name = "chalk___chalk_1.1.3.tgz"; 2790 path = fetchurl { 2791 name = "chalk___chalk_1.1.3.tgz"; ··· 2794 }; 2795 } 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 + { 2805 name = "chalk___chalk_3.0.0.tgz"; 2806 path = fetchurl { 2807 name = "chalk___chalk_3.0.0.tgz"; ··· 2858 }; 2859 } 2860 { 2861 name = "charenc___charenc_0.0.2.tgz"; 2862 path = fetchurl { 2863 name = "charenc___charenc_0.0.2.tgz"; ··· 2890 }; 2891 } 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 + { 2901 name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz"; 2902 path = fetchurl { 2903 name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz"; ··· 2954 }; 2955 } 2956 { 2957 name = "clipboard___clipboard_1.7.1.tgz"; 2958 path = fetchurl { 2959 name = "clipboard___clipboard_1.7.1.tgz"; ··· 2967 name = "clipboard___clipboard_2.0.6.tgz"; 2968 url = "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz"; 2969 sha1 = "52921296eec0fdf77ead1749421b21c968647376"; 2970 }; 2971 } 2972 { ··· 3122 }; 3123 } 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 + { 3133 name = "colors___colors_1.3.3.tgz"; 3134 path = fetchurl { 3135 name = "colors___colors_1.3.3.tgz"; ··· 3210 }; 3211 } 3212 { 3213 + name = "compression_webpack_plugin___compression_webpack_plugin_5.0.2.tgz"; 3214 path = fetchurl { 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"; 3218 }; 3219 } 3220 { ··· 3266 }; 3267 } 3268 { 3269 + name = "confusing_browser_globals___confusing_browser_globals_1.0.10.tgz"; 3270 path = fetchurl { 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"; 3274 }; 3275 } 3276 { ··· 3410 }; 3411 } 3412 { 3413 + name = "copy_webpack_plugin___copy_webpack_plugin_5.1.2.tgz"; 3414 path = fetchurl { 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"; 3418 }; 3419 } 3420 { ··· 3434 }; 3435 } 3436 { 3437 + name = "core_js___core_js_3.8.3.tgz"; 3438 path = fetchurl { 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"; 3442 }; 3443 } 3444 { ··· 3506 }; 3507 } 3508 { 3509 name = "cross_spawn___cross_spawn_3.0.1.tgz"; 3510 path = fetchurl { 3511 name = "cross_spawn___cross_spawn_3.0.1.tgz"; 3512 url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz"; 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"; 3522 }; 3523 } 3524 { ··· 3551 name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; 3552 url = "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz"; 3553 sha1 = "ef2a7a966ec11083388369baa02ebead229b30d5"; 3554 }; 3555 } 3556 { ··· 4450 }; 4451 } 4452 { 4453 + name = "dot_prop___dot_prop_4.2.1.tgz"; 4454 path = fetchurl { 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"; 4458 }; 4459 } 4460 { ··· 4506 }; 4507 } 4508 { 4509 + name = "echarts___echarts_4.9.0.tgz"; 4510 path = fetchurl { 4511 + name = "echarts___echarts_4.9.0.tgz"; 4512 + url = "https://registry.yarnpkg.com/echarts/-/echarts-4.9.0.tgz"; 4513 + sha1 = "a9b9baa03f03a2a731e6340c55befb57a9e1347d"; 4514 }; 4515 } 4516 { ··· 4546 }; 4547 } 4548 { 4549 + name = "electron_to_chromium___electron_to_chromium_1.3.642.tgz"; 4550 path = fetchurl { 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"; 4554 }; 4555 } 4556 { 4557 + name = "elliptic___elliptic_6.5.4.tgz"; 4558 path = fetchurl { 4559 + name = "elliptic___elliptic_6.5.4.tgz"; 4560 + url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz"; 4561 + sha1 = "da37cebd31e79a1367e941b592ed1fbebd58abbb"; 4562 }; 4563 } 4564 { ··· 4594 }; 4595 } 4596 { 4597 name = "emojis_list___emojis_list_3.0.0.tgz"; 4598 path = fetchurl { 4599 name = "emojis_list___emojis_list_3.0.0.tgz"; ··· 4642 }; 4643 } 4644 { 4645 name = "enhanced_resolve___enhanced_resolve_0.9.1.tgz"; 4646 path = fetchurl { 4647 name = "enhanced_resolve___enhanced_resolve_0.9.1.tgz"; 4648 url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz"; 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"; 4666 }; 4667 } 4668 { ··· 4714 }; 4715 } 4716 { 4717 + name = "es_abstract___es_abstract_1.18.0_next.2.tgz"; 4718 path = fetchurl { 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"; 4722 }; 4723 } 4724 { ··· 4754 }; 4755 } 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 + { 4765 name = "escape_goat___escape_goat_2.1.1.tgz"; 4766 path = fetchurl { 4767 name = "escape_goat___escape_goat_2.1.1.tgz"; ··· 4794 }; 4795 } 4796 { 4797 name = "escodegen___escodegen_1.14.3.tgz"; 4798 path = fetchurl { 4799 name = "escodegen___escodegen_1.14.3.tgz"; ··· 4802 }; 4803 } 4804 { 4805 + name = "eslint_config_airbnb_base___eslint_config_airbnb_base_14.2.1.tgz"; 4806 path = fetchurl { 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"; 4810 }; 4811 } 4812 { ··· 4818 }; 4819 } 4820 { 4821 + name = "eslint_import_resolver_jest___eslint_import_resolver_jest_3.0.0.tgz"; 4822 path = fetchurl { 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"; 4826 }; 4827 } 4828 { 4829 + name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.4.tgz"; 4830 path = fetchurl { 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"; 4834 }; 4835 } 4836 { 4837 + name = "eslint_import_resolver_webpack___eslint_import_resolver_webpack_0.13.0.tgz"; 4838 path = fetchurl { 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"; 4842 }; 4843 } 4844 { 4845 + name = "eslint_module_utils___eslint_module_utils_2.6.0.tgz"; 4846 path = fetchurl { 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"; 4850 }; 4851 } 4852 { ··· 4866 }; 4867 } 4868 { 4869 + name = "eslint_plugin_import___eslint_plugin_import_2.22.1.tgz"; 4870 path = fetchurl { 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"; 4874 }; 4875 } 4876 { 4877 + name = "eslint_plugin_jasmine___eslint_plugin_jasmine_4.1.2.tgz"; 4878 path = fetchurl { 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"; 4882 }; 4883 } 4884 { ··· 4890 }; 4891 } 4892 { 4893 + name = "eslint_plugin_no_jquery___eslint_plugin_no_jquery_2.5.0.tgz"; 4894 path = fetchurl { 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"; 4898 }; 4899 } 4900 { ··· 4906 }; 4907 } 4908 { 4909 + name = "eslint_plugin_vue___eslint_plugin_vue_7.5.0.tgz"; 4910 path = fetchurl { 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"; 4914 }; 4915 } 4916 { ··· 4930 }; 4931 } 4932 { 4933 + name = "eslint_scope___eslint_scope_5.1.1.tgz"; 4934 path = fetchurl { 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"; 4938 }; 4939 } 4940 { ··· 4946 }; 4947 } 4948 { 4949 + name = "eslint_visitor_keys___eslint_visitor_keys_1.3.0.tgz"; 4950 path = fetchurl { 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"; 4954 }; 4955 } 4956 { 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"; 4966 path = fetchurl { 4967 + name = "eslint___eslint_7.19.0.tgz"; 4968 + url = "https://registry.yarnpkg.com/eslint/-/eslint-7.19.0.tgz"; 4969 + sha1 = "6719621b196b5fad72e43387981314e5d0dc3f41"; 4970 }; 4971 } 4972 { ··· 4978 }; 4979 } 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 + { 4989 name = "esprima___esprima_4.0.1.tgz"; 4990 path = fetchurl { 4991 name = "esprima___esprima_4.0.1.tgz"; ··· 4994 }; 4995 } 4996 { 4997 + name = "esquery___esquery_1.3.1.tgz"; 4998 path = fetchurl { 4999 + name = "esquery___esquery_1.3.1.tgz"; 5000 + url = "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz"; 5001 + sha1 = "b78b5828aa8e214e29fb74c4d5b752e1c033da57"; 5002 }; 5003 } 5004 { 5005 + name = "esrecurse___esrecurse_4.3.0.tgz"; 5006 path = fetchurl { 5007 + name = "esrecurse___esrecurse_4.3.0.tgz"; 5008 + url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz"; 5009 + sha1 = "7ad7964d679abb28bee72cec63758b1c5d2c9921"; 5010 }; 5011 } 5012 { ··· 5015 name = "estraverse___estraverse_4.3.0.tgz"; 5016 url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; 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"; 5026 }; 5027 } 5028 { ··· 5194 }; 5195 } 5196 { 5197 name = "extglob___extglob_2.0.4.tgz"; 5198 path = fetchurl { 5199 name = "extglob___extglob_2.0.4.tgz"; ··· 5282 }; 5283 } 5284 { 5285 + name = "faye_websocket___faye_websocket_0.11.3.tgz"; 5286 path = fetchurl { 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"; 5290 }; 5291 } 5292 { ··· 5306 }; 5307 } 5308 { 5309 name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 5310 path = fetchurl { 5311 name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 5312 url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 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"; 5322 }; 5323 } 5324 { ··· 5386 }; 5387 } 5388 { 5389 + name = "find_cache_dir___find_cache_dir_3.3.1.tgz"; 5390 path = fetchurl { 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"; 5394 }; 5395 } 5396 { ··· 5450 }; 5451 } 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 + { 5461 name = "flatted___flatted_2.0.0.tgz"; 5462 path = fetchurl { 5463 name = "flatted___flatted_2.0.0.tgz"; ··· 5466 }; 5467 } 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 + { 5477 name = "flush_write_stream___flush_write_stream_1.1.1.tgz"; 5478 path = fetchurl { 5479 name = "flush_write_stream___flush_write_stream_1.1.1.tgz"; ··· 5490 }; 5491 } 5492 { 5493 name = "for_in___for_in_1.0.2.tgz"; 5494 path = fetchurl { 5495 name = "for_in___for_in_1.0.2.tgz"; ··· 5650 }; 5651 } 5652 { 5653 name = "get_caller_file___get_caller_file_2.0.5.tgz"; 5654 path = fetchurl { 5655 name = "get_caller_file___get_caller_file_2.0.5.tgz"; 5656 url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz"; 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"; 5666 }; 5667 } 5668 { ··· 5738 }; 5739 } 5740 { 5741 + name = "gettext_extractor_vue___gettext_extractor_vue_5.0.0.tgz"; 5742 path = fetchurl { 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"; 5746 }; 5747 } 5748 { 5749 + name = "gettext_extractor___gettext_extractor_3.5.3.tgz"; 5750 path = fetchurl { 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"; 5754 }; 5755 } 5756 { ··· 5802 }; 5803 } 5804 { 5805 name = "global_modules___global_modules_1.0.0.tgz"; 5806 path = fetchurl { 5807 name = "global_modules___global_modules_1.0.0.tgz"; 5808 url = "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz"; 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"; 5818 }; 5819 } 5820 { ··· 6210 }; 6211 } 6212 { 6213 + name = "html_entities___html_entities_1.4.0.tgz"; 6214 path = fetchurl { 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"; 6218 }; 6219 } 6220 { ··· 6282 }; 6283 } 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 + { 6293 name = "http_proxy_agent___http_proxy_agent_2.1.0.tgz"; 6294 path = fetchurl { 6295 name = "http_proxy_agent___http_proxy_agent_2.1.0.tgz"; ··· 6306 }; 6307 } 6308 { 6309 + name = "http_proxy___http_proxy_1.18.1.tgz"; 6310 path = fetchurl { 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"; 6314 }; 6315 } 6316 { ··· 6442 }; 6443 } 6444 { 6445 + name = "import_fresh___import_fresh_3.3.0.tgz"; 6446 path = fetchurl { 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"; 6450 }; 6451 } 6452 { ··· 6482 }; 6483 } 6484 { 6485 name = "imurmurhash___imurmurhash_0.1.4.tgz"; 6486 path = fetchurl { 6487 name = "imurmurhash___imurmurhash_0.1.4.tgz"; ··· 6562 }; 6563 } 6564 { 6565 + name = "inherits___inherits_2.0.4.tgz"; 6566 path = fetchurl { 6567 + name = "inherits___inherits_2.0.4.tgz"; 6568 + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; 6569 + sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c"; 6570 }; 6571 } 6572 { ··· 6578 }; 6579 } 6580 { 6581 + name = "inherits___inherits_2.0.3.tgz"; 6582 path = fetchurl { 6583 + name = "inherits___inherits_2.0.3.tgz"; 6584 + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; 6585 + sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 6586 }; 6587 } 6588 { 6589 + name = "ini___ini_1.3.8.tgz"; 6590 path = fetchurl { 6591 + name = "ini___ini_1.3.8.tgz"; 6592 + url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz"; 6593 + sha1 = "a29da425b48806f34767a4efce397269af28432c"; 6594 }; 6595 } 6596 { ··· 6602 }; 6603 } 6604 { 6605 + name = "interpret___interpret_1.4.0.tgz"; 6606 path = fetchurl { 6607 + name = "interpret___interpret_1.4.0.tgz"; 6608 + url = "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz"; 6609 + sha1 = "665ab8bc4da27a774a40584e812e3e0fa45b1a1e"; 6610 }; 6611 } 6612 { ··· 6615 name = "invariant___invariant_2.2.4.tgz"; 6616 url = "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz"; 6617 sha1 = "610f3c92c9359ce1db616e538008d23ff35158e6"; 6618 }; 6619 } 6620 { ··· 6730 }; 6731 } 6732 { 6733 + name = "is_callable___is_callable_1.2.3.tgz"; 6734 path = fetchurl { 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"; 6738 }; 6739 } 6740 { ··· 6903 name = "is_installed_globally___is_installed_globally_0.3.2.tgz"; 6904 url = "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz"; 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"; 6914 }; 6915 } 6916 { ··· 7010 }; 7011 } 7012 { 7013 + name = "is_regex___is_regex_1.1.2.tgz"; 7014 path = fetchurl { 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"; 7018 }; 7019 } 7020 { ··· 7042 }; 7043 } 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 + { 7053 name = "is_symbol___is_symbol_1.0.2.tgz"; 7054 path = fetchurl { 7055 name = "is_symbol___is_symbol_1.0.2.tgz"; ··· 7754 }; 7755 } 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 + { 7765 name = "json_schema___json_schema_0.2.3.tgz"; 7766 path = fetchurl { 7767 name = "json_schema___json_schema_0.2.3.tgz"; ··· 7786 }; 7787 } 7788 { 7789 + name = "json3___json3_3.3.3.tgz"; 7790 path = fetchurl { 7791 + name = "json3___json3_3.3.3.tgz"; 7792 + url = "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz"; 7793 + sha1 = "7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"; 7794 }; 7795 } 7796 { ··· 7938 }; 7939 } 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 + { 7949 name = "killable___killable_1.0.1.tgz"; 7950 path = fetchurl { 7951 name = "killable___killable_1.0.1.tgz"; ··· 7978 }; 7979 } 7980 { 7981 + name = "kind_of___kind_of_6.0.3.tgz"; 7982 path = fetchurl { 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"; 7986 }; 7987 } 7988 { ··· 8018 }; 8019 } 8020 { 8021 name = "leven___leven_3.1.0.tgz"; 8022 path = fetchurl { 8023 name = "leven___leven_3.1.0.tgz"; ··· 8034 }; 8035 } 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 + { 8045 name = "levn___levn_0.3.0.tgz"; 8046 path = fetchurl { 8047 name = "levn___levn_0.3.0.tgz"; ··· 8119 name = "loader_runner___loader_runner_2.4.0.tgz"; 8120 url = "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz"; 8121 sha1 = "ed47066bfe534d7e84c4c7b9998c2a75607d9357"; 8122 }; 8123 } 8124 { ··· 8418 }; 8419 } 8420 { 8421 + name = "loglevel___loglevel_1.7.1.tgz"; 8422 path = fetchurl { 8423 + name = "loglevel___loglevel_1.7.1.tgz"; 8424 + url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.7.1.tgz"; 8425 + sha1 = "005fde2f5e6e47068f935ff28573e125ef72f197"; 8426 }; 8427 } 8428 { ··· 8498 }; 8499 } 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 + { 8509 name = "lz_string___lz_string_1.4.4.tgz"; 8510 path = fetchurl { 8511 name = "lz_string___lz_string_1.4.4.tgz"; ··· 8522 }; 8523 } 8524 { 8525 + name = "make_dir___make_dir_3.1.0.tgz"; 8526 path = fetchurl { 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"; 8530 }; 8531 } 8532 { ··· 8546 }; 8547 } 8548 { 8549 name = "map_cache___map_cache_0.2.2.tgz"; 8550 path = fetchurl { 8551 name = "map_cache___map_cache_0.2.2.tgz"; ··· 8698 }; 8699 } 8700 { 8701 name = "memory_fs___memory_fs_0.2.0.tgz"; 8702 path = fetchurl { 8703 name = "memory_fs___memory_fs_0.2.0.tgz"; ··· 8711 name = "memory_fs___memory_fs_0.4.1.tgz"; 8712 url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz"; 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"; 8722 }; 8723 } 8724 { ··· 8770 }; 8771 } 8772 { 8773 + name = "mermaid___mermaid_8.9.0.tgz"; 8774 path = fetchurl { 8775 + name = "mermaid___mermaid_8.9.0.tgz"; 8776 + url = "https://registry.yarnpkg.com/mermaid/-/mermaid-8.9.0.tgz"; 8777 + sha1 = "e569517863ab903aa5389cd746b68ca958a8ca7c"; 8778 }; 8779 } 8780 { ··· 8874 }; 8875 } 8876 { 8877 + name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; 8878 path = fetchurl { 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"; 8882 }; 8883 } 8884 { ··· 8906 }; 8907 } 8908 { 8909 name = "minimist___minimist_1.1.3.tgz"; 8910 path = fetchurl { 8911 name = "minimist___minimist_1.1.3.tgz"; ··· 8919 name = "minimist___minimist_1.2.5.tgz"; 8920 url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 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"; 8930 }; 8931 } 8932 { ··· 8962 }; 8963 } 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 + { 8973 name = "miragejs___miragejs_0.1.40.tgz"; 8974 path = fetchurl { 8975 name = "miragejs___miragejs_0.1.40.tgz"; ··· 9002 }; 9003 } 9004 { 9005 + name = "mkdirp___mkdirp_0.5.5.tgz"; 9006 path = fetchurl { 9007 + name = "mkdirp___mkdirp_0.5.5.tgz"; 9008 + url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz"; 9009 + sha1 = "d91cefd62d1436ca0f41620e251288d420099def"; 9010 }; 9011 } 9012 { ··· 9098 }; 9099 } 9100 { 9101 name = "nan___nan_2.14.1.tgz"; 9102 path = fetchurl { 9103 name = "nan___nan_2.14.1.tgz"; ··· 9162 }; 9163 } 9164 { 9165 + name = "node_fetch___node_fetch_2.6.1.tgz"; 9166 path = fetchurl { 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"; 9170 }; 9171 } 9172 { 9173 + name = "node_forge___node_forge_0.10.0.tgz"; 9174 path = fetchurl { 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"; 9178 }; 9179 } 9180 { ··· 9218 }; 9219 } 9220 { 9221 + name = "node_releases___node_releases_1.1.70.tgz"; 9222 path = fetchurl { 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"; 9226 }; 9227 } 9228 { ··· 9394 }; 9395 } 9396 { 9397 + name = "object_inspect___object_inspect_1.9.0.tgz"; 9398 path = fetchurl { 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"; 9402 }; 9403 } 9404 { ··· 9418 }; 9419 } 9420 { 9421 + name = "object.assign___object.assign_4.1.2.tgz"; 9422 path = fetchurl { 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"; 9426 }; 9427 } 9428 { 9429 + name = "object.entries___object.entries_1.1.3.tgz"; 9430 path = fetchurl { 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"; 9434 }; 9435 } 9436 { ··· 9442 }; 9443 } 9444 { 9445 + name = "object.values___object.values_1.1.2.tgz"; 9446 path = fetchurl { 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"; 9450 }; 9451 } 9452 { ··· 9530 }; 9531 } 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 + { 9541 name = "orderedmap___orderedmap_1.0.0.tgz"; 9542 path = fetchurl { 9543 name = "orderedmap___orderedmap_1.0.0.tgz"; ··· 9570 }; 9571 } 9572 { 9573 name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 9574 path = fetchurl { 9575 name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; ··· 9594 }; 9595 } 9596 { 9597 name = "p_each_series___p_each_series_2.1.0.tgz"; 9598 path = fetchurl { 9599 name = "p_each_series___p_each_series_2.1.0.tgz"; ··· 9607 name = "p_finally___p_finally_1.0.0.tgz"; 9608 url = "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz"; 9609 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; 9610 }; 9611 } 9612 { ··· 9658 }; 9659 } 9660 { 9661 + name = "p_map___p_map_4.0.0.tgz"; 9662 path = fetchurl { 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"; 9666 }; 9667 } 9668 { ··· 10026 }; 10027 } 10028 { 10029 name = "pkg_dir___pkg_dir_2.0.0.tgz"; 10030 path = fetchurl { 10031 name = "pkg_dir___pkg_dir_2.0.0.tgz"; ··· 10050 }; 10051 } 10052 { 10053 name = "pofile___pofile_1.0.11.tgz"; 10054 path = fetchurl { 10055 name = "pofile___pofile_1.0.11.tgz"; ··· 10074 }; 10075 } 10076 { 10077 + name = "portfinder___portfinder_1.0.28.tgz"; 10078 path = fetchurl { 10079 + name = "portfinder___portfinder_1.0.28.tgz"; 10080 + url = "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz"; 10081 + sha1 = "67c4622852bd5374dd1dd900f779f53462fac778"; 10082 }; 10083 } 10084 { ··· 10247 name = "postcss___postcss_7.0.30.tgz"; 10248 url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.30.tgz"; 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"; 10258 }; 10259 } 10260 { ··· 10650 }; 10651 } 10652 { 10653 + name = "querystringify___querystringify_2.2.0.tgz"; 10654 path = fetchurl { 10655 + name = "querystringify___querystringify_2.2.0.tgz"; 10656 + url = "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz"; 10657 + sha1 = "3345941b4153cb9d082d8eee4cda2016a9aef7f6"; 10658 }; 10659 } 10660 { ··· 10666 }; 10667 } 10668 { 10669 + name = "randombytes___randombytes_2.1.0.tgz"; 10670 path = fetchurl { 10671 + name = "randombytes___randombytes_2.1.0.tgz"; 10672 + url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz"; 10673 + sha1 = "df6f84372f0270dc65cdf6291349ab7a473d4f2a"; 10674 }; 10675 } 10676 { ··· 10706 }; 10707 } 10708 { 10709 + name = "raw_loader___raw_loader_4.0.2.tgz"; 10710 path = fetchurl { 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"; 10714 }; 10715 } 10716 { ··· 10890 }; 10891 } 10892 { 10893 + name = "regexpp___regexpp_3.1.0.tgz"; 10894 path = fetchurl { 10895 + name = "regexpp___regexpp_3.1.0.tgz"; 10896 + url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz"; 10897 + sha1 = "206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"; 10898 }; 10899 } 10900 { ··· 11050 }; 11051 } 11052 { 11053 + name = "require_from_string___require_from_string_2.0.2.tgz"; 11054 path = fetchurl { 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"; 11058 }; 11059 } 11060 { ··· 11170 }; 11171 } 11172 { 11173 name = "ret___ret_0.1.15.tgz"; 11174 path = fetchurl { 11175 name = "ret___ret_0.1.15.tgz"; ··· 11194 }; 11195 } 11196 { 11197 name = "rimraf___rimraf_2.6.3.tgz"; 11198 path = fetchurl { 11199 name = "rimraf___rimraf_2.6.3.tgz"; ··· 11242 }; 11243 } 11244 { 11245 name = "run_queue___run_queue_1.0.3.tgz"; 11246 path = fetchurl { 11247 name = "run_queue___run_queue_1.0.3.tgz"; ··· 11258 }; 11259 } 11260 { 11261 name = "safe_buffer___safe_buffer_5.1.2.tgz"; 11262 path = fetchurl { 11263 name = "safe_buffer___safe_buffer_5.1.2.tgz"; ··· 11338 }; 11339 } 11340 { 11341 + name = "schema_utils___schema_utils_3.0.0.tgz"; 11342 path = fetchurl { 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"; 11346 }; 11347 } 11348 { ··· 11378 }; 11379 } 11380 { 11381 + name = "selfsigned___selfsigned_1.10.8.tgz"; 11382 path = fetchurl { 11383 + name = "selfsigned___selfsigned_1.10.8.tgz"; 11384 + url = "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.8.tgz"; 11385 + sha1 = "0d17208b7d12c33f8eac85c41835f27fc3d81a30"; 11386 }; 11387 } 11388 { ··· 11410 }; 11411 } 11412 { 11413 + name = "semver___semver_7.3.4.tgz"; 11414 path = fetchurl { 11415 + name = "semver___semver_7.3.4.tgz"; 11416 + url = "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz"; 11417 + sha1 = "27aaa7d2e4ca76452f98d3add093a72c943edc97"; 11418 }; 11419 } 11420 { ··· 11447 name = "serialize_javascript___serialize_javascript_2.1.2.tgz"; 11448 url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz"; 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"; 11458 }; 11459 } 11460 { ··· 11626 }; 11627 } 11628 { 11629 + name = "slice_ansi___slice_ansi_4.0.0.tgz"; 11630 path = fetchurl { 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"; 11634 }; 11635 } 11636 { ··· 11698 }; 11699 } 11700 { 11701 + name = "sockjs_client___sockjs_client_1.5.0.tgz"; 11702 path = fetchurl { 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"; 11706 }; 11707 } 11708 { 11709 + name = "sockjs___sockjs_0.3.21.tgz"; 11710 path = fetchurl { 11711 + name = "sockjs___sockjs_0.3.21.tgz"; 11712 + url = "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.21.tgz"; 11713 + sha1 = "b34ffb98e796930b60a0cfa11904d6a339a7d417"; 11714 }; 11715 } 11716 { ··· 11834 }; 11835 } 11836 { 11837 + name = "spdy___spdy_4.0.2.tgz"; 11838 path = fetchurl { 11839 + name = "spdy___spdy_4.0.2.tgz"; 11840 + url = "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz"; 11841 + sha1 = "b74f466203a3eda452c02492b91fb9e84a27677b"; 11842 }; 11843 } 11844 { ··· 11890 }; 11891 } 11892 { 11893 + name = "ssri___ssri_8.0.0.tgz"; 11894 path = fetchurl { 11895 + name = "ssri___ssri_8.0.0.tgz"; 11896 + url = "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz"; 11897 + sha1 = "79ca74e21f8ceaeddfcb4b90143c458b8d988808"; 11898 }; 11899 } 11900 { ··· 11951 name = "stealthy_require___stealthy_require_1.1.1.tgz"; 11952 url = "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz"; 11953 sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b"; 11954 }; 11955 } 11956 { ··· 12018 }; 12019 } 12020 { 12021 name = "string_width___string_width_3.1.0.tgz"; 12022 path = fetchurl { 12023 name = "string_width___string_width_3.1.0.tgz"; ··· 12034 }; 12035 } 12036 { 12037 + name = "string.prototype.trimend___string.prototype.trimend_1.0.3.tgz"; 12038 path = fetchurl { 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"; 12042 }; 12043 } 12044 { 12045 + name = "string.prototype.trimstart___string.prototype.trimstart_1.0.3.tgz"; 12046 path = fetchurl { 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"; 12050 }; 12051 } 12052 { ··· 12130 }; 12131 } 12132 { 12133 name = "strip_eof___strip_eof_1.0.0.tgz"; 12134 path = fetchurl { 12135 name = "strip_eof___strip_eof_1.0.0.tgz"; ··· 12162 }; 12163 } 12164 { 12165 + name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; 12166 path = fetchurl { 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"; 12170 }; 12171 } 12172 { ··· 12218 }; 12219 } 12220 { 12221 + name = "stylis___stylis_3.5.4.tgz"; 12222 path = fetchurl { 12223 + name = "stylis___stylis_3.5.4.tgz"; 12224 + url = "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz"; 12225 + sha1 = "f665f25f5e299cf3d64654ab949a57c768b73fbe"; 12226 }; 12227 } 12228 { 12229 + name = "sugarss___sugarss_2.0.0.tgz"; 12230 path = fetchurl { 12231 + name = "sugarss___sugarss_2.0.0.tgz"; 12232 + url = "https://registry.yarnpkg.com/sugarss/-/sugarss-2.0.0.tgz"; 12233 + sha1 = "ddd76e0124b297d40bf3cca31c8b22ecb43bc61d"; 12234 }; 12235 } 12236 { ··· 12247 name = "supports_color___supports_color_5.5.0.tgz"; 12248 url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; 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"; 12258 }; 12259 } 12260 { ··· 12314 }; 12315 } 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 + { 12325 name = "taffydb___taffydb_2.6.2.tgz"; 12326 path = fetchurl { 12327 name = "taffydb___taffydb_2.6.2.tgz"; ··· 12351 name = "tar___tar_2.2.2.tgz"; 12352 url = "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz"; 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"; 12362 }; 12363 } 12364 { ··· 12463 name = "through2___through2_2.0.5.tgz"; 12464 url = "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz"; 12465 sha1 = "01c1e39eb31d07cb7d03a96a70823260b23132cd"; 12466 }; 12467 } 12468 { ··· 12754 }; 12755 } 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 + { 12765 name = "tslib___tslib_1.13.0.tgz"; 12766 path = fetchurl { 12767 name = "tslib___tslib_1.13.0.tgz"; ··· 12802 }; 12803 } 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 + { 12813 name = "type_check___type_check_0.3.2.tgz"; 12814 path = fetchurl { 12815 name = "type_check___type_check_0.3.2.tgz"; ··· 12823 name = "type_detect___type_detect_4.0.8.tgz"; 12824 url = "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz"; 12825 sha1 = "7646fb5f18871cfbb7749e69bd39a6388eb7450c"; 12826 }; 12827 } 12828 { ··· 12866 }; 12867 } 12868 { 12869 + name = "typescript___typescript_4.1.5.tgz"; 12870 path = fetchurl { 12871 + name = "typescript___typescript_4.1.5.tgz"; 12872 + url = "https://registry.yarnpkg.com/typescript/-/typescript-4.1.5.tgz"; 12873 + sha1 = "123a3b214aaff3be32926f0d8f1f6e704eb89a72"; 12874 }; 12875 } 12876 { ··· 13138 }; 13139 } 13140 { 13141 + name = "url_parse___url_parse_1.4.7.tgz"; 13142 path = fetchurl { 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"; 13146 }; 13147 } 13148 { ··· 13250 }; 13251 } 13252 { 13253 + name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 13254 path = fetchurl { 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"; 13258 }; 13259 } 13260 { ··· 13442 }; 13443 } 13444 { 13445 + name = "vue_eslint_parser___vue_eslint_parser_7.4.1.tgz"; 13446 path = fetchurl { 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"; 13450 }; 13451 } 13452 { ··· 13586 }; 13587 } 13588 { 13589 + name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz"; 13590 path = fetchurl { 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"; 13594 }; 13595 } 13596 { 13597 + name = "watchpack___watchpack_1.7.5.tgz"; 13598 path = fetchurl { 13599 + name = "watchpack___watchpack_1.7.5.tgz"; 13600 + url = "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz"; 13601 + sha1 = "1267e6c55e0b9b5be44c2023aed5437a2c26c453"; 13602 }; 13603 } 13604 { ··· 13634 }; 13635 } 13636 { 13637 + name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.9.0.tgz"; 13638 path = fetchurl { 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"; 13642 }; 13643 } 13644 { 13645 + name = "webpack_cli___webpack_cli_3.3.12.tgz"; 13646 path = fetchurl { 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"; 13650 }; 13651 } 13652 { ··· 13658 }; 13659 } 13660 { 13661 + name = "webpack_dev_server___webpack_dev_server_3.11.2.tgz"; 13662 path = fetchurl { 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"; 13666 }; 13667 } 13668 { ··· 13690 }; 13691 } 13692 { 13693 + name = "webpack___webpack_4.46.0.tgz"; 13694 path = fetchurl { 13695 + name = "webpack___webpack_4.46.0.tgz"; 13696 + url = "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz"; 13697 + sha1 = "bf9b4404ea20a073605e0a011d188d77cb6ad542"; 13698 }; 13699 } 13700 { 13701 + name = "websocket_driver___websocket_driver_0.7.4.tgz"; 13702 path = fetchurl { 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"; 13706 }; 13707 } 13708 { ··· 13807 name = "worker_loader___worker_loader_2.0.0.tgz"; 13808 url = "https://registry.yarnpkg.com/worker-loader/-/worker-loader-2.0.0.tgz"; 13809 sha1 = "45fda3ef76aca815771a89107399ee4119b430ac"; 13810 }; 13811 } 13812 { ··· 14042 }; 14043 } 14044 { 14045 name = "yargs_parser___yargs_parser_13.1.2.tgz"; 14046 path = fetchurl { 14047 name = "yargs_parser___yargs_parser_13.1.2.tgz"; ··· 14055 name = "yargs_parser___yargs_parser_18.1.3.tgz"; 14056 url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz"; 14057 sha1 = "be68c4975c6b2abf469236b0c870362fab09a7b0"; 14058 }; 14059 } 14060 { ··· 14114 }; 14115 } 14116 { 14117 + name = "zrender___zrender_4.3.2.tgz"; 14118 path = fetchurl { 14119 + name = "zrender___zrender_4.3.2.tgz"; 14120 + url = "https://registry.yarnpkg.com/zrender/-/zrender-4.3.2.tgz"; 14121 + sha1 = "ec7432f9415c82c73584b6b7b8c47e1b016209c6"; 14122 }; 14123 } 14124 ];
+4 -1
pkgs/development/haskell-modules/configuration-common.nix
··· 946 947 # Generate shell completion. 948 cabal2nix = generateOptparseApplicativeCompletion "cabal2nix" super.cabal2nix; 949 - niv = generateOptparseApplicativeCompletion "niv" super.niv; 950 ormolu = generateOptparseApplicativeCompletion "ormolu" super.ormolu; 951 stack = generateOptparseApplicativeCompletion "stack" super.stack; 952
··· 946 947 # Generate shell completion. 948 cabal2nix = generateOptparseApplicativeCompletion "cabal2nix" super.cabal2nix; 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 + })); 953 ormolu = generateOptparseApplicativeCompletion "ormolu" super.ormolu; 954 stack = generateOptparseApplicativeCompletion "stack" super.stack; 955
+1
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 2753 - haskell-lsp == 0.23.0.0 # required by hls-plugin-api 0.7.0.0, 2021-02-08 2754 - haskell-lsp-types == 0.23.0.0 # required by hls-plugin-api 0.7.0.0, 2021-02-08 2755 - lsp-test == 0.11.0.7 # required by hls-plugin-api 0.7.0.0, 2021-02-08 2756 2757 package-maintainers: 2758 peti:
··· 2753 - haskell-lsp == 0.23.0.0 # required by hls-plugin-api 0.7.0.0, 2021-02-08 2754 - haskell-lsp-types == 0.23.0.0 # required by hls-plugin-api 0.7.0.0, 2021-02-08 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 2757 2758 package-maintainers: 2759 peti:
+19
pkgs/development/haskell-modules/hackage-packages.nix
··· 192102 broken = true; 192103 }) {}; 192104 192105 "optparse-applicative" = callPackage 192106 ({ mkDerivation, ansi-wl-pprint, base, process, QuickCheck 192107 , transformers, transformers-compat
··· 192102 broken = true; 192103 }) {}; 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 + 192124 "optparse-applicative" = callPackage 192125 ({ mkDerivation, ansi-wl-pprint, base, process, QuickCheck 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 '' else '' 91 substituteInPlace src/3rdparty/chromium/base/mac/mach_port_broker.mm \ 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 - ''); 98 99 NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isGNU [ 100 # with gcc8, -Wclass-memaccess became part of -Wall and this exceeds the logging limit ··· 190 191 buildInputs = optionals stdenv.isDarwin (with darwin; [ 192 cups 193 194 # `sw_vers` is used by `src/3rdparty/chromium/build/config/mac/sdk_info.py` 195 # to get some information about the host platform. ··· 205 shift 206 done 207 '') 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 ]); 214 - 215 - __impureHostDeps = optional stdenv.isDarwin "/usr/lib/libsandbox.1.dylib"; 216 217 dontUseNinjaBuild = true; 218 dontUseNinjaInstall = true;
··· 90 '' else '' 91 substituteInPlace src/3rdparty/chromium/base/mac/mach_port_broker.mm \ 92 --replace "audit_token_to_pid(msg.trailer.msgh_audit)" "msg.trailer.msgh_audit.val[5]" 93 + '')); 94 95 NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isGNU [ 96 # with gcc8, -Wclass-memaccess became part of -Wall and this exceeds the logging limit ··· 186 187 buildInputs = optionals stdenv.isDarwin (with darwin; [ 188 cups 189 + apple_sdk.libs.sandbox 190 191 # `sw_vers` is used by `src/3rdparty/chromium/build/config/mac/sdk_info.py` 192 # to get some information about the host platform. ··· 202 shift 203 done 204 '') 205 ]); 206 207 dontUseNinjaBuild = true; 208 dontUseNinjaInstall = true;
+4 -5
pkgs/development/python-modules/APScheduler/default.nix
··· 11 , tornado 12 , twisted 13 , mock 14 - , trollius 15 , gevent 16 , six 17 , pytz 18 , tzlocal 19 , funcsigs 20 - , futures 21 , setuptools 22 - , isPy3k 23 }: 24 25 buildPythonPackage rec { 26 pname = "APScheduler"; 27 version = "3.7.0"; 28 29 src = fetchPypi { 30 inherit pname version; ··· 45 twisted 46 mock 47 gevent 48 - ] ++ lib.optionals (!isPy3k) [ trollius ]; 49 50 propagatedBuildInputs = [ 51 six ··· 53 tzlocal 54 funcsigs 55 setuptools 56 - ] ++ lib.optional (!isPy3k) futures; 57 58 disabledTests = lib.optionals stdenv.isDarwin [ 59 "test_submit_job"
··· 11 , tornado 12 , twisted 13 , mock 14 , gevent 15 , six 16 , pytz 17 , tzlocal 18 , funcsigs 19 , setuptools 20 + , pythonOlder 21 }: 22 23 buildPythonPackage rec { 24 pname = "APScheduler"; 25 version = "3.7.0"; 26 + disabled = pythonOlder "3.7"; 27 28 src = fetchPypi { 29 inherit pname version; ··· 44 twisted 45 mock 46 gevent 47 + ]; 48 49 propagatedBuildInputs = [ 50 six ··· 52 tzlocal 53 funcsigs 54 setuptools 55 + ]; 56 57 disabledTests = lib.optionals stdenv.isDarwin [ 58 "test_submit_job"
+17 -14
pkgs/development/tools/literate-programming/noweb/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, gawk, groff, icon-lang ? null }: 2 3 - let noweb = stdenv.mkDerivation rec { 4 pname = "noweb"; 5 version = "2.12"; 6 ··· 11 sha256 = "1160i2ghgzqvnb44kgwd6s3p4jnk9668rmc15jlcwl7pdf3xqm95"; 12 }; 13 14 - patches = [ ./no-FAQ.patch ]; 15 16 nativeBuildInputs = [ groff ] ++ lib.optionals (!isNull icon-lang) [ icon-lang ]; 17 18 preBuild = '' 19 mkdir -p "$out/lib/noweb" 20 - cd src 21 ''; 22 23 makeFlags = lib.optionals (!isNull icon-lang) [ 24 "LIBSRC=icon" 25 "ICONC=icont" 26 - ] ++ lib.optionals stdenv.isDarwin [ 27 - "CC=clang" 28 - ]; 29 - 30 - 31 - installFlags = [ 32 - ]; 33 34 preInstall = '' 35 mkdir -p "$tex/tex/latex/noweb" ··· 50 for f in $out/bin/no{index,roff,roots,untangle,web} \ 51 $out/lib/noweb/to{ascii,html,roff,tex} \ 52 $out/lib/noweb/{bt,empty}defn \ 53 - $out/lib/noweb/{noidx,unmarkup}; do 54 # NOTE: substituteInPlace breaks Icon binaries, so make sure the script 55 # uses (n)awk before calling. 56 if grep -q nawk "$f"; then 57 - substituteInPlace "$f" --replace "nawk" "${gawk}/bin/awk" 58 fi 59 done 60 ··· 77 maintainers = with maintainers; [ yurrriq ]; 78 platforms = with platforms; linux ++ darwin; 79 }; 80 - }; in noweb
··· 1 + { lib, stdenv, fetchFromGitHub, nawk, groff, icon-lang }: 2 3 + lib.fix (noweb: stdenv.mkDerivation rec { 4 pname = "noweb"; 5 version = "2.12"; 6 ··· 11 sha256 = "1160i2ghgzqvnb44kgwd6s3p4jnk9668rmc15jlcwl7pdf3xqm95"; 12 }; 13 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 + ''; 24 25 nativeBuildInputs = [ groff ] ++ lib.optionals (!isNull icon-lang) [ icon-lang ]; 26 + buildInputs = [ nawk ]; 27 28 preBuild = '' 29 mkdir -p "$out/lib/noweb" 30 ''; 31 32 makeFlags = lib.optionals (!isNull icon-lang) [ 33 "LIBSRC=icon" 34 "ICONC=icont" 35 + ] ++ [ "CC=${stdenv.cc.targetPrefix}cc" ]; 36 37 preInstall = '' 38 mkdir -p "$tex/tex/latex/noweb" ··· 53 for f in $out/bin/no{index,roff,roots,untangle,web} \ 54 $out/lib/noweb/to{ascii,html,roff,tex} \ 55 $out/lib/noweb/{bt,empty}defn \ 56 + $out/lib/noweb/{noidx,pipedocs,unmarkup}; do 57 # NOTE: substituteInPlace breaks Icon binaries, so make sure the script 58 # uses (n)awk before calling. 59 if grep -q nawk "$f"; then 60 + substituteInPlace "$f" --replace "nawk" "${nawk}/bin/awk" 61 fi 62 done 63 ··· 80 maintainers = with maintainers; [ yurrriq ]; 81 platforms = with platforms; linux ++ darwin; 82 }; 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 3 @@ -198,7 +198,7 @@ 4 (cd elisp; ci -l $(CINAME) $(CIMSG) *.el) 5 ci -l $(CINAME) $(CIMSG) Makefile.nw INSTALL INSTALL.DOS README FAQ COPYRIGHT nwmake *.nw
··· 1 + --- a/Makefile 2006-06-12 22:14:20.000000000 +0200 2 + +++ b/Makefile 2010-06-17 11:30:11.804018145 +0200 3 @@ -198,7 +198,7 @@ 4 (cd elisp; ci -l $(CINAME) $(CIMSG) *.el) 5 ci -l $(CINAME) $(CIMSG) Makefile.nw INSTALL INSTALL.DOS README FAQ COPYRIGHT nwmake *.nw
+2 -2
pkgs/development/tools/minizinc/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, cmake, flex, bison }: 2 let 3 - version = "2.5.3"; 4 in 5 stdenv.mkDerivation { 6 pname = "minizinc"; ··· 12 owner = "MiniZinc"; 13 repo = "libminizinc"; 14 rev = version; 15 - sha256 = "1kc65sxkc64pr560qaaznc44jnlvq7pbpzwijad410lpcnna5byg"; 16 }; 17 18 meta = with lib; {
··· 1 { lib, stdenv, fetchFromGitHub, cmake, flex, bison }: 2 let 3 + version = "2.5.4"; 4 in 5 stdenv.mkDerivation { 6 pname = "minizinc"; ··· 12 owner = "MiniZinc"; 13 repo = "libminizinc"; 14 rev = version; 15 + sha256 = "sha256-/vJyh2WdESimJTCASsg6xjVzG2EkL4V87B+xvIUBcMM="; 16 }; 17 18 meta = with lib; {
+2 -2
pkgs/development/web/insomnia/default.nix
··· 16 ]; 17 in stdenv.mkDerivation rec { 18 pname = "insomnia"; 19 - version = "2021.1.0"; 20 21 src = fetchurl { 22 url = 23 "https://github.com/Kong/insomnia/releases/download/core%40${version}/Insomnia.Core-${version}.deb"; 24 - sha256 = "sha256-3T334t+Oje6LOzUBqQCK6wdJ/4Mi4WLmW5vcHig8zj4="; 25 }; 26 27 nativeBuildInputs =
··· 16 ]; 17 in stdenv.mkDerivation rec { 18 pname = "insomnia"; 19 + version = "2021.1.1"; 20 21 src = fetchurl { 22 url = 23 "https://github.com/Kong/insomnia/releases/download/core%40${version}/Insomnia.Core-${version}.deb"; 24 + sha256 = "sha256-GPOeLSbKiaJR5ppzyJMllzM+2gSddZN7+P5ttkocuDg="; 25 }; 26 27 nativeBuildInputs =
+2 -2
pkgs/games/steam/steam.nix
··· 2 3 let 4 traceLog = "/tmp/steam-trace-dependencies.log"; 5 - version = "1.0.0.68"; 6 7 in stdenv.mkDerivation { 8 pname = "steam-original"; ··· 10 11 src = fetchurl { 12 url = "https://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz"; 13 - sha256 = "sha256-ZeiCYjxnH0Ath5bB20QHmE8R3wU4/3RiAw2NUhrrKNM="; 14 }; 15 16 makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
··· 2 3 let 4 traceLog = "/tmp/steam-trace-dependencies.log"; 5 + version = "1.0.0.69"; 6 7 in stdenv.mkDerivation { 8 pname = "steam-original"; ··· 10 11 src = fetchurl { 12 url = "https://repo.steampowered.com/steam/pool/steam/s/steam/steam_${version}.tar.gz"; 13 + sha256 = "sha256-b5g4AUprE/lTunJs59IDlGu5O/1dB0kBvCFq0Eqyx2c="; 14 }; 15 16 makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
+33 -4
pkgs/misc/drivers/epkowa/default.nix
··· 13 , rpm 14 , cpio 15 , getopt 16 - , patchelf 17 , autoPatchelfHook 18 , gcc 19 }: ··· 98 hw = "Perfection V37/V370"; 99 }; 100 meta = common_meta // { description = "Plugin to support " + passthru.hw + " scanner in sane"; }; 101 }; 102 x770 = stdenv.mkDerivation rec { 103 pname = "iscan-gt-x770-bundle"; ··· 295 sha256 = "1ma76jj0k3bz0fy06fiyl4di4y77rcryb0mwjmzs5ms2vq9rjysr"; 296 }; 297 298 - nativeBuildInputs = [ pkg-config ]; 299 buildInputs = [ 300 gtk2 301 libxml2 302 - libtool 303 libusb-compat-0_1 304 sane-backends 305 - makeWrapper 306 ]; 307 308 patches = [ 309 (fetchpatch { 310 urls = [ 311 "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-gfx/iscan/files/iscan-2.28.1.3+libpng-1.5.patch?h=b6e4c805d53b49da79a0f64ef16bb82d6d800fcf" ··· 313 ]; 314 sha256 = "04y70qjd220dpyh771fiq50lha16pms98mfigwjczdfmx6kpj1jd"; 315 }) 316 ./firmware_location.patch 317 ./sscanf.patch 318 ]; 319 patchFlags = [ "-p0" ];
··· 13 , rpm 14 , cpio 15 , getopt 16 , autoPatchelfHook 17 , gcc 18 }: ··· 97 hw = "Perfection V37/V370"; 98 }; 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; }; 129 }; 130 x770 = stdenv.mkDerivation rec { 131 pname = "iscan-gt-x770-bundle"; ··· 323 sha256 = "1ma76jj0k3bz0fy06fiyl4di4y77rcryb0mwjmzs5ms2vq9rjysr"; 324 }; 325 326 + nativeBuildInputs = [ pkg-config libtool makeWrapper ]; 327 buildInputs = [ 328 gtk2 329 libxml2 330 libusb-compat-0_1 331 sane-backends 332 ]; 333 334 patches = [ 335 + # Patch for compatibility with libpng versions greater than 10499 336 (fetchpatch { 337 urls = [ 338 "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-gfx/iscan/files/iscan-2.28.1.3+libpng-1.5.patch?h=b6e4c805d53b49da79a0f64ef16bb82d6d800fcf" ··· 340 ]; 341 sha256 = "04y70qjd220dpyh771fiq50lha16pms98mfigwjczdfmx6kpj1jd"; 342 }) 343 + # Patch iscan to search appropriate folders for firmware files 344 ./firmware_location.patch 345 + # Patch deprecated use of sscanf code to use a more modern C99 compatible version 346 ./sscanf.patch 347 ]; 348 patchFlags = [ "-p0" ];
+3 -2
pkgs/misc/emulators/snes9x-gtk/default.nix
··· 19 preConfigure = "cd gtk"; 20 21 meta = with lib; { 22 - homepage = "http://www.snes9x.com"; 23 description = "Super Nintendo Entertainment System (SNES) emulator"; 24 25 longDescription = '' ··· 29 includes some real gems that were only ever released in Japan. 30 ''; 31 32 - license = licenses.lgpl2; 33 maintainers = with maintainers; [ qknight ]; 34 platforms = platforms.linux; 35 };
··· 19 preConfigure = "cd gtk"; 20 21 meta = with lib; { 22 + homepage = "https://www.snes9x.com"; 23 description = "Super Nintendo Entertainment System (SNES) emulator"; 24 25 longDescription = '' ··· 29 includes some real gems that were only ever released in Japan. 30 ''; 31 32 + # see https://github.com/snes9xgit/snes9x/blob/master/LICENSE for exact details 33 + license = licenses.unfreeRedistributable; 34 maintainers = with maintainers; [ qknight ]; 35 platforms = platforms.linux; 36 };
+12
pkgs/os-specific/darwin/apple-sdk/default.nix
··· 241 popd >/dev/null 242 ''; 243 }; 244 }; 245 246 overrides = super: {
··· 241 popd >/dev/null 242 ''; 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 + }; 256 }; 257 258 overrides = super: {
+2 -2
pkgs/os-specific/linux/ell/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "ell"; 10 - version = "0.36"; 11 12 outputs = [ "out" "dev" ]; 13 14 src = fetchgit { 15 url = "https://git.kernel.org/pub/scm/libs/${pname}/${pname}.git"; 16 rev = version; 17 - sha256 = "0w7v2hihwwmnqd56bsmbjsiw8yyadr7zbdssjamqxx0pyl3dnrda"; 18 }; 19 20 nativeBuildInputs = [
··· 7 8 stdenv.mkDerivation rec { 9 pname = "ell"; 10 + version = "0.38"; 11 12 outputs = [ "out" "dev" ]; 13 14 src = fetchgit { 15 url = "https://git.kernel.org/pub/scm/libs/${pname}/${pname}.git"; 16 rev = version; 17 + sha256 = "sha256-UR6NHIO/L/QbuVerXe32RNT33wwrDvIZpV6nlYaImI8="; 18 }; 19 20 nativeBuildInputs = [
+3 -4
pkgs/os-specific/linux/iwd/default.nix
··· 1 { lib, stdenv 2 , fetchgit 3 - , fetchpatch 4 , autoreconfHook 5 , pkg-config 6 , ell ··· 13 14 stdenv.mkDerivation rec { 15 pname = "iwd"; 16 - version = "1.11"; 17 18 src = fetchgit { 19 url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git"; 20 rev = version; 21 - sha256 = "0wnyg0f1swi7gvvgf5kzbiz44g2wscf5d5bp320iwyfwnlbqb1bn"; 22 }; 23 24 outputs = [ "out" "man" ] ··· 88 meta = with lib; { 89 homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git"; 90 description = "Wireless daemon for Linux"; 91 - license = licenses.lgpl21; 92 platforms = platforms.linux; 93 maintainers = with maintainers; [ dtzWill fpletz ]; 94 };
··· 1 { lib, stdenv 2 , fetchgit 3 , autoreconfHook 4 , pkg-config 5 , ell ··· 12 13 stdenv.mkDerivation rec { 14 pname = "iwd"; 15 + version = "1.12"; 16 17 src = fetchgit { 18 url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git"; 19 rev = version; 20 + sha256 = "sha256-o3Vc5p/AFZwbkEWJZzO6wWAJ/BmSh0eKxdnjm5B9BFU="; 21 }; 22 23 outputs = [ "out" "man" ] ··· 87 meta = with lib; { 88 homepage = "https://git.kernel.org/pub/scm/network/wireless/iwd.git"; 89 description = "Wireless daemon for Linux"; 90 + license = licenses.lgpl21Plus; 91 platforms = platforms.linux; 92 maintainers = with maintainers; [ dtzWill fpletz ]; 93 };
+8 -1
pkgs/servers/home-assistant/appdaemon.nix
··· 6 let 7 python = python3.override { 8 packageOverrides = self: super: { 9 bcrypt = super.bcrypt.overridePythonAttrs (oldAttrs: rec { 10 version = "3.1.7"; 11 src = oldAttrs.src.override { ··· 62 --replace "sockjs==0.10.0" "sockjs" \ 63 --replace "deepdiff==4.3.1" "deepdiff" \ 64 --replace "voluptuous==0.11.7" "voluptuous" \ 65 - --replace "astral==1.10.1" "astral" \ 66 --replace "python-socketio==4.4.0" "python-socketio" \ 67 --replace "feedparser==5.2.1" "feedparser>=5.2.1" \ 68 --replace "aiohttp_jinja2==1.2.0" "aiohttp_jinja2>=1.2.0" \
··· 6 let 7 python = python3.override { 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 + 17 bcrypt = super.bcrypt.overridePythonAttrs (oldAttrs: rec { 18 version = "3.1.7"; 19 src = oldAttrs.src.override { ··· 70 --replace "sockjs==0.10.0" "sockjs" \ 71 --replace "deepdiff==4.3.1" "deepdiff" \ 72 --replace "voluptuous==0.11.7" "voluptuous" \ 73 --replace "python-socketio==4.4.0" "python-socketio" \ 74 --replace "feedparser==5.2.1" "feedparser>=5.2.1" \ 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 12 stdenv.mkDerivation rec { 13 pname = "haproxy"; 14 - version = "2.3.6"; 15 16 src = fetchurl { 17 url = "https://www.haproxy.org/download/${lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz"; 18 - sha256 = "sha256-bUYg5dodk+118ikBEhbbgdUJe2i/F14wny+rKJC7oDY="; 19 }; 20 21 buildInputs = [ openssl zlib ]
··· 11 12 stdenv.mkDerivation rec { 13 pname = "haproxy"; 14 + version = "2.3.7"; 15 16 src = fetchurl { 17 url = "https://www.haproxy.org/download/${lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz"; 18 + sha256 = "sha256-Mbp6zQ14NnxxtW5Kh8nxHNI1/FYCvFuEaQd5Eg4KMFs="; 19 }; 20 21 buildInputs = [ openssl zlib ]
+2 -2
pkgs/tools/system/nq/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "nq"; 5 - version = "0.3.1"; 6 src = fetchFromGitHub { 7 owner = "chneukirchen"; 8 repo = "nq"; 9 rev = "v${version}"; 10 - sha256 = "1db96ykz35r273jyhf7cdknqk4p2jj9l8gbz7pjy1hq4pb6ffk99"; 11 }; 12 makeFlags = [ "PREFIX=$(out)" ]; 13 postPatch = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "nq"; 5 + version = "0.4"; 6 src = fetchFromGitHub { 7 owner = "chneukirchen"; 8 repo = "nq"; 9 rev = "v${version}"; 10 + sha256 = "sha256-UfCeHwOD+tG6X2obW64DYZr6j90yh1Yl7My4ur+sqmk="; 11 }; 12 makeFlags = [ "PREFIX=$(out)" ]; 13 postPatch = ''
+13 -11
pkgs/tools/text/nawk/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, yacc }: 2 3 stdenv.mkDerivation rec { 4 pname = "nawk"; 5 - version = "20180827"; 6 7 src = fetchFromGitHub { 8 owner = "onetrueawk"; 9 repo = "awk"; 10 - rev = version; 11 - sha256 = "0qcsxhcwg6g3c0zxmbipqa8d8d5n8zxrq0hymb8yavsaz103fcl6"; 12 }; 13 14 - nativeBuildInputs = [ yacc ]; 15 - 16 - patchPhase = '' 17 - substituteInPlace ./makefile \ 18 - --replace "YACC = yacc -d -S" "" 19 - ''; 20 21 installPhase = '' 22 install -Dm755 a.out "$out/bin/nawk" 23 install -Dm644 awk.1 "$out/share/man/man1/nawk.1" 24 ''; 25 26 meta = { ··· 33 homepage = "https://www.cs.princeton.edu/~bwk/btl.mirror/"; 34 license = lib.licenses.mit; 35 maintainers = [ lib.maintainers.konimex ]; 36 - platforms = lib.platforms.linux; 37 }; 38 }
··· 1 + { lib, stdenv, fetchFromGitHub, bison, buildPackages }: 2 3 stdenv.mkDerivation rec { 4 pname = "nawk"; 5 + version = "unstable-2021-02-15"; 6 7 src = fetchFromGitHub { 8 owner = "onetrueawk"; 9 repo = "awk"; 10 + rev = "c0f4e97e4561ff42544e92512bbaf3d7d1f6a671"; 11 + sha256 = "kQCvItpSJnDJMDvlB8ruY+i0KdjmAphRDqCKw8f0m/8="; 12 }; 13 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 21 installPhase = '' 22 + runHook preInstall 23 install -Dm755 a.out "$out/bin/nawk" 24 install -Dm644 awk.1 "$out/share/man/man1/nawk.1" 25 + runHook postInstall 26 ''; 27 28 meta = { ··· 35 homepage = "https://www.cs.princeton.edu/~bwk/btl.mirror/"; 36 license = lib.licenses.mit; 37 maintainers = [ lib.maintainers.konimex ]; 38 + platforms = lib.platforms.all; 39 }; 40 }
+6
pkgs/top-level/all-packages.nix
··· 2531 2532 hid-listen = callPackage ../tools/misc/hid-listen { }; 2533 2534 hocr-tools = with python3Packages; toPythonApplication hocr-tools; 2535 2536 home-manager = callPackage ../tools/package-management/home-manager {}; ··· 8185 8186 stubby = callPackage ../tools/networking/stubby { }; 8187 8188 surface-control = callPackage ../applications/misc/surface-control { }; 8189 8190 syntex = callPackage ../tools/graphics/syntex {}; ··· 11786 tcl-8_6 = callPackage ../development/interpreters/tcl/8.6.nix { }; 11787 11788 tclreadline = callPackage ../development/interpreters/tclreadline { }; 11789 11790 wasm = ocamlPackages.wasm; 11791
··· 2531 2532 hid-listen = callPackage ../tools/misc/hid-listen { }; 2533 2534 + hidrd = callPackage ../tools/misc/hidrd { }; 2535 + 2536 hocr-tools = with python3Packages; toPythonApplication hocr-tools; 2537 2538 home-manager = callPackage ../tools/package-management/home-manager {}; ··· 8187 8188 stubby = callPackage ../tools/networking/stubby { }; 8189 8190 + sunwait = callPackage ../applications/misc/sunwait { }; 8191 + 8192 surface-control = callPackage ../applications/misc/surface-control { }; 8193 8194 syntex = callPackage ../tools/graphics/syntex {}; ··· 11790 tcl-8_6 = callPackage ../development/interpreters/tcl/8.6.nix { }; 11791 11792 tclreadline = callPackage ../development/interpreters/tclreadline { }; 11793 + 11794 + trealla = callPackage ../development/interpreters/trealla { }; 11795 11796 wasm = ocamlPackages.wasm; 11797