Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub ca9fb66e 57d7a7ac

+11077 -1372
+3 -3
.github/CODEOWNERS
··· 97 /pkgs/top-level/haskell-packages.nix @cdepillabout @sternenseemann @maralorn @expipiplus1 98 99 # Perl 100 - /pkgs/development/interpreters/perl @volth @stigtsp 101 - /pkgs/top-level/perl-packages.nix @volth @stigtsp 102 - /pkgs/development/perl-modules @volth @stigtsp 103 104 # R 105 /pkgs/applications/science/math/R @jbedo @bcdarwin
··· 97 /pkgs/top-level/haskell-packages.nix @cdepillabout @sternenseemann @maralorn @expipiplus1 98 99 # Perl 100 + /pkgs/development/interpreters/perl @volth @stigtsp @zakame 101 + /pkgs/top-level/perl-packages.nix @volth @stigtsp @zakame 102 + /pkgs/development/perl-modules @volth @stigtsp @zakame 103 104 # R 105 /pkgs/applications/science/math/R @jbedo @bcdarwin
+6
maintainers/maintainer-list.nix
··· 8709 githubId = 13225611; 8710 name = "Nicolas Martin"; 8711 }; 8712 p3psi = { 8713 name = "Elliot Boo"; 8714 email = "p3psi.boo@gmail.com";
··· 8709 githubId = 13225611; 8710 name = "Nicolas Martin"; 8711 }; 8712 + pennae = { 8713 + name = "pennae"; 8714 + email = "github@quasiparticle.net"; 8715 + github = "pennae"; 8716 + githubId = 82953136; 8717 + }; 8718 p3psi = { 8719 name = "Elliot Boo"; 8720 email = "p3psi.boo@gmail.com";
+14
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 63 </listitem> 64 <listitem> 65 <para> 66 bash now defaults to major version 5. 67 </para> 68 </listitem> ··· 1118 by default. Both packages now support an 1119 <literal>enableUnfree</literal> option to re-enable this 1120 functionality. 1121 </para> 1122 </listitem> 1123 </itemizedlist>
··· 63 </listitem> 64 <listitem> 65 <para> 66 + KDE Plasma now finally works on Wayland. 67 + </para> 68 + </listitem> 69 + <listitem> 70 + <para> 71 bash now defaults to major version 5. 72 </para> 73 </listitem> ··· 1123 by default. Both packages now support an 1124 <literal>enableUnfree</literal> option to re-enable this 1125 functionality. 1126 + </para> 1127 + </listitem> 1128 + <listitem> 1129 + <para> 1130 + <literal>services.xserver.displayManager.defaultSession = &quot;plasma5&quot;</literal> 1131 + does not work anymore, instead use either 1132 + <literal>&quot;plasma&quot;</literal> for the Plasma X11 1133 + session or <literal>&quot;plasmawayland&quot;</literal> for 1134 + the Plasma Wayland sesison. 1135 </para> 1136 </listitem> 1137 </itemizedlist>
+3
nixos/doc/manual/release-notes/rl-2111.section.md
··· 22 This allows activation scripts to output what they would change if the activation was really run. 23 The users/modules activation script supports this and outputs some of is actions. 24 25 - bash now defaults to major version 5. 26 27 - Systemd was updated to version 249 (from 247). ··· 346 configuration file. For details, see the [upstream changelog](https://github.com/DataDog/datadog-agent/blob/main/CHANGELOG.rst). 347 348 - `opencv2` no longer includes the non-free libraries by default, and consequently `pfstools` no longer includes OpenCV support by default. Both packages now support an `enableUnfree` option to re-enable this functionality. 349 350 ## Other Notable Changes {#sec-release-21.11-notable-changes} 351
··· 22 This allows activation scripts to output what they would change if the activation was really run. 23 The users/modules activation script supports this and outputs some of is actions. 24 25 + - KDE Plasma now finally works on Wayland. 26 + 27 - bash now defaults to major version 5. 28 29 - Systemd was updated to version 249 (from 247). ··· 348 configuration file. For details, see the [upstream changelog](https://github.com/DataDog/datadog-agent/blob/main/CHANGELOG.rst). 349 350 - `opencv2` no longer includes the non-free libraries by default, and consequently `pfstools` no longer includes OpenCV support by default. Both packages now support an `enableUnfree` option to re-enable this functionality. 351 + - `services.xserver.displayManager.defaultSession = "plasma5"` does not work anymore, instead use either `"plasma"` for the Plasma X11 session or `"plasmawayland"` for the Plasma Wayland sesison. 352 353 ## Other Notable Changes {#sec-release-21.11-notable-changes} 354
+16
nixos/modules/services/misc/nix-daemon.nix
··· 555 + "\n" 556 ) cfg.buildMachines; 557 }; 558 559 systemd.packages = [ nix ]; 560
··· 555 + "\n" 556 ) cfg.buildMachines; 557 }; 558 + assertions = 559 + let badMachine = m: m.system == null && m.systems == []; 560 + in [ 561 + { 562 + assertion = !(builtins.any badMachine cfg.buildMachines); 563 + message = '' 564 + At least one system type (via <varname>system</varname> or 565 + <varname>systems</varname>) must be set for every build machine. 566 + Invalid machine specifications: 567 + '' + " " + 568 + (builtins.concatStringsSep "\n " 569 + (builtins.map (m: m.hostName) 570 + (builtins.filter (badMachine) cfg.buildMachines))); 571 + } 572 + ]; 573 + 574 575 systemd.packages = [ nix ]; 576
+1 -1
nixos/modules/services/misc/sickbeard.nix
··· 86 serviceConfig = { 87 User = cfg.user; 88 Group = cfg.group; 89 - ExecStart = "${sickbeard}/SickBeard.py --datadir ${cfg.dataDir} --config ${cfg.configFile} --port ${toString cfg.port}"; 90 }; 91 }; 92 };
··· 86 serviceConfig = { 87 User = cfg.user; 88 Group = cfg.group; 89 + ExecStart = "${sickbeard}/bin/${sickbeard.pname} --datadir ${cfg.dataDir} --config ${cfg.configFile} --port ${toString cfg.port}"; 90 }; 91 }; 92 };
+1 -1
nixos/modules/services/networking/unifi.nix
··· 221 222 }; 223 224 - meta.maintainers = with lib.maintainers; [ erictapen ]; 225 }
··· 221 222 }; 223 224 + meta.maintainers = with lib.maintainers; [ erictapen pennae ]; 225 }
+11 -9
nixos/modules/services/x11/desktop-managers/plasma5.nix
··· 13 14 pulseaudio = config.hardware.pulseaudio; 15 pactl = "${getBin pulseaudio.package}/bin/pactl"; 16 - startplasma-x11 = "${getBin plasma5.plasma-workspace}/bin/startplasma-x11"; 17 sed = "${getBin pkgs.gnused}/bin/sed"; 18 19 gtkrc2 = writeText "gtkrc-2.0" '' ··· 136 fi 137 fi 138 139 - '' 140 - + '' 141 - exec "${startplasma-x11}" 142 ''; 143 144 in ··· 171 of a laptop and as it is considered experimental by upstream, it is 172 disabled by default. 173 ''; 174 }; 175 }; 176 ··· 183 184 config = mkMerge [ 185 (mkIf cfg.enable { 186 # Seed our configuration into nixos-generate-config 187 system.nixos-generate-config.desktopConfiguration = ['' 188 # Enable the Plasma 5 Desktop Environment. ··· 190 services.xserver.desktopManager.plasma5.enable = true; 191 '']; 192 193 - services.xserver.desktopManager.session = singleton { 194 - name = "plasma5"; 195 - bgSupport = true; 196 - start = startplasma; 197 - }; 198 199 security.wrappers = { 200 kcheckpass = ··· 347 348 environment.etc."X11/xkb".source = xcfg.xkbDir; 349 350 # Enable GTK applications to load SVG icons 351 services.xserver.gdk-pixbuf.modulePackages = [ pkgs.librsvg ]; 352 ··· 389 390 # Update the start menu for each user that is currently logged in 391 system.userActivationScripts.plasmaSetup = activationScript; 392 393 nixpkgs.config.firefox.enablePlasmaBrowserIntegration = true; 394 })
··· 13 14 pulseaudio = config.hardware.pulseaudio; 15 pactl = "${getBin pulseaudio.package}/bin/pactl"; 16 sed = "${getBin pkgs.gnused}/bin/sed"; 17 18 gtkrc2 = writeText "gtkrc-2.0" '' ··· 135 fi 136 fi 137 138 ''; 139 140 in ··· 167 of a laptop and as it is considered experimental by upstream, it is 168 disabled by default. 169 ''; 170 + }; 171 + 172 + useQtScaling = mkOption { 173 + type = types.bool; 174 + default = false; 175 + description = "Enable HiDPI scaling in Qt."; 176 }; 177 }; 178 ··· 185 186 config = mkMerge [ 187 (mkIf cfg.enable { 188 + 189 # Seed our configuration into nixos-generate-config 190 system.nixos-generate-config.desktopConfiguration = ['' 191 # Enable the Plasma 5 Desktop Environment. ··· 193 services.xserver.desktopManager.plasma5.enable = true; 194 '']; 195 196 + services.xserver.displayManager.sessionPackages = [ pkgs.libsForQt5.plasma5.plasma-workspace ]; 197 198 security.wrappers = { 199 kcheckpass = ··· 346 347 environment.etc."X11/xkb".source = xcfg.xkbDir; 348 349 + environment.sessionVariables.PLASMA_USE_QT_SCALING = mkIf cfg.useQtScaling "1"; 350 + 351 # Enable GTK applications to load SVG icons 352 services.xserver.gdk-pixbuf.modulePackages = [ pkgs.librsvg ]; 353 ··· 390 391 # Update the start menu for each user that is currently logged in 392 system.userActivationScripts.plasmaSetup = activationScript; 393 + services.xserver.displayManager.setupCommands = startplasma; 394 395 nixpkgs.config.firefox.enablePlasmaBrowserIntegration = true; 396 })
-1
nixos/modules/services/x11/display-managers/gdm.nix
··· 26 load-module module-udev-detect 27 load-module module-native-protocol-unix 28 load-module module-default-device-restore 29 - load-module module-rescue-streams 30 load-module module-always-sink 31 load-module module-intended-roles 32 load-module module-suspend-on-idle
··· 26 load-module module-udev-detect 27 load-module module-native-protocol-unix 28 load-module module-default-device-restore 29 load-module module-always-sink 30 load-module module-intended-roles 31 load-module module-suspend-on-idle
+1 -1
nixos/tests/plasma5.nix
··· 12 imports = [ ./common/user-account.nix ]; 13 services.xserver.enable = true; 14 services.xserver.displayManager.sddm.enable = true; 15 - services.xserver.displayManager.defaultSession = "plasma5"; 16 services.xserver.desktopManager.plasma5.enable = true; 17 services.xserver.displayManager.autoLogin = { 18 enable = true;
··· 12 imports = [ ./common/user-account.nix ]; 13 services.xserver.enable = true; 14 services.xserver.displayManager.sddm.enable = true; 15 + services.xserver.displayManager.defaultSession = "plasma"; 16 services.xserver.desktopManager.plasma5.enable = true; 17 services.xserver.displayManager.autoLogin = { 18 enable = true;
+12 -2
pkgs/applications/audio/mousai/default.nix
··· 1 { lib 2 , python3 3 , fetchFromGitHub 4 , appstream-glib 5 , desktop-file-utils 6 , gettext ··· 13 , meson 14 , ninja 15 , pkg-config 16 , wrapGAppsHook 17 }: 18 19 python3.pkgs.buildPythonApplication rec { 20 pname = "mousai"; 21 - version = "0.4.2"; 22 23 format = "other"; 24 ··· 26 owner = "SeaDve"; 27 repo = "Mousai"; 28 rev = "v${version}"; 29 - sha256 = "sha256-zH++GGFIz3oxkKOYB4zhY6yL3vENEXxtrv8mZZ+41kU="; 30 }; 31 32 postPatch = '' 33 patchShebangs build-aux/meson 34 ''; ··· 53 gtk4 54 libadwaita 55 librsvg 56 ]; 57 58 propagatedBuildInputs = with python3.pkgs; [
··· 1 { lib 2 , python3 3 , fetchFromGitHub 4 + , substituteAll 5 , appstream-glib 6 , desktop-file-utils 7 , gettext ··· 14 , meson 15 , ninja 16 , pkg-config 17 + , pulseaudio 18 , wrapGAppsHook 19 }: 20 21 python3.pkgs.buildPythonApplication rec { 22 pname = "mousai"; 23 + version = "0.6.6"; 24 25 format = "other"; 26 ··· 28 owner = "SeaDve"; 29 repo = "Mousai"; 30 rev = "v${version}"; 31 + sha256 = "sha256-nCbFVFg+nVF8BOBfdzQVgdTRXR5UF18PJFC266yTFwg="; 32 }; 33 34 + patches = [ 35 + (substituteAll { 36 + src = ./paths.patch; 37 + pactl = "${lib.getBin pulseaudio}/bin/pactl"; 38 + }) 39 + ]; 40 + 41 postPatch = '' 42 patchShebangs build-aux/meson 43 ''; ··· 62 gtk4 63 libadwaita 64 librsvg 65 + pulseaudio 66 ]; 67 68 propagatedBuildInputs = with python3.pkgs; [
+13
pkgs/applications/audio/mousai/paths.patch
···
··· 1 + diff --git a/src/backend/utils.py b/src/backend/utils.py 2 + index cebc009..0087c09 100644 3 + --- a/src/backend/utils.py 4 + +++ b/src/backend/utils.py 5 + @@ -79,7 +79,7 @@ class Utils: 6 + @staticmethod 7 + def get_default_audio_sources(): 8 + pactl_output = subprocess.run( 9 + - ['/usr/bin/pactl', 'info'], 10 + + ['@pactl@', 'info'], 11 + stdout=subprocess.PIPE, 12 + text=True 13 + ).stdout.splitlines()
+4 -4
pkgs/applications/editors/android-studio/default.nix
··· 13 sha256Hash = "0k8jcq8vpjayvwm9wqcrjhnp7dly0h4bb8nxspck5zmi8q2ar67l"; 14 }; 15 betaVersion = { 16 - version = "2020.3.1.21"; # "Android Studio Arctic Fox (2020.3.1) RC 1" 17 - sha256Hash = "04k7c328bl8ixi8bvp2mm33q2hmv40yc9p5dff5cghyycarwpd3f"; 18 }; 19 latestVersion = { # canary & dev 20 - version = "2021.1.1.13"; # "Android Studio Bumblebee (2021.1.1) Canary 13" 21 - sha256Hash = "04w5jw79fkxk4gy1n9iy8kjxg6k3zcl59z76f04rh556n12f01gm"; 22 }; 23 in { 24 # Attributes are named by their corresponding release channels
··· 13 sha256Hash = "0k8jcq8vpjayvwm9wqcrjhnp7dly0h4bb8nxspck5zmi8q2ar67l"; 14 }; 15 betaVersion = { 16 + version = "2021.1.1.14"; # "Android Studio Bumblebee (2021.1.1) Beta 1" 17 + sha256Hash = "1j1fxl4vzq3bln2z9ycxn9imjgy55yd1nbl7ycmsi90bdp96pzj0"; 18 }; 19 latestVersion = { # canary & dev 20 + version = "2021.2.1.1"; # "Android Studio Chipmunk (2021.2.1) Canary 1" 21 + sha256Hash = "1fn0jv6ybgdhgpwhamw16fjqbg2961ir9jhbjzanysi7y3935nbv"; 22 }; 23 in { 24 # Attributes are named by their corresponding release channels
+2 -5
pkgs/applications/editors/emacs/elisp-packages/sv-kalender/default.nix
··· 2 3 trivialBuild { 4 pname = "sv-kalender"; 5 - version = "1.9"; 6 7 src = fetchurl { 8 url = "http://bigwalter.net/daniel/elisp/sv-kalender.el"; 9 - sha256 = "0kilp0nyhj67qscy13s0g07kygz2qwmddklhan020sk7z7jv3lpi"; 10 - postFetch = '' 11 - echo "(provide 'sv-kalender)" >> $out 12 - ''; 13 }; 14 15 meta = with lib; {
··· 2 3 trivialBuild { 4 pname = "sv-kalender"; 5 + version = "1.11"; 6 7 src = fetchurl { 8 url = "http://bigwalter.net/daniel/elisp/sv-kalender.el"; 9 + sha256 = "0mcx7g1pg6kfp0i4b9rh3q9csgdf3054ijswy368bxwdxsjgfz2m"; 10 }; 11 12 meta = with lib; {
+16 -13
pkgs/applications/editors/gnome-builder/default.nix
··· 1 - { lib, stdenv 2 , ctags 3 , appstream-glib 4 , desktop-file-utils 5 - , docbook_xsl 6 - , docbook_xml_dtd_43 7 , fetchurl 8 , flatpak 9 , gnome 10 , libgit2-glib 11 , gobject-introspection 12 , glade 13 , gspell 14 - , gtk-doc 15 , gtk3 16 , gtksourceview4 17 , json-glib ··· 39 40 stdenv.mkDerivation rec { 41 pname = "gnome-builder"; 42 - version = "3.40.2"; 43 44 src = fetchurl { 45 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 46 - sha256 = "16kikslvcfjqj4q3j857mq9i8cyd965b3lvfzcwijc91x3ylr15j"; 47 }; 48 49 nativeBuildInputs = [ 50 appstream-glib 51 desktop-file-utils 52 - docbook_xsl 53 - docbook_xml_dtd_43 54 gobject-introspection 55 - gtk-doc 56 meson 57 ninja 58 pkg-config ··· 63 64 buildInputs = [ 65 ctags 66 flatpak 67 gnome.devhelp 68 glade ··· 92 xvfb-run 93 ]; 94 95 - outputs = [ "out" "devdoc" ]; 96 - 97 prePatch = '' 98 patchShebangs build-aux/meson/post_install.py 99 ''; ··· 134 done 135 ''; 136 137 passthru.updateScript = gnome.updateScript { 138 packageName = pname; 139 - versionPolicy = "odd-unstable"; 140 }; 141 142 meta = with lib; {
··· 1 + { stdenv 2 + , lib 3 , ctags 4 + , cmark 5 , appstream-glib 6 , desktop-file-utils 7 , fetchurl 8 , flatpak 9 , gnome 10 , libgit2-glib 11 + , gi-docgen 12 , gobject-introspection 13 , glade 14 , gspell 15 , gtk3 16 , gtksourceview4 17 , json-glib ··· 39 40 stdenv.mkDerivation rec { 41 pname = "gnome-builder"; 42 + version = "41.1"; 43 + 44 + outputs = [ "out" "devdoc" ]; 45 46 src = fetchurl { 47 + url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 48 + sha256 = "XVXkqqKkdYpGJj0cf9AJyz20RV4O1/nkTDoWNIYfo4o="; 49 }; 50 51 nativeBuildInputs = [ 52 appstream-glib 53 desktop-file-utils 54 + gi-docgen 55 gobject-introspection 56 meson 57 ninja 58 pkg-config ··· 63 64 buildInputs = [ 65 ctags 66 + cmark 67 flatpak 68 gnome.devhelp 69 glade ··· 93 xvfb-run 94 ]; 95 96 prePatch = '' 97 patchShebangs build-aux/meson/post_install.py 98 ''; ··· 133 done 134 ''; 135 136 + postFixup = '' 137 + # Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back. 138 + moveToOutput share/doc/libide "$devdoc" 139 + ''; 140 + 141 passthru.updateScript = gnome.updateScript { 142 packageName = pname; 143 }; 144 145 meta = with lib; {
+51 -15
pkgs/applications/editors/rstudio/clang-location.patch
··· 1 - diff --git i/src/cpp/core/libclang/LibClang.cpp w/src/cpp/core/libclang/LibClang.cpp 2 - index ec12a3a1ff..8c81b633ae 100644 3 - --- i/src/cpp/core/libclang/LibClang.cpp 4 - +++ w/src/cpp/core/libclang/LibClang.cpp 5 - @@ -54,7 +54,7 @@ std::vector<std::string> defaultCompileArgs(LibraryVersion version) 6 7 // we need to add in the associated libclang headers as 8 // they are not discovered / used by default during compilation 9 - - FilePath llvmPath = s_libraryPath.parent().parent(); 10 + FilePath llvmPath("@libclang@"); 11 boost::format fmt("%1%/lib/clang/%2%/include"); 12 - fmt % llvmPath.absolutePath() % version.asString(); 13 std::string includePath = fmt.str(); 14 - @@ -77,10 +77,7 @@ std::vector<std::string> systemClangVersions() 15 - #elif defined(__unix__) 16 - // default set of versions 17 - clangVersions = { 18 - "/usr/lib/libclang.so", 19 - "/usr/lib/llvm/libclang.so", 20 - "/usr/lib64/libclang.so", 21 - "/usr/lib64/llvm/libclang.so", 22 - + "@libclang.so@" 23 - }; 24 - 25 - // iterate through the set of available 'llvm' directories
··· 1 + diff --git a/src/cpp/core/libclang/LibClang.cpp b/src/cpp/core/libclang/LibClang.cpp 2 + index 1186f3a..58e8cc7 100644 3 + --- a/src/cpp/core/libclang/LibClang.cpp 4 + +++ b/src/cpp/core/libclang/LibClang.cpp 5 + @@ -58,7 +58,7 @@ std::vector<std::string> defaultCompileArgs(LibraryVersion version) 6 7 // we need to add in the associated libclang headers as 8 // they are not discovered / used by default during compilation 9 + - FilePath llvmPath = s_libraryPath.getParent().getParent(); 10 + FilePath llvmPath("@libclang@"); 11 boost::format fmt("%1%/lib/clang/%2%/include"); 12 + fmt % llvmPath.getAbsolutePath() % version.asString(); 13 std::string includePath = fmt.str(); 14 + @@ -70,46 +70,7 @@ std::vector<std::string> defaultCompileArgs(LibraryVersion version) 15 + 16 + std::vector<std::string> systemClangVersions() 17 + { 18 + - std::vector<std::string> clangVersions; 19 + - 20 + -#if defined(__APPLE__) 21 + - // NOTE: the version of libclang.dylib bundled with Xcode 22 + - // doesn't seem to work well when loaded as a library 23 + - // (there seems to be extra orchestration required to get 24 + - // include paths set up; easier to just depend on command 25 + - // line tools since we request their installation in other 26 + - // contexts as well) 27 + - clangVersions = { 28 + - "/Library/Developer/CommandLineTools/usr/lib/libclang.dylib" 29 + - }; 30 + -#elif defined(__unix__) 31 + - // default set of versions 32 + - clangVersions = { 33 - "/usr/lib/libclang.so", 34 - "/usr/lib/llvm/libclang.so", 35 - "/usr/lib64/libclang.so", 36 - "/usr/lib64/llvm/libclang.so", 37 + - }; 38 + - 39 + - // iterate through the set of available 'llvm' directories 40 + - for (const char* prefix : {"/usr/lib", "/usr/lib64"}) 41 + - { 42 + - FilePath prefixPath(prefix); 43 + - if (!prefixPath.exists()) 44 + - continue; 45 + - 46 + - std::vector<FilePath> directories; 47 + - Error error = prefixPath.getChildren(directories); 48 + - if (error) 49 + - LOG_ERROR(error); 50 + - 51 + - // generate a path for each 'llvm' directory 52 + - for (const FilePath& path : directories) 53 + - if (path.getFilename().find("llvm") == 0) 54 + - clangVersions.push_back(path.completePath("lib/libclang.so.1").getAbsolutePath()); 55 + - } 56 + -#endif 57 + - 58 + + std::vector<std::string> clangVersions = { "@libclang.so@" }; 59 + return clangVersions; 60 + } 61 +
+174 -106
pkgs/applications/editors/rstudio/default.nix
··· 1 - { lib, mkDerivation, fetchurl, fetchpatch, fetchFromGitHub, makeDesktopItem, cmake, boost, zlib 2 - , openssl, R, qtbase, qtxmlpatterns, qtsensors, qtwebengine, qtwebchannel 3 - , libuuid, hunspellDicts, unzip, ant, jdk, gnumake, makeWrapper, pandoc 4 , llvmPackages 5 }: 6 7 - with lib; 8 let 9 - verMajor = "1"; 10 - verMinor = "2"; 11 - verPatch = "5042"; 12 - version = "${verMajor}.${verMinor}.${verPatch}"; 13 - ginVer = "2.1.2"; 14 - gwtVer = "2.8.1"; 15 - in 16 - mkDerivation rec { 17 pname = "RStudio"; 18 - inherit version; 19 20 - nativeBuildInputs = [ cmake unzip ant jdk makeWrapper pandoc ]; 21 22 - buildInputs = [ boost zlib openssl R qtbase qtxmlpatterns qtsensors 23 - qtwebengine qtwebchannel libuuid ]; 24 25 - src = fetchFromGitHub { 26 owner = "rstudio"; 27 - repo = "rstudio"; 28 - rev = "v${version}"; 29 - sha256 = "1n67fa357v51j3z1ma8v2ydfsx3y8n10k2svmfcf4mdzsi8w0kc5"; 30 }; 31 32 # Hack RStudio to only use the input R and provided libclang. 33 - patches = [ ./r-location.patch ./clang-location.patch 34 - (fetchpatch { 35 - # Fetch a patch to ensure Rstudio compiles against R 36 - # 4.0.0, should be removed next 1.2.X Rstudio update 37 - # or possibly 1.3.X 38 - url = "https://github.com/rstudio/rstudio/commit/3fb2397c2f208bb8ace0bbaf269481ccb96b5b20.patch"; 39 - sha256 = "0qpgjy6aash0fc0xbns42cwpj3nsw49nkbzwyq8az01xwg81g0f3"; 40 - }) 41 - ]; 42 postPatch = '' 43 substituteInPlace src/cpp/core/r_util/REnvironmentPosix.cpp --replace '@R@' ${R} 44 substituteInPlace src/cpp/core/libclang/LibClang.cpp \ 45 --replace '@libclang@' ${llvmPackages.libclang.lib} \ 46 --replace '@libclang.so@' ${llvmPackages.libclang.lib}/lib/libclang.so 47 - ''; 48 49 - ginSrc = fetchurl { 50 - url = "https://s3.amazonaws.com/rstudio-buildtools/gin-${ginVer}.zip"; 51 - sha256 = "16jzmljravpz6p2rxa87k5f7ir8vs7ya75lnfybfajzmci0p13mr"; 52 - }; 53 54 - gwtSrc = fetchurl { 55 - url = "https://s3.amazonaws.com/rstudio-buildtools/gwt-${gwtVer}.zip"; 56 - sha256 = "19x000m3jwnkqgi6ic81lkzyjvvxcfacw2j0vcfcaknvvagzhyhb"; 57 - }; 58 - 59 - hunspellDictionaries = filter isDerivation (unique (attrValues hunspellDicts)); 60 # These dicts contain identically-named dict files, so we only keep the 61 # -large versions in case of clashes 62 - largeDicts = filter (d: hasInfix "-large-wordlist" d) hunspellDictionaries; 63 - otherDicts = filter (d: !(hasAttr "dictFileName" d && 64 - elem d.dictFileName (map (d: d.dictFileName) largeDicts))) hunspellDictionaries; 65 dictionaries = largeDicts ++ otherDicts; 66 67 - mathJaxSrc = fetchurl { 68 - url = "https://s3.amazonaws.com/rstudio-buildtools/mathjax-26.zip"; 69 - sha256 = "0wbcqb9rbfqqvvhqr1pbqax75wp8ydqdyhp91fbqfqp26xzjv6lk"; 70 - }; 71 - 72 - rsconnectSrc = fetchFromGitHub { 73 - owner = "rstudio"; 74 - repo = "rsconnect"; 75 - rev = "984745d8"; 76 - sha256 = "037z0y32k1gdda192y5qn5hi7wp8wyap44mkjlklrgcqkmlcylb9"; 77 - }; 78 79 - preConfigure = 80 - '' 81 - export RSTUDIO_VERSION_MAJOR=${verMajor} 82 - export RSTUDIO_VERSION_MINOR=${verMinor} 83 - export RSTUDIO_VERSION_PATCH=${verPatch} 84 85 - GWT_LIB_DIR=src/gwt/lib 86 87 - mkdir -p $GWT_LIB_DIR/gin/${ginVer} 88 - unzip ${ginSrc} -d $GWT_LIB_DIR/gin/${ginVer} 89 90 - unzip ${gwtSrc} 91 - mkdir -p $GWT_LIB_DIR/gwt 92 - mv gwt-${gwtVer} $GWT_LIB_DIR/gwt/${gwtVer} 93 94 - mkdir dependencies/common/dictionaries 95 - for dict in ${builtins.concatStringsSep " " dictionaries}; do 96 - for i in "$dict/share/hunspell/"*; do 97 - ln -sv $i dependencies/common/dictionaries/ 98 - done 99 - done 100 101 - unzip ${mathJaxSrc} -d dependencies/common/mathjax-26 102 103 - mkdir -p dependencies/common/pandoc 104 - cp ${pandoc}/bin/pandoc dependencies/common/pandoc/ 105 106 - cp -r ${rsconnectSrc} dependencies/common/rsconnect 107 - pushd dependencies/common 108 - ${R}/bin/R CMD build -d --no-build-vignettes rsconnect 109 - popd 110 - ''; 111 112 - cmakeFlags = [ "-DRSTUDIO_TARGET=Desktop" "-DQT_QMAKE_EXECUTABLE=$NIX_QT5_TMP/bin/qmake" ]; 113 114 - desktopItem = makeDesktopItem { 115 - name = "${pname}-${version}"; 116 - exec = "rstudio %F"; 117 - icon = "rstudio"; 118 - desktopName = "RStudio"; 119 - genericName = "IDE"; 120 - comment = meta.description; 121 - categories = "Development;"; 122 - mimeType = "text/x-r-source;text/x-r;text/x-R;text/x-r-doc;text/x-r-sweave;text/x-r-markdown;text/x-r-html;text/x-r-presentation;application/x-r-data;application/x-r-project;text/x-r-history;text/x-r-profile;text/x-tex;text/x-markdown;text/html;text/css;text/javascript;text/x-chdr;text/x-csrc;text/x-c++hdr;text/x-c++src;"; 123 }; 124 - 125 - qtWrapperArgs = [ "--suffix PATH : ${gnumake}/bin" ]; 126 - 127 - postInstall = '' 128 - mkdir $out/share 129 - cp -r ${desktopItem}/share/applications $out/share 130 - mkdir $out/share/icons 131 - ln $out/rstudio.png $out/share/icons 132 - ''; 133 - 134 - meta = with lib; 135 - { description = "Set of integrated tools for the R language"; 136 - homepage = "https://www.rstudio.com/"; 137 - license = licenses.agpl3; 138 - maintainers = with maintainers; [ ciil ]; 139 - platforms = platforms.linux; 140 - }; 141 }
··· 1 + { lib 2 + , mkDerivation 3 + , fetchurl 4 + , fetchpatch 5 + , fetchFromGitHub 6 + , makeDesktopItem 7 + , copyDesktopItems 8 + , cmake 9 + , boost 10 + , zlib 11 + , openssl 12 + , R 13 + , qtbase 14 + , qtxmlpatterns 15 + , qtsensors 16 + , qtwebengine 17 + , qtwebchannel 18 + , libuuid 19 + , hunspellDicts 20 + , unzip 21 + , ant 22 + , jdk 23 + , gnumake 24 + , makeWrapper 25 + , pandoc 26 , llvmPackages 27 + , libyamlcpp 28 + , soci 29 + , postgresql 30 + , nodejs 31 + , mkYarnModules 32 + , qmake 33 }: 34 35 let 36 pname = "RStudio"; 37 + version = "1.4.1717"; 38 + RSTUDIO_VERSION_MAJOR = lib.versions.major version; 39 + RSTUDIO_VERSION_MINOR = lib.versions.minor version; 40 + RSTUDIO_VERSION_PATCH = lib.versions.patch version; 41 42 + src = fetchFromGitHub { 43 + owner = "rstudio"; 44 + repo = "rstudio"; 45 + rev = version; 46 + sha256 = "sha256-9c1bNsf8kJjpcZ2cMV/pPNtXQkFOntX29a1cdnXpllE="; 47 + }; 48 49 + mathJaxSrc = fetchurl { 50 + url = "https://s3.amazonaws.com/rstudio-buildtools/mathjax-27.zip"; 51 + sha256 = "sha256-xWy6psTOA8H8uusrXqPDEtL7diajYCVHcMvLiPsgQXY="; 52 + }; 53 54 + rsconnectSrc = fetchFromGitHub { 55 owner = "rstudio"; 56 + repo = "rsconnect"; 57 + rev = "f5854bb71464f6e3017da9855f058fe3d5b32efd"; 58 + sha256 = "sha256-ULyWdSgGPSAwMt0t4QPuzeUE6Bo6IJh+5BMgW1bFN+Y="; 59 }; 60 61 + panmirrorModules = mkYarnModules { 62 + inherit pname version; 63 + packageJSON = ./package.json; 64 + yarnLock = ./yarn.lock; 65 + yarnNix = ./yarndeps.nix; 66 + }; 67 + 68 + in 69 + mkDerivation rec { 70 + inherit pname version src RSTUDIO_VERSION_MAJOR RSTUDIO_VERSION_MINOR RSTUDIO_VERSION_PATCH; 71 + 72 + nativeBuildInputs = [ 73 + cmake 74 + unzip 75 + ant 76 + jdk 77 + makeWrapper 78 + pandoc 79 + nodejs 80 + copyDesktopItems 81 + ]; 82 + 83 + buildInputs = [ 84 + boost 85 + zlib 86 + openssl 87 + R 88 + qtbase 89 + qtxmlpatterns 90 + qtsensors 91 + qtwebengine 92 + qtwebchannel 93 + libuuid 94 + libyamlcpp 95 + soci 96 + postgresql 97 + ]; 98 + 99 + cmakeFlags = [ 100 + "-DRSTUDIO_TARGET=Desktop" 101 + "-DCMAKE_BUILD_TYPE=Release" 102 + "-DQT_QMAKE_EXECUTABLE=${qmake}/bin/qmake" 103 + "-DRSTUDIO_USE_SYSTEM_SOCI=ON" 104 + "-DRSTUDIO_USE_SYSTEM_BOOST=ON" 105 + "-DRSTUDIO_USE_SYSTEM_YAML_CPP=ON" 106 + "-DPANDOC_VERSION=${pandoc.version}" 107 + "-DCMAKE_INSTALL_PREFIX=${placeholder "out"}/lib/rstudio" 108 + ]; 109 + 110 # Hack RStudio to only use the input R and provided libclang. 111 + patches = [ 112 + ./r-location.patch 113 + ./clang-location.patch 114 + # postFetch doesn't work with this | error: unexpected end-of-file 115 + # replacing /usr/bin/node is done in postPatch 116 + # https://src.fedoraproject.org/rpms/rstudio/tree/rawhide 117 + (fetchpatch { 118 + name = "system-node.patch"; 119 + url = "https://src.fedoraproject.org/rpms/rstudio/raw/5bda2e290c9e72305582f2011040938d3e356906/f/0004-use-system-node.patch"; 120 + sha256 = "sha256-P1Y07RB/ceFNa749nyBUWSE41eiiZgt43zVcmahvfZM="; 121 + }) 122 + ]; 123 + 124 postPatch = '' 125 substituteInPlace src/cpp/core/r_util/REnvironmentPosix.cpp --replace '@R@' ${R} 126 + 127 + substituteInPlace src/cpp/CMakeLists.txt \ 128 + --replace 'SOCI_LIBRARY_DIR "/usr/lib"' 'SOCI_LIBRARY_DIR "${soci}/lib"' 129 + 130 + substituteInPlace src/gwt/build.xml \ 131 + --replace '/usr/bin/node' '${nodejs}/bin/node' 132 + 133 substituteInPlace src/cpp/core/libclang/LibClang.cpp \ 134 --replace '@libclang@' ${llvmPackages.libclang.lib} \ 135 --replace '@libclang.so@' ${llvmPackages.libclang.lib}/lib/libclang.so 136 137 + substituteInPlace src/cpp/session/include/session/SessionConstants.hpp \ 138 + --replace "bin/pandoc" "${pandoc}/bin/pandoc" 139 + ''; 140 141 + hunspellDictionaries = with lib; filter isDerivation (unique (attrValues hunspellDicts)); 142 # These dicts contain identically-named dict files, so we only keep the 143 # -large versions in case of clashes 144 + largeDicts = with lib; filter (d: hasInfix "-large-wordlist" d) hunspellDictionaries; 145 + otherDicts = with lib; filter 146 + (d: !(hasAttr "dictFileName" d && 147 + elem d.dictFileName (map (d: d.dictFileName) largeDicts))) 148 + hunspellDictionaries; 149 dictionaries = largeDicts ++ otherDicts; 150 151 + preConfigure = '' 152 + mkdir dependencies/dictionaries 153 + for dict in ${builtins.concatStringsSep " " dictionaries}; do 154 + for i in "$dict/share/hunspell/"*; do 155 + ln -s $i dependencies/dictionaries/ 156 + done 157 + done 158 159 + unzip -q ${mathJaxSrc} -d dependencies/mathjax-27 160 161 + mkdir -p dependencies/pandoc/${pandoc.version} 162 + cp ${pandoc}/bin/pandoc dependencies/pandoc/${pandoc.version}/pandoc 163 164 + cp -r ${rsconnectSrc} dependencies/rsconnect 165 + ( cd dependencies && ${R}/bin/R CMD build -d --no-build-vignettes rsconnect ) 166 167 + cp -r "${panmirrorModules}" src/gwt/panmirror/src/editor/node_modules 168 + ''; 169 170 + postInstall = '' 171 + mkdir -p $out/share/icons $out/bin 172 + ln $out/lib/rstudio/rstudio.png $out/share/icons 173 174 + for f in {diagnostics,rpostback,rstudio}; do 175 + ln -s $out/lib/rstudio/bin/$f $out/bin 176 + done 177 178 + for f in .gitignore .Rbuildignore LICENSE README; do 179 + find . -name $f -delete 180 + done 181 + rm -r $out/lib/rstudio/{INSTALL,COPYING,NOTICE,README.md,SOURCE,VERSION} 182 + rm -r $out/lib/rstudio/bin/{pandoc/pandoc,pandoc} 183 + ''; 184 185 + qtWrapperArgs = [ 186 + "--suffix PATH : ${lib.makeBinPath [ gnumake ]}" 187 + ]; 188 189 + desktopItems = [ 190 + (makeDesktopItem { 191 + name = "${pname}"; 192 + exec = "rstudio %F"; 193 + icon = "rstudio"; 194 + desktopName = "RStudio"; 195 + genericName = "IDE"; 196 + comment = meta.description; 197 + categories = "Development;"; 198 + mimeType = "text/x-r-source;text/x-r;text/x-R;text/x-r-doc;text/x-r-sweave;text/x-r-markdown;text/x-r-html;text/x-r-presentation;application/x-r-data;application/x-r-project;text/x-r-history;text/x-r-profile;text/x-tex;text/x-markdown;text/html;text/css;text/javascript;text/x-chdr;text/x-csrc;text/x-c++hdr;text/x-c++src;"; 199 + }) 200 + ]; 201 202 + meta = with lib; { 203 + description = "Set of integrated tools for the R language"; 204 + homepage = "https://www.rstudio.com/"; 205 + license = licenses.agpl3Only; 206 + maintainers = with maintainers; [ ciil ]; 207 + platforms = platforms.linux; 208 }; 209 }
+83
pkgs/applications/editors/rstudio/package.json
···
··· 1 + { 2 + "name": "panmirror", 3 + "version": "0.1.0", 4 + "private": true, 5 + "license": "agpl-3.0", 6 + "dependencies": { 7 + "@types/ace": "^0.0.43", 8 + "@types/clipboard": "^2.0.1", 9 + "@types/diff-match-patch": "^1.0.32", 10 + "@types/js-yaml": "^3.12.3", 11 + "@types/lodash.debounce": "^4.0.6", 12 + "@types/lodash.uniqby": "^4.7.6", 13 + "@types/orderedmap": "^1.0.0", 14 + "@types/prosemirror-commands": "^1.0.3", 15 + "@types/prosemirror-dev-tools": "^2.1.0", 16 + "@types/prosemirror-dropcursor": "^1.0.0", 17 + "@types/prosemirror-gapcursor": "^1.0.1", 18 + "@types/prosemirror-history": "^1.0.1", 19 + "@types/prosemirror-inputrules": "^1.0.3", 20 + "@types/prosemirror-keymap": "^1.0.3", 21 + "@types/prosemirror-model": "^1.7.2", 22 + "@types/prosemirror-schema-list": "^1.0.1", 23 + "@types/prosemirror-state": "^1.2.5", 24 + "@types/prosemirror-tables": "^0.9.1", 25 + "@types/prosemirror-transform": "^1.1.1", 26 + "@types/react": "^16.9.32", 27 + "@types/react-dom": "^16.9.6", 28 + "@types/react-window": "^1.8.2", 29 + "@types/zenscroll": "^4.0.0", 30 + "biblatex-csl-converter": "^1.9.1", 31 + "clipboard": "^2.0.6", 32 + "diff-match-patch": "^1.0.4", 33 + "fuse.js": "^6.0.4", 34 + "js-yaml": "^3.13.1", 35 + "lodash.debounce": "^4.0.8", 36 + "lodash.uniqby": "^4.7.0", 37 + "orderedmap": "^1.0.0", 38 + "prosemirror-changeset": "^2.1.2", 39 + "prosemirror-commands": "^1.1.4", 40 + "prosemirror-dev-tools": "^2.1.1", 41 + "prosemirror-dropcursor": "^1.3.2", 42 + "prosemirror-gapcursor": "^1.1.5", 43 + "prosemirror-history": "^1.1.3", 44 + "prosemirror-inputrules": "^1.1.2", 45 + "prosemirror-keymap": "^1.1.4", 46 + "prosemirror-model": "^1.11.0", 47 + "prosemirror-schema-list": "^1.1.4", 48 + "prosemirror-state": "^1.3.3", 49 + "prosemirror-tables": "^1.1.1", 50 + "prosemirror-transform": "^1.2.8", 51 + "prosemirror-utils": "^0.9.6", 52 + "prosemirror-view": "^1.15.6", 53 + "react": "^16.13.1", 54 + "react-dom": "^16.13.1", 55 + "react-window": "^1.8.5", 56 + "sentence-splitter": "^3.2.0", 57 + "thenby": "^1.3.3", 58 + "tlite": "^0.1.9", 59 + "typescript": "3.8.3", 60 + "zenscroll": "^4.0.2" 61 + }, 62 + "scripts": { 63 + "format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"", 64 + "lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'", 65 + "watch": "tsc --watch --noEmit --project './tsconfig.json'", 66 + "generate-symbols": "ts-node tools/generate-symbols.ts" 67 + }, 68 + "devDependencies": { 69 + "@types/node": "^14.0.4", 70 + "@types/unzip": "^0.1.1", 71 + "fast-xml-parser": "^3.17.1", 72 + "fuse-box": "^3.7.1", 73 + "prettier": "^1.18.2", 74 + "terser": "^4.6.2", 75 + "ts-node": "^8.10.2", 76 + "tslint": "^5.20.0", 77 + "tslint-config-prettier": "^1.18.0", 78 + "tslint-react": "^5.0.0", 79 + "typescript-tslint-plugin": "^0.5.5", 80 + "uglify-js": "^3.7.4", 81 + "unzip": "^0.1.11" 82 + } 83 + }
+20 -15
pkgs/applications/editors/rstudio/r-location.patch
··· 1 - diff -ur rstudio-1.1.216-old/src/cpp/core/CMakeLists.txt rstudio-1.1.216-new/src/cpp/core/CMakeLists.txt 2 - --- rstudio-1.1.216-old/src/cpp/core/r_util/REnvironmentPosix.cpp 2017-04-30 03:37:26.669418665 -0400 3 - +++ rstudio-1.1.216-new/src/cpp/core/r_util/REnvironmentPosix.cpp 2017-04-30 03:36:33.590726185 -0400 4 - @@ -87,10 +87,7 @@ 5 { 6 - // define potential paths 7 - std::vector<std::string> rScriptPaths; 8 - - rScriptPaths.push_back("/usr/bin/R"); 9 - - rScriptPaths.push_back("/usr/local/bin/R"); 10 - - rScriptPaths.push_back("/opt/local/bin/R"); 11 - - rScriptPaths.push_back("/Library/Frameworks/R.framework/Resources/bin/R"); 12 - + rScriptPaths.push_back("@R@/bin/R"); 13 - return scanForRScript(rScriptPaths, pErrMsg); 14 - } 15 16 - @@ -226,8 +223,7 @@ 17 // scan in standard locations as a fallback 18 std::string scanErrMsg; 19 std::vector<std::string> rScriptPaths; ··· 21 - rScriptPaths.push_back("/usr/bin/R"); 22 + rScriptPaths.push_back("@R@/bin/R"); 23 FilePath scriptPath = scanForRScript(rScriptPaths, &scanErrMsg); 24 - if (scriptPath.empty()) 25 {
··· 1 + diff --git a/src/cpp/core/r_util/REnvironmentPosix.cpp b/src/cpp/core/r_util/REnvironmentPosix.cpp 2 + index dbc9a9a1..9a526a86 100644 3 + --- a/src/cpp/core/r_util/REnvironmentPosix.cpp 4 + +++ b/src/cpp/core/r_util/REnvironmentPosix.cpp 5 + @@ -107,12 +107,9 @@ FilePath systemDefaultRScript(std::string* pErrMsg) 6 { 7 + // check fallback paths 8 + std::vector<std::string> rScriptPaths = { 9 + - "/usr/bin/R", 10 + - "/usr/local/bin/R", 11 + - "/opt/local/bin/R", 12 + + "@R@/bin/R" 13 + #ifdef __APPLE__ 14 + - "/opt/homebrew/bin/R", 15 + - "/Library/Frameworks/R.framework/Resources/bin/R", 16 + + "@R@/bin/R", 17 + #endif 18 + }; 19 20 + @@ -225,8 +222,7 @@ FilePath systemDefaultRScript(std::string* pErrMsg) 21 // scan in standard locations as a fallback 22 std::string scanErrMsg; 23 std::vector<std::string> rScriptPaths; ··· 25 - rScriptPaths.push_back("/usr/bin/R"); 26 + rScriptPaths.push_back("@R@/bin/R"); 27 FilePath scriptPath = scanForRScript(rScriptPaths, &scanErrMsg); 28 + if (scriptPath.isEmpty()) 29 { 30 +
+3835
pkgs/applications/editors/rstudio/yarn.lock
···
··· 1 + # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 + # yarn lockfile v1 3 + 4 + 5 + "@babel/code-frame@^7.0.0": 6 + version "7.8.3" 7 + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" 8 + integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== 9 + dependencies: 10 + "@babel/highlight" "^7.8.3" 11 + 12 + "@babel/helper-module-imports@^7.0.0": 13 + version "7.8.3" 14 + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" 15 + integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== 16 + dependencies: 17 + "@babel/types" "^7.8.3" 18 + 19 + "@babel/highlight@^7.8.3": 20 + version "7.8.3" 21 + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797" 22 + integrity sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg== 23 + dependencies: 24 + chalk "^2.0.0" 25 + esutils "^2.0.2" 26 + js-tokens "^4.0.0" 27 + 28 + "@babel/runtime@^7.0.0": 29 + version "7.9.6" 30 + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz#a9102eb5cadedf3f31d08a9ecf294af7827ea29f" 31 + integrity sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ== 32 + dependencies: 33 + regenerator-runtime "^0.13.4" 34 + 35 + "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2": 36 + version "7.8.4" 37 + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.4.tgz#d79f5a2040f7caa24d53e563aad49cbc05581308" 38 + integrity sha512-neAp3zt80trRVBI1x0azq6c57aNBqYZH8KhMm3TaB7wEI5Q4A2SHfBHE8w9gOhI/lrqxtEbXZgQIrHP+wvSGwQ== 39 + dependencies: 40 + regenerator-runtime "^0.13.2" 41 + 42 + "@babel/types@^7.8.3": 43 + version "7.8.6" 44 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.6.tgz#629ecc33c2557fcde7126e58053127afdb3e6d01" 45 + integrity sha512-wqz7pgWMIrht3gquyEFPVXeXCti72Rm8ep9b5tQKz9Yg9LzJA3HxosF1SB3Kc81KD1A3XBkkVYtJvCKS2Z/QrA== 46 + dependencies: 47 + esutils "^2.0.2" 48 + lodash "^4.17.13" 49 + to-fast-properties "^2.0.0" 50 + 51 + "@emotion/babel-utils@^0.6.4": 52 + version "0.6.10" 53 + resolved "https://registry.yarnpkg.com/@emotion/babel-utils/-/babel-utils-0.6.10.tgz#83dbf3dfa933fae9fc566e54fbb45f14674c6ccc" 54 + integrity sha512-/fnkM/LTEp3jKe++T0KyTszVGWNKPNOUJfjNKLO17BzQ6QPxgbg3whayom1Qr2oLFH3V92tDymU+dT5q676uow== 55 + dependencies: 56 + "@emotion/hash" "^0.6.6" 57 + "@emotion/memoize" "^0.6.6" 58 + "@emotion/serialize" "^0.9.1" 59 + convert-source-map "^1.5.1" 60 + find-root "^1.1.0" 61 + source-map "^0.7.2" 62 + 63 + "@emotion/hash@^0.6.2", "@emotion/hash@^0.6.6": 64 + version "0.6.6" 65 + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.6.6.tgz#62266c5f0eac6941fece302abad69f2ee7e25e44" 66 + integrity sha512-ojhgxzUHZ7am3D2jHkMzPpsBAiB005GF5YU4ea+8DNPybMk01JJUM9V9YRlF/GE95tcOm8DxQvWA2jq19bGalQ== 67 + 68 + "@emotion/is-prop-valid@^0.6.1": 69 + version "0.6.8" 70 + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.6.8.tgz#68ad02831da41213a2089d2cab4e8ac8b30cbd85" 71 + integrity sha512-IMSL7ekYhmFlILXcouA6ket3vV7u9BqStlXzbKOF9HBtpUPMMlHU+bBxrLOa2NvleVwNIxeq/zL8LafLbeUXcA== 72 + dependencies: 73 + "@emotion/memoize" "^0.6.6" 74 + 75 + "@emotion/memoize@^0.6.1", "@emotion/memoize@^0.6.6": 76 + version "0.6.6" 77 + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.6.6.tgz#004b98298d04c7ca3b4f50ca2035d4f60d2eed1b" 78 + integrity sha512-h4t4jFjtm1YV7UirAFuSuFGyLa+NNxjdkq6DpFLANNQY5rHueFZHVY+8Cu1HYVP6DrheB0kv4m5xPjo7eKT7yQ== 79 + 80 + "@emotion/serialize@^0.9.1": 81 + version "0.9.1" 82 + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.9.1.tgz#a494982a6920730dba6303eb018220a2b629c145" 83 + integrity sha512-zTuAFtyPvCctHBEL8KZ5lJuwBanGSutFEncqLn/m9T1a6a93smBStK+bZzcNPgj4QS8Rkw9VTwJGhRIUVO8zsQ== 84 + dependencies: 85 + "@emotion/hash" "^0.6.6" 86 + "@emotion/memoize" "^0.6.6" 87 + "@emotion/unitless" "^0.6.7" 88 + "@emotion/utils" "^0.8.2" 89 + 90 + "@emotion/stylis@^0.7.0": 91 + version "0.7.1" 92 + resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.7.1.tgz#50f63225e712d99e2b2b39c19c70fff023793ca5" 93 + integrity sha512-/SLmSIkN13M//53TtNxgxo57mcJk/UJIDFRKwOiLIBEyBHEcipgR6hNMQ/59Sl4VjCJ0Z/3zeAZyvnSLPG/1HQ== 94 + 95 + "@emotion/unitless@^0.6.2", "@emotion/unitless@^0.6.7": 96 + version "0.6.7" 97 + resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.6.7.tgz#53e9f1892f725b194d5e6a1684a7b394df592397" 98 + integrity sha512-Arj1hncvEVqQ2p7Ega08uHLr1JuRYBuO5cIvcA+WWEQ5+VmkOE3ZXzl04NbQxeQpWX78G7u6MqxKuNX3wvYZxg== 99 + 100 + "@emotion/utils@^0.8.2": 101 + version "0.8.2" 102 + resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.8.2.tgz#576ff7fb1230185b619a75d258cbc98f0867a8dc" 103 + integrity sha512-rLu3wcBWH4P5q1CGoSSH/i9hrXs7SlbRLkoq9IGuoPYNGQvDJ3pt/wmOM+XgYjIDRMVIdkUWt0RsfzF50JfnCw== 104 + 105 + "@textlint/ast-node-types@^4.2.5": 106 + version "4.3.4" 107 + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.3.4.tgz#f6596c45c32c85dc06915c3077bb7686033efd32" 108 + integrity sha512-Grq+vJuNH7HCa278eFeiqJvowrD+onMCoG2ctLyoN+fXYIQGIr1/8fo8AcIg+VM16Kga+N6Y1UWNOWPd8j1nFg== 109 + 110 + "@types/ace@^0.0.43": 111 + version "0.0.43" 112 + resolved "https://registry.yarnpkg.com/@types/ace/-/ace-0.0.43.tgz#9f0916174b6060dabbccd36ba4868ea769a1c633" 113 + integrity sha512-eQdX8AQ7CfSHym07MZMBQ8FKUj9AZ2Wcc26W5Ct8J4KOMjFY6SFUaf2YA8YHBut0Fwl//2kZ+0GLZNp+NQNRIA== 114 + 115 + "@types/clipboard@^2.0.1": 116 + version "2.0.1" 117 + resolved "https://registry.yarnpkg.com/@types/clipboard/-/clipboard-2.0.1.tgz#75a74086c293d75b12bc93ff13bc7797fef05a40" 118 + integrity sha512-gJJX9Jjdt3bIAePQRRjYWG20dIhAgEqonguyHxXuqALxsoDsDLimihqrSg8fXgVTJ4KZCzkfglKtwsh/8dLfbA== 119 + 120 + "@types/diff-match-patch@^1.0.32": 121 + version "1.0.32" 122 + resolved "https://registry.yarnpkg.com/@types/diff-match-patch/-/diff-match-patch-1.0.32.tgz#d9c3b8c914aa8229485351db4865328337a3d09f" 123 + integrity sha512-bPYT5ECFiblzsVzyURaNhljBH2Gh1t9LowgUwciMrNAhFewLkHT2H0Mto07Y4/3KCOGZHRQll3CTtQZ0X11D/A== 124 + 125 + "@types/js-yaml@^3.12.3": 126 + version "3.12.3" 127 + resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-3.12.3.tgz#abf383c5b639d0aa8b8c4a420d6a85f703357d6c" 128 + integrity sha512-otRe77JNNWzoVGLKw8TCspKswRoQToys4tuL6XYVBFxjgeM0RUrx7m3jkaTdxILxeGry3zM8mGYkGXMeQ02guA== 129 + 130 + "@types/lodash.debounce@^4.0.6": 131 + version "4.0.6" 132 + resolved "https://registry.yarnpkg.com/@types/lodash.debounce/-/lodash.debounce-4.0.6.tgz#c5a2326cd3efc46566c47e4c0aa248dc0ee57d60" 133 + integrity sha512-4WTmnnhCfDvvuLMaF3KV4Qfki93KebocUF45msxhYyjMttZDQYzHkO639ohhk8+oco2cluAFL3t5+Jn4mleylQ== 134 + dependencies: 135 + "@types/lodash" "*" 136 + 137 + "@types/lodash.uniqby@^4.7.6": 138 + version "4.7.6" 139 + resolved "https://registry.yarnpkg.com/@types/lodash.uniqby/-/lodash.uniqby-4.7.6.tgz#672827a701403f07904fe37f0721ae92abfa80e8" 140 + integrity sha512-9wBhrm1y6asW50Joj6tsySCNUgzK2tCqL7vtKIej0E9RyeBFdcte7fxUosmFuMoOU0eHqOMK76kCCrK99jxHgg== 141 + dependencies: 142 + "@types/lodash" "*" 143 + 144 + "@types/lodash@*": 145 + version "4.14.154" 146 + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.154.tgz#069e3c703fdb264e67be9e03b20a640bc0198ecc" 147 + integrity sha512-VoDZIJmg3P8vPEnTldLvgA+q7RkIbVkbYX4k0cAVFzGAOQwUehVgRHgIr2/wepwivDst/rVRqaiBSjCXRnoWwQ== 148 + 149 + "@types/node@*", "@types/node@^14.0.4": 150 + version "14.0.4" 151 + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.4.tgz#43a63fc5edce226bed106b31b875165256271107" 152 + integrity sha512-k3NqigXWRzQZVBDS5D1U70A5E8Qk4Kh+Ha/x4M8Bt9pF0X05eggfnC9+63Usc9Q928hRUIpIhTQaXsZwZBl4Ew== 153 + 154 + "@types/orderedmap@*", "@types/orderedmap@^1.0.0": 155 + version "1.0.0" 156 + resolved "https://registry.yarnpkg.com/@types/orderedmap/-/orderedmap-1.0.0.tgz#807455a192bba52cbbb4517044bc82bdbfa8c596" 157 + integrity sha512-dxKo80TqYx3YtBipHwA/SdFmMMyLCnP+5mkEqN0eMjcTBzHkiiX0ES118DsjDBjvD+zeSsSU9jULTZ+frog+Gw== 158 + 159 + "@types/parse-json@^4.0.0": 160 + version "4.0.0" 161 + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 162 + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 163 + 164 + "@types/prop-types@*": 165 + version "15.7.3" 166 + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 167 + integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== 168 + 169 + "@types/prosemirror-commands@*", "@types/prosemirror-commands@^1.0.3": 170 + version "1.0.3" 171 + resolved "https://registry.yarnpkg.com/@types/prosemirror-commands/-/prosemirror-commands-1.0.3.tgz#e9fa5653cffd1c75c260594cf3ec5244c9004dbf" 172 + integrity sha512-AjFCJqBvAhQ4gOzXPgUcnEZwu4jd7se7ani3dYAv8p4L+cWEPD6Pshrpp5uJDI5/pzvNXLWQ/4c2Qk4h9IML1w== 173 + dependencies: 174 + "@types/prosemirror-model" "*" 175 + "@types/prosemirror-state" "*" 176 + "@types/prosemirror-view" "*" 177 + 178 + "@types/prosemirror-dev-tools@^2.1.0": 179 + version "2.1.0" 180 + resolved "https://registry.yarnpkg.com/@types/prosemirror-dev-tools/-/prosemirror-dev-tools-2.1.0.tgz#91e2ef4f36129f5155f924296e306de187e86bdb" 181 + integrity sha512-OhnSaC4yrrEMLPRUkEWcHAIPVqgKlLkE4kISqL3cHeAYxASouSPvPMLqhBIbWkGwaozy43DjjVC1OXkxTo+y5Q== 182 + dependencies: 183 + "@types/prosemirror-state" "*" 184 + "@types/prosemirror-view" "*" 185 + 186 + "@types/prosemirror-dropcursor@^1.0.0": 187 + version "1.0.0" 188 + resolved "https://registry.yarnpkg.com/@types/prosemirror-dropcursor/-/prosemirror-dropcursor-1.0.0.tgz#2df872bc6431a9f06bc1a4a0eac7c2dc527e7f12" 189 + integrity sha512-S2ndHt94M64avSqjBcgIblaF3YeC3RfcmpY9/WIdfqU7aoJxuOh4RJk5emdmQPHZT1wbczMHFmFSsRqgErK0EQ== 190 + dependencies: 191 + "@types/prosemirror-state" "*" 192 + 193 + "@types/prosemirror-gapcursor@^1.0.1": 194 + version "1.0.1" 195 + resolved "https://registry.yarnpkg.com/@types/prosemirror-gapcursor/-/prosemirror-gapcursor-1.0.1.tgz#56a6274ef39f62c339adcc64305294b800211a5e" 196 + integrity sha512-ruA7FK9NJv+bn5s55SZYFf9SwaN3wk/MkBvqRmhIqIHvowTTa7nzIGWbUdWZMga1DDTk+GrwdcQaEHunAFjFsQ== 197 + dependencies: 198 + "@types/prosemirror-state" "*" 199 + 200 + "@types/prosemirror-history@^1.0.1": 201 + version "1.0.1" 202 + resolved "https://registry.yarnpkg.com/@types/prosemirror-history/-/prosemirror-history-1.0.1.tgz#b8d7595f73788b63fc9f2b57a763ba8375abfe87" 203 + integrity sha512-BYyPJlWDo3VEnWS5X2DCHXrrAKEjdbCe1DUjGL6R/8hmwMFe3iMJGYdBkOXU1FfkTpw7Z+PlwY/pMyeelVydmg== 204 + dependencies: 205 + "@types/prosemirror-model" "*" 206 + "@types/prosemirror-state" "*" 207 + 208 + "@types/prosemirror-inputrules@^1.0.3": 209 + version "1.0.3" 210 + resolved "https://registry.yarnpkg.com/@types/prosemirror-inputrules/-/prosemirror-inputrules-1.0.3.tgz#3f8f07921f692b6c7e4781fa426aee3e76b9018c" 211 + integrity sha512-cxMkCcu/di8//68jWc/NrRpvpCbizgq9vqv4rCRsAiuSiJ8L5hf4aFlCBUYCffuQnrY98uOfJ8YAUY3dbtaF9A== 212 + dependencies: 213 + "@types/prosemirror-model" "*" 214 + "@types/prosemirror-state" "*" 215 + 216 + "@types/prosemirror-keymap@^1.0.3": 217 + version "1.0.3" 218 + resolved "https://registry.yarnpkg.com/@types/prosemirror-keymap/-/prosemirror-keymap-1.0.3.tgz#09cc469a69222a4c8a3d415d02eeb459bb74269c" 219 + integrity sha512-iCYUtt0u8y6qeDZVsidEWJGbw2Kas+jtHD1QY374W/N2jASYp+8auucFLXe0UvoOy9jiWcGcqcecec1R+vkzgw== 220 + dependencies: 221 + "@types/prosemirror-commands" "*" 222 + "@types/prosemirror-model" "*" 223 + "@types/prosemirror-state" "*" 224 + "@types/prosemirror-view" "*" 225 + 226 + "@types/prosemirror-model@*", "@types/prosemirror-model@^1.7.2": 227 + version "1.7.2" 228 + resolved "https://registry.yarnpkg.com/@types/prosemirror-model/-/prosemirror-model-1.7.2.tgz#9c7aff2fd62f0f56eb76e2e0eb27bf6996e6c28a" 229 + integrity sha512-2l+yXvidg3AUHN07mO4Jd8Q84fo6ksFsy7LHUurLYrZ74uTahBp2fzcO49AKZMzww2EulXJ40Kl/OFaQ/7A1fw== 230 + dependencies: 231 + "@types/orderedmap" "*" 232 + 233 + "@types/prosemirror-schema-list@^1.0.1": 234 + version "1.0.1" 235 + resolved "https://registry.yarnpkg.com/@types/prosemirror-schema-list/-/prosemirror-schema-list-1.0.1.tgz#7f53e3c0326b1359755f3971b8c448d98b722f21" 236 + integrity sha512-+iUYq+pj2wVHSThj0MjNDzkkGwq8aDQ6j0UJK8a0cNCL8v44Ftcx1noGPtBIEUJgitH960VnfBNoTWfQoQZfRA== 237 + dependencies: 238 + "@types/orderedmap" "*" 239 + "@types/prosemirror-model" "*" 240 + "@types/prosemirror-state" "*" 241 + 242 + "@types/prosemirror-state@*": 243 + version "1.2.3" 244 + resolved "https://registry.yarnpkg.com/@types/prosemirror-state/-/prosemirror-state-1.2.3.tgz#7f5f871acf7b8c22e1862ff0068f9bf7e9682c0e" 245 + integrity sha512-6m433Hubix9bx+JgcLW7zzyiZuzwjq5mBdSMYY4Yi5c5ZpV2RiVmg7Cy6f9Thtts8vuztilw+PczJAgDm1Frfw== 246 + dependencies: 247 + "@types/prosemirror-model" "*" 248 + "@types/prosemirror-transform" "*" 249 + "@types/prosemirror-view" "*" 250 + 251 + "@types/prosemirror-state@^1.2.5": 252 + version "1.2.5" 253 + resolved "https://registry.yarnpkg.com/@types/prosemirror-state/-/prosemirror-state-1.2.5.tgz#a91304e9aab6e71f868e23b3a1ae514a75033f8f" 254 + integrity sha512-a5DxAifiF6vmdSJ5jsDMkpykUgUJUy+T5Q5hCjFOKJ4cfd3m3q1lsFKr7Bc4r91Qb7rfqyiKCMDnASS8LIHrKw== 255 + dependencies: 256 + "@types/prosemirror-model" "*" 257 + "@types/prosemirror-transform" "*" 258 + "@types/prosemirror-view" "*" 259 + 260 + "@types/prosemirror-tables@^0.9.1": 261 + version "0.9.1" 262 + resolved "https://registry.yarnpkg.com/@types/prosemirror-tables/-/prosemirror-tables-0.9.1.tgz#d2203330f0fa1161c04152bf02c39e152082d408" 263 + integrity sha512-zoY1qcAC6kG4UjnaQQXuoyYQdDJMQmY9uzRKdyUppP8rWRR5/kXBHOd84CD9ZvrYUBo3uDmS20qQnc3knr2j9A== 264 + dependencies: 265 + prosemirror-tables "*" 266 + 267 + "@types/prosemirror-transform@*", "@types/prosemirror-transform@^1.1.1": 268 + version "1.1.1" 269 + resolved "https://registry.yarnpkg.com/@types/prosemirror-transform/-/prosemirror-transform-1.1.1.tgz#5a0de16e8e0123b4c3d9559235e19f39cee85e5c" 270 + integrity sha512-yYCYSoiRH+Wcbl8GJc0PFCzeyMzNQ1vL2xrHHSXZuNcIlH75VoiKrZFeZ6BS9cl8mYXjZrlmdBe8YOxYvyKM6A== 271 + dependencies: 272 + "@types/prosemirror-model" "*" 273 + 274 + "@types/prosemirror-view@*": 275 + version "1.11.2" 276 + resolved "https://registry.yarnpkg.com/@types/prosemirror-view/-/prosemirror-view-1.11.2.tgz#58af5dcb7de20b7de874de99147552d5627209a1" 277 + integrity sha512-EKcQmR4KdkFZU13wS5pWrkSojRCPGqz/l/uzpZFfW5cgdr7fQsftf2/ttvIjpk1a94ISifEY4UZwflVJ+uL4Rg== 278 + dependencies: 279 + "@types/prosemirror-model" "*" 280 + "@types/prosemirror-state" "*" 281 + "@types/prosemirror-transform" "*" 282 + 283 + "@types/react-dom@^16.9.6": 284 + version "16.9.6" 285 + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.6.tgz#9e7f83d90566521cc2083be2277c6712dcaf754c" 286 + integrity sha512-S6ihtlPMDotrlCJE9ST1fRmYrQNNwfgL61UB4I1W7M6kPulUKx9fXAleW5zpdIjUQ4fTaaog8uERezjsGUj9HQ== 287 + dependencies: 288 + "@types/react" "*" 289 + 290 + "@types/react-window@^1.8.2": 291 + version "1.8.2" 292 + resolved "https://registry.yarnpkg.com/@types/react-window/-/react-window-1.8.2.tgz#a5a6b2762ce73ffaab7911ee1397cf645f2459fe" 293 + integrity sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F/y6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ== 294 + dependencies: 295 + "@types/react" "*" 296 + 297 + "@types/react@*", "@types/react@^16.9.32": 298 + version "16.9.32" 299 + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.32.tgz#f6368625b224604148d1ddf5920e4fefbd98d383" 300 + integrity sha512-fmejdp0CTH00mOJmxUPPbWCEBWPvRIL4m8r0qD+BSDUqmutPyGQCHifzMpMzdvZwROdEdL78IuZItntFWgPXHQ== 301 + dependencies: 302 + "@types/prop-types" "*" 303 + csstype "^2.2.0" 304 + 305 + "@types/unzip@^0.1.1": 306 + version "0.1.1" 307 + resolved "https://registry.yarnpkg.com/@types/unzip/-/unzip-0.1.1.tgz#96e80dc5e2917a769c8be01aa49c4fe660e7bab3" 308 + integrity sha512-skD6Um7Pk2l7y+tVOKSgOA9vXViyhk/qJYmr17Ek4Uw3Zgo/DWPScphTPztPbApTIngyYSJnkEW87xrHzRYaew== 309 + dependencies: 310 + "@types/node" "*" 311 + 312 + "@types/zenscroll@^4.0.0": 313 + version "4.0.0" 314 + resolved "https://registry.yarnpkg.com/@types/zenscroll/-/zenscroll-4.0.0.tgz#9acc7df6c87cc9e064f5a6230df499835dee1972" 315 + integrity sha512-n9np/qsr3HBH3VBVfviHhQPmGP1+D01+VI/40QFq/7LyJqDoIlcaaABu/qPAVats/oNuUJ/dhrjrOjVaqos+4A== 316 + 317 + abbrev@1: 318 + version "1.1.1" 319 + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 320 + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 321 + 322 + accepts@~1.3.7: 323 + version "1.3.7" 324 + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 325 + integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== 326 + dependencies: 327 + mime-types "~2.1.24" 328 + negotiator "0.6.2" 329 + 330 + acorn-jsx@^4.0.1: 331 + version "4.1.1" 332 + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz#e8e41e48ea2fe0c896740610ab6a4ffd8add225e" 333 + integrity sha512-JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw== 334 + dependencies: 335 + acorn "^5.0.3" 336 + 337 + acorn@^5.0.3, acorn@^5.7.3: 338 + version "5.7.3" 339 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" 340 + integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== 341 + 342 + ajax-request@^1.2.0: 343 + version "1.2.3" 344 + resolved "https://registry.yarnpkg.com/ajax-request/-/ajax-request-1.2.3.tgz#99fcbec1d6d2792f85fa949535332bd14f5f3790" 345 + integrity sha1-mfy+wdbSeS+F+pSVNTMr0U9fN5A= 346 + dependencies: 347 + file-system "^2.1.1" 348 + utils-extend "^1.0.7" 349 + 350 + ajv@^6.5.5: 351 + version "6.12.0" 352 + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7" 353 + integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw== 354 + dependencies: 355 + fast-deep-equal "^3.1.1" 356 + fast-json-stable-stringify "^2.0.0" 357 + json-schema-traverse "^0.4.1" 358 + uri-js "^4.2.2" 359 + 360 + ansi-escapes@^3.0.0: 361 + version "3.2.0" 362 + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 363 + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 364 + 365 + ansi-regex@^3.0.0: 366 + version "3.0.0" 367 + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 368 + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 369 + 370 + ansi-styles@^3.2.1: 371 + version "3.2.1" 372 + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 373 + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 374 + dependencies: 375 + color-convert "^1.9.0" 376 + 377 + ansi@^0.3.1: 378 + version "0.3.1" 379 + resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 380 + integrity sha1-DELU+xcWDVqa8eSEus4cZpIsGyE= 381 + 382 + anymatch@^1.3.0: 383 + version "1.3.2" 384 + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 385 + integrity sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA== 386 + dependencies: 387 + micromatch "^2.1.5" 388 + normalize-path "^2.0.0" 389 + 390 + app-root-path@^1.3.0: 391 + version "1.4.0" 392 + resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-1.4.0.tgz#6335d865c9640d0fad99004e5a79232238e92dfa" 393 + integrity sha1-YzXYZclkDQ+tmQBOWnkjIjjpLfo= 394 + 395 + app-root-path@^2.0.1: 396 + version "2.2.1" 397 + resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.2.1.tgz#d0df4a682ee408273583d43f6f79e9892624bc9a" 398 + integrity sha512-91IFKeKk7FjfmezPKkwtaRvSpnUc4gDwPAjA1YZ9Gn0q0PPeW+vbeUsZuyDwjI7+QTHhcLen2v25fi/AmhvbJA== 399 + 400 + arg@^4.1.0: 401 + version "4.1.3" 402 + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" 403 + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== 404 + 405 + argparse@^1.0.7: 406 + version "1.0.10" 407 + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 408 + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 409 + dependencies: 410 + sprintf-js "~1.0.2" 411 + 412 + arr-diff@^2.0.0: 413 + version "2.0.0" 414 + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 415 + integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= 416 + dependencies: 417 + arr-flatten "^1.0.1" 418 + 419 + arr-diff@^4.0.0: 420 + version "4.0.0" 421 + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 422 + integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 423 + 424 + arr-flatten@^1.0.1, arr-flatten@^1.1.0: 425 + version "1.1.0" 426 + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 427 + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 428 + 429 + arr-union@^3.1.0: 430 + version "3.1.0" 431 + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 432 + integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 433 + 434 + array-flatten@1.1.1: 435 + version "1.1.1" 436 + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 437 + integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 438 + 439 + array-unique@^0.2.1: 440 + version "0.2.1" 441 + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 442 + integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= 443 + 444 + array-unique@^0.3.2: 445 + version "0.3.2" 446 + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 447 + integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 448 + 449 + asn1@~0.2.3: 450 + version "0.2.4" 451 + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 452 + integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 453 + dependencies: 454 + safer-buffer "~2.1.0" 455 + 456 + assert-plus@1.0.0, assert-plus@^1.0.0: 457 + version "1.0.0" 458 + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 459 + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= 460 + 461 + assign-symbols@^1.0.0: 462 + version "1.0.0" 463 + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 464 + integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 465 + 466 + async-each@^1.0.0: 467 + version "1.0.3" 468 + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 469 + integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== 470 + 471 + asynckit@^0.4.0: 472 + version "0.4.0" 473 + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 474 + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 475 + 476 + atob@^2.1.2: 477 + version "2.1.2" 478 + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 479 + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 480 + 481 + aws-sign2@~0.7.0: 482 + version "0.7.0" 483 + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 484 + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= 485 + 486 + aws4@^1.8.0: 487 + version "1.9.1" 488 + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e" 489 + integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug== 490 + 491 + babel-plugin-emotion@^9.2.11: 492 + version "9.2.11" 493 + resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz#319c005a9ee1d15bb447f59fe504c35fd5807728" 494 + integrity sha512-dgCImifnOPPSeXod2znAmgc64NhaaOjGEHROR/M+lmStb3841yK1sgaDYAYMnlvWNz8GnpwIPN0VmNpbWYZ+VQ== 495 + dependencies: 496 + "@babel/helper-module-imports" "^7.0.0" 497 + "@emotion/babel-utils" "^0.6.4" 498 + "@emotion/hash" "^0.6.2" 499 + "@emotion/memoize" "^0.6.1" 500 + "@emotion/stylis" "^0.7.0" 501 + babel-plugin-macros "^2.0.0" 502 + babel-plugin-syntax-jsx "^6.18.0" 503 + convert-source-map "^1.5.0" 504 + find-root "^1.1.0" 505 + mkdirp "^0.5.1" 506 + source-map "^0.5.7" 507 + touch "^2.0.1" 508 + 509 + babel-plugin-macros@^2.0.0: 510 + version "2.8.0" 511 + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" 512 + integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== 513 + dependencies: 514 + "@babel/runtime" "^7.7.2" 515 + cosmiconfig "^6.0.0" 516 + resolve "^1.12.0" 517 + 518 + babel-plugin-syntax-jsx@^6.18.0: 519 + version "6.18.0" 520 + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 521 + integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= 522 + 523 + babel-runtime@^6.6.1: 524 + version "6.26.0" 525 + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 526 + integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= 527 + dependencies: 528 + core-js "^2.4.0" 529 + regenerator-runtime "^0.11.0" 530 + 531 + balanced-match@^1.0.0: 532 + version "1.0.0" 533 + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 534 + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 535 + 536 + base16@^1.0.0: 537 + version "1.0.0" 538 + resolved "https://registry.yarnpkg.com/base16/-/base16-1.0.0.tgz#e297f60d7ec1014a7a971a39ebc8a98c0b681e70" 539 + integrity sha1-4pf2DX7BAUp6lxo568ipjAtoHnA= 540 + 541 + base64-img@^1.0.3: 542 + version "1.0.4" 543 + resolved "https://registry.yarnpkg.com/base64-img/-/base64-img-1.0.4.tgz#3e22d55d6c74a24553d840d2b1bc12a7db078d35" 544 + integrity sha1-PiLVXWx0okVT2EDSsbwSp9sHjTU= 545 + dependencies: 546 + ajax-request "^1.2.0" 547 + file-system "^2.1.0" 548 + 549 + base64-js@^1.2.0: 550 + version "1.3.1" 551 + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" 552 + integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== 553 + 554 + base@^0.11.1: 555 + version "0.11.2" 556 + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 557 + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 558 + dependencies: 559 + cache-base "^1.0.1" 560 + class-utils "^0.3.5" 561 + component-emitter "^1.2.1" 562 + define-property "^1.0.0" 563 + isobject "^3.0.1" 564 + mixin-deep "^1.2.0" 565 + pascalcase "^0.1.1" 566 + 567 + bcrypt-pbkdf@^1.0.0: 568 + version "1.0.2" 569 + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 570 + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= 571 + dependencies: 572 + tweetnacl "^0.14.3" 573 + 574 + biblatex-csl-converter@^1.9.1: 575 + version "1.9.1" 576 + resolved "https://registry.yarnpkg.com/biblatex-csl-converter/-/biblatex-csl-converter-1.9.1.tgz#50aacfef172997f1c98d72837ffdd3b19c62f8c4" 577 + integrity sha512-M7HkWas8NbiFoNdS/lZOfup5A83Scw4iWFoPn9r84zh9DzaG/gHU86qH1QHMgUc2dSaquuIBQZRHC9wCs7k92g== 578 + 579 + binary-extensions@^1.0.0: 580 + version "1.13.1" 581 + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" 582 + integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== 583 + 584 + "binary@>= 0.3.0 < 1": 585 + version "0.3.0" 586 + resolved "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz#9f60553bc5ce8c3386f3b553cff47462adecaa79" 587 + integrity sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk= 588 + dependencies: 589 + buffers "~0.1.1" 590 + chainsaw "~0.1.0" 591 + 592 + bindings@^1.5.0: 593 + version "1.5.0" 594 + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" 595 + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== 596 + dependencies: 597 + file-uri-to-path "1.0.0" 598 + 599 + body-parser@1.19.0: 600 + version "1.19.0" 601 + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" 602 + integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== 603 + dependencies: 604 + bytes "3.1.0" 605 + content-type "~1.0.4" 606 + debug "2.6.9" 607 + depd "~1.1.2" 608 + http-errors "1.7.2" 609 + iconv-lite "0.4.24" 610 + on-finished "~2.3.0" 611 + qs "6.7.0" 612 + raw-body "2.4.0" 613 + type-is "~1.6.17" 614 + 615 + boundary@^1.0.1: 616 + version "1.0.1" 617 + resolved "https://registry.yarnpkg.com/boundary/-/boundary-1.0.1.tgz#4d67dc2602c0cc16dd9bce7ebf87e948290f5812" 618 + integrity sha1-TWfcJgLAzBbdm85+v4fpSCkPWBI= 619 + 620 + bowser@^2.0.0-beta.3: 621 + version "2.9.0" 622 + resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.9.0.tgz#3bed854233b419b9a7422d9ee3e85504373821c9" 623 + integrity sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA== 624 + 625 + brace-expansion@^1.1.7: 626 + version "1.1.11" 627 + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 628 + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 629 + dependencies: 630 + balanced-match "^1.0.0" 631 + concat-map "0.0.1" 632 + 633 + braces@^1.8.2: 634 + version "1.8.5" 635 + resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 636 + integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= 637 + dependencies: 638 + expand-range "^1.8.1" 639 + preserve "^0.2.0" 640 + repeat-element "^1.1.2" 641 + 642 + braces@^2.3.1: 643 + version "2.3.2" 644 + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 645 + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 646 + dependencies: 647 + arr-flatten "^1.1.0" 648 + array-unique "^0.3.2" 649 + extend-shallow "^2.0.1" 650 + fill-range "^4.0.0" 651 + isobject "^3.0.1" 652 + repeat-element "^1.1.2" 653 + snapdragon "^0.8.1" 654 + snapdragon-node "^2.0.1" 655 + split-string "^3.0.2" 656 + to-regex "^3.0.1" 657 + 658 + buffer-from@^1.0.0: 659 + version "1.1.1" 660 + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 661 + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 662 + 663 + buffers@~0.1.1: 664 + version "0.1.1" 665 + resolved "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz#b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb" 666 + integrity sha1-skV5w77U1tOWru5tmorn9Ugqt7s= 667 + 668 + builtin-modules@^1.1.1: 669 + version "1.1.1" 670 + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 671 + integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= 672 + 673 + bytes@3.1.0: 674 + version "3.1.0" 675 + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 676 + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 677 + 678 + cache-base@^1.0.1: 679 + version "1.0.1" 680 + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 681 + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 682 + dependencies: 683 + collection-visit "^1.0.0" 684 + component-emitter "^1.2.1" 685 + get-value "^2.0.6" 686 + has-value "^1.0.0" 687 + isobject "^3.0.1" 688 + set-value "^2.0.0" 689 + to-object-path "^0.3.0" 690 + union-value "^1.0.0" 691 + unset-value "^1.0.0" 692 + 693 + callsites@^3.0.0: 694 + version "3.1.0" 695 + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 696 + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 697 + 698 + caseless@~0.12.0: 699 + version "0.12.0" 700 + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 701 + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= 702 + 703 + chain-able@^1.0.1: 704 + version "1.0.1" 705 + resolved "https://registry.yarnpkg.com/chain-able/-/chain-able-1.0.1.tgz#b48ac9bdc18f2192ec730abc66609f90aab5605f" 706 + integrity sha1-tIrJvcGPIZLscwq8ZmCfkKq1YF8= 707 + 708 + chain-able@^3.0.0: 709 + version "3.0.0" 710 + resolved "https://registry.yarnpkg.com/chain-able/-/chain-able-3.0.0.tgz#dcffe8b04f3da210941a23843bc1332bb288ca9f" 711 + integrity sha512-26MoELhta86n7gCsE2T1hGRyncZvPjFXTkB/DEp4+i/EJVSxXQNwXMDZZb2+SWcbPuow18wQtztaW7GXOel9DA== 712 + 713 + chainsaw@~0.1.0: 714 + version "0.1.0" 715 + resolved "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz#5eab50b28afe58074d0d58291388828b5e5fbc98" 716 + integrity sha1-XqtQsor+WAdNDVgpE4iCi15fvJg= 717 + dependencies: 718 + traverse ">=0.3.0 <0.4" 719 + 720 + chalk@^2.0.0, chalk@^2.3.0, chalk@^2.4.1: 721 + version "2.4.2" 722 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 723 + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 724 + dependencies: 725 + ansi-styles "^3.2.1" 726 + escape-string-regexp "^1.0.5" 727 + supports-color "^5.3.0" 728 + 729 + chardet@^0.4.0: 730 + version "0.4.2" 731 + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 732 + integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= 733 + 734 + chokidar@^1.6.1: 735 + version "1.7.0" 736 + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 737 + integrity sha1-eY5ol3gVHIB2tLNg5e3SjNortGg= 738 + dependencies: 739 + anymatch "^1.3.0" 740 + async-each "^1.0.0" 741 + glob-parent "^2.0.0" 742 + inherits "^2.0.1" 743 + is-binary-path "^1.0.0" 744 + is-glob "^2.0.0" 745 + path-is-absolute "^1.0.0" 746 + readdirp "^2.0.0" 747 + optionalDependencies: 748 + fsevents "^1.0.0" 749 + 750 + class-utils@^0.3.5: 751 + version "0.3.6" 752 + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 753 + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 754 + dependencies: 755 + arr-union "^3.1.0" 756 + define-property "^0.2.5" 757 + isobject "^3.0.0" 758 + static-extend "^0.1.1" 759 + 760 + clean-css@^4.1.9: 761 + version "4.2.3" 762 + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" 763 + integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== 764 + dependencies: 765 + source-map "~0.6.0" 766 + 767 + cli-cursor@^2.1.0: 768 + version "2.1.0" 769 + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 770 + integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 771 + dependencies: 772 + restore-cursor "^2.0.0" 773 + 774 + cli-width@^2.0.0: 775 + version "2.2.0" 776 + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 777 + integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= 778 + 779 + clipboard@^2.0.6: 780 + version "2.0.6" 781 + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376" 782 + integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg== 783 + dependencies: 784 + good-listener "^1.2.2" 785 + select "^1.1.2" 786 + tiny-emitter "^2.0.0" 787 + 788 + collection-visit@^1.0.0: 789 + version "1.0.0" 790 + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 791 + integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 792 + dependencies: 793 + map-visit "^1.0.0" 794 + object-visit "^1.0.0" 795 + 796 + color-convert@^1.9.0: 797 + version "1.9.3" 798 + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 799 + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 800 + dependencies: 801 + color-name "1.1.3" 802 + 803 + color-name@1.1.3: 804 + version "1.1.3" 805 + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 806 + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 807 + 808 + combined-stream@^1.0.6, combined-stream@~1.0.6: 809 + version "1.0.8" 810 + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 811 + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 812 + dependencies: 813 + delayed-stream "~1.0.0" 814 + 815 + commander@^2.12.1, commander@^2.20.0, commander@~2.20.3: 816 + version "2.20.3" 817 + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 818 + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 819 + 820 + component-emitter@^1.2.1: 821 + version "1.3.0" 822 + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 823 + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 824 + 825 + concat-map@0.0.1: 826 + version "0.0.1" 827 + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 828 + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 829 + 830 + concat-stream@^1.4.7: 831 + version "1.6.2" 832 + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 833 + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== 834 + dependencies: 835 + buffer-from "^1.0.0" 836 + inherits "^2.0.3" 837 + readable-stream "^2.2.2" 838 + typedarray "^0.0.6" 839 + 840 + concat-stream@^2.0.0: 841 + version "2.0.0" 842 + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" 843 + integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== 844 + dependencies: 845 + buffer-from "^1.0.0" 846 + inherits "^2.0.3" 847 + readable-stream "^3.0.2" 848 + typedarray "^0.0.6" 849 + 850 + content-disposition@0.5.3: 851 + version "0.5.3" 852 + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" 853 + integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== 854 + dependencies: 855 + safe-buffer "5.1.2" 856 + 857 + content-type@~1.0.4: 858 + version "1.0.4" 859 + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 860 + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 861 + 862 + convert-source-map@^1.5.0, convert-source-map@^1.5.1: 863 + version "1.7.0" 864 + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 865 + integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 866 + dependencies: 867 + safe-buffer "~5.1.1" 868 + 869 + cookie-signature@1.0.6: 870 + version "1.0.6" 871 + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 872 + integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= 873 + 874 + cookie@0.4.0: 875 + version "0.4.0" 876 + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" 877 + integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== 878 + 879 + copy-descriptor@^0.1.0: 880 + version "0.1.1" 881 + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 882 + integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 883 + 884 + core-js@^2.4.0: 885 + version "2.6.11" 886 + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" 887 + integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== 888 + 889 + core-util-is@1.0.2, core-util-is@~1.0.0: 890 + version "1.0.2" 891 + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 892 + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 893 + 894 + cosmiconfig@^6.0.0: 895 + version "6.0.0" 896 + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" 897 + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== 898 + dependencies: 899 + "@types/parse-json" "^4.0.0" 900 + import-fresh "^3.1.0" 901 + parse-json "^5.0.0" 902 + path-type "^4.0.0" 903 + yaml "^1.7.2" 904 + 905 + create-emotion-styled@^9.2.8: 906 + version "9.2.8" 907 + resolved "https://registry.yarnpkg.com/create-emotion-styled/-/create-emotion-styled-9.2.8.tgz#c0050e768ba439609bec108600467adf2de67cc3" 908 + integrity sha512-2LrNM5MREWzI5hZK+LyiBHglwE18WE3AEbBQgpHQ1+zmyLSm/dJsUZBeFAwuIMb+TjNZP0KsMZlV776ufOtFdg== 909 + dependencies: 910 + "@emotion/is-prop-valid" "^0.6.1" 911 + 912 + create-emotion@^9.2.12: 913 + version "9.2.12" 914 + resolved "https://registry.yarnpkg.com/create-emotion/-/create-emotion-9.2.12.tgz#0fc8e7f92c4f8bb924b0fef6781f66b1d07cb26f" 915 + integrity sha512-P57uOF9NL2y98Xrbl2OuiDQUZ30GVmASsv5fbsjF4Hlraip2kyAvMm+2PoYUvFFw03Fhgtxk3RqZSm2/qHL9hA== 916 + dependencies: 917 + "@emotion/hash" "^0.6.2" 918 + "@emotion/memoize" "^0.6.1" 919 + "@emotion/stylis" "^0.7.0" 920 + "@emotion/unitless" "^0.6.2" 921 + csstype "^2.5.2" 922 + stylis "^3.5.0" 923 + stylis-rule-sheet "^0.0.10" 924 + 925 + create-react-context@^0.1.5: 926 + version "0.1.6" 927 + resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.1.6.tgz#0f425931d907741127acc6e31acb4f9015dd9fdc" 928 + integrity sha512-eCnYYEUEc5i32LHwpE/W7NlddOB9oHwsPaWtWzYtflNkkwa3IfindIcoXdVWs12zCbwaMCavKNu84EXogVIWHw== 929 + 930 + csstype@^2.2.0: 931 + version "2.6.10" 932 + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b" 933 + integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== 934 + 935 + csstype@^2.5.2: 936 + version "2.6.9" 937 + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.9.tgz#05141d0cd557a56b8891394c1911c40c8a98d098" 938 + integrity sha512-xz39Sb4+OaTsULgUERcCk+TJj8ylkL4aSVDQiX/ksxbELSqwkgt4d4RD7fovIdgJGSuNYqwZEiVjYY5l0ask+Q== 939 + 940 + dashdash@^1.12.0: 941 + version "1.14.1" 942 + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 943 + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 944 + dependencies: 945 + assert-plus "^1.0.0" 946 + 947 + debug@2.6.9, debug@^2.2.0, debug@^2.3.3: 948 + version "2.6.9" 949 + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 950 + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 951 + dependencies: 952 + ms "2.0.0" 953 + 954 + decode-uri-component@^0.2.0: 955 + version "0.2.0" 956 + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 957 + integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 958 + 959 + deep-is@~0.1.3: 960 + version "0.1.3" 961 + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 962 + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 963 + 964 + define-properties@^1.1.2, define-properties@^1.1.3: 965 + version "1.1.3" 966 + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 967 + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 968 + dependencies: 969 + object-keys "^1.0.12" 970 + 971 + define-property@^0.2.5: 972 + version "0.2.5" 973 + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 974 + integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 975 + dependencies: 976 + is-descriptor "^0.1.0" 977 + 978 + define-property@^1.0.0: 979 + version "1.0.0" 980 + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 981 + integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 982 + dependencies: 983 + is-descriptor "^1.0.0" 984 + 985 + define-property@^2.0.2: 986 + version "2.0.2" 987 + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 988 + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 989 + dependencies: 990 + is-descriptor "^1.0.2" 991 + isobject "^3.0.1" 992 + 993 + delayed-stream@~1.0.0: 994 + version "1.0.0" 995 + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 996 + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 997 + 998 + delegate@^3.1.2: 999 + version "3.2.0" 1000 + resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" 1001 + integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== 1002 + 1003 + depd@~1.1.2: 1004 + version "1.1.2" 1005 + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 1006 + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 1007 + 1008 + destroy@~1.0.4: 1009 + version "1.0.4" 1010 + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1011 + integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 1012 + 1013 + diff-match-patch@^1.0.0, diff-match-patch@^1.0.4: 1014 + version "1.0.4" 1015 + resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.4.tgz#6ac4b55237463761c4daf0dc603eb869124744b1" 1016 + integrity sha512-Uv3SW8bmH9nAtHKaKSanOQmj2DnlH65fUpcrMdfdaOxUG02QQ4YGZ8AE7kKOMisF7UqvOlGKVYWRvezdncW9lg== 1017 + 1018 + diff@^4.0.1: 1019 + version "4.0.2" 1020 + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 1021 + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== 1022 + 1023 + ecc-jsbn@~0.1.1: 1024 + version "0.1.2" 1025 + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 1026 + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= 1027 + dependencies: 1028 + jsbn "~0.1.0" 1029 + safer-buffer "^2.1.0" 1030 + 1031 + ee-first@1.1.1: 1032 + version "1.1.1" 1033 + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1034 + integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 1035 + 1036 + emotion@^9.2.5: 1037 + version "9.2.12" 1038 + resolved "https://registry.yarnpkg.com/emotion/-/emotion-9.2.12.tgz#53925aaa005614e65c6e43db8243c843574d1ea9" 1039 + integrity sha512-hcx7jppaI8VoXxIWEhxpDW7I+B4kq9RNzQLmsrF6LY8BGKqe2N+gFAQr0EfuFucFlPs2A9HM4+xNj4NeqEWIOQ== 1040 + dependencies: 1041 + babel-plugin-emotion "^9.2.11" 1042 + create-emotion "^9.2.12" 1043 + 1044 + encodeurl@~1.0.2: 1045 + version "1.0.2" 1046 + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 1047 + integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 1048 + 1049 + error-ex@^1.3.1: 1050 + version "1.3.2" 1051 + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1052 + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1053 + dependencies: 1054 + is-arrayish "^0.2.1" 1055 + 1056 + es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: 1057 + version "1.17.6" 1058 + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" 1059 + integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== 1060 + dependencies: 1061 + es-to-primitive "^1.2.1" 1062 + function-bind "^1.1.1" 1063 + has "^1.0.3" 1064 + has-symbols "^1.0.1" 1065 + is-callable "^1.2.0" 1066 + is-regex "^1.1.0" 1067 + object-inspect "^1.7.0" 1068 + object-keys "^1.1.1" 1069 + object.assign "^4.1.0" 1070 + string.prototype.trimend "^1.0.1" 1071 + string.prototype.trimstart "^1.0.1" 1072 + 1073 + es-to-primitive@^1.2.1: 1074 + version "1.2.1" 1075 + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 1076 + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1077 + dependencies: 1078 + is-callable "^1.1.4" 1079 + is-date-object "^1.0.1" 1080 + is-symbol "^1.0.2" 1081 + 1082 + es6-object-assign@^1.1.0: 1083 + version "1.1.0" 1084 + resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c" 1085 + integrity sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw= 1086 + 1087 + escape-html@~1.0.3: 1088 + version "1.0.3" 1089 + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1090 + integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 1091 + 1092 + escape-string-regexp@^1.0.5: 1093 + version "1.0.5" 1094 + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1095 + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1096 + 1097 + escodegen@^1.8.1: 1098 + version "1.14.1" 1099 + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" 1100 + integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ== 1101 + dependencies: 1102 + esprima "^4.0.1" 1103 + estraverse "^4.2.0" 1104 + esutils "^2.0.2" 1105 + optionator "^0.8.1" 1106 + optionalDependencies: 1107 + source-map "~0.6.1" 1108 + 1109 + esprima@^4.0.0, esprima@^4.0.1: 1110 + version "4.0.1" 1111 + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1112 + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1113 + 1114 + estraverse@^4.2.0: 1115 + version "4.3.0" 1116 + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 1117 + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1118 + 1119 + esutils@^2.0.2: 1120 + version "2.0.3" 1121 + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1122 + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1123 + 1124 + etag@~1.8.1: 1125 + version "1.8.1" 1126 + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 1127 + integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 1128 + 1129 + exec-sh@^0.2.0: 1130 + version "0.2.2" 1131 + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36" 1132 + integrity sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw== 1133 + dependencies: 1134 + merge "^1.2.0" 1135 + 1136 + expand-brackets@^0.1.4: 1137 + version "0.1.5" 1138 + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1139 + integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= 1140 + dependencies: 1141 + is-posix-bracket "^0.1.0" 1142 + 1143 + expand-brackets@^2.1.4: 1144 + version "2.1.4" 1145 + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1146 + integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 1147 + dependencies: 1148 + debug "^2.3.3" 1149 + define-property "^0.2.5" 1150 + extend-shallow "^2.0.1" 1151 + posix-character-classes "^0.1.0" 1152 + regex-not "^1.0.0" 1153 + snapdragon "^0.8.1" 1154 + to-regex "^3.0.1" 1155 + 1156 + expand-range@^1.8.1: 1157 + version "1.8.2" 1158 + resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1159 + integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= 1160 + dependencies: 1161 + fill-range "^2.1.0" 1162 + 1163 + express@^4.14.0: 1164 + version "4.17.1" 1165 + resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" 1166 + integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== 1167 + dependencies: 1168 + accepts "~1.3.7" 1169 + array-flatten "1.1.1" 1170 + body-parser "1.19.0" 1171 + content-disposition "0.5.3" 1172 + content-type "~1.0.4" 1173 + cookie "0.4.0" 1174 + cookie-signature "1.0.6" 1175 + debug "2.6.9" 1176 + depd "~1.1.2" 1177 + encodeurl "~1.0.2" 1178 + escape-html "~1.0.3" 1179 + etag "~1.8.1" 1180 + finalhandler "~1.1.2" 1181 + fresh "0.5.2" 1182 + merge-descriptors "1.0.1" 1183 + methods "~1.1.2" 1184 + on-finished "~2.3.0" 1185 + parseurl "~1.3.3" 1186 + path-to-regexp "0.1.7" 1187 + proxy-addr "~2.0.5" 1188 + qs "6.7.0" 1189 + range-parser "~1.2.1" 1190 + safe-buffer "5.1.2" 1191 + send "0.17.1" 1192 + serve-static "1.14.1" 1193 + setprototypeof "1.1.1" 1194 + statuses "~1.5.0" 1195 + type-is "~1.6.18" 1196 + utils-merge "1.0.1" 1197 + vary "~1.1.2" 1198 + 1199 + extend-shallow@^2.0.1: 1200 + version "2.0.1" 1201 + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1202 + integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 1203 + dependencies: 1204 + is-extendable "^0.1.0" 1205 + 1206 + extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1207 + version "3.0.2" 1208 + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1209 + integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 1210 + dependencies: 1211 + assign-symbols "^1.0.0" 1212 + is-extendable "^1.0.1" 1213 + 1214 + extend@~3.0.2: 1215 + version "3.0.2" 1216 + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1217 + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 1218 + 1219 + external-editor@^2.0.4: 1220 + version "2.2.0" 1221 + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" 1222 + integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== 1223 + dependencies: 1224 + chardet "^0.4.0" 1225 + iconv-lite "^0.4.17" 1226 + tmp "^0.0.33" 1227 + 1228 + extglob@^0.3.1: 1229 + version "0.3.2" 1230 + resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1231 + integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= 1232 + dependencies: 1233 + is-extglob "^1.0.0" 1234 + 1235 + extglob@^2.0.4: 1236 + version "2.0.4" 1237 + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1238 + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 1239 + dependencies: 1240 + array-unique "^0.3.2" 1241 + define-property "^1.0.0" 1242 + expand-brackets "^2.1.4" 1243 + extend-shallow "^2.0.1" 1244 + fragment-cache "^0.2.1" 1245 + regex-not "^1.0.0" 1246 + snapdragon "^0.8.1" 1247 + to-regex "^3.0.1" 1248 + 1249 + extsprintf@1.3.0: 1250 + version "1.3.0" 1251 + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1252 + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= 1253 + 1254 + extsprintf@^1.2.0: 1255 + version "1.4.0" 1256 + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1257 + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= 1258 + 1259 + fast-deep-equal@^3.1.1: 1260 + version "3.1.1" 1261 + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" 1262 + integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== 1263 + 1264 + fast-json-stable-stringify@^2.0.0: 1265 + version "2.1.0" 1266 + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1267 + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1268 + 1269 + fast-levenshtein@~2.0.6: 1270 + version "2.0.6" 1271 + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1272 + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1273 + 1274 + fast-xml-parser@^3.17.1: 1275 + version "3.17.1" 1276 + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.17.1.tgz#579fa64346cc891ce240d378268c6216e74aab10" 1277 + integrity sha512-jZ0EVn1iBuZtx/sbQnfvhSaaUltz+0+yfR+6QRyzrlt5yMiU+8ZfGj9i3/hoXJxm+aFri7dycBWbncox7frCAQ== 1278 + 1279 + figures@^2.0.0: 1280 + version "2.0.0" 1281 + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1282 + integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 1283 + dependencies: 1284 + escape-string-regexp "^1.0.5" 1285 + 1286 + file-match@^1.0.1: 1287 + version "1.0.2" 1288 + resolved "https://registry.yarnpkg.com/file-match/-/file-match-1.0.2.tgz#c9cad265d2c8adf3a81475b0df475859069faef7" 1289 + integrity sha1-ycrSZdLIrfOoFHWw30dYWQafrvc= 1290 + dependencies: 1291 + utils-extend "^1.0.6" 1292 + 1293 + file-system@^2.1.0, file-system@^2.1.1: 1294 + version "2.2.2" 1295 + resolved "https://registry.yarnpkg.com/file-system/-/file-system-2.2.2.tgz#7d65833e3a2347dcd956a813c677153ed3edd987" 1296 + integrity sha1-fWWDPjojR9zZVqgTxncVPtPt2Yc= 1297 + dependencies: 1298 + file-match "^1.0.1" 1299 + utils-extend "^1.0.4" 1300 + 1301 + file-uri-to-path@1.0.0: 1302 + version "1.0.0" 1303 + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 1304 + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== 1305 + 1306 + filename-regex@^2.0.0: 1307 + version "2.0.1" 1308 + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1309 + integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY= 1310 + 1311 + fill-range@^2.1.0: 1312 + version "2.2.4" 1313 + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 1314 + integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== 1315 + dependencies: 1316 + is-number "^2.1.0" 1317 + isobject "^2.0.0" 1318 + randomatic "^3.0.0" 1319 + repeat-element "^1.1.2" 1320 + repeat-string "^1.5.2" 1321 + 1322 + fill-range@^4.0.0: 1323 + version "4.0.0" 1324 + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1325 + integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 1326 + dependencies: 1327 + extend-shallow "^2.0.1" 1328 + is-number "^3.0.0" 1329 + repeat-string "^1.6.1" 1330 + to-regex-range "^2.1.0" 1331 + 1332 + finalhandler@~1.1.2: 1333 + version "1.1.2" 1334 + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" 1335 + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== 1336 + dependencies: 1337 + debug "2.6.9" 1338 + encodeurl "~1.0.2" 1339 + escape-html "~1.0.3" 1340 + on-finished "~2.3.0" 1341 + parseurl "~1.3.3" 1342 + statuses "~1.5.0" 1343 + unpipe "~1.0.0" 1344 + 1345 + find-root@^1.1.0: 1346 + version "1.1.0" 1347 + resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" 1348 + integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== 1349 + 1350 + fliplog@^0.3.13: 1351 + version "0.3.13" 1352 + resolved "https://registry.yarnpkg.com/fliplog/-/fliplog-0.3.13.tgz#dd0d786e821822aae272e0ddc84012596a96154c" 1353 + integrity sha512-R504CdX+mdhMYpmyrdiQ9PW6ncAyZnxyeA85fS1/P/Y9qmbMiQsqt6QzsYhq5kbqMb84PibVOcS1oz98GJl6EQ== 1354 + dependencies: 1355 + chain-able "^1.0.1" 1356 + 1357 + for-in@^1.0.1, for-in@^1.0.2: 1358 + version "1.0.2" 1359 + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1360 + integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 1361 + 1362 + for-own@^0.1.4: 1363 + version "0.1.5" 1364 + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1365 + integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= 1366 + dependencies: 1367 + for-in "^1.0.1" 1368 + 1369 + forever-agent@~0.6.1: 1370 + version "0.6.1" 1371 + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1372 + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= 1373 + 1374 + form-data@~2.3.2: 1375 + version "2.3.3" 1376 + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 1377 + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== 1378 + dependencies: 1379 + asynckit "^0.4.0" 1380 + combined-stream "^1.0.6" 1381 + mime-types "^2.1.12" 1382 + 1383 + forwarded@~0.1.2: 1384 + version "0.1.2" 1385 + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 1386 + integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= 1387 + 1388 + fragment-cache@^0.2.1: 1389 + version "0.2.1" 1390 + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1391 + integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 1392 + dependencies: 1393 + map-cache "^0.2.2" 1394 + 1395 + fresh@0.5.2: 1396 + version "0.5.2" 1397 + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1398 + integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 1399 + 1400 + fs-extra@^7.0.0: 1401 + version "7.0.1" 1402 + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" 1403 + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== 1404 + dependencies: 1405 + graceful-fs "^4.1.2" 1406 + jsonfile "^4.0.0" 1407 + universalify "^0.1.0" 1408 + 1409 + fs.realpath@^1.0.0: 1410 + version "1.0.0" 1411 + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1412 + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1413 + 1414 + fsevents@^1.0.0: 1415 + version "1.2.11" 1416 + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.11.tgz#67bf57f4758f02ede88fb2a1712fef4d15358be3" 1417 + integrity sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw== 1418 + dependencies: 1419 + bindings "^1.5.0" 1420 + nan "^2.12.1" 1421 + 1422 + "fstream@>= 0.1.30 < 1": 1423 + version "0.1.31" 1424 + resolved "https://registry.yarnpkg.com/fstream/-/fstream-0.1.31.tgz#7337f058fbbbbefa8c9f561a28cab0849202c988" 1425 + integrity sha1-czfwWPu7vvqMn1YaKMqwhJICyYg= 1426 + dependencies: 1427 + graceful-fs "~3.0.2" 1428 + inherits "~2.0.0" 1429 + mkdirp "0.5" 1430 + rimraf "2" 1431 + 1432 + function-bind@^1.1.1: 1433 + version "1.1.1" 1434 + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1435 + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1436 + 1437 + fuse-box@^3.7.1: 1438 + version "3.7.1" 1439 + resolved "https://registry.yarnpkg.com/fuse-box/-/fuse-box-3.7.1.tgz#d32879ceee4c8bcec9bbd8fcfe5b29e7142371cd" 1440 + integrity sha512-aM7t9bUcRpNNQu9M+YjXXzx9JSJQVPWeY+8iTyv7OhvJNWHrqqEWPzbn9OfcyFa2AfPwAUyC/uzWexBbjtTvsA== 1441 + dependencies: 1442 + acorn "^5.7.3" 1443 + acorn-jsx "^4.0.1" 1444 + ansi "^0.3.1" 1445 + app-root-path "^2.0.1" 1446 + base64-img "^1.0.3" 1447 + base64-js "^1.2.0" 1448 + bowser "^2.0.0-beta.3" 1449 + chokidar "^1.6.1" 1450 + clean-css "^4.1.9" 1451 + escodegen "^1.8.1" 1452 + express "^4.14.0" 1453 + fliplog "^0.3.13" 1454 + fs-extra "^7.0.0" 1455 + fuse-concat-with-sourcemaps "^1.0.5" 1456 + getopts "^2.1.1" 1457 + glob "^7.1.1" 1458 + ieee754 "^1.1.8" 1459 + inquirer "^3.0.6" 1460 + lego-api "^1.0.7" 1461 + mustache "^2.3.0" 1462 + postcss "^6.0.1" 1463 + pretty-time "^0.2.0" 1464 + prettysize "0.0.3" 1465 + realm-utils "^1.0.9" 1466 + regexpu-core "^4.1.3" 1467 + request "^2.79.0" 1468 + shorthash "0.0.2" 1469 + source-map "^0.7.1" 1470 + sourcemap-blender "1.0.5" 1471 + stream-browserify "^2.0.1" 1472 + tslib "^1.8.0" 1473 + watch "^1.0.1" 1474 + ws "^1.1.1" 1475 + 1476 + fuse-concat-with-sourcemaps@^1.0.5: 1477 + version "1.0.5" 1478 + resolved "https://registry.yarnpkg.com/fuse-concat-with-sourcemaps/-/fuse-concat-with-sourcemaps-1.0.5.tgz#9c6a521f675cff5cdbb48db1ca9c181ae49a7b97" 1479 + integrity sha512-tKsRJIxn9tU3IH8JHMwFhGbObqkDKXhNKOvcM+QyflAlYb2EgOvIQe8D6WB/cocA3puldHatsp9SN5SKryasrw== 1480 + dependencies: 1481 + source-map "^0.6.1" 1482 + 1483 + fuse.js@^6.0.4: 1484 + version "6.0.4" 1485 + resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.0.4.tgz#9f5af976f836247ad5d2c338090d6ce13cf9a4d2" 1486 + integrity sha512-XAeQaT+DV8dxqohN911+Qzkb4iMzTzae04mdb9/XSQbMjbsFasQxe0+UwM+3UWP+8vO7svz1Rj0KuQw6xJ45Ww== 1487 + 1488 + get-caller-file@^1.0.2: 1489 + version "1.0.3" 1490 + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 1491 + integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 1492 + 1493 + get-value@^2.0.3, get-value@^2.0.6: 1494 + version "2.0.6" 1495 + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1496 + integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 1497 + 1498 + getopts@^2.1.1: 1499 + version "2.2.5" 1500 + resolved "https://registry.yarnpkg.com/getopts/-/getopts-2.2.5.tgz#67a0fe471cacb9c687d817cab6450b96dde8313b" 1501 + integrity sha512-9jb7AW5p3in+IiJWhQiZmmwkpLaR/ccTWdWQCtZM66HJcHHLegowh4q4tSD7gouUyeNvFWRavfK9GXosQHDpFA== 1502 + 1503 + getpass@^0.1.1: 1504 + version "0.1.7" 1505 + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1506 + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= 1507 + dependencies: 1508 + assert-plus "^1.0.0" 1509 + 1510 + glob-base@^0.3.0: 1511 + version "0.3.0" 1512 + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1513 + integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= 1514 + dependencies: 1515 + glob-parent "^2.0.0" 1516 + is-glob "^2.0.0" 1517 + 1518 + glob-parent@^2.0.0: 1519 + version "2.0.0" 1520 + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1521 + integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= 1522 + dependencies: 1523 + is-glob "^2.0.0" 1524 + 1525 + glob@^7.1.1, glob@^7.1.3: 1526 + version "7.1.6" 1527 + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1528 + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1529 + dependencies: 1530 + fs.realpath "^1.0.0" 1531 + inflight "^1.0.4" 1532 + inherits "2" 1533 + minimatch "^3.0.4" 1534 + once "^1.3.0" 1535 + path-is-absolute "^1.0.0" 1536 + 1537 + good-listener@^1.2.2: 1538 + version "1.2.2" 1539 + resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" 1540 + integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA= 1541 + dependencies: 1542 + delegate "^3.1.2" 1543 + 1544 + graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1545 + version "4.2.3" 1546 + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 1547 + integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== 1548 + 1549 + graceful-fs@~3.0.2: 1550 + version "3.0.12" 1551 + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.12.tgz#0034947ce9ed695ec8ab0b854bc919e82b1ffaef" 1552 + integrity sha512-J55gaCS4iTTJfTXIxSVw3EMQckcqkpdRv3IR7gu6sq0+tbC363Zx6KH/SEwXASK9JRbhyZmVjJEVJIOxYsB3Qg== 1553 + dependencies: 1554 + natives "^1.1.3" 1555 + 1556 + har-schema@^2.0.0: 1557 + version "2.0.0" 1558 + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1559 + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= 1560 + 1561 + har-validator@~5.1.3: 1562 + version "5.1.3" 1563 + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" 1564 + integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== 1565 + dependencies: 1566 + ajv "^6.5.5" 1567 + har-schema "^2.0.0" 1568 + 1569 + has-flag@^3.0.0: 1570 + version "3.0.0" 1571 + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1572 + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1573 + 1574 + has-symbols@^1.0.0, has-symbols@^1.0.1: 1575 + version "1.0.1" 1576 + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 1577 + integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 1578 + 1579 + has-value@^0.3.1: 1580 + version "0.3.1" 1581 + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1582 + integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 1583 + dependencies: 1584 + get-value "^2.0.3" 1585 + has-values "^0.1.4" 1586 + isobject "^2.0.0" 1587 + 1588 + has-value@^1.0.0: 1589 + version "1.0.0" 1590 + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1591 + integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 1592 + dependencies: 1593 + get-value "^2.0.6" 1594 + has-values "^1.0.0" 1595 + isobject "^3.0.0" 1596 + 1597 + has-values@^0.1.4: 1598 + version "0.1.4" 1599 + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1600 + integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 1601 + 1602 + has-values@^1.0.0: 1603 + version "1.0.0" 1604 + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1605 + integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 1606 + dependencies: 1607 + is-number "^3.0.0" 1608 + kind-of "^4.0.0" 1609 + 1610 + has@^1.0.3: 1611 + version "1.0.3" 1612 + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1613 + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1614 + dependencies: 1615 + function-bind "^1.1.1" 1616 + 1617 + html@^1.0.0: 1618 + version "1.0.0" 1619 + resolved "https://registry.yarnpkg.com/html/-/html-1.0.0.tgz#a544fa9ea5492bfb3a2cca8210a10be7b5af1f61" 1620 + integrity sha1-pUT6nqVJK/s6LMqCEKEL57WvH2E= 1621 + dependencies: 1622 + concat-stream "^1.4.7" 1623 + 1624 + http-errors@1.7.2: 1625 + version "1.7.2" 1626 + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" 1627 + integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== 1628 + dependencies: 1629 + depd "~1.1.2" 1630 + inherits "2.0.3" 1631 + setprototypeof "1.1.1" 1632 + statuses ">= 1.5.0 < 2" 1633 + toidentifier "1.0.0" 1634 + 1635 + http-errors@~1.7.2: 1636 + version "1.7.3" 1637 + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" 1638 + integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== 1639 + dependencies: 1640 + depd "~1.1.2" 1641 + inherits "2.0.4" 1642 + setprototypeof "1.1.1" 1643 + statuses ">= 1.5.0 < 2" 1644 + toidentifier "1.0.0" 1645 + 1646 + http-signature@~1.2.0: 1647 + version "1.2.0" 1648 + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1649 + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= 1650 + dependencies: 1651 + assert-plus "^1.0.0" 1652 + jsprim "^1.2.2" 1653 + sshpk "^1.7.0" 1654 + 1655 + iconv-lite@0.4.24, iconv-lite@^0.4.17: 1656 + version "0.4.24" 1657 + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1658 + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1659 + dependencies: 1660 + safer-buffer ">= 2.1.2 < 3" 1661 + 1662 + ie-array-find-polyfill@^1.1.0: 1663 + version "1.1.0" 1664 + resolved "https://registry.yarnpkg.com/ie-array-find-polyfill/-/ie-array-find-polyfill-1.1.0.tgz#5078e533f026831da22bd7476513d9460d65a142" 1665 + integrity sha1-UHjlM/Amgx2iK9dHZRPZRg1loUI= 1666 + 1667 + ieee754@^1.1.8: 1668 + version "1.1.13" 1669 + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" 1670 + integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== 1671 + 1672 + import-fresh@^3.1.0: 1673 + version "3.2.1" 1674 + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 1675 + integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 1676 + dependencies: 1677 + parent-module "^1.0.0" 1678 + resolve-from "^4.0.0" 1679 + 1680 + inflight@^1.0.4: 1681 + version "1.0.6" 1682 + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1683 + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1684 + dependencies: 1685 + once "^1.3.0" 1686 + wrappy "1" 1687 + 1688 + inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1689 + version "2.0.4" 1690 + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1691 + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1692 + 1693 + inherits@2.0.3: 1694 + version "2.0.3" 1695 + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1696 + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 1697 + 1698 + inquirer@^3.0.6: 1699 + version "3.3.0" 1700 + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1701 + integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== 1702 + dependencies: 1703 + ansi-escapes "^3.0.0" 1704 + chalk "^2.0.0" 1705 + cli-cursor "^2.1.0" 1706 + cli-width "^2.0.0" 1707 + external-editor "^2.0.4" 1708 + figures "^2.0.0" 1709 + lodash "^4.3.0" 1710 + mute-stream "0.0.7" 1711 + run-async "^2.2.0" 1712 + rx-lite "^4.0.8" 1713 + rx-lite-aggregates "^4.0.8" 1714 + string-width "^2.1.0" 1715 + strip-ansi "^4.0.0" 1716 + through "^2.3.6" 1717 + 1718 + ipaddr.js@1.9.1: 1719 + version "1.9.1" 1720 + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" 1721 + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== 1722 + 1723 + is-accessor-descriptor@^0.1.6: 1724 + version "0.1.6" 1725 + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1726 + integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 1727 + dependencies: 1728 + kind-of "^3.0.2" 1729 + 1730 + is-accessor-descriptor@^1.0.0: 1731 + version "1.0.0" 1732 + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1733 + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 1734 + dependencies: 1735 + kind-of "^6.0.0" 1736 + 1737 + is-arrayish@^0.2.1: 1738 + version "0.2.1" 1739 + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1740 + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1741 + 1742 + is-binary-path@^1.0.0: 1743 + version "1.0.1" 1744 + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1745 + integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= 1746 + dependencies: 1747 + binary-extensions "^1.0.0" 1748 + 1749 + is-buffer@^1.1.5: 1750 + version "1.1.6" 1751 + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1752 + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 1753 + 1754 + is-callable@^1.1.4, is-callable@^1.2.0: 1755 + version "1.2.0" 1756 + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" 1757 + integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== 1758 + 1759 + is-data-descriptor@^0.1.4: 1760 + version "0.1.4" 1761 + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1762 + integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 1763 + dependencies: 1764 + kind-of "^3.0.2" 1765 + 1766 + is-data-descriptor@^1.0.0: 1767 + version "1.0.0" 1768 + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1769 + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 1770 + dependencies: 1771 + kind-of "^6.0.0" 1772 + 1773 + is-date-object@^1.0.1: 1774 + version "1.0.2" 1775 + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1776 + integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1777 + 1778 + is-descriptor@^0.1.0: 1779 + version "0.1.6" 1780 + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1781 + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 1782 + dependencies: 1783 + is-accessor-descriptor "^0.1.6" 1784 + is-data-descriptor "^0.1.4" 1785 + kind-of "^5.0.0" 1786 + 1787 + is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1788 + version "1.0.2" 1789 + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1790 + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 1791 + dependencies: 1792 + is-accessor-descriptor "^1.0.0" 1793 + is-data-descriptor "^1.0.0" 1794 + kind-of "^6.0.2" 1795 + 1796 + is-dotfile@^1.0.0: 1797 + version "1.0.3" 1798 + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1799 + integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE= 1800 + 1801 + is-equal-shallow@^0.1.3: 1802 + version "0.1.3" 1803 + resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1804 + integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= 1805 + dependencies: 1806 + is-primitive "^2.0.0" 1807 + 1808 + is-extendable@^0.1.0, is-extendable@^0.1.1: 1809 + version "0.1.1" 1810 + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1811 + integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 1812 + 1813 + is-extendable@^1.0.1: 1814 + version "1.0.1" 1815 + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1816 + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 1817 + dependencies: 1818 + is-plain-object "^2.0.4" 1819 + 1820 + is-extglob@^1.0.0: 1821 + version "1.0.0" 1822 + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1823 + integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= 1824 + 1825 + is-fullwidth-code-point@^2.0.0: 1826 + version "2.0.0" 1827 + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1828 + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1829 + 1830 + is-glob@^2.0.0, is-glob@^2.0.1: 1831 + version "2.0.1" 1832 + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1833 + integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= 1834 + dependencies: 1835 + is-extglob "^1.0.0" 1836 + 1837 + is-number@^2.0.2, is-number@^2.1.0: 1838 + version "2.1.0" 1839 + resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1840 + integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= 1841 + dependencies: 1842 + kind-of "^3.0.2" 1843 + 1844 + is-number@^3.0.0: 1845 + version "3.0.0" 1846 + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1847 + integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 1848 + dependencies: 1849 + kind-of "^3.0.2" 1850 + 1851 + is-number@^4.0.0: 1852 + version "4.0.0" 1853 + resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1854 + integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== 1855 + 1856 + is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1857 + version "2.0.4" 1858 + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1859 + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1860 + dependencies: 1861 + isobject "^3.0.1" 1862 + 1863 + is-posix-bracket@^0.1.0: 1864 + version "0.1.1" 1865 + resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1866 + integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= 1867 + 1868 + is-primitive@^2.0.0: 1869 + version "2.0.0" 1870 + resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1871 + integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= 1872 + 1873 + is-promise@^2.1.0: 1874 + version "2.1.0" 1875 + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1876 + integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= 1877 + 1878 + is-regex@^1.1.0: 1879 + version "1.1.0" 1880 + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" 1881 + integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== 1882 + dependencies: 1883 + has-symbols "^1.0.1" 1884 + 1885 + is-symbol@^1.0.2: 1886 + version "1.0.3" 1887 + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1888 + integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1889 + dependencies: 1890 + has-symbols "^1.0.1" 1891 + 1892 + is-typedarray@~1.0.0: 1893 + version "1.0.0" 1894 + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1895 + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1896 + 1897 + is-windows@^1.0.2: 1898 + version "1.0.2" 1899 + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1900 + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1901 + 1902 + isarray@0.0.1: 1903 + version "0.0.1" 1904 + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 1905 + integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= 1906 + 1907 + isarray@1.0.0, isarray@~1.0.0: 1908 + version "1.0.0" 1909 + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1910 + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1911 + 1912 + isobject@^2.0.0: 1913 + version "2.1.0" 1914 + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1915 + integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 1916 + dependencies: 1917 + isarray "1.0.0" 1918 + 1919 + isobject@^3.0.0, isobject@^3.0.1: 1920 + version "3.0.1" 1921 + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1922 + integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 1923 + 1924 + isstream@~0.1.2: 1925 + version "0.1.2" 1926 + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1927 + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 1928 + 1929 + "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1930 + version "4.0.0" 1931 + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1932 + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1933 + 1934 + js-yaml@^3.13.1: 1935 + version "3.13.1" 1936 + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1937 + integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 1938 + dependencies: 1939 + argparse "^1.0.7" 1940 + esprima "^4.0.0" 1941 + 1942 + jsbn@~0.1.0: 1943 + version "0.1.1" 1944 + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1945 + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 1946 + 1947 + jsesc@~0.5.0: 1948 + version "0.5.0" 1949 + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1950 + integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= 1951 + 1952 + json-parse-better-errors@^1.0.1: 1953 + version "1.0.2" 1954 + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1955 + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1956 + 1957 + json-schema-traverse@^0.4.1: 1958 + version "0.4.1" 1959 + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1960 + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1961 + 1962 + json-schema@0.2.3: 1963 + version "0.2.3" 1964 + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1965 + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= 1966 + 1967 + json-stringify-safe@~5.0.1: 1968 + version "5.0.1" 1969 + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1970 + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= 1971 + 1972 + jsondiffpatch@^0.3.11: 1973 + version "0.3.11" 1974 + resolved "https://registry.yarnpkg.com/jsondiffpatch/-/jsondiffpatch-0.3.11.tgz#43f9443a0d081b5f79d413fe20f302079e493201" 1975 + integrity sha512-Xi3Iygdt/BGhml6bdUFhgDki1TgOsp3hG3iiH3KtzP+CahtGcdPfKRLlnZbSw+3b1umZkhmKrqXUgUcKenyhtA== 1976 + dependencies: 1977 + chalk "^2.3.0" 1978 + diff-match-patch "^1.0.0" 1979 + 1980 + jsonfile@^4.0.0: 1981 + version "4.0.0" 1982 + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1983 + integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 1984 + optionalDependencies: 1985 + graceful-fs "^4.1.6" 1986 + 1987 + jsprim@^1.2.2: 1988 + version "1.4.1" 1989 + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1990 + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= 1991 + dependencies: 1992 + assert-plus "1.0.0" 1993 + extsprintf "1.3.0" 1994 + json-schema "0.2.3" 1995 + verror "1.10.0" 1996 + 1997 + kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1998 + version "3.2.2" 1999 + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2000 + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 2001 + dependencies: 2002 + is-buffer "^1.1.5" 2003 + 2004 + kind-of@^4.0.0: 2005 + version "4.0.0" 2006 + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2007 + integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 2008 + dependencies: 2009 + is-buffer "^1.1.5" 2010 + 2011 + kind-of@^5.0.0: 2012 + version "5.1.0" 2013 + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2014 + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 2015 + 2016 + kind-of@^6.0.0, kind-of@^6.0.2: 2017 + version "6.0.3" 2018 + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 2019 + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 2020 + 2021 + lego-api@^1.0.7: 2022 + version "1.0.8" 2023 + resolved "https://registry.yarnpkg.com/lego-api/-/lego-api-1.0.8.tgz#5e26be726c5e11d540f89e7c6b1abf8c5834bd01" 2024 + integrity sha512-pZD0mf32+RL1bUMJztRcXiNBB1gE8gd/h4MDLWdZp7vaMZyjPiYK/zNpNNGoJvmoa7D/wf9dll+5z7pDObdLFg== 2025 + dependencies: 2026 + chain-able "^3.0.0" 2027 + 2028 + levn@~0.3.0: 2029 + version "0.3.0" 2030 + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2031 + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 2032 + dependencies: 2033 + prelude-ls "~1.1.2" 2034 + type-check "~0.3.2" 2035 + 2036 + lines-and-columns@^1.1.6: 2037 + version "1.1.6" 2038 + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 2039 + integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 2040 + 2041 + lodash._getnative@^3.0.0: 2042 + version "3.9.1" 2043 + resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 2044 + integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= 2045 + 2046 + lodash.curry@^4.0.1: 2047 + version "4.1.1" 2048 + resolved "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz#248e36072ede906501d75966200a86dab8b23170" 2049 + integrity sha1-JI42By7ekGUB11lmIAqG2riyMXA= 2050 + 2051 + lodash.debounce@^3.1.1: 2052 + version "3.1.1" 2053 + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-3.1.1.tgz#812211c378a94cc29d5aa4e3346cf0bfce3a7df5" 2054 + integrity sha1-gSIRw3ipTMKdWqTjNGzwv846ffU= 2055 + dependencies: 2056 + lodash._getnative "^3.0.0" 2057 + 2058 + lodash.debounce@^4.0.8: 2059 + version "4.0.8" 2060 + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 2061 + integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= 2062 + 2063 + lodash.flow@^3.3.0: 2064 + version "3.5.0" 2065 + resolved "https://registry.yarnpkg.com/lodash.flow/-/lodash.flow-3.5.0.tgz#87bf40292b8cf83e4e8ce1a3ae4209e20071675a" 2066 + integrity sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o= 2067 + 2068 + lodash.uniqby@^4.7.0: 2069 + version "4.7.0" 2070 + resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302" 2071 + integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI= 2072 + 2073 + lodash@^4.17.13, lodash@^4.3.0: 2074 + version "4.17.15" 2075 + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 2076 + integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 2077 + 2078 + loose-envify@^1.1.0, loose-envify@^1.4.0: 2079 + version "1.4.0" 2080 + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2081 + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2082 + dependencies: 2083 + js-tokens "^3.0.0 || ^4.0.0" 2084 + 2085 + make-error@^1.1.1: 2086 + version "1.3.6" 2087 + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 2088 + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 2089 + 2090 + map-cache@^0.2.2: 2091 + version "0.2.2" 2092 + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2093 + integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 2094 + 2095 + map-visit@^1.0.0: 2096 + version "1.0.0" 2097 + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2098 + integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 2099 + dependencies: 2100 + object-visit "^1.0.0" 2101 + 2102 + "match-stream@>= 0.0.2 < 1": 2103 + version "0.0.2" 2104 + resolved "https://registry.yarnpkg.com/match-stream/-/match-stream-0.0.2.tgz#99eb050093b34dffade421b9ac0b410a9cfa17cf" 2105 + integrity sha1-mesFAJOzTf+t5CG5rAtBCpz6F88= 2106 + dependencies: 2107 + buffers "~0.1.1" 2108 + readable-stream "~1.0.0" 2109 + 2110 + math-random@^1.0.1: 2111 + version "1.0.4" 2112 + resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" 2113 + integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== 2114 + 2115 + media-typer@0.3.0: 2116 + version "0.3.0" 2117 + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2118 + integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 2119 + 2120 + "memoize-one@>=3.1.1 <6": 2121 + version "5.1.1" 2122 + resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.1.1.tgz#047b6e3199b508eaec03504de71229b8eb1d75c0" 2123 + integrity sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA== 2124 + 2125 + merge-descriptors@1.0.1: 2126 + version "1.0.1" 2127 + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2128 + integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 2129 + 2130 + merge@^1.2.0: 2131 + version "1.2.1" 2132 + resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" 2133 + integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ== 2134 + 2135 + methods@~1.1.2: 2136 + version "1.1.2" 2137 + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2138 + integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 2139 + 2140 + micromatch@^2.1.5: 2141 + version "2.3.11" 2142 + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2143 + integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= 2144 + dependencies: 2145 + arr-diff "^2.0.0" 2146 + array-unique "^0.2.1" 2147 + braces "^1.8.2" 2148 + expand-brackets "^0.1.4" 2149 + extglob "^0.3.1" 2150 + filename-regex "^2.0.0" 2151 + is-extglob "^1.0.0" 2152 + is-glob "^2.0.1" 2153 + kind-of "^3.0.2" 2154 + normalize-path "^2.0.1" 2155 + object.omit "^2.0.0" 2156 + parse-glob "^3.0.4" 2157 + regex-cache "^0.4.2" 2158 + 2159 + micromatch@^3.1.10: 2160 + version "3.1.10" 2161 + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2162 + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 2163 + dependencies: 2164 + arr-diff "^4.0.0" 2165 + array-unique "^0.3.2" 2166 + braces "^2.3.1" 2167 + define-property "^2.0.2" 2168 + extend-shallow "^3.0.2" 2169 + extglob "^2.0.4" 2170 + fragment-cache "^0.2.1" 2171 + kind-of "^6.0.2" 2172 + nanomatch "^1.2.9" 2173 + object.pick "^1.3.0" 2174 + regex-not "^1.0.0" 2175 + snapdragon "^0.8.1" 2176 + to-regex "^3.0.2" 2177 + 2178 + mime-db@1.43.0: 2179 + version "1.43.0" 2180 + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58" 2181 + integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ== 2182 + 2183 + mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24: 2184 + version "2.1.26" 2185 + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06" 2186 + integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ== 2187 + dependencies: 2188 + mime-db "1.43.0" 2189 + 2190 + mime@1.6.0: 2191 + version "1.6.0" 2192 + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 2193 + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 2194 + 2195 + mimic-fn@^1.0.0: 2196 + version "1.2.0" 2197 + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2198 + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 2199 + 2200 + minimatch@^3.0.4: 2201 + version "3.0.4" 2202 + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2203 + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2204 + dependencies: 2205 + brace-expansion "^1.1.7" 2206 + 2207 + minimist@0.0.8: 2208 + version "0.0.8" 2209 + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2210 + integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 2211 + 2212 + minimist@^1.2.0: 2213 + version "1.2.0" 2214 + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2215 + integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 2216 + 2217 + minimist@^1.2.5: 2218 + version "1.2.5" 2219 + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2220 + integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2221 + 2222 + mixin-deep@^1.2.0: 2223 + version "1.3.2" 2224 + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2225 + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== 2226 + dependencies: 2227 + for-in "^1.0.2" 2228 + is-extendable "^1.0.1" 2229 + 2230 + mkdirp@0.5: 2231 + version "0.5.5" 2232 + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 2233 + integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 2234 + dependencies: 2235 + minimist "^1.2.5" 2236 + 2237 + mkdirp@^0.5.1: 2238 + version "0.5.1" 2239 + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2240 + integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 2241 + dependencies: 2242 + minimist "0.0.8" 2243 + 2244 + mock-require@^3.0.3: 2245 + version "3.0.3" 2246 + resolved "https://registry.yarnpkg.com/mock-require/-/mock-require-3.0.3.tgz#ccd544d9eae81dd576b3f219f69ec867318a1946" 2247 + integrity sha512-lLzfLHcyc10MKQnNUCv7dMcoY/2Qxd6wJfbqCcVk3LDb8An4hF6ohk5AztrvgKhJCqj36uyzi/p5se+tvyD+Wg== 2248 + dependencies: 2249 + get-caller-file "^1.0.2" 2250 + normalize-path "^2.1.1" 2251 + 2252 + ms@2.0.0: 2253 + version "2.0.0" 2254 + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2255 + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2256 + 2257 + ms@2.1.1: 2258 + version "2.1.1" 2259 + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 2260 + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 2261 + 2262 + mustache@^2.3.0: 2263 + version "2.3.2" 2264 + resolved "https://registry.yarnpkg.com/mustache/-/mustache-2.3.2.tgz#a6d4d9c3f91d13359ab889a812954f9230a3d0c5" 2265 + integrity sha512-KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ== 2266 + 2267 + mute-stream@0.0.7: 2268 + version "0.0.7" 2269 + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2270 + integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 2271 + 2272 + nan@^2.12.1: 2273 + version "2.14.0" 2274 + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" 2275 + integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== 2276 + 2277 + nanomatch@^1.2.9: 2278 + version "1.2.13" 2279 + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 2280 + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 2281 + dependencies: 2282 + arr-diff "^4.0.0" 2283 + array-unique "^0.3.2" 2284 + define-property "^2.0.2" 2285 + extend-shallow "^3.0.2" 2286 + fragment-cache "^0.2.1" 2287 + is-windows "^1.0.2" 2288 + kind-of "^6.0.2" 2289 + object.pick "^1.3.0" 2290 + regex-not "^1.0.0" 2291 + snapdragon "^0.8.1" 2292 + to-regex "^3.0.1" 2293 + 2294 + nanoseconds@^0.1.0: 2295 + version "0.1.0" 2296 + resolved "https://registry.yarnpkg.com/nanoseconds/-/nanoseconds-0.1.0.tgz#69ec39fcd00e77ab3a72de0a43342824cd79233a" 2297 + integrity sha1-aew5/NAOd6s6ct4KQzQoJM15Izo= 2298 + 2299 + natives@^1.1.3: 2300 + version "1.1.6" 2301 + resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.6.tgz#a603b4a498ab77173612b9ea1acdec4d980f00bb" 2302 + integrity sha512-6+TDFewD4yxY14ptjKaS63GVdtKiES1pTPyxn9Jb0rBqPMZ7VcCiooEhPNsr+mqHtMGxa/5c/HhcC4uPEUw/nA== 2303 + 2304 + negotiator@0.6.2: 2305 + version "0.6.2" 2306 + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 2307 + integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 2308 + 2309 + nopt@~1.0.10: 2310 + version "1.0.10" 2311 + resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 2312 + integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= 2313 + dependencies: 2314 + abbrev "1" 2315 + 2316 + normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: 2317 + version "2.1.1" 2318 + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2319 + integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 2320 + dependencies: 2321 + remove-trailing-separator "^1.0.1" 2322 + 2323 + oauth-sign@~0.9.0: 2324 + version "0.9.0" 2325 + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 2326 + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== 2327 + 2328 + object-assign@^4.1.1: 2329 + version "4.1.1" 2330 + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2331 + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 2332 + 2333 + object-copy@^0.1.0: 2334 + version "0.1.0" 2335 + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2336 + integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 2337 + dependencies: 2338 + copy-descriptor "^0.1.0" 2339 + define-property "^0.2.5" 2340 + kind-of "^3.0.3" 2341 + 2342 + object-inspect@^1.7.0: 2343 + version "1.8.0" 2344 + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 2345 + integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 2346 + 2347 + object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 2348 + version "1.1.1" 2349 + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 2350 + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2351 + 2352 + object-visit@^1.0.0: 2353 + version "1.0.1" 2354 + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2355 + integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 2356 + dependencies: 2357 + isobject "^3.0.0" 2358 + 2359 + object.assign@^4.1.0: 2360 + version "4.1.0" 2361 + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 2362 + integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 2363 + dependencies: 2364 + define-properties "^1.1.2" 2365 + function-bind "^1.1.1" 2366 + has-symbols "^1.0.0" 2367 + object-keys "^1.0.11" 2368 + 2369 + object.omit@^2.0.0: 2370 + version "2.0.1" 2371 + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2372 + integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= 2373 + dependencies: 2374 + for-own "^0.1.4" 2375 + is-extendable "^0.1.1" 2376 + 2377 + object.pick@^1.3.0: 2378 + version "1.3.0" 2379 + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2380 + integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 2381 + dependencies: 2382 + isobject "^3.0.1" 2383 + 2384 + object.values@^1.1.0: 2385 + version "1.1.1" 2386 + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 2387 + integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== 2388 + dependencies: 2389 + define-properties "^1.1.3" 2390 + es-abstract "^1.17.0-next.1" 2391 + function-bind "^1.1.1" 2392 + has "^1.0.3" 2393 + 2394 + on-finished@~2.3.0: 2395 + version "2.3.0" 2396 + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2397 + integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 2398 + dependencies: 2399 + ee-first "1.1.1" 2400 + 2401 + once@^1.3.0: 2402 + version "1.4.0" 2403 + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2404 + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2405 + dependencies: 2406 + wrappy "1" 2407 + 2408 + onetime@^2.0.0: 2409 + version "2.0.1" 2410 + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2411 + integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 2412 + dependencies: 2413 + mimic-fn "^1.0.0" 2414 + 2415 + optionator@^0.8.1: 2416 + version "0.8.3" 2417 + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 2418 + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 2419 + dependencies: 2420 + deep-is "~0.1.3" 2421 + fast-levenshtein "~2.0.6" 2422 + levn "~0.3.0" 2423 + prelude-ls "~1.1.2" 2424 + type-check "~0.3.2" 2425 + word-wrap "~1.2.3" 2426 + 2427 + options@>=0.0.5: 2428 + version "0.0.6" 2429 + resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" 2430 + integrity sha1-7CLTEoBrtT5zF3Pnza788cZDEo8= 2431 + 2432 + orderedmap@^1.0.0, orderedmap@^1.1.0: 2433 + version "1.1.1" 2434 + resolved "https://registry.yarnpkg.com/orderedmap/-/orderedmap-1.1.1.tgz#c618e77611b3b21d0fe3edc92586265e0059c789" 2435 + integrity sha512-3Ux8um0zXbVacKUkcytc0u3HgC0b0bBLT+I60r2J/En72cI0nZffqrA7Xtf2Hqs27j1g82llR5Mhbd0Z1XW4AQ== 2436 + 2437 + os-tmpdir@~1.0.2: 2438 + version "1.0.2" 2439 + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2440 + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 2441 + 2442 + "over@>= 0.0.5 < 1": 2443 + version "0.0.5" 2444 + resolved "https://registry.yarnpkg.com/over/-/over-0.0.5.tgz#f29852e70fd7e25f360e013a8ec44c82aedb5708" 2445 + integrity sha1-8phS5w/X4l82DgE6jsRMgq7bVwg= 2446 + 2447 + parent-module@^1.0.0: 2448 + version "1.0.1" 2449 + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2450 + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2451 + dependencies: 2452 + callsites "^3.0.0" 2453 + 2454 + parse-glob@^3.0.4: 2455 + version "3.0.4" 2456 + resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2457 + integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= 2458 + dependencies: 2459 + glob-base "^0.3.0" 2460 + is-dotfile "^1.0.0" 2461 + is-extglob "^1.0.0" 2462 + is-glob "^2.0.0" 2463 + 2464 + parse-json@^5.0.0: 2465 + version "5.0.0" 2466 + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" 2467 + integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== 2468 + dependencies: 2469 + "@babel/code-frame" "^7.0.0" 2470 + error-ex "^1.3.1" 2471 + json-parse-better-errors "^1.0.1" 2472 + lines-and-columns "^1.1.6" 2473 + 2474 + parseurl@~1.3.3: 2475 + version "1.3.3" 2476 + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 2477 + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 2478 + 2479 + pascalcase@^0.1.1: 2480 + version "0.1.1" 2481 + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2482 + integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 2483 + 2484 + path-is-absolute@^1.0.0: 2485 + version "1.0.1" 2486 + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2487 + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2488 + 2489 + path-parse@^1.0.6: 2490 + version "1.0.6" 2491 + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2492 + integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2493 + 2494 + path-to-regexp@0.1.7: 2495 + version "0.1.7" 2496 + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2497 + integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= 2498 + 2499 + path-type@^4.0.0: 2500 + version "4.0.0" 2501 + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 2502 + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2503 + 2504 + performance-now@^2.1.0: 2505 + version "2.1.0" 2506 + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2507 + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 2508 + 2509 + posix-character-classes@^0.1.0: 2510 + version "0.1.1" 2511 + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2512 + integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 2513 + 2514 + postcss@^6.0.1: 2515 + version "6.0.23" 2516 + resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" 2517 + integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== 2518 + dependencies: 2519 + chalk "^2.4.1" 2520 + source-map "^0.6.1" 2521 + supports-color "^5.4.0" 2522 + 2523 + prelude-ls@~1.1.2: 2524 + version "1.1.2" 2525 + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2526 + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2527 + 2528 + preserve@^0.2.0: 2529 + version "0.2.0" 2530 + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2531 + integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= 2532 + 2533 + prettier@^1.18.2: 2534 + version "1.19.1" 2535 + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" 2536 + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== 2537 + 2538 + pretty-time@^0.2.0: 2539 + version "0.2.0" 2540 + resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-0.2.0.tgz#7a3bdec4049c620cd7c42b7f342b74d56e73d74e" 2541 + integrity sha1-ejvexAScYgzXxCt/NCt01W5z104= 2542 + dependencies: 2543 + is-number "^2.0.2" 2544 + nanoseconds "^0.1.0" 2545 + 2546 + prettysize@0.0.3: 2547 + version "0.0.3" 2548 + resolved "https://registry.yarnpkg.com/prettysize/-/prettysize-0.0.3.tgz#14afff6a645e591a4ddf1c72919c23b4146181a1" 2549 + integrity sha1-FK//amReWRpN3xxykZwjtBRhgaE= 2550 + 2551 + process-nextick-args@~2.0.0: 2552 + version "2.0.1" 2553 + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 2554 + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 2555 + 2556 + prop-types@^15.5.8, prop-types@^15.6.2: 2557 + version "15.7.2" 2558 + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 2559 + integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 2560 + dependencies: 2561 + loose-envify "^1.4.0" 2562 + object-assign "^4.1.1" 2563 + react-is "^16.8.1" 2564 + 2565 + prosemirror-changeset@^2.1.2: 2566 + version "2.1.2" 2567 + resolved "https://registry.yarnpkg.com/prosemirror-changeset/-/prosemirror-changeset-2.1.2.tgz#91dee900eb4618b21ed0c38c8d41dc7539303864" 2568 + integrity sha512-/eeAM2XeOFmtiPsFVfVkM3Iq4xfNlFuDB6MlC8Hqch/ibq3YlH3YxDi8fqg78fT8fkrfvN6zRu9EE0HkSmH8PA== 2569 + dependencies: 2570 + prosemirror-transform "^1.0.0" 2571 + 2572 + prosemirror-commands@^1.1.4: 2573 + version "1.1.4" 2574 + resolved "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.1.4.tgz#991563e67623acab4f8c510fad1570f8b4693780" 2575 + integrity sha512-kj4Qi+8h3EpJtZuuEDwZ9h2/QNGWDsIX/CzjmClxi9GhxWyBUMVUvIFk0mgdqHyX20lLeGmOpc0TLA5aPzgpWg== 2576 + dependencies: 2577 + prosemirror-model "^1.0.0" 2578 + prosemirror-state "^1.0.0" 2579 + prosemirror-transform "^1.0.0" 2580 + 2581 + prosemirror-dev-tools@^2.1.1: 2582 + version "2.1.1" 2583 + resolved "https://registry.yarnpkg.com/prosemirror-dev-tools/-/prosemirror-dev-tools-2.1.1.tgz#0c4304b05b437608b3666b72fdb4b21e24fa29fc" 2584 + integrity sha512-d9MG4PF82meg5Ru64ox6WCKPkQNsiZEaG5xR5a+l88RJ0VRButMZq5JzPh28vUlTBq+TXnpdTJRlPQIgTOtpqg== 2585 + dependencies: 2586 + emotion "^9.2.5" 2587 + es6-object-assign "^1.1.0" 2588 + html "^1.0.0" 2589 + ie-array-find-polyfill "^1.1.0" 2590 + jsondiffpatch "^0.3.11" 2591 + prop-types "^15.6.2" 2592 + prosemirror-model ">=1.0.0" 2593 + prosemirror-state ">=1.0.0" 2594 + react-dock "^0.2.4" 2595 + react-emotion "^9.2.5" 2596 + react-json-tree "^0.11.0" 2597 + unstated "^2.1.1" 2598 + 2599 + prosemirror-dropcursor@^1.3.2: 2600 + version "1.3.2" 2601 + resolved "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.3.2.tgz#28738c4ed7102e814d7a8a26d70018523fc7cd6d" 2602 + integrity sha512-4c94OUGyobGnwcQI70OXyMhE/9T4aTgjU+CHxkd5c7D+jH/J0mKM/lk+jneFVKt7+E4/M0D9HzRPifu8U28Thw== 2603 + dependencies: 2604 + prosemirror-state "^1.0.0" 2605 + prosemirror-transform "^1.1.0" 2606 + prosemirror-view "^1.1.0" 2607 + 2608 + prosemirror-gapcursor@^1.1.5: 2609 + version "1.1.5" 2610 + resolved "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.1.5.tgz#0c37fd6cbb1d7c46358c2e7397f8da9a8b5c6246" 2611 + integrity sha512-SjbUZq5pgsBDuV3hu8GqgIpZR5eZvGLM+gPQTqjVVYSMUCfKW3EGXTEYaLHEl1bGduwqNC95O3bZflgtAb4L6w== 2612 + dependencies: 2613 + prosemirror-keymap "^1.0.0" 2614 + prosemirror-model "^1.0.0" 2615 + prosemirror-state "^1.0.0" 2616 + prosemirror-view "^1.0.0" 2617 + 2618 + prosemirror-history@^1.1.3: 2619 + version "1.1.3" 2620 + resolved "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.1.3.tgz#4f76a1e71db4ef7cdf0e13dec6d8da2aeaecd489" 2621 + integrity sha512-zGDotijea+vnfnyyUGyiy1wfOQhf0B/b6zYcCouBV8yo6JmrE9X23M5q7Nf/nATywEZbgRLG70R4DmfSTC+gfg== 2622 + dependencies: 2623 + prosemirror-state "^1.2.2" 2624 + prosemirror-transform "^1.0.0" 2625 + rope-sequence "^1.3.0" 2626 + 2627 + prosemirror-inputrules@^1.1.2: 2628 + version "1.1.2" 2629 + resolved "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.1.2.tgz#487e46c763e1212a4577397aba7706139084f012" 2630 + integrity sha512-Ja5Z3BWestlHYGvtSGqyvxMeB8QEuBjlHM8YnKtLGUXMDp965qdDV4goV8lJb17kIWHk7e7JNj6Catuoa3302g== 2631 + dependencies: 2632 + prosemirror-state "^1.0.0" 2633 + prosemirror-transform "^1.0.0" 2634 + 2635 + prosemirror-keymap@^1.0.0, prosemirror-keymap@^1.1.2: 2636 + version "1.1.3" 2637 + resolved "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.1.3.tgz#be22d6108df2521608e9216a87b1a810f0ed361e" 2638 + integrity sha512-PRA4NzkUMzV/NFf5pyQ6tmlIHiW/qjQ1kGWUlV2rF/dvlOxtpGpTEjIMhWgLuMf+HiDEFnUEP7uhYXu+t+491g== 2639 + dependencies: 2640 + prosemirror-state "^1.0.0" 2641 + w3c-keyname "^2.2.0" 2642 + 2643 + prosemirror-keymap@^1.1.4: 2644 + version "1.1.4" 2645 + resolved "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.1.4.tgz#8b481bf8389a5ac40d38dbd67ec3da2c7eac6a6d" 2646 + integrity sha512-Al8cVUOnDFL4gcI5IDlG6xbZ0aOD/i3B17VT+1JbHWDguCgt/lBHVTHUBcKvvbSg6+q/W4Nj1Fu6bwZSca3xjg== 2647 + dependencies: 2648 + prosemirror-state "^1.0.0" 2649 + w3c-keyname "^2.2.0" 2650 + 2651 + prosemirror-model@>=1.0.0, prosemirror-model@^1.0.0, prosemirror-model@^1.1.0, prosemirror-model@^1.8.1: 2652 + version "1.9.1" 2653 + resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.9.1.tgz#8c08cf556f593c5f015548d2c1a6825661df087f" 2654 + integrity sha512-Qblh8pm1c7Ll64sYLauwwzjimo/tFg1zW3Q3IWhKRhvfOEgRKqa6dC5pRrAa+XHOIjBFEYrqbi52J5bqA2dV8Q== 2655 + dependencies: 2656 + orderedmap "^1.1.0" 2657 + 2658 + prosemirror-model@^1.11.0: 2659 + version "1.11.0" 2660 + resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.11.0.tgz#dc36cdb3ad6442b9f6325c7d89170c624f9dc520" 2661 + integrity sha512-GqoAz/mIYjdv8gVYJ8mWFKpHoTxn/lXq4tXJ6bTVxs+rem2LzMYXrNVXfucGtfsgqsJlRIgng/ByG9j7Q8XDrg== 2662 + dependencies: 2663 + orderedmap "^1.1.0" 2664 + 2665 + prosemirror-schema-list@^1.1.4: 2666 + version "1.1.4" 2667 + resolved "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.1.4.tgz#471f9caf2d2bed93641d2e490434c0d2d4330df1" 2668 + integrity sha512-pNTuZflacFOBlxrTcWSdWhjoB8BaucwfJVp/gJNxztOwaN3wQiC65axclXyplf6TKgXD/EkWfS/QAov3/Znadw== 2669 + dependencies: 2670 + prosemirror-model "^1.0.0" 2671 + prosemirror-transform "^1.0.0" 2672 + 2673 + prosemirror-state@>=1.0.0, prosemirror-state@^1.0.0, prosemirror-state@^1.2.2, prosemirror-state@^1.3.1: 2674 + version "1.3.2" 2675 + resolved "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.2.tgz#1b910b0dc01c1f00926bb9ba1589f7b7ac0d658b" 2676 + integrity sha512-t/JqE3aR0SV9QrzFVkAXsQwsgrQBNs/BDbcFH20RssW0xauqNNdjTXxy/J/kM7F+0zYi6+BRmz7cMMQQFU3mwQ== 2677 + dependencies: 2678 + prosemirror-model "^1.0.0" 2679 + prosemirror-transform "^1.0.0" 2680 + 2681 + prosemirror-state@^1.3.3: 2682 + version "1.3.3" 2683 + resolved "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.3.tgz#b2862866b14dec2b3ae1ab18229f2bd337651a2c" 2684 + integrity sha512-PLXh2VJsIgvlgSTH6I2Yg6vk1CzPDp21DFreVpQtDMY2S6WaMmrQgDTLRcsrD8X38v8Yc873H7+ogdGzyIPn+w== 2685 + dependencies: 2686 + prosemirror-model "^1.0.0" 2687 + prosemirror-transform "^1.0.0" 2688 + 2689 + prosemirror-tables@*: 2690 + version "1.0.0" 2691 + resolved "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.0.0.tgz#ec3d0b11e638c6a92dd14ae816d0a2efd1719b70" 2692 + integrity sha512-zFw5Us4G5Vdq0yIj8GiqZOGA6ud5UKpMKElux9O0HrfmhkuGa1jf1PCpz2R5pmIQJv+tIM24H1mox/ODBAX37Q== 2693 + dependencies: 2694 + prosemirror-keymap "^1.1.2" 2695 + prosemirror-model "^1.8.1" 2696 + prosemirror-state "^1.3.1" 2697 + prosemirror-transform "^1.2.1" 2698 + prosemirror-view "^1.13.3" 2699 + 2700 + prosemirror-tables@^1.1.1: 2701 + version "1.1.1" 2702 + resolved "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.1.1.tgz#ad66300cc49500455cf1243bb129c9e7d883321e" 2703 + integrity sha512-LmCz4jrlqQZRsYRDzCRYf/pQ5CUcSOyqZlAj5kv67ZWBH1SVLP2U9WJEvQfimWgeRlIz0y0PQVqO1arRm1+woA== 2704 + dependencies: 2705 + prosemirror-keymap "^1.1.2" 2706 + prosemirror-model "^1.8.1" 2707 + prosemirror-state "^1.3.1" 2708 + prosemirror-transform "^1.2.1" 2709 + prosemirror-view "^1.13.3" 2710 + 2711 + prosemirror-transform@^1.0.0, prosemirror-transform@^1.1.0, prosemirror-transform@^1.2.1: 2712 + version "1.2.3" 2713 + resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.2.3.tgz#239d17591af24d39ef3f1999daa09e1f1c76b06a" 2714 + integrity sha512-PUfayeskQfuUBXktvL6207ZWRwHBFNPNPiek4fR+LgCPnBofuEb2+L0FfbNtrAwffHVs6M3DaFvJB1W2VQdV0A== 2715 + dependencies: 2716 + prosemirror-model "^1.0.0" 2717 + 2718 + prosemirror-transform@^1.2.8: 2719 + version "1.2.8" 2720 + resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.2.8.tgz#4b86544fa43637fe381549fb7b019f4fb71fe65c" 2721 + integrity sha512-hKqceqv9ZmMQXNQkhFjr0KFGPvkhygaWND+uIM0GxRpALrKfxP97SsgHTBs3OpJhDmh5N+mB4D/CksB291Eavg== 2722 + dependencies: 2723 + prosemirror-model "^1.0.0" 2724 + 2725 + prosemirror-utils@^0.9.6: 2726 + version "0.9.6" 2727 + resolved "https://registry.yarnpkg.com/prosemirror-utils/-/prosemirror-utils-0.9.6.tgz#3d97bd85897e3b535555867dc95a51399116a973" 2728 + integrity sha512-UC+j9hQQ1POYfMc5p7UFxBTptRiGPR7Kkmbl3jVvU8VgQbkI89tR/GK+3QYC8n+VvBZrtAoCrJItNhWSxX3slA== 2729 + 2730 + prosemirror-view@^1.0.0, prosemirror-view@^1.1.0, prosemirror-view@^1.13.3: 2731 + version "1.14.2" 2732 + resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.14.2.tgz#23eb89f6101e9671b5e0c19d82ee0ad9de5608de" 2733 + integrity sha512-9yPVH6OLyaEraHjWHbSk2DB0R/1TsEE6AA1LI+vmCypXXA+zTzNrktUFzBhSJHehXDoEJcQfnl1Wdp5GPSh2+g== 2734 + dependencies: 2735 + prosemirror-model "^1.1.0" 2736 + prosemirror-state "^1.0.0" 2737 + prosemirror-transform "^1.1.0" 2738 + 2739 + prosemirror-view@^1.15.6: 2740 + version "1.15.6" 2741 + resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.15.6.tgz#446bf7662235300c5f47362af2db805c6df3ad24" 2742 + integrity sha512-9FBFB+rK5pvvzHsHOacy0T/Jf+OxZSzY8tSlQiur3SZwAVaNVQm+fl23V/6gU2dHBnreGxjYx9jK+F3XPsPCGw== 2743 + dependencies: 2744 + prosemirror-model "^1.1.0" 2745 + prosemirror-state "^1.0.0" 2746 + prosemirror-transform "^1.1.0" 2747 + 2748 + proxy-addr@~2.0.5: 2749 + version "2.0.6" 2750 + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" 2751 + integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== 2752 + dependencies: 2753 + forwarded "~0.1.2" 2754 + ipaddr.js "1.9.1" 2755 + 2756 + psl@^1.1.28: 2757 + version "1.7.0" 2758 + resolved "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz#f1c4c47a8ef97167dea5d6bbf4816d736e884a3c" 2759 + integrity sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ== 2760 + 2761 + "pullstream@>= 0.4.1 < 1": 2762 + version "0.4.1" 2763 + resolved "https://registry.yarnpkg.com/pullstream/-/pullstream-0.4.1.tgz#d6fb3bf5aed697e831150eb1002c25a3f8ae1314" 2764 + integrity sha1-1vs79a7Wl+gxFQ6xACwlo/iuExQ= 2765 + dependencies: 2766 + over ">= 0.0.5 < 1" 2767 + readable-stream "~1.0.31" 2768 + setimmediate ">= 1.0.2 < 2" 2769 + slice-stream ">= 1.0.0 < 2" 2770 + 2771 + punycode@^2.1.0, punycode@^2.1.1: 2772 + version "2.1.1" 2773 + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2774 + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2775 + 2776 + pure-color@^1.2.0: 2777 + version "1.3.0" 2778 + resolved "https://registry.yarnpkg.com/pure-color/-/pure-color-1.3.0.tgz#1fe064fb0ac851f0de61320a8bf796836422f33e" 2779 + integrity sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4= 2780 + 2781 + qs@6.7.0: 2782 + version "6.7.0" 2783 + resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" 2784 + integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== 2785 + 2786 + qs@~6.5.2: 2787 + version "6.5.2" 2788 + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2789 + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 2790 + 2791 + randomatic@^3.0.0: 2792 + version "3.1.1" 2793 + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" 2794 + integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== 2795 + dependencies: 2796 + is-number "^4.0.0" 2797 + kind-of "^6.0.0" 2798 + math-random "^1.0.1" 2799 + 2800 + range-parser@~1.2.1: 2801 + version "1.2.1" 2802 + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" 2803 + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== 2804 + 2805 + raw-body@2.4.0: 2806 + version "2.4.0" 2807 + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" 2808 + integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== 2809 + dependencies: 2810 + bytes "3.1.0" 2811 + http-errors "1.7.2" 2812 + iconv-lite "0.4.24" 2813 + unpipe "1.0.0" 2814 + 2815 + react-base16-styling@^0.5.1: 2816 + version "0.5.3" 2817 + resolved "https://registry.yarnpkg.com/react-base16-styling/-/react-base16-styling-0.5.3.tgz#3858f24e9c4dd8cbd3f702f3f74d581ca2917269" 2818 + integrity sha1-OFjyTpxN2MvT9wLz901YHKKRcmk= 2819 + dependencies: 2820 + base16 "^1.0.0" 2821 + lodash.curry "^4.0.1" 2822 + lodash.flow "^3.3.0" 2823 + pure-color "^1.2.0" 2824 + 2825 + react-dock@^0.2.4: 2826 + version "0.2.4" 2827 + resolved "https://registry.yarnpkg.com/react-dock/-/react-dock-0.2.4.tgz#e727dc7550b3b73116635dcb9c0e04d0b7afe17c" 2828 + integrity sha1-5yfcdVCztzEWY13LnA4E0Lev4Xw= 2829 + dependencies: 2830 + lodash.debounce "^3.1.1" 2831 + prop-types "^15.5.8" 2832 + 2833 + react-dom@^16.13.1: 2834 + version "16.13.1" 2835 + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f" 2836 + integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag== 2837 + dependencies: 2838 + loose-envify "^1.1.0" 2839 + object-assign "^4.1.1" 2840 + prop-types "^15.6.2" 2841 + scheduler "^0.19.1" 2842 + 2843 + react-emotion@^9.2.5: 2844 + version "9.2.12" 2845 + resolved "https://registry.yarnpkg.com/react-emotion/-/react-emotion-9.2.12.tgz#74d1494f89e22d0b9442e92a33ca052461955c83" 2846 + integrity sha512-qt7XbxnEKX5sZ73rERJ92JMbEOoyOwG3BuCRFRkXrsJhEe+rFBRTljRw7yOLHZUCQC4GBObZhjXIduQ8S0ZpYw== 2847 + dependencies: 2848 + babel-plugin-emotion "^9.2.11" 2849 + create-emotion-styled "^9.2.8" 2850 + 2851 + react-is@^16.8.1: 2852 + version "16.13.0" 2853 + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.0.tgz#0f37c3613c34fe6b37cd7f763a0d6293ab15c527" 2854 + integrity sha512-GFMtL0vHkiBv9HluwNZTggSn/sCyEt9n02aM0dSAjGGyqyNlAyftYm4phPxdvCigG15JreC5biwxCgTAJZ7yAA== 2855 + 2856 + react-json-tree@^0.11.0: 2857 + version "0.11.2" 2858 + resolved "https://registry.yarnpkg.com/react-json-tree/-/react-json-tree-0.11.2.tgz#af70199fcbc265699ade2aec492465c51608f95e" 2859 + integrity sha512-aYhUPj1y5jR3ZQ+G3N7aL8FbTyO03iLwnVvvEikLcNFqNTyabdljo9xDftZndUBFyyyL0aK3qGO9+8EilILHUw== 2860 + dependencies: 2861 + babel-runtime "^6.6.1" 2862 + prop-types "^15.5.8" 2863 + react-base16-styling "^0.5.1" 2864 + 2865 + react-window@^1.8.5: 2866 + version "1.8.5" 2867 + resolved "https://registry.yarnpkg.com/react-window/-/react-window-1.8.5.tgz#a56b39307e79979721021f5d06a67742ecca52d1" 2868 + integrity sha512-HeTwlNa37AFa8MDZFZOKcNEkuF2YflA0hpGPiTT9vR7OawEt+GZbfM6wqkBahD3D3pUjIabQYzsnY/BSJbgq6Q== 2869 + dependencies: 2870 + "@babel/runtime" "^7.0.0" 2871 + memoize-one ">=3.1.1 <6" 2872 + 2873 + react@^16.13.1: 2874 + version "16.13.1" 2875 + resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" 2876 + integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== 2877 + dependencies: 2878 + loose-envify "^1.1.0" 2879 + object-assign "^4.1.1" 2880 + prop-types "^15.6.2" 2881 + 2882 + readable-stream@^2.0.2, readable-stream@^2.2.2: 2883 + version "2.3.7" 2884 + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 2885 + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== 2886 + dependencies: 2887 + core-util-is "~1.0.0" 2888 + inherits "~2.0.3" 2889 + isarray "~1.0.0" 2890 + process-nextick-args "~2.0.0" 2891 + safe-buffer "~5.1.1" 2892 + string_decoder "~1.1.1" 2893 + util-deprecate "~1.0.1" 2894 + 2895 + readable-stream@^3.0.2: 2896 + version "3.6.0" 2897 + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 2898 + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 2899 + dependencies: 2900 + inherits "^2.0.3" 2901 + string_decoder "^1.1.1" 2902 + util-deprecate "^1.0.1" 2903 + 2904 + readable-stream@~1.0.0, readable-stream@~1.0.31: 2905 + version "1.0.34" 2906 + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2907 + integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= 2908 + dependencies: 2909 + core-util-is "~1.0.0" 2910 + inherits "~2.0.1" 2911 + isarray "0.0.1" 2912 + string_decoder "~0.10.x" 2913 + 2914 + readdirp@^2.0.0: 2915 + version "2.2.1" 2916 + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2917 + integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== 2918 + dependencies: 2919 + graceful-fs "^4.1.11" 2920 + micromatch "^3.1.10" 2921 + readable-stream "^2.0.2" 2922 + 2923 + realm-utils@^1.0.9: 2924 + version "1.0.9" 2925 + resolved "https://registry.yarnpkg.com/realm-utils/-/realm-utils-1.0.9.tgz#5c76a5ff39e4816af2c133a161f4221d6628eff4" 2926 + integrity sha1-XHal/znkgWrywTOhYfQiHWYo7/Q= 2927 + dependencies: 2928 + app-root-path "^1.3.0" 2929 + mkdirp "^0.5.1" 2930 + 2931 + regenerate-unicode-properties@^8.1.0: 2932 + version "8.1.0" 2933 + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" 2934 + integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== 2935 + dependencies: 2936 + regenerate "^1.4.0" 2937 + 2938 + regenerate@^1.4.0: 2939 + version "1.4.0" 2940 + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2941 + integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== 2942 + 2943 + regenerator-runtime@^0.11.0: 2944 + version "0.11.1" 2945 + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2946 + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== 2947 + 2948 + regenerator-runtime@^0.13.2: 2949 + version "0.13.3" 2950 + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5" 2951 + integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw== 2952 + 2953 + regenerator-runtime@^0.13.4: 2954 + version "0.13.5" 2955 + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" 2956 + integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== 2957 + 2958 + regex-cache@^0.4.2: 2959 + version "0.4.4" 2960 + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2961 + integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ== 2962 + dependencies: 2963 + is-equal-shallow "^0.1.3" 2964 + 2965 + regex-not@^1.0.0, regex-not@^1.0.2: 2966 + version "1.0.2" 2967 + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2968 + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 2969 + dependencies: 2970 + extend-shallow "^3.0.2" 2971 + safe-regex "^1.1.0" 2972 + 2973 + regexpu-core@^4.1.3: 2974 + version "4.6.0" 2975 + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6" 2976 + integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg== 2977 + dependencies: 2978 + regenerate "^1.4.0" 2979 + regenerate-unicode-properties "^8.1.0" 2980 + regjsgen "^0.5.0" 2981 + regjsparser "^0.6.0" 2982 + unicode-match-property-ecmascript "^1.0.4" 2983 + unicode-match-property-value-ecmascript "^1.1.0" 2984 + 2985 + regjsgen@^0.5.0: 2986 + version "0.5.1" 2987 + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" 2988 + integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== 2989 + 2990 + regjsparser@^0.6.0: 2991 + version "0.6.3" 2992 + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.3.tgz#74192c5805d35e9f5ebe3c1fb5b40d40a8a38460" 2993 + integrity sha512-8uZvYbnfAtEm9Ab8NTb3hdLwL4g/LQzEYP7Xs27T96abJCCE2d6r3cPZPQEsLKy0vRSGVNG+/zVGtLr86HQduA== 2994 + dependencies: 2995 + jsesc "~0.5.0" 2996 + 2997 + remove-trailing-separator@^1.0.1: 2998 + version "1.1.0" 2999 + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3000 + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 3001 + 3002 + repeat-element@^1.1.2: 3003 + version "1.1.3" 3004 + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 3005 + integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 3006 + 3007 + repeat-string@^1.5.2, repeat-string@^1.6.1: 3008 + version "1.6.1" 3009 + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3010 + integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 3011 + 3012 + request@^2.79.0: 3013 + version "2.88.2" 3014 + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" 3015 + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== 3016 + dependencies: 3017 + aws-sign2 "~0.7.0" 3018 + aws4 "^1.8.0" 3019 + caseless "~0.12.0" 3020 + combined-stream "~1.0.6" 3021 + extend "~3.0.2" 3022 + forever-agent "~0.6.1" 3023 + form-data "~2.3.2" 3024 + har-validator "~5.1.3" 3025 + http-signature "~1.2.0" 3026 + is-typedarray "~1.0.0" 3027 + isstream "~0.1.2" 3028 + json-stringify-safe "~5.0.1" 3029 + mime-types "~2.1.19" 3030 + oauth-sign "~0.9.0" 3031 + performance-now "^2.1.0" 3032 + qs "~6.5.2" 3033 + safe-buffer "^5.1.2" 3034 + tough-cookie "~2.5.0" 3035 + tunnel-agent "^0.6.0" 3036 + uuid "^3.3.2" 3037 + 3038 + resolve-from@^4.0.0: 3039 + version "4.0.0" 3040 + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 3041 + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 3042 + 3043 + resolve-url@^0.2.1: 3044 + version "0.2.1" 3045 + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 3046 + integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 3047 + 3048 + resolve@^1.12.0, resolve@^1.3.2: 3049 + version "1.15.1" 3050 + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8" 3051 + integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w== 3052 + dependencies: 3053 + path-parse "^1.0.6" 3054 + 3055 + restore-cursor@^2.0.0: 3056 + version "2.0.0" 3057 + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3058 + integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 3059 + dependencies: 3060 + onetime "^2.0.0" 3061 + signal-exit "^3.0.2" 3062 + 3063 + ret@~0.1.10: 3064 + version "0.1.15" 3065 + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 3066 + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 3067 + 3068 + rimraf@2: 3069 + version "2.7.1" 3070 + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 3071 + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 3072 + dependencies: 3073 + glob "^7.1.3" 3074 + 3075 + rope-sequence@^1.3.0: 3076 + version "1.3.2" 3077 + resolved "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.2.tgz#a19e02d72991ca71feb6b5f8a91154e48e3c098b" 3078 + integrity sha512-ku6MFrwEVSVmXLvy3dYph3LAMNS0890K7fabn+0YIRQ2T96T9F4gkFf0vf0WW0JUraNWwGRtInEpH7yO4tbQZg== 3079 + 3080 + run-async@^2.2.0: 3081 + version "2.4.0" 3082 + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz#e59054a5b86876cfae07f431d18cbaddc594f1e8" 3083 + integrity sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg== 3084 + dependencies: 3085 + is-promise "^2.1.0" 3086 + 3087 + rx-lite-aggregates@^4.0.8: 3088 + version "4.0.8" 3089 + resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3090 + integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= 3091 + dependencies: 3092 + rx-lite "*" 3093 + 3094 + rx-lite@*, rx-lite@^4.0.8: 3095 + version "4.0.8" 3096 + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3097 + integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= 3098 + 3099 + safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3100 + version "5.1.2" 3101 + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3102 + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 3103 + 3104 + safe-buffer@^5.0.1, safe-buffer@^5.1.2: 3105 + version "5.2.0" 3106 + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 3107 + integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== 3108 + 3109 + safe-buffer@~5.2.0: 3110 + version "5.2.1" 3111 + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 3112 + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 3113 + 3114 + safe-regex@^1.1.0: 3115 + version "1.1.0" 3116 + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3117 + integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 3118 + dependencies: 3119 + ret "~0.1.10" 3120 + 3121 + "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 3122 + version "2.1.2" 3123 + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3124 + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 3125 + 3126 + scheduler@^0.19.1: 3127 + version "0.19.1" 3128 + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" 3129 + integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== 3130 + dependencies: 3131 + loose-envify "^1.1.0" 3132 + object-assign "^4.1.1" 3133 + 3134 + select@^1.1.2: 3135 + version "1.1.2" 3136 + resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" 3137 + integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0= 3138 + 3139 + semver@^5.3.0: 3140 + version "5.7.1" 3141 + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 3142 + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 3143 + 3144 + send@0.17.1: 3145 + version "0.17.1" 3146 + resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" 3147 + integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== 3148 + dependencies: 3149 + debug "2.6.9" 3150 + depd "~1.1.2" 3151 + destroy "~1.0.4" 3152 + encodeurl "~1.0.2" 3153 + escape-html "~1.0.3" 3154 + etag "~1.8.1" 3155 + fresh "0.5.2" 3156 + http-errors "~1.7.2" 3157 + mime "1.6.0" 3158 + ms "2.1.1" 3159 + on-finished "~2.3.0" 3160 + range-parser "~1.2.1" 3161 + statuses "~1.5.0" 3162 + 3163 + sentence-splitter@^3.2.0: 3164 + version "3.2.0" 3165 + resolved "https://registry.yarnpkg.com/sentence-splitter/-/sentence-splitter-3.2.0.tgz#fb2cd2f61f40006643ba83d9acf4609233c1c68c" 3166 + integrity sha512-lKX2tZ1rsA9Tu0gW8vRmMDmIEJoZ1d7cKpzcbFZdUrSpCR6gy/7OPPh7jjT/6Oc6Z79ToUmC2l8tyTEGanVmiA== 3167 + dependencies: 3168 + "@textlint/ast-node-types" "^4.2.5" 3169 + concat-stream "^2.0.0" 3170 + object.values "^1.1.0" 3171 + structured-source "^3.0.2" 3172 + 3173 + serve-static@1.14.1: 3174 + version "1.14.1" 3175 + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" 3176 + integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== 3177 + dependencies: 3178 + encodeurl "~1.0.2" 3179 + escape-html "~1.0.3" 3180 + parseurl "~1.3.3" 3181 + send "0.17.1" 3182 + 3183 + set-value@^2.0.0, set-value@^2.0.1: 3184 + version "2.0.1" 3185 + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" 3186 + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== 3187 + dependencies: 3188 + extend-shallow "^2.0.1" 3189 + is-extendable "^0.1.1" 3190 + is-plain-object "^2.0.3" 3191 + split-string "^3.0.1" 3192 + 3193 + "setimmediate@>= 1.0.1 < 2", "setimmediate@>= 1.0.2 < 2": 3194 + version "1.0.5" 3195 + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3196 + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= 3197 + 3198 + setprototypeof@1.1.1: 3199 + version "1.1.1" 3200 + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 3201 + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== 3202 + 3203 + shorthash@0.0.2: 3204 + version "0.0.2" 3205 + resolved "https://registry.yarnpkg.com/shorthash/-/shorthash-0.0.2.tgz#59b268eecbde59038b30da202bcfbddeb2c4a4eb" 3206 + integrity sha1-WbJo7sveWQOLMNogK8+93rLEpOs= 3207 + 3208 + signal-exit@^3.0.2: 3209 + version "3.0.2" 3210 + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3211 + integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 3212 + 3213 + "slice-stream@>= 1.0.0 < 2": 3214 + version "1.0.0" 3215 + resolved "https://registry.yarnpkg.com/slice-stream/-/slice-stream-1.0.0.tgz#5b33bd66f013b1a7f86460b03d463dec39ad3ea0" 3216 + integrity sha1-WzO9ZvATsaf4ZGCwPUY97DmtPqA= 3217 + dependencies: 3218 + readable-stream "~1.0.31" 3219 + 3220 + snapdragon-node@^2.0.1: 3221 + version "2.1.1" 3222 + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3223 + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 3224 + dependencies: 3225 + define-property "^1.0.0" 3226 + isobject "^3.0.0" 3227 + snapdragon-util "^3.0.1" 3228 + 3229 + snapdragon-util@^3.0.1: 3230 + version "3.0.1" 3231 + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3232 + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 3233 + dependencies: 3234 + kind-of "^3.2.0" 3235 + 3236 + snapdragon@^0.8.1: 3237 + version "0.8.2" 3238 + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3239 + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 3240 + dependencies: 3241 + base "^0.11.1" 3242 + debug "^2.2.0" 3243 + define-property "^0.2.5" 3244 + extend-shallow "^2.0.1" 3245 + map-cache "^0.2.2" 3246 + source-map "^0.5.6" 3247 + source-map-resolve "^0.5.0" 3248 + use "^3.1.0" 3249 + 3250 + source-map-resolve@^0.5.0: 3251 + version "0.5.3" 3252 + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" 3253 + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== 3254 + dependencies: 3255 + atob "^2.1.2" 3256 + decode-uri-component "^0.2.0" 3257 + resolve-url "^0.2.1" 3258 + source-map-url "^0.4.0" 3259 + urix "^0.1.0" 3260 + 3261 + source-map-support@^0.5.17: 3262 + version "0.5.19" 3263 + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 3264 + integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 3265 + dependencies: 3266 + buffer-from "^1.0.0" 3267 + source-map "^0.6.0" 3268 + 3269 + source-map-support@~0.5.12: 3270 + version "0.5.16" 3271 + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042" 3272 + integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ== 3273 + dependencies: 3274 + buffer-from "^1.0.0" 3275 + source-map "^0.6.0" 3276 + 3277 + source-map-url@^0.4.0: 3278 + version "0.4.0" 3279 + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3280 + integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 3281 + 3282 + source-map@^0.5.6, source-map@^0.5.7: 3283 + version "0.5.7" 3284 + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3285 + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 3286 + 3287 + source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: 3288 + version "0.6.1" 3289 + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3290 + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 3291 + 3292 + source-map@^0.7.1, source-map@^0.7.2, source-map@^0.7.3: 3293 + version "0.7.3" 3294 + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 3295 + integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 3296 + 3297 + sourcemap-blender@1.0.5: 3298 + version "1.0.5" 3299 + resolved "https://registry.yarnpkg.com/sourcemap-blender/-/sourcemap-blender-1.0.5.tgz#d361f3d12381c4e477178113878fdf984a91bdbc" 3300 + integrity sha512-GPhjCmDtJ8YY6zt1L6kP6WtBg6WrdWt5hw2Wmgt9rwC3yiwLo9vEuabh/YYSZ5KmFV20hVkGdkTwpXtT2E65TA== 3301 + dependencies: 3302 + source-map "^0.7.3" 3303 + 3304 + split-string@^3.0.1, split-string@^3.0.2: 3305 + version "3.1.0" 3306 + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3307 + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 3308 + dependencies: 3309 + extend-shallow "^3.0.0" 3310 + 3311 + sprintf-js@~1.0.2: 3312 + version "1.0.3" 3313 + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3314 + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 3315 + 3316 + sshpk@^1.7.0: 3317 + version "1.16.1" 3318 + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 3319 + integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== 3320 + dependencies: 3321 + asn1 "~0.2.3" 3322 + assert-plus "^1.0.0" 3323 + bcrypt-pbkdf "^1.0.0" 3324 + dashdash "^1.12.0" 3325 + ecc-jsbn "~0.1.1" 3326 + getpass "^0.1.1" 3327 + jsbn "~0.1.0" 3328 + safer-buffer "^2.0.2" 3329 + tweetnacl "~0.14.0" 3330 + 3331 + static-extend@^0.1.1: 3332 + version "0.1.2" 3333 + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3334 + integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 3335 + dependencies: 3336 + define-property "^0.2.5" 3337 + object-copy "^0.1.0" 3338 + 3339 + "statuses@>= 1.5.0 < 2", statuses@~1.5.0: 3340 + version "1.5.0" 3341 + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 3342 + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 3343 + 3344 + stream-browserify@^2.0.1: 3345 + version "2.0.2" 3346 + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" 3347 + integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== 3348 + dependencies: 3349 + inherits "~2.0.1" 3350 + readable-stream "^2.0.2" 3351 + 3352 + string-width@^2.1.0: 3353 + version "2.1.1" 3354 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3355 + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 3356 + dependencies: 3357 + is-fullwidth-code-point "^2.0.0" 3358 + strip-ansi "^4.0.0" 3359 + 3360 + string.prototype.trimend@^1.0.1: 3361 + version "1.0.1" 3362 + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 3363 + integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 3364 + dependencies: 3365 + define-properties "^1.1.3" 3366 + es-abstract "^1.17.5" 3367 + 3368 + string.prototype.trimstart@^1.0.1: 3369 + version "1.0.1" 3370 + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 3371 + integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 3372 + dependencies: 3373 + define-properties "^1.1.3" 3374 + es-abstract "^1.17.5" 3375 + 3376 + string_decoder@^1.1.1: 3377 + version "1.3.0" 3378 + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 3379 + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 3380 + dependencies: 3381 + safe-buffer "~5.2.0" 3382 + 3383 + string_decoder@~0.10.x: 3384 + version "0.10.31" 3385 + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3386 + integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= 3387 + 3388 + string_decoder@~1.1.1: 3389 + version "1.1.1" 3390 + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3391 + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 3392 + dependencies: 3393 + safe-buffer "~5.1.0" 3394 + 3395 + strip-ansi@^4.0.0: 3396 + version "4.0.0" 3397 + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3398 + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 3399 + dependencies: 3400 + ansi-regex "^3.0.0" 3401 + 3402 + structured-source@^3.0.2: 3403 + version "3.0.2" 3404 + resolved "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz#dd802425e0f53dc4a6e7aca3752901a1ccda7af5" 3405 + integrity sha1-3YAkJeD1PcSm56yjdSkBoczaevU= 3406 + dependencies: 3407 + boundary "^1.0.1" 3408 + 3409 + stylis-rule-sheet@^0.0.10: 3410 + version "0.0.10" 3411 + resolved "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430" 3412 + integrity sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw== 3413 + 3414 + stylis@^3.5.0: 3415 + version "3.5.4" 3416 + resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe" 3417 + integrity sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q== 3418 + 3419 + supports-color@^5.3.0, supports-color@^5.4.0: 3420 + version "5.5.0" 3421 + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 3422 + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3423 + dependencies: 3424 + has-flag "^3.0.0" 3425 + 3426 + terser@^4.6.2: 3427 + version "4.6.4" 3428 + resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.4.tgz#40a0b37afbe5b57e494536815efa68326840fc00" 3429 + integrity sha512-5fqgBPLgVHZ/fVvqRhhUp9YUiGXhFJ9ZkrZWD9vQtFBR4QIGTnbsb+/kKqSqfgp3WnBwGWAFnedGTtmX1YTn0w== 3430 + dependencies: 3431 + commander "^2.20.0" 3432 + source-map "~0.6.1" 3433 + source-map-support "~0.5.12" 3434 + 3435 + thenby@^1.3.3: 3436 + version "1.3.3" 3437 + resolved "https://registry.yarnpkg.com/thenby/-/thenby-1.3.3.tgz#016c3427772a284bbfef982d978f7574fd15ee9d" 3438 + integrity sha512-vCzp0TxrQ+2bfRJoWNhMwk6RNfboOUN2S+nbEfhJfj7RwJHD6PlgtXH/hXiSmv6UJs35IQDtVqiI45J+cAgLqg== 3439 + 3440 + through@^2.3.6: 3441 + version "2.3.8" 3442 + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3443 + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 3444 + 3445 + tiny-emitter@^2.0.0: 3446 + version "2.1.0" 3447 + resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" 3448 + integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== 3449 + 3450 + tlite@^0.1.9: 3451 + version "0.1.9" 3452 + resolved "https://registry.yarnpkg.com/tlite/-/tlite-0.1.9.tgz#e886e4a305b7522242e2453b7ca4fb84f2d9de0f" 3453 + integrity sha512-5QOBAvDxZZwW1i+2YXMgF6/PuV/KhA0LyE9PyVi8Ywr3bfIPziZcQD+RpdJaQurCU8zIGtBo/XuPCEHdvyeFuQ== 3454 + 3455 + tmp@^0.0.33: 3456 + version "0.0.33" 3457 + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3458 + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 3459 + dependencies: 3460 + os-tmpdir "~1.0.2" 3461 + 3462 + to-fast-properties@^2.0.0: 3463 + version "2.0.0" 3464 + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3465 + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 3466 + 3467 + to-object-path@^0.3.0: 3468 + version "0.3.0" 3469 + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3470 + integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 3471 + dependencies: 3472 + kind-of "^3.0.2" 3473 + 3474 + to-regex-range@^2.1.0: 3475 + version "2.1.1" 3476 + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3477 + integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 3478 + dependencies: 3479 + is-number "^3.0.0" 3480 + repeat-string "^1.6.1" 3481 + 3482 + to-regex@^3.0.1, to-regex@^3.0.2: 3483 + version "3.0.2" 3484 + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3485 + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 3486 + dependencies: 3487 + define-property "^2.0.2" 3488 + extend-shallow "^3.0.2" 3489 + regex-not "^1.0.2" 3490 + safe-regex "^1.1.0" 3491 + 3492 + toidentifier@1.0.0: 3493 + version "1.0.0" 3494 + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 3495 + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== 3496 + 3497 + touch@^2.0.1: 3498 + version "2.0.2" 3499 + resolved "https://registry.yarnpkg.com/touch/-/touch-2.0.2.tgz#ca0b2a3ae3211246a61b16ba9e6cbf1596287164" 3500 + integrity sha512-qjNtvsFXTRq7IuMLweVgFxmEuQ6gLbRs2jQxL80TtZ31dEKWYIxRXquij6w6VimyDek5hD3PytljHmEtAs2u0A== 3501 + dependencies: 3502 + nopt "~1.0.10" 3503 + 3504 + tough-cookie@~2.5.0: 3505 + version "2.5.0" 3506 + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 3507 + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== 3508 + dependencies: 3509 + psl "^1.1.28" 3510 + punycode "^2.1.1" 3511 + 3512 + "traverse@>=0.3.0 <0.4": 3513 + version "0.3.9" 3514 + resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz#717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9" 3515 + integrity sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk= 3516 + 3517 + ts-node@^8.10.2: 3518 + version "8.10.2" 3519 + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-8.10.2.tgz#eee03764633b1234ddd37f8db9ec10b75ec7fb8d" 3520 + integrity sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA== 3521 + dependencies: 3522 + arg "^4.1.0" 3523 + diff "^4.0.1" 3524 + make-error "^1.1.1" 3525 + source-map-support "^0.5.17" 3526 + yn "3.1.1" 3527 + 3528 + tslib@^1.8.0, tslib@^1.8.1: 3529 + version "1.11.1" 3530 + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" 3531 + integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== 3532 + 3533 + tslint-config-prettier@^1.18.0: 3534 + version "1.18.0" 3535 + resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz#75f140bde947d35d8f0d238e0ebf809d64592c37" 3536 + integrity sha512-xPw9PgNPLG3iKRxmK7DWr+Ea/SzrvfHtjFt5LBl61gk2UBG/DB9kCXRjv+xyIU1rUtnayLeMUVJBcMX8Z17nDg== 3537 + 3538 + tslint-react@^5.0.0: 3539 + version "5.0.0" 3540 + resolved "https://registry.yarnpkg.com/tslint-react/-/tslint-react-5.0.0.tgz#d0ae644e8163bdd3e134012e9353094904e8dd44" 3541 + integrity sha512-/IbcSmoBPlFic8kQaRfQ4knTY4mivwo5LVzvozvX6Dyu2ynEnrh1dIcR2ujjyp/IodXqY/H5GbxFxSMo/Kf2Hg== 3542 + dependencies: 3543 + tsutils "^3.17.1" 3544 + 3545 + tslint@^5.20.0: 3546 + version "5.20.1" 3547 + resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.20.1.tgz#e401e8aeda0152bc44dd07e614034f3f80c67b7d" 3548 + integrity sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg== 3549 + dependencies: 3550 + "@babel/code-frame" "^7.0.0" 3551 + builtin-modules "^1.1.1" 3552 + chalk "^2.3.0" 3553 + commander "^2.12.1" 3554 + diff "^4.0.1" 3555 + glob "^7.1.1" 3556 + js-yaml "^3.13.1" 3557 + minimatch "^3.0.4" 3558 + mkdirp "^0.5.1" 3559 + resolve "^1.3.2" 3560 + semver "^5.3.0" 3561 + tslib "^1.8.0" 3562 + tsutils "^2.29.0" 3563 + 3564 + tsutils@^2.29.0: 3565 + version "2.29.0" 3566 + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99" 3567 + integrity sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== 3568 + dependencies: 3569 + tslib "^1.8.1" 3570 + 3571 + tsutils@^3.17.1: 3572 + version "3.17.1" 3573 + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" 3574 + integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== 3575 + dependencies: 3576 + tslib "^1.8.1" 3577 + 3578 + tunnel-agent@^0.6.0: 3579 + version "0.6.0" 3580 + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3581 + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= 3582 + dependencies: 3583 + safe-buffer "^5.0.1" 3584 + 3585 + tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3586 + version "0.14.5" 3587 + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3588 + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 3589 + 3590 + type-check@~0.3.2: 3591 + version "0.3.2" 3592 + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3593 + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 3594 + dependencies: 3595 + prelude-ls "~1.1.2" 3596 + 3597 + type-is@~1.6.17, type-is@~1.6.18: 3598 + version "1.6.18" 3599 + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 3600 + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== 3601 + dependencies: 3602 + media-typer "0.3.0" 3603 + mime-types "~2.1.24" 3604 + 3605 + typedarray@^0.0.6: 3606 + version "0.0.6" 3607 + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3608 + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= 3609 + 3610 + typescript-tslint-plugin@^0.5.5: 3611 + version "0.5.5" 3612 + resolved "https://registry.yarnpkg.com/typescript-tslint-plugin/-/typescript-tslint-plugin-0.5.5.tgz#673875c43640251f1ab3d63745d7d49726ff961c" 3613 + integrity sha512-tR5igNQP+6FhxaPJYRlUBVsEl0n5cSuXRbg7L1y80mL4B1jUHb8uiIcbQBJ9zWyypJEdFYFUccpXxvMwZR8+AA== 3614 + dependencies: 3615 + minimatch "^3.0.4" 3616 + mock-require "^3.0.3" 3617 + vscode-languageserver "^5.2.1" 3618 + 3619 + typescript@3.8.3: 3620 + version "3.8.3" 3621 + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061" 3622 + integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w== 3623 + 3624 + uglify-js@^3.7.4: 3625 + version "3.8.0" 3626 + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.8.0.tgz#f3541ae97b2f048d7e7e3aa4f39fd8a1f5d7a805" 3627 + integrity sha512-ugNSTT8ierCsDHso2jkBHXYrU8Y5/fY2ZUprfrJUiD7YpuFvV4jODLFmb3h4btQjqr5Nh4TX4XtgDfCU1WdioQ== 3628 + dependencies: 3629 + commander "~2.20.3" 3630 + source-map "~0.6.1" 3631 + 3632 + ultron@1.0.x: 3633 + version "1.0.2" 3634 + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" 3635 + integrity sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po= 3636 + 3637 + unicode-canonical-property-names-ecmascript@^1.0.4: 3638 + version "1.0.4" 3639 + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" 3640 + integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== 3641 + 3642 + unicode-match-property-ecmascript@^1.0.4: 3643 + version "1.0.4" 3644 + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" 3645 + integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== 3646 + dependencies: 3647 + unicode-canonical-property-names-ecmascript "^1.0.4" 3648 + unicode-property-aliases-ecmascript "^1.0.4" 3649 + 3650 + unicode-match-property-value-ecmascript@^1.1.0: 3651 + version "1.1.0" 3652 + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" 3653 + integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== 3654 + 3655 + unicode-property-aliases-ecmascript@^1.0.4: 3656 + version "1.0.5" 3657 + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" 3658 + integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== 3659 + 3660 + union-value@^1.0.0: 3661 + version "1.0.1" 3662 + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" 3663 + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== 3664 + dependencies: 3665 + arr-union "^3.1.0" 3666 + get-value "^2.0.6" 3667 + is-extendable "^0.1.1" 3668 + set-value "^2.0.1" 3669 + 3670 + universalify@^0.1.0: 3671 + version "0.1.2" 3672 + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 3673 + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 3674 + 3675 + unpipe@1.0.0, unpipe@~1.0.0: 3676 + version "1.0.0" 3677 + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3678 + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 3679 + 3680 + unset-value@^1.0.0: 3681 + version "1.0.0" 3682 + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3683 + integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 3684 + dependencies: 3685 + has-value "^0.3.1" 3686 + isobject "^3.0.0" 3687 + 3688 + unstated@^2.1.1: 3689 + version "2.1.1" 3690 + resolved "https://registry.yarnpkg.com/unstated/-/unstated-2.1.1.tgz#36b124dfb2e7a12d39d0bb9c46dfb6e51276e3a2" 3691 + integrity sha512-fORlTWMZxq7NuMJDxyIrrYIZKN7wEWYQ9SiaJfIRcSpsowr6Ph/JIfK2tgtXLW614JfPG/t5q9eEIhXRCf55xg== 3692 + dependencies: 3693 + create-react-context "^0.1.5" 3694 + 3695 + unzip@^0.1.11: 3696 + version "0.1.11" 3697 + resolved "https://registry.yarnpkg.com/unzip/-/unzip-0.1.11.tgz#89749c63b058d7d90d619f86b98aa1535d3b97f0" 3698 + integrity sha1-iXScY7BY19kNYZ+GuYqhU107l/A= 3699 + dependencies: 3700 + binary ">= 0.3.0 < 1" 3701 + fstream ">= 0.1.30 < 1" 3702 + match-stream ">= 0.0.2 < 1" 3703 + pullstream ">= 0.4.1 < 1" 3704 + readable-stream "~1.0.31" 3705 + setimmediate ">= 1.0.1 < 2" 3706 + 3707 + uri-js@^4.2.2: 3708 + version "4.2.2" 3709 + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 3710 + integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 3711 + dependencies: 3712 + punycode "^2.1.0" 3713 + 3714 + urix@^0.1.0: 3715 + version "0.1.0" 3716 + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3717 + integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 3718 + 3719 + use@^3.1.0: 3720 + version "3.1.1" 3721 + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 3722 + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 3723 + 3724 + util-deprecate@^1.0.1, util-deprecate@~1.0.1: 3725 + version "1.0.2" 3726 + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3727 + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 3728 + 3729 + utils-extend@^1.0.4, utils-extend@^1.0.6, utils-extend@^1.0.7: 3730 + version "1.0.8" 3731 + resolved "https://registry.yarnpkg.com/utils-extend/-/utils-extend-1.0.8.tgz#ccfd7b64540f8e90ee21eec57769d0651cab8a5f" 3732 + integrity sha1-zP17ZFQPjpDuIe7Fd2nQZRyril8= 3733 + 3734 + utils-merge@1.0.1: 3735 + version "1.0.1" 3736 + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 3737 + integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 3738 + 3739 + uuid@^3.3.2: 3740 + version "3.4.0" 3741 + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 3742 + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 3743 + 3744 + vary@~1.1.2: 3745 + version "1.1.2" 3746 + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 3747 + integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 3748 + 3749 + verror@1.10.0: 3750 + version "1.10.0" 3751 + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3752 + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= 3753 + dependencies: 3754 + assert-plus "^1.0.0" 3755 + core-util-is "1.0.2" 3756 + extsprintf "^1.2.0" 3757 + 3758 + vscode-jsonrpc@^4.0.0: 3759 + version "4.0.0" 3760 + resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz#a7bf74ef3254d0a0c272fab15c82128e378b3be9" 3761 + integrity sha512-perEnXQdQOJMTDFNv+UF3h1Y0z4iSiaN9jIlb0OqIYgosPCZGYh/MCUlkFtV2668PL69lRDO32hmvL2yiidUYg== 3762 + 3763 + vscode-languageserver-protocol@3.14.1: 3764 + version "3.14.1" 3765 + resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz#b8aab6afae2849c84a8983d39a1cf742417afe2f" 3766 + integrity sha512-IL66BLb2g20uIKog5Y2dQ0IiigW0XKrvmWiOvc0yXw80z3tMEzEnHjaGAb3ENuU7MnQqgnYJ1Cl2l9RvNgDi4g== 3767 + dependencies: 3768 + vscode-jsonrpc "^4.0.0" 3769 + vscode-languageserver-types "3.14.0" 3770 + 3771 + vscode-languageserver-types@3.14.0: 3772 + version "3.14.0" 3773 + resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz#d3b5952246d30e5241592b6dde8280e03942e743" 3774 + integrity sha512-lTmS6AlAlMHOvPQemVwo3CezxBp0sNB95KNPkqp3Nxd5VFEnuG1ByM0zlRWos0zjO3ZWtkvhal0COgiV1xIA4A== 3775 + 3776 + vscode-languageserver@^5.2.1: 3777 + version "5.2.1" 3778 + resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz#0d2feddd33f92aadf5da32450df498d52f6f14eb" 3779 + integrity sha512-GuayqdKZqAwwaCUjDvMTAVRPJOp/SLON3mJ07eGsx/Iq9HjRymhKWztX41rISqDKhHVVyFM+IywICyZDla6U3A== 3780 + dependencies: 3781 + vscode-languageserver-protocol "3.14.1" 3782 + vscode-uri "^1.0.6" 3783 + 3784 + vscode-uri@^1.0.6: 3785 + version "1.0.8" 3786 + resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-1.0.8.tgz#9769aaececae4026fb6e22359cb38946580ded59" 3787 + integrity sha512-obtSWTlbJ+a+TFRYGaUumtVwb+InIUVI0Lu0VBUAPmj2cU5JutEXg3xUE0c2J5Tcy7h2DEKVJBFi+Y9ZSFzzPQ== 3788 + 3789 + w3c-keyname@^2.2.0: 3790 + version "2.2.2" 3791 + resolved "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.2.tgz#7ea63170454bb19f1a3c6b628fc3dc8889276e91" 3792 + integrity sha512-8Vs/aVwcy0IJACaPm4tyzh1fzehZE70bGSjEl3dDms5UXtWnaBElrSHC8lDDeak0Gk5jxKOFstL64/65o7Ge2A== 3793 + 3794 + watch@^1.0.1: 3795 + version "1.0.2" 3796 + resolved "https://registry.yarnpkg.com/watch/-/watch-1.0.2.tgz#340a717bde765726fa0aa07d721e0147a551df0c" 3797 + integrity sha1-NApxe952Vyb6CqB9ch4BR6VR3ww= 3798 + dependencies: 3799 + exec-sh "^0.2.0" 3800 + minimist "^1.2.0" 3801 + 3802 + word-wrap@~1.2.3: 3803 + version "1.2.3" 3804 + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 3805 + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3806 + 3807 + wrappy@1: 3808 + version "1.0.2" 3809 + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3810 + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3811 + 3812 + ws@^1.1.1: 3813 + version "1.1.5" 3814 + resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51" 3815 + integrity sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w== 3816 + dependencies: 3817 + options ">=0.0.5" 3818 + ultron "1.0.x" 3819 + 3820 + yaml@^1.7.2: 3821 + version "1.7.2" 3822 + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2" 3823 + integrity sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw== 3824 + dependencies: 3825 + "@babel/runtime" "^7.6.3" 3826 + 3827 + yn@3.1.1: 3828 + version "3.1.1" 3829 + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" 3830 + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== 3831 + 3832 + zenscroll@^4.0.2: 3833 + version "4.0.2" 3834 + resolved "https://registry.yarnpkg.com/zenscroll/-/zenscroll-4.0.2.tgz#e8d5774d1c0738a47bcfa8729f3712e2deddeb25" 3835 + integrity sha1-6NV3TRwHOKR7z6hynzcS4t7d6yU=
+4373
pkgs/applications/editors/rstudio/yarndeps.nix
···
··· 1 + { fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec { 2 + offline_cache = linkFarm "offline" packages; 3 + packages = [ 4 + { 5 + name = "_babel_code_frame___code_frame_7.8.3.tgz"; 6 + path = fetchurl { 7 + name = "_babel_code_frame___code_frame_7.8.3.tgz"; 8 + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz"; 9 + sha1 = "33e25903d7481181534e12ec0a25f16b6fcf419e"; 10 + }; 11 + } 12 + { 13 + name = "_babel_helper_module_imports___helper_module_imports_7.8.3.tgz"; 14 + path = fetchurl { 15 + name = "_babel_helper_module_imports___helper_module_imports_7.8.3.tgz"; 16 + url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz"; 17 + sha1 = "7fe39589b39c016331b6b8c3f441e8f0b1419498"; 18 + }; 19 + } 20 + { 21 + name = "_babel_highlight___highlight_7.8.3.tgz"; 22 + path = fetchurl { 23 + name = "_babel_highlight___highlight_7.8.3.tgz"; 24 + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz"; 25 + sha1 = "28f173d04223eaaa59bc1d439a3836e6d1265797"; 26 + }; 27 + } 28 + { 29 + name = "_babel_runtime___runtime_7.9.6.tgz"; 30 + path = fetchurl { 31 + name = "_babel_runtime___runtime_7.9.6.tgz"; 32 + url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.6.tgz"; 33 + sha1 = "a9102eb5cadedf3f31d08a9ecf294af7827ea29f"; 34 + }; 35 + } 36 + { 37 + name = "_babel_runtime___runtime_7.8.4.tgz"; 38 + path = fetchurl { 39 + name = "_babel_runtime___runtime_7.8.4.tgz"; 40 + url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.4.tgz"; 41 + sha1 = "d79f5a2040f7caa24d53e563aad49cbc05581308"; 42 + }; 43 + } 44 + { 45 + name = "_babel_types___types_7.8.6.tgz"; 46 + path = fetchurl { 47 + name = "_babel_types___types_7.8.6.tgz"; 48 + url = "https://registry.yarnpkg.com/@babel/types/-/types-7.8.6.tgz"; 49 + sha1 = "629ecc33c2557fcde7126e58053127afdb3e6d01"; 50 + }; 51 + } 52 + { 53 + name = "_emotion_babel_utils___babel_utils_0.6.10.tgz"; 54 + path = fetchurl { 55 + name = "_emotion_babel_utils___babel_utils_0.6.10.tgz"; 56 + url = "https://registry.yarnpkg.com/@emotion/babel-utils/-/babel-utils-0.6.10.tgz"; 57 + sha1 = "83dbf3dfa933fae9fc566e54fbb45f14674c6ccc"; 58 + }; 59 + } 60 + { 61 + name = "_emotion_hash___hash_0.6.6.tgz"; 62 + path = fetchurl { 63 + name = "_emotion_hash___hash_0.6.6.tgz"; 64 + url = "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.6.6.tgz"; 65 + sha1 = "62266c5f0eac6941fece302abad69f2ee7e25e44"; 66 + }; 67 + } 68 + { 69 + name = "_emotion_is_prop_valid___is_prop_valid_0.6.8.tgz"; 70 + path = fetchurl { 71 + name = "_emotion_is_prop_valid___is_prop_valid_0.6.8.tgz"; 72 + url = "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.6.8.tgz"; 73 + sha1 = "68ad02831da41213a2089d2cab4e8ac8b30cbd85"; 74 + }; 75 + } 76 + { 77 + name = "_emotion_memoize___memoize_0.6.6.tgz"; 78 + path = fetchurl { 79 + name = "_emotion_memoize___memoize_0.6.6.tgz"; 80 + url = "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.6.6.tgz"; 81 + sha1 = "004b98298d04c7ca3b4f50ca2035d4f60d2eed1b"; 82 + }; 83 + } 84 + { 85 + name = "_emotion_serialize___serialize_0.9.1.tgz"; 86 + path = fetchurl { 87 + name = "_emotion_serialize___serialize_0.9.1.tgz"; 88 + url = "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.9.1.tgz"; 89 + sha1 = "a494982a6920730dba6303eb018220a2b629c145"; 90 + }; 91 + } 92 + { 93 + name = "_emotion_stylis___stylis_0.7.1.tgz"; 94 + path = fetchurl { 95 + name = "_emotion_stylis___stylis_0.7.1.tgz"; 96 + url = "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.7.1.tgz"; 97 + sha1 = "50f63225e712d99e2b2b39c19c70fff023793ca5"; 98 + }; 99 + } 100 + { 101 + name = "_emotion_unitless___unitless_0.6.7.tgz"; 102 + path = fetchurl { 103 + name = "_emotion_unitless___unitless_0.6.7.tgz"; 104 + url = "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.6.7.tgz"; 105 + sha1 = "53e9f1892f725b194d5e6a1684a7b394df592397"; 106 + }; 107 + } 108 + { 109 + name = "_emotion_utils___utils_0.8.2.tgz"; 110 + path = fetchurl { 111 + name = "_emotion_utils___utils_0.8.2.tgz"; 112 + url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.8.2.tgz"; 113 + sha1 = "576ff7fb1230185b619a75d258cbc98f0867a8dc"; 114 + }; 115 + } 116 + { 117 + name = "_textlint_ast_node_types___ast_node_types_4.3.4.tgz"; 118 + path = fetchurl { 119 + name = "_textlint_ast_node_types___ast_node_types_4.3.4.tgz"; 120 + url = "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.3.4.tgz"; 121 + sha1 = "f6596c45c32c85dc06915c3077bb7686033efd32"; 122 + }; 123 + } 124 + { 125 + name = "_types_ace___ace_0.0.43.tgz"; 126 + path = fetchurl { 127 + name = "_types_ace___ace_0.0.43.tgz"; 128 + url = "https://registry.yarnpkg.com/@types/ace/-/ace-0.0.43.tgz"; 129 + sha1 = "9f0916174b6060dabbccd36ba4868ea769a1c633"; 130 + }; 131 + } 132 + { 133 + name = "_types_clipboard___clipboard_2.0.1.tgz"; 134 + path = fetchurl { 135 + name = "_types_clipboard___clipboard_2.0.1.tgz"; 136 + url = "https://registry.yarnpkg.com/@types/clipboard/-/clipboard-2.0.1.tgz"; 137 + sha1 = "75a74086c293d75b12bc93ff13bc7797fef05a40"; 138 + }; 139 + } 140 + { 141 + name = "_types_diff_match_patch___diff_match_patch_1.0.32.tgz"; 142 + path = fetchurl { 143 + name = "_types_diff_match_patch___diff_match_patch_1.0.32.tgz"; 144 + url = "https://registry.yarnpkg.com/@types/diff-match-patch/-/diff-match-patch-1.0.32.tgz"; 145 + sha1 = "d9c3b8c914aa8229485351db4865328337a3d09f"; 146 + }; 147 + } 148 + { 149 + name = "_types_js_yaml___js_yaml_3.12.3.tgz"; 150 + path = fetchurl { 151 + name = "_types_js_yaml___js_yaml_3.12.3.tgz"; 152 + url = "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-3.12.3.tgz"; 153 + sha1 = "abf383c5b639d0aa8b8c4a420d6a85f703357d6c"; 154 + }; 155 + } 156 + { 157 + name = "_types_lodash.debounce___lodash.debounce_4.0.6.tgz"; 158 + path = fetchurl { 159 + name = "_types_lodash.debounce___lodash.debounce_4.0.6.tgz"; 160 + url = "https://registry.yarnpkg.com/@types/lodash.debounce/-/lodash.debounce-4.0.6.tgz"; 161 + sha1 = "c5a2326cd3efc46566c47e4c0aa248dc0ee57d60"; 162 + }; 163 + } 164 + { 165 + name = "_types_lodash.uniqby___lodash.uniqby_4.7.6.tgz"; 166 + path = fetchurl { 167 + name = "_types_lodash.uniqby___lodash.uniqby_4.7.6.tgz"; 168 + url = "https://registry.yarnpkg.com/@types/lodash.uniqby/-/lodash.uniqby-4.7.6.tgz"; 169 + sha1 = "672827a701403f07904fe37f0721ae92abfa80e8"; 170 + }; 171 + } 172 + { 173 + name = "_types_lodash___lodash_4.14.154.tgz"; 174 + path = fetchurl { 175 + name = "_types_lodash___lodash_4.14.154.tgz"; 176 + url = "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.154.tgz"; 177 + sha1 = "069e3c703fdb264e67be9e03b20a640bc0198ecc"; 178 + }; 179 + } 180 + { 181 + name = "_types_node___node_14.0.4.tgz"; 182 + path = fetchurl { 183 + name = "_types_node___node_14.0.4.tgz"; 184 + url = "https://registry.yarnpkg.com/@types/node/-/node-14.0.4.tgz"; 185 + sha1 = "43a63fc5edce226bed106b31b875165256271107"; 186 + }; 187 + } 188 + { 189 + name = "_types_orderedmap___orderedmap_1.0.0.tgz"; 190 + path = fetchurl { 191 + name = "_types_orderedmap___orderedmap_1.0.0.tgz"; 192 + url = "https://registry.yarnpkg.com/@types/orderedmap/-/orderedmap-1.0.0.tgz"; 193 + sha1 = "807455a192bba52cbbb4517044bc82bdbfa8c596"; 194 + }; 195 + } 196 + { 197 + name = "_types_parse_json___parse_json_4.0.0.tgz"; 198 + path = fetchurl { 199 + name = "_types_parse_json___parse_json_4.0.0.tgz"; 200 + url = "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz"; 201 + sha1 = "2f8bb441434d163b35fb8ffdccd7138927ffb8c0"; 202 + }; 203 + } 204 + { 205 + name = "_types_prop_types___prop_types_15.7.3.tgz"; 206 + path = fetchurl { 207 + name = "_types_prop_types___prop_types_15.7.3.tgz"; 208 + url = "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz"; 209 + sha1 = "2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"; 210 + }; 211 + } 212 + { 213 + name = "_types_prosemirror_commands___prosemirror_commands_1.0.3.tgz"; 214 + path = fetchurl { 215 + name = "_types_prosemirror_commands___prosemirror_commands_1.0.3.tgz"; 216 + url = "https://registry.yarnpkg.com/@types/prosemirror-commands/-/prosemirror-commands-1.0.3.tgz"; 217 + sha1 = "e9fa5653cffd1c75c260594cf3ec5244c9004dbf"; 218 + }; 219 + } 220 + { 221 + name = "_types_prosemirror_dev_tools___prosemirror_dev_tools_2.1.0.tgz"; 222 + path = fetchurl { 223 + name = "_types_prosemirror_dev_tools___prosemirror_dev_tools_2.1.0.tgz"; 224 + url = "https://registry.yarnpkg.com/@types/prosemirror-dev-tools/-/prosemirror-dev-tools-2.1.0.tgz"; 225 + sha1 = "91e2ef4f36129f5155f924296e306de187e86bdb"; 226 + }; 227 + } 228 + { 229 + name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.0.tgz"; 230 + path = fetchurl { 231 + name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.0.tgz"; 232 + url = "https://registry.yarnpkg.com/@types/prosemirror-dropcursor/-/prosemirror-dropcursor-1.0.0.tgz"; 233 + sha1 = "2df872bc6431a9f06bc1a4a0eac7c2dc527e7f12"; 234 + }; 235 + } 236 + { 237 + name = "_types_prosemirror_gapcursor___prosemirror_gapcursor_1.0.1.tgz"; 238 + path = fetchurl { 239 + name = "_types_prosemirror_gapcursor___prosemirror_gapcursor_1.0.1.tgz"; 240 + url = "https://registry.yarnpkg.com/@types/prosemirror-gapcursor/-/prosemirror-gapcursor-1.0.1.tgz"; 241 + sha1 = "56a6274ef39f62c339adcc64305294b800211a5e"; 242 + }; 243 + } 244 + { 245 + name = "_types_prosemirror_history___prosemirror_history_1.0.1.tgz"; 246 + path = fetchurl { 247 + name = "_types_prosemirror_history___prosemirror_history_1.0.1.tgz"; 248 + url = "https://registry.yarnpkg.com/@types/prosemirror-history/-/prosemirror-history-1.0.1.tgz"; 249 + sha1 = "b8d7595f73788b63fc9f2b57a763ba8375abfe87"; 250 + }; 251 + } 252 + { 253 + name = "_types_prosemirror_inputrules___prosemirror_inputrules_1.0.3.tgz"; 254 + path = fetchurl { 255 + name = "_types_prosemirror_inputrules___prosemirror_inputrules_1.0.3.tgz"; 256 + url = "https://registry.yarnpkg.com/@types/prosemirror-inputrules/-/prosemirror-inputrules-1.0.3.tgz"; 257 + sha1 = "3f8f07921f692b6c7e4781fa426aee3e76b9018c"; 258 + }; 259 + } 260 + { 261 + name = "_types_prosemirror_keymap___prosemirror_keymap_1.0.3.tgz"; 262 + path = fetchurl { 263 + name = "_types_prosemirror_keymap___prosemirror_keymap_1.0.3.tgz"; 264 + url = "https://registry.yarnpkg.com/@types/prosemirror-keymap/-/prosemirror-keymap-1.0.3.tgz"; 265 + sha1 = "09cc469a69222a4c8a3d415d02eeb459bb74269c"; 266 + }; 267 + } 268 + { 269 + name = "_types_prosemirror_model___prosemirror_model_1.7.2.tgz"; 270 + path = fetchurl { 271 + name = "_types_prosemirror_model___prosemirror_model_1.7.2.tgz"; 272 + url = "https://registry.yarnpkg.com/@types/prosemirror-model/-/prosemirror-model-1.7.2.tgz"; 273 + sha1 = "9c7aff2fd62f0f56eb76e2e0eb27bf6996e6c28a"; 274 + }; 275 + } 276 + { 277 + name = "_types_prosemirror_schema_list___prosemirror_schema_list_1.0.1.tgz"; 278 + path = fetchurl { 279 + name = "_types_prosemirror_schema_list___prosemirror_schema_list_1.0.1.tgz"; 280 + url = "https://registry.yarnpkg.com/@types/prosemirror-schema-list/-/prosemirror-schema-list-1.0.1.tgz"; 281 + sha1 = "7f53e3c0326b1359755f3971b8c448d98b722f21"; 282 + }; 283 + } 284 + { 285 + name = "_types_prosemirror_state___prosemirror_state_1.2.3.tgz"; 286 + path = fetchurl { 287 + name = "_types_prosemirror_state___prosemirror_state_1.2.3.tgz"; 288 + url = "https://registry.yarnpkg.com/@types/prosemirror-state/-/prosemirror-state-1.2.3.tgz"; 289 + sha1 = "7f5f871acf7b8c22e1862ff0068f9bf7e9682c0e"; 290 + }; 291 + } 292 + { 293 + name = "_types_prosemirror_state___prosemirror_state_1.2.5.tgz"; 294 + path = fetchurl { 295 + name = "_types_prosemirror_state___prosemirror_state_1.2.5.tgz"; 296 + url = "https://registry.yarnpkg.com/@types/prosemirror-state/-/prosemirror-state-1.2.5.tgz"; 297 + sha1 = "a91304e9aab6e71f868e23b3a1ae514a75033f8f"; 298 + }; 299 + } 300 + { 301 + name = "_types_prosemirror_tables___prosemirror_tables_0.9.1.tgz"; 302 + path = fetchurl { 303 + name = "_types_prosemirror_tables___prosemirror_tables_0.9.1.tgz"; 304 + url = "https://registry.yarnpkg.com/@types/prosemirror-tables/-/prosemirror-tables-0.9.1.tgz"; 305 + sha1 = "d2203330f0fa1161c04152bf02c39e152082d408"; 306 + }; 307 + } 308 + { 309 + name = "_types_prosemirror_transform___prosemirror_transform_1.1.1.tgz"; 310 + path = fetchurl { 311 + name = "_types_prosemirror_transform___prosemirror_transform_1.1.1.tgz"; 312 + url = "https://registry.yarnpkg.com/@types/prosemirror-transform/-/prosemirror-transform-1.1.1.tgz"; 313 + sha1 = "5a0de16e8e0123b4c3d9559235e19f39cee85e5c"; 314 + }; 315 + } 316 + { 317 + name = "_types_prosemirror_view___prosemirror_view_1.11.2.tgz"; 318 + path = fetchurl { 319 + name = "_types_prosemirror_view___prosemirror_view_1.11.2.tgz"; 320 + url = "https://registry.yarnpkg.com/@types/prosemirror-view/-/prosemirror-view-1.11.2.tgz"; 321 + sha1 = "58af5dcb7de20b7de874de99147552d5627209a1"; 322 + }; 323 + } 324 + { 325 + name = "_types_react_dom___react_dom_16.9.6.tgz"; 326 + path = fetchurl { 327 + name = "_types_react_dom___react_dom_16.9.6.tgz"; 328 + url = "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.6.tgz"; 329 + sha1 = "9e7f83d90566521cc2083be2277c6712dcaf754c"; 330 + }; 331 + } 332 + { 333 + name = "_types_react_window___react_window_1.8.2.tgz"; 334 + path = fetchurl { 335 + name = "_types_react_window___react_window_1.8.2.tgz"; 336 + url = "https://registry.yarnpkg.com/@types/react-window/-/react-window-1.8.2.tgz"; 337 + sha1 = "a5a6b2762ce73ffaab7911ee1397cf645f2459fe"; 338 + }; 339 + } 340 + { 341 + name = "_types_react___react_16.9.32.tgz"; 342 + path = fetchurl { 343 + name = "_types_react___react_16.9.32.tgz"; 344 + url = "https://registry.yarnpkg.com/@types/react/-/react-16.9.32.tgz"; 345 + sha1 = "f6368625b224604148d1ddf5920e4fefbd98d383"; 346 + }; 347 + } 348 + { 349 + name = "_types_unzip___unzip_0.1.1.tgz"; 350 + path = fetchurl { 351 + name = "_types_unzip___unzip_0.1.1.tgz"; 352 + url = "https://registry.yarnpkg.com/@types/unzip/-/unzip-0.1.1.tgz"; 353 + sha1 = "96e80dc5e2917a769c8be01aa49c4fe660e7bab3"; 354 + }; 355 + } 356 + { 357 + name = "_types_zenscroll___zenscroll_4.0.0.tgz"; 358 + path = fetchurl { 359 + name = "_types_zenscroll___zenscroll_4.0.0.tgz"; 360 + url = "https://registry.yarnpkg.com/@types/zenscroll/-/zenscroll-4.0.0.tgz"; 361 + sha1 = "9acc7df6c87cc9e064f5a6230df499835dee1972"; 362 + }; 363 + } 364 + { 365 + name = "abbrev___abbrev_1.1.1.tgz"; 366 + path = fetchurl { 367 + name = "abbrev___abbrev_1.1.1.tgz"; 368 + url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz"; 369 + sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; 370 + }; 371 + } 372 + { 373 + name = "accepts___accepts_1.3.7.tgz"; 374 + path = fetchurl { 375 + name = "accepts___accepts_1.3.7.tgz"; 376 + url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz"; 377 + sha1 = "531bc726517a3b2b41f850021c6cc15eaab507cd"; 378 + }; 379 + } 380 + { 381 + name = "acorn_jsx___acorn_jsx_4.1.1.tgz"; 382 + path = fetchurl { 383 + name = "acorn_jsx___acorn_jsx_4.1.1.tgz"; 384 + url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz"; 385 + sha1 = "e8e41e48ea2fe0c896740610ab6a4ffd8add225e"; 386 + }; 387 + } 388 + { 389 + name = "acorn___acorn_5.7.3.tgz"; 390 + path = fetchurl { 391 + name = "acorn___acorn_5.7.3.tgz"; 392 + url = "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz"; 393 + sha1 = "67aa231bf8812974b85235a96771eb6bd07ea279"; 394 + }; 395 + } 396 + { 397 + name = "ajax_request___ajax_request_1.2.3.tgz"; 398 + path = fetchurl { 399 + name = "ajax_request___ajax_request_1.2.3.tgz"; 400 + url = "https://registry.yarnpkg.com/ajax-request/-/ajax-request-1.2.3.tgz"; 401 + sha1 = "99fcbec1d6d2792f85fa949535332bd14f5f3790"; 402 + }; 403 + } 404 + { 405 + name = "ajv___ajv_6.12.0.tgz"; 406 + path = fetchurl { 407 + name = "ajv___ajv_6.12.0.tgz"; 408 + url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz"; 409 + sha1 = "06d60b96d87b8454a5adaba86e7854da629db4b7"; 410 + }; 411 + } 412 + { 413 + name = "ansi_escapes___ansi_escapes_3.2.0.tgz"; 414 + path = fetchurl { 415 + name = "ansi_escapes___ansi_escapes_3.2.0.tgz"; 416 + url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz"; 417 + sha1 = "8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"; 418 + }; 419 + } 420 + { 421 + name = "ansi_regex___ansi_regex_3.0.0.tgz"; 422 + path = fetchurl { 423 + name = "ansi_regex___ansi_regex_3.0.0.tgz"; 424 + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz"; 425 + sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 426 + }; 427 + } 428 + { 429 + name = "ansi_styles___ansi_styles_3.2.1.tgz"; 430 + path = fetchurl { 431 + name = "ansi_styles___ansi_styles_3.2.1.tgz"; 432 + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; 433 + sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d"; 434 + }; 435 + } 436 + { 437 + name = "ansi___ansi_0.3.1.tgz"; 438 + path = fetchurl { 439 + name = "ansi___ansi_0.3.1.tgz"; 440 + url = "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz"; 441 + sha1 = "0c42d4fb17160d5a9af1e484bace1c66922c1b21"; 442 + }; 443 + } 444 + { 445 + name = "anymatch___anymatch_1.3.2.tgz"; 446 + path = fetchurl { 447 + name = "anymatch___anymatch_1.3.2.tgz"; 448 + url = "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz"; 449 + sha1 = "553dcb8f91e3c889845dfdba34c77721b90b9d7a"; 450 + }; 451 + } 452 + { 453 + name = "app_root_path___app_root_path_1.4.0.tgz"; 454 + path = fetchurl { 455 + name = "app_root_path___app_root_path_1.4.0.tgz"; 456 + url = "https://registry.yarnpkg.com/app-root-path/-/app-root-path-1.4.0.tgz"; 457 + sha1 = "6335d865c9640d0fad99004e5a79232238e92dfa"; 458 + }; 459 + } 460 + { 461 + name = "app_root_path___app_root_path_2.2.1.tgz"; 462 + path = fetchurl { 463 + name = "app_root_path___app_root_path_2.2.1.tgz"; 464 + url = "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.2.1.tgz"; 465 + sha1 = "d0df4a682ee408273583d43f6f79e9892624bc9a"; 466 + }; 467 + } 468 + { 469 + name = "arg___arg_4.1.3.tgz"; 470 + path = fetchurl { 471 + name = "arg___arg_4.1.3.tgz"; 472 + url = "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz"; 473 + sha1 = "269fc7ad5b8e42cb63c896d5666017261c144089"; 474 + }; 475 + } 476 + { 477 + name = "argparse___argparse_1.0.10.tgz"; 478 + path = fetchurl { 479 + name = "argparse___argparse_1.0.10.tgz"; 480 + url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; 481 + sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911"; 482 + }; 483 + } 484 + { 485 + name = "arr_diff___arr_diff_2.0.0.tgz"; 486 + path = fetchurl { 487 + name = "arr_diff___arr_diff_2.0.0.tgz"; 488 + url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz"; 489 + sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf"; 490 + }; 491 + } 492 + { 493 + name = "arr_diff___arr_diff_4.0.0.tgz"; 494 + path = fetchurl { 495 + name = "arr_diff___arr_diff_4.0.0.tgz"; 496 + url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz"; 497 + sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; 498 + }; 499 + } 500 + { 501 + name = "arr_flatten___arr_flatten_1.1.0.tgz"; 502 + path = fetchurl { 503 + name = "arr_flatten___arr_flatten_1.1.0.tgz"; 504 + url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz"; 505 + sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1"; 506 + }; 507 + } 508 + { 509 + name = "arr_union___arr_union_3.1.0.tgz"; 510 + path = fetchurl { 511 + name = "arr_union___arr_union_3.1.0.tgz"; 512 + url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz"; 513 + sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; 514 + }; 515 + } 516 + { 517 + name = "array_flatten___array_flatten_1.1.1.tgz"; 518 + path = fetchurl { 519 + name = "array_flatten___array_flatten_1.1.1.tgz"; 520 + url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz"; 521 + sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; 522 + }; 523 + } 524 + { 525 + name = "array_unique___array_unique_0.2.1.tgz"; 526 + path = fetchurl { 527 + name = "array_unique___array_unique_0.2.1.tgz"; 528 + url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz"; 529 + sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53"; 530 + }; 531 + } 532 + { 533 + name = "array_unique___array_unique_0.3.2.tgz"; 534 + path = fetchurl { 535 + name = "array_unique___array_unique_0.3.2.tgz"; 536 + url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz"; 537 + sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; 538 + }; 539 + } 540 + { 541 + name = "asn1___asn1_0.2.4.tgz"; 542 + path = fetchurl { 543 + name = "asn1___asn1_0.2.4.tgz"; 544 + url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz"; 545 + sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136"; 546 + }; 547 + } 548 + { 549 + name = "assert_plus___assert_plus_1.0.0.tgz"; 550 + path = fetchurl { 551 + name = "assert_plus___assert_plus_1.0.0.tgz"; 552 + url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz"; 553 + sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; 554 + }; 555 + } 556 + { 557 + name = "assign_symbols___assign_symbols_1.0.0.tgz"; 558 + path = fetchurl { 559 + name = "assign_symbols___assign_symbols_1.0.0.tgz"; 560 + url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz"; 561 + sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 562 + }; 563 + } 564 + { 565 + name = "async_each___async_each_1.0.3.tgz"; 566 + path = fetchurl { 567 + name = "async_each___async_each_1.0.3.tgz"; 568 + url = "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz"; 569 + sha1 = "b727dbf87d7651602f06f4d4ac387f47d91b0cbf"; 570 + }; 571 + } 572 + { 573 + name = "asynckit___asynckit_0.4.0.tgz"; 574 + path = fetchurl { 575 + name = "asynckit___asynckit_0.4.0.tgz"; 576 + url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz"; 577 + sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 578 + }; 579 + } 580 + { 581 + name = "atob___atob_2.1.2.tgz"; 582 + path = fetchurl { 583 + name = "atob___atob_2.1.2.tgz"; 584 + url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz"; 585 + sha1 = "6d9517eb9e030d2436666651e86bd9f6f13533c9"; 586 + }; 587 + } 588 + { 589 + name = "aws_sign2___aws_sign2_0.7.0.tgz"; 590 + path = fetchurl { 591 + name = "aws_sign2___aws_sign2_0.7.0.tgz"; 592 + url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz"; 593 + sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 594 + }; 595 + } 596 + { 597 + name = "aws4___aws4_1.9.1.tgz"; 598 + path = fetchurl { 599 + name = "aws4___aws4_1.9.1.tgz"; 600 + url = "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz"; 601 + sha1 = "7e33d8f7d449b3f673cd72deb9abdc552dbe528e"; 602 + }; 603 + } 604 + { 605 + name = "babel_plugin_emotion___babel_plugin_emotion_9.2.11.tgz"; 606 + path = fetchurl { 607 + name = "babel_plugin_emotion___babel_plugin_emotion_9.2.11.tgz"; 608 + url = "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz"; 609 + sha1 = "319c005a9ee1d15bb447f59fe504c35fd5807728"; 610 + }; 611 + } 612 + { 613 + name = "babel_plugin_macros___babel_plugin_macros_2.8.0.tgz"; 614 + path = fetchurl { 615 + name = "babel_plugin_macros___babel_plugin_macros_2.8.0.tgz"; 616 + url = "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz"; 617 + sha1 = "0f958a7cc6556b1e65344465d99111a1e5e10138"; 618 + }; 619 + } 620 + { 621 + name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz"; 622 + path = fetchurl { 623 + name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz"; 624 + url = "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"; 625 + sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"; 626 + }; 627 + } 628 + { 629 + name = "babel_runtime___babel_runtime_6.26.0.tgz"; 630 + path = fetchurl { 631 + name = "babel_runtime___babel_runtime_6.26.0.tgz"; 632 + url = "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz"; 633 + sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 634 + }; 635 + } 636 + { 637 + name = "balanced_match___balanced_match_1.0.0.tgz"; 638 + path = fetchurl { 639 + name = "balanced_match___balanced_match_1.0.0.tgz"; 640 + url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; 641 + sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 642 + }; 643 + } 644 + { 645 + name = "base16___base16_1.0.0.tgz"; 646 + path = fetchurl { 647 + name = "base16___base16_1.0.0.tgz"; 648 + url = "https://registry.yarnpkg.com/base16/-/base16-1.0.0.tgz"; 649 + sha1 = "e297f60d7ec1014a7a971a39ebc8a98c0b681e70"; 650 + }; 651 + } 652 + { 653 + name = "base64_img___base64_img_1.0.4.tgz"; 654 + path = fetchurl { 655 + name = "base64_img___base64_img_1.0.4.tgz"; 656 + url = "https://registry.yarnpkg.com/base64-img/-/base64-img-1.0.4.tgz"; 657 + sha1 = "3e22d55d6c74a24553d840d2b1bc12a7db078d35"; 658 + }; 659 + } 660 + { 661 + name = "base64_js___base64_js_1.3.1.tgz"; 662 + path = fetchurl { 663 + name = "base64_js___base64_js_1.3.1.tgz"; 664 + url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz"; 665 + sha1 = "58ece8cb75dd07e71ed08c736abc5fac4dbf8df1"; 666 + }; 667 + } 668 + { 669 + name = "base___base_0.11.2.tgz"; 670 + path = fetchurl { 671 + name = "base___base_0.11.2.tgz"; 672 + url = "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz"; 673 + sha1 = "7bde5ced145b6d551a90db87f83c558b4eb48a8f"; 674 + }; 675 + } 676 + { 677 + name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz"; 678 + path = fetchurl { 679 + name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz"; 680 + url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; 681 + sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; 682 + }; 683 + } 684 + { 685 + name = "biblatex_csl_converter___biblatex_csl_converter_1.9.1.tgz"; 686 + path = fetchurl { 687 + name = "biblatex_csl_converter___biblatex_csl_converter_1.9.1.tgz"; 688 + url = "https://registry.yarnpkg.com/biblatex-csl-converter/-/biblatex-csl-converter-1.9.1.tgz"; 689 + sha1 = "50aacfef172997f1c98d72837ffdd3b19c62f8c4"; 690 + }; 691 + } 692 + { 693 + name = "binary_extensions___binary_extensions_1.13.1.tgz"; 694 + path = fetchurl { 695 + name = "binary_extensions___binary_extensions_1.13.1.tgz"; 696 + url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz"; 697 + sha1 = "598afe54755b2868a5330d2aff9d4ebb53209b65"; 698 + }; 699 + } 700 + { 701 + name = "binary___binary_0.3.0.tgz"; 702 + path = fetchurl { 703 + name = "binary___binary_0.3.0.tgz"; 704 + url = "https://registry.yarnpkg.com/binary/-/binary-0.3.0.tgz"; 705 + sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79"; 706 + }; 707 + } 708 + { 709 + name = "bindings___bindings_1.5.0.tgz"; 710 + path = fetchurl { 711 + name = "bindings___bindings_1.5.0.tgz"; 712 + url = "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz"; 713 + sha1 = "10353c9e945334bc0511a6d90b38fbc7c9c504df"; 714 + }; 715 + } 716 + { 717 + name = "body_parser___body_parser_1.19.0.tgz"; 718 + path = fetchurl { 719 + name = "body_parser___body_parser_1.19.0.tgz"; 720 + url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz"; 721 + sha1 = "96b2709e57c9c4e09a6fd66a8fd979844f69f08a"; 722 + }; 723 + } 724 + { 725 + name = "boundary___boundary_1.0.1.tgz"; 726 + path = fetchurl { 727 + name = "boundary___boundary_1.0.1.tgz"; 728 + url = "https://registry.yarnpkg.com/boundary/-/boundary-1.0.1.tgz"; 729 + sha1 = "4d67dc2602c0cc16dd9bce7ebf87e948290f5812"; 730 + }; 731 + } 732 + { 733 + name = "bowser___bowser_2.9.0.tgz"; 734 + path = fetchurl { 735 + name = "bowser___bowser_2.9.0.tgz"; 736 + url = "https://registry.yarnpkg.com/bowser/-/bowser-2.9.0.tgz"; 737 + sha1 = "3bed854233b419b9a7422d9ee3e85504373821c9"; 738 + }; 739 + } 740 + { 741 + name = "brace_expansion___brace_expansion_1.1.11.tgz"; 742 + path = fetchurl { 743 + name = "brace_expansion___brace_expansion_1.1.11.tgz"; 744 + url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; 745 + sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd"; 746 + }; 747 + } 748 + { 749 + name = "braces___braces_1.8.5.tgz"; 750 + path = fetchurl { 751 + name = "braces___braces_1.8.5.tgz"; 752 + url = "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz"; 753 + sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7"; 754 + }; 755 + } 756 + { 757 + name = "braces___braces_2.3.2.tgz"; 758 + path = fetchurl { 759 + name = "braces___braces_2.3.2.tgz"; 760 + url = "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz"; 761 + sha1 = "5979fd3f14cd531565e5fa2df1abfff1dfaee729"; 762 + }; 763 + } 764 + { 765 + name = "buffer_from___buffer_from_1.1.1.tgz"; 766 + path = fetchurl { 767 + name = "buffer_from___buffer_from_1.1.1.tgz"; 768 + url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; 769 + sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef"; 770 + }; 771 + } 772 + { 773 + name = "buffers___buffers_0.1.1.tgz"; 774 + path = fetchurl { 775 + name = "buffers___buffers_0.1.1.tgz"; 776 + url = "https://registry.yarnpkg.com/buffers/-/buffers-0.1.1.tgz"; 777 + sha1 = "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb"; 778 + }; 779 + } 780 + { 781 + name = "builtin_modules___builtin_modules_1.1.1.tgz"; 782 + path = fetchurl { 783 + name = "builtin_modules___builtin_modules_1.1.1.tgz"; 784 + url = "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz"; 785 + sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f"; 786 + }; 787 + } 788 + { 789 + name = "bytes___bytes_3.1.0.tgz"; 790 + path = fetchurl { 791 + name = "bytes___bytes_3.1.0.tgz"; 792 + url = "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz"; 793 + sha1 = "f6cf7933a360e0588fa9fde85651cdc7f805d1f6"; 794 + }; 795 + } 796 + { 797 + name = "cache_base___cache_base_1.0.1.tgz"; 798 + path = fetchurl { 799 + name = "cache_base___cache_base_1.0.1.tgz"; 800 + url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz"; 801 + sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2"; 802 + }; 803 + } 804 + { 805 + name = "callsites___callsites_3.1.0.tgz"; 806 + path = fetchurl { 807 + name = "callsites___callsites_3.1.0.tgz"; 808 + url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz"; 809 + sha1 = "b3630abd8943432f54b3f0519238e33cd7df2f73"; 810 + }; 811 + } 812 + { 813 + name = "caseless___caseless_0.12.0.tgz"; 814 + path = fetchurl { 815 + name = "caseless___caseless_0.12.0.tgz"; 816 + url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz"; 817 + sha1 = "1b681c21ff84033c826543090689420d187151dc"; 818 + }; 819 + } 820 + { 821 + name = "chain_able___chain_able_1.0.1.tgz"; 822 + path = fetchurl { 823 + name = "chain_able___chain_able_1.0.1.tgz"; 824 + url = "https://registry.yarnpkg.com/chain-able/-/chain-able-1.0.1.tgz"; 825 + sha1 = "b48ac9bdc18f2192ec730abc66609f90aab5605f"; 826 + }; 827 + } 828 + { 829 + name = "chain_able___chain_able_3.0.0.tgz"; 830 + path = fetchurl { 831 + name = "chain_able___chain_able_3.0.0.tgz"; 832 + url = "https://registry.yarnpkg.com/chain-able/-/chain-able-3.0.0.tgz"; 833 + sha1 = "dcffe8b04f3da210941a23843bc1332bb288ca9f"; 834 + }; 835 + } 836 + { 837 + name = "chainsaw___chainsaw_0.1.0.tgz"; 838 + path = fetchurl { 839 + name = "chainsaw___chainsaw_0.1.0.tgz"; 840 + url = "https://registry.yarnpkg.com/chainsaw/-/chainsaw-0.1.0.tgz"; 841 + sha1 = "5eab50b28afe58074d0d58291388828b5e5fbc98"; 842 + }; 843 + } 844 + { 845 + name = "chalk___chalk_2.4.2.tgz"; 846 + path = fetchurl { 847 + name = "chalk___chalk_2.4.2.tgz"; 848 + url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; 849 + sha1 = "cd42541677a54333cf541a49108c1432b44c9424"; 850 + }; 851 + } 852 + { 853 + name = "chardet___chardet_0.4.2.tgz"; 854 + path = fetchurl { 855 + name = "chardet___chardet_0.4.2.tgz"; 856 + url = "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz"; 857 + sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"; 858 + }; 859 + } 860 + { 861 + name = "chokidar___chokidar_1.7.0.tgz"; 862 + path = fetchurl { 863 + name = "chokidar___chokidar_1.7.0.tgz"; 864 + url = "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz"; 865 + sha1 = "798e689778151c8076b4b360e5edd28cda2bb468"; 866 + }; 867 + } 868 + { 869 + name = "class_utils___class_utils_0.3.6.tgz"; 870 + path = fetchurl { 871 + name = "class_utils___class_utils_0.3.6.tgz"; 872 + url = "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz"; 873 + sha1 = "f93369ae8b9a7ce02fd41faad0ca83033190c463"; 874 + }; 875 + } 876 + { 877 + name = "clean_css___clean_css_4.2.3.tgz"; 878 + path = fetchurl { 879 + name = "clean_css___clean_css_4.2.3.tgz"; 880 + url = "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz"; 881 + sha1 = "507b5de7d97b48ee53d84adb0160ff6216380f78"; 882 + }; 883 + } 884 + { 885 + name = "cli_cursor___cli_cursor_2.1.0.tgz"; 886 + path = fetchurl { 887 + name = "cli_cursor___cli_cursor_2.1.0.tgz"; 888 + url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz"; 889 + sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; 890 + }; 891 + } 892 + { 893 + name = "cli_width___cli_width_2.2.0.tgz"; 894 + path = fetchurl { 895 + name = "cli_width___cli_width_2.2.0.tgz"; 896 + url = "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz"; 897 + sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639"; 898 + }; 899 + } 900 + { 901 + name = "clipboard___clipboard_2.0.6.tgz"; 902 + path = fetchurl { 903 + name = "clipboard___clipboard_2.0.6.tgz"; 904 + url = "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz"; 905 + sha1 = "52921296eec0fdf77ead1749421b21c968647376"; 906 + }; 907 + } 908 + { 909 + name = "collection_visit___collection_visit_1.0.0.tgz"; 910 + path = fetchurl { 911 + name = "collection_visit___collection_visit_1.0.0.tgz"; 912 + url = "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz"; 913 + sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; 914 + }; 915 + } 916 + { 917 + name = "color_convert___color_convert_1.9.3.tgz"; 918 + path = fetchurl { 919 + name = "color_convert___color_convert_1.9.3.tgz"; 920 + url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; 921 + sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8"; 922 + }; 923 + } 924 + { 925 + name = "color_name___color_name_1.1.3.tgz"; 926 + path = fetchurl { 927 + name = "color_name___color_name_1.1.3.tgz"; 928 + url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; 929 + sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 930 + }; 931 + } 932 + { 933 + name = "combined_stream___combined_stream_1.0.8.tgz"; 934 + path = fetchurl { 935 + name = "combined_stream___combined_stream_1.0.8.tgz"; 936 + url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz"; 937 + sha1 = "c3d45a8b34fd730631a110a8a2520682b31d5a7f"; 938 + }; 939 + } 940 + { 941 + name = "commander___commander_2.20.3.tgz"; 942 + path = fetchurl { 943 + name = "commander___commander_2.20.3.tgz"; 944 + url = "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz"; 945 + sha1 = "fd485e84c03eb4881c20722ba48035e8531aeb33"; 946 + }; 947 + } 948 + { 949 + name = "component_emitter___component_emitter_1.3.0.tgz"; 950 + path = fetchurl { 951 + name = "component_emitter___component_emitter_1.3.0.tgz"; 952 + url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz"; 953 + sha1 = "16e4070fba8ae29b679f2215853ee181ab2eabc0"; 954 + }; 955 + } 956 + { 957 + name = "concat_map___concat_map_0.0.1.tgz"; 958 + path = fetchurl { 959 + name = "concat_map___concat_map_0.0.1.tgz"; 960 + url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; 961 + sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 962 + }; 963 + } 964 + { 965 + name = "concat_stream___concat_stream_1.6.2.tgz"; 966 + path = fetchurl { 967 + name = "concat_stream___concat_stream_1.6.2.tgz"; 968 + url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz"; 969 + sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"; 970 + }; 971 + } 972 + { 973 + name = "concat_stream___concat_stream_2.0.0.tgz"; 974 + path = fetchurl { 975 + name = "concat_stream___concat_stream_2.0.0.tgz"; 976 + url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz"; 977 + sha1 = "414cf5af790a48c60ab9be4527d56d5e41133cb1"; 978 + }; 979 + } 980 + { 981 + name = "content_disposition___content_disposition_0.5.3.tgz"; 982 + path = fetchurl { 983 + name = "content_disposition___content_disposition_0.5.3.tgz"; 984 + url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz"; 985 + sha1 = "e130caf7e7279087c5616c2007d0485698984fbd"; 986 + }; 987 + } 988 + { 989 + name = "content_type___content_type_1.0.4.tgz"; 990 + path = fetchurl { 991 + name = "content_type___content_type_1.0.4.tgz"; 992 + url = "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz"; 993 + sha1 = "e138cc75e040c727b1966fe5e5f8c9aee256fe3b"; 994 + }; 995 + } 996 + { 997 + name = "convert_source_map___convert_source_map_1.7.0.tgz"; 998 + path = fetchurl { 999 + name = "convert_source_map___convert_source_map_1.7.0.tgz"; 1000 + url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz"; 1001 + sha1 = "17a2cb882d7f77d3490585e2ce6c524424a3a442"; 1002 + }; 1003 + } 1004 + { 1005 + name = "cookie_signature___cookie_signature_1.0.6.tgz"; 1006 + path = fetchurl { 1007 + name = "cookie_signature___cookie_signature_1.0.6.tgz"; 1008 + url = "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz"; 1009 + sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; 1010 + }; 1011 + } 1012 + { 1013 + name = "cookie___cookie_0.4.0.tgz"; 1014 + path = fetchurl { 1015 + name = "cookie___cookie_0.4.0.tgz"; 1016 + url = "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz"; 1017 + sha1 = "beb437e7022b3b6d49019d088665303ebe9c14ba"; 1018 + }; 1019 + } 1020 + { 1021 + name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; 1022 + path = fetchurl { 1023 + name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; 1024 + url = "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; 1025 + sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; 1026 + }; 1027 + } 1028 + { 1029 + name = "core_js___core_js_2.6.11.tgz"; 1030 + path = fetchurl { 1031 + name = "core_js___core_js_2.6.11.tgz"; 1032 + url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz"; 1033 + sha1 = "38831469f9922bded8ee21c9dc46985e0399308c"; 1034 + }; 1035 + } 1036 + { 1037 + name = "core_util_is___core_util_is_1.0.2.tgz"; 1038 + path = fetchurl { 1039 + name = "core_util_is___core_util_is_1.0.2.tgz"; 1040 + url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; 1041 + sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 1042 + }; 1043 + } 1044 + { 1045 + name = "cosmiconfig___cosmiconfig_6.0.0.tgz"; 1046 + path = fetchurl { 1047 + name = "cosmiconfig___cosmiconfig_6.0.0.tgz"; 1048 + url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz"; 1049 + sha1 = "da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"; 1050 + }; 1051 + } 1052 + { 1053 + name = "create_emotion_styled___create_emotion_styled_9.2.8.tgz"; 1054 + path = fetchurl { 1055 + name = "create_emotion_styled___create_emotion_styled_9.2.8.tgz"; 1056 + url = "https://registry.yarnpkg.com/create-emotion-styled/-/create-emotion-styled-9.2.8.tgz"; 1057 + sha1 = "c0050e768ba439609bec108600467adf2de67cc3"; 1058 + }; 1059 + } 1060 + { 1061 + name = "create_emotion___create_emotion_9.2.12.tgz"; 1062 + path = fetchurl { 1063 + name = "create_emotion___create_emotion_9.2.12.tgz"; 1064 + url = "https://registry.yarnpkg.com/create-emotion/-/create-emotion-9.2.12.tgz"; 1065 + sha1 = "0fc8e7f92c4f8bb924b0fef6781f66b1d07cb26f"; 1066 + }; 1067 + } 1068 + { 1069 + name = "create_react_context___create_react_context_0.1.6.tgz"; 1070 + path = fetchurl { 1071 + name = "create_react_context___create_react_context_0.1.6.tgz"; 1072 + url = "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.1.6.tgz"; 1073 + sha1 = "0f425931d907741127acc6e31acb4f9015dd9fdc"; 1074 + }; 1075 + } 1076 + { 1077 + name = "csstype___csstype_2.6.10.tgz"; 1078 + path = fetchurl { 1079 + name = "csstype___csstype_2.6.10.tgz"; 1080 + url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz"; 1081 + sha1 = "e63af50e66d7c266edb6b32909cfd0aabe03928b"; 1082 + }; 1083 + } 1084 + { 1085 + name = "csstype___csstype_2.6.9.tgz"; 1086 + path = fetchurl { 1087 + name = "csstype___csstype_2.6.9.tgz"; 1088 + url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.9.tgz"; 1089 + sha1 = "05141d0cd557a56b8891394c1911c40c8a98d098"; 1090 + }; 1091 + } 1092 + { 1093 + name = "dashdash___dashdash_1.14.1.tgz"; 1094 + path = fetchurl { 1095 + name = "dashdash___dashdash_1.14.1.tgz"; 1096 + url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz"; 1097 + sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; 1098 + }; 1099 + } 1100 + { 1101 + name = "debug___debug_2.6.9.tgz"; 1102 + path = fetchurl { 1103 + name = "debug___debug_2.6.9.tgz"; 1104 + url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; 1105 + sha1 = "5d128515df134ff327e90a4c93f4e077a536341f"; 1106 + }; 1107 + } 1108 + { 1109 + name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 1110 + path = fetchurl { 1111 + name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 1112 + url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; 1113 + sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; 1114 + }; 1115 + } 1116 + { 1117 + name = "deep_is___deep_is_0.1.3.tgz"; 1118 + path = fetchurl { 1119 + name = "deep_is___deep_is_0.1.3.tgz"; 1120 + url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz"; 1121 + sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 1122 + }; 1123 + } 1124 + { 1125 + name = "define_properties___define_properties_1.1.3.tgz"; 1126 + path = fetchurl { 1127 + name = "define_properties___define_properties_1.1.3.tgz"; 1128 + url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz"; 1129 + sha1 = "cf88da6cbee26fe6db7094f61d870cbd84cee9f1"; 1130 + }; 1131 + } 1132 + { 1133 + name = "define_property___define_property_0.2.5.tgz"; 1134 + path = fetchurl { 1135 + name = "define_property___define_property_0.2.5.tgz"; 1136 + url = "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz"; 1137 + sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; 1138 + }; 1139 + } 1140 + { 1141 + name = "define_property___define_property_1.0.0.tgz"; 1142 + path = fetchurl { 1143 + name = "define_property___define_property_1.0.0.tgz"; 1144 + url = "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz"; 1145 + sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; 1146 + }; 1147 + } 1148 + { 1149 + name = "define_property___define_property_2.0.2.tgz"; 1150 + path = fetchurl { 1151 + name = "define_property___define_property_2.0.2.tgz"; 1152 + url = "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz"; 1153 + sha1 = "d459689e8d654ba77e02a817f8710d702cb16e9d"; 1154 + }; 1155 + } 1156 + { 1157 + name = "delayed_stream___delayed_stream_1.0.0.tgz"; 1158 + path = fetchurl { 1159 + name = "delayed_stream___delayed_stream_1.0.0.tgz"; 1160 + url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz"; 1161 + sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; 1162 + }; 1163 + } 1164 + { 1165 + name = "delegate___delegate_3.2.0.tgz"; 1166 + path = fetchurl { 1167 + name = "delegate___delegate_3.2.0.tgz"; 1168 + url = "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz"; 1169 + sha1 = "b66b71c3158522e8ab5744f720d8ca0c2af59166"; 1170 + }; 1171 + } 1172 + { 1173 + name = "depd___depd_1.1.2.tgz"; 1174 + path = fetchurl { 1175 + name = "depd___depd_1.1.2.tgz"; 1176 + url = "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz"; 1177 + sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; 1178 + }; 1179 + } 1180 + { 1181 + name = "destroy___destroy_1.0.4.tgz"; 1182 + path = fetchurl { 1183 + name = "destroy___destroy_1.0.4.tgz"; 1184 + url = "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz"; 1185 + sha1 = "978857442c44749e4206613e37946205826abd80"; 1186 + }; 1187 + } 1188 + { 1189 + name = "diff_match_patch___diff_match_patch_1.0.4.tgz"; 1190 + path = fetchurl { 1191 + name = "diff_match_patch___diff_match_patch_1.0.4.tgz"; 1192 + url = "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.4.tgz"; 1193 + sha1 = "6ac4b55237463761c4daf0dc603eb869124744b1"; 1194 + }; 1195 + } 1196 + { 1197 + name = "diff___diff_4.0.2.tgz"; 1198 + path = fetchurl { 1199 + name = "diff___diff_4.0.2.tgz"; 1200 + url = "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz"; 1201 + sha1 = "60f3aecb89d5fae520c11aa19efc2bb982aade7d"; 1202 + }; 1203 + } 1204 + { 1205 + name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz"; 1206 + path = fetchurl { 1207 + name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz"; 1208 + url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; 1209 + sha1 = "3a83a904e54353287874c564b7549386849a98c9"; 1210 + }; 1211 + } 1212 + { 1213 + name = "ee_first___ee_first_1.1.1.tgz"; 1214 + path = fetchurl { 1215 + name = "ee_first___ee_first_1.1.1.tgz"; 1216 + url = "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz"; 1217 + sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 1218 + }; 1219 + } 1220 + { 1221 + name = "emotion___emotion_9.2.12.tgz"; 1222 + path = fetchurl { 1223 + name = "emotion___emotion_9.2.12.tgz"; 1224 + url = "https://registry.yarnpkg.com/emotion/-/emotion-9.2.12.tgz"; 1225 + sha1 = "53925aaa005614e65c6e43db8243c843574d1ea9"; 1226 + }; 1227 + } 1228 + { 1229 + name = "encodeurl___encodeurl_1.0.2.tgz"; 1230 + path = fetchurl { 1231 + name = "encodeurl___encodeurl_1.0.2.tgz"; 1232 + url = "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz"; 1233 + sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; 1234 + }; 1235 + } 1236 + { 1237 + name = "error_ex___error_ex_1.3.2.tgz"; 1238 + path = fetchurl { 1239 + name = "error_ex___error_ex_1.3.2.tgz"; 1240 + url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; 1241 + sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf"; 1242 + }; 1243 + } 1244 + { 1245 + name = "es_abstract___es_abstract_1.17.6.tgz"; 1246 + path = fetchurl { 1247 + name = "es_abstract___es_abstract_1.17.6.tgz"; 1248 + url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz"; 1249 + sha1 = "9142071707857b2cacc7b89ecb670316c3e2d52a"; 1250 + }; 1251 + } 1252 + { 1253 + name = "es_to_primitive___es_to_primitive_1.2.1.tgz"; 1254 + path = fetchurl { 1255 + name = "es_to_primitive___es_to_primitive_1.2.1.tgz"; 1256 + url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; 1257 + sha1 = "e55cd4c9cdc188bcefb03b366c736323fc5c898a"; 1258 + }; 1259 + } 1260 + { 1261 + name = "es6_object_assign___es6_object_assign_1.1.0.tgz"; 1262 + path = fetchurl { 1263 + name = "es6_object_assign___es6_object_assign_1.1.0.tgz"; 1264 + url = "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz"; 1265 + sha1 = "c2c3582656247c39ea107cb1e6652b6f9f24523c"; 1266 + }; 1267 + } 1268 + { 1269 + name = "escape_html___escape_html_1.0.3.tgz"; 1270 + path = fetchurl { 1271 + name = "escape_html___escape_html_1.0.3.tgz"; 1272 + url = "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz"; 1273 + sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; 1274 + }; 1275 + } 1276 + { 1277 + name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 1278 + path = fetchurl { 1279 + name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 1280 + url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 1281 + sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 1282 + }; 1283 + } 1284 + { 1285 + name = "escodegen___escodegen_1.14.1.tgz"; 1286 + path = fetchurl { 1287 + name = "escodegen___escodegen_1.14.1.tgz"; 1288 + url = "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz"; 1289 + sha1 = "ba01d0c8278b5e95a9a45350142026659027a457"; 1290 + }; 1291 + } 1292 + { 1293 + name = "esprima___esprima_4.0.1.tgz"; 1294 + path = fetchurl { 1295 + name = "esprima___esprima_4.0.1.tgz"; 1296 + url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; 1297 + sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71"; 1298 + }; 1299 + } 1300 + { 1301 + name = "estraverse___estraverse_4.3.0.tgz"; 1302 + path = fetchurl { 1303 + name = "estraverse___estraverse_4.3.0.tgz"; 1304 + url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; 1305 + sha1 = "398ad3f3c5a24948be7725e83d11a7de28cdbd1d"; 1306 + }; 1307 + } 1308 + { 1309 + name = "esutils___esutils_2.0.3.tgz"; 1310 + path = fetchurl { 1311 + name = "esutils___esutils_2.0.3.tgz"; 1312 + url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz"; 1313 + sha1 = "74d2eb4de0b8da1293711910d50775b9b710ef64"; 1314 + }; 1315 + } 1316 + { 1317 + name = "etag___etag_1.8.1.tgz"; 1318 + path = fetchurl { 1319 + name = "etag___etag_1.8.1.tgz"; 1320 + url = "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz"; 1321 + sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; 1322 + }; 1323 + } 1324 + { 1325 + name = "exec_sh___exec_sh_0.2.2.tgz"; 1326 + path = fetchurl { 1327 + name = "exec_sh___exec_sh_0.2.2.tgz"; 1328 + url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz"; 1329 + sha1 = "2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36"; 1330 + }; 1331 + } 1332 + { 1333 + name = "expand_brackets___expand_brackets_0.1.5.tgz"; 1334 + path = fetchurl { 1335 + name = "expand_brackets___expand_brackets_0.1.5.tgz"; 1336 + url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz"; 1337 + sha1 = "df07284e342a807cd733ac5af72411e581d1177b"; 1338 + }; 1339 + } 1340 + { 1341 + name = "expand_brackets___expand_brackets_2.1.4.tgz"; 1342 + path = fetchurl { 1343 + name = "expand_brackets___expand_brackets_2.1.4.tgz"; 1344 + url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz"; 1345 + sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; 1346 + }; 1347 + } 1348 + { 1349 + name = "expand_range___expand_range_1.8.2.tgz"; 1350 + path = fetchurl { 1351 + name = "expand_range___expand_range_1.8.2.tgz"; 1352 + url = "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz"; 1353 + sha1 = "a299effd335fe2721ebae8e257ec79644fc85337"; 1354 + }; 1355 + } 1356 + { 1357 + name = "express___express_4.17.1.tgz"; 1358 + path = fetchurl { 1359 + name = "express___express_4.17.1.tgz"; 1360 + url = "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz"; 1361 + sha1 = "4491fc38605cf51f8629d39c2b5d026f98a4c134"; 1362 + }; 1363 + } 1364 + { 1365 + name = "extend_shallow___extend_shallow_2.0.1.tgz"; 1366 + path = fetchurl { 1367 + name = "extend_shallow___extend_shallow_2.0.1.tgz"; 1368 + url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz"; 1369 + sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; 1370 + }; 1371 + } 1372 + { 1373 + name = "extend_shallow___extend_shallow_3.0.2.tgz"; 1374 + path = fetchurl { 1375 + name = "extend_shallow___extend_shallow_3.0.2.tgz"; 1376 + url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz"; 1377 + sha1 = "26a71aaf073b39fb2127172746131c2704028db8"; 1378 + }; 1379 + } 1380 + { 1381 + name = "extend___extend_3.0.2.tgz"; 1382 + path = fetchurl { 1383 + name = "extend___extend_3.0.2.tgz"; 1384 + url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz"; 1385 + sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa"; 1386 + }; 1387 + } 1388 + { 1389 + name = "external_editor___external_editor_2.2.0.tgz"; 1390 + path = fetchurl { 1391 + name = "external_editor___external_editor_2.2.0.tgz"; 1392 + url = "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz"; 1393 + sha1 = "045511cfd8d133f3846673d1047c154e214ad3d5"; 1394 + }; 1395 + } 1396 + { 1397 + name = "extglob___extglob_0.3.2.tgz"; 1398 + path = fetchurl { 1399 + name = "extglob___extglob_0.3.2.tgz"; 1400 + url = "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz"; 1401 + sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1"; 1402 + }; 1403 + } 1404 + { 1405 + name = "extglob___extglob_2.0.4.tgz"; 1406 + path = fetchurl { 1407 + name = "extglob___extglob_2.0.4.tgz"; 1408 + url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz"; 1409 + sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543"; 1410 + }; 1411 + } 1412 + { 1413 + name = "extsprintf___extsprintf_1.3.0.tgz"; 1414 + path = fetchurl { 1415 + name = "extsprintf___extsprintf_1.3.0.tgz"; 1416 + url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz"; 1417 + sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; 1418 + }; 1419 + } 1420 + { 1421 + name = "extsprintf___extsprintf_1.4.0.tgz"; 1422 + path = fetchurl { 1423 + name = "extsprintf___extsprintf_1.4.0.tgz"; 1424 + url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz"; 1425 + sha1 = "e2689f8f356fad62cca65a3a91c5df5f9551692f"; 1426 + }; 1427 + } 1428 + { 1429 + name = "fast_deep_equal___fast_deep_equal_3.1.1.tgz"; 1430 + path = fetchurl { 1431 + name = "fast_deep_equal___fast_deep_equal_3.1.1.tgz"; 1432 + url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz"; 1433 + sha1 = "545145077c501491e33b15ec408c294376e94ae4"; 1434 + }; 1435 + } 1436 + { 1437 + name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; 1438 + path = fetchurl { 1439 + name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; 1440 + url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 1441 + sha1 = "874bf69c6f404c2b5d99c481341399fd55892633"; 1442 + }; 1443 + } 1444 + { 1445 + name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 1446 + path = fetchurl { 1447 + name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; 1448 + url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 1449 + sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; 1450 + }; 1451 + } 1452 + { 1453 + name = "fast_xml_parser___fast_xml_parser_3.17.1.tgz"; 1454 + path = fetchurl { 1455 + name = "fast_xml_parser___fast_xml_parser_3.17.1.tgz"; 1456 + url = "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.17.1.tgz"; 1457 + sha1 = "579fa64346cc891ce240d378268c6216e74aab10"; 1458 + }; 1459 + } 1460 + { 1461 + name = "figures___figures_2.0.0.tgz"; 1462 + path = fetchurl { 1463 + name = "figures___figures_2.0.0.tgz"; 1464 + url = "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz"; 1465 + sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; 1466 + }; 1467 + } 1468 + { 1469 + name = "file_match___file_match_1.0.2.tgz"; 1470 + path = fetchurl { 1471 + name = "file_match___file_match_1.0.2.tgz"; 1472 + url = "https://registry.yarnpkg.com/file-match/-/file-match-1.0.2.tgz"; 1473 + sha1 = "c9cad265d2c8adf3a81475b0df475859069faef7"; 1474 + }; 1475 + } 1476 + { 1477 + name = "file_system___file_system_2.2.2.tgz"; 1478 + path = fetchurl { 1479 + name = "file_system___file_system_2.2.2.tgz"; 1480 + url = "https://registry.yarnpkg.com/file-system/-/file-system-2.2.2.tgz"; 1481 + sha1 = "7d65833e3a2347dcd956a813c677153ed3edd987"; 1482 + }; 1483 + } 1484 + { 1485 + name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz"; 1486 + path = fetchurl { 1487 + name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz"; 1488 + url = "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz"; 1489 + sha1 = "553a7b8446ff6f684359c445f1e37a05dacc33dd"; 1490 + }; 1491 + } 1492 + { 1493 + name = "filename_regex___filename_regex_2.0.1.tgz"; 1494 + path = fetchurl { 1495 + name = "filename_regex___filename_regex_2.0.1.tgz"; 1496 + url = "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz"; 1497 + sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"; 1498 + }; 1499 + } 1500 + { 1501 + name = "fill_range___fill_range_2.2.4.tgz"; 1502 + path = fetchurl { 1503 + name = "fill_range___fill_range_2.2.4.tgz"; 1504 + url = "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz"; 1505 + sha1 = "eb1e773abb056dcd8df2bfdf6af59b8b3a936565"; 1506 + }; 1507 + } 1508 + { 1509 + name = "fill_range___fill_range_4.0.0.tgz"; 1510 + path = fetchurl { 1511 + name = "fill_range___fill_range_4.0.0.tgz"; 1512 + url = "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz"; 1513 + sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; 1514 + }; 1515 + } 1516 + { 1517 + name = "finalhandler___finalhandler_1.1.2.tgz"; 1518 + path = fetchurl { 1519 + name = "finalhandler___finalhandler_1.1.2.tgz"; 1520 + url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz"; 1521 + sha1 = "b7e7d000ffd11938d0fdb053506f6ebabe9f587d"; 1522 + }; 1523 + } 1524 + { 1525 + name = "find_root___find_root_1.1.0.tgz"; 1526 + path = fetchurl { 1527 + name = "find_root___find_root_1.1.0.tgz"; 1528 + url = "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz"; 1529 + sha1 = "abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"; 1530 + }; 1531 + } 1532 + { 1533 + name = "fliplog___fliplog_0.3.13.tgz"; 1534 + path = fetchurl { 1535 + name = "fliplog___fliplog_0.3.13.tgz"; 1536 + url = "https://registry.yarnpkg.com/fliplog/-/fliplog-0.3.13.tgz"; 1537 + sha1 = "dd0d786e821822aae272e0ddc84012596a96154c"; 1538 + }; 1539 + } 1540 + { 1541 + name = "for_in___for_in_1.0.2.tgz"; 1542 + path = fetchurl { 1543 + name = "for_in___for_in_1.0.2.tgz"; 1544 + url = "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz"; 1545 + sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; 1546 + }; 1547 + } 1548 + { 1549 + name = "for_own___for_own_0.1.5.tgz"; 1550 + path = fetchurl { 1551 + name = "for_own___for_own_0.1.5.tgz"; 1552 + url = "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz"; 1553 + sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce"; 1554 + }; 1555 + } 1556 + { 1557 + name = "forever_agent___forever_agent_0.6.1.tgz"; 1558 + path = fetchurl { 1559 + name = "forever_agent___forever_agent_0.6.1.tgz"; 1560 + url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz"; 1561 + sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; 1562 + }; 1563 + } 1564 + { 1565 + name = "form_data___form_data_2.3.3.tgz"; 1566 + path = fetchurl { 1567 + name = "form_data___form_data_2.3.3.tgz"; 1568 + url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz"; 1569 + sha1 = "dcce52c05f644f298c6a7ab936bd724ceffbf3a6"; 1570 + }; 1571 + } 1572 + { 1573 + name = "forwarded___forwarded_0.1.2.tgz"; 1574 + path = fetchurl { 1575 + name = "forwarded___forwarded_0.1.2.tgz"; 1576 + url = "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz"; 1577 + sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; 1578 + }; 1579 + } 1580 + { 1581 + name = "fragment_cache___fragment_cache_0.2.1.tgz"; 1582 + path = fetchurl { 1583 + name = "fragment_cache___fragment_cache_0.2.1.tgz"; 1584 + url = "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz"; 1585 + sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; 1586 + }; 1587 + } 1588 + { 1589 + name = "fresh___fresh_0.5.2.tgz"; 1590 + path = fetchurl { 1591 + name = "fresh___fresh_0.5.2.tgz"; 1592 + url = "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz"; 1593 + sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; 1594 + }; 1595 + } 1596 + { 1597 + name = "fs_extra___fs_extra_7.0.1.tgz"; 1598 + path = fetchurl { 1599 + name = "fs_extra___fs_extra_7.0.1.tgz"; 1600 + url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz"; 1601 + sha1 = "4f189c44aa123b895f722804f55ea23eadc348e9"; 1602 + }; 1603 + } 1604 + { 1605 + name = "fs.realpath___fs.realpath_1.0.0.tgz"; 1606 + path = fetchurl { 1607 + name = "fs.realpath___fs.realpath_1.0.0.tgz"; 1608 + url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; 1609 + sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 1610 + }; 1611 + } 1612 + { 1613 + name = "fsevents___fsevents_1.2.11.tgz"; 1614 + path = fetchurl { 1615 + name = "fsevents___fsevents_1.2.11.tgz"; 1616 + url = "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.11.tgz"; 1617 + sha1 = "67bf57f4758f02ede88fb2a1712fef4d15358be3"; 1618 + }; 1619 + } 1620 + { 1621 + name = "fstream___fstream_0.1.31.tgz"; 1622 + path = fetchurl { 1623 + name = "fstream___fstream_0.1.31.tgz"; 1624 + url = "https://registry.yarnpkg.com/fstream/-/fstream-0.1.31.tgz"; 1625 + sha1 = "7337f058fbbbbefa8c9f561a28cab0849202c988"; 1626 + }; 1627 + } 1628 + { 1629 + name = "function_bind___function_bind_1.1.1.tgz"; 1630 + path = fetchurl { 1631 + name = "function_bind___function_bind_1.1.1.tgz"; 1632 + url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; 1633 + sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d"; 1634 + }; 1635 + } 1636 + { 1637 + name = "fuse_box___fuse_box_3.7.1.tgz"; 1638 + path = fetchurl { 1639 + name = "fuse_box___fuse_box_3.7.1.tgz"; 1640 + url = "https://registry.yarnpkg.com/fuse-box/-/fuse-box-3.7.1.tgz"; 1641 + sha1 = "d32879ceee4c8bcec9bbd8fcfe5b29e7142371cd"; 1642 + }; 1643 + } 1644 + { 1645 + name = "fuse_concat_with_sourcemaps___fuse_concat_with_sourcemaps_1.0.5.tgz"; 1646 + path = fetchurl { 1647 + name = "fuse_concat_with_sourcemaps___fuse_concat_with_sourcemaps_1.0.5.tgz"; 1648 + url = "https://registry.yarnpkg.com/fuse-concat-with-sourcemaps/-/fuse-concat-with-sourcemaps-1.0.5.tgz"; 1649 + sha1 = "9c6a521f675cff5cdbb48db1ca9c181ae49a7b97"; 1650 + }; 1651 + } 1652 + { 1653 + name = "fuse.js___fuse.js_6.0.4.tgz"; 1654 + path = fetchurl { 1655 + name = "fuse.js___fuse.js_6.0.4.tgz"; 1656 + url = "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.0.4.tgz"; 1657 + sha1 = "9f5af976f836247ad5d2c338090d6ce13cf9a4d2"; 1658 + }; 1659 + } 1660 + { 1661 + name = "get_caller_file___get_caller_file_1.0.3.tgz"; 1662 + path = fetchurl { 1663 + name = "get_caller_file___get_caller_file_1.0.3.tgz"; 1664 + url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz"; 1665 + sha1 = "f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"; 1666 + }; 1667 + } 1668 + { 1669 + name = "get_value___get_value_2.0.6.tgz"; 1670 + path = fetchurl { 1671 + name = "get_value___get_value_2.0.6.tgz"; 1672 + url = "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz"; 1673 + sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; 1674 + }; 1675 + } 1676 + { 1677 + name = "getopts___getopts_2.2.5.tgz"; 1678 + path = fetchurl { 1679 + name = "getopts___getopts_2.2.5.tgz"; 1680 + url = "https://registry.yarnpkg.com/getopts/-/getopts-2.2.5.tgz"; 1681 + sha1 = "67a0fe471cacb9c687d817cab6450b96dde8313b"; 1682 + }; 1683 + } 1684 + { 1685 + name = "getpass___getpass_0.1.7.tgz"; 1686 + path = fetchurl { 1687 + name = "getpass___getpass_0.1.7.tgz"; 1688 + url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz"; 1689 + sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 1690 + }; 1691 + } 1692 + { 1693 + name = "glob_base___glob_base_0.3.0.tgz"; 1694 + path = fetchurl { 1695 + name = "glob_base___glob_base_0.3.0.tgz"; 1696 + url = "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz"; 1697 + sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"; 1698 + }; 1699 + } 1700 + { 1701 + name = "glob_parent___glob_parent_2.0.0.tgz"; 1702 + path = fetchurl { 1703 + name = "glob_parent___glob_parent_2.0.0.tgz"; 1704 + url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz"; 1705 + sha1 = "81383d72db054fcccf5336daa902f182f6edbb28"; 1706 + }; 1707 + } 1708 + { 1709 + name = "glob___glob_7.1.6.tgz"; 1710 + path = fetchurl { 1711 + name = "glob___glob_7.1.6.tgz"; 1712 + url = "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz"; 1713 + sha1 = "141f33b81a7c2492e125594307480c46679278a6"; 1714 + }; 1715 + } 1716 + { 1717 + name = "good_listener___good_listener_1.2.2.tgz"; 1718 + path = fetchurl { 1719 + name = "good_listener___good_listener_1.2.2.tgz"; 1720 + url = "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz"; 1721 + sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50"; 1722 + }; 1723 + } 1724 + { 1725 + name = "graceful_fs___graceful_fs_4.2.3.tgz"; 1726 + path = fetchurl { 1727 + name = "graceful_fs___graceful_fs_4.2.3.tgz"; 1728 + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz"; 1729 + sha1 = "4a12ff1b60376ef09862c2093edd908328be8423"; 1730 + }; 1731 + } 1732 + { 1733 + name = "graceful_fs___graceful_fs_3.0.12.tgz"; 1734 + path = fetchurl { 1735 + name = "graceful_fs___graceful_fs_3.0.12.tgz"; 1736 + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.12.tgz"; 1737 + sha1 = "0034947ce9ed695ec8ab0b854bc919e82b1ffaef"; 1738 + }; 1739 + } 1740 + { 1741 + name = "har_schema___har_schema_2.0.0.tgz"; 1742 + path = fetchurl { 1743 + name = "har_schema___har_schema_2.0.0.tgz"; 1744 + url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz"; 1745 + sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; 1746 + }; 1747 + } 1748 + { 1749 + name = "har_validator___har_validator_5.1.3.tgz"; 1750 + path = fetchurl { 1751 + name = "har_validator___har_validator_5.1.3.tgz"; 1752 + url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz"; 1753 + sha1 = "1ef89ebd3e4996557675eed9893110dc350fa080"; 1754 + }; 1755 + } 1756 + { 1757 + name = "has_flag___has_flag_3.0.0.tgz"; 1758 + path = fetchurl { 1759 + name = "has_flag___has_flag_3.0.0.tgz"; 1760 + url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; 1761 + sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 1762 + }; 1763 + } 1764 + { 1765 + name = "has_symbols___has_symbols_1.0.1.tgz"; 1766 + path = fetchurl { 1767 + name = "has_symbols___has_symbols_1.0.1.tgz"; 1768 + url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz"; 1769 + sha1 = "9f5214758a44196c406d9bd76cebf81ec2dd31e8"; 1770 + }; 1771 + } 1772 + { 1773 + name = "has_value___has_value_0.3.1.tgz"; 1774 + path = fetchurl { 1775 + name = "has_value___has_value_0.3.1.tgz"; 1776 + url = "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz"; 1777 + sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; 1778 + }; 1779 + } 1780 + { 1781 + name = "has_value___has_value_1.0.0.tgz"; 1782 + path = fetchurl { 1783 + name = "has_value___has_value_1.0.0.tgz"; 1784 + url = "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz"; 1785 + sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177"; 1786 + }; 1787 + } 1788 + { 1789 + name = "has_values___has_values_0.1.4.tgz"; 1790 + path = fetchurl { 1791 + name = "has_values___has_values_0.1.4.tgz"; 1792 + url = "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz"; 1793 + sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; 1794 + }; 1795 + } 1796 + { 1797 + name = "has_values___has_values_1.0.0.tgz"; 1798 + path = fetchurl { 1799 + name = "has_values___has_values_1.0.0.tgz"; 1800 + url = "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz"; 1801 + sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; 1802 + }; 1803 + } 1804 + { 1805 + name = "has___has_1.0.3.tgz"; 1806 + path = fetchurl { 1807 + name = "has___has_1.0.3.tgz"; 1808 + url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; 1809 + sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796"; 1810 + }; 1811 + } 1812 + { 1813 + name = "html___html_1.0.0.tgz"; 1814 + path = fetchurl { 1815 + name = "html___html_1.0.0.tgz"; 1816 + url = "https://registry.yarnpkg.com/html/-/html-1.0.0.tgz"; 1817 + sha1 = "a544fa9ea5492bfb3a2cca8210a10be7b5af1f61"; 1818 + }; 1819 + } 1820 + { 1821 + name = "http_errors___http_errors_1.7.2.tgz"; 1822 + path = fetchurl { 1823 + name = "http_errors___http_errors_1.7.2.tgz"; 1824 + url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz"; 1825 + sha1 = "4f5029cf13239f31036e5b2e55292bcfbcc85c8f"; 1826 + }; 1827 + } 1828 + { 1829 + name = "http_errors___http_errors_1.7.3.tgz"; 1830 + path = fetchurl { 1831 + name = "http_errors___http_errors_1.7.3.tgz"; 1832 + url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz"; 1833 + sha1 = "6c619e4f9c60308c38519498c14fbb10aacebb06"; 1834 + }; 1835 + } 1836 + { 1837 + name = "http_signature___http_signature_1.2.0.tgz"; 1838 + path = fetchurl { 1839 + name = "http_signature___http_signature_1.2.0.tgz"; 1840 + url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz"; 1841 + sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 1842 + }; 1843 + } 1844 + { 1845 + name = "iconv_lite___iconv_lite_0.4.24.tgz"; 1846 + path = fetchurl { 1847 + name = "iconv_lite___iconv_lite_0.4.24.tgz"; 1848 + url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"; 1849 + sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b"; 1850 + }; 1851 + } 1852 + { 1853 + name = "ie_array_find_polyfill___ie_array_find_polyfill_1.1.0.tgz"; 1854 + path = fetchurl { 1855 + name = "ie_array_find_polyfill___ie_array_find_polyfill_1.1.0.tgz"; 1856 + url = "https://registry.yarnpkg.com/ie-array-find-polyfill/-/ie-array-find-polyfill-1.1.0.tgz"; 1857 + sha1 = "5078e533f026831da22bd7476513d9460d65a142"; 1858 + }; 1859 + } 1860 + { 1861 + name = "ieee754___ieee754_1.1.13.tgz"; 1862 + path = fetchurl { 1863 + name = "ieee754___ieee754_1.1.13.tgz"; 1864 + url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz"; 1865 + sha1 = "ec168558e95aa181fd87d37f55c32bbcb6708b84"; 1866 + }; 1867 + } 1868 + { 1869 + name = "import_fresh___import_fresh_3.2.1.tgz"; 1870 + path = fetchurl { 1871 + name = "import_fresh___import_fresh_3.2.1.tgz"; 1872 + url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz"; 1873 + sha1 = "633ff618506e793af5ac91bf48b72677e15cbe66"; 1874 + }; 1875 + } 1876 + { 1877 + name = "inflight___inflight_1.0.6.tgz"; 1878 + path = fetchurl { 1879 + name = "inflight___inflight_1.0.6.tgz"; 1880 + url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; 1881 + sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 1882 + }; 1883 + } 1884 + { 1885 + name = "inherits___inherits_2.0.4.tgz"; 1886 + path = fetchurl { 1887 + name = "inherits___inherits_2.0.4.tgz"; 1888 + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; 1889 + sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c"; 1890 + }; 1891 + } 1892 + { 1893 + name = "inherits___inherits_2.0.3.tgz"; 1894 + path = fetchurl { 1895 + name = "inherits___inherits_2.0.3.tgz"; 1896 + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; 1897 + sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 1898 + }; 1899 + } 1900 + { 1901 + name = "inquirer___inquirer_3.3.0.tgz"; 1902 + path = fetchurl { 1903 + name = "inquirer___inquirer_3.3.0.tgz"; 1904 + url = "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz"; 1905 + sha1 = "9dd2f2ad765dcab1ff0443b491442a20ba227dc9"; 1906 + }; 1907 + } 1908 + { 1909 + name = "ipaddr.js___ipaddr.js_1.9.1.tgz"; 1910 + path = fetchurl { 1911 + name = "ipaddr.js___ipaddr.js_1.9.1.tgz"; 1912 + url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz"; 1913 + sha1 = "bff38543eeb8984825079ff3a2a8e6cbd46781b3"; 1914 + }; 1915 + } 1916 + { 1917 + name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; 1918 + path = fetchurl { 1919 + name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; 1920 + url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; 1921 + sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; 1922 + }; 1923 + } 1924 + { 1925 + name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; 1926 + path = fetchurl { 1927 + name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; 1928 + url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; 1929 + sha1 = "169c2f6d3df1f992618072365c9b0ea1f6878656"; 1930 + }; 1931 + } 1932 + { 1933 + name = "is_arrayish___is_arrayish_0.2.1.tgz"; 1934 + path = fetchurl { 1935 + name = "is_arrayish___is_arrayish_0.2.1.tgz"; 1936 + url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; 1937 + sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; 1938 + }; 1939 + } 1940 + { 1941 + name = "is_binary_path___is_binary_path_1.0.1.tgz"; 1942 + path = fetchurl { 1943 + name = "is_binary_path___is_binary_path_1.0.1.tgz"; 1944 + url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz"; 1945 + sha1 = "75f16642b480f187a711c814161fd3a4a7655898"; 1946 + }; 1947 + } 1948 + { 1949 + name = "is_buffer___is_buffer_1.1.6.tgz"; 1950 + path = fetchurl { 1951 + name = "is_buffer___is_buffer_1.1.6.tgz"; 1952 + url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz"; 1953 + sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"; 1954 + }; 1955 + } 1956 + { 1957 + name = "is_callable___is_callable_1.2.0.tgz"; 1958 + path = fetchurl { 1959 + name = "is_callable___is_callable_1.2.0.tgz"; 1960 + url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz"; 1961 + sha1 = "83336560b54a38e35e3a2df7afd0454d691468bb"; 1962 + }; 1963 + } 1964 + { 1965 + name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; 1966 + path = fetchurl { 1967 + name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; 1968 + url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; 1969 + sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; 1970 + }; 1971 + } 1972 + { 1973 + name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; 1974 + path = fetchurl { 1975 + name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; 1976 + url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; 1977 + sha1 = "d84876321d0e7add03990406abbbbd36ba9268c7"; 1978 + }; 1979 + } 1980 + { 1981 + name = "is_date_object___is_date_object_1.0.2.tgz"; 1982 + path = fetchurl { 1983 + name = "is_date_object___is_date_object_1.0.2.tgz"; 1984 + url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz"; 1985 + sha1 = "bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"; 1986 + }; 1987 + } 1988 + { 1989 + name = "is_descriptor___is_descriptor_0.1.6.tgz"; 1990 + path = fetchurl { 1991 + name = "is_descriptor___is_descriptor_0.1.6.tgz"; 1992 + url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz"; 1993 + sha1 = "366d8240dde487ca51823b1ab9f07a10a78251ca"; 1994 + }; 1995 + } 1996 + { 1997 + name = "is_descriptor___is_descriptor_1.0.2.tgz"; 1998 + path = fetchurl { 1999 + name = "is_descriptor___is_descriptor_1.0.2.tgz"; 2000 + url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz"; 2001 + sha1 = "3b159746a66604b04f8c81524ba365c5f14d86ec"; 2002 + }; 2003 + } 2004 + { 2005 + name = "is_dotfile___is_dotfile_1.0.3.tgz"; 2006 + path = fetchurl { 2007 + name = "is_dotfile___is_dotfile_1.0.3.tgz"; 2008 + url = "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz"; 2009 + sha1 = "a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"; 2010 + }; 2011 + } 2012 + { 2013 + name = "is_equal_shallow___is_equal_shallow_0.1.3.tgz"; 2014 + path = fetchurl { 2015 + name = "is_equal_shallow___is_equal_shallow_0.1.3.tgz"; 2016 + url = "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz"; 2017 + sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534"; 2018 + }; 2019 + } 2020 + { 2021 + name = "is_extendable___is_extendable_0.1.1.tgz"; 2022 + path = fetchurl { 2023 + name = "is_extendable___is_extendable_0.1.1.tgz"; 2024 + url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz"; 2025 + sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; 2026 + }; 2027 + } 2028 + { 2029 + name = "is_extendable___is_extendable_1.0.1.tgz"; 2030 + path = fetchurl { 2031 + name = "is_extendable___is_extendable_1.0.1.tgz"; 2032 + url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz"; 2033 + sha1 = "a7470f9e426733d81bd81e1155264e3a3507cab4"; 2034 + }; 2035 + } 2036 + { 2037 + name = "is_extglob___is_extglob_1.0.0.tgz"; 2038 + path = fetchurl { 2039 + name = "is_extglob___is_extglob_1.0.0.tgz"; 2040 + url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz"; 2041 + sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0"; 2042 + }; 2043 + } 2044 + { 2045 + name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; 2046 + path = fetchurl { 2047 + name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; 2048 + url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 2049 + sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 2050 + }; 2051 + } 2052 + { 2053 + name = "is_glob___is_glob_2.0.1.tgz"; 2054 + path = fetchurl { 2055 + name = "is_glob___is_glob_2.0.1.tgz"; 2056 + url = "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz"; 2057 + sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863"; 2058 + }; 2059 + } 2060 + { 2061 + name = "is_number___is_number_2.1.0.tgz"; 2062 + path = fetchurl { 2063 + name = "is_number___is_number_2.1.0.tgz"; 2064 + url = "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz"; 2065 + sha1 = "01fcbbb393463a548f2f466cce16dece49db908f"; 2066 + }; 2067 + } 2068 + { 2069 + name = "is_number___is_number_3.0.0.tgz"; 2070 + path = fetchurl { 2071 + name = "is_number___is_number_3.0.0.tgz"; 2072 + url = "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz"; 2073 + sha1 = "24fd6201a4782cf50561c810276afc7d12d71195"; 2074 + }; 2075 + } 2076 + { 2077 + name = "is_number___is_number_4.0.0.tgz"; 2078 + path = fetchurl { 2079 + name = "is_number___is_number_4.0.0.tgz"; 2080 + url = "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz"; 2081 + sha1 = "0026e37f5454d73e356dfe6564699867c6a7f0ff"; 2082 + }; 2083 + } 2084 + { 2085 + name = "is_plain_object___is_plain_object_2.0.4.tgz"; 2086 + path = fetchurl { 2087 + name = "is_plain_object___is_plain_object_2.0.4.tgz"; 2088 + url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz"; 2089 + sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677"; 2090 + }; 2091 + } 2092 + { 2093 + name = "is_posix_bracket___is_posix_bracket_0.1.1.tgz"; 2094 + path = fetchurl { 2095 + name = "is_posix_bracket___is_posix_bracket_0.1.1.tgz"; 2096 + url = "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz"; 2097 + sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"; 2098 + }; 2099 + } 2100 + { 2101 + name = "is_primitive___is_primitive_2.0.0.tgz"; 2102 + path = fetchurl { 2103 + name = "is_primitive___is_primitive_2.0.0.tgz"; 2104 + url = "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz"; 2105 + sha1 = "207bab91638499c07b2adf240a41a87210034575"; 2106 + }; 2107 + } 2108 + { 2109 + name = "is_promise___is_promise_2.1.0.tgz"; 2110 + path = fetchurl { 2111 + name = "is_promise___is_promise_2.1.0.tgz"; 2112 + url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz"; 2113 + sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"; 2114 + }; 2115 + } 2116 + { 2117 + name = "is_regex___is_regex_1.1.0.tgz"; 2118 + path = fetchurl { 2119 + name = "is_regex___is_regex_1.1.0.tgz"; 2120 + url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz"; 2121 + sha1 = "ece38e389e490df0dc21caea2bd596f987f767ff"; 2122 + }; 2123 + } 2124 + { 2125 + name = "is_symbol___is_symbol_1.0.3.tgz"; 2126 + path = fetchurl { 2127 + name = "is_symbol___is_symbol_1.0.3.tgz"; 2128 + url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz"; 2129 + sha1 = "38e1014b9e6329be0de9d24a414fd7441ec61937"; 2130 + }; 2131 + } 2132 + { 2133 + name = "is_typedarray___is_typedarray_1.0.0.tgz"; 2134 + path = fetchurl { 2135 + name = "is_typedarray___is_typedarray_1.0.0.tgz"; 2136 + url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz"; 2137 + sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; 2138 + }; 2139 + } 2140 + { 2141 + name = "is_windows___is_windows_1.0.2.tgz"; 2142 + path = fetchurl { 2143 + name = "is_windows___is_windows_1.0.2.tgz"; 2144 + url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz"; 2145 + sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d"; 2146 + }; 2147 + } 2148 + { 2149 + name = "isarray___isarray_0.0.1.tgz"; 2150 + path = fetchurl { 2151 + name = "isarray___isarray_0.0.1.tgz"; 2152 + url = "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz"; 2153 + sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; 2154 + }; 2155 + } 2156 + { 2157 + name = "isarray___isarray_1.0.0.tgz"; 2158 + path = fetchurl { 2159 + name = "isarray___isarray_1.0.0.tgz"; 2160 + url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; 2161 + sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 2162 + }; 2163 + } 2164 + { 2165 + name = "isobject___isobject_2.1.0.tgz"; 2166 + path = fetchurl { 2167 + name = "isobject___isobject_2.1.0.tgz"; 2168 + url = "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz"; 2169 + sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89"; 2170 + }; 2171 + } 2172 + { 2173 + name = "isobject___isobject_3.0.1.tgz"; 2174 + path = fetchurl { 2175 + name = "isobject___isobject_3.0.1.tgz"; 2176 + url = "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz"; 2177 + sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; 2178 + }; 2179 + } 2180 + { 2181 + name = "isstream___isstream_0.1.2.tgz"; 2182 + path = fetchurl { 2183 + name = "isstream___isstream_0.1.2.tgz"; 2184 + url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz"; 2185 + sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; 2186 + }; 2187 + } 2188 + { 2189 + name = "js_tokens___js_tokens_4.0.0.tgz"; 2190 + path = fetchurl { 2191 + name = "js_tokens___js_tokens_4.0.0.tgz"; 2192 + url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; 2193 + sha1 = "19203fb59991df98e3a287050d4647cdeaf32499"; 2194 + }; 2195 + } 2196 + { 2197 + name = "js_yaml___js_yaml_3.13.1.tgz"; 2198 + path = fetchurl { 2199 + name = "js_yaml___js_yaml_3.13.1.tgz"; 2200 + url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz"; 2201 + sha1 = "aff151b30bfdfa8e49e05da22e7415e9dfa37847"; 2202 + }; 2203 + } 2204 + { 2205 + name = "jsbn___jsbn_0.1.1.tgz"; 2206 + path = fetchurl { 2207 + name = "jsbn___jsbn_0.1.1.tgz"; 2208 + url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz"; 2209 + sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; 2210 + }; 2211 + } 2212 + { 2213 + name = "jsesc___jsesc_0.5.0.tgz"; 2214 + path = fetchurl { 2215 + name = "jsesc___jsesc_0.5.0.tgz"; 2216 + url = "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz"; 2217 + sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; 2218 + }; 2219 + } 2220 + { 2221 + name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; 2222 + path = fetchurl { 2223 + name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; 2224 + url = "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"; 2225 + sha1 = "bb867cfb3450e69107c131d1c514bab3dc8bcaa9"; 2226 + }; 2227 + } 2228 + { 2229 + name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; 2230 + path = fetchurl { 2231 + name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; 2232 + url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; 2233 + sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660"; 2234 + }; 2235 + } 2236 + { 2237 + name = "json_schema___json_schema_0.2.3.tgz"; 2238 + path = fetchurl { 2239 + name = "json_schema___json_schema_0.2.3.tgz"; 2240 + url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz"; 2241 + sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; 2242 + }; 2243 + } 2244 + { 2245 + name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; 2246 + path = fetchurl { 2247 + name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; 2248 + url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; 2249 + sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 2250 + }; 2251 + } 2252 + { 2253 + name = "jsondiffpatch___jsondiffpatch_0.3.11.tgz"; 2254 + path = fetchurl { 2255 + name = "jsondiffpatch___jsondiffpatch_0.3.11.tgz"; 2256 + url = "https://registry.yarnpkg.com/jsondiffpatch/-/jsondiffpatch-0.3.11.tgz"; 2257 + sha1 = "43f9443a0d081b5f79d413fe20f302079e493201"; 2258 + }; 2259 + } 2260 + { 2261 + name = "jsonfile___jsonfile_4.0.0.tgz"; 2262 + path = fetchurl { 2263 + name = "jsonfile___jsonfile_4.0.0.tgz"; 2264 + url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz"; 2265 + sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; 2266 + }; 2267 + } 2268 + { 2269 + name = "jsprim___jsprim_1.4.1.tgz"; 2270 + path = fetchurl { 2271 + name = "jsprim___jsprim_1.4.1.tgz"; 2272 + url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz"; 2273 + sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; 2274 + }; 2275 + } 2276 + { 2277 + name = "kind_of___kind_of_3.2.2.tgz"; 2278 + path = fetchurl { 2279 + name = "kind_of___kind_of_3.2.2.tgz"; 2280 + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz"; 2281 + sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; 2282 + }; 2283 + } 2284 + { 2285 + name = "kind_of___kind_of_4.0.0.tgz"; 2286 + path = fetchurl { 2287 + name = "kind_of___kind_of_4.0.0.tgz"; 2288 + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz"; 2289 + sha1 = "20813df3d712928b207378691a45066fae72dd57"; 2290 + }; 2291 + } 2292 + { 2293 + name = "kind_of___kind_of_5.1.0.tgz"; 2294 + path = fetchurl { 2295 + name = "kind_of___kind_of_5.1.0.tgz"; 2296 + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz"; 2297 + sha1 = "729c91e2d857b7a419a1f9aa65685c4c33f5845d"; 2298 + }; 2299 + } 2300 + { 2301 + name = "kind_of___kind_of_6.0.3.tgz"; 2302 + path = fetchurl { 2303 + name = "kind_of___kind_of_6.0.3.tgz"; 2304 + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz"; 2305 + sha1 = "07c05034a6c349fa06e24fa35aa76db4580ce4dd"; 2306 + }; 2307 + } 2308 + { 2309 + name = "lego_api___lego_api_1.0.8.tgz"; 2310 + path = fetchurl { 2311 + name = "lego_api___lego_api_1.0.8.tgz"; 2312 + url = "https://registry.yarnpkg.com/lego-api/-/lego-api-1.0.8.tgz"; 2313 + sha1 = "5e26be726c5e11d540f89e7c6b1abf8c5834bd01"; 2314 + }; 2315 + } 2316 + { 2317 + name = "levn___levn_0.3.0.tgz"; 2318 + path = fetchurl { 2319 + name = "levn___levn_0.3.0.tgz"; 2320 + url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; 2321 + sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; 2322 + }; 2323 + } 2324 + { 2325 + name = "lines_and_columns___lines_and_columns_1.1.6.tgz"; 2326 + path = fetchurl { 2327 + name = "lines_and_columns___lines_and_columns_1.1.6.tgz"; 2328 + url = "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz"; 2329 + sha1 = "1c00c743b433cd0a4e80758f7b64a57440d9ff00"; 2330 + }; 2331 + } 2332 + { 2333 + name = "lodash._getnative___lodash._getnative_3.9.1.tgz"; 2334 + path = fetchurl { 2335 + name = "lodash._getnative___lodash._getnative_3.9.1.tgz"; 2336 + url = "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz"; 2337 + sha1 = "570bc7dede46d61cdcde687d65d3eecbaa3aaff5"; 2338 + }; 2339 + } 2340 + { 2341 + name = "lodash.curry___lodash.curry_4.1.1.tgz"; 2342 + path = fetchurl { 2343 + name = "lodash.curry___lodash.curry_4.1.1.tgz"; 2344 + url = "https://registry.yarnpkg.com/lodash.curry/-/lodash.curry-4.1.1.tgz"; 2345 + sha1 = "248e36072ede906501d75966200a86dab8b23170"; 2346 + }; 2347 + } 2348 + { 2349 + name = "lodash.debounce___lodash.debounce_3.1.1.tgz"; 2350 + path = fetchurl { 2351 + name = "lodash.debounce___lodash.debounce_3.1.1.tgz"; 2352 + url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-3.1.1.tgz"; 2353 + sha1 = "812211c378a94cc29d5aa4e3346cf0bfce3a7df5"; 2354 + }; 2355 + } 2356 + { 2357 + name = "lodash.debounce___lodash.debounce_4.0.8.tgz"; 2358 + path = fetchurl { 2359 + name = "lodash.debounce___lodash.debounce_4.0.8.tgz"; 2360 + url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; 2361 + sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; 2362 + }; 2363 + } 2364 + { 2365 + name = "lodash.flow___lodash.flow_3.5.0.tgz"; 2366 + path = fetchurl { 2367 + name = "lodash.flow___lodash.flow_3.5.0.tgz"; 2368 + url = "https://registry.yarnpkg.com/lodash.flow/-/lodash.flow-3.5.0.tgz"; 2369 + sha1 = "87bf40292b8cf83e4e8ce1a3ae4209e20071675a"; 2370 + }; 2371 + } 2372 + { 2373 + name = "lodash.uniqby___lodash.uniqby_4.7.0.tgz"; 2374 + path = fetchurl { 2375 + name = "lodash.uniqby___lodash.uniqby_4.7.0.tgz"; 2376 + url = "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz"; 2377 + sha1 = "d99c07a669e9e6d24e1362dfe266c67616af1302"; 2378 + }; 2379 + } 2380 + { 2381 + name = "lodash___lodash_4.17.15.tgz"; 2382 + path = fetchurl { 2383 + name = "lodash___lodash_4.17.15.tgz"; 2384 + url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz"; 2385 + sha1 = "b447f6670a0455bbfeedd11392eff330ea097548"; 2386 + }; 2387 + } 2388 + { 2389 + name = "loose_envify___loose_envify_1.4.0.tgz"; 2390 + path = fetchurl { 2391 + name = "loose_envify___loose_envify_1.4.0.tgz"; 2392 + url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"; 2393 + sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf"; 2394 + }; 2395 + } 2396 + { 2397 + name = "make_error___make_error_1.3.6.tgz"; 2398 + path = fetchurl { 2399 + name = "make_error___make_error_1.3.6.tgz"; 2400 + url = "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz"; 2401 + sha1 = "2eb2e37ea9b67c4891f684a1394799af484cf7a2"; 2402 + }; 2403 + } 2404 + { 2405 + name = "map_cache___map_cache_0.2.2.tgz"; 2406 + path = fetchurl { 2407 + name = "map_cache___map_cache_0.2.2.tgz"; 2408 + url = "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz"; 2409 + sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; 2410 + }; 2411 + } 2412 + { 2413 + name = "map_visit___map_visit_1.0.0.tgz"; 2414 + path = fetchurl { 2415 + name = "map_visit___map_visit_1.0.0.tgz"; 2416 + url = "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz"; 2417 + sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; 2418 + }; 2419 + } 2420 + { 2421 + name = "match_stream___match_stream_0.0.2.tgz"; 2422 + path = fetchurl { 2423 + name = "match_stream___match_stream_0.0.2.tgz"; 2424 + url = "https://registry.yarnpkg.com/match-stream/-/match-stream-0.0.2.tgz"; 2425 + sha1 = "99eb050093b34dffade421b9ac0b410a9cfa17cf"; 2426 + }; 2427 + } 2428 + { 2429 + name = "math_random___math_random_1.0.4.tgz"; 2430 + path = fetchurl { 2431 + name = "math_random___math_random_1.0.4.tgz"; 2432 + url = "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz"; 2433 + sha1 = "5dd6943c938548267016d4e34f057583080c514c"; 2434 + }; 2435 + } 2436 + { 2437 + name = "media_typer___media_typer_0.3.0.tgz"; 2438 + path = fetchurl { 2439 + name = "media_typer___media_typer_0.3.0.tgz"; 2440 + url = "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz"; 2441 + sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; 2442 + }; 2443 + } 2444 + { 2445 + name = "memoize_one___memoize_one_5.1.1.tgz"; 2446 + path = fetchurl { 2447 + name = "memoize_one___memoize_one_5.1.1.tgz"; 2448 + url = "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.1.1.tgz"; 2449 + sha1 = "047b6e3199b508eaec03504de71229b8eb1d75c0"; 2450 + }; 2451 + } 2452 + { 2453 + name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; 2454 + path = fetchurl { 2455 + name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; 2456 + url = "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; 2457 + sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; 2458 + }; 2459 + } 2460 + { 2461 + name = "merge___merge_1.2.1.tgz"; 2462 + path = fetchurl { 2463 + name = "merge___merge_1.2.1.tgz"; 2464 + url = "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz"; 2465 + sha1 = "38bebf80c3220a8a487b6fcfb3941bb11720c145"; 2466 + }; 2467 + } 2468 + { 2469 + name = "methods___methods_1.1.2.tgz"; 2470 + path = fetchurl { 2471 + name = "methods___methods_1.1.2.tgz"; 2472 + url = "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz"; 2473 + sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; 2474 + }; 2475 + } 2476 + { 2477 + name = "micromatch___micromatch_2.3.11.tgz"; 2478 + path = fetchurl { 2479 + name = "micromatch___micromatch_2.3.11.tgz"; 2480 + url = "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz"; 2481 + sha1 = "86677c97d1720b363431d04d0d15293bd38c1565"; 2482 + }; 2483 + } 2484 + { 2485 + name = "micromatch___micromatch_3.1.10.tgz"; 2486 + path = fetchurl { 2487 + name = "micromatch___micromatch_3.1.10.tgz"; 2488 + url = "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz"; 2489 + sha1 = "70859bc95c9840952f359a068a3fc49f9ecfac23"; 2490 + }; 2491 + } 2492 + { 2493 + name = "mime_db___mime_db_1.43.0.tgz"; 2494 + path = fetchurl { 2495 + name = "mime_db___mime_db_1.43.0.tgz"; 2496 + url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz"; 2497 + sha1 = "0a12e0502650e473d735535050e7c8f4eb4fae58"; 2498 + }; 2499 + } 2500 + { 2501 + name = "mime_types___mime_types_2.1.26.tgz"; 2502 + path = fetchurl { 2503 + name = "mime_types___mime_types_2.1.26.tgz"; 2504 + url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz"; 2505 + sha1 = "9c921fc09b7e149a65dfdc0da4d20997200b0a06"; 2506 + }; 2507 + } 2508 + { 2509 + name = "mime___mime_1.6.0.tgz"; 2510 + path = fetchurl { 2511 + name = "mime___mime_1.6.0.tgz"; 2512 + url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz"; 2513 + sha1 = "32cd9e5c64553bd58d19a568af452acff04981b1"; 2514 + }; 2515 + } 2516 + { 2517 + name = "mimic_fn___mimic_fn_1.2.0.tgz"; 2518 + path = fetchurl { 2519 + name = "mimic_fn___mimic_fn_1.2.0.tgz"; 2520 + url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz"; 2521 + sha1 = "820c86a39334640e99516928bd03fca88057d022"; 2522 + }; 2523 + } 2524 + { 2525 + name = "minimatch___minimatch_3.0.4.tgz"; 2526 + path = fetchurl { 2527 + name = "minimatch___minimatch_3.0.4.tgz"; 2528 + url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; 2529 + sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; 2530 + }; 2531 + } 2532 + { 2533 + name = "minimist___minimist_0.0.8.tgz"; 2534 + path = fetchurl { 2535 + name = "minimist___minimist_0.0.8.tgz"; 2536 + url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; 2537 + sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; 2538 + }; 2539 + } 2540 + { 2541 + name = "minimist___minimist_1.2.0.tgz"; 2542 + path = fetchurl { 2543 + name = "minimist___minimist_1.2.0.tgz"; 2544 + url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz"; 2545 + sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; 2546 + }; 2547 + } 2548 + { 2549 + name = "minimist___minimist_1.2.5.tgz"; 2550 + path = fetchurl { 2551 + name = "minimist___minimist_1.2.5.tgz"; 2552 + url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz"; 2553 + sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602"; 2554 + }; 2555 + } 2556 + { 2557 + name = "mixin_deep___mixin_deep_1.3.2.tgz"; 2558 + path = fetchurl { 2559 + name = "mixin_deep___mixin_deep_1.3.2.tgz"; 2560 + url = "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz"; 2561 + sha1 = "1120b43dc359a785dce65b55b82e257ccf479566"; 2562 + }; 2563 + } 2564 + { 2565 + name = "mkdirp___mkdirp_0.5.5.tgz"; 2566 + path = fetchurl { 2567 + name = "mkdirp___mkdirp_0.5.5.tgz"; 2568 + url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz"; 2569 + sha1 = "d91cefd62d1436ca0f41620e251288d420099def"; 2570 + }; 2571 + } 2572 + { 2573 + name = "mkdirp___mkdirp_0.5.1.tgz"; 2574 + path = fetchurl { 2575 + name = "mkdirp___mkdirp_0.5.1.tgz"; 2576 + url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz"; 2577 + sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 2578 + }; 2579 + } 2580 + { 2581 + name = "mock_require___mock_require_3.0.3.tgz"; 2582 + path = fetchurl { 2583 + name = "mock_require___mock_require_3.0.3.tgz"; 2584 + url = "https://registry.yarnpkg.com/mock-require/-/mock-require-3.0.3.tgz"; 2585 + sha1 = "ccd544d9eae81dd576b3f219f69ec867318a1946"; 2586 + }; 2587 + } 2588 + { 2589 + name = "ms___ms_2.0.0.tgz"; 2590 + path = fetchurl { 2591 + name = "ms___ms_2.0.0.tgz"; 2592 + url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz"; 2593 + sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 2594 + }; 2595 + } 2596 + { 2597 + name = "ms___ms_2.1.1.tgz"; 2598 + path = fetchurl { 2599 + name = "ms___ms_2.1.1.tgz"; 2600 + url = "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz"; 2601 + sha1 = "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"; 2602 + }; 2603 + } 2604 + { 2605 + name = "mustache___mustache_2.3.2.tgz"; 2606 + path = fetchurl { 2607 + name = "mustache___mustache_2.3.2.tgz"; 2608 + url = "https://registry.yarnpkg.com/mustache/-/mustache-2.3.2.tgz"; 2609 + sha1 = "a6d4d9c3f91d13359ab889a812954f9230a3d0c5"; 2610 + }; 2611 + } 2612 + { 2613 + name = "mute_stream___mute_stream_0.0.7.tgz"; 2614 + path = fetchurl { 2615 + name = "mute_stream___mute_stream_0.0.7.tgz"; 2616 + url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz"; 2617 + sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; 2618 + }; 2619 + } 2620 + { 2621 + name = "nan___nan_2.14.0.tgz"; 2622 + path = fetchurl { 2623 + name = "nan___nan_2.14.0.tgz"; 2624 + url = "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz"; 2625 + sha1 = "7818f722027b2459a86f0295d434d1fc2336c52c"; 2626 + }; 2627 + } 2628 + { 2629 + name = "nanomatch___nanomatch_1.2.13.tgz"; 2630 + path = fetchurl { 2631 + name = "nanomatch___nanomatch_1.2.13.tgz"; 2632 + url = "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz"; 2633 + sha1 = "b87a8aa4fc0de8fe6be88895b38983ff265bd119"; 2634 + }; 2635 + } 2636 + { 2637 + name = "nanoseconds___nanoseconds_0.1.0.tgz"; 2638 + path = fetchurl { 2639 + name = "nanoseconds___nanoseconds_0.1.0.tgz"; 2640 + url = "https://registry.yarnpkg.com/nanoseconds/-/nanoseconds-0.1.0.tgz"; 2641 + sha1 = "69ec39fcd00e77ab3a72de0a43342824cd79233a"; 2642 + }; 2643 + } 2644 + { 2645 + name = "natives___natives_1.1.6.tgz"; 2646 + path = fetchurl { 2647 + name = "natives___natives_1.1.6.tgz"; 2648 + url = "https://registry.yarnpkg.com/natives/-/natives-1.1.6.tgz"; 2649 + sha1 = "a603b4a498ab77173612b9ea1acdec4d980f00bb"; 2650 + }; 2651 + } 2652 + { 2653 + name = "negotiator___negotiator_0.6.2.tgz"; 2654 + path = fetchurl { 2655 + name = "negotiator___negotiator_0.6.2.tgz"; 2656 + url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz"; 2657 + sha1 = "feacf7ccf525a77ae9634436a64883ffeca346fb"; 2658 + }; 2659 + } 2660 + { 2661 + name = "nopt___nopt_1.0.10.tgz"; 2662 + path = fetchurl { 2663 + name = "nopt___nopt_1.0.10.tgz"; 2664 + url = "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz"; 2665 + sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee"; 2666 + }; 2667 + } 2668 + { 2669 + name = "normalize_path___normalize_path_2.1.1.tgz"; 2670 + path = fetchurl { 2671 + name = "normalize_path___normalize_path_2.1.1.tgz"; 2672 + url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz"; 2673 + sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; 2674 + }; 2675 + } 2676 + { 2677 + name = "oauth_sign___oauth_sign_0.9.0.tgz"; 2678 + path = fetchurl { 2679 + name = "oauth_sign___oauth_sign_0.9.0.tgz"; 2680 + url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz"; 2681 + sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455"; 2682 + }; 2683 + } 2684 + { 2685 + name = "object_assign___object_assign_4.1.1.tgz"; 2686 + path = fetchurl { 2687 + name = "object_assign___object_assign_4.1.1.tgz"; 2688 + url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz"; 2689 + sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 2690 + }; 2691 + } 2692 + { 2693 + name = "object_copy___object_copy_0.1.0.tgz"; 2694 + path = fetchurl { 2695 + name = "object_copy___object_copy_0.1.0.tgz"; 2696 + url = "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz"; 2697 + sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; 2698 + }; 2699 + } 2700 + { 2701 + name = "object_inspect___object_inspect_1.8.0.tgz"; 2702 + path = fetchurl { 2703 + name = "object_inspect___object_inspect_1.8.0.tgz"; 2704 + url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz"; 2705 + sha1 = "df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0"; 2706 + }; 2707 + } 2708 + { 2709 + name = "object_keys___object_keys_1.1.1.tgz"; 2710 + path = fetchurl { 2711 + name = "object_keys___object_keys_1.1.1.tgz"; 2712 + url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz"; 2713 + sha1 = "1c47f272df277f3b1daf061677d9c82e2322c60e"; 2714 + }; 2715 + } 2716 + { 2717 + name = "object_visit___object_visit_1.0.1.tgz"; 2718 + path = fetchurl { 2719 + name = "object_visit___object_visit_1.0.1.tgz"; 2720 + url = "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz"; 2721 + sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; 2722 + }; 2723 + } 2724 + { 2725 + name = "object.assign___object.assign_4.1.0.tgz"; 2726 + path = fetchurl { 2727 + name = "object.assign___object.assign_4.1.0.tgz"; 2728 + url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz"; 2729 + sha1 = "968bf1100d7956bb3ca086f006f846b3bc4008da"; 2730 + }; 2731 + } 2732 + { 2733 + name = "object.omit___object.omit_2.0.1.tgz"; 2734 + path = fetchurl { 2735 + name = "object.omit___object.omit_2.0.1.tgz"; 2736 + url = "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz"; 2737 + sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"; 2738 + }; 2739 + } 2740 + { 2741 + name = "object.pick___object.pick_1.3.0.tgz"; 2742 + path = fetchurl { 2743 + name = "object.pick___object.pick_1.3.0.tgz"; 2744 + url = "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz"; 2745 + sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; 2746 + }; 2747 + } 2748 + { 2749 + name = "object.values___object.values_1.1.1.tgz"; 2750 + path = fetchurl { 2751 + name = "object.values___object.values_1.1.1.tgz"; 2752 + url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz"; 2753 + sha1 = "68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"; 2754 + }; 2755 + } 2756 + { 2757 + name = "on_finished___on_finished_2.3.0.tgz"; 2758 + path = fetchurl { 2759 + name = "on_finished___on_finished_2.3.0.tgz"; 2760 + url = "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz"; 2761 + sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 2762 + }; 2763 + } 2764 + { 2765 + name = "once___once_1.4.0.tgz"; 2766 + path = fetchurl { 2767 + name = "once___once_1.4.0.tgz"; 2768 + url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; 2769 + sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 2770 + }; 2771 + } 2772 + { 2773 + name = "onetime___onetime_2.0.1.tgz"; 2774 + path = fetchurl { 2775 + name = "onetime___onetime_2.0.1.tgz"; 2776 + url = "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz"; 2777 + sha1 = "067428230fd67443b2794b22bba528b6867962d4"; 2778 + }; 2779 + } 2780 + { 2781 + name = "optionator___optionator_0.8.3.tgz"; 2782 + path = fetchurl { 2783 + name = "optionator___optionator_0.8.3.tgz"; 2784 + url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz"; 2785 + sha1 = "84fa1d036fe9d3c7e21d99884b601167ec8fb495"; 2786 + }; 2787 + } 2788 + { 2789 + name = "options___options_0.0.6.tgz"; 2790 + path = fetchurl { 2791 + name = "options___options_0.0.6.tgz"; 2792 + url = "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz"; 2793 + sha1 = "ec22d312806bb53e731773e7cdaefcf1c643128f"; 2794 + }; 2795 + } 2796 + { 2797 + name = "orderedmap___orderedmap_1.1.1.tgz"; 2798 + path = fetchurl { 2799 + name = "orderedmap___orderedmap_1.1.1.tgz"; 2800 + url = "https://registry.yarnpkg.com/orderedmap/-/orderedmap-1.1.1.tgz"; 2801 + sha1 = "c618e77611b3b21d0fe3edc92586265e0059c789"; 2802 + }; 2803 + } 2804 + { 2805 + name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 2806 + path = fetchurl { 2807 + name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; 2808 + url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 2809 + sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 2810 + }; 2811 + } 2812 + { 2813 + name = "over___over_0.0.5.tgz"; 2814 + path = fetchurl { 2815 + name = "over___over_0.0.5.tgz"; 2816 + url = "https://registry.yarnpkg.com/over/-/over-0.0.5.tgz"; 2817 + sha1 = "f29852e70fd7e25f360e013a8ec44c82aedb5708"; 2818 + }; 2819 + } 2820 + { 2821 + name = "parent_module___parent_module_1.0.1.tgz"; 2822 + path = fetchurl { 2823 + name = "parent_module___parent_module_1.0.1.tgz"; 2824 + url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz"; 2825 + sha1 = "691d2709e78c79fae3a156622452d00762caaaa2"; 2826 + }; 2827 + } 2828 + { 2829 + name = "parse_glob___parse_glob_3.0.4.tgz"; 2830 + path = fetchurl { 2831 + name = "parse_glob___parse_glob_3.0.4.tgz"; 2832 + url = "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz"; 2833 + sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c"; 2834 + }; 2835 + } 2836 + { 2837 + name = "parse_json___parse_json_5.0.0.tgz"; 2838 + path = fetchurl { 2839 + name = "parse_json___parse_json_5.0.0.tgz"; 2840 + url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz"; 2841 + sha1 = "73e5114c986d143efa3712d4ea24db9a4266f60f"; 2842 + }; 2843 + } 2844 + { 2845 + name = "parseurl___parseurl_1.3.3.tgz"; 2846 + path = fetchurl { 2847 + name = "parseurl___parseurl_1.3.3.tgz"; 2848 + url = "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz"; 2849 + sha1 = "9da19e7bee8d12dff0513ed5b76957793bc2e8d4"; 2850 + }; 2851 + } 2852 + { 2853 + name = "pascalcase___pascalcase_0.1.1.tgz"; 2854 + path = fetchurl { 2855 + name = "pascalcase___pascalcase_0.1.1.tgz"; 2856 + url = "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz"; 2857 + sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; 2858 + }; 2859 + } 2860 + { 2861 + name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 2862 + path = fetchurl { 2863 + name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 2864 + url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 2865 + sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 2866 + }; 2867 + } 2868 + { 2869 + name = "path_parse___path_parse_1.0.6.tgz"; 2870 + path = fetchurl { 2871 + name = "path_parse___path_parse_1.0.6.tgz"; 2872 + url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz"; 2873 + sha1 = "d62dbb5679405d72c4737ec58600e9ddcf06d24c"; 2874 + }; 2875 + } 2876 + { 2877 + name = "path_to_regexp___path_to_regexp_0.1.7.tgz"; 2878 + path = fetchurl { 2879 + name = "path_to_regexp___path_to_regexp_0.1.7.tgz"; 2880 + url = "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; 2881 + sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; 2882 + }; 2883 + } 2884 + { 2885 + name = "path_type___path_type_4.0.0.tgz"; 2886 + path = fetchurl { 2887 + name = "path_type___path_type_4.0.0.tgz"; 2888 + url = "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz"; 2889 + sha1 = "84ed01c0a7ba380afe09d90a8c180dcd9d03043b"; 2890 + }; 2891 + } 2892 + { 2893 + name = "performance_now___performance_now_2.1.0.tgz"; 2894 + path = fetchurl { 2895 + name = "performance_now___performance_now_2.1.0.tgz"; 2896 + url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz"; 2897 + sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 2898 + }; 2899 + } 2900 + { 2901 + name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; 2902 + path = fetchurl { 2903 + name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; 2904 + url = "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; 2905 + sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 2906 + }; 2907 + } 2908 + { 2909 + name = "postcss___postcss_6.0.23.tgz"; 2910 + path = fetchurl { 2911 + name = "postcss___postcss_6.0.23.tgz"; 2912 + url = "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz"; 2913 + sha1 = "61c82cc328ac60e677645f979054eb98bc0e3324"; 2914 + }; 2915 + } 2916 + { 2917 + name = "prelude_ls___prelude_ls_1.1.2.tgz"; 2918 + path = fetchurl { 2919 + name = "prelude_ls___prelude_ls_1.1.2.tgz"; 2920 + url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; 2921 + sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; 2922 + }; 2923 + } 2924 + { 2925 + name = "preserve___preserve_0.2.0.tgz"; 2926 + path = fetchurl { 2927 + name = "preserve___preserve_0.2.0.tgz"; 2928 + url = "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz"; 2929 + sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b"; 2930 + }; 2931 + } 2932 + { 2933 + name = "prettier___prettier_1.19.1.tgz"; 2934 + path = fetchurl { 2935 + name = "prettier___prettier_1.19.1.tgz"; 2936 + url = "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz"; 2937 + sha1 = "f7d7f5ff8a9cd872a7be4ca142095956a60797cb"; 2938 + }; 2939 + } 2940 + { 2941 + name = "pretty_time___pretty_time_0.2.0.tgz"; 2942 + path = fetchurl { 2943 + name = "pretty_time___pretty_time_0.2.0.tgz"; 2944 + url = "https://registry.yarnpkg.com/pretty-time/-/pretty-time-0.2.0.tgz"; 2945 + sha1 = "7a3bdec4049c620cd7c42b7f342b74d56e73d74e"; 2946 + }; 2947 + } 2948 + { 2949 + name = "prettysize___prettysize_0.0.3.tgz"; 2950 + path = fetchurl { 2951 + name = "prettysize___prettysize_0.0.3.tgz"; 2952 + url = "https://registry.yarnpkg.com/prettysize/-/prettysize-0.0.3.tgz"; 2953 + sha1 = "14afff6a645e591a4ddf1c72919c23b4146181a1"; 2954 + }; 2955 + } 2956 + { 2957 + name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; 2958 + path = fetchurl { 2959 + name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; 2960 + url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 2961 + sha1 = "7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"; 2962 + }; 2963 + } 2964 + { 2965 + name = "prop_types___prop_types_15.7.2.tgz"; 2966 + path = fetchurl { 2967 + name = "prop_types___prop_types_15.7.2.tgz"; 2968 + url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz"; 2969 + sha1 = "52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"; 2970 + }; 2971 + } 2972 + { 2973 + name = "prosemirror_changeset___prosemirror_changeset_2.1.2.tgz"; 2974 + path = fetchurl { 2975 + name = "prosemirror_changeset___prosemirror_changeset_2.1.2.tgz"; 2976 + url = "https://registry.yarnpkg.com/prosemirror-changeset/-/prosemirror-changeset-2.1.2.tgz"; 2977 + sha1 = "91dee900eb4618b21ed0c38c8d41dc7539303864"; 2978 + }; 2979 + } 2980 + { 2981 + name = "prosemirror_commands___prosemirror_commands_1.1.4.tgz"; 2982 + path = fetchurl { 2983 + name = "prosemirror_commands___prosemirror_commands_1.1.4.tgz"; 2984 + url = "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.1.4.tgz"; 2985 + sha1 = "991563e67623acab4f8c510fad1570f8b4693780"; 2986 + }; 2987 + } 2988 + { 2989 + name = "prosemirror_dev_tools___prosemirror_dev_tools_2.1.1.tgz"; 2990 + path = fetchurl { 2991 + name = "prosemirror_dev_tools___prosemirror_dev_tools_2.1.1.tgz"; 2992 + url = "https://registry.yarnpkg.com/prosemirror-dev-tools/-/prosemirror-dev-tools-2.1.1.tgz"; 2993 + sha1 = "0c4304b05b437608b3666b72fdb4b21e24fa29fc"; 2994 + }; 2995 + } 2996 + { 2997 + name = "prosemirror_dropcursor___prosemirror_dropcursor_1.3.2.tgz"; 2998 + path = fetchurl { 2999 + name = "prosemirror_dropcursor___prosemirror_dropcursor_1.3.2.tgz"; 3000 + url = "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.3.2.tgz"; 3001 + sha1 = "28738c4ed7102e814d7a8a26d70018523fc7cd6d"; 3002 + }; 3003 + } 3004 + { 3005 + name = "prosemirror_gapcursor___prosemirror_gapcursor_1.1.5.tgz"; 3006 + path = fetchurl { 3007 + name = "prosemirror_gapcursor___prosemirror_gapcursor_1.1.5.tgz"; 3008 + url = "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.1.5.tgz"; 3009 + sha1 = "0c37fd6cbb1d7c46358c2e7397f8da9a8b5c6246"; 3010 + }; 3011 + } 3012 + { 3013 + name = "prosemirror_history___prosemirror_history_1.1.3.tgz"; 3014 + path = fetchurl { 3015 + name = "prosemirror_history___prosemirror_history_1.1.3.tgz"; 3016 + url = "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.1.3.tgz"; 3017 + sha1 = "4f76a1e71db4ef7cdf0e13dec6d8da2aeaecd489"; 3018 + }; 3019 + } 3020 + { 3021 + name = "prosemirror_inputrules___prosemirror_inputrules_1.1.2.tgz"; 3022 + path = fetchurl { 3023 + name = "prosemirror_inputrules___prosemirror_inputrules_1.1.2.tgz"; 3024 + url = "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.1.2.tgz"; 3025 + sha1 = "487e46c763e1212a4577397aba7706139084f012"; 3026 + }; 3027 + } 3028 + { 3029 + name = "prosemirror_keymap___prosemirror_keymap_1.1.3.tgz"; 3030 + path = fetchurl { 3031 + name = "prosemirror_keymap___prosemirror_keymap_1.1.3.tgz"; 3032 + url = "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.1.3.tgz"; 3033 + sha1 = "be22d6108df2521608e9216a87b1a810f0ed361e"; 3034 + }; 3035 + } 3036 + { 3037 + name = "prosemirror_keymap___prosemirror_keymap_1.1.4.tgz"; 3038 + path = fetchurl { 3039 + name = "prosemirror_keymap___prosemirror_keymap_1.1.4.tgz"; 3040 + url = "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.1.4.tgz"; 3041 + sha1 = "8b481bf8389a5ac40d38dbd67ec3da2c7eac6a6d"; 3042 + }; 3043 + } 3044 + { 3045 + name = "prosemirror_model___prosemirror_model_1.9.1.tgz"; 3046 + path = fetchurl { 3047 + name = "prosemirror_model___prosemirror_model_1.9.1.tgz"; 3048 + url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.9.1.tgz"; 3049 + sha1 = "8c08cf556f593c5f015548d2c1a6825661df087f"; 3050 + }; 3051 + } 3052 + { 3053 + name = "prosemirror_model___prosemirror_model_1.11.0.tgz"; 3054 + path = fetchurl { 3055 + name = "prosemirror_model___prosemirror_model_1.11.0.tgz"; 3056 + url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.11.0.tgz"; 3057 + sha1 = "dc36cdb3ad6442b9f6325c7d89170c624f9dc520"; 3058 + }; 3059 + } 3060 + { 3061 + name = "prosemirror_schema_list___prosemirror_schema_list_1.1.4.tgz"; 3062 + path = fetchurl { 3063 + name = "prosemirror_schema_list___prosemirror_schema_list_1.1.4.tgz"; 3064 + url = "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.1.4.tgz"; 3065 + sha1 = "471f9caf2d2bed93641d2e490434c0d2d4330df1"; 3066 + }; 3067 + } 3068 + { 3069 + name = "prosemirror_state___prosemirror_state_1.3.2.tgz"; 3070 + path = fetchurl { 3071 + name = "prosemirror_state___prosemirror_state_1.3.2.tgz"; 3072 + url = "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.2.tgz"; 3073 + sha1 = "1b910b0dc01c1f00926bb9ba1589f7b7ac0d658b"; 3074 + }; 3075 + } 3076 + { 3077 + name = "prosemirror_state___prosemirror_state_1.3.3.tgz"; 3078 + path = fetchurl { 3079 + name = "prosemirror_state___prosemirror_state_1.3.3.tgz"; 3080 + url = "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.3.3.tgz"; 3081 + sha1 = "b2862866b14dec2b3ae1ab18229f2bd337651a2c"; 3082 + }; 3083 + } 3084 + { 3085 + name = "prosemirror_tables___prosemirror_tables_1.0.0.tgz"; 3086 + path = fetchurl { 3087 + name = "prosemirror_tables___prosemirror_tables_1.0.0.tgz"; 3088 + url = "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.0.0.tgz"; 3089 + sha1 = "ec3d0b11e638c6a92dd14ae816d0a2efd1719b70"; 3090 + }; 3091 + } 3092 + { 3093 + name = "prosemirror_tables___prosemirror_tables_1.1.1.tgz"; 3094 + path = fetchurl { 3095 + name = "prosemirror_tables___prosemirror_tables_1.1.1.tgz"; 3096 + url = "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.1.1.tgz"; 3097 + sha1 = "ad66300cc49500455cf1243bb129c9e7d883321e"; 3098 + }; 3099 + } 3100 + { 3101 + name = "prosemirror_transform___prosemirror_transform_1.2.3.tgz"; 3102 + path = fetchurl { 3103 + name = "prosemirror_transform___prosemirror_transform_1.2.3.tgz"; 3104 + url = "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.2.3.tgz"; 3105 + sha1 = "239d17591af24d39ef3f1999daa09e1f1c76b06a"; 3106 + }; 3107 + } 3108 + { 3109 + name = "prosemirror_transform___prosemirror_transform_1.2.8.tgz"; 3110 + path = fetchurl { 3111 + name = "prosemirror_transform___prosemirror_transform_1.2.8.tgz"; 3112 + url = "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.2.8.tgz"; 3113 + sha1 = "4b86544fa43637fe381549fb7b019f4fb71fe65c"; 3114 + }; 3115 + } 3116 + { 3117 + name = "prosemirror_utils___prosemirror_utils_0.9.6.tgz"; 3118 + path = fetchurl { 3119 + name = "prosemirror_utils___prosemirror_utils_0.9.6.tgz"; 3120 + url = "https://registry.yarnpkg.com/prosemirror-utils/-/prosemirror-utils-0.9.6.tgz"; 3121 + sha1 = "3d97bd85897e3b535555867dc95a51399116a973"; 3122 + }; 3123 + } 3124 + { 3125 + name = "prosemirror_view___prosemirror_view_1.14.2.tgz"; 3126 + path = fetchurl { 3127 + name = "prosemirror_view___prosemirror_view_1.14.2.tgz"; 3128 + url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.14.2.tgz"; 3129 + sha1 = "23eb89f6101e9671b5e0c19d82ee0ad9de5608de"; 3130 + }; 3131 + } 3132 + { 3133 + name = "prosemirror_view___prosemirror_view_1.15.6.tgz"; 3134 + path = fetchurl { 3135 + name = "prosemirror_view___prosemirror_view_1.15.6.tgz"; 3136 + url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.15.6.tgz"; 3137 + sha1 = "446bf7662235300c5f47362af2db805c6df3ad24"; 3138 + }; 3139 + } 3140 + { 3141 + name = "proxy_addr___proxy_addr_2.0.6.tgz"; 3142 + path = fetchurl { 3143 + name = "proxy_addr___proxy_addr_2.0.6.tgz"; 3144 + url = "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz"; 3145 + sha1 = "fdc2336505447d3f2f2c638ed272caf614bbb2bf"; 3146 + }; 3147 + } 3148 + { 3149 + name = "psl___psl_1.7.0.tgz"; 3150 + path = fetchurl { 3151 + name = "psl___psl_1.7.0.tgz"; 3152 + url = "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz"; 3153 + sha1 = "f1c4c47a8ef97167dea5d6bbf4816d736e884a3c"; 3154 + }; 3155 + } 3156 + { 3157 + name = "pullstream___pullstream_0.4.1.tgz"; 3158 + path = fetchurl { 3159 + name = "pullstream___pullstream_0.4.1.tgz"; 3160 + url = "https://registry.yarnpkg.com/pullstream/-/pullstream-0.4.1.tgz"; 3161 + sha1 = "d6fb3bf5aed697e831150eb1002c25a3f8ae1314"; 3162 + }; 3163 + } 3164 + { 3165 + name = "punycode___punycode_2.1.1.tgz"; 3166 + path = fetchurl { 3167 + name = "punycode___punycode_2.1.1.tgz"; 3168 + url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; 3169 + sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec"; 3170 + }; 3171 + } 3172 + { 3173 + name = "pure_color___pure_color_1.3.0.tgz"; 3174 + path = fetchurl { 3175 + name = "pure_color___pure_color_1.3.0.tgz"; 3176 + url = "https://registry.yarnpkg.com/pure-color/-/pure-color-1.3.0.tgz"; 3177 + sha1 = "1fe064fb0ac851f0de61320a8bf796836422f33e"; 3178 + }; 3179 + } 3180 + { 3181 + name = "qs___qs_6.7.0.tgz"; 3182 + path = fetchurl { 3183 + name = "qs___qs_6.7.0.tgz"; 3184 + url = "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz"; 3185 + sha1 = "41dc1a015e3d581f1621776be31afb2876a9b1bc"; 3186 + }; 3187 + } 3188 + { 3189 + name = "qs___qs_6.5.2.tgz"; 3190 + path = fetchurl { 3191 + name = "qs___qs_6.5.2.tgz"; 3192 + url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz"; 3193 + sha1 = "cb3ae806e8740444584ef154ce8ee98d403f3e36"; 3194 + }; 3195 + } 3196 + { 3197 + name = "randomatic___randomatic_3.1.1.tgz"; 3198 + path = fetchurl { 3199 + name = "randomatic___randomatic_3.1.1.tgz"; 3200 + url = "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz"; 3201 + sha1 = "b776efc59375984e36c537b2f51a1f0aff0da1ed"; 3202 + }; 3203 + } 3204 + { 3205 + name = "range_parser___range_parser_1.2.1.tgz"; 3206 + path = fetchurl { 3207 + name = "range_parser___range_parser_1.2.1.tgz"; 3208 + url = "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz"; 3209 + sha1 = "3cf37023d199e1c24d1a55b84800c2f3e6468031"; 3210 + }; 3211 + } 3212 + { 3213 + name = "raw_body___raw_body_2.4.0.tgz"; 3214 + path = fetchurl { 3215 + name = "raw_body___raw_body_2.4.0.tgz"; 3216 + url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz"; 3217 + sha1 = "a1ce6fb9c9bc356ca52e89256ab59059e13d0332"; 3218 + }; 3219 + } 3220 + { 3221 + name = "react_base16_styling___react_base16_styling_0.5.3.tgz"; 3222 + path = fetchurl { 3223 + name = "react_base16_styling___react_base16_styling_0.5.3.tgz"; 3224 + url = "https://registry.yarnpkg.com/react-base16-styling/-/react-base16-styling-0.5.3.tgz"; 3225 + sha1 = "3858f24e9c4dd8cbd3f702f3f74d581ca2917269"; 3226 + }; 3227 + } 3228 + { 3229 + name = "react_dock___react_dock_0.2.4.tgz"; 3230 + path = fetchurl { 3231 + name = "react_dock___react_dock_0.2.4.tgz"; 3232 + url = "https://registry.yarnpkg.com/react-dock/-/react-dock-0.2.4.tgz"; 3233 + sha1 = "e727dc7550b3b73116635dcb9c0e04d0b7afe17c"; 3234 + }; 3235 + } 3236 + { 3237 + name = "react_dom___react_dom_16.13.1.tgz"; 3238 + path = fetchurl { 3239 + name = "react_dom___react_dom_16.13.1.tgz"; 3240 + url = "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz"; 3241 + sha1 = "c1bd37331a0486c078ee54c4740720993b2e0e7f"; 3242 + }; 3243 + } 3244 + { 3245 + name = "react_emotion___react_emotion_9.2.12.tgz"; 3246 + path = fetchurl { 3247 + name = "react_emotion___react_emotion_9.2.12.tgz"; 3248 + url = "https://registry.yarnpkg.com/react-emotion/-/react-emotion-9.2.12.tgz"; 3249 + sha1 = "74d1494f89e22d0b9442e92a33ca052461955c83"; 3250 + }; 3251 + } 3252 + { 3253 + name = "react_is___react_is_16.13.0.tgz"; 3254 + path = fetchurl { 3255 + name = "react_is___react_is_16.13.0.tgz"; 3256 + url = "https://registry.yarnpkg.com/react-is/-/react-is-16.13.0.tgz"; 3257 + sha1 = "0f37c3613c34fe6b37cd7f763a0d6293ab15c527"; 3258 + }; 3259 + } 3260 + { 3261 + name = "react_json_tree___react_json_tree_0.11.2.tgz"; 3262 + path = fetchurl { 3263 + name = "react_json_tree___react_json_tree_0.11.2.tgz"; 3264 + url = "https://registry.yarnpkg.com/react-json-tree/-/react-json-tree-0.11.2.tgz"; 3265 + sha1 = "af70199fcbc265699ade2aec492465c51608f95e"; 3266 + }; 3267 + } 3268 + { 3269 + name = "react_window___react_window_1.8.5.tgz"; 3270 + path = fetchurl { 3271 + name = "react_window___react_window_1.8.5.tgz"; 3272 + url = "https://registry.yarnpkg.com/react-window/-/react-window-1.8.5.tgz"; 3273 + sha1 = "a56b39307e79979721021f5d06a67742ecca52d1"; 3274 + }; 3275 + } 3276 + { 3277 + name = "react___react_16.13.1.tgz"; 3278 + path = fetchurl { 3279 + name = "react___react_16.13.1.tgz"; 3280 + url = "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz"; 3281 + sha1 = "2e818822f1a9743122c063d6410d85c1e3afe48e"; 3282 + }; 3283 + } 3284 + { 3285 + name = "readable_stream___readable_stream_2.3.7.tgz"; 3286 + path = fetchurl { 3287 + name = "readable_stream___readable_stream_2.3.7.tgz"; 3288 + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz"; 3289 + sha1 = "1eca1cf711aef814c04f62252a36a62f6cb23b57"; 3290 + }; 3291 + } 3292 + { 3293 + name = "readable_stream___readable_stream_3.6.0.tgz"; 3294 + path = fetchurl { 3295 + name = "readable_stream___readable_stream_3.6.0.tgz"; 3296 + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz"; 3297 + sha1 = "337bbda3adc0706bd3e024426a286d4b4b2c9198"; 3298 + }; 3299 + } 3300 + { 3301 + name = "readable_stream___readable_stream_1.0.34.tgz"; 3302 + path = fetchurl { 3303 + name = "readable_stream___readable_stream_1.0.34.tgz"; 3304 + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz"; 3305 + sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c"; 3306 + }; 3307 + } 3308 + { 3309 + name = "readdirp___readdirp_2.2.1.tgz"; 3310 + path = fetchurl { 3311 + name = "readdirp___readdirp_2.2.1.tgz"; 3312 + url = "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz"; 3313 + sha1 = "0e87622a3325aa33e892285caf8b4e846529a525"; 3314 + }; 3315 + } 3316 + { 3317 + name = "realm_utils___realm_utils_1.0.9.tgz"; 3318 + path = fetchurl { 3319 + name = "realm_utils___realm_utils_1.0.9.tgz"; 3320 + url = "https://registry.yarnpkg.com/realm-utils/-/realm-utils-1.0.9.tgz"; 3321 + sha1 = "5c76a5ff39e4816af2c133a161f4221d6628eff4"; 3322 + }; 3323 + } 3324 + { 3325 + name = "regenerate_unicode_properties___regenerate_unicode_properties_8.1.0.tgz"; 3326 + path = fetchurl { 3327 + name = "regenerate_unicode_properties___regenerate_unicode_properties_8.1.0.tgz"; 3328 + url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz"; 3329 + sha1 = "ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"; 3330 + }; 3331 + } 3332 + { 3333 + name = "regenerate___regenerate_1.4.0.tgz"; 3334 + path = fetchurl { 3335 + name = "regenerate___regenerate_1.4.0.tgz"; 3336 + url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz"; 3337 + sha1 = "4a856ec4b56e4077c557589cae85e7a4c8869a11"; 3338 + }; 3339 + } 3340 + { 3341 + name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; 3342 + path = fetchurl { 3343 + name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; 3344 + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; 3345 + sha1 = "be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"; 3346 + }; 3347 + } 3348 + { 3349 + name = "regenerator_runtime___regenerator_runtime_0.13.3.tgz"; 3350 + path = fetchurl { 3351 + name = "regenerator_runtime___regenerator_runtime_0.13.3.tgz"; 3352 + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz"; 3353 + sha1 = "7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"; 3354 + }; 3355 + } 3356 + { 3357 + name = "regenerator_runtime___regenerator_runtime_0.13.5.tgz"; 3358 + path = fetchurl { 3359 + name = "regenerator_runtime___regenerator_runtime_0.13.5.tgz"; 3360 + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz"; 3361 + sha1 = "d878a1d094b4306d10b9096484b33ebd55e26697"; 3362 + }; 3363 + } 3364 + { 3365 + name = "regex_cache___regex_cache_0.4.4.tgz"; 3366 + path = fetchurl { 3367 + name = "regex_cache___regex_cache_0.4.4.tgz"; 3368 + url = "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz"; 3369 + sha1 = "75bdc58a2a1496cec48a12835bc54c8d562336dd"; 3370 + }; 3371 + } 3372 + { 3373 + name = "regex_not___regex_not_1.0.2.tgz"; 3374 + path = fetchurl { 3375 + name = "regex_not___regex_not_1.0.2.tgz"; 3376 + url = "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz"; 3377 + sha1 = "1f4ece27e00b0b65e0247a6810e6a85d83a5752c"; 3378 + }; 3379 + } 3380 + { 3381 + name = "regexpu_core___regexpu_core_4.6.0.tgz"; 3382 + path = fetchurl { 3383 + name = "regexpu_core___regexpu_core_4.6.0.tgz"; 3384 + url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz"; 3385 + sha1 = "2037c18b327cfce8a6fea2a4ec441f2432afb8b6"; 3386 + }; 3387 + } 3388 + { 3389 + name = "regjsgen___regjsgen_0.5.1.tgz"; 3390 + path = fetchurl { 3391 + name = "regjsgen___regjsgen_0.5.1.tgz"; 3392 + url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz"; 3393 + sha1 = "48f0bf1a5ea205196929c0d9798b42d1ed98443c"; 3394 + }; 3395 + } 3396 + { 3397 + name = "regjsparser___regjsparser_0.6.3.tgz"; 3398 + path = fetchurl { 3399 + name = "regjsparser___regjsparser_0.6.3.tgz"; 3400 + url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.3.tgz"; 3401 + sha1 = "74192c5805d35e9f5ebe3c1fb5b40d40a8a38460"; 3402 + }; 3403 + } 3404 + { 3405 + name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz"; 3406 + path = fetchurl { 3407 + name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz"; 3408 + url = "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; 3409 + sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; 3410 + }; 3411 + } 3412 + { 3413 + name = "repeat_element___repeat_element_1.1.3.tgz"; 3414 + path = fetchurl { 3415 + name = "repeat_element___repeat_element_1.1.3.tgz"; 3416 + url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz"; 3417 + sha1 = "782e0d825c0c5a3bb39731f84efee6b742e6b1ce"; 3418 + }; 3419 + } 3420 + { 3421 + name = "repeat_string___repeat_string_1.6.1.tgz"; 3422 + path = fetchurl { 3423 + name = "repeat_string___repeat_string_1.6.1.tgz"; 3424 + url = "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz"; 3425 + sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; 3426 + }; 3427 + } 3428 + { 3429 + name = "request___request_2.88.2.tgz"; 3430 + path = fetchurl { 3431 + name = "request___request_2.88.2.tgz"; 3432 + url = "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz"; 3433 + sha1 = "d73c918731cb5a87da047e207234146f664d12b3"; 3434 + }; 3435 + } 3436 + { 3437 + name = "resolve_from___resolve_from_4.0.0.tgz"; 3438 + path = fetchurl { 3439 + name = "resolve_from___resolve_from_4.0.0.tgz"; 3440 + url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; 3441 + sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6"; 3442 + }; 3443 + } 3444 + { 3445 + name = "resolve_url___resolve_url_0.2.1.tgz"; 3446 + path = fetchurl { 3447 + name = "resolve_url___resolve_url_0.2.1.tgz"; 3448 + url = "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz"; 3449 + sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; 3450 + }; 3451 + } 3452 + { 3453 + name = "resolve___resolve_1.15.1.tgz"; 3454 + path = fetchurl { 3455 + name = "resolve___resolve_1.15.1.tgz"; 3456 + url = "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz"; 3457 + sha1 = "27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8"; 3458 + }; 3459 + } 3460 + { 3461 + name = "restore_cursor___restore_cursor_2.0.0.tgz"; 3462 + path = fetchurl { 3463 + name = "restore_cursor___restore_cursor_2.0.0.tgz"; 3464 + url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz"; 3465 + sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; 3466 + }; 3467 + } 3468 + { 3469 + name = "ret___ret_0.1.15.tgz"; 3470 + path = fetchurl { 3471 + name = "ret___ret_0.1.15.tgz"; 3472 + url = "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz"; 3473 + sha1 = "b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"; 3474 + }; 3475 + } 3476 + { 3477 + name = "rimraf___rimraf_2.7.1.tgz"; 3478 + path = fetchurl { 3479 + name = "rimraf___rimraf_2.7.1.tgz"; 3480 + url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz"; 3481 + sha1 = "35797f13a7fdadc566142c29d4f07ccad483e3ec"; 3482 + }; 3483 + } 3484 + { 3485 + name = "rope_sequence___rope_sequence_1.3.2.tgz"; 3486 + path = fetchurl { 3487 + name = "rope_sequence___rope_sequence_1.3.2.tgz"; 3488 + url = "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.2.tgz"; 3489 + sha1 = "a19e02d72991ca71feb6b5f8a91154e48e3c098b"; 3490 + }; 3491 + } 3492 + { 3493 + name = "run_async___run_async_2.4.0.tgz"; 3494 + path = fetchurl { 3495 + name = "run_async___run_async_2.4.0.tgz"; 3496 + url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz"; 3497 + sha1 = "e59054a5b86876cfae07f431d18cbaddc594f1e8"; 3498 + }; 3499 + } 3500 + { 3501 + name = "rx_lite_aggregates___rx_lite_aggregates_4.0.8.tgz"; 3502 + path = fetchurl { 3503 + name = "rx_lite_aggregates___rx_lite_aggregates_4.0.8.tgz"; 3504 + url = "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz"; 3505 + sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be"; 3506 + }; 3507 + } 3508 + { 3509 + name = "rx_lite___rx_lite_4.0.8.tgz"; 3510 + path = fetchurl { 3511 + name = "rx_lite___rx_lite_4.0.8.tgz"; 3512 + url = "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz"; 3513 + sha1 = "0b1e11af8bc44836f04a6407e92da42467b79444"; 3514 + }; 3515 + } 3516 + { 3517 + name = "safe_buffer___safe_buffer_5.1.2.tgz"; 3518 + path = fetchurl { 3519 + name = "safe_buffer___safe_buffer_5.1.2.tgz"; 3520 + url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; 3521 + sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d"; 3522 + }; 3523 + } 3524 + { 3525 + name = "safe_buffer___safe_buffer_5.2.0.tgz"; 3526 + path = fetchurl { 3527 + name = "safe_buffer___safe_buffer_5.2.0.tgz"; 3528 + url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz"; 3529 + sha1 = "b74daec49b1148f88c64b68d49b1e815c1f2f519"; 3530 + }; 3531 + } 3532 + { 3533 + name = "safe_buffer___safe_buffer_5.2.1.tgz"; 3534 + path = fetchurl { 3535 + name = "safe_buffer___safe_buffer_5.2.1.tgz"; 3536 + url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz"; 3537 + sha1 = "1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"; 3538 + }; 3539 + } 3540 + { 3541 + name = "safe_regex___safe_regex_1.1.0.tgz"; 3542 + path = fetchurl { 3543 + name = "safe_regex___safe_regex_1.1.0.tgz"; 3544 + url = "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz"; 3545 + sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; 3546 + }; 3547 + } 3548 + { 3549 + name = "safer_buffer___safer_buffer_2.1.2.tgz"; 3550 + path = fetchurl { 3551 + name = "safer_buffer___safer_buffer_2.1.2.tgz"; 3552 + url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; 3553 + sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a"; 3554 + }; 3555 + } 3556 + { 3557 + name = "scheduler___scheduler_0.19.1.tgz"; 3558 + path = fetchurl { 3559 + name = "scheduler___scheduler_0.19.1.tgz"; 3560 + url = "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz"; 3561 + sha1 = "4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"; 3562 + }; 3563 + } 3564 + { 3565 + name = "select___select_1.1.2.tgz"; 3566 + path = fetchurl { 3567 + name = "select___select_1.1.2.tgz"; 3568 + url = "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz"; 3569 + sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d"; 3570 + }; 3571 + } 3572 + { 3573 + name = "semver___semver_5.7.1.tgz"; 3574 + path = fetchurl { 3575 + name = "semver___semver_5.7.1.tgz"; 3576 + url = "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz"; 3577 + sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7"; 3578 + }; 3579 + } 3580 + { 3581 + name = "send___send_0.17.1.tgz"; 3582 + path = fetchurl { 3583 + name = "send___send_0.17.1.tgz"; 3584 + url = "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz"; 3585 + sha1 = "c1d8b059f7900f7466dd4938bdc44e11ddb376c8"; 3586 + }; 3587 + } 3588 + { 3589 + name = "sentence_splitter___sentence_splitter_3.2.0.tgz"; 3590 + path = fetchurl { 3591 + name = "sentence_splitter___sentence_splitter_3.2.0.tgz"; 3592 + url = "https://registry.yarnpkg.com/sentence-splitter/-/sentence-splitter-3.2.0.tgz"; 3593 + sha1 = "fb2cd2f61f40006643ba83d9acf4609233c1c68c"; 3594 + }; 3595 + } 3596 + { 3597 + name = "serve_static___serve_static_1.14.1.tgz"; 3598 + path = fetchurl { 3599 + name = "serve_static___serve_static_1.14.1.tgz"; 3600 + url = "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz"; 3601 + sha1 = "666e636dc4f010f7ef29970a88a674320898b2f9"; 3602 + }; 3603 + } 3604 + { 3605 + name = "set_value___set_value_2.0.1.tgz"; 3606 + path = fetchurl { 3607 + name = "set_value___set_value_2.0.1.tgz"; 3608 + url = "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz"; 3609 + sha1 = "a18d40530e6f07de4228c7defe4227af8cad005b"; 3610 + }; 3611 + } 3612 + { 3613 + name = "setimmediate___setimmediate_1.0.5.tgz"; 3614 + path = fetchurl { 3615 + name = "setimmediate___setimmediate_1.0.5.tgz"; 3616 + url = "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz"; 3617 + sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285"; 3618 + }; 3619 + } 3620 + { 3621 + name = "setprototypeof___setprototypeof_1.1.1.tgz"; 3622 + path = fetchurl { 3623 + name = "setprototypeof___setprototypeof_1.1.1.tgz"; 3624 + url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz"; 3625 + sha1 = "7e95acb24aa92f5885e0abef5ba131330d4ae683"; 3626 + }; 3627 + } 3628 + { 3629 + name = "shorthash___shorthash_0.0.2.tgz"; 3630 + path = fetchurl { 3631 + name = "shorthash___shorthash_0.0.2.tgz"; 3632 + url = "https://registry.yarnpkg.com/shorthash/-/shorthash-0.0.2.tgz"; 3633 + sha1 = "59b268eecbde59038b30da202bcfbddeb2c4a4eb"; 3634 + }; 3635 + } 3636 + { 3637 + name = "signal_exit___signal_exit_3.0.2.tgz"; 3638 + path = fetchurl { 3639 + name = "signal_exit___signal_exit_3.0.2.tgz"; 3640 + url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz"; 3641 + sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d"; 3642 + }; 3643 + } 3644 + { 3645 + name = "slice_stream___slice_stream_1.0.0.tgz"; 3646 + path = fetchurl { 3647 + name = "slice_stream___slice_stream_1.0.0.tgz"; 3648 + url = "https://registry.yarnpkg.com/slice-stream/-/slice-stream-1.0.0.tgz"; 3649 + sha1 = "5b33bd66f013b1a7f86460b03d463dec39ad3ea0"; 3650 + }; 3651 + } 3652 + { 3653 + name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; 3654 + path = fetchurl { 3655 + name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; 3656 + url = "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; 3657 + sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b"; 3658 + }; 3659 + } 3660 + { 3661 + name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; 3662 + path = fetchurl { 3663 + name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; 3664 + url = "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; 3665 + sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2"; 3666 + }; 3667 + } 3668 + { 3669 + name = "snapdragon___snapdragon_0.8.2.tgz"; 3670 + path = fetchurl { 3671 + name = "snapdragon___snapdragon_0.8.2.tgz"; 3672 + url = "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz"; 3673 + sha1 = "64922e7c565b0e14204ba1aa7d6964278d25182d"; 3674 + }; 3675 + } 3676 + { 3677 + name = "source_map_resolve___source_map_resolve_0.5.3.tgz"; 3678 + path = fetchurl { 3679 + name = "source_map_resolve___source_map_resolve_0.5.3.tgz"; 3680 + url = "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz"; 3681 + sha1 = "190866bece7553e1f8f267a2ee82c606b5509a1a"; 3682 + }; 3683 + } 3684 + { 3685 + name = "source_map_support___source_map_support_0.5.19.tgz"; 3686 + path = fetchurl { 3687 + name = "source_map_support___source_map_support_0.5.19.tgz"; 3688 + url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz"; 3689 + sha1 = "a98b62f86dcaf4f67399648c085291ab9e8fed61"; 3690 + }; 3691 + } 3692 + { 3693 + name = "source_map_support___source_map_support_0.5.16.tgz"; 3694 + path = fetchurl { 3695 + name = "source_map_support___source_map_support_0.5.16.tgz"; 3696 + url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz"; 3697 + sha1 = "0ae069e7fe3ba7538c64c98515e35339eac5a042"; 3698 + }; 3699 + } 3700 + { 3701 + name = "source_map_url___source_map_url_0.4.0.tgz"; 3702 + path = fetchurl { 3703 + name = "source_map_url___source_map_url_0.4.0.tgz"; 3704 + url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz"; 3705 + sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; 3706 + }; 3707 + } 3708 + { 3709 + name = "source_map___source_map_0.5.7.tgz"; 3710 + path = fetchurl { 3711 + name = "source_map___source_map_0.5.7.tgz"; 3712 + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; 3713 + sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; 3714 + }; 3715 + } 3716 + { 3717 + name = "source_map___source_map_0.6.1.tgz"; 3718 + path = fetchurl { 3719 + name = "source_map___source_map_0.6.1.tgz"; 3720 + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz"; 3721 + sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263"; 3722 + }; 3723 + } 3724 + { 3725 + name = "source_map___source_map_0.7.3.tgz"; 3726 + path = fetchurl { 3727 + name = "source_map___source_map_0.7.3.tgz"; 3728 + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz"; 3729 + sha1 = "5302f8169031735226544092e64981f751750383"; 3730 + }; 3731 + } 3732 + { 3733 + name = "sourcemap_blender___sourcemap_blender_1.0.5.tgz"; 3734 + path = fetchurl { 3735 + name = "sourcemap_blender___sourcemap_blender_1.0.5.tgz"; 3736 + url = "https://registry.yarnpkg.com/sourcemap-blender/-/sourcemap-blender-1.0.5.tgz"; 3737 + sha1 = "d361f3d12381c4e477178113878fdf984a91bdbc"; 3738 + }; 3739 + } 3740 + { 3741 + name = "split_string___split_string_3.1.0.tgz"; 3742 + path = fetchurl { 3743 + name = "split_string___split_string_3.1.0.tgz"; 3744 + url = "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz"; 3745 + sha1 = "7cb09dda3a86585705c64b39a6466038682e8fe2"; 3746 + }; 3747 + } 3748 + { 3749 + name = "sprintf_js___sprintf_js_1.0.3.tgz"; 3750 + path = fetchurl { 3751 + name = "sprintf_js___sprintf_js_1.0.3.tgz"; 3752 + url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz"; 3753 + sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 3754 + }; 3755 + } 3756 + { 3757 + name = "sshpk___sshpk_1.16.1.tgz"; 3758 + path = fetchurl { 3759 + name = "sshpk___sshpk_1.16.1.tgz"; 3760 + url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz"; 3761 + sha1 = "fb661c0bef29b39db40769ee39fa70093d6f6877"; 3762 + }; 3763 + } 3764 + { 3765 + name = "static_extend___static_extend_0.1.2.tgz"; 3766 + path = fetchurl { 3767 + name = "static_extend___static_extend_0.1.2.tgz"; 3768 + url = "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz"; 3769 + sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; 3770 + }; 3771 + } 3772 + { 3773 + name = "statuses___statuses_1.5.0.tgz"; 3774 + path = fetchurl { 3775 + name = "statuses___statuses_1.5.0.tgz"; 3776 + url = "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz"; 3777 + sha1 = "161c7dac177659fd9811f43771fa99381478628c"; 3778 + }; 3779 + } 3780 + { 3781 + name = "stream_browserify___stream_browserify_2.0.2.tgz"; 3782 + path = fetchurl { 3783 + name = "stream_browserify___stream_browserify_2.0.2.tgz"; 3784 + url = "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz"; 3785 + sha1 = "87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"; 3786 + }; 3787 + } 3788 + { 3789 + name = "string_width___string_width_2.1.1.tgz"; 3790 + path = fetchurl { 3791 + name = "string_width___string_width_2.1.1.tgz"; 3792 + url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz"; 3793 + sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e"; 3794 + }; 3795 + } 3796 + { 3797 + name = "string.prototype.trimend___string.prototype.trimend_1.0.1.tgz"; 3798 + path = fetchurl { 3799 + name = "string.prototype.trimend___string.prototype.trimend_1.0.1.tgz"; 3800 + url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz"; 3801 + sha1 = "85812a6b847ac002270f5808146064c995fb6913"; 3802 + }; 3803 + } 3804 + { 3805 + name = "string.prototype.trimstart___string.prototype.trimstart_1.0.1.tgz"; 3806 + path = fetchurl { 3807 + name = "string.prototype.trimstart___string.prototype.trimstart_1.0.1.tgz"; 3808 + url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz"; 3809 + sha1 = "14af6d9f34b053f7cfc89b72f8f2ee14b9039a54"; 3810 + }; 3811 + } 3812 + { 3813 + name = "string_decoder___string_decoder_1.3.0.tgz"; 3814 + path = fetchurl { 3815 + name = "string_decoder___string_decoder_1.3.0.tgz"; 3816 + url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz"; 3817 + sha1 = "42f114594a46cf1a8e30b0a84f56c78c3edac21e"; 3818 + }; 3819 + } 3820 + { 3821 + name = "string_decoder___string_decoder_0.10.31.tgz"; 3822 + path = fetchurl { 3823 + name = "string_decoder___string_decoder_0.10.31.tgz"; 3824 + url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz"; 3825 + sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; 3826 + }; 3827 + } 3828 + { 3829 + name = "string_decoder___string_decoder_1.1.1.tgz"; 3830 + path = fetchurl { 3831 + name = "string_decoder___string_decoder_1.1.1.tgz"; 3832 + url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz"; 3833 + sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8"; 3834 + }; 3835 + } 3836 + { 3837 + name = "strip_ansi___strip_ansi_4.0.0.tgz"; 3838 + path = fetchurl { 3839 + name = "strip_ansi___strip_ansi_4.0.0.tgz"; 3840 + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz"; 3841 + sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; 3842 + }; 3843 + } 3844 + { 3845 + name = "structured_source___structured_source_3.0.2.tgz"; 3846 + path = fetchurl { 3847 + name = "structured_source___structured_source_3.0.2.tgz"; 3848 + url = "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz"; 3849 + sha1 = "dd802425e0f53dc4a6e7aca3752901a1ccda7af5"; 3850 + }; 3851 + } 3852 + { 3853 + name = "stylis_rule_sheet___stylis_rule_sheet_0.0.10.tgz"; 3854 + path = fetchurl { 3855 + name = "stylis_rule_sheet___stylis_rule_sheet_0.0.10.tgz"; 3856 + url = "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz"; 3857 + sha1 = "44e64a2b076643f4b52e5ff71efc04d8c3c4a430"; 3858 + }; 3859 + } 3860 + { 3861 + name = "stylis___stylis_3.5.4.tgz"; 3862 + path = fetchurl { 3863 + name = "stylis___stylis_3.5.4.tgz"; 3864 + url = "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz"; 3865 + sha1 = "f665f25f5e299cf3d64654ab949a57c768b73fbe"; 3866 + }; 3867 + } 3868 + { 3869 + name = "supports_color___supports_color_5.5.0.tgz"; 3870 + path = fetchurl { 3871 + name = "supports_color___supports_color_5.5.0.tgz"; 3872 + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; 3873 + sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f"; 3874 + }; 3875 + } 3876 + { 3877 + name = "terser___terser_4.6.4.tgz"; 3878 + path = fetchurl { 3879 + name = "terser___terser_4.6.4.tgz"; 3880 + url = "https://registry.yarnpkg.com/terser/-/terser-4.6.4.tgz"; 3881 + sha1 = "40a0b37afbe5b57e494536815efa68326840fc00"; 3882 + }; 3883 + } 3884 + { 3885 + name = "thenby___thenby_1.3.3.tgz"; 3886 + path = fetchurl { 3887 + name = "thenby___thenby_1.3.3.tgz"; 3888 + url = "https://registry.yarnpkg.com/thenby/-/thenby-1.3.3.tgz"; 3889 + sha1 = "016c3427772a284bbfef982d978f7574fd15ee9d"; 3890 + }; 3891 + } 3892 + { 3893 + name = "through___through_2.3.8.tgz"; 3894 + path = fetchurl { 3895 + name = "through___through_2.3.8.tgz"; 3896 + url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; 3897 + sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 3898 + }; 3899 + } 3900 + { 3901 + name = "tiny_emitter___tiny_emitter_2.1.0.tgz"; 3902 + path = fetchurl { 3903 + name = "tiny_emitter___tiny_emitter_2.1.0.tgz"; 3904 + url = "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz"; 3905 + sha1 = "1d1a56edfc51c43e863cbb5382a72330e3555423"; 3906 + }; 3907 + } 3908 + { 3909 + name = "tlite___tlite_0.1.9.tgz"; 3910 + path = fetchurl { 3911 + name = "tlite___tlite_0.1.9.tgz"; 3912 + url = "https://registry.yarnpkg.com/tlite/-/tlite-0.1.9.tgz"; 3913 + sha1 = "e886e4a305b7522242e2453b7ca4fb84f2d9de0f"; 3914 + }; 3915 + } 3916 + { 3917 + name = "tmp___tmp_0.0.33.tgz"; 3918 + path = fetchurl { 3919 + name = "tmp___tmp_0.0.33.tgz"; 3920 + url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; 3921 + sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; 3922 + }; 3923 + } 3924 + { 3925 + name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; 3926 + path = fetchurl { 3927 + name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; 3928 + url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 3929 + sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; 3930 + }; 3931 + } 3932 + { 3933 + name = "to_object_path___to_object_path_0.3.0.tgz"; 3934 + path = fetchurl { 3935 + name = "to_object_path___to_object_path_0.3.0.tgz"; 3936 + url = "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz"; 3937 + sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; 3938 + }; 3939 + } 3940 + { 3941 + name = "to_regex_range___to_regex_range_2.1.1.tgz"; 3942 + path = fetchurl { 3943 + name = "to_regex_range___to_regex_range_2.1.1.tgz"; 3944 + url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz"; 3945 + sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; 3946 + }; 3947 + } 3948 + { 3949 + name = "to_regex___to_regex_3.0.2.tgz"; 3950 + path = fetchurl { 3951 + name = "to_regex___to_regex_3.0.2.tgz"; 3952 + url = "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz"; 3953 + sha1 = "13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"; 3954 + }; 3955 + } 3956 + { 3957 + name = "toidentifier___toidentifier_1.0.0.tgz"; 3958 + path = fetchurl { 3959 + name = "toidentifier___toidentifier_1.0.0.tgz"; 3960 + url = "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz"; 3961 + sha1 = "7e1be3470f1e77948bc43d94a3c8f4d7752ba553"; 3962 + }; 3963 + } 3964 + { 3965 + name = "touch___touch_2.0.2.tgz"; 3966 + path = fetchurl { 3967 + name = "touch___touch_2.0.2.tgz"; 3968 + url = "https://registry.yarnpkg.com/touch/-/touch-2.0.2.tgz"; 3969 + sha1 = "ca0b2a3ae3211246a61b16ba9e6cbf1596287164"; 3970 + }; 3971 + } 3972 + { 3973 + name = "tough_cookie___tough_cookie_2.5.0.tgz"; 3974 + path = fetchurl { 3975 + name = "tough_cookie___tough_cookie_2.5.0.tgz"; 3976 + url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz"; 3977 + sha1 = "cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"; 3978 + }; 3979 + } 3980 + { 3981 + name = "traverse___traverse_0.3.9.tgz"; 3982 + path = fetchurl { 3983 + name = "traverse___traverse_0.3.9.tgz"; 3984 + url = "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz"; 3985 + sha1 = "717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9"; 3986 + }; 3987 + } 3988 + { 3989 + name = "ts_node___ts_node_8.10.2.tgz"; 3990 + path = fetchurl { 3991 + name = "ts_node___ts_node_8.10.2.tgz"; 3992 + url = "https://registry.yarnpkg.com/ts-node/-/ts-node-8.10.2.tgz"; 3993 + sha1 = "eee03764633b1234ddd37f8db9ec10b75ec7fb8d"; 3994 + }; 3995 + } 3996 + { 3997 + name = "tslib___tslib_1.11.1.tgz"; 3998 + path = fetchurl { 3999 + name = "tslib___tslib_1.11.1.tgz"; 4000 + url = "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz"; 4001 + sha1 = "eb15d128827fbee2841549e171f45ed338ac7e35"; 4002 + }; 4003 + } 4004 + { 4005 + name = "tslint_config_prettier___tslint_config_prettier_1.18.0.tgz"; 4006 + path = fetchurl { 4007 + name = "tslint_config_prettier___tslint_config_prettier_1.18.0.tgz"; 4008 + url = "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz"; 4009 + sha1 = "75f140bde947d35d8f0d238e0ebf809d64592c37"; 4010 + }; 4011 + } 4012 + { 4013 + name = "tslint_react___tslint_react_5.0.0.tgz"; 4014 + path = fetchurl { 4015 + name = "tslint_react___tslint_react_5.0.0.tgz"; 4016 + url = "https://registry.yarnpkg.com/tslint-react/-/tslint-react-5.0.0.tgz"; 4017 + sha1 = "d0ae644e8163bdd3e134012e9353094904e8dd44"; 4018 + }; 4019 + } 4020 + { 4021 + name = "tslint___tslint_5.20.1.tgz"; 4022 + path = fetchurl { 4023 + name = "tslint___tslint_5.20.1.tgz"; 4024 + url = "https://registry.yarnpkg.com/tslint/-/tslint-5.20.1.tgz"; 4025 + sha1 = "e401e8aeda0152bc44dd07e614034f3f80c67b7d"; 4026 + }; 4027 + } 4028 + { 4029 + name = "tsutils___tsutils_2.29.0.tgz"; 4030 + path = fetchurl { 4031 + name = "tsutils___tsutils_2.29.0.tgz"; 4032 + url = "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz"; 4033 + sha1 = "32b488501467acbedd4b85498673a0812aca0b99"; 4034 + }; 4035 + } 4036 + { 4037 + name = "tsutils___tsutils_3.17.1.tgz"; 4038 + path = fetchurl { 4039 + name = "tsutils___tsutils_3.17.1.tgz"; 4040 + url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz"; 4041 + sha1 = "ed719917f11ca0dee586272b2ac49e015a2dd759"; 4042 + }; 4043 + } 4044 + { 4045 + name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; 4046 + path = fetchurl { 4047 + name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; 4048 + url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; 4049 + sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; 4050 + }; 4051 + } 4052 + { 4053 + name = "tweetnacl___tweetnacl_0.14.5.tgz"; 4054 + path = fetchurl { 4055 + name = "tweetnacl___tweetnacl_0.14.5.tgz"; 4056 + url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz"; 4057 + sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; 4058 + }; 4059 + } 4060 + { 4061 + name = "type_check___type_check_0.3.2.tgz"; 4062 + path = fetchurl { 4063 + name = "type_check___type_check_0.3.2.tgz"; 4064 + url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; 4065 + sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; 4066 + }; 4067 + } 4068 + { 4069 + name = "type_is___type_is_1.6.18.tgz"; 4070 + path = fetchurl { 4071 + name = "type_is___type_is_1.6.18.tgz"; 4072 + url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz"; 4073 + sha1 = "4e552cd05df09467dcbc4ef739de89f2cf37c131"; 4074 + }; 4075 + } 4076 + { 4077 + name = "typedarray___typedarray_0.0.6.tgz"; 4078 + path = fetchurl { 4079 + name = "typedarray___typedarray_0.0.6.tgz"; 4080 + url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; 4081 + sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 4082 + }; 4083 + } 4084 + { 4085 + name = "typescript_tslint_plugin___typescript_tslint_plugin_0.5.5.tgz"; 4086 + path = fetchurl { 4087 + name = "typescript_tslint_plugin___typescript_tslint_plugin_0.5.5.tgz"; 4088 + url = "https://registry.yarnpkg.com/typescript-tslint-plugin/-/typescript-tslint-plugin-0.5.5.tgz"; 4089 + sha1 = "673875c43640251f1ab3d63745d7d49726ff961c"; 4090 + }; 4091 + } 4092 + { 4093 + name = "typescript___typescript_3.8.3.tgz"; 4094 + path = fetchurl { 4095 + name = "typescript___typescript_3.8.3.tgz"; 4096 + url = "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz"; 4097 + sha1 = "409eb8544ea0335711205869ec458ab109ee1061"; 4098 + }; 4099 + } 4100 + { 4101 + name = "uglify_js___uglify_js_3.8.0.tgz"; 4102 + path = fetchurl { 4103 + name = "uglify_js___uglify_js_3.8.0.tgz"; 4104 + url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.8.0.tgz"; 4105 + sha1 = "f3541ae97b2f048d7e7e3aa4f39fd8a1f5d7a805"; 4106 + }; 4107 + } 4108 + { 4109 + name = "ultron___ultron_1.0.2.tgz"; 4110 + path = fetchurl { 4111 + name = "ultron___ultron_1.0.2.tgz"; 4112 + url = "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz"; 4113 + sha1 = "ace116ab557cd197386a4e88f4685378c8b2e4fa"; 4114 + }; 4115 + } 4116 + { 4117 + name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz"; 4118 + path = fetchurl { 4119 + name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz"; 4120 + url = "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz"; 4121 + sha1 = "2619800c4c825800efdd8343af7dd9933cbe2818"; 4122 + }; 4123 + } 4124 + { 4125 + name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_1.0.4.tgz"; 4126 + path = fetchurl { 4127 + name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_1.0.4.tgz"; 4128 + url = "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz"; 4129 + sha1 = "8ed2a32569961bce9227d09cd3ffbb8fed5f020c"; 4130 + }; 4131 + } 4132 + { 4133 + name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.1.0.tgz"; 4134 + path = fetchurl { 4135 + name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.1.0.tgz"; 4136 + url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz"; 4137 + sha1 = "5b4b426e08d13a80365e0d657ac7a6c1ec46a277"; 4138 + }; 4139 + } 4140 + { 4141 + name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.5.tgz"; 4142 + path = fetchurl { 4143 + name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.5.tgz"; 4144 + url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz"; 4145 + sha1 = "a9cc6cc7ce63a0a3023fc99e341b94431d405a57"; 4146 + }; 4147 + } 4148 + { 4149 + name = "union_value___union_value_1.0.1.tgz"; 4150 + path = fetchurl { 4151 + name = "union_value___union_value_1.0.1.tgz"; 4152 + url = "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz"; 4153 + sha1 = "0b6fe7b835aecda61c6ea4d4f02c14221e109847"; 4154 + }; 4155 + } 4156 + { 4157 + name = "universalify___universalify_0.1.2.tgz"; 4158 + path = fetchurl { 4159 + name = "universalify___universalify_0.1.2.tgz"; 4160 + url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz"; 4161 + sha1 = "b646f69be3942dabcecc9d6639c80dc105efaa66"; 4162 + }; 4163 + } 4164 + { 4165 + name = "unpipe___unpipe_1.0.0.tgz"; 4166 + path = fetchurl { 4167 + name = "unpipe___unpipe_1.0.0.tgz"; 4168 + url = "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz"; 4169 + sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; 4170 + }; 4171 + } 4172 + { 4173 + name = "unset_value___unset_value_1.0.0.tgz"; 4174 + path = fetchurl { 4175 + name = "unset_value___unset_value_1.0.0.tgz"; 4176 + url = "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz"; 4177 + sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; 4178 + }; 4179 + } 4180 + { 4181 + name = "unstated___unstated_2.1.1.tgz"; 4182 + path = fetchurl { 4183 + name = "unstated___unstated_2.1.1.tgz"; 4184 + url = "https://registry.yarnpkg.com/unstated/-/unstated-2.1.1.tgz"; 4185 + sha1 = "36b124dfb2e7a12d39d0bb9c46dfb6e51276e3a2"; 4186 + }; 4187 + } 4188 + { 4189 + name = "unzip___unzip_0.1.11.tgz"; 4190 + path = fetchurl { 4191 + name = "unzip___unzip_0.1.11.tgz"; 4192 + url = "https://registry.yarnpkg.com/unzip/-/unzip-0.1.11.tgz"; 4193 + sha1 = "89749c63b058d7d90d619f86b98aa1535d3b97f0"; 4194 + }; 4195 + } 4196 + { 4197 + name = "uri_js___uri_js_4.2.2.tgz"; 4198 + path = fetchurl { 4199 + name = "uri_js___uri_js_4.2.2.tgz"; 4200 + url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz"; 4201 + sha1 = "94c540e1ff772956e2299507c010aea6c8838eb0"; 4202 + }; 4203 + } 4204 + { 4205 + name = "urix___urix_0.1.0.tgz"; 4206 + path = fetchurl { 4207 + name = "urix___urix_0.1.0.tgz"; 4208 + url = "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz"; 4209 + sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; 4210 + }; 4211 + } 4212 + { 4213 + name = "use___use_3.1.1.tgz"; 4214 + path = fetchurl { 4215 + name = "use___use_3.1.1.tgz"; 4216 + url = "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz"; 4217 + sha1 = "d50c8cac79a19fbc20f2911f56eb973f4e10070f"; 4218 + }; 4219 + } 4220 + { 4221 + name = "util_deprecate___util_deprecate_1.0.2.tgz"; 4222 + path = fetchurl { 4223 + name = "util_deprecate___util_deprecate_1.0.2.tgz"; 4224 + url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; 4225 + sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 4226 + }; 4227 + } 4228 + { 4229 + name = "utils_extend___utils_extend_1.0.8.tgz"; 4230 + path = fetchurl { 4231 + name = "utils_extend___utils_extend_1.0.8.tgz"; 4232 + url = "https://registry.yarnpkg.com/utils-extend/-/utils-extend-1.0.8.tgz"; 4233 + sha1 = "ccfd7b64540f8e90ee21eec57769d0651cab8a5f"; 4234 + }; 4235 + } 4236 + { 4237 + name = "utils_merge___utils_merge_1.0.1.tgz"; 4238 + path = fetchurl { 4239 + name = "utils_merge___utils_merge_1.0.1.tgz"; 4240 + url = "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz"; 4241 + sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; 4242 + }; 4243 + } 4244 + { 4245 + name = "uuid___uuid_3.4.0.tgz"; 4246 + path = fetchurl { 4247 + name = "uuid___uuid_3.4.0.tgz"; 4248 + url = "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz"; 4249 + sha1 = "b23e4358afa8a202fe7a100af1f5f883f02007ee"; 4250 + }; 4251 + } 4252 + { 4253 + name = "vary___vary_1.1.2.tgz"; 4254 + path = fetchurl { 4255 + name = "vary___vary_1.1.2.tgz"; 4256 + url = "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz"; 4257 + sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; 4258 + }; 4259 + } 4260 + { 4261 + name = "verror___verror_1.10.0.tgz"; 4262 + path = fetchurl { 4263 + name = "verror___verror_1.10.0.tgz"; 4264 + url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz"; 4265 + sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 4266 + }; 4267 + } 4268 + { 4269 + name = "vscode_jsonrpc___vscode_jsonrpc_4.0.0.tgz"; 4270 + path = fetchurl { 4271 + name = "vscode_jsonrpc___vscode_jsonrpc_4.0.0.tgz"; 4272 + url = "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz"; 4273 + sha1 = "a7bf74ef3254d0a0c272fab15c82128e378b3be9"; 4274 + }; 4275 + } 4276 + { 4277 + name = "vscode_languageserver_protocol___vscode_languageserver_protocol_3.14.1.tgz"; 4278 + path = fetchurl { 4279 + name = "vscode_languageserver_protocol___vscode_languageserver_protocol_3.14.1.tgz"; 4280 + url = "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz"; 4281 + sha1 = "b8aab6afae2849c84a8983d39a1cf742417afe2f"; 4282 + }; 4283 + } 4284 + { 4285 + name = "vscode_languageserver_types___vscode_languageserver_types_3.14.0.tgz"; 4286 + path = fetchurl { 4287 + name = "vscode_languageserver_types___vscode_languageserver_types_3.14.0.tgz"; 4288 + url = "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz"; 4289 + sha1 = "d3b5952246d30e5241592b6dde8280e03942e743"; 4290 + }; 4291 + } 4292 + { 4293 + name = "vscode_languageserver___vscode_languageserver_5.2.1.tgz"; 4294 + path = fetchurl { 4295 + name = "vscode_languageserver___vscode_languageserver_5.2.1.tgz"; 4296 + url = "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz"; 4297 + sha1 = "0d2feddd33f92aadf5da32450df498d52f6f14eb"; 4298 + }; 4299 + } 4300 + { 4301 + name = "vscode_uri___vscode_uri_1.0.8.tgz"; 4302 + path = fetchurl { 4303 + name = "vscode_uri___vscode_uri_1.0.8.tgz"; 4304 + url = "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-1.0.8.tgz"; 4305 + sha1 = "9769aaececae4026fb6e22359cb38946580ded59"; 4306 + }; 4307 + } 4308 + { 4309 + name = "w3c_keyname___w3c_keyname_2.2.2.tgz"; 4310 + path = fetchurl { 4311 + name = "w3c_keyname___w3c_keyname_2.2.2.tgz"; 4312 + url = "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.2.tgz"; 4313 + sha1 = "7ea63170454bb19f1a3c6b628fc3dc8889276e91"; 4314 + }; 4315 + } 4316 + { 4317 + name = "watch___watch_1.0.2.tgz"; 4318 + path = fetchurl { 4319 + name = "watch___watch_1.0.2.tgz"; 4320 + url = "https://registry.yarnpkg.com/watch/-/watch-1.0.2.tgz"; 4321 + sha1 = "340a717bde765726fa0aa07d721e0147a551df0c"; 4322 + }; 4323 + } 4324 + { 4325 + name = "word_wrap___word_wrap_1.2.3.tgz"; 4326 + path = fetchurl { 4327 + name = "word_wrap___word_wrap_1.2.3.tgz"; 4328 + url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz"; 4329 + sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c"; 4330 + }; 4331 + } 4332 + { 4333 + name = "wrappy___wrappy_1.0.2.tgz"; 4334 + path = fetchurl { 4335 + name = "wrappy___wrappy_1.0.2.tgz"; 4336 + url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; 4337 + sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 4338 + }; 4339 + } 4340 + { 4341 + name = "ws___ws_1.1.5.tgz"; 4342 + path = fetchurl { 4343 + name = "ws___ws_1.1.5.tgz"; 4344 + url = "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz"; 4345 + sha1 = "cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51"; 4346 + }; 4347 + } 4348 + { 4349 + name = "yaml___yaml_1.7.2.tgz"; 4350 + path = fetchurl { 4351 + name = "yaml___yaml_1.7.2.tgz"; 4352 + url = "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz"; 4353 + sha1 = "f26aabf738590ab61efaca502358e48dc9f348b2"; 4354 + }; 4355 + } 4356 + { 4357 + name = "yn___yn_3.1.1.tgz"; 4358 + path = fetchurl { 4359 + name = "yn___yn_3.1.1.tgz"; 4360 + url = "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz"; 4361 + sha1 = "1e87401a09d767c1d5eab26a6e4c185182d2eb50"; 4362 + }; 4363 + } 4364 + { 4365 + name = "zenscroll___zenscroll_4.0.2.tgz"; 4366 + path = fetchurl { 4367 + name = "zenscroll___zenscroll_4.0.2.tgz"; 4368 + url = "https://registry.yarnpkg.com/zenscroll/-/zenscroll-4.0.2.tgz"; 4369 + sha1 = "e8d5774d1c0738a47bcfa8729f3712e2deddeb25"; 4370 + }; 4371 + } 4372 + ]; 4373 + }
+5 -5
pkgs/applications/editors/vscode/vscodium.nix
··· 13 archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz"; 14 15 sha256 = { 16 - x86_64-linux = "072wdzl8gp4ygprgza4cfg46fvrd13zx9za5fa8s6vsd9w1l95l7"; 17 - x86_64-darwin = "083sipxp9r7g6p6la15jjlib52l8xjbfxn2cb05scigq3zsyffy7"; 18 - aarch64-linux = "1s82f6ba57r7bnjhbanmih5g7wa001sf6php1402w06cxxy7dz00"; 19 - armv7l-linux = "113nk1rqw07giqq8pnc11dymzxdhj3nn3q2p0fppnm3lpccaq9hs"; 20 }.${system}; 21 22 sourceRoot = { ··· 31 32 # Please backport all compatible updates to the stable release. 33 # This is important for the extension ecosystem. 34 - version = "1.61.0"; 35 pname = "vscodium"; 36 37 executableName = "codium";
··· 13 archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz"; 14 15 sha256 = { 16 + x86_64-linux = "0ic7h5aq1lyplk01bydqwrvz40h59sf0n0q4gxj844k4qidy14md"; 17 + x86_64-darwin = "15s3vj7740ksb82gdjqpxw6cyd45ymdpacamkqk800929cv715qs"; 18 + aarch64-linux = "0n3bxggfzlr1cqarq861yfqka3qfgpwvk8j22l7dv4vki06f8jzy"; 19 + armv7l-linux = "0jksfdals8xf3vh5hqrd40pj5qn8byjrakjnrv926qznxjj152bn"; 20 }.${system}; 21 22 sourceRoot = { ··· 31 32 # Please backport all compatible updates to the stable release. 33 # This is important for the extension ecosystem. 34 + version = "1.61.1"; 35 pname = "vscodium"; 36 37 executableName = "codium";
+2 -2
pkgs/applications/graphics/gthumb/default.nix
··· 33 34 stdenv.mkDerivation rec { 35 pname = "gthumb"; 36 - version = "3.11.4"; 37 38 src = fetchurl { 39 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 40 - sha256 = "sha256-3ZsPiUXX34Ev/a3OyMO94dyXZyMy4AVt5Cp/ELZLIGw="; 41 }; 42 43 nativeBuildInputs = [
··· 33 34 stdenv.mkDerivation rec { 35 pname = "gthumb"; 36 + version = "3.12.0"; 37 38 src = fetchurl { 39 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 40 + sha256 = "sha256-Pe/8AwOE5ktXNhxDfHm0ga4Uie9EyHroVugbsQ2OOD8="; 41 }; 42 43 nativeBuildInputs = [
+2 -2
pkgs/applications/graphics/shotwell/default.nix
··· 41 42 stdenv.mkDerivation rec { 43 pname = "shotwell"; 44 - version = "0.31.3"; 45 46 src = fetchurl { 47 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 48 - sha256 = "1wkahbnnfxmi1jc5zmm3h761nrnkdks8lk0rj38bfkwg90h6zqwd"; 49 }; 50 51 nativeBuildInputs = [
··· 41 42 stdenv.mkDerivation rec { 43 pname = "shotwell"; 44 + version = "0.30.14"; 45 46 src = fetchurl { 47 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 48 + sha256 = "sha256-McLkgzkI02GcssNnWgXw2lnCuqduKLkFOF/VbADBKJU="; 49 }; 50 51 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/fnott/default.nix
··· 19 20 stdenv.mkDerivation rec { 21 pname = "fnott"; 22 - version = "1.1.0"; 23 24 src = fetchFromGitea { 25 domain = "codeberg.org"; 26 owner = "dnkl"; 27 repo = "fnott"; 28 rev = version; 29 - sha256 = "sha256-gzU5AqjCIZlhLbnj/xuSGJ69ZhLv9zQxlM0Nn+MIX/U="; 30 }; 31 32 nativeBuildInputs = [
··· 19 20 stdenv.mkDerivation rec { 21 pname = "fnott"; 22 + version = "1.1.2"; 23 24 src = fetchFromGitea { 25 domain = "codeberg.org"; 26 owner = "dnkl"; 27 repo = "fnott"; 28 rev = version; 29 + sha256 = "sha256-+x3uN7Uj0fqO0kpHlOVnsshgEJA1z/6ZElKSTyLzfG4="; 30 }; 31 32 nativeBuildInputs = [
+2 -4
pkgs/applications/misc/orca/default.nix
··· 8 , gettext 9 , yelp-tools 10 , itstool 11 - , libxmlxx3 12 , python 13 , pygobject3 14 , gtk3 ··· 35 36 buildPythonApplication rec { 37 pname = "orca"; 38 - version = "40.0"; 39 40 format = "other"; 41 42 src = fetchurl { 43 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 44 - sha256 = "0hq0zdcn80ficpcffbk667907v6m7dih3dhyc7ss01mrj3iyw000"; 45 }; 46 47 patches = [ ··· 58 autoreconfHook 59 wrapGAppsHook 60 pkg-config 61 - libxmlxx3 62 gettext 63 yelp-tools 64 itstool
··· 8 , gettext 9 , yelp-tools 10 , itstool 11 , python 12 , pygobject3 13 , gtk3 ··· 34 35 buildPythonApplication rec { 36 pname = "orca"; 37 + version = "41.0"; 38 39 format = "other"; 40 41 src = fetchurl { 42 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 43 + sha256 = "dpflFEXhn9d05osWCtr2aHuAgXLeBBdgLhaXZra21L0="; 44 }; 45 46 patches = [ ··· 57 autoreconfHook 58 wrapGAppsHook 59 pkg-config 60 gettext 61 yelp-tools 62 itstool
+3 -3
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 18 } 19 }, 20 "beta": { 21 - "version": "95.0.4638.40", 22 - "sha256": "1v1n113rh5nzfbk5xaq4kp7fdg5n9rca978a9700nmrd0gqpd2hn", 23 - "sha256bin64": "0xadlal8fb7hqjcq6d931if555spw72wa4d23m0fqcan31sky3i0", 24 "deps": { 25 "gn": { 26 "version": "2021-08-11",
··· 18 } 19 }, 20 "beta": { 21 + "version": "95.0.4638.49", 22 + "sha256": "11fiq6p2d99hl166pf39g83pk7m7ibi1zz19wj7qmcc7ql7006jz", 23 + "sha256bin64": "04s81fnr01jq74fpl5n6jg8iw5iw6sdwyz40zja68h1crxh5d6d6", 24 "deps": { 25 "gn": { 26 "version": "2021-08-11",
+3 -3
pkgs/applications/networking/cluster/nerdctl/default.nix
··· 10 11 buildGoModule rec { 12 pname = "nerdctl"; 13 - version = "0.11.2"; 14 15 src = fetchFromGitHub { 16 owner = "containerd"; 17 repo = pname; 18 rev = "v${version}"; 19 - sha256 = "sha256-QkUE4oImP0eg5tofGEUonKzffICG4b3SuPJz9S2ZNfE="; 20 }; 21 22 - vendorSha256 = "sha256-mPOyF1S/g1FpUHHNc+cy0nxk6rK9txnZPYHOSvvfu70="; 23 24 nativeBuildInputs = [ makeWrapper installShellFiles ]; 25
··· 10 11 buildGoModule rec { 12 pname = "nerdctl"; 13 + version = "0.12.1"; 14 15 src = fetchFromGitHub { 16 owner = "containerd"; 17 repo = pname; 18 rev = "v${version}"; 19 + sha256 = "sha256-FRu1h6DT43rPaa9dcgz83w9K+xtzJgB4l/eTu+Fbb+c="; 20 }; 21 22 + vendorSha256 = "sha256-QFACe1/5MVbXKTknEyqjWclEQgJSZAJ/QljhLq/tWe4="; 23 24 nativeBuildInputs = [ makeWrapper installShellFiles ]; 25
+29 -27
pkgs/applications/networking/cluster/nixops/poetry.lock
··· 38 39 [[package]] 40 name = "boto3" 41 - version = "1.18.36" 42 description = "The AWS SDK for Python" 43 category = "main" 44 optional = false 45 python-versions = ">= 3.6" 46 47 [package.dependencies] 48 - botocore = ">=1.21.36,<1.22.0" 49 jmespath = ">=0.7.1,<1.0.0" 50 s3transfer = ">=0.5.0,<0.6.0" 51 ··· 54 55 [[package]] 56 name = "botocore" 57 - version = "1.21.36" 58 description = "Low-level, data-driven core of boto 3." 59 category = "main" 60 optional = false ··· 70 71 [[package]] 72 name = "certifi" 73 - version = "2021.5.30" 74 description = "Python package for providing Mozilla's CA Bundle." 75 category = "main" 76 optional = false ··· 89 90 [[package]] 91 name = "charset-normalizer" 92 - version = "2.0.4" 93 description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." 94 category = "main" 95 optional = false ··· 151 152 [[package]] 153 name = "jinja2" 154 - version = "3.0.1" 155 description = "A very fast and expressive template engine." 156 category = "dev" 157 optional = false ··· 173 174 [[package]] 175 name = "libvirt-python" 176 - version = "7.7.0" 177 description = "The libvirt virtualization API python binding" 178 category = "main" 179 optional = false ··· 391 392 [[package]] 393 name = "pytz" 394 - version = "2021.1" 395 description = "World timezone definitions, modern and historical" 396 category = "dev" 397 optional = false ··· 549 550 [[package]] 551 name = "typeguard" 552 - version = "2.12.1" 553 description = "Run-time type checker for Python" 554 category = "main" 555 optional = false ··· 569 570 [[package]] 571 name = "urllib3" 572 - version = "1.26.6" 573 description = "HTTP library with thread-safe connection pooling, file post, and more." 574 category = "main" 575 optional = false ··· 603 {file = "boto-2.49.0.tar.gz", hash = "sha256:ea0d3b40a2d852767be77ca343b58a9e3a4b00d9db440efb8da74b4e58025e5a"}, 604 ] 605 boto3 = [ 606 - {file = "boto3-1.18.36-py3-none-any.whl", hash = "sha256:a7fccb61d95230322dd812629455df14167307c569077fa89d297eae73605ffb"}, 607 - {file = "boto3-1.18.36.tar.gz", hash = "sha256:4df1085f5c24504a1b1a6584947f27b67c26eda123f29d3cecce9b2fd683e09b"}, 608 ] 609 botocore = [ 610 - {file = "botocore-1.21.36-py3-none-any.whl", hash = "sha256:e3e522fbe0bad1197aa7182451dc05f650310e77cf0a77749f6a5e82794c53de"}, 611 - {file = "botocore-1.21.36.tar.gz", hash = "sha256:5b9a7d30e44b8a0a2bbbde62ae01bf6c349017e836985a0248552b00bbce7fae"}, 612 ] 613 certifi = [ 614 - {file = "certifi-2021.5.30-py2.py3-none-any.whl", hash = "sha256:50b1e4f8446b06f41be7dd6338db18e0990601dce795c2b1686458aa7e8fa7d8"}, 615 - {file = "certifi-2021.5.30.tar.gz", hash = "sha256:2bbf76fd432960138b3ef6dda3dde0544f27cbf8546c458e60baf371917ba9ee"}, 616 ] 617 cffi = [ 618 {file = "cffi-1.14.6-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:22b9c3c320171c108e903d61a3723b51e37aaa8c81255b5e7ce102775bd01e2c"}, ··· 662 {file = "cffi-1.14.6.tar.gz", hash = "sha256:c9a875ce9d7fe32887784274dd533c57909b7b1dcadcc128a2ac21331a9765dd"}, 663 ] 664 charset-normalizer = [ 665 - {file = "charset-normalizer-2.0.4.tar.gz", hash = "sha256:f23667ebe1084be45f6ae0538e4a5a865206544097e4e8bbcacf42cd02a348f3"}, 666 - {file = "charset_normalizer-2.0.4-py3-none-any.whl", hash = "sha256:0c8911edd15d19223366a194a513099a302055a962bca2cec0f54b8b63175d8b"}, 667 ] 668 colorama = [ 669 {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, ··· 676 {file = "cryptography-3.4.8-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34dae04a0dce5730d8eb7894eab617d8a70d0c97da76b905de9efb7128ad7085"}, 677 {file = "cryptography-3.4.8-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1eb7bb0df6f6f583dd8e054689def236255161ebbcf62b226454ab9ec663746b"}, 678 {file = "cryptography-3.4.8-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:9965c46c674ba8cc572bc09a03f4c649292ee73e1b683adb1ce81e82e9a6a0fb"}, 679 {file = "cryptography-3.4.8-cp36-abi3-win32.whl", hash = "sha256:21ca464b3a4b8d8e86ba0ee5045e103a1fcfac3b39319727bc0fc58c09c6aff7"}, 680 {file = "cryptography-3.4.8-cp36-abi3-win_amd64.whl", hash = "sha256:3520667fda779eb788ea00080124875be18f2d8f0848ec00733c0ec3bb8219fc"}, 681 {file = "cryptography-3.4.8-pp36-pypy36_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d2a6e5ef66503da51d2110edf6c403dc6b494cc0082f85db12f54e9c5d4c3ec5"}, ··· 701 {file = "imagesize-1.2.0.tar.gz", hash = "sha256:b1f6b5a4eab1f73479a50fb79fcf729514a900c341d8503d62a62dbc4127a2b1"}, 702 ] 703 jinja2 = [ 704 - {file = "Jinja2-3.0.1-py3-none-any.whl", hash = "sha256:1f06f2da51e7b56b8f238affdd6b4e2c61e39598a378cc49345bc1bd42a978a4"}, 705 - {file = "Jinja2-3.0.1.tar.gz", hash = "sha256:703f484b47a6af502e743c9122595cc812b0271f661722403114f71a79d0f5a4"}, 706 ] 707 jmespath = [ 708 {file = "jmespath-0.10.0-py2.py3-none-any.whl", hash = "sha256:cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f"}, 709 {file = "jmespath-0.10.0.tar.gz", hash = "sha256:b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9"}, 710 ] 711 libvirt-python = [ 712 - {file = "libvirt-python-7.7.0.tar.gz", hash = "sha256:cc8d6528cef7cf395c5d97566328f16faef6b5653a500b0e88c9c0fc36b72cdb"}, 713 ] 714 markupsafe = [ 715 {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d8446c54dc28c01e5a2dbac5a25f071f6653e6e40f3a8818e8b45d790fe6ef53"}, ··· 804 {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, 805 ] 806 pytz = [ 807 - {file = "pytz-2021.1-py2.py3-none-any.whl", hash = "sha256:eb10ce3e7736052ed3623d49975ce333bcd712c7bb19a58b9e2089d4057d0798"}, 808 - {file = "pytz-2021.1.tar.gz", hash = "sha256:83a4a90894bf38e243cf052c8b58f381bfe9a7a483f6a9cab140bc7f702ac4da"}, 809 ] 810 requests = [ 811 {file = "requests-2.26.0-py2.py3-none-any.whl", hash = "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24"}, ··· 852 {file = "sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl", hash = "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd"}, 853 ] 854 typeguard = [ 855 - {file = "typeguard-2.12.1-py3-none-any.whl", hash = "sha256:cc15ef2704c9909ef9c80e19c62fb8468c01f75aad12f651922acf4dbe822e02"}, 856 - {file = "typeguard-2.12.1.tar.gz", hash = "sha256:c2af8b9bdd7657f4bd27b45336e7930171aead796711bc4cfc99b4731bb9d051"}, 857 ] 858 typing-extensions = [ 859 {file = "typing_extensions-3.10.0.2-py2-none-any.whl", hash = "sha256:d8226d10bc02a29bcc81df19a26e56a9647f8b0a6d4a83924139f4a8b01f17b7"}, ··· 861 {file = "typing_extensions-3.10.0.2.tar.gz", hash = "sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e"}, 862 ] 863 urllib3 = [ 864 - {file = "urllib3-1.26.6-py2.py3-none-any.whl", hash = "sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4"}, 865 - {file = "urllib3-1.26.6.tar.gz", hash = "sha256:f57b4c16c62fa2760b7e3d97c35b255512fb6b59a259730f36ba32ce9f8e342f"}, 866 ]
··· 38 39 [[package]] 40 name = "boto3" 41 + version = "1.18.60" 42 description = "The AWS SDK for Python" 43 category = "main" 44 optional = false 45 python-versions = ">= 3.6" 46 47 [package.dependencies] 48 + botocore = ">=1.21.60,<1.22.0" 49 jmespath = ">=0.7.1,<1.0.0" 50 s3transfer = ">=0.5.0,<0.6.0" 51 ··· 54 55 [[package]] 56 name = "botocore" 57 + version = "1.21.60" 58 description = "Low-level, data-driven core of boto 3." 59 category = "main" 60 optional = false ··· 70 71 [[package]] 72 name = "certifi" 73 + version = "2021.10.8" 74 description = "Python package for providing Mozilla's CA Bundle." 75 category = "main" 76 optional = false ··· 89 90 [[package]] 91 name = "charset-normalizer" 92 + version = "2.0.7" 93 description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." 94 category = "main" 95 optional = false ··· 151 152 [[package]] 153 name = "jinja2" 154 + version = "3.0.2" 155 description = "A very fast and expressive template engine." 156 category = "dev" 157 optional = false ··· 173 174 [[package]] 175 name = "libvirt-python" 176 + version = "7.8.0" 177 description = "The libvirt virtualization API python binding" 178 category = "main" 179 optional = false ··· 391 392 [[package]] 393 name = "pytz" 394 + version = "2021.3" 395 description = "World timezone definitions, modern and historical" 396 category = "dev" 397 optional = false ··· 549 550 [[package]] 551 name = "typeguard" 552 + version = "2.13.0" 553 description = "Run-time type checker for Python" 554 category = "main" 555 optional = false ··· 569 570 [[package]] 571 name = "urllib3" 572 + version = "1.26.7" 573 description = "HTTP library with thread-safe connection pooling, file post, and more." 574 category = "main" 575 optional = false ··· 603 {file = "boto-2.49.0.tar.gz", hash = "sha256:ea0d3b40a2d852767be77ca343b58a9e3a4b00d9db440efb8da74b4e58025e5a"}, 604 ] 605 boto3 = [ 606 + {file = "boto3-1.18.60-py3-none-any.whl", hash = "sha256:8f3face72d2ac6ad36bd7724410548891ce338b350e6f98574890a7b1d425d78"}, 607 + {file = "boto3-1.18.60.tar.gz", hash = "sha256:45709a04ec5fb67ce5a8eaade3eb0ab24d6eb08d9a9ca6bdb2153047896197fc"}, 608 ] 609 botocore = [ 610 + {file = "botocore-1.21.60-py3-none-any.whl", hash = "sha256:890a5835ac00415ff78f1c7118a774aae83c0c70742284b68abd1176f9d05761"}, 611 + {file = "botocore-1.21.60.tar.gz", hash = "sha256:3e746ca75fb7539ba3f001169264fa54dfaded2477ffc8bd979ce1e1df200620"}, 612 ] 613 certifi = [ 614 + {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"}, 615 + {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"}, 616 ] 617 cffi = [ 618 {file = "cffi-1.14.6-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:22b9c3c320171c108e903d61a3723b51e37aaa8c81255b5e7ce102775bd01e2c"}, ··· 662 {file = "cffi-1.14.6.tar.gz", hash = "sha256:c9a875ce9d7fe32887784274dd533c57909b7b1dcadcc128a2ac21331a9765dd"}, 663 ] 664 charset-normalizer = [ 665 + {file = "charset-normalizer-2.0.7.tar.gz", hash = "sha256:e019de665e2bcf9c2b64e2e5aa025fa991da8720daa3c1138cadd2fd1856aed0"}, 666 + {file = "charset_normalizer-2.0.7-py3-none-any.whl", hash = "sha256:f7af805c321bfa1ce6714c51f254e0d5bb5e5834039bc17db7ebe3a4cec9492b"}, 667 ] 668 colorama = [ 669 {file = "colorama-0.4.4-py2.py3-none-any.whl", hash = "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2"}, ··· 676 {file = "cryptography-3.4.8-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34dae04a0dce5730d8eb7894eab617d8a70d0c97da76b905de9efb7128ad7085"}, 677 {file = "cryptography-3.4.8-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1eb7bb0df6f6f583dd8e054689def236255161ebbcf62b226454ab9ec663746b"}, 678 {file = "cryptography-3.4.8-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:9965c46c674ba8cc572bc09a03f4c649292ee73e1b683adb1ce81e82e9a6a0fb"}, 679 + {file = "cryptography-3.4.8-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:3c4129fc3fdc0fa8e40861b5ac0c673315b3c902bbdc05fc176764815b43dd1d"}, 680 + {file = "cryptography-3.4.8-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:695104a9223a7239d155d7627ad912953b540929ef97ae0c34c7b8bf30857e89"}, 681 {file = "cryptography-3.4.8-cp36-abi3-win32.whl", hash = "sha256:21ca464b3a4b8d8e86ba0ee5045e103a1fcfac3b39319727bc0fc58c09c6aff7"}, 682 {file = "cryptography-3.4.8-cp36-abi3-win_amd64.whl", hash = "sha256:3520667fda779eb788ea00080124875be18f2d8f0848ec00733c0ec3bb8219fc"}, 683 {file = "cryptography-3.4.8-pp36-pypy36_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d2a6e5ef66503da51d2110edf6c403dc6b494cc0082f85db12f54e9c5d4c3ec5"}, ··· 703 {file = "imagesize-1.2.0.tar.gz", hash = "sha256:b1f6b5a4eab1f73479a50fb79fcf729514a900c341d8503d62a62dbc4127a2b1"}, 704 ] 705 jinja2 = [ 706 + {file = "Jinja2-3.0.2-py3-none-any.whl", hash = "sha256:8569982d3f0889eed11dd620c706d39b60c36d6d25843961f33f77fb6bc6b20c"}, 707 + {file = "Jinja2-3.0.2.tar.gz", hash = "sha256:827a0e32839ab1600d4eb1c4c33ec5a8edfbc5cb42dafa13b81f182f97784b45"}, 708 ] 709 jmespath = [ 710 {file = "jmespath-0.10.0-py2.py3-none-any.whl", hash = "sha256:cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f"}, 711 {file = "jmespath-0.10.0.tar.gz", hash = "sha256:b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9"}, 712 ] 713 libvirt-python = [ 714 + {file = "libvirt-python-7.8.0.tar.gz", hash = "sha256:9d07416d66805bf1a17f34491b3ced2ac6c42b6a012ddf9177e0e3ae1b103fd5"}, 715 ] 716 markupsafe = [ 717 {file = "MarkupSafe-2.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d8446c54dc28c01e5a2dbac5a25f071f6653e6e40f3a8818e8b45d790fe6ef53"}, ··· 806 {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, 807 ] 808 pytz = [ 809 + {file = "pytz-2021.3-py2.py3-none-any.whl", hash = "sha256:3672058bc3453457b622aab7a1c3bfd5ab0bdae451512f6cf25f64ed37f5b87c"}, 810 + {file = "pytz-2021.3.tar.gz", hash = "sha256:acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326"}, 811 ] 812 requests = [ 813 {file = "requests-2.26.0-py2.py3-none-any.whl", hash = "sha256:6c1246513ecd5ecd4528a0906f910e8f0f9c6b8ec72030dc9fd154dc1a6efd24"}, ··· 854 {file = "sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl", hash = "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd"}, 855 ] 856 typeguard = [ 857 + {file = "typeguard-2.13.0-py3-none-any.whl", hash = "sha256:0bc44d1ff865b522eda969627868b0e001c8329296ce50aededbea03febc79ee"}, 858 + {file = "typeguard-2.13.0.tar.gz", hash = "sha256:04e38f92eb59410c9375d3be23df65e0a7643f2e8bcbd421423d808d2f9e99df"}, 859 ] 860 typing-extensions = [ 861 {file = "typing_extensions-3.10.0.2-py2-none-any.whl", hash = "sha256:d8226d10bc02a29bcc81df19a26e56a9647f8b0a6d4a83924139f4a8b01f17b7"}, ··· 863 {file = "typing_extensions-3.10.0.2.tar.gz", hash = "sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e"}, 864 ] 865 urllib3 = [ 866 + {file = "urllib3-1.26.7-py2.py3-none-any.whl", hash = "sha256:c4fdf4019605b6e5423637e01bc9fe4daef873709a7973e195ceba0a62bbc844"}, 867 + {file = "urllib3-1.26.7.tar.gz", hash = "sha256:4987c65554f7a2dbf30c18fd48778ef124af6fab771a377103da0585e2336ece"}, 868 ]
+2 -2
pkgs/applications/networking/cluster/nomad/1.0.nix
··· 6 7 callPackage ./generic.nix { 8 inherit buildGoPackage nvidia_x11 nvidiaGpuSupport; 9 - version = "1.0.11"; 10 - sha256 = "15h7w020p576zl91s5mr4npcmngrqqfj9xzlx6bk9i1cp6h4w0jy"; 11 }
··· 6 7 callPackage ./generic.nix { 8 inherit buildGoPackage nvidia_x11 nvidiaGpuSupport; 9 + version = "1.0.12"; 10 + sha256 = "04fqliz7y4zzs4xraid54mqxwgrzh138nmfcs876vp534slvikpi"; 11 }
+2 -2
pkgs/applications/networking/cluster/nomad/1.1.nix
··· 6 7 callPackage ./genericModule.nix { 8 inherit buildGoModule nvidia_x11 nvidiaGpuSupport; 9 - version = "1.1.5"; 10 - sha256 = "03gxh12bd5mj1l4q3xilil806dsqaqmz93ff7ysf441frgkx3iy3"; 11 vendorSha256 = "0rfd22rf76mwj489zhswah4g3dhhz6davm336xgm9dbnyaz9d8r0"; 12 }
··· 6 7 callPackage ./genericModule.nix { 8 inherit buildGoModule nvidia_x11 nvidiaGpuSupport; 9 + version = "1.1.6"; 10 + sha256 = "1q6fqay1s9qwimjwlldc8hr6009cgx3ghz142mdx36jjv9isj9ln"; 11 vendorSha256 = "0rfd22rf76mwj489zhswah4g3dhhz6davm336xgm9dbnyaz9d8r0"; 12 }
+5 -4
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 1095 "version": "0.1.0" 1096 }, 1097 "vault": { 1098 - "owner": "terraform-providers", 1099 "provider-source-address": "registry.terraform.io/hashicorp/vault", 1100 "repo": "terraform-provider-vault", 1101 - "rev": "v2.11.0", 1102 - "sha256": "1yzakc7jp0rs9axnfdqw409asrbjhq0qa7xn4xzpi7m94g1ii12d", 1103 - "version": "2.11.0" 1104 }, 1105 "vcd": { 1106 "owner": "terraform-providers",
··· 1095 "version": "0.1.0" 1096 }, 1097 "vault": { 1098 + "owner": "hashicorp", 1099 "provider-source-address": "registry.terraform.io/hashicorp/vault", 1100 "repo": "terraform-provider-vault", 1101 + "rev": "v2.24.1", 1102 + "sha256": "1xk14q06js774lqyylkbp53dnlsbgh3vi38mqqmndh80xigs6d99", 1103 + "version": "2.24.1", 1104 + "vendorSha256": "1ksla455qfgxpk2dmq3pg52nyyw3v0bg6fm5s60j6cb0lzvjbq48" 1105 }, 1106 "vcd": { 1107 "owner": "terraform-providers",
+2 -2
pkgs/applications/networking/flexget/default.nix
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "flexget"; 5 - version = "3.1.137"; 6 7 # Fetch from GitHub in order to use `requirements.in` 8 src = fetchFromGitHub { 9 owner = "flexget"; 10 repo = "flexget"; 11 rev = "v${version}"; 12 - sha256 = "15zl97laijn42rhh524rfb3h1rky461hwfnlny2maa3h61889xrv"; 13 }; 14 15 postPatch = ''
··· 2 3 python3Packages.buildPythonApplication rec { 4 pname = "flexget"; 5 + version = "3.1.138"; 6 7 # Fetch from GitHub in order to use `requirements.in` 8 src = fetchFromGitHub { 9 owner = "flexget"; 10 repo = "flexget"; 11 rev = "v${version}"; 12 + sha256 = "0xjcvq7c6rrgqw8cfcfl7af122lm428cqz3v6ssxi595qxq1rg44"; 13 }; 14 15 postPatch = ''
+2 -1
pkgs/applications/networking/instant-messengers/mattermost-desktop/default.nix
··· 2 freetype, fontconfig, dbus, libX11, xorg, libXi, libXcursor, libXdamage, 3 libXrandr, libXcomposite, libXext, libXfixes, libXrender, libXtst, 4 libXScrnSaver, nss, nspr, alsa-lib, cups, expat, udev, wrapGAppsHook, 5 - hicolor-icon-theme, libuuid, at-spi2-core, at-spi2-atk }: 6 7 let 8 rpath = lib.makeLibraryPath [ ··· 21 gnome2.GConf 22 gtk3 23 pango 24 libuuid 25 libX11 26 libXScrnSaver
··· 2 freetype, fontconfig, dbus, libX11, xorg, libXi, libXcursor, libXdamage, 3 libXrandr, libXcomposite, libXext, libXfixes, libXrender, libXtst, 4 libXScrnSaver, nss, nspr, alsa-lib, cups, expat, udev, wrapGAppsHook, 5 + hicolor-icon-theme, libuuid, at-spi2-core, at-spi2-atk, libappindicator-gtk3 }: 6 7 let 8 rpath = lib.makeLibraryPath [ ··· 21 gnome2.GConf 22 gtk3 23 pango 24 + libappindicator-gtk3 25 libuuid 26 libX11 27 libXScrnSaver
+42 -16
pkgs/applications/networking/mailreaders/tutanota-desktop/default.nix
··· 1 - { lib, fetchurl, appimageTools }: 2 3 - let 4 pname = "tutanota-desktop"; 5 version = "3.88.4"; 6 - name = "tutanota-desktop-${version}"; 7 src = fetchurl { 8 - url = "https://mail.tutanota.com/desktop/tutanota-desktop-linux.AppImage"; 9 - name = "tutanota-desktop-${version}.AppImage"; 10 - sha256 = "sha256-MwvH6SGZwcvxAr5olklqKTF2p2pv8+F5qwpmwN3uZkc="; 11 }; 12 - appimageContents = appimageTools.extractType2 { inherit name src; }; 13 14 - in appimageTools.wrapType2 { 15 - inherit name src; 16 17 - extraPkgs = pkgs: (appimageTools.defaultFhsEnvArgs.multiPkgs pkgs) ++ [ pkgs.libsecret ]; 18 19 - extraInstallCommands = '' 20 - mv $out/bin/${name} $out/bin/${pname} 21 22 - install -m 444 -D ${appimageContents}/tutanota-desktop.desktop -t $out/share/applications 23 - substituteInPlace $out/share/applications/tutanota-desktop.desktop \ 24 - --replace 'Exec=AppRun' 'Exec=${pname}' 25 - cp -r ${appimageContents}/usr/share/icons $out/share 26 ''; 27 28 meta = with lib; {
··· 1 + { stdenv, lib, fetchurl, makeDesktopItem, copyDesktopItems, makeWrapper, 2 + electron, libsecret }: 3 4 + stdenv.mkDerivation rec { 5 pname = "tutanota-desktop"; 6 version = "3.88.4"; 7 + 8 src = fetchurl { 9 + url = "https://github.com/tutao/tutanota/releases/download/tutanota-release-${version}/${pname}-${version}-unpacked-linux.tar.gz"; 10 + name = "tutanota-desktop-${version}.tar.gz"; 11 + sha256 = "sha256-UOb63+NfW6mHKaj3PDEzvz5hcmJBIISq02rtwgSZMjo="; 12 }; 13 14 + nativeBuildInputs = [ 15 + copyDesktopItems 16 + makeWrapper 17 + ]; 18 19 + dontConfigure = true; 20 + dontBuild = true; 21 22 + desktopItems = makeDesktopItem { 23 + name = pname; 24 + exec = "tutanota-desktop"; 25 + icon = "tutanota-desktop"; 26 + comment = meta.description; 27 + desktopName = "Tutanota Desktop"; 28 + genericName = "Email Reader"; 29 + }; 30 31 + installPhase = '' 32 + runHook preInstall 33 + 34 + mkdir -p $out/bin $out/opt/tutanota-desktop $out/share/tutanota-desktop 35 + 36 + cp -r ./ $out/opt/tutanota-desktop 37 + mv $out/opt/tutanota-desktop/{locales,resources} $out/share/tutanota-desktop 38 + 39 + for icon_size in 64 512; do 40 + icon=resources/icons/icon/$icon_size.png 41 + path=$out/share/icons/hicolor/$icon_size'x'$icon_size/apps/tutanota-desktop.png 42 + install -Dm644 $icon $path 43 + done 44 + 45 + makeWrapper ${electron}/bin/electron \ 46 + $out/bin/tutanota-desktop \ 47 + --add-flags $out/share/tutanota-desktop/resources/app.asar \ 48 + --run "mkdir /tmp/tutanota" \ 49 + --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libsecret ]} 50 + 51 + runHook postInstall 52 ''; 53 54 meta = with lib; {
+1 -1
pkgs/applications/science/logic/coq/default.nix
··· 44 "8.13.0".sha256 = "0sjbqmz6qcvnz0hv87xha80qbhvmmyd675wyc5z4rgr34j2l1ymd"; 45 "8.13.1".sha256 = "0xx2ns84mlip9bg2mkahy3pmc5zfcgrjxsviq9yijbzy1r95wf0n"; 46 "8.13.2".sha256 = "1884vbmwmqwn9ngibax6dhnqh4cc02l0s2ajc6jb1xgr0i60whjk"; 47 - "8.14+rc1".sha256 = "0jrkgj7c2959dsinw4x7q4ril1x24qq08snl25hgx33ls4sym5zb"; 48 }; 49 releaseRev = v: "V${v}"; 50 fetched = import ../../../../build-support/coq/meta-fetch/default.nix
··· 44 "8.13.0".sha256 = "0sjbqmz6qcvnz0hv87xha80qbhvmmyd675wyc5z4rgr34j2l1ymd"; 45 "8.13.1".sha256 = "0xx2ns84mlip9bg2mkahy3pmc5zfcgrjxsviq9yijbzy1r95wf0n"; 46 "8.13.2".sha256 = "1884vbmwmqwn9ngibax6dhnqh4cc02l0s2ajc6jb1xgr0i60whjk"; 47 + "8.14.0".sha256 = "04y2z0qyvag66zanfyc3f9agvmzbn4lsr0p1l7ck6yjhqx7vbm17"; 48 }; 49 releaseRev = v: "V${v}"; 50 fetched = import ../../../../build-support/coq/meta-fetch/default.nix
+9 -4
pkgs/applications/science/logic/yices/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "yices"; 5 - version = "2.6.3"; 6 7 src = fetchFromGitHub { 8 owner = "SRI-CSL"; 9 repo = "yices2"; 10 rev = "Yices-${version}"; 11 - sha256 = "01fi818lbkwilfcf1dz2dpxkcc1kh8ls0sl5aynyx9pwfn2v03zl"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook ]; ··· 25 # Usual shenanigans 26 patchPhase = "patchShebangs tests/regress/check.sh"; 27 28 - # Includes a fix for the embedded soname being libyices.so.2.5, but 29 - # only installing the libyices.so.2.5.x file. 30 installPhase = let 31 ver_XdotY = lib.versions.majorMinor version; 32 in '' 33 make install LDCONFIG=true 34 ln -sfr $out/lib/libyices.so.{${version},${ver_XdotY}} 35 ''; 36
··· 2 3 stdenv.mkDerivation rec { 4 pname = "yices"; 5 + # We never want X.Y.${odd} versions as they are moving development tags. 6 + version = "2.6.2"; 7 8 src = fetchFromGitHub { 9 owner = "SRI-CSL"; 10 repo = "yices2"; 11 rev = "Yices-${version}"; 12 + sha256 = "1jx3854zxvfhxrdshbipxfgyq1yxb9ll9agjc2n0cj4vxkjyh9mn"; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook ]; ··· 26 # Usual shenanigans 27 patchPhase = "patchShebangs tests/regress/check.sh"; 28 29 + # Includes a fix for the embedded soname being libyices.so.X.Y, but 30 + # only installing the libyices.so.X.Y.Z file. 31 installPhase = let 32 ver_XdotY = lib.versions.majorMinor version; 33 in '' 34 make install LDCONFIG=true 35 + # guard against packaging of unstable versions: they 36 + # have a soname of hext (not current) release. 37 + echo "Checking expected library version to be ${version}" 38 + [ -f $out/lib/libyices.so.${version} ] 39 ln -sfr $out/lib/libyices.so.{${version},${ver_XdotY}} 40 ''; 41
+3 -3
pkgs/applications/version-management/git-and-tools/gitui/default.nix
··· 1 { lib, stdenv, rustPlatform, fetchFromGitHub, libiconv, perl, python3, Security, AppKit, openssl, xclip, pkg-config }: 2 rustPlatform.buildRustPackage rec { 3 pname = "gitui"; 4 - version = "0.17.1"; 5 6 src = fetchFromGitHub { 7 owner = "extrawurst"; 8 repo = pname; 9 rev = "v${version}"; 10 - sha256 = "sha256-dRHlbxNV4nS50WbJP5lD1zB7NkZmv7nlPUm3RlQIBtc="; 11 }; 12 13 - cargoSha256 = "sha256-9uRvxax0SrvRkD89mbZPxsfRItde11joA/ZgnXK9XBE="; 14 15 nativeBuildInputs = [ python3 perl pkg-config ]; 16 buildInputs = [ openssl ]
··· 1 { lib, stdenv, rustPlatform, fetchFromGitHub, libiconv, perl, python3, Security, AppKit, openssl, xclip, pkg-config }: 2 rustPlatform.buildRustPackage rec { 3 pname = "gitui"; 4 + version = "0.18.0"; 5 6 src = fetchFromGitHub { 7 owner = "extrawurst"; 8 repo = pname; 9 rev = "v${version}"; 10 + sha256 = "sha256-NzE2eT3QxnbDW63Cnv6M7IlYgb2XuymphwaL1PTfcyQ="; 11 }; 12 13 + cargoSha256 = "sha256-9SWovdjYfeneqOVl+I+tuJTIC/htC7h1tXi2KUbdYb8="; 14 15 nativeBuildInputs = [ python3 perl pkg-config ]; 16 buildInputs = [ openssl ]
+1 -1
pkgs/applications/version-management/meld/default.nix
··· 59 passthru = { 60 updateScript = gnome.updateScript { 61 packageName = pname; 62 - versionPolicy = "odd-unstable"; 63 }; 64 }; 65
··· 59 passthru = { 60 updateScript = gnome.updateScript { 61 packageName = pname; 62 + versionPolicy = "none"; # should be odd-unstable but we are tracking unstable versions for now 63 }; 64 }; 65
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 { 2 - "commit": "ba457d86df5e8781485cf1b109f249ecf00ee4c6", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/ba457d86df5e8781485cf1b109f249ecf00ee4c6.tar.gz", 4 - "sha256": "1h1qnllhdfp6n71b36jw8kaw7kani76z3mmbigrvy8cmkbvj2mdc", 5 - "msg": "Update from Hackage at 2021-10-08T09:46:02Z" 6 }
··· 1 { 2 + "commit": "67f421ee170f4f161832c146be8ef87499ff0d37", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/67f421ee170f4f161832c146be8ef87499ff0d37.tar.gz", 4 + "sha256": "0rzwh0iff4xn499vvzv960gmrd85z6amjbbsyhb5qcldcap5jpjs", 5 + "msg": "Update from Hackage at 2021-10-11T20:00:11Z" 6 }
+4 -2
pkgs/desktops/gnome/apps/gnome-connections/default.nix
··· 13 , wrapGAppsHook 14 , glib 15 , gtk3 16 , libxml2 17 , gtk-vnc 18 , gtk-frdp ··· 21 22 stdenv.mkDerivation rec { 23 pname = "gnome-connections"; 24 - version = "40.0.1"; 25 26 src = fetchurl { 27 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 28 - hash = "sha256-vpvLoHzz+vWs4M5UzSL4YJtNx3ZuJe5f2cGAw5WbTRE="; 29 }; 30 31 nativeBuildInputs = [ ··· 46 glib 47 gtk-vnc 48 gtk3 49 libxml2 50 gtk-frdp 51 ];
··· 13 , wrapGAppsHook 14 , glib 15 , gtk3 16 + , libhandy 17 , libxml2 18 , gtk-vnc 19 , gtk-frdp ··· 22 23 stdenv.mkDerivation rec { 24 pname = "gnome-connections"; 25 + version = "41.0"; 26 27 src = fetchurl { 28 url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 29 + hash = "sha256-M5/1VaEI0gt6sPO/GCmWMWAYYOeO+peLpqudGO3DtGA="; 30 }; 31 32 nativeBuildInputs = [ ··· 47 glib 48 gtk-vnc 49 gtk3 50 + libhandy 51 libxml2 52 gtk-frdp 53 ];
+2 -2
pkgs/desktops/gnome/core/evince/default.nix
··· 44 45 stdenv.mkDerivation rec { 46 pname = "evince"; 47 - version = "40.4"; 48 49 outputs = [ "out" "dev" "devdoc" ]; 50 51 src = fetchurl { 52 url = "mirror://gnome/sources/evince/${lib.versions.major version}/${pname}-${version}.tar.xz"; 53 - sha256 = "M0IFAODgYPF4pDUGMZfULa57Z+OcxDepZRCjPd9+lfs="; 54 }; 55 56 postPatch = ''
··· 44 45 stdenv.mkDerivation rec { 46 pname = "evince"; 47 + version = "41.2"; 48 49 outputs = [ "out" "dev" "devdoc" ]; 50 51 src = fetchurl { 52 url = "mirror://gnome/sources/evince/${lib.versions.major version}/${pname}-${version}.tar.xz"; 53 + sha256 = "lautDW/urJVg2zq4C6fF6rsf3xyg47PJMzmvBUU6JNg="; 54 }; 55 56 postPatch = ''
+5 -4
pkgs/desktops/gnome/core/gucharmap/default.nix
··· 1 - { lib, stdenv 2 , intltool 3 , fetchFromGitLab 4 , meson ··· 11 , desktop-file-utils 12 , gtk-doc 13 , wrapGAppsHook 14 - , gnome 15 , itstool 16 , libxml2 17 , yelp-tools ··· 25 , runCommand 26 , symlinkJoin 27 , gobject-introspection 28 }: 29 30 let ··· 93 ''; 94 95 passthru = { 96 - updateScript = gnome.updateScript { 97 - packageName = pname; 98 }; 99 }; 100
··· 1 + { stdenv 2 + , lib 3 , intltool 4 , fetchFromGitLab 5 , meson ··· 12 , desktop-file-utils 13 , gtk-doc 14 , wrapGAppsHook 15 , itstool 16 , libxml2 17 , yelp-tools ··· 25 , runCommand 26 , symlinkJoin 27 , gobject-introspection 28 + , nix-update-script 29 }: 30 31 let ··· 94 ''; 95 96 passthru = { 97 + updateScript = nix-update-script { 98 + attrPath = "gnome.gucharmap"; 99 }; 100 }; 101
+2 -2
pkgs/desktops/gnome/core/totem/default.nix
··· 30 31 stdenv.mkDerivation rec { 32 pname = "totem"; 33 - version = "3.38.1"; 34 35 src = fetchurl { 36 url = "mirror://gnome/sources/totem/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 37 - sha256 = "j/rPfA6inO3qBndzCGHUh2qPesTaTGI0u3X3/TcFoQg="; 38 }; 39 40 nativeBuildInputs = [
··· 30 31 stdenv.mkDerivation rec { 32 pname = "totem"; 33 + version = "3.38.2"; 34 35 src = fetchurl { 36 url = "mirror://gnome/sources/totem/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 37 + sha256 = "/OVi4rJsvPwMZ4U43MgfncFc5g1aie5DWJB79jQwTEA="; 38 }; 39 40 nativeBuildInputs = [
+5 -5
pkgs/desktops/gnome/extensions/dash-to-dock/default.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "gnome-shell-extension-dash-to-dock"; 10 - version = "unstable-2021-07-07"; 11 12 - # temporarily switched to https://github.com/micheleg/dash-to-dock/pull/1402 because upstream doesn't work with GNOME 40 yet. 13 src = fetchFromGitHub { 14 - owner = "ewlsh"; 15 repo = "dash-to-dock"; 16 - rev = "e4beec847181e4163b0a99ceaef4c4582cc8ae4c"; 17 - hash = "sha256-7UVnLXH7COnIbqxbt3CCscuu1YyPH6ax5DlKdaHCT/0="; 18 }; 19 20 nativeBuildInputs = [
··· 7 8 stdenv.mkDerivation rec { 9 pname = "gnome-shell-extension-dash-to-dock"; 10 + version = "unstable-2021-10-03"; 11 12 + # temporarily switched to commit hash because GNOME 40 version is not released yet. 13 src = fetchFromGitHub { 14 + owner = "micheleg"; 15 repo = "dash-to-dock"; 16 + rev = "9605dd69fe86d4f92416299c3f62605e75827dd3"; 17 + sha256 = "0vrkiq5z2f11gqlfyis2rsnp6j25hwsp24s21vr55qkzkfszsigg"; 18 }; 19 20 nativeBuildInputs = [
+1
pkgs/desktops/plasma-5/plasma-workspace/default.nix
··· 24 25 mkDerivation { 26 name = "plasma-workspace"; 27 28 nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 29 buildInputs = [
··· 24 25 mkDerivation { 26 name = "plasma-workspace"; 27 + passthru.providedSessions = [ "plasma" "plasmawayland" ]; 28 29 nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 30 buildInputs = [
+62
pkgs/development/compilers/ligo/default.nix
···
··· 1 + { lib 2 + , fetchFromGitLab 3 + , coq 4 + , cacert 5 + }: 6 + 7 + coq.ocamlPackages.buildDunePackage rec { 8 + pname = "ligo"; 9 + version = "0.26.0"; 10 + src = fetchFromGitLab { 11 + owner = "ligolang"; 12 + repo = "ligo"; 13 + rev = "d48098c6724bc0a62170c2f9ff73c792c71c8452"; 14 + sha256 = "sha256-uu5985llYsi/9ExKZetk48FqU0sJQB1EirdT/pUw0DA="; 15 + }; 16 + 17 + # The build picks this up for ligo --version 18 + LIGO_VERSION=version; 19 + 20 + useDune2 = true; 21 + 22 + buildInputs = with coq.ocamlPackages; [ 23 + coq 24 + menhir 25 + menhirLib 26 + qcheck 27 + ocamlgraph 28 + ppx_deriving 29 + ppx_deriving_yojson 30 + ppx_expect 31 + tezos-base 32 + tezos-shell-services 33 + tezos-010-PtGRANAD-test-helpers 34 + tezos-protocol-010-PtGRANAD-parameters 35 + tezos-protocol-010-PtGRANAD 36 + tezos-protocol-environment 37 + yojson 38 + getopt 39 + terminal_size 40 + pprint 41 + linenoise 42 + data-encoding 43 + bisect_ppx 44 + cmdliner 45 + ]; 46 + 47 + checkInputs = [ 48 + cacert 49 + coq.ocamlPackages.ca-certs 50 + ]; 51 + 52 + doCheck = true; 53 + 54 + meta = with lib; { 55 + homepage = "https://ligolang.org/"; 56 + downloadPage = "https://ligolang.org/docs/intro/installation"; 57 + description = "A friendly Smart Contract Language for Tezos"; 58 + license = licenses.mit; 59 + platforms = [ "x86_64-linux" ]; 60 + maintainers = with maintainers; [ ulrikstrid ]; 61 + }; 62 + }
-2
pkgs/development/compilers/llvm/13/libcxxabi/default.nix
··· 14 15 postUnpack = lib.optionalString stdenv.isDarwin '' 16 export TRIPLE=x86_64-apple-darwin 17 - '' + lib.optionalString stdenv.hostPlatform.isMusl '' 18 - patch -p1 -d libcxx -i ${../../libcxx-0001-musl-hacks.patch} 19 '' + lib.optionalString stdenv.hostPlatform.isWasm '' 20 patch -p1 -d llvm -i ${./wasm.patch} 21 '';
··· 14 15 postUnpack = lib.optionalString stdenv.isDarwin '' 16 export TRIPLE=x86_64-apple-darwin 17 '' + lib.optionalString stdenv.hostPlatform.isWasm '' 18 patch -p1 -d llvm -i ${./wasm.patch} 19 '';
-2
pkgs/development/compilers/llvm/git/libcxxabi/default.nix
··· 14 15 postUnpack = lib.optionalString stdenv.isDarwin '' 16 export TRIPLE=x86_64-apple-darwin 17 - '' + lib.optionalString stdenv.hostPlatform.isMusl '' 18 - patch -p1 -d libcxx -i ${../../libcxx-0001-musl-hacks.patch} 19 '' + lib.optionalString stdenv.hostPlatform.isWasm '' 20 patch -p1 -d llvm -i ${./wasm.patch} 21 '';
··· 14 15 postUnpack = lib.optionalString stdenv.isDarwin '' 16 export TRIPLE=x86_64-apple-darwin 17 '' + lib.optionalString stdenv.hostPlatform.isWasm '' 18 patch -p1 -d llvm -i ${./wasm.patch} 19 '';
+5 -4
pkgs/development/compilers/vala/default.nix
··· 91 doCheck = false; # fails, requires dbus daemon 92 93 passthru = { 94 - updateScript = gnome.updateScript { 95 - attrPath = "${pname}_${lib.versions.major version}_${lib.versions.minor version}"; 96 - packageName = pname; 97 - }; 98 }; 99 100 meta = with lib; {
··· 91 doCheck = false; # fails, requires dbus daemon 92 93 passthru = { 94 + updateScript = gnome.updateScript { 95 + attrPath = "${pname}_${lib.versions.major version}_${lib.versions.minor version}"; 96 + packageName = pname; 97 + freeze = true; 98 + }; 99 }; 100 101 meta = with lib; {
+4 -2
pkgs/development/coq-modules/goedel/default.nix
··· 5 pname = "goedel"; 6 owner = "coq-community"; 7 8 - release."8.12.0".rev = "v8.12.0"; 9 release."8.12.0".sha256 = "sha256-4lAwWFHGUzPcfHI9u5b+N+7mQ0sLJ8bH8beqQubfFEQ="; 10 11 inherit version; 12 defaultVersion = with versions; switch coq.coq-version [ 13 - { case = range "8.11" "8.13"; out = "8.12.0"; } 14 ] null; 15 16 propagatedBuildInputs = [ hydra-battles pocklington ];
··· 5 pname = "goedel"; 6 owner = "coq-community"; 7 8 + releaseRev = (v: "v${v}"); 9 + 10 release."8.12.0".sha256 = "sha256-4lAwWFHGUzPcfHI9u5b+N+7mQ0sLJ8bH8beqQubfFEQ="; 11 + release."8.13.0".sha256 = "0sqqkmj6wsk4xmhrnqkhcsbsrqjzn2gnk67nqzgrmjpw5danz8y5"; 12 13 inherit version; 14 defaultVersion = with versions; switch coq.coq-version [ 15 + { case = range "8.11" "8.14"; out = "8.13.0"; } 16 ] null; 17 18 propagatedBuildInputs = [ hydra-battles pocklington ];
+2 -2
pkgs/development/haskell-modules/configuration-common.nix
··· 64 name = "git-annex-${super.git-annex.version}-src"; 65 url = "git://git-annex.branchable.com/"; 66 rev = "refs/tags/" + super.git-annex.version; 67 - sha256 = "1022ff2x9jvi2a0820lbgmmh54cxh1vbn0qfdwr50w7ggvjp88i6"; 68 # delete android and Android directories which cause issues on 69 # darwin (case insensitive directory). Since we don't need them 70 # during the build process, we can delete it to prevent a hash ··· 1990 1991 # Needs Cabal >= 3.4 1992 chs-cabal = super.chs-cabal.override { 1993 - Cabal = self.Cabal_3_6_1_0; 1994 }; 1995 1996 # 2021-08-18: streamly-posix was released with hspec 2.8.2, but it works with older versions too.
··· 64 name = "git-annex-${super.git-annex.version}-src"; 65 url = "git://git-annex.branchable.com/"; 66 rev = "refs/tags/" + super.git-annex.version; 67 + sha256 = "1yn84q0iy81b2sczbf4gx8b56f9ghb9kgwjc0n7l5xn5lb2wqlqa"; 68 # delete android and Android directories which cause issues on 69 # darwin (case insensitive directory). Since we don't need them 70 # during the build process, we can delete it to prevent a hash ··· 1990 1991 # Needs Cabal >= 3.4 1992 chs-cabal = super.chs-cabal.override { 1993 + Cabal = self.Cabal_3_6_2_0; 1994 }; 1995 1996 # 2021-08-18: streamly-posix was released with hspec 2.8.2, but it works with older versions too.
+3 -3
pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
··· 44 45 # cabal-install needs more recent versions of Cabal and base16-bytestring. 46 cabal-install = super.cabal-install.overrideScope (self: super: { 47 - Cabal = self.Cabal_3_6_1_0; 48 }); 49 50 # cabal-install-parsers is written for Cabal 3.6 51 - cabal-install-parsers = super.cabal-install-parsers.override { Cabal = super.Cabal_3_6_1_0; }; 52 53 # older version of cabal-install-parsers for reverse dependencies that use Cabal 3.4 54 cabal-install-parsers_0_4_2 = super.cabal-install-parsers_0_4_2.override { 55 - Cabal = self.Cabal_3_4_0_0; 56 }; 57 58 # Jailbreak to fix the build.
··· 44 45 # cabal-install needs more recent versions of Cabal and base16-bytestring. 46 cabal-install = super.cabal-install.overrideScope (self: super: { 47 + Cabal = self.Cabal_3_6_2_0; 48 }); 49 50 # cabal-install-parsers is written for Cabal 3.6 51 + cabal-install-parsers = super.cabal-install-parsers.override { Cabal = super.Cabal_3_6_2_0; }; 52 53 # older version of cabal-install-parsers for reverse dependencies that use Cabal 3.4 54 cabal-install-parsers_0_4_2 = super.cabal-install-parsers_0_4_2.override { 55 + Cabal = self.Cabal_3_4_1_0; 56 }; 57 58 # Jailbreak to fix the build.
+2 -2
pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
··· 51 # cabal-install needs more recent versions of Cabal and random, but an older 52 # version of base16-bytestring. 53 cabal-install = super.cabal-install.overrideScope (self: super: { 54 - Cabal = self.Cabal_3_6_1_0; 55 }); 56 57 # Ignore overly restrictive upper version bounds. ··· 98 darcs = dontDistribute super.darcs; 99 100 # The package needs the latest Cabal version. 101 - cabal-install-parsers = super.cabal-install-parsers.overrideScope (self: super: { Cabal = self.Cabal_3_6_1_0; }); 102 103 # cabal-fmt requires Cabal3 104 cabal-fmt = super.cabal-fmt.override { Cabal = self.Cabal_3_2_1_0; };
··· 51 # cabal-install needs more recent versions of Cabal and random, but an older 52 # version of base16-bytestring. 53 cabal-install = super.cabal-install.overrideScope (self: super: { 54 + Cabal = self.Cabal_3_6_2_0; 55 }); 56 57 # Ignore overly restrictive upper version bounds. ··· 98 darcs = dontDistribute super.darcs; 99 100 # The package needs the latest Cabal version. 101 + cabal-install-parsers = super.cabal-install-parsers.overrideScope (self: super: { Cabal = self.Cabal_3_6_2_0; }); 102 103 # cabal-fmt requires Cabal3 104 cabal-fmt = super.cabal-fmt.override { Cabal = self.Cabal_3_2_1_0; };
+12 -1
pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
··· 45 46 # cabal-install needs more recent versions of Cabal and base16-bytestring. 47 cabal-install = (doJailbreak super.cabal-install).overrideScope (self: super: { 48 - Cabal = self.Cabal_3_6_1_0; 49 }); 50 51 # Jailbreaks & Version Updates ··· 72 vector-binary-instances = doJailbreak super.vector-binary-instances; 73 vector-th-unbox = doJailbreak super.vector-th-unbox; 74 zlib = doJailbreak super.zlib; 75 76 # Apply patches from head.hackage. 77 alex = appendPatch (dontCheck super.alex) (pkgs.fetchpatch {
··· 45 46 # cabal-install needs more recent versions of Cabal and base16-bytestring. 47 cabal-install = (doJailbreak super.cabal-install).overrideScope (self: super: { 48 + Cabal = self.Cabal_3_6_2_0; 49 }); 50 51 # Jailbreaks & Version Updates ··· 72 vector-binary-instances = doJailbreak super.vector-binary-instances; 73 vector-th-unbox = doJailbreak super.vector-th-unbox; 74 zlib = doJailbreak super.zlib; 75 + weeder = self.weeder_2_3_0; 76 + generic-lens-core = self.generic-lens-core_2_2_0_0; 77 + generic-lens = self.generic-lens_2_2_0_0; 78 + 79 + # Doesn't allow Dhall 1.39.* 80 + weeder_2_3_0 = super.weeder_2_3_0.override { 81 + dhall = self.dhall_1_40_1; 82 + }; 83 + 84 + # Upstream also disables test for GHC 9: https://github.com/kcsongor/generic-lens/pull/130 85 + generic-lens_2_2_0_0 = dontCheck super.generic-lens_2_2_0_0; 86 87 # Apply patches from head.hackage. 88 alex = appendPatch (dontCheck super.alex) (pkgs.fetchpatch {
+5 -2
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 1284 - escape-artist 1285 - escoger 1286 - espial 1287 - ess 1288 - estimators 1289 - EstProgress ··· 1534 - funcons-values 1535 - function-instances-algebra 1536 - functor 1537 - - functor-combinators 1538 - functor-friends 1539 - functor-infix 1540 - functorm ··· 1676 - git-cuk 1677 - git-date 1678 - gitdo 1679 - github-backup 1680 - github-data 1681 - github-tools ··· 3847 - process-leksah 3848 - process-listlike 3849 - processmemory 3850 - - procex 3851 - procrastinating-variable 3852 - procstat 3853 - prof2pretty ··· 4384 - shopify 4385 - shortcut-links 4386 - shorten-strings 4387 - show-prettyprint 4388 - Shpadoinkle-backend-snabbdom 4389 - Shpadoinkle-isreal ··· 4716 - SVD2HS 4717 - svfactor 4718 - svg-builder-fork 4719 - svgutils 4720 - svm-light-utils 4721 - svm-simple ··· 5288 - warc 5289 - warp-dynamic 5290 - warp-grpc 5291 - warp-static 5292 - warp-systemd 5293 - wasm
··· 1284 - escape-artist 1285 - escoger 1286 - espial 1287 + - esqueleto-pgcrypto 1288 - ess 1289 - estimators 1290 - EstProgress ··· 1535 - funcons-values 1536 - function-instances-algebra 1537 - functor 1538 - functor-friends 1539 - functor-infix 1540 - functorm ··· 1676 - git-cuk 1677 - git-date 1678 - gitdo 1679 + - github 1680 - github-backup 1681 - github-data 1682 - github-tools ··· 3848 - process-leksah 3849 - process-listlike 3850 - processmemory 3851 - procrastinating-variable 3852 - procstat 3853 - prof2pretty ··· 4384 - shopify 4385 - shortcut-links 4386 - shorten-strings 4387 + - short-vec 4388 - show-prettyprint 4389 - Shpadoinkle-backend-snabbdom 4390 - Shpadoinkle-isreal ··· 4717 - SVD2HS 4718 - svfactor 4719 - svg-builder-fork 4720 + - svgcairo 4721 - svgutils 4722 - svm-light-utils 4723 - svm-simple ··· 5290 - warc 5291 - warp-dynamic 5292 - warp-grpc 5293 + - warp-quic 5294 - warp-static 5295 - warp-systemd 5296 - wasm
+2
pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
··· 98 - ghc-api-compat == 8.10.7 99 # 2021-09-14: Pin hiedb to version needed by ghcide 100 - hiedb == 0.4.0.* 101 102 extra-packages: 103 - base16-bytestring < 1 # required for cabal-install etc.
··· 98 - ghc-api-compat == 8.10.7 99 # 2021-09-14: Pin hiedb to version needed by ghcide 100 - hiedb == 0.4.0.* 101 + # 2021-10-13: weeder 2.3.0 require GHC == 9.0.*; remove pin when GHC version changes 102 + - weeder < 2.3.0 103 104 extra-packages: 105 - base16-bytestring < 1 # required for cabal-install etc.
+10 -1
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 534 - base64-bytes 535 - baserock-schema 536 - batchd 537 - battlenet-yesod 538 - battleships 539 - bayes-stack ··· 732 - claferwiki 733 - clash 734 - clash-ghc 735 - clash-lib 736 - clash-multisignal 737 - clash-prelude-quickcheck 738 - clash-shake ··· 935 - delta 936 - delta-h 937 - dep-t-advice 938 - dependent-state 939 - dephd 940 - deptrack-devops ··· 1117 - filesystem-enumerator 1118 - find-clumpiness 1119 - findhttp 1120 - firstify 1121 - fix-parser-simple 1122 - fixed-point-vector ··· 2426 - nomyx-language 2427 - nomyx-library 2428 - nomyx-server 2429 - notmuch-haskell 2430 - notmuch-web 2431 - numeric-ode ··· 2453 - one-liner_2_0 2454 - online 2455 - online-csv 2456 - open-adt-tutorial 2457 - open-union 2458 - openpgp-Crypto ··· 2559 - polh-lexicon 2560 - polydata 2561 - polysemy-RandomFu 2562 - polysemy-http 2563 - polysemy-log-co 2564 - polysemy-methodology-co-log ··· 2907 - servant-auth-token-persistent 2908 - servant-auth-token-rocksdb 2909 - servant-auth-wordpress 2910 - - servant-cli 2911 - servant-client-namedargs 2912 - servant-csharp 2913 - servant-db-postgresql 2914 - servant-ede 2915 - servant-event-stream 2916 - servant-examples 2917 - servant-http2-client 2918 - servant-matrix-param 2919 - servant-polysemy ··· 2941 - shelduck 2942 - shellmate-extras 2943 - shine-varying 2944 - showdown 2945 - shpider 2946 - shuffle
··· 534 - base64-bytes 535 - baserock-schema 536 - batchd 537 + - batching 538 - battlenet-yesod 539 - battleships 540 - bayes-stack ··· 733 - claferwiki 734 - clash 735 - clash-ghc 736 + - clash-ghc_1_4_4 737 - clash-lib 738 + - clash-lib_1_4_4 739 - clash-multisignal 740 - clash-prelude-quickcheck 741 - clash-shake ··· 938 - delta 939 - delta-h 940 - dep-t-advice 941 + - dependent-literals-plugin 942 - dependent-state 943 - dephd 944 - deptrack-devops ··· 1121 - filesystem-enumerator 1122 - find-clumpiness 1123 - findhttp 1124 + - finite-table 1125 - firstify 1126 - fix-parser-simple 1127 - fixed-point-vector ··· 2431 - nomyx-language 2432 - nomyx-library 2433 - nomyx-server 2434 + - notifications-tray-icon 2435 - notmuch-haskell 2436 - notmuch-web 2437 - numeric-ode ··· 2459 - one-liner_2_0 2460 - online 2461 - online-csv 2462 + - opc-xml-da-client 2463 - open-adt-tutorial 2464 - open-union 2465 - openpgp-Crypto ··· 2566 - polh-lexicon 2567 - polydata 2568 - polysemy-RandomFu 2569 + - polysemy-check 2570 - polysemy-http 2571 - polysemy-log-co 2572 - polysemy-methodology-co-log ··· 2915 - servant-auth-token-persistent 2916 - servant-auth-token-rocksdb 2917 - servant-auth-wordpress 2918 - servant-client-namedargs 2919 - servant-csharp 2920 - servant-db-postgresql 2921 - servant-ede 2922 - servant-event-stream 2923 - servant-examples 2924 + - servant-github-webhook 2925 - servant-http2-client 2926 - servant-matrix-param 2927 - servant-polysemy ··· 2949 - shelduck 2950 - shellmate-extras 2951 - shine-varying 2952 + - short-vec-lens 2953 - showdown 2954 - shpider 2955 - shuffle
+17
pkgs/development/haskell-modules/configuration-nix.nix
··· 978 doCheck = with pkgs.stdenv; hostPlatform == buildPlatform 979 && buildPlatform.isx86; 980 }; 981 }
··· 978 doCheck = with pkgs.stdenv; hostPlatform == buildPlatform 979 && buildPlatform.isx86; 980 }; 981 + 982 + # procex relies on close_range which has been introduced in Linux 5.9, 983 + # the test suite seems to force the use of this feature (or the fallback 984 + # mechanism is broken), so we can't run the test suite on machines with a 985 + # Kernel < 5.9. To check for this, we use uname -r to obtain the Kernel 986 + # version and sort -V to compare against our minimum version. If the 987 + # Kernel turns out to be older, we disable the test suite. 988 + procex = overrideCabal super.procex (drv: { 989 + postConfigure = '' 990 + minimumKernel=5.9 991 + higherVersion=`printf "%s\n%s\n" "$minimumKernel" "$(uname -r)" | sort -rV | head -n1` 992 + if [[ "$higherVersion" = "$minimumKernel" ]]; then 993 + echo "Used Kernel doesn't support close_range, disabling tests" 994 + unset doCheck 995 + fi 996 + '' + (drv.postConfigure or ""); 997 + }); 998 }
+1146 -214
pkgs/development/haskell-modules/hackage-packages.nix
··· 2745 hydraPlatforms = lib.platforms.none; 2746 }) {}; 2747 2748 - "Cabal_3_4_0_0" = callPackage 2749 ({ mkDerivation, array, async, base, base-compat, base-orphans 2750 , binary, bytestring, clock, containers, deepseq, Diff, directory 2751 , filepath, integer-logarithms, mtl, optparse-applicative, parsec ··· 2755 }: 2756 mkDerivation { 2757 pname = "Cabal"; 2758 - version = "3.4.0.0"; 2759 - sha256 = "1za1cl14fkw8y89hhw6sqirzmkixjaa4wpqsibyk0fvnjs59jydq"; 2760 setupHaskellDepends = [ mtl parsec ]; 2761 libraryHaskellDepends = [ 2762 array base binary bytestring containers deepseq directory filepath ··· 2775 hydraPlatforms = lib.platforms.none; 2776 }) {}; 2777 2778 - "Cabal_3_6_1_0" = callPackage 2779 ({ mkDerivation, array, base, binary, bytestring, containers 2780 , deepseq, directory, filepath, mtl, parsec, pretty, process, text 2781 , time, transformers, unix 2782 }: 2783 mkDerivation { 2784 pname = "Cabal"; 2785 - version = "3.6.1.0"; 2786 - sha256 = "0yjdp78775752k10q4j5dbvqj37xaa2b3anmfld53mgr17k182a7"; 2787 setupHaskellDepends = [ mtl parsec ]; 2788 libraryHaskellDepends = [ 2789 array base binary bytestring containers deepseq directory filepath ··· 3369 license = lib.licenses.bsd3; 3370 }) {}; 3371 3372 "Combinatorrent" = callPackage 3373 ({ mkDerivation, array, attoparsec, base, bytestring, cereal 3374 , containers, deepseq, directory, filepath, hopenssl, hslogger ··· 9439 pname = "HTTP"; 9440 version = "4000.3.16"; 9441 sha256 = "0bgyj3ahqlyg0jw6qsm2sncp8mklc4h0dj91s043vb3ig01iq2fn"; 9442 libraryHaskellDepends = [ 9443 array base bytestring mtl network network-uri parsec time 9444 ]; ··· 18082 pname = "SecureHash-SHA3"; 18083 version = "0.1.1.0"; 18084 sha256 = "0dva3bzfzyzh8kxljyipd041a2w1zhxjvxmhnw2mlv2jcywnk2hz"; 18085 - revision = "2"; 18086 - editedCabalFile = "0rvalvvjadb0i0rh9z5lgw2hca4a9yw3cg2f6gcx7h30f5dp8x1j"; 18087 libraryHaskellDepends = [ base bytestring ]; 18088 description = "simple static linked SHA3 using private symbols and the ref impl"; 18089 license = lib.licenses.bsd2; ··· 24450 license = lib.licenses.bsd3; 24451 }) {}; 24452 24453 "aeson-applicative" = callPackage 24454 ({ mkDerivation, aeson, base, text, unordered-containers }: 24455 mkDerivation { ··· 24604 license = lib.licenses.bsd3; 24605 }) {}; 24606 24607 "aeson-decode" = callPackage 24608 ({ mkDerivation, aeson, aeson-qq, base, containers, data-default 24609 , hedgehog, text, time, unordered-containers, vector ··· 24712 }: 24713 mkDerivation { 24714 pname = "aeson-extra"; 24715 - version = "0.5"; 24716 - sha256 = "0nlp6bwb8zynfncfzr05fi9acfs8n2fkz4anm2c0g97dk2ziq213"; 24717 - revision = "2"; 24718 - editedCabalFile = "02c6rjwm8dyijfcj2wvhx1s9pd3d37g9yqgih4x80na533naps31"; 24719 libraryHaskellDepends = [ 24720 aeson attoparsec attoparsec-iso8601 base base-compat-batteries 24721 bytestring containers deepseq exceptions hashable parsec ··· 24994 license = lib.licenses.mit; 24995 }) {}; 24996 24997 "aeson-options" = callPackage 24998 ({ mkDerivation, aeson, base }: 24999 mkDerivation { ··· 25062 pname = "aeson-pretty"; 25063 version = "0.8.8"; 25064 sha256 = "09n7gs91y1fbw6gjszrd2na3isnvk3y5rsi90lzjrwywnqfadkl1"; 25065 isLibrary = true; 25066 isExecutable = true; 25067 libraryHaskellDepends = [ ··· 25096 license = lib.licenses.mit; 25097 }) {}; 25098 25099 "aeson-quick" = callPackage 25100 ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion 25101 , deepseq, microlens, tasty, tasty-hunit, text ··· 25189 broken = true; 25190 }) {}; 25191 25192 "aeson-serialize" = callPackage 25193 ({ mkDerivation, aeson, base, cereal, hspec, HUnit }: 25194 mkDerivation { ··· 27924 pname = "amazonka-core"; 27925 version = "1.6.1"; 27926 sha256 = "0hx250dja1l4n4y5115w0qngzlqj8f6p861sdaykh0yjm4nzb621"; 27927 - revision = "1"; 27928 - editedCabalFile = "1656dyw6fk3gvph6v3xzvdp3p8xny3ji0gxg7qxvmvn60gj9ricv"; 27929 libraryHaskellDepends = [ 27930 aeson attoparsec base bifunctors bytestring case-insensitive 27931 conduit conduit-extra cryptonite deepseq exceptions hashable ··· 30453 }: 30454 mkDerivation { 30455 pname = "ansi-terminal-game"; 30456 - version = "1.1.1.0"; 30457 - sha256 = "07b4sxx36r604j2q3xyk1y962c6fgy091ly4gc27v49zhmfrmypr"; 30458 isLibrary = true; 30459 isExecutable = true; 30460 libraryHaskellDepends = [ ··· 35120 }) {}; 35121 35122 "attenuation" = callPackage 35123 - ({ mkDerivation, base, profunctors }: 35124 mkDerivation { 35125 pname = "attenuation"; 35126 - version = "0.1.0.0"; 35127 - sha256 = "0swiqnh34654rljydbd91nbkpgi1x816b7y3f57i4qnync29nsd0"; 35128 revision = "1"; 35129 - editedCabalFile = "1bh0ydj5fywx8zcgvfb40092jb09njj2kk09kg7gfvq2fvpz5whr"; 35130 - libraryHaskellDepends = [ base profunctors ]; 35131 - description = "Representational subtyping relations and variance roles"; 35132 license = lib.licenses.asl20; 35133 }) {}; 35134 ··· 35729 pname = "authenticate"; 35730 version = "1.3.5"; 35731 sha256 = "10df40ycd4r45p58xzdh0vcsa401909fa99nkgd18fx5alqh84sz"; 35732 libraryHaskellDepends = [ 35733 aeson attoparsec base blaze-builder bytestring case-insensitive 35734 conduit containers html-conduit http-conduit http-types network-uri ··· 36497 pname = "aws"; 36498 version = "0.22"; 36499 sha256 = "1l3f94mpih7slz37ikyjkyrwvlf110w87997d8sbnbd8glwlcb8r"; 36500 isLibrary = true; 36501 isExecutable = true; 36502 libraryHaskellDepends = [ ··· 38790 pname = "base64-bytestring-type"; 38791 version = "1.0.1"; 38792 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 38793 - revision = "9"; 38794 - editedCabalFile = "003vi0psr8s5whjy1qw43swiw1g1l1mxa962xqz9fdpxbmvlanfy"; 38795 libraryHaskellDepends = [ 38796 aeson base base-compat base64-bytestring binary bytestring cereal 38797 deepseq hashable http-api-data QuickCheck serialise text ··· 39136 ]; 39137 description = "An Applicative Functor deferring actions to run in a batch later"; 39138 license = lib.licenses.asl20; 39139 }) {}; 39140 39141 "battlenet" = callPackage ··· 40982 license = lib.licenses.bsd3; 40983 }) {}; 40984 40985 "binary-io" = callPackage 40986 ({ mkDerivation, async, base, binary, bytestring, concurrency 40987 , deque, exceptions, hspec, process, stm, transformers ··· 41256 license = lib.licenses.bsd3; 41257 }) {}; 41258 41259 "binary-tree" = callPackage 41260 ({ mkDerivation, base, ChasingBottoms, checkers, criterion, deepseq 41261 , doctest, ghc-prim, HUnit, QuickCheck, random, test-framework ··· 43815 pname = "blank-canvas"; 43816 version = "0.7.3"; 43817 sha256 = "1g10959ly5nv2xfhax4pamzxnxkqbniahplc5za8k5r4nq1vjrm2"; 43818 - revision = "3"; 43819 - editedCabalFile = "0bdl3xbxj2dpg5gv1h0561hhjjs6pp3bkgrg18gpl3pbksmr9q8j"; 43820 enableSeparateDataOutput = true; 43821 libraryHaskellDepends = [ 43822 aeson base base-compat-batteries base64-bytestring bytestring ··· 47127 license = lib.licenses.bsd3; 47128 }) {}; 47129 47130 "bugzilla" = callPackage 47131 ({ mkDerivation, aeson, base, blaze-builder, bytestring, connection 47132 , containers, data-default, http-conduit, http-types, iso8601-time ··· 47991 }: 47992 mkDerivation { 47993 pname = "bytesmith"; 47994 - version = "0.3.7.0"; 47995 - sha256 = "13dc4cwiga63wmnw9hl332d8gvqjl4yl0p09z2pkmwl81br7ybrc"; 47996 - revision = "1"; 47997 - editedCabalFile = "0jwax6jdzfcy007dqwdza1r4q8s12ly2gpzpaqy8gi52ap6xc05x"; 47998 libraryHaskellDepends = [ 47999 base byteslice bytestring contiguous primitive run-st text-short 48000 wide-word ··· 49428 }: 49429 mkDerivation { 49430 pname = "cabal-install"; 49431 - version = "3.6.0.0"; 49432 - sha256 = "0ishq4n1jn0kll8257akrzm95lg9ryhyp9pzypcikgvqhl0sz741"; 49433 isLibrary = false; 49434 isExecutable = true; 49435 executableHaskellDepends = [ ··· 49552 pname = "cabal-install-parsers"; 49553 version = "0.4.3"; 49554 sha256 = "0gpnfv80rhrws12b1klyi5fkqvn8pgnl2hxh5fbnfp8fbrwklfjq"; 49555 libraryHaskellDepends = [ 49556 aeson base base16-bytestring binary binary-instances bytestring 49557 Cabal containers cryptohash-sha256 deepseq directory filepath lukko ··· 49699 ]; 49700 description = "Library and utility for processing cabal's plan.json file"; 49701 license = lib.licenses.gpl2Plus; 49702 }) {}; 49703 49704 "cabal-progdeps" = callPackage ··· 50990 }: 50991 mkDerivation { 50992 pname = "camfort"; 50993 - version = "1.1.1"; 50994 - sha256 = "173k5mf2w4ba553j8qh5biljw3xhrk0qipix72cx8xd0vadkh62f"; 50995 isLibrary = true; 50996 isExecutable = true; 50997 libraryHaskellDepends = [ ··· 56080 hydraPlatforms = lib.platforms.none; 56081 }) {}; 56082 56083 "clash-lib" = callPackage 56084 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array 56085 , attoparsec, base, base16-bytestring, binary, bytestring ··· 56123 hydraPlatforms = lib.platforms.none; 56124 }) {}; 56125 56126 "clash-multisignal" = callPackage 56127 ({ mkDerivation, base, clash-prelude, deepseq 56128 , ghc-typelits-knownnat, QuickCheck ··· 56155 pname = "clash-prelude"; 56156 version = "1.4.3"; 56157 sha256 = "07mdl3196yb971hpcbysyaj6vciyrm1p5m9prcymkhkqh7vw9igy"; 56158 setupHaskellDepends = [ base Cabal cabal-doctest ]; 56159 libraryHaskellDepends = [ 56160 array arrows base bifunctors binary bytestring constraints ··· 66442 pname = "criterion"; 66443 version = "1.5.10.0"; 66444 sha256 = "0akws27z3i9381xrb0p0h5qicz4w5nnxy8jq7gk68gi50gj0flxq"; 66445 - revision = "1"; 66446 - editedCabalFile = "0j5cmc0w5m4fy28531f79dmbv3la51zh7k14l3kq3ix835crmmbz"; 66447 isLibrary = true; 66448 isExecutable = true; 66449 enableSeparateDataOutput = true; ··· 66465 ]; 66466 description = "Robust, reliable performance measurement and analysis"; 66467 license = lib.licenses.bsd3; 66468 }) {}; 66469 66470 "criterion-cmp" = callPackage ··· 67362 broken = true; 67363 }) {cryptohash-sha256-pure = null;}; 67364 67365 "cryptohash-sha512" = callPackage 67366 ({ mkDerivation, base, base16-bytestring, bytestring, criterion 67367 , SHA, tasty, tasty-hunit, tasty-quickcheck ··· 67689 }: 67690 mkDerivation { 67691 pname = "csound-expression"; 67692 - version = "5.4.1"; 67693 - sha256 = "0dyafw91ycsr71sxf7z3fbvfbp9vh8l260l9ygfxlrg37971l4pj"; 67694 libraryHaskellDepends = [ 67695 base Boolean colour containers csound-expression-dynamic 67696 csound-expression-opcodes csound-expression-typed data-default ··· 67707 }: 67708 mkDerivation { 67709 pname = "csound-expression-dynamic"; 67710 - version = "0.3.7"; 67711 - sha256 = "1qx9qig18y89k4sxpn333hvqz74c6f56nbvaf8dfbawx5asar0jm"; 67712 libraryHaskellDepends = [ 67713 array base Boolean containers data-default data-fix data-fix-cse 67714 deriving-compat hashable transformers wl-pprint ··· 67740 }: 67741 mkDerivation { 67742 pname = "csound-expression-typed"; 67743 - version = "0.2.5"; 67744 - sha256 = "1bid3wxg879l69w8c1vcana0xxrggxv30dw9bqi8zww2w23id54q"; 67745 enableSeparateDataOutput = true; 67746 libraryHaskellDepends = [ 67747 base Boolean colour containers csound-expression-dynamic ··· 73669 }: 73670 mkDerivation { 73671 pname = "dep-t"; 73672 - version = "0.4.4.0"; 73673 - sha256 = "1qknqh9j7nvyy15zfi3prx6bifp2nd72kgfd085p478z887i71r4"; 73674 libraryHaskellDepends = [ base mtl transformers unliftio-core ]; 73675 testHaskellDepends = [ 73676 base doctest mtl rank2classes sop-core tasty tasty-hunit ··· 73689 }: 73690 mkDerivation { 73691 pname = "dep-t-advice"; 73692 - version = "0.4.6.0"; 73693 - sha256 = "1v1nn0qbr3l7hh3f5aw6ril8ifzg6r8im7gpyj5plfbp272v4gs9"; 73694 libraryHaskellDepends = [ base dep-t sop-core transformers ]; 73695 testHaskellDepends = [ 73696 barbies base dep-t doctest mtl rank2classes sop-core tasty ··· 73751 pname = "dependent-literals"; 73752 version = "0.1.1.0"; 73753 sha256 = "0dw2xc5l8cmhsmr2akyyhyfj8m3qx02pz81fn52ii9mkhzs6rcjb"; 73754 libraryHaskellDepends = [ 73755 base fin-int numeric-kinds sint snumber tagged wrapped 73756 ]; 73757 - description = "Provides library support for pseudo-dependently-typed int literals"; 73758 license = lib.licenses.asl20; 73759 }) {}; 73760 ··· 73766 pname = "dependent-literals-plugin"; 73767 version = "0.1.0.1"; 73768 sha256 = "1rpjlcv3g150rcmxidn48n25xxv2ghdz4x9jnap1swkz0fb10i3a"; 73769 libraryHaskellDepends = [ base ghc syb ]; 73770 testHaskellDepends = [ 73771 base dependent-literals fin-int numeric-kinds short-vec sint 73772 snumber wrapped 73773 ]; 73774 - description = "Rewrites integer literals to a pseudo-dependently-typed form"; 73775 license = lib.licenses.asl20; 73776 }) {}; 73777 73778 "dependent-map_0_2_4_0" = callPackage ··· 79573 license = lib.licenses.bsd3; 79574 }) {}; 79575 79576 "docopt" = callPackage 79577 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, containers 79578 , HUnit, parsec, split, template-haskell, text ··· 79656 license = lib.licenses.bsd3; 79657 }) {}; 79658 79659 - "doctemplates_0_10" = callPackage 79660 ({ mkDerivation, aeson, base, bytestring, containers, criterion 79661 , doclayout, filepath, Glob, HsYAML, mtl, parsec, safe, scientific 79662 , tasty, tasty-golden, tasty-hunit, temporary, text 79663 - , text-conversions, unordered-containers, vector 79664 }: 79665 mkDerivation { 79666 pname = "doctemplates"; 79667 - version = "0.10"; 79668 - sha256 = "1nwav01dqxhbbmf4si8ks70lmhkldmy70m1dw89xrndvcgcynmrx"; 79669 enableSeparateDataOutput = true; 79670 libraryHaskellDepends = [ 79671 aeson base containers doclayout filepath HsYAML mtl parsec safe 79672 - scientific text text-conversions unordered-containers vector 79673 ]; 79674 testHaskellDepends = [ 79675 aeson base bytestring containers doclayout filepath Glob tasty ··· 85345 license = lib.licenses.bsd3; 85346 }) {}; 85347 85348 "empty" = callPackage 85349 ({ mkDerivation }: 85350 mkDerivation { ··· 87118 ]; 87119 description = "Esqueleto support for the pgcrypto PostgreSQL module"; 87120 license = lib.licenses.bsd3; 87121 }) {}; 87122 87123 "ess" = callPackage ··· 88855 pname = "exiftool"; 88856 version = "0.2.0.0"; 88857 sha256 = "138d25fxqz3vg62mfgmva52flyzjxd8dxr0kc7ayfil1zk3bp4jg"; 88858 libraryHaskellDepends = [ 88859 aeson base base64 bytestring hashable process scientific 88860 string-conversions temporary text unordered-containers vector ··· 93172 }: 93173 mkDerivation { 93174 pname = "fin-int"; 93175 - version = "0.1.0.0"; 93176 - sha256 = "0ksjc8jz3l5jh6xd7aam424vpcq1ah7dcq2r5vmh4c7hcd48fakv"; 93177 - revision = "1"; 93178 - editedCabalFile = "0fq6cliihr0dhks62nim33f0sxqs2rwn4yd7gdd67h07acimcrzf"; 93179 libraryHaskellDepends = [ 93180 attenuation base data-default-class deepseq portray portray-diff 93181 QuickCheck sint 93182 ]; 93183 - description = "The type of finite sets with elements identified by the ordinals"; 93184 license = lib.licenses.asl20; 93185 }) {}; 93186 ··· 93482 pname = "finite-table"; 93483 version = "0.1.0.1"; 93484 sha256 = "17bn5wmv5sz89yh3lh39i1armi168wxxnz6l9smcfmw334lidlv6"; 93485 libraryHaskellDepends = [ 93486 adjunctions base cereal data-default-class deepseq distributive 93487 fin-int indexed-traversable lens portray portray-diff short-vec ··· 93495 ]; 93496 description = "Types isomorphic to Fin, and Tables indexed by them"; 93497 license = lib.licenses.asl20; 93498 }) {}; 93499 93500 "finite-typelits" = callPackage ··· 98849 ]; 98850 description = "Tools for functor combinator-based program design"; 98851 license = lib.licenses.bsd3; 98852 - hydraPlatforms = lib.platforms.none; 98853 - broken = true; 98854 }) {}; 98855 98856 "functor-combinators_0_4_1_0" = callPackage ··· 98880 description = "Tools for functor combinator-based program design"; 98881 license = lib.licenses.bsd3; 98882 hydraPlatforms = lib.platforms.none; 98883 - broken = true; 98884 }) {}; 98885 98886 "functor-combo" = callPackage ··· 106507 }: 106508 mkDerivation { 106509 pname = "git-annex"; 106510 - version = "8.20210903"; 106511 - sha256 = "1p6zgk98jmxvqdin5xsdxhgq276bjdr2spi0wabj8x0ziry97rvl"; 106512 configureFlags = [ 106513 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 106514 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 107036 }: 107037 mkDerivation { 107038 pname = "github"; 107039 - version = "0.26"; 107040 - sha256 = "1vbskrkhmz4d3fccn3w12zgz2dbl40b2gljsm7lyd5k8hz50kds8"; 107041 libraryHaskellDepends = [ 107042 aeson base base-compat base16-bytestring binary binary-instances 107043 bytestring containers cryptohash-sha1 deepseq deepseq-generics ··· 107053 testToolDepends = [ hspec-discover ]; 107054 description = "Access to the GitHub API, v3"; 107055 license = lib.licenses.bsd3; 107056 }) {}; 107057 107058 "github-backup" = callPackage ··· 107170 license = lib.licenses.bsd3; 107171 }) {}; 107172 107173 - "github-rest_1_1_0" = callPackage 107174 ({ mkDerivation, aeson, aeson-qq, base, bytestring, http-client 107175 , http-client-tls, http-types, jwt, mtl, scientific, tasty 107176 , tasty-golden, tasty-hunit, tasty-quickcheck, text, time ··· 107178 }: 107179 mkDerivation { 107180 pname = "github-rest"; 107181 - version = "1.1.0"; 107182 - sha256 = "0xyvmc8hj3rfglnhg6xcrdsd9gbii8yzh8qw5xjdyccmdsibckx3"; 107183 libraryHaskellDepends = [ 107184 aeson base bytestring http-client http-client-tls http-types jwt 107185 mtl scientific text time transformers unliftio unliftio-core ··· 107424 license = lib.licenses.bsd3; 107425 }) {}; 107426 107427 - "gitlab-haskell_0_3_1_1" = callPackage 107428 ({ mkDerivation, aeson, base, bytestring, connection, http-client 107429 , http-conduit, http-types, tasty, tasty-hunit, temporary, text 107430 , time, transformers, unix 107431 }: 107432 mkDerivation { 107433 pname = "gitlab-haskell"; 107434 - version = "0.3.1.1"; 107435 - sha256 = "146azh83v963njnkbcf6lacj95qx89wcvi294s3nc89bp72z8igz"; 107436 enableSeparateDataOutput = true; 107437 libraryHaskellDepends = [ 107438 aeson base bytestring connection http-client http-conduit ··· 111432 pname = "google-drive"; 111433 version = "0.4.1"; 111434 sha256 = "1whpifspbvqgw9hg367fjhp14ci61nnirskivawpv2airzn45xzk"; 111435 libraryHaskellDepends = [ 111436 aeson base bytestring conduit conduit-extra directory filepath 111437 http-conduit http-types mtl random resourcet text time ··· 124840 pname = "hastache"; 124841 version = "0.6.1"; 124842 sha256 = "0r5l8k157pgvz1ck4lfid5x05f2s0nlmwf33f4fj09b1kmk8k3wc"; 124843 - revision = "5"; 124844 - editedCabalFile = "0fwd1jd6sqkscmy2yq1w3dcl4va4w9n8mhs6ldrilh1cj6b54r3f"; 124845 isLibrary = true; 124846 isExecutable = true; 124847 libraryHaskellDepends = [ ··· 130898 }) {}; 130899 130900 "iotransaction" = callPackage 130901 - "iotransaction" = callPackage 130902 - "iotransaction" = callPackage 130903 }: 130904 mkDerivation { 130905 "iotransaction" = callPackage 130906 - version = "0.1.0.0"; 130907 - "iotransaction" = callPackage 130908 - revision = "2"; 130909 - "iotransaction" = callPackage 130910 libraryHaskellDepends = [ 130911 - "iotransaction" = callPackage 130912 - "iotransaction" = callPackage 130913 ]; 130914 testHaskellDepends = [ 130915 - "iotransaction" = callPackage 130916 - "iotransaction" = callPackage 130917 ]; 130918 "iotransaction" = callPackage 130919 license = lib.licenses.bsd3; ··· 132611 "iotransaction" = callPackage 132612 "iotransaction" = callPackage 132613 "iotransaction" = callPackage 132614 - revision = "1"; 132615 - "iotransaction" = callPackage 132616 isLibrary = true; 132617 isExecutable = true; 132618 enableSeparateDataOutput = true; ··· 132639 "iotransaction" = callPackage 132640 version = "3.3.4"; 132641 "iotransaction" = callPackage 132642 isLibrary = true; 132643 isExecutable = true; 132644 enableSeparateDataOutput = true; ··· 135130 pname = "hoogle"; 135131 version = "5.0.18.2"; 135132 sha256 = "1xacx2f33x1a4qlv25f8rlmb4wi0cjfzrj22nlnkrd0knghik3m7"; 135133 isLibrary = true; 135134 isExecutable = true; 135135 enableSeparateDataOutput = true; ··· 135951 pname = "hpack"; 135952 version = "0.34.4"; 135953 sha256 = "1xszy00al5zzga64gh7nvgqc93242f61kqy8lb09jkm98a8fs4bl"; 135954 isLibrary = true; 135955 isExecutable = true; 135956 libraryHaskellDepends = [ ··· 136565 pname = "hpqtypes-extras"; 136566 version = "1.12.0.0"; 136567 sha256 = "0pxidphf0qzfy5zv1q7qhp49bgglf3pqd6r91qq0iawnvgzcyi7z"; 136568 libraryHaskellDepends = [ 136569 base base16-bytestring bytestring containers cryptohash exceptions 136570 extra fields-json hpqtypes lifted-base log-base monad-control mtl ··· 139768 pname = "hslogger"; 139769 version = "1.3.1.0"; 139770 sha256 = "0nyar9xcblx5jwks85y8f4jfy9k1h4ss6rvj4mdbiidrq3v688vz"; 139771 - revision = "3"; 139772 - editedCabalFile = "04mda3bwr2a00f5nbkqc84d46lmqfsk3gibzg3amdh74ngb451xq"; 139773 libraryHaskellDepends = [ 139774 base bytestring containers deepseq network network-bsd old-locale 139775 time unix ··· 143551 license = lib.licenses.publicDomain; 143552 }) {}; 143553 143554 "http-listen" = callPackage 143555 ({ mkDerivation, base, bytestring, exceptions, HTTP, network 143556 , transformers ··· 150484 150485 "inline-asm" = callPackage 150486 ({ mkDerivation, base, bytestring, containers, either, ghc-prim 150487 - , hspec, hspec-core, megaparsec, mtl, parser-combinators 150488 , QuickCheck, template-haskell, uniplate 150489 }: 150490 mkDerivation { 150491 pname = "inline-asm"; 150492 - version = "0.4.0.2"; 150493 - sha256 = "01npi02i8wf9b0pa18cgl78ma6r9xqz0i7dc3khkj1725w5wkhvp"; 150494 isLibrary = true; 150495 isExecutable = true; 150496 libraryHaskellDepends = [ 150497 base bytestring containers either ghc-prim megaparsec mtl 150498 - parser-combinators template-haskell uniplate 150499 - ]; 150500 - executableHaskellDepends = [ 150501 - base bytestring containers either ghc-prim megaparsec mtl 150502 - parser-combinators template-haskell uniplate 150503 ]; 150504 testHaskellDepends = [ 150505 base bytestring containers either ghc-prim hspec hspec-core 150506 - megaparsec mtl parser-combinators QuickCheck template-haskell 150507 - uniplate 150508 ]; 150509 description = "Inline some Assembly in ur Haskell!"; 150510 license = lib.licenses.bsd3; ··· 150695 pname = "insert-ordered-containers"; 150696 version = "0.2.5"; 150697 sha256 = "0bb3ggzic8z5zmvmzp1fsnb572c2v383740b0ddf1fwihpn52c1y"; 150698 - revision = "1"; 150699 - editedCabalFile = "12x4xi525ikbqvxh2kmnxsl7cqmbz2l8vqc5ym4lap0p21niiazr"; 150700 libraryHaskellDepends = [ 150701 aeson base base-compat deepseq hashable indexed-traversable lens 150702 optics-core optics-extra semigroupoids semigroups text transformers ··· 151644 }: 151645 mkDerivation { 151646 pname = "interval-algebra"; 151647 - version = "1.0.1"; 151648 - sha256 = "1pw4z3h1ihb82105v1i3809icp024a6cmlic2zfgdhdqf8wvfzv4"; 151649 libraryHaskellDepends = [ 151650 base containers foldl QuickCheck safe time witherable 151651 ]; ··· 151950 license = lib.licenses.bsd3; 151951 }) {}; 151952 151953 "invertible-hlist" = callPackage 151954 ({ mkDerivation, base, HList, invertible }: 151955 mkDerivation { ··· 152456 , doctest, envy, flow, Glob, http-media, lens, lens-aeson 152457 , monad-logger, network-ip, QuickCheck, regex-compat, rio, servant 152458 , servant-client, servant-multipart, servant-multipart-api 152459 - , servant-multipart-client, servant-server, swagger2, text, vector 152460 - , yaml 152461 }: 152462 mkDerivation { 152463 pname = "ipfs"; 152464 - version = "1.3.2"; 152465 - sha256 = "11gy8szp41l1y6mnvj6knb5lhlax859gri9j31w5lzhidj0045df"; 152466 libraryHaskellDepends = [ 152467 aeson base bytestring envy flow Glob http-media lens monad-logger 152468 network-ip regex-compat rio servant servant-client 152469 servant-multipart servant-multipart-api servant-multipart-client 152470 - servant-server swagger2 text vector 152471 ]; 152472 testHaskellDepends = [ 152473 aeson base bytestring directory directory-tree doctest envy flow 152474 Glob http-media lens lens-aeson monad-logger network-ip QuickCheck 152475 regex-compat rio servant servant-client servant-multipart 152476 - servant-multipart-api servant-multipart-client servant-server 152477 - swagger2 text vector yaml 152478 ]; 152479 description = "Access IPFS locally and remotely"; 152480 license = lib.licenses.asl20; ··· 156475 license = lib.licenses.mit; 156476 }) {}; 156477 156478 "jsonnet" = callPackage 156479 ({ mkDerivation, aeson, ansi-wl-pprint, base, binary, bytestring 156480 , containers, data-fix, deriving-compat, directory, exceptions ··· 157390 }: 157391 mkDerivation { 157392 pname = "kansas-comet"; 157393 - version = "0.4"; 157394 - sha256 = "1q9rffh6589a5am8mvfzxzwws34vg08rdjxggfabhmg9y9jla6hz"; 157395 - revision = "22"; 157396 - editedCabalFile = "0ii81jv62cbrvj8dpj86m2rs75jjjwnp9kka63y8bvdbacchycvj"; 157397 enableSeparateDataOutput = true; 157398 libraryHaskellDepends = [ 157399 aeson base containers data-default-class scotty stm text time ··· 164071 license = lib.licenses.mit; 164072 }) {}; 164073 164074 "lens-core" = callPackage 164075 ({ mkDerivation, base }: 164076 mkDerivation { ··· 169621 }: 169622 mkDerivation { 169623 pname = "log-base"; 169624 - version = "0.10.0.1"; 169625 - sha256 = "0h4b7hjxcc75swj43wx0axcp5znsndkrnhn9c8fm7f7a2gmvb8l1"; 169626 libraryHaskellDepends = [ 169627 aeson aeson-pretty base bytestring deepseq exceptions mmorph 169628 monad-control mtl semigroups stm text time transformers-base ··· 169696 }: 169697 mkDerivation { 169698 pname = "log-elasticsearch"; 169699 - version = "0.12.1.0"; 169700 - sha256 = "07z0p5jcd5gjhk4dyf9ny74l68ja58ffa80mbfsyaz66ff6k4y6s"; 169701 libraryHaskellDepends = [ 169702 aeson aeson-pretty base base64-bytestring bytestring deepseq 169703 http-client http-client-tls http-types log-base network-uri ··· 169717 }: 169718 mkDerivation { 169719 pname = "log-postgres"; 169720 - version = "0.8.0.1"; 169721 - sha256 = "0bc63v9w023xw1fq0pkfnk4ac336hgliayy21ny0zaz9xf39a24l"; 169722 libraryHaskellDepends = [ 169723 aeson aeson-pretty base base64-bytestring bytestring deepseq 169724 hpqtypes http-client lifted-base log-base mtl semigroups split text ··· 174318 license = lib.licenses.bsd3; 174319 }) {}; 174320 174321 - "massiv_1_0_0_0" = callPackage 174322 ({ mkDerivation, base, bytestring, deepseq, doctest, exceptions 174323 - , mersenne-random-pure64, mwc-random, primitive, QuickCheck, random 174324 - , scheduler, splitmix, template-haskell, unliftio-core, vector 174325 }: 174326 mkDerivation { 174327 pname = "massiv"; 174328 - version = "1.0.0.0"; 174329 - sha256 = "0cb9riab486gz9xxx44sx5pagfjc8kv8936avywxpwpn3dhbxg6a"; 174330 libraryHaskellDepends = [ 174331 base bytestring deepseq exceptions primitive random scheduler 174332 unliftio-core vector 174333 ]; 174334 - testHaskellDepends = [ 174335 - base doctest mersenne-random-pure64 mwc-random QuickCheck random 174336 - splitmix template-haskell 174337 - ]; 174338 description = "Massiv (Массив) is an Array Library"; 174339 license = lib.licenses.bsd3; 174340 hydraPlatforms = lib.platforms.none; ··· 174412 broken = true; 174413 }) {}; 174414 174415 - "massiv-persist_1_0_0_0" = callPackage 174416 ({ mkDerivation, base, bytestring, deepseq, doctest, hspec 174417 , hspec-discover, massiv, massiv-test, persist, primitive 174418 , QuickCheck 174419 }: 174420 mkDerivation { 174421 pname = "massiv-persist"; 174422 - version = "1.0.0.0"; 174423 - sha256 = "0kgw4ac6ywgx44mqyfyhhxpaxzyph9pgz27nvr625j4hg84mx552"; 174424 libraryHaskellDepends = [ 174425 base bytestring deepseq massiv persist primitive 174426 ]; ··· 174475 broken = true; 174476 }) {}; 174477 174478 - "massiv-serialise_1_0_0_0" = callPackage 174479 ({ mkDerivation, base, deepseq, doctest, hspec, hspec-discover 174480 , massiv, massiv-test, QuickCheck, serialise, vector 174481 }: 174482 mkDerivation { 174483 pname = "massiv-serialise"; 174484 - version = "1.0.0.0"; 174485 - sha256 = "18ahbfq54mggar7wknghdjybd4pbqjzgfaghv5lp5daccbxahgyd"; 174486 libraryHaskellDepends = [ base deepseq massiv serialise vector ]; 174487 testHaskellDepends = [ 174488 base doctest hspec massiv massiv-test QuickCheck serialise ··· 177843 license = lib.licenses.bsd3; 177844 }) {}; 177845 177846 "microtimer" = callPackage 177847 ({ mkDerivation, base, time }: 177848 mkDerivation { ··· 182533 pname = "months"; 182534 version = "0.2"; 182535 sha256 = "054dag7806850hdii7s5rxg8gx2spdp33pnx4s4ckni9ayvspija"; 182536 - revision = "2"; 182537 - editedCabalFile = "1fvpzhfjpf2j01p2rwds6m82d2q0j77ak5v467nxsc8f161rfz21"; 182538 libraryHaskellDepends = [ 182539 aeson attoparsec base base-compat deepseq hashable intervals 182540 QuickCheck text time-compat ··· 185849 pname = "mustache"; 185850 version = "2.3.1"; 185851 sha256 = "0j5kzlirirnj2lscxgc6r9j0if8s3pvxswjblma6yxpw6qyzk2xc"; 185852 isLibrary = true; 185853 isExecutable = true; 185854 libraryHaskellDepends = [ ··· 188346 license = lib.licenses.bsd3; 188347 }) {inherit (pkgs) libsodium;}; 188348 188349 "netcore" = callPackage 188350 ({ mkDerivation, ansi-wl-pprint, base, bimap, binary, binary-strict 188351 , bytestring, containers, fgl, HList, hslogger, HUnit, mtl ··· 192044 platforms = [ 192045 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 192046 ]; 192047 }) {}; 192048 192049 "notmuch" = callPackage ··· 192793 pname = "numeric-kinds"; 192794 version = "0.1.0.0"; 192795 sha256 = "0rdx39wa7kklx9a7i5rdwf541fxpz9v3n32rvy2fa6i7n4hr64s4"; 192796 libraryHaskellDepends = [ base ]; 192797 - description = "Type-level numeric types, classes, and instances"; 192798 license = lib.licenses.asl20; 192799 }) {}; 192800 ··· 192817 pname = "numeric-logarithms"; 192818 version = "0.1.0.0"; 192819 sha256 = "1izd7gc9xdrs7a1wbzmhhkv8s9rw2mcq77agvr351dc5jyzdnwiy"; 192820 - revision = "1"; 192821 - editedCabalFile = "0a37gmm0xgjzh05i7ix3nkgr5d2qa824nsh2wg78ikyksfq46vfv"; 192822 libraryHaskellDepends = [ base integer-gmp ]; 192823 testHaskellDepends = [ 192824 base integer-gmp QuickCheck test-framework 192825 test-framework-quickcheck2 192826 ]; 192827 - description = "Efficient rounded log2 algorithms on integral and rational types"; 192828 license = lib.licenses.asl20; 192829 }) {}; 192830 ··· 194916 license = lib.licenses.bsd3; 194917 }) {}; 194918 194919 "open-adt" = callPackage 194920 ({ mkDerivation, base, constraints, recursion-schemes, row-types 194921 , template-haskell ··· 196242 pname = "operational"; 196243 version = "0.2.4.0"; 196244 sha256 = "1hwmwbsxzwv68b39rv4gn3da6irv8zm89gqrkc3rdsgwi5ziyn3i"; 196245 isLibrary = true; 196246 isExecutable = true; 196247 libraryHaskellDepends = [ base mtl ]; ··· 196816 maintainers = with lib.maintainers; [ Gabriel439 ]; 196817 }) {}; 196818 196819 "optparse-helper" = callPackage 196820 ({ mkDerivation, base, optparse-applicative }: 196821 mkDerivation { ··· 197498 }: 197499 mkDerivation { 197500 pname = "os-release"; 197501 - version = "1.0.2"; 197502 - sha256 = "0wjf1z76pqfv091b88zc3w0hmqv8i2i6qsx21cfcgaym4r3zqpjf"; 197503 libraryHaskellDepends = [ 197504 aeson base megaparsec safe-exceptions text unordered-containers 197505 ]; ··· 203578 pname = "persistent"; 203579 version = "2.13.1.2"; 203580 sha256 = "09si4h64i9drqr80a2sxpxhmsinacqx9bvsc3jah5zlm915q092y"; 203581 libraryHaskellDepends = [ 203582 aeson attoparsec base base64-bytestring blaze-html bytestring 203583 conduit containers fast-logger http-api-data lift-type monad-logger ··· 205202 }: 205203 mkDerivation { 205204 pname = "phonetic-languages-simplified-examples-common"; 205205 - version = "0.1.4.0"; 205206 - sha256 = "1dsfnjjri15mhm31ny82j26djbsw6lgvvqpq9k7fzgj0inb5slns"; 205207 libraryHaskellDepends = [ 205208 base heaps mmsyn2-array phonetic-languages-constraints-array 205209 phonetic-languages-ukrainian-array ··· 205249 }: 205250 mkDerivation { 205251 pname = "phonetic-languages-simplified-generalized-examples-common"; 205252 - version = "0.2.1.0"; 205253 - sha256 = "1i05h0rd6svffwpwzsrryzf6yvjwxd0g3f4wasz8mkh1sdgj0r5g"; 205254 libraryHaskellDepends = [ 205255 base heaps phonetic-languages-phonetics-basics 205256 ]; ··· 209232 hydraPlatforms = lib.platforms.none; 209233 }) {}; 209234 209235 "polysemy-chronos" = callPackage 209236 ({ mkDerivation, aeson, base, chronos, containers, hedgehog 209237 , polysemy, polysemy-test, polysemy-time, relude, tasty ··· 210481 pname = "portray"; 210482 version = "0.2.0"; 210483 sha256 = "1kzzvwqphlg1dmd486ijkv6vsqmxnp8h05mwc8590yjxdln5vzdw"; 210484 libraryHaskellDepends = [ base containers text wrapped ]; 210485 testHaskellDepends = [ 210486 base containers HUnit test-framework test-framework-hunit text 210487 wrapped 210488 ]; 210489 - description = "A pseudo-Haskell syntax type and typeclass producing it"; 210490 license = lib.licenses.asl20; 210491 }) {}; 210492 ··· 210496 pname = "portray-diff"; 210497 version = "0.1.0.1"; 210498 sha256 = "1da884cj865q6g1bd1fhcazyl1nzxb0pk2nvhcpp4iqkjvhyd8hw"; 210499 libraryHaskellDepends = [ 210500 base containers dlist portray text wrapped 210501 ]; 210502 - description = "Visualize the structural differences between two values"; 210503 license = lib.licenses.asl20; 210504 }) {}; 210505 ··· 210510 pname = "portray-diff-hunit"; 210511 version = "0.1.0.0"; 210512 sha256 = "0gig1gvw0s7cl4jbffqh53r7lfs08clkcjpdypjjbpk0815pk34h"; 210513 libraryHaskellDepends = [ 210514 base HUnit portray-diff portray-pretty pretty 210515 ]; 210516 - description = "Equality assertion functions for HUnit based on portray-diff"; 210517 license = lib.licenses.asl20; 210518 }) {}; 210519 ··· 210523 pname = "portray-diff-quickcheck"; 210524 version = "0.1.0.0"; 210525 sha256 = "1kif82y8bapf5d3awkfv7wp3ih89q3p14djanyz6jfapryhccm12"; 210526 libraryHaskellDepends = [ 210527 base portray-diff portray-pretty QuickCheck 210528 ]; 210529 - description = "Equality assertion functions for QuickCheck based on portray-diff"; 210530 license = lib.licenses.asl20; 210531 }) {}; 210532 ··· 210538 pname = "portray-pretty"; 210539 version = "0.1.0.2"; 210540 sha256 = "1gh50r77yz1l8qkhdz96bds2l0d5zi75fkir27x3si406h7sdic9"; 210541 libraryHaskellDepends = [ base portray portray-diff pretty text ]; 210542 testHaskellDepends = [ 210543 base HUnit portray portray-diff pretty test-framework 210544 test-framework-hunit text 210545 ]; 210546 - description = "A portray backend using the pretty package"; 210547 license = lib.licenses.asl20; 210548 }) {}; 210549 ··· 210556 pname = "portray-prettyprinter"; 210557 version = "0.2.0"; 210558 sha256 = "16g55vjcfawx1jxmgy3zgl6bqv67h831z00912fbfh878s1s24ic"; 210559 libraryHaskellDepends = [ 210560 base portray portray-diff prettyprinter prettyprinter-ansi-terminal 210561 text ··· 210565 prettyprinter-ansi-terminal QuickCheck test-framework 210566 test-framework-hunit test-framework-quickcheck2 text 210567 ]; 210568 - description = "A portray backend using the prettyprinter package"; 210569 license = lib.licenses.asl20; 210570 }) {}; 210571 ··· 211006 license = lib.licenses.mit; 211007 }) {}; 211008 211009 "postgresql-common" = callPackage 211010 ({ mkDerivation, attoparsec, base, bytestring, postgresql-simple }: 211011 mkDerivation { ··· 211364 pname = "postgresql-simple"; 211365 version = "0.6.4"; 211366 sha256 = "0rz2bklxp4pvbxb2w49h5p6pbwabn6d5d4j4mrya4fpa0d13k43d"; 211367 - revision = "2"; 211368 - editedCabalFile = "1kwjlj0bsc1yd4dgfc0ydawq9acfjlf0bymwc830dryp16wpj9zv"; 211369 libraryHaskellDepends = [ 211370 aeson attoparsec base bytestring bytestring-builder 211371 case-insensitive containers hashable Only postgresql-libpq ··· 214504 testHaskellDepends = [ async base bytestring hspec unix ]; 214505 description = "Ergonomic process launching with extreme flexibility and speed"; 214506 license = lib.licenses.mit; 214507 - hydraPlatforms = lib.platforms.none; 214508 - broken = true; 214509 }) {}; 214510 214511 "procrastinating-structure" = callPackage ··· 215672 }: 215673 mkDerivation { 215674 pname = "proto-lens"; 215675 - version = "0.7.0.0"; 215676 - sha256 = "1dg73jwc9mis7igxdj3chkb8fz9a25wxw3d6nz11r98z3ambd8rs"; 215677 enableSeparateDataOutput = true; 215678 libraryHaskellDepends = [ 215679 base bytestring containers deepseq ghc-prim lens-family parsec ··· 215692 }: 215693 mkDerivation { 215694 pname = "proto-lens-arbitrary"; 215695 - version = "0.1.2.9"; 215696 - sha256 = "0ndh8jr9aybjpf1p6a6zs2qjci0z7h3c3v3i5hf28ls8w2g8zr4x"; 215697 libraryHaskellDepends = [ 215698 base bytestring containers lens-family proto-lens QuickCheck text 215699 ]; ··· 215763 ({ mkDerivation, base, optparse-applicative, proto-lens, text }: 215764 mkDerivation { 215765 pname = "proto-lens-optparse"; 215766 - version = "0.1.1.7"; 215767 - sha256 = "0fskg0y66qp81z2x2r6jyvrisn7asmbynnq1zq2j97dn7003nqpa"; 215768 libraryHaskellDepends = [ 215769 base optparse-applicative proto-lens text 215770 ]; ··· 215781 }: 215782 mkDerivation { 215783 pname = "proto-lens-protobuf-types"; 215784 - version = "0.7.0.0"; 215785 - sha256 = "1db0z3394g1fzw80ilxldbvy7m3a4piks0fk2wmlaw5k6bza82c7"; 215786 setupHaskellDepends = [ base Cabal proto-lens-setup ]; 215787 libraryHaskellDepends = [ 215788 base lens-family proto-lens proto-lens-runtime text ··· 215799 }: 215800 mkDerivation { 215801 pname = "proto-lens-protoc"; 215802 - version = "0.7.0.0"; 215803 - sha256 = "1k060lr5d54mzj6c7d2k19vg2432mfnp66wr7gs1qcgpj19q9yvs"; 215804 isLibrary = true; 215805 isExecutable = true; 215806 libraryHaskellDepends = [ base filepath ]; ··· 215819 }: 215820 mkDerivation { 215821 pname = "proto-lens-runtime"; 215822 - version = "0.7.0.0"; 215823 - sha256 = "0qxangmbldzdvm9qdvhw1cnjakx0zrxrq0nbscqvih2m2yzaxhad"; 215824 libraryHaskellDepends = [ 215825 base bytestring containers deepseq filepath lens-family proto-lens 215826 text vector ··· 215835 }: 215836 mkDerivation { 215837 pname = "proto-lens-setup"; 215838 - version = "0.4.0.4"; 215839 - sha256 = "09ka0x4ril0lw3ppx2q26zw2r9g2cszsyqrbwy0amw78g1kxma8v"; 215840 libraryHaskellDepends = [ 215841 base bytestring Cabal containers deepseq directory filepath process 215842 proto-lens-protoc temporary text ··· 219877 }: 219878 mkDerivation { 219879 pname = "raaz"; 219880 - version = "0.3.4"; 219881 - sha256 = "1kqinh0vwbl5qh55ai41nmkbcfbhmjdwp5pp0xap03cd0nmn84xq"; 219882 isLibrary = true; 219883 isExecutable = true; 219884 enableSeparateDataOutput = true; ··· 220333 }: 220334 mkDerivation { 220335 pname = "ralist"; 220336 - version = "0.3.0.0"; 220337 - sha256 = "1qy6y7fcylbp6lym7y1k0bg28imhrfxrkvlfrm9mxg3lhvl71mrf"; 220338 libraryHaskellDepends = [ 220339 base deepseq indexed-traversable transformers 220340 ]; ··· 233640 license = lib.licenses.bsd3; 233641 }) {}; 233642 233643 - "scheduler_2_0_0" = callPackage 233644 - ({ mkDerivation, atomic-primops, base, deepseq, doctest, exceptions 233645 - , genvalidity-hspec, hspec, hspec-discover, mwc-random, primitive 233646 - , pvar, QuickCheck, template-haskell, unliftio, unliftio-core 233647 - , vector 233648 }: 233649 mkDerivation { 233650 pname = "scheduler"; 233651 - version = "2.0.0"; 233652 - sha256 = "1i0fz2gj2q12gfl1h8ar0ikkqksznr1rij7fsx1v0qi6qg9d7cc3"; 233653 libraryHaskellDepends = [ 233654 atomic-primops base deepseq exceptions primitive pvar unliftio-core 233655 ]; 233656 testHaskellDepends = [ 233657 - base deepseq doctest genvalidity-hspec hspec mwc-random QuickCheck 233658 - template-haskell unliftio vector 233659 ]; 233660 testToolDepends = [ hspec-discover ]; 233661 description = "Work stealing scheduler"; ··· 234148 pname = "scotty"; 234149 version = "0.12"; 234150 sha256 = "1lpggpdzgjk23mq7aa64yylds5dbm4ynhcvbarqihjxabvh7xmz1"; 234151 - revision = "5"; 234152 - editedCabalFile = "0fvxkpggysz6wfpllqwzx5xywgb2fnfmknw9xhvmxgk765v60jrn"; 234153 libraryHaskellDepends = [ 234154 aeson base base-compat-batteries blaze-builder bytestring 234155 case-insensitive data-default-class exceptions fail http-types ··· 236187 pname = "semigroupoids"; 236188 version = "5.3.6"; 236189 sha256 = "0glhqc9x8i5z3bdg23xvl2lfns95msid3h3x0jksna7i6c8j869n"; 236190 libraryHaskellDepends = [ 236191 base base-orphans bifunctors comonad containers contravariant 236192 distributive hashable tagged template-haskell transformers ··· 237500 }: 237501 mkDerivation { 237502 pname = "servant-benchmark"; 237503 - version = "0.1.2.0"; 237504 - sha256 = "0lqqk410nx48g895pfxkbbk85b1ijs4bfl9zr2li2p7wwwc4gyi9"; 237505 - revision = "3"; 237506 - editedCabalFile = "17pj6n143lpk5nsr6j8j1a6fj45y1bv61jcm16m0fwsdmhv01866"; 237507 libraryHaskellDepends = [ 237508 aeson base base64-bytestring bytestring case-insensitive http-media 237509 http-types QuickCheck servant text yaml ··· 237621 ]; 237622 description = "Command line interface for Servant API clients"; 237623 license = lib.licenses.bsd3; 237624 - hydraPlatforms = lib.platforms.none; 237625 }) {}; 237626 237627 "servant-client" = callPackage ··· 238175 ]; 238176 description = "Servant combinators to facilitate writing GitHub webhooks"; 238177 license = lib.licenses.mit; 238178 }) {}; 238179 238180 "servant-haxl-client" = callPackage ··· 238693 }: 238694 mkDerivation { 238695 pname = "servant-pagination"; 238696 - version = "2.3.0"; 238697 - sha256 = "0kza7lr3akx3zviqbxlw74f1y66y8c6kys52n49brvrhqwnv4xwd"; 238698 isLibrary = true; 238699 isExecutable = true; 238700 libraryHaskellDepends = [ ··· 239565 }: 239566 mkDerivation { 239567 pname = "servant-to-elm"; 239568 - version = "0.4.2.0"; 239569 - sha256 = "1hbz6c9233wgpgmgnplg9qv5hrniynkn5n4zsmkyansw07gmaw05"; 239570 isLibrary = true; 239571 isExecutable = true; 239572 libraryHaskellDepends = [ ··· 240542 license = lib.licenses.bsd3; 240543 }) {}; 240544 240545 "sexp-show" = callPackage 240546 ({ mkDerivation, base, pretty-show }: 240547 mkDerivation { ··· 241364 pname = "shakespeare"; 241365 version = "2.0.25"; 241366 sha256 = "1fjv3yg425d87d3dih0l3ff95g5a5yp9w85m58sjara6xqivj9s4"; 241367 libraryHaskellDepends = [ 241368 aeson base blaze-html blaze-markup bytestring containers directory 241369 exceptions ghc-prim parsec process scientific template-haskell text ··· 242179 pname = "short-vec"; 242180 version = "0.1.0.0"; 242181 sha256 = "0w651jipwxh7k4ng5rvq507br4347hzy8x8c47c1g7haryj80gzq"; 242182 - revision = "2"; 242183 - editedCabalFile = "1w56zmw085509grvk5ddlrv12pqpzfpmdprjd44lv4sgzv09bzfk"; 242184 libraryHaskellDepends = [ 242185 adjunctions base data-default-class deepseq distributive fin-int 242186 indexed-traversable integer-gmp portray portray-diff QuickCheck ··· 242197 gauge indexed-traversable integer-gmp portray portray-diff 242198 QuickCheck semigroupoids sint 242199 ]; 242200 - description = "A length-indexed vector type build on 'SmallArray#'"; 242201 license = lib.licenses.asl20; 242202 }) {}; 242203 242204 "short-vec-lens" = callPackage ··· 242209 pname = "short-vec-lens"; 242210 version = "0.1.0.0"; 242211 sha256 = "1afz1izz19xrjy0cdhmpy7b667waa5v8jh1ps3jpjfpgbmysjz3g"; 242212 libraryHaskellDepends = [ 242213 base fin-int indexed-traversable lens short-vec sint 242214 ]; 242215 description = "Lenses and related functionality for the `short-vec` package"; 242216 license = lib.licenses.asl20; 242217 }) {}; 242218 242219 "shortbytestring" = callPackage ··· 248097 pname = "snumber"; 248098 version = "0.1.0.0"; 248099 sha256 = "0f340hzhhmiy342c5250m61f3gkcnfymjbd2a13alzdh7pmhb2mg"; 248100 libraryHaskellDepends = [ base numeric-kinds ]; 248101 - description = "Indexed numeric types linking type-level and value-level numbers"; 248102 license = lib.licenses.asl20; 248103 }) {}; 248104 ··· 252134 pname = "stackcollapse-ghc"; 252135 version = "0.0.1.4"; 252136 sha256 = "1scqjjp1cpz3zzvqa6wmfz11qrhsbqwgq7h8qjg0d8ri3r9z82lb"; 252137 isLibrary = false; 252138 isExecutable = true; 252139 executableHaskellDepends = [ ··· 255653 ({ mkDerivation, base }: 255654 mkDerivation { 255655 pname = "string-interpreter"; 255656 - version = "0.5.3.0"; 255657 - sha256 = "0ny0py7fhcbv1zkr96ngypb9mf241avds0i77lynnpig96j1ay14"; 255658 libraryHaskellDepends = [ base ]; 255659 description = "Is used in the phonetic languages approach (e. g. in the recursive mode)."; 255660 license = lib.licenses.mit; ··· 256311 license = lib.licenses.bsd3; 256312 }) {}; 256313 256314 "structured-cli" = callPackage 256315 ({ mkDerivation, base, data-default, exceptions, haskeline, mtl 256316 , split, transformers ··· 257715 libraryPkgconfigDepends = [ librsvg ]; 257716 description = "Binding to the libsvg-cairo library"; 257717 license = lib.licenses.bsd3; 257718 }) {inherit (pkgs) librsvg;}; 257719 257720 "svgone" = callPackage ··· 258226 license = "unknown"; 258227 }) {}; 258228 258229 - "sydtest_0_4_0_0" = callPackage 258230 ({ mkDerivation, async, base, bytestring, containers, Diff, dlist 258231 , envparse, filepath, MonadRandom, mtl, optparse-applicative, path 258232 , path-io, pretty-show, QuickCheck, quickcheck-io, random-shuffle ··· 258235 }: 258236 mkDerivation { 258237 pname = "sydtest"; 258238 - version = "0.4.0.0"; 258239 - sha256 = "1r3isd8rjlzx7j1j5drgd1zjxdp8a1hvwsla513hpv32mkbqf0za"; 258240 libraryHaskellDepends = [ 258241 async base bytestring containers Diff dlist envparse filepath 258242 MonadRandom mtl optparse-applicative path path-io pretty-show ··· 261471 pname = "taskwarrior"; 261472 version = "0.3.0.0"; 261473 sha256 = "1h24d799q1s6b36hd40bxa4c9m1izkgh6j7p2jv1p6cxngz28ni0"; 261474 - revision = "5"; 261475 - editedCabalFile = "1h7ybnxx5f0w1h13wzbx30ycf578dnv12wx4pqn3pfxqz1jz3gjg"; 261476 libraryHaskellDepends = [ 261477 aeson base bytestring containers process random text time 261478 unordered-containers uuid ··· 263549 pname = "ten"; 263550 version = "0.1.0.2"; 263551 sha256 = "0djvcb2l9dnnjbhivchi6yyaj5i96jmy7yhr9x3paiz1l54brrqx"; 263552 libraryHaskellDepends = [ 263553 adjunctions base data-default-class deepseq distributive hashable 263554 portray portray-diff some text transformers wrapped ··· 263558 HUnit portray portray-diff some test-framework test-framework-hunit 263559 text transformers wrapped 263560 ]; 263561 - description = "Typeclasses like Functor, etc. over arity-1 type constructors."; 263562 license = lib.licenses.asl20; 263563 }) {}; 263564 ··· 263583 pname = "ten-unordered-containers"; 263584 version = "0.1.0.2"; 263585 sha256 = "0y4aw77ix2ay43l8n17322hbmm1npcdr1bl7kdza377jd1ci20px"; 263586 libraryHaskellDepends = [ 263587 base hashable portray portray-diff some ten unordered-containers 263588 wrapped ··· 263592 portray-pretty some ten ten-lens test-framework 263593 test-framework-hunit text transformers unordered-containers wrapped 263594 ]; 263595 - description = "A package providing one unordered container"; 263596 license = lib.licenses.asl20; 263597 }) {}; 263598 ··· 265702 license = lib.licenses.bsd3; 265703 }) {}; 265704 265705 "text-show" = callPackage 265706 ({ mkDerivation, array, base, base-compat-batteries, base-orphans 265707 , bifunctors, bytestring, bytestring-builder, containers, criterion ··· 267329 pname = "threepenny-gui"; 267330 version = "0.9.1.0"; 267331 sha256 = "00sjkfa9qfnnwqfdw68yb8hq6nm1y5qv9896rzn5aachr7mlfpx2"; 267332 isLibrary = true; 267333 isExecutable = true; 267334 enableSeparateDataOutput = true; ··· 271979 license = lib.licenses.gpl2Plus; 271980 }) {}; 271981 271982 "tree-fun" = callPackage 271983 ({ mkDerivation, base, containers, mtl }: 271984 mkDerivation { ··· 283869 license = lib.licenses.bsd3; 283870 }) {}; 283871 283872 "wai-frontend-monadcgi" = callPackage 283873 ({ mkDerivation, base, bytestring, case-insensitive, cgi 283874 , containers, http-types, transformers, wai ··· 285684 ]; 285685 description = "Warp based on QUIC"; 285686 license = lib.licenses.bsd3; 285687 }) {}; 285688 285689 "warp-static" = callPackage ··· 287299 maintainers = with lib.maintainers; [ maralorn ]; 287300 }) {}; 287301 287302 "weekdaze" = callPackage 287303 ({ mkDerivation, array, base, bytestring, Cabal, containers 287304 , cryptohash, data-default, deepseq, directory, extra, factory ··· 288198 pname = "witherable"; 288199 version = "0.4.1"; 288200 sha256 = "1jj2dq0ddaa2v3hksnrv1z1ll19fa4npsqlp7fs4nn5g6833y58b"; 288201 libraryHaskellDepends = [ 288202 base base-orphans containers hashable indexed-traversable 288203 indexed-traversable-instances transformers unordered-containers ··· 289152 pname = "wrapped"; 289153 version = "0.1.0.1"; 289154 sha256 = "00fvammhn4dlna5d1dc8lpwrdrigj9cnlyi8scwslibr6bjsjzfp"; 289155 libraryHaskellDepends = [ base ]; 289156 - description = "Provides a single standardized place to hang DerivingVia instances"; 289157 license = lib.licenses.asl20; 289158 }) {}; 289159 ··· 289163 pname = "wrapped-generic-default"; 289164 version = "0.1.0.1"; 289165 sha256 = "10hbz8m98cw8lr2xj0wkc017pnypagb11ss1ihpp6lnc4w1hpj3f"; 289166 libraryHaskellDepends = [ base data-default-class wrapped ]; 289167 - description = "Provides an orphan instance Default (Wrapped Generic a)"; 289168 license = lib.licenses.asl20; 289169 }) {}; 289170 ··· 291884 }) {}; 291885 291886 "xmonad-dbus" = callPackage 291887 - ({ mkDerivation, base, dbus, utf8-string }: 291888 mkDerivation { 291889 pname = "xmonad-dbus"; 291890 - version = "0.1.0.0"; 291891 - sha256 = "18phy3wxags8cmgs9bdkhwb4gy8fr72j25b18nk44q8956a3060p"; 291892 isLibrary = true; 291893 isExecutable = true; 291894 - libraryHaskellDepends = [ base dbus utf8-string ]; 291895 - executableHaskellDepends = [ base dbus utf8-string ]; 291896 - testHaskellDepends = [ base dbus utf8-string ]; 291897 license = lib.licenses.bsd3; 291898 hydraPlatforms = lib.platforms.none; 291899 broken = true; ··· 292955 pname = "yaml"; 292956 version = "0.11.6.0"; 292957 sha256 = "0hxg9mfi1dn9a7kp3imzfvnk7jj4sdjdxi6xyqz9ra7lqg14np3r"; 292958 configureFlags = [ "-fsystem-libyaml" ]; 292959 isLibrary = true; 292960 isExecutable = true; ··· 292971 ]; 292972 description = "Support for parsing and rendering YAML documents"; 292973 license = lib.licenses.bsd3; 292974 }) {}; 292975 292976 "yaml-combinators" = callPackage
··· 2745 hydraPlatforms = lib.platforms.none; 2746 }) {}; 2747 2748 + "Cabal_3_4_1_0" = callPackage 2749 ({ mkDerivation, array, async, base, base-compat, base-orphans 2750 , binary, bytestring, clock, containers, deepseq, Diff, directory 2751 , filepath, integer-logarithms, mtl, optparse-applicative, parsec ··· 2755 }: 2756 mkDerivation { 2757 pname = "Cabal"; 2758 + version = "3.4.1.0"; 2759 + sha256 = "1rqpq6l4b9990rmlgcyz44awps6r37ccyi6bgk7dhcsflad6prj4"; 2760 setupHaskellDepends = [ mtl parsec ]; 2761 libraryHaskellDepends = [ 2762 array base binary bytestring containers deepseq directory filepath ··· 2775 hydraPlatforms = lib.platforms.none; 2776 }) {}; 2777 2778 + "Cabal_3_6_2_0" = callPackage 2779 ({ mkDerivation, array, base, binary, bytestring, containers 2780 , deepseq, directory, filepath, mtl, parsec, pretty, process, text 2781 , time, transformers, unix 2782 }: 2783 mkDerivation { 2784 pname = "Cabal"; 2785 + version = "3.6.2.0"; 2786 + sha256 = "0hmw2wkypd42qyyfi6rhbsxmymbxg9rrw683yg39627vlw33v44y"; 2787 setupHaskellDepends = [ mtl parsec ]; 2788 libraryHaskellDepends = [ 2789 array base binary bytestring containers deepseq directory filepath ··· 3369 license = lib.licenses.bsd3; 3370 }) {}; 3371 3372 + "Color_0_3_3" = callPackage 3373 + ({ mkDerivation, base, colour, criterion, data-default-class 3374 + , deepseq, hspec, hspec-discover, HUnit, JuicyPixels, massiv 3375 + , massiv-test, QuickCheck, random, vector 3376 + }: 3377 + mkDerivation { 3378 + pname = "Color"; 3379 + version = "0.3.3"; 3380 + sha256 = "14sf71lhqc1w6s3p1k8a99xgzcwfnr3v5irvfkr09rvv7fd66nva"; 3381 + libraryHaskellDepends = [ base data-default-class deepseq vector ]; 3382 + testHaskellDepends = [ 3383 + base colour hspec HUnit JuicyPixels massiv massiv-test QuickCheck 3384 + random vector 3385 + ]; 3386 + testToolDepends = [ hspec-discover ]; 3387 + benchmarkHaskellDepends = [ base colour criterion deepseq random ]; 3388 + description = "Color spaces and conversions between them"; 3389 + license = lib.licenses.bsd3; 3390 + hydraPlatforms = lib.platforms.none; 3391 + }) {}; 3392 + 3393 "Combinatorrent" = callPackage 3394 ({ mkDerivation, array, attoparsec, base, bytestring, cereal 3395 , containers, deepseq, directory, filepath, hopenssl, hslogger ··· 9460 pname = "HTTP"; 9461 version = "4000.3.16"; 9462 sha256 = "0bgyj3ahqlyg0jw6qsm2sncp8mklc4h0dj91s043vb3ig01iq2fn"; 9463 + revision = "1"; 9464 + editedCabalFile = "0wagwgzfy2mqkha88fjl37ah0l7h4biz34v65993xd502ly68hk0"; 9465 libraryHaskellDepends = [ 9466 array base bytestring mtl network network-uri parsec time 9467 ]; ··· 18105 pname = "SecureHash-SHA3"; 18106 version = "0.1.1.0"; 18107 sha256 = "0dva3bzfzyzh8kxljyipd041a2w1zhxjvxmhnw2mlv2jcywnk2hz"; 18108 + revision = "3"; 18109 + editedCabalFile = "0jsx09bjk98nvfy0fvr5n2dyx8s22xnq66dvniyl572g5kfyknwm"; 18110 libraryHaskellDepends = [ base bytestring ]; 18111 description = "simple static linked SHA3 using private symbols and the ref impl"; 18112 license = lib.licenses.bsd2; ··· 24473 license = lib.licenses.bsd3; 24474 }) {}; 24475 24476 + "aeson_2_0_1_0" = callPackage 24477 + ({ mkDerivation, attoparsec, base, base-compat 24478 + , base-compat-batteries, base-orphans, base16-bytestring 24479 + , bytestring, containers, data-fix, deepseq, Diff, directory, dlist 24480 + , filepath, generic-deriving, ghc-prim, hashable 24481 + , indexed-traversable, integer-logarithms, primitive, QuickCheck 24482 + , quickcheck-instances, scientific, semialign, strict, tagged 24483 + , tasty, tasty-golden, tasty-hunit, tasty-quickcheck 24484 + , template-haskell, text, th-abstraction, these, time, time-compat 24485 + , unordered-containers, uuid-types, vector, witherable 24486 + }: 24487 + mkDerivation { 24488 + pname = "aeson"; 24489 + version = "2.0.1.0"; 24490 + sha256 = "0zlplkgsv1czp4rvi9k6pyyrfgd6vcdkj9vq84dr9zf7pzi8fl1s"; 24491 + libraryHaskellDepends = [ 24492 + attoparsec base base-compat-batteries bytestring containers 24493 + data-fix deepseq dlist ghc-prim hashable indexed-traversable 24494 + primitive scientific semialign strict tagged template-haskell text 24495 + th-abstraction these time time-compat unordered-containers 24496 + uuid-types vector witherable 24497 + ]; 24498 + testHaskellDepends = [ 24499 + attoparsec base base-compat base-orphans base16-bytestring 24500 + bytestring containers data-fix Diff directory dlist filepath 24501 + generic-deriving ghc-prim hashable integer-logarithms QuickCheck 24502 + quickcheck-instances scientific strict tagged tasty tasty-golden 24503 + tasty-hunit tasty-quickcheck template-haskell text these time 24504 + time-compat unordered-containers uuid-types vector 24505 + ]; 24506 + description = "Fast JSON parsing and encoding"; 24507 + license = lib.licenses.bsd3; 24508 + hydraPlatforms = lib.platforms.none; 24509 + }) {}; 24510 + 24511 "aeson-applicative" = callPackage 24512 ({ mkDerivation, aeson, base, text, unordered-containers }: 24513 mkDerivation { ··· 24662 license = lib.licenses.bsd3; 24663 }) {}; 24664 24665 + "aeson-compat_0_3_10" = callPackage 24666 + ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base 24667 + , base-compat, base-orphans, bytestring, containers, exceptions 24668 + , hashable, QuickCheck, quickcheck-instances, scientific, tagged 24669 + , tasty, tasty-hunit, tasty-quickcheck, text, time 24670 + , time-locale-compat, unordered-containers, vector 24671 + }: 24672 + mkDerivation { 24673 + pname = "aeson-compat"; 24674 + version = "0.3.10"; 24675 + sha256 = "0ia3qfdpbrzhwwg4ywpdwca0z1m85k081pcz6jh1sx8qjsvcr71w"; 24676 + libraryHaskellDepends = [ 24677 + aeson attoparsec attoparsec-iso8601 base base-compat bytestring 24678 + containers exceptions hashable scientific tagged text time 24679 + time-locale-compat unordered-containers vector 24680 + ]; 24681 + testHaskellDepends = [ 24682 + aeson attoparsec base base-compat base-orphans bytestring 24683 + containers exceptions hashable QuickCheck quickcheck-instances 24684 + scientific tagged tasty tasty-hunit tasty-quickcheck text time 24685 + time-locale-compat unordered-containers vector 24686 + ]; 24687 + description = "Compatibility layer for aeson"; 24688 + license = lib.licenses.bsd3; 24689 + hydraPlatforms = lib.platforms.none; 24690 + }) {}; 24691 + 24692 "aeson-decode" = callPackage 24693 ({ mkDerivation, aeson, aeson-qq, base, containers, data-default 24694 , hedgehog, text, time, unordered-containers, vector ··· 24797 }: 24798 mkDerivation { 24799 pname = "aeson-extra"; 24800 + version = "0.5.1"; 24801 + sha256 = "13d01hppx71cm7f901n1bd0hxj69ikbp57i6ckfygc6da0mg49jc"; 24802 libraryHaskellDepends = [ 24803 aeson attoparsec attoparsec-iso8601 base base-compat-batteries 24804 bytestring containers deepseq exceptions hashable parsec ··· 25077 license = lib.licenses.mit; 25078 }) {}; 25079 25080 + "aeson-optics_1_1_1" = callPackage 25081 + ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring 25082 + , optics-core, optics-extra, scientific, text, unordered-containers 25083 + , vector 25084 + }: 25085 + mkDerivation { 25086 + pname = "aeson-optics"; 25087 + version = "1.1.1"; 25088 + sha256 = "1na5nsbp4sds8q289knzj4rgiwabbinxm0ihh66jfz0sjiia4wp7"; 25089 + libraryHaskellDepends = [ 25090 + aeson attoparsec base base-compat bytestring optics-core 25091 + optics-extra scientific text unordered-containers vector 25092 + ]; 25093 + description = "Law-abiding optics for aeson"; 25094 + license = lib.licenses.mit; 25095 + hydraPlatforms = lib.platforms.none; 25096 + }) {}; 25097 + 25098 "aeson-options" = callPackage 25099 ({ mkDerivation, aeson, base }: 25100 mkDerivation { ··· 25163 pname = "aeson-pretty"; 25164 version = "0.8.8"; 25165 sha256 = "09n7gs91y1fbw6gjszrd2na3isnvk3y5rsi90lzjrwywnqfadkl1"; 25166 + revision = "1"; 25167 + editedCabalFile = "0xr8f76vmcdvlg8wvw0jdrzpzqy73d4rvf633wfwhmslfr7f5jvg"; 25168 isLibrary = true; 25169 isExecutable = true; 25170 libraryHaskellDepends = [ ··· 25199 license = lib.licenses.mit; 25200 }) {}; 25201 25202 + "aeson-qq_0_8_4" = callPackage 25203 + ({ mkDerivation, aeson, attoparsec, base, base-compat, ghc-prim 25204 + , haskell-src-meta, hspec, hspec-discover, parsec, scientific 25205 + , template-haskell, text, vector 25206 + }: 25207 + mkDerivation { 25208 + pname = "aeson-qq"; 25209 + version = "0.8.4"; 25210 + sha256 = "0dpklq2xdhrkg1rdc7zfdjnzm6c3qxx2i1xskrqdxpqi84ffnlyh"; 25211 + libraryHaskellDepends = [ 25212 + aeson attoparsec base base-compat haskell-src-meta parsec 25213 + scientific template-haskell text vector 25214 + ]; 25215 + testHaskellDepends = [ 25216 + aeson attoparsec base base-compat ghc-prim haskell-src-meta hspec 25217 + parsec scientific template-haskell text vector 25218 + ]; 25219 + testToolDepends = [ hspec-discover ]; 25220 + description = "JSON quasiquoter for Haskell"; 25221 + license = lib.licenses.mit; 25222 + hydraPlatforms = lib.platforms.none; 25223 + }) {}; 25224 + 25225 "aeson-quick" = callPackage 25226 ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion 25227 , deepseq, microlens, tasty, tasty-hunit, text ··· 25315 broken = true; 25316 }) {}; 25317 25318 + "aeson-schemas_1_3_5" = callPackage 25319 + ({ mkDerivation, aeson, aeson-qq, base, criterion, deepseq 25320 + , first-class-families, hashable, hint, interpolate, megaparsec 25321 + , QuickCheck, raw-strings-qq, tasty, tasty-golden, tasty-hunit 25322 + , tasty-quickcheck, template-haskell, text, th-orphans 25323 + , th-test-utils, unordered-containers 25324 + }: 25325 + mkDerivation { 25326 + pname = "aeson-schemas"; 25327 + version = "1.3.5"; 25328 + sha256 = "1fdq109yjmvixri7hamj8z0iryxxdja8kkm6pk54mi0az0vx9743"; 25329 + libraryHaskellDepends = [ 25330 + aeson base first-class-families hashable megaparsec 25331 + template-haskell text unordered-containers 25332 + ]; 25333 + testHaskellDepends = [ 25334 + aeson aeson-qq base deepseq first-class-families hashable hint 25335 + interpolate megaparsec QuickCheck raw-strings-qq tasty tasty-golden 25336 + tasty-hunit tasty-quickcheck template-haskell text th-orphans 25337 + th-test-utils unordered-containers 25338 + ]; 25339 + benchmarkHaskellDepends = [ 25340 + aeson base criterion deepseq first-class-families hashable 25341 + megaparsec template-haskell text th-test-utils unordered-containers 25342 + ]; 25343 + description = "Easily consume JSON data on-demand with type-safety"; 25344 + license = lib.licenses.bsd3; 25345 + hydraPlatforms = lib.platforms.none; 25346 + broken = true; 25347 + }) {}; 25348 + 25349 "aeson-serialize" = callPackage 25350 ({ mkDerivation, aeson, base, cereal, hspec, HUnit }: 25351 mkDerivation { ··· 28081 pname = "amazonka-core"; 28082 version = "1.6.1"; 28083 sha256 = "0hx250dja1l4n4y5115w0qngzlqj8f6p861sdaykh0yjm4nzb621"; 28084 + revision = "2"; 28085 + editedCabalFile = "15mwn2cv4f99rb53wzk7hplb6ncpcl7crsvj8dx71ymm60cf2kxr"; 28086 libraryHaskellDepends = [ 28087 aeson attoparsec base bifunctors bytestring case-insensitive 28088 conduit conduit-extra cryptonite deepseq exceptions hashable ··· 30610 }: 30611 mkDerivation { 30612 pname = "ansi-terminal-game"; 30613 + version = "1.2.0.0"; 30614 + sha256 = "167zld2dwb1l81w1n8iiqdgxx8805sirr9lsacn1ni8cfzzl2gf6"; 30615 isLibrary = true; 30616 isExecutable = true; 30617 libraryHaskellDepends = [ ··· 35277 }) {}; 35278 35279 "attenuation" = callPackage 35280 + ({ mkDerivation, base, constraints }: 35281 mkDerivation { 35282 pname = "attenuation"; 35283 + version = "0.2.0"; 35284 + sha256 = "0qp203qchmllxsrcfz04lxnssrij203i5q8byy159vc8cspd03nq"; 35285 revision = "1"; 35286 + editedCabalFile = "11h8m92hb0spgzvbijkgfbhbhrnf76a8w2z6yw8zahk0bgdqxrzi"; 35287 + libraryHaskellDepends = [ base constraints ]; 35288 + description = "Subtyping relations and variance roles"; 35289 + license = lib.licenses.asl20; 35290 + }) {}; 35291 + 35292 + "attenuation-profunctors" = callPackage 35293 + ({ mkDerivation, attenuation, base, constraints, profunctors }: 35294 + mkDerivation { 35295 + pname = "attenuation-profunctors"; 35296 + version = "0.1.0"; 35297 + sha256 = "11zhh9iwb7r2jfp9bn8bqx1wzl4mln9v80gb2jijp0rryag25ili"; 35298 + libraryHaskellDepends = [ 35299 + attenuation base constraints profunctors 35300 + ]; 35301 + description = "Attenuation support for Profunctors"; 35302 license = lib.licenses.asl20; 35303 }) {}; 35304 ··· 35899 pname = "authenticate"; 35900 version = "1.3.5"; 35901 sha256 = "10df40ycd4r45p58xzdh0vcsa401909fa99nkgd18fx5alqh84sz"; 35902 + revision = "1"; 35903 + editedCabalFile = "0lmb1m5d1l2scnm2fqxfk348m8xqbc7f7kvk7zvpsvcdcpxinafz"; 35904 libraryHaskellDepends = [ 35905 aeson attoparsec base blaze-builder bytestring case-insensitive 35906 conduit containers html-conduit http-conduit http-types network-uri ··· 36669 pname = "aws"; 36670 version = "0.22"; 36671 sha256 = "1l3f94mpih7slz37ikyjkyrwvlf110w87997d8sbnbd8glwlcb8r"; 36672 + revision = "1"; 36673 + editedCabalFile = "1xj2chcn73v45wxb3lr0b3px6p3gbbzvwgx1mqrds4lp2yy7a1cr"; 36674 isLibrary = true; 36675 isExecutable = true; 36676 libraryHaskellDepends = [ ··· 38964 pname = "base64-bytestring-type"; 38965 version = "1.0.1"; 38966 sha256 = "03kq4rjj6by02rf3hg815jfdqpdk0xygm5f46r2pn8mb99yd01zn"; 38967 + revision = "10"; 38968 + editedCabalFile = "0d9nd34ga5xhgkvbysqzyn03w3zi42hgfjk6cza2ymiqxrl2yk9m"; 38969 libraryHaskellDepends = [ 38970 aeson base base-compat base64-bytestring binary bytestring cereal 38971 deepseq hashable http-api-data QuickCheck serialise text ··· 39310 ]; 39311 description = "An Applicative Functor deferring actions to run in a batch later"; 39312 license = lib.licenses.asl20; 39313 + hydraPlatforms = lib.platforms.none; 39314 }) {}; 39315 39316 "battlenet" = callPackage ··· 41157 license = lib.licenses.bsd3; 41158 }) {}; 41159 41160 + "binary-instances_1_0_2" = callPackage 41161 + ({ mkDerivation, aeson, base, binary, binary-orphans, bytestring 41162 + , case-insensitive, hashable, QuickCheck, quickcheck-instances 41163 + , scientific, tagged, tasty, tasty-quickcheck, text, text-binary 41164 + , time-compat, unordered-containers, vector 41165 + , vector-binary-instances 41166 + }: 41167 + mkDerivation { 41168 + pname = "binary-instances"; 41169 + version = "1.0.2"; 41170 + sha256 = "10z29k35clq74ma2f0yrkbyf14wdax1zzgb6mn26ja4vp9f5wc14"; 41171 + libraryHaskellDepends = [ 41172 + aeson base binary binary-orphans case-insensitive hashable 41173 + scientific tagged text text-binary time-compat unordered-containers 41174 + vector vector-binary-instances 41175 + ]; 41176 + testHaskellDepends = [ 41177 + aeson base binary bytestring case-insensitive hashable QuickCheck 41178 + quickcheck-instances scientific tagged tasty tasty-quickcheck text 41179 + time-compat unordered-containers vector 41180 + ]; 41181 + description = "Orphan instances for binary"; 41182 + license = lib.licenses.bsd3; 41183 + hydraPlatforms = lib.platforms.none; 41184 + }) {}; 41185 + 41186 "binary-io" = callPackage 41187 ({ mkDerivation, async, base, binary, bytestring, concurrency 41188 , deque, exceptions, hspec, process, stm, transformers ··· 41457 license = lib.licenses.bsd3; 41458 }) {}; 41459 41460 + "binary-tagged_0_3_1" = callPackage 41461 + ({ mkDerivation, array, base, base16-bytestring, binary 41462 + , binary-instances, bytestring, containers, criterion, deepseq 41463 + , QuickCheck, quickcheck-instances, singleton-bool, structured 41464 + , tagged, tasty, tasty-hunit, tasty-quickcheck, text, transformers 41465 + , unordered-containers 41466 + }: 41467 + mkDerivation { 41468 + pname = "binary-tagged"; 41469 + version = "0.3.1"; 41470 + sha256 = "01d1wb8h5mz76l09r2azphvhm1y3nar8pqrh2waxn797bd2dh6fp"; 41471 + libraryHaskellDepends = [ 41472 + array base base16-bytestring binary bytestring containers 41473 + structured tagged 41474 + ]; 41475 + testHaskellDepends = [ 41476 + base binary binary-instances bytestring QuickCheck 41477 + quickcheck-instances singleton-bool tagged tasty tasty-hunit 41478 + tasty-quickcheck transformers 41479 + ]; 41480 + benchmarkHaskellDepends = [ 41481 + base binary binary-instances bytestring criterion deepseq text 41482 + unordered-containers 41483 + ]; 41484 + description = "Tagged binary serialisation"; 41485 + license = lib.licenses.bsd3; 41486 + hydraPlatforms = lib.platforms.none; 41487 + }) {}; 41488 + 41489 "binary-tree" = callPackage 41490 ({ mkDerivation, base, ChasingBottoms, checkers, criterion, deepseq 41491 , doctest, ghc-prim, HUnit, QuickCheck, random, test-framework ··· 44045 pname = "blank-canvas"; 44046 version = "0.7.3"; 44047 sha256 = "1g10959ly5nv2xfhax4pamzxnxkqbniahplc5za8k5r4nq1vjrm2"; 44048 + revision = "4"; 44049 + editedCabalFile = "0lxslpm4s98ddh12py9810k2q872vizphfrszp8gxkkvfzflbb5b"; 44050 enableSeparateDataOutput = true; 44051 libraryHaskellDepends = [ 44052 aeson base base-compat-batteries base64-bytestring bytestring ··· 47357 license = lib.licenses.bsd3; 47358 }) {}; 47359 47360 + "bugsnag-hs_0_2_0_5" = callPackage 47361 + ({ mkDerivation, aeson, base, bytestring, hedgehog, http-client 47362 + , text, time, unordered-containers 47363 + }: 47364 + mkDerivation { 47365 + pname = "bugsnag-hs"; 47366 + version = "0.2.0.5"; 47367 + sha256 = "1gm38w8vjgxmn2a9a7xr364pcv7vsvd3brf90hwbwh7y88q6jdn2"; 47368 + enableSeparateDataOutput = true; 47369 + libraryHaskellDepends = [ 47370 + aeson base bytestring http-client text time unordered-containers 47371 + ]; 47372 + testHaskellDepends = [ aeson base bytestring hedgehog ]; 47373 + description = "A Bugsnag client for Haskell"; 47374 + license = lib.licenses.bsd3; 47375 + hydraPlatforms = lib.platforms.none; 47376 + }) {}; 47377 + 47378 "bugzilla" = callPackage 47379 ({ mkDerivation, aeson, base, blaze-builder, bytestring, connection 47380 , containers, data-default, http-conduit, http-types, iso8601-time ··· 48239 }: 48240 mkDerivation { 48241 pname = "bytesmith"; 48242 + version = "0.3.8.0"; 48243 + sha256 = "0rfqpnc1awnpn50yfjxgwb65byhdcg5rivg3mbsd5clmq337cz12"; 48244 libraryHaskellDepends = [ 48245 base byteslice bytestring contiguous primitive run-st text-short 48246 wide-word ··· 49674 }: 49675 mkDerivation { 49676 pname = "cabal-install"; 49677 + version = "3.6.2.0"; 49678 + sha256 = "0dihpm4h3xh13vnpvwflnb7v614qdvljycc6ffg5cvhwbwfrxyfw"; 49679 isLibrary = false; 49680 isExecutable = true; 49681 executableHaskellDepends = [ ··· 49798 pname = "cabal-install-parsers"; 49799 version = "0.4.3"; 49800 sha256 = "0gpnfv80rhrws12b1klyi5fkqvn8pgnl2hxh5fbnfp8fbrwklfjq"; 49801 + revision = "1"; 49802 + editedCabalFile = "18ngagasjind29r0840rnsjzzki92q01yi1p0fw4i5p129mczc8n"; 49803 libraryHaskellDepends = [ 49804 aeson base base16-bytestring binary binary-instances bytestring 49805 Cabal containers cryptohash-sha256 deepseq directory filepath lukko ··· 49947 ]; 49948 description = "Library and utility for processing cabal's plan.json file"; 49949 license = lib.licenses.gpl2Plus; 49950 + }) {}; 49951 + 49952 + "cabal-plan_0_7_2_1" = callPackage 49953 + ({ mkDerivation, aeson, ansi-terminal, async, base, base-compat 49954 + , base16-bytestring, bytestring, containers, directory, filepath 49955 + , mtl, optics-core, optparse-applicative, parsec, process 49956 + , semialign, singleton-bool, text, these, topograph, transformers 49957 + , vector 49958 + }: 49959 + mkDerivation { 49960 + pname = "cabal-plan"; 49961 + version = "0.7.2.1"; 49962 + sha256 = "0n45bakzf1r1nyvs76fmrj0cf74knqnpyb2i82baxia0falbp48r"; 49963 + configureFlags = [ "-fexe" ]; 49964 + isLibrary = true; 49965 + isExecutable = true; 49966 + libraryHaskellDepends = [ 49967 + aeson base base16-bytestring bytestring containers directory 49968 + filepath text 49969 + ]; 49970 + executableHaskellDepends = [ 49971 + ansi-terminal async base base-compat bytestring containers 49972 + directory mtl optics-core optparse-applicative parsec process 49973 + semialign singleton-bool text these topograph transformers vector 49974 + ]; 49975 + description = "Library and utility for processing cabal's plan.json file"; 49976 + license = lib.licenses.gpl2Plus; 49977 + hydraPlatforms = lib.platforms.none; 49978 }) {}; 49979 49980 "cabal-progdeps" = callPackage ··· 51266 }: 51267 mkDerivation { 51268 pname = "camfort"; 51269 + version = "1.1.2"; 51270 + sha256 = "13a6x4j4f95izwz7g5sykpb2pq4lzwcswi31986gkyl6nicn5cfj"; 51271 isLibrary = true; 51272 isExecutable = true; 51273 libraryHaskellDepends = [ ··· 56356 hydraPlatforms = lib.platforms.none; 56357 }) {}; 56358 56359 + "clash-ghc_1_4_4" = callPackage 56360 + ({ mkDerivation, array, base, bifunctors, bytestring, Cabal 56361 + , clash-lib, clash-prelude, concurrent-supply, containers, deepseq 56362 + , directory, exceptions, extra, filepath, ghc, ghc-boot, ghc-prim 56363 + , ghc-typelits-extra, ghc-typelits-knownnat 56364 + , ghc-typelits-natnormalise, ghci, hashable, haskeline, integer-gmp 56365 + , lens, mtl, primitive, process, reflection, split 56366 + , template-haskell, text, time, transformers, uniplate, unix 56367 + , unordered-containers, utf8-string, vector 56368 + }: 56369 + mkDerivation { 56370 + pname = "clash-ghc"; 56371 + version = "1.4.4"; 56372 + sha256 = "0dcyf8q5n37v1arq7dyxbgg80j1dnh3i444v9p1p9rs93l2vfnab"; 56373 + isLibrary = true; 56374 + isExecutable = true; 56375 + libraryHaskellDepends = [ 56376 + array base bifunctors bytestring Cabal clash-lib clash-prelude 56377 + concurrent-supply containers deepseq directory exceptions extra 56378 + filepath ghc ghc-boot ghc-prim ghc-typelits-extra 56379 + ghc-typelits-knownnat ghc-typelits-natnormalise ghci hashable 56380 + haskeline integer-gmp lens mtl primitive process reflection split 56381 + template-haskell text time transformers uniplate unix 56382 + unordered-containers utf8-string vector 56383 + ]; 56384 + executableHaskellDepends = [ base ]; 56385 + description = "Clash: a functional hardware description language - GHC frontend"; 56386 + license = lib.licenses.bsd2; 56387 + hydraPlatforms = lib.platforms.none; 56388 + }) {}; 56389 + 56390 "clash-lib" = callPackage 56391 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array 56392 , attoparsec, base, base16-bytestring, binary, bytestring ··· 56430 hydraPlatforms = lib.platforms.none; 56431 }) {}; 56432 56433 + "clash-lib_1_4_4" = callPackage 56434 + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, array 56435 + , attoparsec, base, base16-bytestring, binary, bytestring 56436 + , clash-prelude, concurrent-supply, containers, cryptohash-sha256 56437 + , data-binary-ieee754, data-default, deepseq, directory, dlist 56438 + , errors, exceptions, extra, filepath, ghc, ghc-boot-th 56439 + , ghc-typelits-knownnat, hashable, haskell-src-exts 56440 + , haskell-src-meta, hint, integer-gmp, interpolate, lens, mtl 56441 + , ordered-containers, parsers, pretty-show, prettyprinter 56442 + , primitive, process, quickcheck-text, reducers, tasty, tasty-hunit 56443 + , tasty-quickcheck, template-haskell, temporary, terminal-size 56444 + , text, text-show, time, transformers, trifecta 56445 + , unordered-containers, utf8-string, vector 56446 + , vector-binary-instances 56447 + }: 56448 + mkDerivation { 56449 + pname = "clash-lib"; 56450 + version = "1.4.4"; 56451 + sha256 = "1s04m806mdx12mbg30qrx8w75mavs5r8g7dmf5k1v9jn97jk4gvs"; 56452 + enableSeparateDataOutput = true; 56453 + libraryHaskellDepends = [ 56454 + aeson aeson-pretty ansi-terminal array attoparsec base 56455 + base16-bytestring binary bytestring clash-prelude concurrent-supply 56456 + containers cryptohash-sha256 data-binary-ieee754 data-default 56457 + deepseq directory dlist errors exceptions extra filepath ghc 56458 + ghc-boot-th hashable haskell-src-meta hint integer-gmp interpolate 56459 + lens mtl ordered-containers parsers pretty-show prettyprinter 56460 + primitive process reducers template-haskell temporary terminal-size 56461 + text text-show time transformers trifecta unordered-containers 56462 + utf8-string vector vector-binary-instances 56463 + ]; 56464 + testHaskellDepends = [ 56465 + aeson aeson-pretty base base16-bytestring bytestring clash-prelude 56466 + concurrent-supply containers data-default deepseq ghc 56467 + ghc-typelits-knownnat haskell-src-exts lens pretty-show 56468 + quickcheck-text tasty tasty-hunit tasty-quickcheck template-haskell 56469 + text transformers unordered-containers 56470 + ]; 56471 + description = "Clash: a functional hardware description language - As a library"; 56472 + license = lib.licenses.bsd2; 56473 + hydraPlatforms = lib.platforms.none; 56474 + }) {}; 56475 + 56476 "clash-multisignal" = callPackage 56477 ({ mkDerivation, base, clash-prelude, deepseq 56478 , ghc-typelits-knownnat, QuickCheck ··· 56505 pname = "clash-prelude"; 56506 version = "1.4.3"; 56507 sha256 = "07mdl3196yb971hpcbysyaj6vciyrm1p5m9prcymkhkqh7vw9igy"; 56508 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 56509 + libraryHaskellDepends = [ 56510 + array arrows base bifunctors binary bytestring constraints 56511 + containers data-binary-ieee754 data-default-class deepseq ghc-prim 56512 + ghc-typelits-extra ghc-typelits-knownnat ghc-typelits-natnormalise 56513 + half hashable integer-gmp interpolate lens QuickCheck 56514 + recursion-schemes reflection singletons template-haskell text 56515 + text-show th-abstraction th-lift th-orphans time transformers 56516 + type-errors uniplate vector 56517 + ]; 56518 + testHaskellDepends = [ 56519 + base deepseq doctest ghc-typelits-extra ghc-typelits-knownnat 56520 + ghc-typelits-natnormalise hedgehog hint quickcheck-classes-base 56521 + tasty tasty-hedgehog tasty-hunit tasty-quickcheck tasty-th 56522 + template-haskell 56523 + ]; 56524 + benchmarkHaskellDepends = [ 56525 + base criterion deepseq template-haskell 56526 + ]; 56527 + description = "Clash: a functional hardware description language - Prelude library"; 56528 + license = lib.licenses.bsd2; 56529 + hydraPlatforms = lib.platforms.none; 56530 + broken = true; 56531 + }) {}; 56532 + 56533 + "clash-prelude_1_4_4" = callPackage 56534 + ({ mkDerivation, array, arrows, base, bifunctors, binary 56535 + , bytestring, Cabal, cabal-doctest, constraints, containers 56536 + , criterion, data-binary-ieee754, data-default-class, deepseq 56537 + , doctest, ghc-prim, ghc-typelits-extra, ghc-typelits-knownnat 56538 + , ghc-typelits-natnormalise, half, hashable, hedgehog, hint 56539 + , integer-gmp, interpolate, lens, QuickCheck 56540 + , quickcheck-classes-base, recursion-schemes, reflection 56541 + , singletons, tasty, tasty-hedgehog, tasty-hunit, tasty-quickcheck 56542 + , tasty-th, template-haskell, text, text-show, th-abstraction 56543 + , th-lift, th-orphans, time, transformers, type-errors, uniplate 56544 + , vector 56545 + }: 56546 + mkDerivation { 56547 + pname = "clash-prelude"; 56548 + version = "1.4.4"; 56549 + sha256 = "14304dc9s91blh8ljv8hd3h6gsz0nr83fzf83xkr6mxkdlhzknd4"; 56550 setupHaskellDepends = [ base Cabal cabal-doctest ]; 56551 libraryHaskellDepends = [ 56552 array arrows base bifunctors binary bytestring constraints ··· 66834 pname = "criterion"; 66835 version = "1.5.10.0"; 66836 sha256 = "0akws27z3i9381xrb0p0h5qicz4w5nnxy8jq7gk68gi50gj0flxq"; 66837 + revision = "2"; 66838 + editedCabalFile = "11jdxivx971fbwrg8g0pq365kg6zr6gs06zc5jcjhj34pyr6xpdr"; 66839 isLibrary = true; 66840 isExecutable = true; 66841 enableSeparateDataOutput = true; ··· 66857 ]; 66858 description = "Robust, reliable performance measurement and analysis"; 66859 license = lib.licenses.bsd3; 66860 + }) {}; 66861 + 66862 + "criterion_1_5_11_0" = callPackage 66863 + ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat 66864 + , base-compat-batteries, binary, binary-orphans, bytestring 66865 + , cassava, code-page, containers, criterion-measurement, deepseq 66866 + , directory, exceptions, filepath, Glob, HUnit, js-chart 66867 + , microstache, mtl, mwc-random, optparse-applicative, parsec 66868 + , QuickCheck, statistics, tasty, tasty-hunit, tasty-quickcheck 66869 + , text, time, transformers, transformers-compat, vector 66870 + , vector-algorithms 66871 + }: 66872 + mkDerivation { 66873 + pname = "criterion"; 66874 + version = "1.5.11.0"; 66875 + sha256 = "1lwawng4rmhmqqn8gsalfn4xj2n19gwz7pl4wjssicl5qgmnvp8s"; 66876 + isLibrary = true; 66877 + isExecutable = true; 66878 + enableSeparateDataOutput = true; 66879 + libraryHaskellDepends = [ 66880 + aeson ansi-wl-pprint base base-compat-batteries binary 66881 + binary-orphans bytestring cassava code-page containers 66882 + criterion-measurement deepseq directory exceptions filepath Glob 66883 + js-chart microstache mtl mwc-random optparse-applicative parsec 66884 + statistics text time transformers transformers-compat vector 66885 + vector-algorithms 66886 + ]; 66887 + executableHaskellDepends = [ 66888 + base base-compat-batteries optparse-applicative 66889 + ]; 66890 + testHaskellDepends = [ 66891 + aeson base base-compat base-compat-batteries bytestring deepseq 66892 + directory HUnit QuickCheck statistics tasty tasty-hunit 66893 + tasty-quickcheck vector 66894 + ]; 66895 + description = "Robust, reliable performance measurement and analysis"; 66896 + license = lib.licenses.bsd3; 66897 + hydraPlatforms = lib.platforms.none; 66898 }) {}; 66899 66900 "criterion-cmp" = callPackage ··· 67792 broken = true; 67793 }) {cryptohash-sha256-pure = null;}; 67794 67795 + "cryptohash-sha256_0_11_102_1" = callPackage 67796 + ({ mkDerivation, base, base16-bytestring, bytestring, criterion 67797 + , SHA, tasty, tasty-hunit, tasty-quickcheck 67798 + }: 67799 + mkDerivation { 67800 + pname = "cryptohash-sha256"; 67801 + version = "0.11.102.1"; 67802 + sha256 = "1xkb7iqplbw4fy1122p79xf1zcb7k44rl0wmfj1q06l7cdqxr9vk"; 67803 + configureFlags = [ "-fuse-cbits" ]; 67804 + isLibrary = true; 67805 + isExecutable = true; 67806 + libraryHaskellDepends = [ base bytestring ]; 67807 + testHaskellDepends = [ 67808 + base base16-bytestring bytestring SHA tasty tasty-hunit 67809 + tasty-quickcheck 67810 + ]; 67811 + benchmarkHaskellDepends = [ base bytestring criterion SHA ]; 67812 + description = "Fast, pure and practical SHA-256 implementation"; 67813 + license = lib.licenses.bsd3; 67814 + hydraPlatforms = lib.platforms.none; 67815 + }) {}; 67816 + 67817 "cryptohash-sha512" = callPackage 67818 ({ mkDerivation, base, base16-bytestring, bytestring, criterion 67819 , SHA, tasty, tasty-hunit, tasty-quickcheck ··· 68141 }: 68142 mkDerivation { 68143 pname = "csound-expression"; 68144 + version = "5.4.3"; 68145 + sha256 = "00hd0sb1787cx7yppg2f3zkd3y8d75fsmf460qnsxc77m4qw5388"; 68146 libraryHaskellDepends = [ 68147 base Boolean colour containers csound-expression-dynamic 68148 csound-expression-opcodes csound-expression-typed data-default ··· 68159 }: 68160 mkDerivation { 68161 pname = "csound-expression-dynamic"; 68162 + version = "0.3.8"; 68163 + sha256 = "0q94d228zsjrnjzl3w11i4cqdnx3w1mcvsrf3w6jrvysrn1zskbz"; 68164 libraryHaskellDepends = [ 68165 array base Boolean containers data-default data-fix data-fix-cse 68166 deriving-compat hashable transformers wl-pprint ··· 68192 }: 68193 mkDerivation { 68194 pname = "csound-expression-typed"; 68195 + version = "0.2.7"; 68196 + sha256 = "1mh1mfyi2vx8ykyc1ca8vpbi545fkp7f0ss5nw6dkykl6zm7pj6d"; 68197 enableSeparateDataOutput = true; 68198 libraryHaskellDepends = [ 68199 base Boolean colour containers csound-expression-dynamic ··· 74121 }: 74122 mkDerivation { 74123 pname = "dep-t"; 74124 + version = "0.4.5.0"; 74125 + sha256 = "0hmyfq7xkz3l7d2f3d9ax782b6h0vvq1cfcxxnj1dg29hrnpd1ja"; 74126 libraryHaskellDepends = [ base mtl transformers unliftio-core ]; 74127 testHaskellDepends = [ 74128 base doctest mtl rank2classes sop-core tasty tasty-hunit ··· 74141 }: 74142 mkDerivation { 74143 pname = "dep-t-advice"; 74144 + version = "0.4.6.1"; 74145 + sha256 = "1afr4qjzxvf4h56l0m1zjxy2m9vxs51wj1rcvxpqr3q9hvdg17vx"; 74146 libraryHaskellDepends = [ base dep-t sop-core transformers ]; 74147 testHaskellDepends = [ 74148 barbies base dep-t doctest mtl rank2classes sop-core tasty ··· 74203 pname = "dependent-literals"; 74204 version = "0.1.1.0"; 74205 sha256 = "0dw2xc5l8cmhsmr2akyyhyfj8m3qx02pz81fn52ii9mkhzs6rcjb"; 74206 + revision = "2"; 74207 + editedCabalFile = "1l3fns5gi8l5bav6z3ymvp93i1cq59f9b6p3dc496c0rmkh01kjq"; 74208 libraryHaskellDepends = [ 74209 base fin-int numeric-kinds sint snumber tagged wrapped 74210 ]; 74211 + description = "Library for dependent-literals-plugin"; 74212 license = lib.licenses.asl20; 74213 }) {}; 74214 ··· 74220 pname = "dependent-literals-plugin"; 74221 version = "0.1.0.1"; 74222 sha256 = "1rpjlcv3g150rcmxidn48n25xxv2ghdz4x9jnap1swkz0fb10i3a"; 74223 + revision = "2"; 74224 + editedCabalFile = "1bfsv402cxwhwz22gqj8p0grr4wb9ynsd2swnwy1m6xdsfi1wdy4"; 74225 libraryHaskellDepends = [ base ghc syb ]; 74226 testHaskellDepends = [ 74227 base dependent-literals fin-int numeric-kinds short-vec sint 74228 snumber wrapped 74229 ]; 74230 + description = "Dependent integer literals"; 74231 license = lib.licenses.asl20; 74232 + hydraPlatforms = lib.platforms.none; 74233 }) {}; 74234 74235 "dependent-map_0_2_4_0" = callPackage ··· 80030 license = lib.licenses.bsd3; 80031 }) {}; 80032 80033 + "doclayout_0_3_1" = callPackage 80034 + ({ mkDerivation, base, containers, criterion, emojis, mtl, safe 80035 + , tasty, tasty-golden, tasty-hunit, tasty-quickcheck, text 80036 + }: 80037 + mkDerivation { 80038 + pname = "doclayout"; 80039 + version = "0.3.1"; 80040 + sha256 = "0cbb8l1m7w1ycf0pv8y9cbly9qxw3w5ngqbghj6qd5kk02my9zwj"; 80041 + enableSeparateDataOutput = true; 80042 + libraryHaskellDepends = [ base containers emojis mtl safe text ]; 80043 + testHaskellDepends = [ 80044 + base emojis mtl tasty tasty-golden tasty-hunit tasty-quickcheck 80045 + text 80046 + ]; 80047 + benchmarkHaskellDepends = [ base criterion mtl text ]; 80048 + description = "A prettyprinting library for laying out text documents"; 80049 + license = lib.licenses.bsd3; 80050 + hydraPlatforms = lib.platforms.none; 80051 + }) {}; 80052 + 80053 "docopt" = callPackage 80054 ({ mkDerivation, aeson, ansi-terminal, base, bytestring, containers 80055 , HUnit, parsec, split, template-haskell, text ··· 80133 license = lib.licenses.bsd3; 80134 }) {}; 80135 80136 + "doctemplates_0_10_0_1" = callPackage 80137 ({ mkDerivation, aeson, base, bytestring, containers, criterion 80138 , doclayout, filepath, Glob, HsYAML, mtl, parsec, safe, scientific 80139 , tasty, tasty-golden, tasty-hunit, temporary, text 80140 + , text-conversions, vector 80141 }: 80142 mkDerivation { 80143 pname = "doctemplates"; 80144 + version = "0.10.0.1"; 80145 + sha256 = "08l8lgmvn83xwbdlh4m2jljj5gcyxiq1vjd1ggysv36d81swsg1x"; 80146 enableSeparateDataOutput = true; 80147 libraryHaskellDepends = [ 80148 aeson base containers doclayout filepath HsYAML mtl parsec safe 80149 + scientific text text-conversions vector 80150 ]; 80151 testHaskellDepends = [ 80152 aeson base bytestring containers doclayout filepath Glob tasty ··· 85822 license = lib.licenses.bsd3; 85823 }) {}; 85824 85825 + "emojis_0_1_2" = callPackage 85826 + ({ mkDerivation, base, containers, HUnit, text }: 85827 + mkDerivation { 85828 + pname = "emojis"; 85829 + version = "0.1.2"; 85830 + sha256 = "09x2xrppwypi369y7rzf3ln2g7c3g9qfckn2gydxpfzglcp9rziw"; 85831 + libraryHaskellDepends = [ base containers text ]; 85832 + testHaskellDepends = [ base HUnit text ]; 85833 + description = "Conversion between emoji characters and their names"; 85834 + license = lib.licenses.bsd3; 85835 + hydraPlatforms = lib.platforms.none; 85836 + }) {}; 85837 + 85838 "empty" = callPackage 85839 ({ mkDerivation }: 85840 mkDerivation { ··· 87608 ]; 87609 description = "Esqueleto support for the pgcrypto PostgreSQL module"; 87610 license = lib.licenses.bsd3; 87611 + hydraPlatforms = lib.platforms.none; 87612 + broken = true; 87613 }) {}; 87614 87615 "ess" = callPackage ··· 89347 pname = "exiftool"; 89348 version = "0.2.0.0"; 89349 sha256 = "138d25fxqz3vg62mfgmva52flyzjxd8dxr0kc7ayfil1zk3bp4jg"; 89350 + revision = "1"; 89351 + editedCabalFile = "0sgi3w8x1zlch0v3zpxrjhisxd1s6wj1qznjlm0gz2r5d1pzc03z"; 89352 libraryHaskellDepends = [ 89353 aeson base base64 bytestring hashable process scientific 89354 string-conversions temporary text unordered-containers vector ··· 93666 }: 93667 mkDerivation { 93668 pname = "fin-int"; 93669 + version = "0.2.0"; 93670 + sha256 = "0ra5lcd3ybmv1a0l7bisjlgi7b8mywa6c6pj7n82ppyi6rqssdlh"; 93671 libraryHaskellDepends = [ 93672 attenuation base data-default-class deepseq portray portray-diff 93673 QuickCheck sint 93674 ]; 93675 + description = "Finite sets of static size"; 93676 license = lib.licenses.asl20; 93677 }) {}; 93678 ··· 93974 pname = "finite-table"; 93975 version = "0.1.0.1"; 93976 sha256 = "17bn5wmv5sz89yh3lh39i1armi168wxxnz6l9smcfmw334lidlv6"; 93977 + revision = "1"; 93978 + editedCabalFile = "17marqdap2mhlv90khnhygy78mn4gj9068gbz2ld4xv7q2kf3vlm"; 93979 libraryHaskellDepends = [ 93980 adjunctions base cereal data-default-class deepseq distributive 93981 fin-int indexed-traversable lens portray portray-diff short-vec ··· 93989 ]; 93990 description = "Types isomorphic to Fin, and Tables indexed by them"; 93991 license = lib.licenses.asl20; 93992 + hydraPlatforms = lib.platforms.none; 93993 }) {}; 93994 93995 "finite-typelits" = callPackage ··· 99344 ]; 99345 description = "Tools for functor combinator-based program design"; 99346 license = lib.licenses.bsd3; 99347 }) {}; 99348 99349 "functor-combinators_0_4_1_0" = callPackage ··· 99373 description = "Tools for functor combinator-based program design"; 99374 license = lib.licenses.bsd3; 99375 hydraPlatforms = lib.platforms.none; 99376 }) {}; 99377 99378 "functor-combo" = callPackage ··· 106999 }: 107000 mkDerivation { 107001 pname = "git-annex"; 107002 + version = "8.20211011"; 107003 + sha256 = "02s7921ihmbndp7lk1nhhiljky02ikq4qax4mhg609qjhbl6piwd"; 107004 configureFlags = [ 107005 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 107006 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 107528 }: 107529 mkDerivation { 107530 pname = "github"; 107531 + version = "0.27"; 107532 + sha256 = "0vlqsdhhjnfw9wk5vn1i8cmwa45vgczhz4nn46mwgs600xfn94am"; 107533 libraryHaskellDepends = [ 107534 aeson base base-compat base16-bytestring binary binary-instances 107535 bytestring containers cryptohash-sha1 deepseq deepseq-generics ··· 107545 testToolDepends = [ hspec-discover ]; 107546 description = "Access to the GitHub API, v3"; 107547 license = lib.licenses.bsd3; 107548 + hydraPlatforms = lib.platforms.none; 107549 + broken = true; 107550 }) {}; 107551 107552 "github-backup" = callPackage ··· 107664 license = lib.licenses.bsd3; 107665 }) {}; 107666 107667 + "github-rest_1_1_1" = callPackage 107668 ({ mkDerivation, aeson, aeson-qq, base, bytestring, http-client 107669 , http-client-tls, http-types, jwt, mtl, scientific, tasty 107670 , tasty-golden, tasty-hunit, tasty-quickcheck, text, time ··· 107672 }: 107673 mkDerivation { 107674 pname = "github-rest"; 107675 + version = "1.1.1"; 107676 + sha256 = "1wf4gs3324h4pfal5qcpb65lfpm4kpmxmv4fiv6asrvhas9cwglm"; 107677 libraryHaskellDepends = [ 107678 aeson base bytestring http-client http-client-tls http-types jwt 107679 mtl scientific text time transformers unliftio unliftio-core ··· 107918 license = lib.licenses.bsd3; 107919 }) {}; 107920 107921 + "gitlab-haskell_0_3_2_0" = callPackage 107922 ({ mkDerivation, aeson, base, bytestring, connection, http-client 107923 , http-conduit, http-types, tasty, tasty-hunit, temporary, text 107924 , time, transformers, unix 107925 }: 107926 mkDerivation { 107927 pname = "gitlab-haskell"; 107928 + version = "0.3.2.0"; 107929 + sha256 = "1ibsb4wyavyb6s64czy1pdbcskfwn96wcky4vlpr0r1f8gjpym5s"; 107930 enableSeparateDataOutput = true; 107931 libraryHaskellDepends = [ 107932 aeson base bytestring connection http-client http-conduit ··· 111926 pname = "google-drive"; 111927 version = "0.4.1"; 111928 sha256 = "1whpifspbvqgw9hg367fjhp14ci61nnirskivawpv2airzn45xzk"; 111929 + revision = "1"; 111930 + editedCabalFile = "02hpkgp1k5gsc6rrx6gzzskcrdjzqbcdcppxkmv36lq0r1sj5afw"; 111931 libraryHaskellDepends = [ 111932 aeson base bytestring conduit conduit-extra directory filepath 111933 http-conduit http-types mtl random resourcet text time ··· 125336 pname = "hastache"; 125337 version = "0.6.1"; 125338 sha256 = "0r5l8k157pgvz1ck4lfid5x05f2s0nlmwf33f4fj09b1kmk8k3wc"; 125339 + revision = "6"; 125340 + editedCabalFile = "1d9a6algvdyhjl94ikbz6ccnpbh0f68x8dp6bmx6lljq4b2srx51"; 125341 isLibrary = true; 125342 isExecutable = true; 125343 libraryHaskellDepends = [ ··· 131394 }) {}; 131395 131396 "iotransaction" = callPackage 131397 + ({ mkDerivation, async, base, bytestring, conduit, containers 131398 + , directory, filepath, filepath-bytestring, hinotify, hspec 131399 + , resourcet, stm, stm-chans, stm-conduit, temporary, unix 131400 }: 131401 mkDerivation { 131402 "iotransaction" = callPackage 131403 + version = "0.1.0.1"; 131404 + sha256 = "1377ws4rmafkjrnyn9x0a5wj98v5ysc85yzq6frg12aslc1bmvx9"; 131405 libraryHaskellDepends = [ 131406 + base bytestring conduit containers directory filepath 131407 + filepath-bytestring hinotify resourcet stm stm-chans stm-conduit 131408 ]; 131409 testHaskellDepends = [ 131410 + async base bytestring conduit containers directory filepath 131411 + filepath-bytestring hinotify hspec resourcet stm stm-chans 131412 + stm-conduit temporary unix 131413 ]; 131414 "iotransaction" = callPackage 131415 license = lib.licenses.bsd3; ··· 133107 "iotransaction" = callPackage 133108 "iotransaction" = callPackage 133109 "iotransaction" = callPackage 133110 + revision = "2"; 133111 + editedCabalFile = "0p2d3pi268jkb3hz750apjn917kr40hhamc2apgiv08chqyk82bj"; 133112 isLibrary = true; 133113 isExecutable = true; 133114 enableSeparateDataOutput = true; ··· 133135 "iotransaction" = callPackage 133136 version = "3.3.4"; 133137 "iotransaction" = callPackage 133138 + revision = "1"; 133139 + editedCabalFile = "10h1asqbk2qqmxac34amwjz9ybz2vahpa0dsrdljg3zw1r1yzkb8"; 133140 isLibrary = true; 133141 isExecutable = true; 133142 enableSeparateDataOutput = true; ··· 135628 pname = "hoogle"; 135629 version = "5.0.18.2"; 135630 sha256 = "1xacx2f33x1a4qlv25f8rlmb4wi0cjfzrj22nlnkrd0knghik3m7"; 135631 + revision = "1"; 135632 + editedCabalFile = "11ig5z81h27ify5sx2dyrx4kiv61gzd96k9qi8a11hvnk2w51a9y"; 135633 isLibrary = true; 135634 isExecutable = true; 135635 enableSeparateDataOutput = true; ··· 136451 pname = "hpack"; 136452 version = "0.34.4"; 136453 sha256 = "1xszy00al5zzga64gh7nvgqc93242f61kqy8lb09jkm98a8fs4bl"; 136454 + revision = "1"; 136455 + editedCabalFile = "0gq6ax8a7yc5lp0n24kd60kq0dgpgsgcgl970jrf1hqnzf53pspk"; 136456 isLibrary = true; 136457 isExecutable = true; 136458 libraryHaskellDepends = [ ··· 137067 pname = "hpqtypes-extras"; 137068 version = "1.12.0.0"; 137069 sha256 = "0pxidphf0qzfy5zv1q7qhp49bgglf3pqd6r91qq0iawnvgzcyi7z"; 137070 + revision = "2"; 137071 + editedCabalFile = "0gprlxfjdc6lxf2xazfr1wrna9whw6sh1jpv5rhp8bw0haslzl6j"; 137072 libraryHaskellDepends = [ 137073 base base16-bytestring bytestring containers cryptohash exceptions 137074 extra fields-json hpqtypes lifted-base log-base monad-control mtl ··· 140272 pname = "hslogger"; 140273 version = "1.3.1.0"; 140274 sha256 = "0nyar9xcblx5jwks85y8f4jfy9k1h4ss6rvj4mdbiidrq3v688vz"; 140275 + revision = "4"; 140276 + editedCabalFile = "0249qf58s5dvqf98xqbqqigav055dgj5cx4dmz4ssl8ckk2dizdk"; 140277 libraryHaskellDepends = [ 140278 base bytestring containers deepseq network network-bsd old-locale 140279 time unix ··· 144055 license = lib.licenses.publicDomain; 144056 }) {}; 144057 144058 + "http-link-header_1_2_1" = callPackage 144059 + ({ mkDerivation, attoparsec, base, bytestring, criterion, directory 144060 + , errors, hspec, hspec-attoparsec, http-api-data, network-uri 144061 + , QuickCheck, text, transformers 144062 + }: 144063 + mkDerivation { 144064 + pname = "http-link-header"; 144065 + version = "1.2.1"; 144066 + sha256 = "15pcav5k7j4pvqwkyyrqgcm7yxqippx4yiprsg9fpml4kywcr2ca"; 144067 + libraryHaskellDepends = [ 144068 + attoparsec base bytestring errors http-api-data network-uri text 144069 + ]; 144070 + testHaskellDepends = [ 144071 + attoparsec base bytestring errors hspec hspec-attoparsec 144072 + http-api-data network-uri QuickCheck text 144073 + ]; 144074 + benchmarkHaskellDepends = [ 144075 + attoparsec base bytestring criterion directory errors http-api-data 144076 + network-uri text transformers 144077 + ]; 144078 + description = "A parser and writer for the HTTP Link header per RFC 5988"; 144079 + license = lib.licenses.publicDomain; 144080 + hydraPlatforms = lib.platforms.none; 144081 + }) {}; 144082 + 144083 "http-listen" = callPackage 144084 ({ mkDerivation, base, bytestring, exceptions, HTTP, network 144085 , transformers ··· 151013 151014 "inline-asm" = callPackage 151015 ({ mkDerivation, base, bytestring, containers, either, ghc-prim 151016 + , hspec, hspec-core, megaparsec, mtl, parser-combinators, primitive 151017 , QuickCheck, template-haskell, uniplate 151018 }: 151019 mkDerivation { 151020 pname = "inline-asm"; 151021 + version = "0.5.0.0"; 151022 + sha256 = "02zxgkaa4wgacgj6si4158cxgk3cdf0gkvl5avmyrivbcc18xkdi"; 151023 isLibrary = true; 151024 isExecutable = true; 151025 libraryHaskellDepends = [ 151026 base bytestring containers either ghc-prim megaparsec mtl 151027 + parser-combinators primitive template-haskell uniplate 151028 ]; 151029 testHaskellDepends = [ 151030 base bytestring containers either ghc-prim hspec hspec-core 151031 + megaparsec mtl parser-combinators primitive QuickCheck 151032 + template-haskell uniplate 151033 ]; 151034 description = "Inline some Assembly in ur Haskell!"; 151035 license = lib.licenses.bsd3; ··· 151220 pname = "insert-ordered-containers"; 151221 version = "0.2.5"; 151222 sha256 = "0bb3ggzic8z5zmvmzp1fsnb572c2v383740b0ddf1fwihpn52c1y"; 151223 + revision = "2"; 151224 + editedCabalFile = "1xjrd1sn3wkhv8f40wi5p53y8n74lkj5pnr4psjlbpqqlr4hy2ya"; 151225 libraryHaskellDepends = [ 151226 aeson base base-compat deepseq hashable indexed-traversable lens 151227 optics-core optics-extra semigroupoids semigroups text transformers ··· 152169 }: 152170 mkDerivation { 152171 pname = "interval-algebra"; 152172 + version = "1.1.0"; 152173 + sha256 = "16xx8fw7xf8rrji9n34r3xchjpd6sh3wnlbz70a3mhbdl3yp55vq"; 152174 libraryHaskellDepends = [ 152175 base containers foldl QuickCheck safe time witherable 152176 ]; ··· 152475 license = lib.licenses.bsd3; 152476 }) {}; 152477 152478 + "invertible-grammar_0_1_3_2" = callPackage 152479 + ({ mkDerivation, base, bifunctors, containers, mtl, prettyprinter 152480 + , profunctors, semigroups, tagged, template-haskell, text 152481 + , transformers 152482 + }: 152483 + mkDerivation { 152484 + pname = "invertible-grammar"; 152485 + version = "0.1.3.2"; 152486 + sha256 = "14i0xf5j01j6ayvxix32qr2m0bz3818q26z3b4xyw41ikbhxmkp2"; 152487 + libraryHaskellDepends = [ 152488 + base bifunctors containers mtl prettyprinter profunctors semigroups 152489 + tagged template-haskell text transformers 152490 + ]; 152491 + description = "Invertible parsing combinators framework"; 152492 + license = lib.licenses.bsd3; 152493 + hydraPlatforms = lib.platforms.none; 152494 + }) {}; 152495 + 152496 "invertible-hlist" = callPackage 152497 ({ mkDerivation, base, HList, invertible }: 152498 mkDerivation { ··· 152999 , doctest, envy, flow, Glob, http-media, lens, lens-aeson 153000 , monad-logger, network-ip, QuickCheck, regex-compat, rio, servant 153001 , servant-client, servant-multipart, servant-multipart-api 153002 + , servant-multipart-client, swagger2, text, vector, yaml 153003 }: 153004 mkDerivation { 153005 pname = "ipfs"; 153006 + version = "1.4.0"; 153007 + sha256 = "1lz5wbjlxd053805cc0l51hj69rwj4a2i4b5y72gmajjqrcw4hcd"; 153008 libraryHaskellDepends = [ 153009 aeson base bytestring envy flow Glob http-media lens monad-logger 153010 network-ip regex-compat rio servant servant-client 153011 servant-multipart servant-multipart-api servant-multipart-client 153012 + swagger2 text vector 153013 ]; 153014 testHaskellDepends = [ 153015 aeson base bytestring directory directory-tree doctest envy flow 153016 Glob http-media lens lens-aeson monad-logger network-ip QuickCheck 153017 regex-compat rio servant servant-client servant-multipart 153018 + servant-multipart-api servant-multipart-client swagger2 text vector 153019 + yaml 153020 ]; 153021 description = "Access IPFS locally and remotely"; 153022 license = lib.licenses.asl20; ··· 157017 license = lib.licenses.mit; 157018 }) {}; 157019 157020 + "jsonifier_0_1_2" = callPackage 157021 + ({ mkDerivation, aeson, base, buffer-builder, bytestring, gauge 157022 + , hedgehog, numeric-limits, ptr-poker, rerebase, scientific, text 157023 + , text-builder 157024 + }: 157025 + mkDerivation { 157026 + pname = "jsonifier"; 157027 + version = "0.1.2"; 157028 + sha256 = "14cgk8h7lasnm0z9qlddkn166vk557msnkrpahdzqpl7arwdddid"; 157029 + libraryHaskellDepends = [ 157030 + base bytestring ptr-poker scientific text 157031 + ]; 157032 + testHaskellDepends = [ aeson hedgehog numeric-limits rerebase ]; 157033 + benchmarkHaskellDepends = [ 157034 + aeson buffer-builder gauge rerebase text-builder 157035 + ]; 157036 + description = "Fast and simple JSON encoding toolkit"; 157037 + license = lib.licenses.mit; 157038 + hydraPlatforms = lib.platforms.none; 157039 + }) {}; 157040 + 157041 "jsonnet" = callPackage 157042 ({ mkDerivation, aeson, ansi-wl-pprint, base, binary, bytestring 157043 , containers, data-fix, deriving-compat, directory, exceptions ··· 157953 }: 157954 mkDerivation { 157955 pname = "kansas-comet"; 157956 + version = "0.4.1"; 157957 + sha256 = "1j54rsqna8xrw1si8i74v0c9k4jjv8a2q001aa8sx4rxb7d1qbzy"; 157958 enableSeparateDataOutput = true; 157959 libraryHaskellDepends = [ 157960 aeson base containers data-default-class scotty stm text time ··· 164632 license = lib.licenses.mit; 164633 }) {}; 164634 164635 + "lens-aeson_1_1_2" = callPackage 164636 + ({ mkDerivation, aeson, attoparsec, base, bytestring, lens 164637 + , scientific, text, unordered-containers, vector 164638 + }: 164639 + mkDerivation { 164640 + pname = "lens-aeson"; 164641 + version = "1.1.2"; 164642 + sha256 = "0pdjjyjwlavcgm2wrv1fiz09l41hisl2xj6y67xbdix1h6h07hxz"; 164643 + libraryHaskellDepends = [ 164644 + aeson attoparsec base bytestring lens scientific text 164645 + unordered-containers vector 164646 + ]; 164647 + description = "Law-abiding lenses for aeson"; 164648 + license = lib.licenses.mit; 164649 + hydraPlatforms = lib.platforms.none; 164650 + }) {}; 164651 + 164652 "lens-core" = callPackage 164653 ({ mkDerivation, base }: 164654 mkDerivation { ··· 170199 }: 170200 mkDerivation { 170201 pname = "log-base"; 170202 + version = "0.11.0.0"; 170203 + sha256 = "155lzi9x33rhiymfy1271k0dz7c4qm1r48cz6kc7gcwxvrfh8dxi"; 170204 libraryHaskellDepends = [ 170205 aeson aeson-pretty base bytestring deepseq exceptions mmorph 170206 monad-control mtl semigroups stm text time transformers-base ··· 170274 }: 170275 mkDerivation { 170276 pname = "log-elasticsearch"; 170277 + version = "0.12.1.1"; 170278 + sha256 = "0jrfrqydbg549d7gh38mq852kzd0nsaaaq6l5bi4ldfpj443kz8a"; 170279 libraryHaskellDepends = [ 170280 aeson aeson-pretty base base64-bytestring bytestring deepseq 170281 http-client http-client-tls http-types log-base network-uri ··· 170295 }: 170296 mkDerivation { 170297 pname = "log-postgres"; 170298 + version = "0.8.0.2"; 170299 + sha256 = "167asvp7a5v8621sbr6r4j25byg18d125gqd2i4jrq57g5f2mivf"; 170300 libraryHaskellDepends = [ 170301 aeson aeson-pretty base base64-bytestring bytestring deepseq 170302 hpqtypes http-client lifted-base log-base mtl semigroups split text ··· 174896 license = lib.licenses.bsd3; 174897 }) {}; 174898 174899 + "massiv_1_0_1_0" = callPackage 174900 ({ mkDerivation, base, bytestring, deepseq, doctest, exceptions 174901 + , primitive, random, scheduler, unliftio-core, vector 174902 }: 174903 mkDerivation { 174904 pname = "massiv"; 174905 + version = "1.0.1.0"; 174906 + sha256 = "1s47x3cya73mp4gxqn271yp8z23pfgw170pnlxbka61ap4kykmkk"; 174907 libraryHaskellDepends = [ 174908 base bytestring deepseq exceptions primitive random scheduler 174909 unliftio-core vector 174910 ]; 174911 + testHaskellDepends = [ base doctest ]; 174912 description = "Massiv (Массив) is an Array Library"; 174913 license = lib.licenses.bsd3; 174914 hydraPlatforms = lib.platforms.none; ··· 174986 broken = true; 174987 }) {}; 174988 174989 + "massiv-persist_1_0_0_1" = callPackage 174990 ({ mkDerivation, base, bytestring, deepseq, doctest, hspec 174991 , hspec-discover, massiv, massiv-test, persist, primitive 174992 , QuickCheck 174993 }: 174994 mkDerivation { 174995 pname = "massiv-persist"; 174996 + version = "1.0.0.1"; 174997 + sha256 = "1j5vzk5m2r1cs5v5pzmf1i7p8zdlf29g0gdklf6snl9llk755pgy"; 174998 libraryHaskellDepends = [ 174999 base bytestring deepseq massiv persist primitive 175000 ]; ··· 175049 broken = true; 175050 }) {}; 175051 175052 + "massiv-serialise_1_0_0_1" = callPackage 175053 ({ mkDerivation, base, deepseq, doctest, hspec, hspec-discover 175054 , massiv, massiv-test, QuickCheck, serialise, vector 175055 }: 175056 mkDerivation { 175057 pname = "massiv-serialise"; 175058 + version = "1.0.0.1"; 175059 + sha256 = "0zmikmfjjshf9p0fawcg05832hxdzj04kqqh11bz1kqcc1yc7yk0"; 175060 libraryHaskellDepends = [ base deepseq massiv serialise vector ]; 175061 testHaskellDepends = [ 175062 base doctest hspec massiv massiv-test QuickCheck serialise ··· 178417 license = lib.licenses.bsd3; 178418 }) {}; 178419 178420 + "microstache_1_0_2" = callPackage 178421 + ({ mkDerivation, aeson, base, bytestring, containers, deepseq 178422 + , directory, filepath, hspec, parsec, text, transformers 178423 + , unordered-containers, vector 178424 + }: 178425 + mkDerivation { 178426 + pname = "microstache"; 178427 + version = "1.0.2"; 178428 + sha256 = "0pirywb9304j2ylasskwq20k6d2srk616sh41l4s37yajsjggx5i"; 178429 + libraryHaskellDepends = [ 178430 + aeson base containers deepseq directory filepath parsec text 178431 + transformers unordered-containers vector 178432 + ]; 178433 + testHaskellDepends = [ 178434 + aeson base bytestring containers hspec parsec text 178435 + ]; 178436 + description = "Mustache templates for Haskell"; 178437 + license = lib.licenses.bsd3; 178438 + hydraPlatforms = lib.platforms.none; 178439 + }) {}; 178440 + 178441 "microtimer" = callPackage 178442 ({ mkDerivation, base, time }: 178443 mkDerivation { ··· 183128 pname = "months"; 183129 version = "0.2"; 183130 sha256 = "054dag7806850hdii7s5rxg8gx2spdp33pnx4s4ckni9ayvspija"; 183131 + revision = "3"; 183132 + editedCabalFile = "1j57vvb2vs0jd5jsq2dh0q5wpvxibwn43dwkg1l3ysl46k5sv58i"; 183133 libraryHaskellDepends = [ 183134 aeson attoparsec base base-compat deepseq hashable intervals 183135 QuickCheck text time-compat ··· 186444 pname = "mustache"; 186445 version = "2.3.1"; 186446 sha256 = "0j5kzlirirnj2lscxgc6r9j0if8s3pvxswjblma6yxpw6qyzk2xc"; 186447 + revision = "1"; 186448 + editedCabalFile = "05qsxxpbqacfbvdzmz2y2yh3rpf2f0n2rvhvmhn33gsvydxvadbv"; 186449 isLibrary = true; 186450 isExecutable = true; 186451 libraryHaskellDepends = [ ··· 188943 license = lib.licenses.bsd3; 188944 }) {inherit (pkgs) libsodium;}; 188945 188946 + "netcode-io_0_0_3" = callPackage 188947 + ({ mkDerivation, base, bindings-DSL, libsodium }: 188948 + mkDerivation { 188949 + pname = "netcode-io"; 188950 + version = "0.0.3"; 188951 + sha256 = "132rih1fd2qdshnpb8q3glhwgc8790pm8xpm3786hnrl3di1384z"; 188952 + isLibrary = true; 188953 + isExecutable = true; 188954 + libraryHaskellDepends = [ base bindings-DSL ]; 188955 + librarySystemDepends = [ libsodium ]; 188956 + description = "Bindings to the low-level netcode.io library."; 188957 + license = lib.licenses.bsd3; 188958 + hydraPlatforms = lib.platforms.none; 188959 + }) {inherit (pkgs) libsodium;}; 188960 + 188961 "netcore" = callPackage 188962 ({ mkDerivation, ansi-wl-pprint, base, bimap, binary, binary-strict 188963 , bytestring, containers, fgl, HList, hslogger, HUnit, mtl ··· 192656 platforms = [ 192657 "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 192658 ]; 192659 + hydraPlatforms = lib.platforms.none; 192660 }) {}; 192661 192662 "notmuch" = callPackage ··· 193406 pname = "numeric-kinds"; 193407 version = "0.1.0.0"; 193408 sha256 = "0rdx39wa7kklx9a7i5rdwf541fxpz9v3n32rvy2fa6i7n4hr64s4"; 193409 + revision = "1"; 193410 + editedCabalFile = "0zbn5yxga0sknpa83a6v2gx3dhi1rgxlxh0p3d1gd37x2zyd8lxf"; 193411 libraryHaskellDepends = [ base ]; 193412 + description = "Type-level numeric types and classes"; 193413 license = lib.licenses.asl20; 193414 }) {}; 193415 ··· 193432 pname = "numeric-logarithms"; 193433 version = "0.1.0.0"; 193434 sha256 = "1izd7gc9xdrs7a1wbzmhhkv8s9rw2mcq77agvr351dc5jyzdnwiy"; 193435 + revision = "2"; 193436 + editedCabalFile = "11lxh2lz3adwdb1hgxgqh2p2igqzbclpwal072fhdk1hcz987acq"; 193437 libraryHaskellDepends = [ base integer-gmp ]; 193438 testHaskellDepends = [ 193439 base integer-gmp QuickCheck test-framework 193440 test-framework-quickcheck2 193441 ]; 193442 + description = "Integral and rational log2 algorithms"; 193443 license = lib.licenses.asl20; 193444 }) {}; 193445 ··· 195531 license = lib.licenses.bsd3; 195532 }) {}; 195533 195534 + "opc-xml-da-client" = callPackage 195535 + ({ mkDerivation, acc, attoparsec, attoparsec-data, base, base64 195536 + , binary, bytestring, caerbannog, containers, data-default, domain 195537 + , domain-optics, hashable, hashable-time, http-client, QuickCheck 195538 + , quickcheck-instances, rerebase, scientific, tasty, tasty-hunit 195539 + , tasty-quickcheck, text, text-builder, time, transformers 195540 + , unordered-containers, vector, vector-instances, xml-conduit 195541 + , xml-parser 195542 + }: 195543 + mkDerivation { 195544 + pname = "opc-xml-da-client"; 195545 + version = "0.1"; 195546 + sha256 = "0wi2qv4594fz3z6jqdmqnxv17w1yp5ds8xwflnxawb6lpadprskp"; 195547 + libraryHaskellDepends = [ 195548 + acc attoparsec attoparsec-data base base64 bytestring containers 195549 + data-default domain domain-optics hashable hashable-time 195550 + http-client QuickCheck rerebase scientific text text-builder time 195551 + transformers unordered-containers vector vector-instances 195552 + xml-conduit xml-parser 195553 + ]; 195554 + testHaskellDepends = [ 195555 + attoparsec binary caerbannog data-default http-client QuickCheck 195556 + quickcheck-instances rerebase tasty tasty-hunit tasty-quickcheck 195557 + text-builder xml-conduit xml-parser 195558 + ]; 195559 + doHaddock = false; 195560 + description = "OPC XML-DA Client"; 195561 + license = lib.licenses.mit; 195562 + hydraPlatforms = lib.platforms.none; 195563 + }) {}; 195564 + 195565 "open-adt" = callPackage 195566 ({ mkDerivation, base, constraints, recursion-schemes, row-types 195567 , template-haskell ··· 196888 pname = "operational"; 196889 version = "0.2.4.0"; 196890 sha256 = "1hwmwbsxzwv68b39rv4gn3da6irv8zm89gqrkc3rdsgwi5ziyn3i"; 196891 + revision = "1"; 196892 + editedCabalFile = "1b5vjp87lh34lpp9i4mrwcmr6rs45r6azdamwinlhrxynn91n8ri"; 196893 isLibrary = true; 196894 isExecutable = true; 196895 libraryHaskellDepends = [ base mtl ]; ··· 197464 maintainers = with lib.maintainers; [ Gabriel439 ]; 197465 }) {}; 197466 197467 + "optparse-generic_1_4_6" = callPackage 197468 + ({ mkDerivation, base, bytestring, Only, optparse-applicative 197469 + , system-filepath, text, time, transformers, transformers-compat 197470 + , void 197471 + }: 197472 + mkDerivation { 197473 + pname = "optparse-generic"; 197474 + version = "1.4.6"; 197475 + sha256 = "1ihr5ly5xkhhds7frifgy1djay1d7yvdc617qqb7h61h4930kl3k"; 197476 + libraryHaskellDepends = [ 197477 + base bytestring Only optparse-applicative system-filepath text time 197478 + transformers transformers-compat void 197479 + ]; 197480 + description = "Auto-generate a command-line parser for your datatype"; 197481 + license = lib.licenses.bsd3; 197482 + hydraPlatforms = lib.platforms.none; 197483 + maintainers = with lib.maintainers; [ Gabriel439 ]; 197484 + }) {}; 197485 + 197486 "optparse-helper" = callPackage 197487 ({ mkDerivation, base, optparse-applicative }: 197488 mkDerivation { ··· 198165 }: 198166 mkDerivation { 198167 pname = "os-release"; 198168 + version = "1.0.2.1"; 198169 + sha256 = "0fyf6mjk4lmxvjgkvsz7ypx2ir67ry816wa6j7s27a1754cz6cw3"; 198170 libraryHaskellDepends = [ 198171 aeson base megaparsec safe-exceptions text unordered-containers 198172 ]; ··· 204245 pname = "persistent"; 204246 version = "2.13.1.2"; 204247 sha256 = "09si4h64i9drqr80a2sxpxhmsinacqx9bvsc3jah5zlm915q092y"; 204248 + revision = "1"; 204249 + editedCabalFile = "0xasbm1m5az7anp1wqfr69j0b7jycg82qdcq4kd97lqdn7rqvhsp"; 204250 libraryHaskellDepends = [ 204251 aeson attoparsec base base64-bytestring blaze-html bytestring 204252 conduit containers fast-logger http-api-data lift-type monad-logger ··· 205871 }: 205872 mkDerivation { 205873 pname = "phonetic-languages-simplified-examples-common"; 205874 + version = "0.2.0.0"; 205875 + sha256 = "1v2v571rjmfxqzdnm7z2v3dygknlk5nyvfyv7dkgzf7apmlmnpd2"; 205876 libraryHaskellDepends = [ 205877 base heaps mmsyn2-array phonetic-languages-constraints-array 205878 phonetic-languages-ukrainian-array ··· 205918 }: 205919 mkDerivation { 205920 pname = "phonetic-languages-simplified-generalized-examples-common"; 205921 + version = "0.3.0.0"; 205922 + sha256 = "1ajgp4wyfdzvvnj5272r0cpl9jykps5bwzn93asmfbilzfdjaynz"; 205923 libraryHaskellDepends = [ 205924 base heaps phonetic-languages-phonetics-basics 205925 ]; ··· 209901 hydraPlatforms = lib.platforms.none; 209902 }) {}; 209903 209904 + "polysemy-check" = callPackage 209905 + ({ mkDerivation, base, containers, hspec, hspec-discover 209906 + , kind-generics, kind-generics-th, polysemy, polysemy-plugin 209907 + , QuickCheck 209908 + }: 209909 + mkDerivation { 209910 + pname = "polysemy-check"; 209911 + version = "0.3.0.0"; 209912 + sha256 = "1m7m1mi7fbf1nj98c91qxhbnhyqxgb8y7ryj7bk1llinmp2lmwaz"; 209913 + libraryHaskellDepends = [ 209914 + base containers kind-generics kind-generics-th polysemy QuickCheck 209915 + ]; 209916 + testHaskellDepends = [ 209917 + base containers hspec kind-generics kind-generics-th polysemy 209918 + polysemy-plugin QuickCheck 209919 + ]; 209920 + testToolDepends = [ hspec-discover ]; 209921 + description = "QuickCheck for Polysemy"; 209922 + license = lib.licenses.bsd3; 209923 + hydraPlatforms = lib.platforms.none; 209924 + }) {}; 209925 + 209926 "polysemy-chronos" = callPackage 209927 ({ mkDerivation, aeson, base, chronos, containers, hedgehog 209928 , polysemy, polysemy-test, polysemy-time, relude, tasty ··· 211172 pname = "portray"; 211173 version = "0.2.0"; 211174 sha256 = "1kzzvwqphlg1dmd486ijkv6vsqmxnp8h05mwc8590yjxdln5vzdw"; 211175 + revision = "1"; 211176 + editedCabalFile = "0bl0kagjn1k58pq6zbdj2zyzhpdpzs7ra1vrr8a1qdkb11gmp4n2"; 211177 libraryHaskellDepends = [ base containers text wrapped ]; 211178 testHaskellDepends = [ 211179 base containers HUnit test-framework test-framework-hunit text 211180 wrapped 211181 ]; 211182 + description = "Rendering to pseudo-Haskell syntax"; 211183 license = lib.licenses.asl20; 211184 }) {}; 211185 ··· 211189 pname = "portray-diff"; 211190 version = "0.1.0.1"; 211191 sha256 = "1da884cj865q6g1bd1fhcazyl1nzxb0pk2nvhcpp4iqkjvhyd8hw"; 211192 + revision = "1"; 211193 + editedCabalFile = "1dfl488jq79l0k8d8s2q1wxdibvnrrl64sz8gdy9mp0nkd6vaszl"; 211194 libraryHaskellDepends = [ 211195 base containers dlist portray text wrapped 211196 ]; 211197 + description = "Pretty structural diffs between two values"; 211198 license = lib.licenses.asl20; 211199 }) {}; 211200 ··· 211205 pname = "portray-diff-hunit"; 211206 version = "0.1.0.0"; 211207 sha256 = "0gig1gvw0s7cl4jbffqh53r7lfs08clkcjpdypjjbpk0815pk34h"; 211208 + revision = "1"; 211209 + editedCabalFile = "023p7j386zbcmzsbdk7xk85ygi8qq4llh6zp6811grsyq3hfnsa1"; 211210 libraryHaskellDepends = [ 211211 base HUnit portray-diff portray-pretty pretty 211212 ]; 211213 + description = "HUnit assertions based on portray-diff"; 211214 license = lib.licenses.asl20; 211215 }) {}; 211216 ··· 211220 pname = "portray-diff-quickcheck"; 211221 version = "0.1.0.0"; 211222 sha256 = "1kif82y8bapf5d3awkfv7wp3ih89q3p14djanyz6jfapryhccm12"; 211223 + revision = "1"; 211224 + editedCabalFile = "0nf5wxwvs9sad3bphb8dci5d3nr982nr05y99fmsy3vdifi366l2"; 211225 libraryHaskellDepends = [ 211226 base portray-diff portray-pretty QuickCheck 211227 ]; 211228 + description = "QuickCheck tests with portray-diff"; 211229 license = lib.licenses.asl20; 211230 }) {}; 211231 ··· 211237 pname = "portray-pretty"; 211238 version = "0.1.0.2"; 211239 sha256 = "1gh50r77yz1l8qkhdz96bds2l0d5zi75fkir27x3si406h7sdic9"; 211240 + revision = "1"; 211241 + editedCabalFile = "0v30gdwjb0339q5phkbnwxj687w33rgivy772j37vp51zpiylnak"; 211242 libraryHaskellDepends = [ base portray portray-diff pretty text ]; 211243 testHaskellDepends = [ 211244 base HUnit portray portray-diff pretty test-framework 211245 test-framework-hunit text 211246 ]; 211247 + description = "Portray backend for pretty"; 211248 license = lib.licenses.asl20; 211249 }) {}; 211250 ··· 211257 pname = "portray-prettyprinter"; 211258 version = "0.2.0"; 211259 sha256 = "16g55vjcfawx1jxmgy3zgl6bqv67h831z00912fbfh878s1s24ic"; 211260 + revision = "1"; 211261 + editedCabalFile = "1w7y8j2sx9wjyv5iknxjyq3r02l1kym85k1gq6carr49lf05s567"; 211262 libraryHaskellDepends = [ 211263 base portray portray-diff prettyprinter prettyprinter-ansi-terminal 211264 text ··· 211268 prettyprinter-ansi-terminal QuickCheck test-framework 211269 test-framework-hunit test-framework-quickcheck2 text 211270 ]; 211271 + description = "Portray backend for prettyprinter"; 211272 license = lib.licenses.asl20; 211273 }) {}; 211274 ··· 211709 license = lib.licenses.mit; 211710 }) {}; 211711 211712 + "postgresql-binary_0_12_4_2" = callPackage 211713 + ({ mkDerivation, aeson, base, binary-parser, bytestring 211714 + , bytestring-strict-builder, containers, conversion 211715 + , conversion-bytestring, conversion-text, criterion, json-ast 211716 + , network-ip, postgresql-libpq, QuickCheck, quickcheck-instances 211717 + , rerebase, scientific, tasty, tasty-hunit, tasty-quickcheck, text 211718 + , time, transformers, unordered-containers, uuid, vector 211719 + }: 211720 + mkDerivation { 211721 + pname = "postgresql-binary"; 211722 + version = "0.12.4.2"; 211723 + sha256 = "1bklkkf0r5dimdxgmgcviircv87ahv0g4nmkl34kc13pwn6l7xjm"; 211724 + libraryHaskellDepends = [ 211725 + aeson base binary-parser bytestring bytestring-strict-builder 211726 + containers network-ip scientific text time transformers 211727 + unordered-containers uuid vector 211728 + ]; 211729 + testHaskellDepends = [ 211730 + aeson conversion conversion-bytestring conversion-text json-ast 211731 + network-ip postgresql-libpq QuickCheck quickcheck-instances 211732 + rerebase tasty tasty-hunit tasty-quickcheck 211733 + ]; 211734 + benchmarkHaskellDepends = [ criterion rerebase ]; 211735 + description = "Encoders and decoders for the PostgreSQL's binary format"; 211736 + license = lib.licenses.mit; 211737 + hydraPlatforms = lib.platforms.none; 211738 + }) {}; 211739 + 211740 "postgresql-common" = callPackage 211741 ({ mkDerivation, attoparsec, base, bytestring, postgresql-simple }: 211742 mkDerivation { ··· 212095 pname = "postgresql-simple"; 212096 version = "0.6.4"; 212097 sha256 = "0rz2bklxp4pvbxb2w49h5p6pbwabn6d5d4j4mrya4fpa0d13k43d"; 212098 + revision = "3"; 212099 + editedCabalFile = "1gx4vjk99lr10bcvdismr84i6rpl5ny0j08f7f7rq9j8hivj0frp"; 212100 libraryHaskellDepends = [ 212101 aeson attoparsec base bytestring bytestring-builder 212102 case-insensitive containers hashable Only postgresql-libpq ··· 215235 testHaskellDepends = [ async base bytestring hspec unix ]; 215236 description = "Ergonomic process launching with extreme flexibility and speed"; 215237 license = lib.licenses.mit; 215238 }) {}; 215239 215240 "procrastinating-structure" = callPackage ··· 216401 }: 216402 mkDerivation { 216403 pname = "proto-lens"; 216404 + version = "0.7.1.0"; 216405 + sha256 = "0b5wn89d23p87swjbafndrbmklix360amcq5jsl73zaqlh3vy4sy"; 216406 enableSeparateDataOutput = true; 216407 libraryHaskellDepends = [ 216408 base bytestring containers deepseq ghc-prim lens-family parsec ··· 216421 }: 216422 mkDerivation { 216423 pname = "proto-lens-arbitrary"; 216424 + version = "0.1.2.10"; 216425 + sha256 = "1dx82fx4q2q58xavkw62ws34vikpg5g6p0w3mpvn0pigwykjnzda"; 216426 libraryHaskellDepends = [ 216427 base bytestring containers lens-family proto-lens QuickCheck text 216428 ]; ··· 216492 ({ mkDerivation, base, optparse-applicative, proto-lens, text }: 216493 mkDerivation { 216494 pname = "proto-lens-optparse"; 216495 + version = "0.1.1.8"; 216496 + sha256 = "1y5ygqzwyvphxyj6qr5cnknjk06rs6h0xlbwa864p6hjwlayapcn"; 216497 libraryHaskellDepends = [ 216498 base optparse-applicative proto-lens text 216499 ]; ··· 216510 }: 216511 mkDerivation { 216512 pname = "proto-lens-protobuf-types"; 216513 + version = "0.7.1.0"; 216514 + sha256 = "0yrwif600lr2pmqfninwap348k4xg5mvzx9cqp99gdgkknfb88hn"; 216515 setupHaskellDepends = [ base Cabal proto-lens-setup ]; 216516 libraryHaskellDepends = [ 216517 base lens-family proto-lens proto-lens-runtime text ··· 216528 }: 216529 mkDerivation { 216530 pname = "proto-lens-protoc"; 216531 + version = "0.7.1.0"; 216532 + sha256 = "14lbal80mrwla51h3yax8v1hsd05mh5xyipc051n0jkxdifs1cv5"; 216533 isLibrary = true; 216534 isExecutable = true; 216535 libraryHaskellDepends = [ base filepath ]; ··· 216548 }: 216549 mkDerivation { 216550 pname = "proto-lens-runtime"; 216551 + version = "0.7.0.1"; 216552 + sha256 = "03dxnawrsz22s52qzfwgnzs18r7mdb1jvirsck2g62bh5incg80a"; 216553 libraryHaskellDepends = [ 216554 base bytestring containers deepseq filepath lens-family proto-lens 216555 text vector ··· 216564 }: 216565 mkDerivation { 216566 pname = "proto-lens-setup"; 216567 + version = "0.4.0.5"; 216568 + sha256 = "1zl6srfsa4nizrrrbm7b69200w42rfmxmyzdzgb3cl0675ks2r28"; 216569 libraryHaskellDepends = [ 216570 base bytestring Cabal containers deepseq directory filepath process 216571 proto-lens-protoc temporary text ··· 220606 }: 220607 mkDerivation { 220608 pname = "raaz"; 220609 + version = "0.3.5"; 220610 + sha256 = "1b1xwsh01d5p685r85w0mlnf6ldqzy57vrbcsnr9lgdn6bjhvlih"; 220611 isLibrary = true; 220612 isExecutable = true; 220613 enableSeparateDataOutput = true; ··· 221062 }: 221063 mkDerivation { 221064 pname = "ralist"; 221065 + version = "0.4.0.0"; 221066 + sha256 = "1axn2mh1jiz5d39ygf0hg7a0bkywnld4j8jjkflycks1yr7mxha1"; 221067 libraryHaskellDepends = [ 221068 base deepseq indexed-traversable transformers 221069 ]; ··· 234369 license = lib.licenses.bsd3; 234370 }) {}; 234371 234372 + "scheduler_2_0_0_1" = callPackage 234373 + ({ mkDerivation, atomic-primops, base, deepseq, exceptions 234374 + , genvalidity-hspec, hspec, hspec-discover, primitive, pvar 234375 + , QuickCheck, unliftio, unliftio-core 234376 }: 234377 mkDerivation { 234378 pname = "scheduler"; 234379 + version = "2.0.0.1"; 234380 + sha256 = "1hdqm04m3n5y3xrhilj0hykrmqdsjz5p6k2p9y1005khkj5dag9f"; 234381 libraryHaskellDepends = [ 234382 atomic-primops base deepseq exceptions primitive pvar unliftio-core 234383 ]; 234384 testHaskellDepends = [ 234385 + base deepseq genvalidity-hspec hspec QuickCheck unliftio 234386 ]; 234387 testToolDepends = [ hspec-discover ]; 234388 description = "Work stealing scheduler"; ··· 234875 pname = "scotty"; 234876 version = "0.12"; 234877 sha256 = "1lpggpdzgjk23mq7aa64yylds5dbm4ynhcvbarqihjxabvh7xmz1"; 234878 + revision = "6"; 234879 + editedCabalFile = "15gwvx9gdk4vxh1x2n5xvnrix8m0wl96a4aqbdmdfrka43sywfma"; 234880 libraryHaskellDepends = [ 234881 aeson base base-compat-batteries blaze-builder bytestring 234882 case-insensitive data-default-class exceptions fail http-types ··· 236914 pname = "semigroupoids"; 236915 version = "5.3.6"; 236916 sha256 = "0glhqc9x8i5z3bdg23xvl2lfns95msid3h3x0jksna7i6c8j869n"; 236917 + revision = "1"; 236918 + editedCabalFile = "0inbks8x588bpcw7kyap69iy0zrkygycp8hwgrd9yhbxlvj9hmh9"; 236919 libraryHaskellDepends = [ 236920 base base-orphans bifunctors comonad containers contravariant 236921 distributive hashable tagged template-haskell transformers ··· 238229 }: 238230 mkDerivation { 238231 pname = "servant-benchmark"; 238232 + version = "0.2.0.0"; 238233 + sha256 = "0dxyq9n0v09287nz1nqb2m0bdyabdzqig9avpmx4viyf9xzyh6bd"; 238234 libraryHaskellDepends = [ 238235 aeson base base64-bytestring bytestring case-insensitive http-media 238236 http-types QuickCheck servant text yaml ··· 238348 ]; 238349 description = "Command line interface for Servant API clients"; 238350 license = lib.licenses.bsd3; 238351 }) {}; 238352 238353 "servant-client" = callPackage ··· 238901 ]; 238902 description = "Servant combinators to facilitate writing GitHub webhooks"; 238903 license = lib.licenses.mit; 238904 + hydraPlatforms = lib.platforms.none; 238905 }) {}; 238906 238907 "servant-haxl-client" = callPackage ··· 239420 }: 239421 mkDerivation { 239422 pname = "servant-pagination"; 239423 + version = "2.4.1"; 239424 + sha256 = "181an5p0qfzbv3cirnaq8bw778iib4qhv53y60z1ssn16v2vxhq5"; 239425 isLibrary = true; 239426 isExecutable = true; 239427 libraryHaskellDepends = [ ··· 240292 }: 240293 mkDerivation { 240294 pname = "servant-to-elm"; 240295 + version = "0.4.3.0"; 240296 + sha256 = "1s63x270bci7nyz595azff1ny868jjpqbilmy01rzbspjrfhwi7d"; 240297 isLibrary = true; 240298 isExecutable = true; 240299 libraryHaskellDepends = [ ··· 241269 license = lib.licenses.bsd3; 241270 }) {}; 241271 241272 + "sexp-grammar_2_3_3_1" = callPackage 241273 + ({ mkDerivation, alex, array, base, bytestring, containers 241274 + , criterion, data-fix, deepseq, happy, invertible-grammar 241275 + , prettyprinter, QuickCheck, recursion-schemes, scientific 241276 + , semigroups, tasty, tasty-hunit, tasty-quickcheck, text 241277 + , utf8-string 241278 + }: 241279 + mkDerivation { 241280 + pname = "sexp-grammar"; 241281 + version = "2.3.3.1"; 241282 + sha256 = "08sqpk5qgq3mqlxvz24sw43m52khynpf41cnd4yif4b4ri583mb9"; 241283 + libraryHaskellDepends = [ 241284 + array base bytestring containers data-fix deepseq 241285 + invertible-grammar prettyprinter recursion-schemes scientific 241286 + semigroups text utf8-string 241287 + ]; 241288 + libraryToolDepends = [ alex happy ]; 241289 + testHaskellDepends = [ 241290 + base bytestring containers invertible-grammar prettyprinter 241291 + QuickCheck scientific semigroups tasty tasty-hunit tasty-quickcheck 241292 + text 241293 + ]; 241294 + benchmarkHaskellDepends = [ 241295 + base bytestring criterion deepseq text 241296 + ]; 241297 + description = "Invertible grammar combinators for S-expressions"; 241298 + license = lib.licenses.bsd3; 241299 + hydraPlatforms = lib.platforms.none; 241300 + }) {}; 241301 + 241302 "sexp-show" = callPackage 241303 ({ mkDerivation, base, pretty-show }: 241304 mkDerivation { ··· 242121 pname = "shakespeare"; 242122 version = "2.0.25"; 242123 sha256 = "1fjv3yg425d87d3dih0l3ff95g5a5yp9w85m58sjara6xqivj9s4"; 242124 + revision = "1"; 242125 + editedCabalFile = "0na31a7h3sq8ndrx79waywsfj5667pm0masy10gxzhzwmf6i3s1l"; 242126 libraryHaskellDepends = [ 242127 aeson base blaze-html blaze-markup bytestring containers directory 242128 exceptions ghc-prim parsec process scientific template-haskell text ··· 242938 pname = "short-vec"; 242939 version = "0.1.0.0"; 242940 sha256 = "0w651jipwxh7k4ng5rvq507br4347hzy8x8c47c1g7haryj80gzq"; 242941 + revision = "4"; 242942 + editedCabalFile = "1rwzaxdpkrn1v7p8jph4m91vyphdzm9h2yppnmanp636p0sjxzf4"; 242943 libraryHaskellDepends = [ 242944 adjunctions base data-default-class deepseq distributive fin-int 242945 indexed-traversable integer-gmp portray portray-diff QuickCheck ··· 242956 gauge indexed-traversable integer-gmp portray portray-diff 242957 QuickCheck semigroupoids sint 242958 ]; 242959 + description = "Length-indexed vectors using SmallArray#"; 242960 license = lib.licenses.asl20; 242961 + hydraPlatforms = lib.platforms.none; 242962 + broken = true; 242963 }) {}; 242964 242965 "short-vec-lens" = callPackage ··· 242970 pname = "short-vec-lens"; 242971 version = "0.1.0.0"; 242972 sha256 = "1afz1izz19xrjy0cdhmpy7b667waa5v8jh1ps3jpjfpgbmysjz3g"; 242973 + revision = "1"; 242974 + editedCabalFile = "1bkvx7csgqdn16kamih5h797pcg3ppcf6gln7lf01bw9pd5hpkkb"; 242975 libraryHaskellDepends = [ 242976 base fin-int indexed-traversable lens short-vec sint 242977 ]; 242978 description = "Lenses and related functionality for the `short-vec` package"; 242979 license = lib.licenses.asl20; 242980 + hydraPlatforms = lib.platforms.none; 242981 }) {}; 242982 242983 "shortbytestring" = callPackage ··· 248861 pname = "snumber"; 248862 version = "0.1.0.0"; 248863 sha256 = "0f340hzhhmiy342c5250m61f3gkcnfymjbd2a13alzdh7pmhb2mg"; 248864 + revision = "1"; 248865 + editedCabalFile = "0cc7chg4qhqlrkdv2m7y514gs9lm1hixwaw543dv47vqb12063im"; 248866 libraryHaskellDepends = [ base numeric-kinds ]; 248867 + description = "Integer singletons with flexible representation"; 248868 license = lib.licenses.asl20; 248869 }) {}; 248870 ··· 252900 pname = "stackcollapse-ghc"; 252901 version = "0.0.1.4"; 252902 sha256 = "1scqjjp1cpz3zzvqa6wmfz11qrhsbqwgq7h8qjg0d8ri3r9z82lb"; 252903 + revision = "1"; 252904 + editedCabalFile = "0k4gayvmjdfvfbyxjcmw1hk9vi90l0f9p3npi4rv2wwn1pl00vgm"; 252905 isLibrary = false; 252906 isExecutable = true; 252907 executableHaskellDepends = [ ··· 256421 ({ mkDerivation, base }: 256422 mkDerivation { 256423 pname = "string-interpreter"; 256424 + version = "0.5.4.1"; 256425 + sha256 = "1dgmqircw5gz62crxzx3d7gk2xyvmcwqdy15rpjgy2q7q5brcv7h"; 256426 libraryHaskellDepends = [ base ]; 256427 description = "Is used in the phonetic languages approach (e. g. in the recursive mode)."; 256428 license = lib.licenses.mit; ··· 257079 license = lib.licenses.bsd3; 257080 }) {}; 257081 257082 + "structured_0_1_1" = callPackage 257083 + ({ mkDerivation, aeson, array, base, base16-bytestring, binary 257084 + , bytestring, containers, hashable, scientific, tagged, text 257085 + , time-compat, transformers, unordered-containers, uuid-types 257086 + , vector 257087 + }: 257088 + mkDerivation { 257089 + pname = "structured"; 257090 + version = "0.1.1"; 257091 + sha256 = "1mz02ys85z79nj24ylsmgh8v2m7zv2rixf7w0iqnwc49lax52w4q"; 257092 + libraryHaskellDepends = [ 257093 + aeson array base base16-bytestring binary bytestring containers 257094 + hashable scientific tagged text time-compat transformers 257095 + unordered-containers uuid-types vector 257096 + ]; 257097 + description = "Structure (hash) of your data types"; 257098 + license = lib.licenses.bsd3; 257099 + hydraPlatforms = lib.platforms.none; 257100 + }) {}; 257101 + 257102 "structured-cli" = callPackage 257103 ({ mkDerivation, base, data-default, exceptions, haskeline, mtl 257104 , split, transformers ··· 258503 libraryPkgconfigDepends = [ librsvg ]; 258504 description = "Binding to the libsvg-cairo library"; 258505 license = lib.licenses.bsd3; 258506 + hydraPlatforms = lib.platforms.none; 258507 + broken = true; 258508 }) {inherit (pkgs) librsvg;}; 258509 258510 "svgone" = callPackage ··· 259016 license = "unknown"; 259017 }) {}; 259018 259019 + "sydtest_0_4_1_0" = callPackage 259020 ({ mkDerivation, async, base, bytestring, containers, Diff, dlist 259021 , envparse, filepath, MonadRandom, mtl, optparse-applicative, path 259022 , path-io, pretty-show, QuickCheck, quickcheck-io, random-shuffle ··· 259025 }: 259026 mkDerivation { 259027 pname = "sydtest"; 259028 + version = "0.4.1.0"; 259029 + sha256 = "1g63qq1hisfpnic9sl2a8bry1wyr6ccdcq0l2dagdnggripjgdl1"; 259030 libraryHaskellDepends = [ 259031 async base bytestring containers Diff dlist envparse filepath 259032 MonadRandom mtl optparse-applicative path path-io pretty-show ··· 262261 pname = "taskwarrior"; 262262 version = "0.3.0.0"; 262263 sha256 = "1h24d799q1s6b36hd40bxa4c9m1izkgh6j7p2jv1p6cxngz28ni0"; 262264 + revision = "6"; 262265 + editedCabalFile = "02jag4yib1fqf2fp9p323hb3vsbkrqm1k9zp2wag6ysl5kvvq1x6"; 262266 libraryHaskellDepends = [ 262267 aeson base bytestring containers process random text time 262268 unordered-containers uuid ··· 264339 pname = "ten"; 264340 version = "0.1.0.2"; 264341 sha256 = "0djvcb2l9dnnjbhivchi6yyaj5i96jmy7yhr9x3paiz1l54brrqx"; 264342 + revision = "1"; 264343 + editedCabalFile = "1dcr49q8g3wr1glhlawvg4bbz3mykvwnx7z9pw1ssvk9w7839z6r"; 264344 libraryHaskellDepends = [ 264345 adjunctions base data-default-class deepseq distributive hashable 264346 portray portray-diff some text transformers wrapped ··· 264350 HUnit portray portray-diff some test-framework test-framework-hunit 264351 text transformers wrapped 264352 ]; 264353 + description = "Functors et al. over arity-1 type constructors"; 264354 license = lib.licenses.asl20; 264355 }) {}; 264356 ··· 264375 pname = "ten-unordered-containers"; 264376 version = "0.1.0.2"; 264377 sha256 = "0y4aw77ix2ay43l8n17322hbmm1npcdr1bl7kdza377jd1ci20px"; 264378 + revision = "1"; 264379 + editedCabalFile = "196gjc39c0x4p444byh7mwnhf9ci7dxhmxl602ha52fr554cdh0j"; 264380 libraryHaskellDepends = [ 264381 base hashable portray portray-diff some ten unordered-containers 264382 wrapped ··· 264386 portray-pretty some ten ten-lens test-framework 264387 test-framework-hunit text transformers unordered-containers wrapped 264388 ]; 264389 + description = "Higher-kinded hash containers"; 264390 license = lib.licenses.asl20; 264391 }) {}; 264392 ··· 266496 license = lib.licenses.bsd3; 266497 }) {}; 266498 266499 + "text-short_0_1_4" = callPackage 266500 + ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim 266501 + , hashable, quickcheck-instances, tasty, tasty-hunit 266502 + , tasty-quickcheck, template-haskell, text 266503 + }: 266504 + mkDerivation { 266505 + pname = "text-short"; 266506 + version = "0.1.4"; 266507 + sha256 = "1p56cjm6f883ajb54y8hmrl01sqda6a36xvbmgjv3mb9gxv953v4"; 266508 + libraryHaskellDepends = [ 266509 + base binary bytestring deepseq ghc-prim hashable template-haskell 266510 + text 266511 + ]; 266512 + testHaskellDepends = [ 266513 + base binary bytestring quickcheck-instances tasty tasty-hunit 266514 + tasty-quickcheck template-haskell text 266515 + ]; 266516 + description = "Memory-efficient representation of Unicode text strings"; 266517 + license = lib.licenses.bsd3; 266518 + hydraPlatforms = lib.platforms.none; 266519 + }) {}; 266520 + 266521 "text-show" = callPackage 266522 ({ mkDerivation, array, base, base-compat-batteries, base-orphans 266523 , bifunctors, bytestring, bytestring-builder, containers, criterion ··· 268145 pname = "threepenny-gui"; 268146 version = "0.9.1.0"; 268147 sha256 = "00sjkfa9qfnnwqfdw68yb8hq6nm1y5qv9896rzn5aachr7mlfpx2"; 268148 + revision = "1"; 268149 + editedCabalFile = "0zdpkp0pl6z4aabikbq30md392gk988fxwcqw10khv1icm143pcc"; 268150 isLibrary = true; 268151 isExecutable = true; 268152 enableSeparateDataOutput = true; ··· 272797 license = lib.licenses.gpl2Plus; 272798 }) {}; 272799 272800 + "tree-diff_0_2_1" = callPackage 272801 + ({ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base 272802 + , base-compat, bytestring, bytestring-builder, containers 272803 + , criterion, deepseq, Diff, hashable, parsec, parsers, pretty 272804 + , primitive, QuickCheck, scientific, semialign, strict, tagged 272805 + , tasty, tasty-golden, tasty-quickcheck, text, these, time 272806 + , trifecta, unordered-containers, uuid-types, vector 272807 + }: 272808 + mkDerivation { 272809 + pname = "tree-diff"; 272810 + version = "0.2.1"; 272811 + sha256 = "0bybi4qp7nj9117yza5qqgw2f7s6rk3i7q642jqd7sdn3bx5cnap"; 272812 + libraryHaskellDepends = [ 272813 + aeson ansi-terminal ansi-wl-pprint base base-compat bytestring 272814 + bytestring-builder containers deepseq hashable parsec parsers 272815 + pretty primitive QuickCheck scientific semialign strict tagged text 272816 + these time unordered-containers uuid-types vector 272817 + ]; 272818 + testHaskellDepends = [ 272819 + ansi-terminal ansi-wl-pprint base base-compat parsec primitive 272820 + QuickCheck tagged tasty tasty-golden tasty-quickcheck trifecta 272821 + ]; 272822 + benchmarkHaskellDepends = [ base criterion deepseq Diff ]; 272823 + description = "Diffing of (expression) trees"; 272824 + license = lib.licenses.gpl2Plus; 272825 + hydraPlatforms = lib.platforms.none; 272826 + }) {}; 272827 + 272828 "tree-fun" = callPackage 272829 ({ mkDerivation, base, containers, mtl }: 272830 mkDerivation { ··· 284715 license = lib.licenses.bsd3; 284716 }) {}; 284717 284718 + "wai-feature-flags_0_1_0_2" = callPackage 284719 + ({ mkDerivation, aeson, base, bytestring, splitmix, text 284720 + , unordered-containers, wai, warp 284721 + }: 284722 + mkDerivation { 284723 + pname = "wai-feature-flags"; 284724 + version = "0.1.0.2"; 284725 + sha256 = "03w8hskgajvkhjsrj7ynxcx92qghqfd9rfxb5v4wm7wb6lag8qvh"; 284726 + isLibrary = true; 284727 + isExecutable = true; 284728 + enableSeparateDataOutput = true; 284729 + libraryHaskellDepends = [ 284730 + aeson base bytestring splitmix text unordered-containers wai 284731 + ]; 284732 + executableHaskellDepends = [ base wai warp ]; 284733 + description = "Feature flag support for WAI applications"; 284734 + license = lib.licenses.bsd3; 284735 + hydraPlatforms = lib.platforms.none; 284736 + }) {}; 284737 + 284738 "wai-frontend-monadcgi" = callPackage 284739 ({ mkDerivation, base, bytestring, case-insensitive, cgi 284740 , containers, http-types, transformers, wai ··· 286550 ]; 286551 description = "Warp based on QUIC"; 286552 license = lib.licenses.bsd3; 286553 + hydraPlatforms = lib.platforms.none; 286554 + broken = true; 286555 }) {}; 286556 286557 "warp-static" = callPackage ··· 288167 maintainers = with lib.maintainers; [ maralorn ]; 288168 }) {}; 288169 288170 + "weeder_2_3_0" = callPackage 288171 + ({ mkDerivation, algebraic-graphs, base, bytestring, containers 288172 + , dhall, directory, filepath, generic-lens, ghc, lens, mtl 288173 + , optparse-applicative, regex-tdfa, text, transformers 288174 + }: 288175 + mkDerivation { 288176 + pname = "weeder"; 288177 + version = "2.3.0"; 288178 + sha256 = "1l3g0afb0k91qb64kpj18nb53njbv3s5w06rkjf58p7qk6ynk9ig"; 288179 + isLibrary = true; 288180 + isExecutable = true; 288181 + libraryHaskellDepends = [ 288182 + algebraic-graphs base bytestring containers dhall directory 288183 + filepath generic-lens ghc lens mtl optparse-applicative regex-tdfa 288184 + text transformers 288185 + ]; 288186 + executableHaskellDepends = [ 288187 + base bytestring containers directory filepath ghc 288188 + optparse-applicative transformers 288189 + ]; 288190 + description = "Detect dead code"; 288191 + license = lib.licenses.bsd3; 288192 + hydraPlatforms = lib.platforms.none; 288193 + maintainers = with lib.maintainers; [ maralorn ]; 288194 + }) {}; 288195 + 288196 "weekdaze" = callPackage 288197 ({ mkDerivation, array, base, bytestring, Cabal, containers 288198 , cryptohash, data-default, deepseq, directory, extra, factory ··· 289092 pname = "witherable"; 289093 version = "0.4.1"; 289094 sha256 = "1jj2dq0ddaa2v3hksnrv1z1ll19fa4npsqlp7fs4nn5g6833y58b"; 289095 + revision = "1"; 289096 + editedCabalFile = "02l2gbcab7w72hqlbs1ikylgb1970a0iyrikn847nncivbzrc3gj"; 289097 libraryHaskellDepends = [ 289098 base base-orphans containers hashable indexed-traversable 289099 indexed-traversable-instances transformers unordered-containers ··· 290048 pname = "wrapped"; 290049 version = "0.1.0.1"; 290050 sha256 = "00fvammhn4dlna5d1dc8lpwrdrigj9cnlyi8scwslibr6bjsjzfp"; 290051 + revision = "1"; 290052 + editedCabalFile = "0qfl0k0bsxhf5zibfdfm08jn82j1nm8pdnmv23znmhv77hpm4li8"; 290053 libraryHaskellDepends = [ base ]; 290054 + description = "Newtypes to carry DerivingVia instances"; 290055 license = lib.licenses.asl20; 290056 }) {}; 290057 ··· 290061 pname = "wrapped-generic-default"; 290062 version = "0.1.0.1"; 290063 sha256 = "10hbz8m98cw8lr2xj0wkc017pnypagb11ss1ihpp6lnc4w1hpj3f"; 290064 + revision = "1"; 290065 + editedCabalFile = "0i75biqz6qml17yzg3k4q0ms5vzvwph37da1wl3l5v8cjnw2yrs7"; 290066 libraryHaskellDepends = [ base data-default-class wrapped ]; 290067 + description = "A Generic instance of Default"; 290068 license = lib.licenses.asl20; 290069 }) {}; 290070 ··· 292784 }) {}; 292785 292786 "xmonad-dbus" = callPackage 292787 + ({ mkDerivation, base, dbus }: 292788 mkDerivation { 292789 pname = "xmonad-dbus"; 292790 + version = "0.1.0.1"; 292791 + sha256 = "15sqfk4y4arrv0bjzkrw49z1p7k3fqkn4w8pak2j7rki3915iyd4"; 292792 isLibrary = true; 292793 isExecutable = true; 292794 + libraryHaskellDepends = [ base dbus ]; 292795 + executableHaskellDepends = [ base dbus ]; 292796 + testHaskellDepends = [ base dbus ]; 292797 license = lib.licenses.bsd3; 292798 hydraPlatforms = lib.platforms.none; 292799 broken = true; ··· 293855 pname = "yaml"; 293856 version = "0.11.6.0"; 293857 sha256 = "0hxg9mfi1dn9a7kp3imzfvnk7jj4sdjdxi6xyqz9ra7lqg14np3r"; 293858 + revision = "1"; 293859 + editedCabalFile = "1yydwna0x7fj1zw0zkz3n1cfvnwdykblk19wz5bw9rcwp0i0mzkb"; 293860 configureFlags = [ "-fsystem-libyaml" ]; 293861 isLibrary = true; 293862 isExecutable = true; ··· 293873 ]; 293874 description = "Support for parsing and rendering YAML documents"; 293875 license = lib.licenses.bsd3; 293876 + }) {}; 293877 + 293878 + "yaml_0_11_7_0" = callPackage 293879 + ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring 293880 + , conduit, containers, directory, filepath, hspec, HUnit, libyaml 293881 + , mockery, mtl, raw-strings-qq, resourcet, scientific 293882 + , template-haskell, temporary, text, transformers 293883 + , unordered-containers, vector 293884 + }: 293885 + mkDerivation { 293886 + pname = "yaml"; 293887 + version = "0.11.7.0"; 293888 + sha256 = "0s08kw0hqxixxripwjmz7b4yh9130dws3jaj460x8ds8q4b6khbx"; 293889 + configureFlags = [ "-fsystem-libyaml" ]; 293890 + isLibrary = true; 293891 + isExecutable = true; 293892 + libraryHaskellDepends = [ 293893 + aeson attoparsec base bytestring conduit containers directory 293894 + filepath libyaml mtl resourcet scientific template-haskell text 293895 + transformers unordered-containers vector 293896 + ]; 293897 + testHaskellDepends = [ 293898 + aeson attoparsec base base-compat bytestring conduit containers 293899 + directory filepath hspec HUnit libyaml mockery mtl raw-strings-qq 293900 + resourcet scientific template-haskell temporary text transformers 293901 + unordered-containers vector 293902 + ]; 293903 + description = "Support for parsing and rendering YAML documents"; 293904 + license = lib.licenses.bsd3; 293905 + hydraPlatforms = lib.platforms.none; 293906 }) {}; 293907 293908 "yaml-combinators" = callPackage
+1
pkgs/development/libraries/atkmm/2.36.nix
··· 19 20 passthru = { 21 updateScript = gnome.updateScript { 22 packageName = pname; 23 versionPolicy = "odd-unstable"; 24 };
··· 19 20 passthru = { 21 updateScript = gnome.updateScript { 22 + attrPath = "atkmm_2_36"; 23 packageName = pname; 24 versionPolicy = "odd-unstable"; 25 };
+50 -7
pkgs/development/libraries/gexiv2/default.nix
··· 1 - { lib, stdenv, fetchurl, meson, ninja, pkg-config, exiv2, glib, gnome, gobject-introspection, vala, gtk-doc, docbook_xsl, docbook_xml_dtd_43 }: 2 3 stdenv.mkDerivation rec { 4 pname = "gexiv2"; 5 - version = "0.12.3"; 6 7 outputs = [ "out" "dev" "devdoc" ]; 8 9 src = fetchurl { 10 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 11 - sha256 = "0jt5cqL8b4QBULrR7XnBy+xnKVHhgMHh7DPKbHMMWfM="; 12 }; 13 14 - nativeBuildInputs = [ meson ninja pkg-config gobject-introspection vala gtk-doc docbook_xsl docbook_xml_dtd_43 ]; 15 - buildInputs = [ glib ]; 16 - propagatedBuildInputs = [ exiv2 ]; 17 18 mesonFlags = [ 19 "-Dgtk_doc=true" 20 ]; 21 22 doCheck = true; 23 24 passthru = { 25 updateScript = gnome.updateScript { 26 packageName = pname; ··· 31 meta = with lib; { 32 homepage = "https://wiki.gnome.org/Projects/gexiv2"; 33 description = "GObject wrapper around the Exiv2 photo metadata library"; 34 - license = licenses.gpl2; 35 platforms = platforms.unix; 36 maintainers = teams.gnome.members; 37 };
··· 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , meson 5 + , ninja 6 + , pkg-config 7 + , exiv2 8 + , glib 9 + , gnome 10 + , gobject-introspection 11 + , vala 12 + , gtk-doc 13 + , docbook-xsl-nons 14 + , docbook_xml_dtd_43 15 + , python3 16 + }: 17 18 stdenv.mkDerivation rec { 19 pname = "gexiv2"; 20 + version = "0.14.0"; 21 22 outputs = [ "out" "dev" "devdoc" ]; 23 24 src = fetchurl { 25 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 26 + sha256 = "5YJ5pv8gtvZPpJlhXaXptXz2W6eFC3L6/fFyIanW1p4="; 27 }; 28 29 + nativeBuildInputs = [ 30 + meson 31 + ninja 32 + pkg-config 33 + gobject-introspection 34 + vala 35 + gtk-doc 36 + docbook-xsl-nons 37 + docbook_xml_dtd_43 38 + ]; 39 + 40 + buildInputs = [ 41 + glib 42 + # Python binding overrides 43 + python3 44 + python3.pkgs.pygobject3 45 + ]; 46 + 47 + propagatedBuildInputs = [ 48 + exiv2 49 + ]; 50 51 mesonFlags = [ 52 "-Dgtk_doc=true" 53 + "-Dpython3_girdir=${placeholder "out"}/${python3.sitePackages}/gi/overrides" 54 ]; 55 56 doCheck = true; 57 58 + preCheck = '' 59 + # Our gobject-introspection patches make the shared library paths absolute 60 + # in the GIR files. When running unit tests, the library is not yet installed, 61 + # though, so we need to replace the absolute path with a local one during build. 62 + # We are using a symlink that will be overridden during installation. 63 + mkdir -p $out/lib 64 + ln -s $PWD/gexiv2/libgexiv2.so.2 $out/lib/libgexiv2.so.2 65 + ''; 66 + 67 passthru = { 68 updateScript = gnome.updateScript { 69 packageName = pname; ··· 74 meta = with lib; { 75 homepage = "https://wiki.gnome.org/Projects/gexiv2"; 76 description = "GObject wrapper around the Exiv2 photo metadata library"; 77 + license = licenses.gpl2Plus; 78 platforms = platforms.unix; 79 maintainers = teams.gnome.members; 80 };
+2 -2
pkgs/development/libraries/glibmm/2.68.nix
··· 13 14 stdenv.mkDerivation rec { 15 pname = "glibmm"; 16 - version = "2.68.1"; 17 18 outputs = [ "out" "dev" ]; 19 20 src = fetchurl { 21 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 22 - sha256 = "sha256-ZmTifJqcyoHCnjVof0ny4NFzovyemMNCgxH3B9tTL4w="; 23 }; 24 25 nativeBuildInputs = [
··· 13 14 stdenv.mkDerivation rec { 15 pname = "glibmm"; 16 + version = "2.70.0"; 17 18 outputs = [ "out" "dev" ]; 19 20 src = fetchurl { 21 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 22 + sha256 = "sha256-gAj9iu3cyGej+X8RPeYl9ulu+Yz3hgN5gTqcD+/9tSA="; 23 }; 24 25 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/glibmm/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "glibmm"; 5 - version = "2.66.1"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-ab1rUydxbKL1EatYCpaf178M0sJM4V4dDlMFktP/IJw="; 10 }; 11 12 outputs = [ "out" "dev" ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "glibmm"; 5 + version = "2.66.2"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 + sha256 = "sha256-sqTNe5rph3lMu1ob7MEM7LZRgrm7hBhoYl1ruxI+2x0="; 10 }; 11 12 outputs = [ "out" "dev" ];
+10 -1
pkgs/development/libraries/goocanvas/2.x.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, gettext, gtk-doc, gobject-introspection, python2, gtk3, cairo, glib }: 2 3 stdenv.mkDerivation rec { 4 pname = "goocanvas"; ··· 19 ]; 20 PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "$(dev)/share/gir-1.0"; 21 PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "$(out)/lib/girepository-1.0"; 22 23 meta = with lib; { 24 description = "Canvas widget for GTK based on the the Cairo 2D library";
··· 1 + { lib, stdenv, fetchurl, pkg-config, gettext, gtk-doc, gobject-introspection, python2, gtk3, cairo, glib, gnome }: 2 3 stdenv.mkDerivation rec { 4 pname = "goocanvas"; ··· 19 ]; 20 PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "$(dev)/share/gir-1.0"; 21 PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "$(out)/lib/girepository-1.0"; 22 + 23 + passthru = { 24 + updateScript = gnome.updateScript { 25 + attrPath = "${pname}${lib.versions.major version}"; 26 + packageName = pname; 27 + versionPolicy = "odd-unstable"; 28 + freeze = true; 29 + }; 30 + }; 31 32 meta = with lib; { 33 description = "Canvas widget for GTK based on the the Cairo 2D library";
+9
pkgs/development/libraries/goocanvas/3.x.nix
··· 9 , cairo 10 , gtk3 11 , glib 12 }: 13 14 stdenv.mkDerivation rec { ··· 38 39 PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "$(dev)/share/gir-1.0"; 40 PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "$(out)/lib/girepository-1.0"; 41 42 meta = with lib; { 43 description = "Canvas widget for GTK based on the the Cairo 2D library";
··· 9 , cairo 10 , gtk3 11 , glib 12 + , gnome 13 }: 14 15 stdenv.mkDerivation rec { ··· 39 40 PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "$(dev)/share/gir-1.0"; 41 PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "$(out)/lib/girepository-1.0"; 42 + 43 + passthru = { 44 + updateScript = gnome.updateScript { 45 + attrPath = "${pname}${lib.versions.major version}"; 46 + packageName = pname; 47 + versionPolicy = "odd-unstable"; 48 + }; 49 + }; 50 51 meta = with lib; { 52 description = "Canvas widget for GTK based on the the Cairo 2D library";
+2 -1
pkgs/development/libraries/goocanvas/default.nix
··· 15 passthru = { 16 updateScript = gnome.updateScript { 17 packageName = pname; 18 - versionPolicy = "none"; 19 }; 20 }; 21
··· 15 passthru = { 16 updateScript = gnome.updateScript { 17 packageName = pname; 18 + versionPolicy = "odd-unstable"; 19 + freeze = true; 20 }; 21 }; 22
+1 -1
pkgs/development/libraries/goocanvasmm/default.nix
··· 19 updateScript = gnome.updateScript { 20 packageName = pname; 21 attrPath = "goocanvasmm2"; 22 - versionPolicy = "odd-unstable"; 23 }; 24 }; 25
··· 19 updateScript = gnome.updateScript { 20 packageName = pname; 21 attrPath = "goocanvasmm2"; 22 + versionPolicy = "none"; # stable version has not been released yet, last update 2015 23 }; 24 }; 25
+3 -3
pkgs/development/libraries/grilo-plugins/default.nix
··· 31 32 stdenv.mkDerivation rec { 33 pname = "grilo-plugins"; 34 - version = "0.3.13"; 35 36 src = fetchurl { 37 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 38 - sha256 = "HEMF1nNkqTBUODbMGYLzDpRpc7j/avPv4x2HcJq1IPg="; 39 }; 40 41 patches = [ ··· 95 homepage = "https://wiki.gnome.org/Projects/Grilo"; 96 description = "A collection of plugins for the Grilo framework"; 97 maintainers = teams.gnome.members; 98 - license = licenses.lgpl21; 99 platforms = platforms.linux; 100 }; 101 }
··· 31 32 stdenv.mkDerivation rec { 33 pname = "grilo-plugins"; 34 + version = "0.3.14"; 35 36 src = fetchurl { 37 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 38 + sha256 = "aGhEs07HOySTH/bMT2Az8AcpR6bbYKzcf7Pq8Velgcg="; 39 }; 40 41 patches = [ ··· 95 homepage = "https://wiki.gnome.org/Projects/Grilo"; 96 description = "A collection of plugins for the Grilo framework"; 97 maintainers = teams.gnome.members; 98 + license = licenses.lgpl21Plus; 99 platforms = platforms.linux; 100 }; 101 }
+45 -23
pkgs/development/libraries/grilo/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, meson, ninja, pkg-config, gettext, vala, glib, liboauth, gtk3 2 - , gtk-doc, docbook_xsl, docbook_xml_dtd_43 3 - , libxml2, gnome, gobject-introspection, libsoup, totem-pl-parser }: 4 5 - let 6 pname = "grilo"; 7 - version = "0.3.13"; # if you change minor, also change ./setup-hook.sh 8 - in stdenv.mkDerivation rec { 9 - name = "${pname}-${version}"; 10 11 outputs = [ "out" "dev" "man" "devdoc" ]; 12 outputBin = "dev"; 13 14 src = fetchurl { 15 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${name}.tar.xz"; 16 - sha256 = "0ywjvh7xw4ql1q4fvl0q5n06n08pga1g1nc9l7c3x5214gr3fj6i"; 17 }; 18 19 - patches = [ 20 - (fetchpatch { 21 - name = "CVE-2021-39365.patch"; 22 - url = "https://gitlab.gnome.org/GNOME/grilo/-/commit/cd2472e506dafb1bb8ae510e34ad4797f63e263e.patch"; 23 - sha256 = "1i1p21vlms43iawg4dl1dibnpsbnkx27kcfvllnx76q07bfrpwzm"; 24 - }) 25 - ]; 26 - 27 - setupHook = ./setup-hook.sh; 28 - 29 mesonFlags = [ 30 "-Denable-gtk-doc=true" 31 ]; 32 33 nativeBuildInputs = [ 34 - meson ninja pkg-config gettext gobject-introspection vala 35 - gtk-doc docbook_xsl docbook_xml_dtd_43 36 ]; 37 - buildInputs = [ glib liboauth gtk3 libxml2 libsoup totem-pl-parser ]; 38 39 passthru = { 40 updateScript = gnome.updateScript { ··· 47 homepage = "https://wiki.gnome.org/Projects/Grilo"; 48 description = "Framework that provides access to various sources of multimedia content, using a pluggable system"; 49 maintainers = teams.gnome.members; 50 - license = licenses.lgpl2; 51 platforms = platforms.linux; 52 }; 53 }
··· 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , meson 5 + , ninja 6 + , pkg-config 7 + , gettext 8 + , vala 9 + , glib 10 + , liboauth 11 + , gtk3 12 + , gtk-doc 13 + , docbook-xsl-nons 14 + , docbook_xml_dtd_43 15 + , libxml2 16 + , gnome 17 + , gobject-introspection 18 + , libsoup 19 + , totem-pl-parser 20 + }: 21 22 + stdenv.mkDerivation rec { 23 pname = "grilo"; 24 + version = "0.3.14"; # if you change minor, also change ./setup-hook.sh 25 26 outputs = [ "out" "dev" "man" "devdoc" ]; 27 outputBin = "dev"; 28 29 + setupHook = ./setup-hook.sh; 30 + 31 src = fetchurl { 32 + url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 33 + sha256 = "A2nQsAuw9Zul966oz8Zl843xSltBgtKMfB4s0VtRh0M="; 34 }; 35 36 mesonFlags = [ 37 "-Denable-gtk-doc=true" 38 ]; 39 40 nativeBuildInputs = [ 41 + meson 42 + ninja 43 + pkg-config 44 + gettext 45 + gobject-introspection 46 + vala 47 + gtk-doc 48 + docbook-xsl-nons 49 + docbook_xml_dtd_43 50 ]; 51 + 52 + buildInputs = [ 53 + glib 54 + liboauth 55 + gtk3 56 + libxml2 57 + libsoup 58 + totem-pl-parser 59 + ]; 60 61 passthru = { 62 updateScript = gnome.updateScript { ··· 69 homepage = "https://wiki.gnome.org/Projects/Grilo"; 70 description = "Framework that provides access to various sources of multimedia content, using a pluggable system"; 71 maintainers = teams.gnome.members; 72 + license = licenses.lgpl2Plus; 73 platforms = platforms.linux; 74 }; 75 }
+2 -1
pkgs/development/libraries/gstreamer/gstreamermm/default.nix
··· 18 19 passthru = { 20 updateScript = gnome.updateScript { 21 - packageName = "gst_all_1.gstreamermm"; 22 versionPolicy = "odd-unstable"; 23 }; 24 };
··· 18 19 passthru = { 20 updateScript = gnome.updateScript { 21 + attrPath = "gst_all_1.gstreamermm"; 22 + packageName = "gstreamermm"; 23 versionPolicy = "odd-unstable"; 24 }; 25 };
+8 -6
pkgs/development/libraries/gtk-frdp/default.nix
··· 9 , glib 10 , gtk3 11 , freerdp 12 - , nix-update-script 13 }: 14 15 stdenv.mkDerivation rec { 16 pname = "gtk-frdp"; 17 - version = "3.37.1-unstable-2020-10-26"; 18 19 src = fetchFromGitLab { 20 domain = "gitlab.gnome.org"; 21 owner = "GNOME"; 22 repo = pname; 23 - rev = "805721e82ca1df6a50da3b5bd3b75d6747016482"; 24 - sha256 = "q/UFKYj3LUkAzll3KeKd6oec0GJnDtTuFMTTatKFlcs="; 25 }; 26 27 nativeBuildInputs = [ ··· 39 ]; 40 41 passthru = { 42 - updateScript = nix-update-script { 43 - attrPath = pname; 44 }; 45 }; 46
··· 9 , glib 10 , gtk3 11 , freerdp 12 + , unstableGitUpdater 13 }: 14 15 stdenv.mkDerivation rec { 16 pname = "gtk-frdp"; 17 + version = "unstable-2021-10-01"; 18 19 src = fetchFromGitLab { 20 domain = "gitlab.gnome.org"; 21 owner = "GNOME"; 22 repo = pname; 23 + rev = "9c15c1202ed66fe20334e33d798cc5ebd39917f0"; 24 + sha256 = "2YOLpyd26qWQKvneH4ww2DS8h/ZNYDmfbYIjQDvDMko="; 25 }; 26 27 nativeBuildInputs = [ ··· 39 ]; 40 41 passthru = { 42 + updateScript = unstableGitUpdater { 43 + # The updater tries src.url by default, which does not exist for fetchFromGitHub (fetchurl). 44 + url = "${meta.homepage}.git"; 45 + branch = "gtk-frdp-0-1"; 46 }; 47 }; 48
+1
pkgs/development/libraries/gtk/3.x.nix
··· 202 updateScript = gnome.updateScript { 203 packageName = "gtk+"; 204 attrPath = "gtk3"; 205 }; 206 }; 207
··· 202 updateScript = gnome.updateScript { 203 packageName = "gtk+"; 204 attrPath = "gtk3"; 205 + freeze = true; 206 }; 207 }; 208
+1
pkgs/development/libraries/gtkmm/3.x.nix
··· 24 packageName = pname; 25 attrPath = "${pname}3"; 26 versionPolicy = "odd-unstable"; 27 }; 28 }; 29
··· 24 packageName = pname; 25 attrPath = "${pname}3"; 26 versionPolicy = "odd-unstable"; 27 + freeze = true; 28 }; 29 }; 30
+2 -2
pkgs/development/libraries/gtkmm/4.x.nix
··· 17 18 stdenv.mkDerivation rec { 19 pname = "gtkmm"; 20 - version = "4.2.0"; 21 22 outputs = [ "out" "dev" ]; 23 24 src = fetchurl { 25 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 26 - sha256 = "12x9j82y37r4v0ngs22rzp4wmw7k2bbb9d3bymcczzz7y8w4q328"; 27 }; 28 29 nativeBuildInputs = [
··· 17 18 stdenv.mkDerivation rec { 19 pname = "gtkmm"; 20 + version = "4.4.0"; 21 22 outputs = [ "out" "dev" ]; 23 24 src = fetchurl { 25 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 26 + sha256 = "LrRkMmCW5qQMgunNB0Fk2BA/teB4ZWecCmSeQXRwDdo="; 27 }; 28 29 nativeBuildInputs = [
+1
pkgs/development/libraries/gtksourceview/4.x.nix
··· 88 packageName = "gtksourceview"; 89 attrPath = "gtksourceview4"; 90 versionPolicy = "odd-unstable"; 91 }; 92 }; 93
··· 88 packageName = "gtksourceview"; 89 attrPath = "gtksourceview4"; 90 versionPolicy = "odd-unstable"; 91 + freeze = true; 92 }; 93 }; 94
+1
pkgs/development/libraries/gtksourceviewmm/4.x.nix
··· 11 12 passthru = { 13 updateScript = gnome.updateScript { 14 packageName = pname; 15 versionPolicy = "none"; 16 };
··· 11 12 passthru = { 13 updateScript = gnome.updateScript { 14 + attrPath = "gtksourceviewmm4"; 15 packageName = pname; 16 versionPolicy = "none"; 17 };
+1
pkgs/development/libraries/gtksourceviewmm/default.nix
··· 13 updateScript = gnome.updateScript { 14 packageName = "gtksourceviewmm"; 15 versionPolicy = "none"; 16 }; 17 }; 18
··· 13 updateScript = gnome.updateScript { 14 packageName = "gtksourceviewmm"; 15 versionPolicy = "none"; 16 + freeze = true; 17 }; 18 }; 19
+24 -3
pkgs/development/libraries/libadwaita/default.nix
··· 12 , vala 13 , gobject-introspection 14 , fribidi 15 , gtk4 16 , xvfb-run 17 }: 18 19 stdenv.mkDerivation rec { 20 pname = "libadwaita"; 21 - version = "1.0.0-alpha.2"; 22 23 outputs = [ "out" "dev" "devdoc" ]; 24 outputBin = "devdoc"; # demo app ··· 28 owner = "GNOME"; 29 repo = "libadwaita"; 30 rev = version; 31 - sha256 = "1yvjdzs5ipmr4gi0l4k6dkqhl9b090kpjc3ll8bv1a6i7yfaf53s"; 32 }; 33 34 nativeBuildInputs = [ ··· 54 ]; 55 56 checkInputs = [ 57 xvfb-run 58 ]; 59 60 doCheck = true; 61 62 checkPhase = '' 63 - xvfb-run meson test 64 ''; 65 66 postInstall = ''
··· 12 , vala 13 , gobject-introspection 14 , fribidi 15 + , glib 16 , gtk4 17 + , gnome 18 + , gsettings-desktop-schemas 19 , xvfb-run 20 }: 21 22 stdenv.mkDerivation rec { 23 pname = "libadwaita"; 24 + version = "1.0.0.alpha.3"; 25 26 outputs = [ "out" "dev" "devdoc" ]; 27 outputBin = "devdoc"; # demo app ··· 31 owner = "GNOME"; 32 repo = "libadwaita"; 33 rev = version; 34 + sha256 = "sha256-4ED2m8hZMWbu5sFbkH0W6q05+cYCCkx+ubeDqg3W3a0="; 35 }; 36 37 nativeBuildInputs = [ ··· 57 ]; 58 59 checkInputs = [ 60 + gnome.adwaita-icon-theme 61 xvfb-run 62 ]; 63 64 doCheck = true; 65 66 checkPhase = '' 67 + runHook preCheck 68 + 69 + testEnvironment=( 70 + # Disable portal since we cannot run it in tests. 71 + ADW_DISABLE_PORTAL=1 72 + 73 + # AdwSettings needs to be initialized from “org.gnome.desktop.interface” GSettings schema when portal is not used for color scheme. 74 + # It will not actually be used since the “color-scheme” key will only have been introduced in GNOME 42, falling back to detecting theme name. 75 + # See adw_settings_constructed function in https://gitlab.gnome.org/GNOME/libadwaita/commit/60ec69f0a5d49cad8a6d79e4ecefd06dc6e3db12 76 + "XDG_DATA_DIRS=${glib.getSchemaPath gsettings-desktop-schemas}/../.." 77 + 78 + # Tests need a cache directory 79 + "HOME=$TMPDIR" 80 + ) 81 + env "''${testEnvironment[@]}" xvfb-run \ 82 + meson test --print-errorlogs 83 + 84 + runHook postCheck 85 ''; 86 87 postInstall = ''
+1
pkgs/development/libraries/libgda/default.nix
··· 87 updateScript = gnome.updateScript { 88 packageName = pname; 89 versionPolicy = "odd-unstable"; 90 }; 91 }; 92
··· 87 updateScript = gnome.updateScript { 88 packageName = pname; 89 versionPolicy = "odd-unstable"; 90 + freeze = true; 91 }; 92 }; 93
+1 -1
pkgs/development/libraries/libgdamm/default.nix
··· 26 passthru = { 27 updateScript = gnome.updateScript { 28 packageName = pname; 29 - versionPolicy = "odd-unstable"; 30 }; 31 }; 32
··· 26 passthru = { 27 updateScript = gnome.updateScript { 28 packageName = pname; 29 + versionPolicy = "none"; # Should be odd-unstable but stable version has not been released yet. 30 }; 31 }; 32
+2
pkgs/development/libraries/liblinphone/default.nix
··· 35 , python3 36 , readline 37 , soci 38 , speex 39 , sqlite 40 , lib, stdenv ··· 93 pango 94 readline 95 soci 96 speex 97 sqlite 98 udev
··· 35 , python3 36 , readline 37 , soci 38 + , boost 39 , speex 40 , sqlite 41 , lib, stdenv ··· 94 pango 95 readline 96 soci 97 + boost 98 speex 99 sqlite 100 udev
+3 -2
pkgs/development/libraries/libsigcxx/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "libsigc++"; 5 - version = "2.10.6"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-3aF23EaBvanVoqwbxVJzvdOBZit6bUnpGCZ9E+h3Ths="; 10 }; 11 12 nativeBuildInputs = [ pkg-config meson ninja ]; ··· 18 packageName = pname; 19 attrPath = "libsigcxx"; 20 versionPolicy = "odd-unstable"; 21 }; 22 }; 23
··· 2 3 stdenv.mkDerivation rec { 4 pname = "libsigc++"; 5 + version = "2.10.7"; 6 7 src = fetchurl { 8 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 9 + sha256 = "sha256-0IKiznLHUPZrGkFavj6FLfLq4eivUwEPSsLqJhpHiDI="; 10 }; 11 12 nativeBuildInputs = [ pkg-config meson ninja ]; ··· 18 packageName = pname; 19 attrPath = "libsigcxx"; 20 versionPolicy = "odd-unstable"; 21 + freeze = true; 22 }; 23 }; 24
+1 -1
pkgs/development/libraries/libsoup/3.x.nix
··· 87 glib-networking.out 88 ]; 89 updateScript = gnome.updateScript { 90 - attrPath = "libsoup3"; 91 packageName = pname; 92 versionPolicy = "odd-unstable"; 93 };
··· 87 glib-networking.out 88 ]; 89 updateScript = gnome.updateScript { 90 + attrPath = "libsoup_3"; 91 packageName = pname; 92 versionPolicy = "odd-unstable"; 93 };
+1
pkgs/development/libraries/libsoup/default.nix
··· 83 updateScript = gnome.updateScript { 84 packageName = pname; 85 versionPolicy = "odd-unstable"; 86 }; 87 }; 88
··· 83 updateScript = gnome.updateScript { 84 packageName = pname; 85 versionPolicy = "odd-unstable"; 86 + freeze = true; 87 }; 88 }; 89
+10 -9
pkgs/development/libraries/libvirt/default.nix
··· 70 in 71 stdenv.mkDerivation rec { 72 pname = "libvirt"; 73 - version = "7.7.0"; 74 75 src = 76 if buildFromTarball then 77 fetchurl 78 { 79 url = "https://libvirt.org/sources/${pname}-${version}.tar.xz"; 80 - sha256 = "1cjj48dn4ww13ayicd2g863a5kz0sc5jlbv2991bj54dq6cn0q8v"; 81 } 82 else 83 - fetchFromGitLab { 84 - owner = pname; 85 - repo = pname; 86 - rev = "v${version}"; 87 - sha256 = "sha256-gv/tORDlzZP3L3YcU6/YPEpqHQSLzEWa6kEX8EzZM28="; 88 - fetchSubmodules = true; 89 - }; 90 91 patches = [ 92 ./0001-meson-patch-in-an-install-prefix-for-building-on-nix.patch
··· 70 in 71 stdenv.mkDerivation rec { 72 pname = "libvirt"; 73 + version = "7.8.0"; 74 75 src = 76 if buildFromTarball then 77 fetchurl 78 { 79 url = "https://libvirt.org/sources/${pname}-${version}.tar.xz"; 80 + sha256 = "sha256-pyfNCke/ok+n3ih00j86n58Czra0m6FSiPbZoJixmSE="; 81 } 82 else 83 + fetchFromGitLab 84 + { 85 + owner = pname; 86 + repo = pname; 87 + rev = "v${version}"; 88 + sha256 = "sha256-/tSMJFgLPAiQXcZ2qZLM4XZqf96NtW3+zwKyrwGho2s="; 89 + fetchSubmodules = true; 90 + }; 91 92 patches = [ 93 ./0001-meson-patch-in-an-install-prefix-for-building-on-nix.patch
+3 -5
pkgs/development/libraries/libwnck/default.nix
··· 21 22 stdenv.mkDerivation rec { 23 pname = "libwnck"; 24 - version = "3.36.0"; 25 26 outputs = [ "out" "dev" "devdoc" ]; 27 outputBin = "dev"; 28 29 src = fetchurl { 30 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 31 - sha256 = "0pwjdhca9lz2n1gf9b60xf0m6ipf9snp8rqf9csj4pgdnd882l5w"; 32 }; 33 34 nativeBuildInputs = [ ··· 62 passthru = { 63 updateScript = gnome.updateScript { 64 packageName = pname; 65 - attrPath = "${pname}${lib.versions.major version}"; 66 - versionPolicy = "odd-unstable"; 67 }; 68 }; 69
··· 21 22 stdenv.mkDerivation rec { 23 pname = "libwnck"; 24 + version = "40.0"; 25 26 outputs = [ "out" "dev" "devdoc" ]; 27 outputBin = "dev"; 28 29 src = fetchurl { 30 + url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz"; 31 + sha256 = "MMt5qDn5DNZvPiAvP5jLUWb6DNm5LrVxrZxHCkMCHYM="; 32 }; 33 34 nativeBuildInputs = [ ··· 62 passthru = { 63 updateScript = gnome.updateScript { 64 packageName = pname; 65 }; 66 }; 67
+2
pkgs/development/libraries/libxmlxx/default.nix
··· 17 18 passthru = { 19 updateScript = gnome.updateScript { 20 packageName = pname; 21 versionPolicy = "odd-unstable"; 22 }; 23 }; 24
··· 17 18 passthru = { 19 updateScript = gnome.updateScript { 20 + attrPath = "libxmlxx"; 21 packageName = pname; 22 versionPolicy = "odd-unstable"; 23 + freeze = true; 24 }; 25 }; 26
+10 -1
pkgs/development/libraries/libxmlxx/v3.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, libxml2, glibmm, perl }: 2 3 stdenv.mkDerivation rec { 4 pname = "libxml++"; ··· 21 substituteInPlace $dev/lib/pkgconfig/libxml++-3.0.pc \ 22 --replace 'docdir=''${datarootdir}' "docdir=$doc/share" 23 ''; 24 25 meta = with lib; { 26 homepage = "http://libxmlplusplus.sourceforge.net/";
··· 1 + { lib, stdenv, fetchurl, pkg-config, libxml2, glibmm, perl, gnome }: 2 3 stdenv.mkDerivation rec { 4 pname = "libxml++"; ··· 21 substituteInPlace $dev/lib/pkgconfig/libxml++-3.0.pc \ 22 --replace 'docdir=''${datarootdir}' "docdir=$doc/share" 23 ''; 24 + 25 + passthru = { 26 + updateScript = gnome.updateScript { 27 + attrPath = "libxmlxx3"; 28 + packageName = pname; 29 + versionPolicy = "odd-unstable"; 30 + freeze = true; 31 + }; 32 + }; 33 34 meta = with lib; { 35 homepage = "http://libxmlplusplus.sourceforge.net/";
+32
pkgs/development/libraries/libyaml-cpp/0.3.0.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub, cmake }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "libyaml-cpp"; 5 + version = "0.3.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jbeder"; 9 + repo = "yaml-cpp"; 10 + rev = "release-${version}"; 11 + sha256 = "sha256-pmgcULTXhl83+Wc8ZsGebnJ1t0XybHhUEJxDnEZE5x8="; 12 + }; 13 + 14 + # implement https://github.com/jbeder/yaml-cpp/commit/52a1378e48e15d42a0b755af7146394c6eff998c 15 + postPatch = '' 16 + substituteInPlace CMakeLists.txt \ 17 + --replace 'option(YAML_BUILD_SHARED_LIBS "Build Shared Libraries" OFF)' \ 18 + 'option(YAML_BUILD_SHARED_LIBS "Build yaml-cpp shared library" ''${BUILD_SHARED_LIBS})' 19 + ''; 20 + 21 + nativeBuildInputs = [ cmake ]; 22 + 23 + cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" "-DYAML_CPP_BUILD_TESTS=OFF" ]; 24 + 25 + meta = with lib; { 26 + inherit (src.meta) homepage; 27 + description = "A YAML parser and emitter for C++"; 28 + license = licenses.mit; 29 + platforms = platforms.unix; 30 + maintainers = with maintainers; [ andir ]; 31 + }; 32 + }
+9 -7
pkgs/development/libraries/libyaml-cpp/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake }: 2 3 stdenv.mkDerivation rec { 4 pname = "libyaml-cpp"; ··· 11 sha256 = "sha256-2tFWccifn0c2lU/U1WNg2FHrBohjx8CXMllPJCevaNk="; 12 }; 13 14 - # implement https://github.com/jbeder/yaml-cpp/commit/52a1378e48e15d42a0b755af7146394c6eff998c 15 - postPatch = '' 16 - substituteInPlace CMakeLists.txt \ 17 - --replace 'option(YAML_BUILD_SHARED_LIBS "Build Shared Libraries" OFF)' \ 18 - 'option(YAML_BUILD_SHARED_LIBS "Build yaml-cpp shared library" ''${BUILD_SHARED_LIBS})' 19 - ''; 20 21 nativeBuildInputs = [ cmake ]; 22
··· 1 + { lib, stdenv, fetchFromGitHub, cmake, fetchpatch }: 2 3 stdenv.mkDerivation rec { 4 pname = "libyaml-cpp"; ··· 11 sha256 = "sha256-2tFWccifn0c2lU/U1WNg2FHrBohjx8CXMllPJCevaNk="; 12 }; 13 14 + patches = [ 15 + # https://github.com/jbeder/yaml-cpp/issues/774 16 + # https://github.com/jbeder/yaml-cpp/pull/1037 17 + (fetchpatch { 18 + url = "https://github.com/jbeder/yaml-cpp/commit/4f48727b365962e31451cd91027bd797bc7d2ee7.patch"; 19 + sha256 = "sha256-jarZAh7NgwL3xXzxijDiAQmC/EC2WYfNMkYHEIQBPhM="; 20 + }) 21 + ]; 22 23 nativeBuildInputs = [ cmake ]; 24
+2 -1
pkgs/development/libraries/lime/default.nix
··· 5 , lib 6 , soci 7 , sqlite 8 , stdenv 9 }: 10 ··· 21 sha256 = "sha256-11vvvA+pud/eOyYsbRKVvGfiyhwdhNPfRQSfaquUro8="; 22 }; 23 24 - buildInputs = [ bctoolbox soci belle-sip sqlite ]; 25 nativeBuildInputs = [ cmake ]; 26 27 # Do not build static libraries
··· 5 , lib 6 , soci 7 , sqlite 8 + , boost 9 , stdenv 10 }: 11 ··· 22 sha256 = "sha256-11vvvA+pud/eOyYsbRKVvGfiyhwdhNPfRQSfaquUro8="; 23 }; 24 25 + buildInputs = [ bctoolbox soci belle-sip sqlite boost ]; 26 nativeBuildInputs = [ cmake ]; 27 28 # Do not build static libraries
+2 -2
pkgs/development/libraries/mesa/default.nix
··· 33 let 34 # Release calendar: https://www.mesa3d.org/release-calendar.html 35 # Release frequency: https://www.mesa3d.org/releasing.html#schedule 36 - version = "21.2.3"; 37 branch = versions.major version; 38 39 self = stdenv.mkDerivation { ··· 47 "ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz" 48 "ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz" 49 ]; 50 - sha256 = "0x3ivd34j938js2iffzlvnlj4hwywxrscd8q1rvq894x2m52hibj"; 51 }; 52 53 # TODO:
··· 33 let 34 # Release calendar: https://www.mesa3d.org/release-calendar.html 35 # Release frequency: https://www.mesa3d.org/releasing.html#schedule 36 + version = "21.2.4"; 37 branch = versions.major version; 38 39 self = stdenv.mkDerivation { ··· 47 "ftp://ftp.freedesktop.org/pub/mesa/${version}/mesa-${version}.tar.xz" 48 "ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz" 49 ]; 50 + sha256 = "sha256-/m7egtGsAjOdo8LsGCCjeWQZAv01GlLMARU/du/4W0Q="; 51 }; 52 53 # TODO:
+2 -2
pkgs/development/libraries/newt/default.nix
··· 8 version = "0.52.21"; 9 10 src = fetchurl { 11 - url = "https://fedorahosted.org/releases/n/e/${pname}/${pname}-${version}.tar.gz"; 12 sha256 = "0cdvbancr7y4nrj8257y5n45hmhizr8isynagy4fpsnpammv8pi6"; 13 }; 14 ··· 41 ]; 42 43 meta = with lib; { 44 - homepage = "https://fedorahosted.org/newt/"; 45 description = "Library for color text mode, widget based user interfaces"; 46 47 license = licenses.lgpl2;
··· 8 version = "0.52.21"; 9 10 src = fetchurl { 11 + url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.gz"; 12 sha256 = "0cdvbancr7y4nrj8257y5n45hmhizr8isynagy4fpsnpammv8pi6"; 13 }; 14 ··· 41 ]; 42 43 meta = with lib; { 44 + homepage = "https://pagure.io/newt"; 45 description = "Library for color text mode, widget based user interfaces"; 46 47 license = licenses.lgpl2;
+10 -4
pkgs/development/libraries/soci/default.nix
··· 1 { cmake 2 , fetchFromGitHub 3 , sqlite 4 , lib, stdenv 5 }: 6 7 stdenv.mkDerivation rec { 8 pname = "soci"; 9 - version = "4.0.1"; 10 11 src = fetchFromGitHub { 12 owner = "SOCI"; 13 repo = pname; 14 - rev = version; 15 - sha256 = "sha256-d4GtxDaB+yGfyCnbvnLRUYcrPSMkUF7Opu6+SZd8opM="; 16 }; 17 18 # Do not build static libraries 19 cmakeFlags = [ "-DSOCI_STATIC=OFF" "-DCMAKE_CXX_STANDARD=11" ]; 20 21 nativeBuildInputs = [ cmake ]; 22 - buildInputs = [ sqlite ]; 23 24 meta = with lib; { 25 description = "Database access library for C++";
··· 1 { cmake 2 , fetchFromGitHub 3 , sqlite 4 + , postgresql 5 + , boost 6 , lib, stdenv 7 }: 8 9 stdenv.mkDerivation rec { 10 pname = "soci"; 11 + version = "4.0.2"; 12 13 src = fetchFromGitHub { 14 owner = "SOCI"; 15 repo = pname; 16 + rev = "v${version}"; 17 + sha256 = "sha256-NE0ApbX8HG2VAQ9cg9+kX3kJQ4PR1XvWL9BlT8NphmE="; 18 }; 19 20 # Do not build static libraries 21 cmakeFlags = [ "-DSOCI_STATIC=OFF" "-DCMAKE_CXX_STANDARD=11" ]; 22 23 nativeBuildInputs = [ cmake ]; 24 + buildInputs = [ 25 + sqlite 26 + postgresql 27 + boost 28 + ]; 29 30 meta = with lib; { 31 description = "Database access library for C++";
+2 -2
pkgs/development/libraries/tracker-miners/default.nix
··· 47 48 stdenv.mkDerivation rec { 49 pname = "tracker-miners"; 50 - version = "3.1.1"; 51 52 src = fetchurl { 53 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 54 - sha256 = "sha256-5NNhNRsVbyhipSRBX76/BTnHgc2HxmKWYvAmW0gDuLg="; 55 }; 56 57 nativeBuildInputs = [
··· 47 48 stdenv.mkDerivation rec { 49 pname = "tracker-miners"; 50 + version = "3.2.0"; 51 52 src = fetchurl { 53 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 54 + sha256 = "sha256-Bi+C3VSKYq7IUQWFAROskBpiK8UcbPxjIFY2Xof4GYE="; 55 }; 56 57 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/usbredir/default.nix
··· 11 12 stdenv.mkDerivation rec { 13 pname = "usbredir"; 14 - version = "0.10.0"; 15 16 src = fetchFromGitLab { 17 domain = "gitlab.freedesktop.org"; 18 owner = "spice"; 19 repo = "usbredir"; 20 rev = "${pname}-${version}"; 21 - sha256 = "1dz8jms9l6gg2hw0k6p1p1lnchc9mcgmskgvm5gbdvw3j7wrhdbz"; 22 }; 23 24 nativeBuildInputs = [
··· 11 12 stdenv.mkDerivation rec { 13 pname = "usbredir"; 14 + version = "0.11.0"; 15 16 src = fetchFromGitLab { 17 domain = "gitlab.freedesktop.org"; 18 owner = "spice"; 19 repo = "usbredir"; 20 rev = "${pname}-${version}"; 21 + sha256 = "1ra8vpi6wdq1fvvqzx4ny2ga0p0q1cwz72gr15nghyfp75y3d31l"; 22 }; 23 24 nativeBuildInputs = [
+2 -2
pkgs/development/misc/yelp-tools/default.nix
··· 13 14 python3.pkgs.buildPythonApplication rec { 15 pname = "yelp-tools"; 16 - version = "40.0"; 17 18 format = "other"; 19 20 src = fetchurl { 21 url = "mirror://gnome/sources/yelp-tools/${lib.versions.major version}/${pname}-${version}.tar.xz"; 22 - sha256 = "1bkanqp3qwmirv06mi99qv2acr5ba5rlhy9zlh0fyrfxygraqjv6"; 23 }; 24 25 nativeBuildInputs = [
··· 13 14 python3.pkgs.buildPythonApplication rec { 15 pname = "yelp-tools"; 16 + version = "41.0"; 17 18 format = "other"; 19 20 src = fetchurl { 21 url = "mirror://gnome/sources/yelp-tools/${lib.versions.major version}/${pname}-${version}.tar.xz"; 22 + sha256 = "N/GswCvL5ooxuG4HwSmoOb0yduZW3Inrf8CpJ0bv8nI="; 23 }; 24 25 nativeBuildInputs = [
+3 -14
pkgs/development/node-packages/default.nix
··· 1 { pkgs, nodejs, stdenv, applyPatches, fetchFromGitHub, fetchpatch, fetchurl }: 2 3 let 4 since = (version: pkgs.lib.versionAtLeast nodejs.version version); 5 before = (version: pkgs.lib.versionOlder nodejs.version version); 6 super = import ./composition.nix { ··· 319 }; 320 321 netlify-cli = 322 - let 323 - esbuild = pkgs.esbuild.overrideAttrs (old: rec { 324 - version = "0.13.6"; 325 - 326 - src = fetchFromGitHub { 327 - owner = "netlify"; 328 - repo = "esbuild"; 329 - rev = "v${version}"; 330 - sha256 = "0asjmqfzdrpfx2hd5hkac1swp52qknyqavsm59j8xr4c1ixhc6n9"; 331 - }; 332 - 333 - }); 334 - in 335 super.netlify-cli.override { 336 preRebuild = '' 337 - export ESBUILD_BINARY_PATH="${esbuild}/bin/esbuild" 338 ''; 339 }; 340 341 ssb-server = super.ssb-server.override {
··· 1 { pkgs, nodejs, stdenv, applyPatches, fetchFromGitHub, fetchpatch, fetchurl }: 2 3 let 4 + inherit (pkgs) lib; 5 since = (version: pkgs.lib.versionAtLeast nodejs.version version); 6 before = (version: pkgs.lib.versionOlder nodejs.version version); 7 super = import ./composition.nix { ··· 320 }; 321 322 netlify-cli = 323 super.netlify-cli.override { 324 preRebuild = '' 325 + export ESBUILD_BINARY_PATH="${pkgs.esbuild_netlify}/bin/esbuild" 326 ''; 327 + meta.maintainers = with lib.maintainers; [ roberth ]; 328 }; 329 330 ssb-server = super.ssb-server.override {
+2 -2
pkgs/development/python-modules/adafruit-platformdetect/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "adafruit-platformdetect"; 9 - version = "3.15.3"; 10 11 src = fetchPypi { 12 pname = "Adafruit-PlatformDetect"; 13 inherit version; 14 - sha256 = "sha256-cmeCh54dwYwbL1AwGrPwTDp4F6VONclV7iu2Sm1g33Q="; 15 }; 16 17 nativeBuildInputs = [ setuptools-scm ];
··· 6 7 buildPythonPackage rec { 8 pname = "adafruit-platformdetect"; 9 + version = "3.16.0"; 10 11 src = fetchPypi { 12 pname = "Adafruit-PlatformDetect"; 13 inherit version; 14 + sha256 = "sha256-/60f++CemVbeUwRSzQ5dZpoQE4btRiRhnVHHDPIn3Xc="; 15 }; 16 17 nativeBuildInputs = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/apycula/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "apycula"; 15 - version = "0.0.1a9"; 16 17 disabled = pythonOlder "3.8"; 18 19 src = fetchPypi { 20 inherit version; 21 pname = "Apycula"; 22 - sha256 = "01shkaxakisgg253jdwjkd81vnjgfws3gi2wyrdxmkcg95wphk5y"; 23 }; 24 25 nativeBuildInputs = [ setuptools-scm ];
··· 12 13 buildPythonPackage rec { 14 pname = "apycula"; 15 + version = "0.0.1a11"; 16 17 disabled = pythonOlder "3.8"; 18 19 src = fetchPypi { 20 inherit version; 21 pname = "Apycula"; 22 + sha256 = "0fwk1pgphpgj0lazjy40ii08xq2qi6bvrfc30rwfj52yff1s9akn"; 23 }; 24 25 nativeBuildInputs = [ setuptools-scm ];
+1 -2
pkgs/development/python-modules/binwalk/default.nix
··· 5 , stdenv 6 , zlib 7 , xz 8 - , ncompress 9 , gzip 10 , bzip2 11 , gnutar ··· 45 }) 46 ]; 47 48 - propagatedBuildInputs = [ zlib xz ncompress gzip bzip2 gnutar p7zip cabextract squashfsTools xz pycrypto ] 49 ++ lib.optionals visualizationSupport [ matplotlib pyqtgraph ] 50 ++ lib.optionals (!stdenv.isDarwin) [ cramfsprogs cramfsswap sasquatch ]; 51
··· 5 , stdenv 6 , zlib 7 , xz 8 , gzip 9 , bzip2 10 , gnutar ··· 44 }) 45 ]; 46 47 + propagatedBuildInputs = [ zlib xz gzip bzip2 gnutar p7zip cabextract squashfsTools xz pycrypto ] 48 ++ lib.optionals visualizationSupport [ matplotlib pyqtgraph ] 49 ++ lib.optionals (!stdenv.isDarwin) [ cramfsprogs cramfsswap sasquatch ]; 50
-520
pkgs/development/python-modules/cramjam/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - [[package]] 4 - name = "adler" 5 - version = "1.0.2" 6 - source = "registry+https://github.com/rust-lang/crates.io-index" 7 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 8 - 9 - [[package]] 10 - name = "autocfg" 11 - version = "1.0.1" 12 - source = "registry+https://github.com/rust-lang/crates.io-index" 13 - checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 14 - 15 - [[package]] 16 - name = "bitflags" 17 - version = "1.2.1" 18 - source = "registry+https://github.com/rust-lang/crates.io-index" 19 - checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 20 - 21 - [[package]] 22 - name = "brotli-sys" 23 - version = "0.3.2" 24 - source = "registry+https://github.com/rust-lang/crates.io-index" 25 - checksum = "4445dea95f4c2b41cde57cc9fee236ae4dbae88d8fcbdb4750fc1bb5d86aaecd" 26 - dependencies = [ 27 - "cc", 28 - "libc", 29 - ] 30 - 31 - [[package]] 32 - name = "brotli2" 33 - version = "0.3.2" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "0cb036c3eade309815c15ddbacec5b22c4d1f3983a774ab2eac2e3e9ea85568e" 36 - dependencies = [ 37 - "brotli-sys", 38 - "libc", 39 - ] 40 - 41 - [[package]] 42 - name = "cc" 43 - version = "1.0.68" 44 - source = "registry+https://github.com/rust-lang/crates.io-index" 45 - checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787" 46 - dependencies = [ 47 - "jobserver", 48 - ] 49 - 50 - [[package]] 51 - name = "cfg-if" 52 - version = "0.1.10" 53 - source = "registry+https://github.com/rust-lang/crates.io-index" 54 - checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 55 - 56 - [[package]] 57 - name = "cfg-if" 58 - version = "1.0.0" 59 - source = "registry+https://github.com/rust-lang/crates.io-index" 60 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 61 - 62 - [[package]] 63 - name = "cramjam" 64 - version = "2.3.2" 65 - dependencies = [ 66 - "brotli2", 67 - "flate2", 68 - "lz4", 69 - "mimalloc", 70 - "numpy", 71 - "pyo3", 72 - "snap", 73 - "zstd", 74 - ] 75 - 76 - [[package]] 77 - name = "crc32fast" 78 - version = "1.2.1" 79 - source = "registry+https://github.com/rust-lang/crates.io-index" 80 - checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" 81 - dependencies = [ 82 - "cfg-if 1.0.0", 83 - ] 84 - 85 - [[package]] 86 - name = "ctor" 87 - version = "0.1.20" 88 - source = "registry+https://github.com/rust-lang/crates.io-index" 89 - checksum = "5e98e2ad1a782e33928b96fc3948e7c355e5af34ba4de7670fe8bac2a3b2006d" 90 - dependencies = [ 91 - "quote", 92 - "syn", 93 - ] 94 - 95 - [[package]] 96 - name = "flate2" 97 - version = "1.0.20" 98 - source = "registry+https://github.com/rust-lang/crates.io-index" 99 - checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0" 100 - dependencies = [ 101 - "cfg-if 1.0.0", 102 - "crc32fast", 103 - "libc", 104 - "miniz_oxide", 105 - ] 106 - 107 - [[package]] 108 - name = "ghost" 109 - version = "0.1.2" 110 - source = "registry+https://github.com/rust-lang/crates.io-index" 111 - checksum = "1a5bcf1bbeab73aa4cf2fde60a846858dc036163c7c33bec309f8d17de785479" 112 - dependencies = [ 113 - "proc-macro2", 114 - "quote", 115 - "syn", 116 - ] 117 - 118 - [[package]] 119 - name = "indoc" 120 - version = "0.3.6" 121 - source = "registry+https://github.com/rust-lang/crates.io-index" 122 - checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" 123 - dependencies = [ 124 - "indoc-impl", 125 - "proc-macro-hack", 126 - ] 127 - 128 - [[package]] 129 - name = "indoc-impl" 130 - version = "0.3.6" 131 - source = "registry+https://github.com/rust-lang/crates.io-index" 132 - checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0" 133 - dependencies = [ 134 - "proc-macro-hack", 135 - "proc-macro2", 136 - "quote", 137 - "syn", 138 - "unindent", 139 - ] 140 - 141 - [[package]] 142 - name = "instant" 143 - version = "0.1.9" 144 - source = "registry+https://github.com/rust-lang/crates.io-index" 145 - checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" 146 - dependencies = [ 147 - "cfg-if 1.0.0", 148 - ] 149 - 150 - [[package]] 151 - name = "inventory" 152 - version = "0.1.10" 153 - source = "registry+https://github.com/rust-lang/crates.io-index" 154 - checksum = "0f0f7efb804ec95e33db9ad49e4252f049e37e8b0a4652e3cd61f7999f2eff7f" 155 - dependencies = [ 156 - "ctor", 157 - "ghost", 158 - "inventory-impl", 159 - ] 160 - 161 - [[package]] 162 - name = "inventory-impl" 163 - version = "0.1.10" 164 - source = "registry+https://github.com/rust-lang/crates.io-index" 165 - checksum = "75c094e94816723ab936484666968f5b58060492e880f3c8d00489a1e244fa51" 166 - dependencies = [ 167 - "proc-macro2", 168 - "quote", 169 - "syn", 170 - ] 171 - 172 - [[package]] 173 - name = "jobserver" 174 - version = "0.1.22" 175 - source = "registry+https://github.com/rust-lang/crates.io-index" 176 - checksum = "972f5ae5d1cb9c6ae417789196c803205313edde988685da5e3aae0827b9e7fd" 177 - dependencies = [ 178 - "libc", 179 - ] 180 - 181 - [[package]] 182 - name = "libc" 183 - version = "0.2.95" 184 - source = "registry+https://github.com/rust-lang/crates.io-index" 185 - checksum = "789da6d93f1b866ffe175afc5322a4d76c038605a1c3319bb57b06967ca98a36" 186 - 187 - [[package]] 188 - name = "libmimalloc-sys" 189 - version = "0.1.21" 190 - source = "registry+https://github.com/rust-lang/crates.io-index" 191 - checksum = "2396cf99d2f58611cd69f0efeee4af3d2e2c7b61bed433515029163aa567e65c" 192 - dependencies = [ 193 - "cc", 194 - ] 195 - 196 - [[package]] 197 - name = "lock_api" 198 - version = "0.4.4" 199 - source = "registry+https://github.com/rust-lang/crates.io-index" 200 - checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb" 201 - dependencies = [ 202 - "scopeguard", 203 - ] 204 - 205 - [[package]] 206 - name = "lz4" 207 - version = "1.23.2" 208 - source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "aac20ed6991e01bf6a2e68cc73df2b389707403662a8ba89f68511fb340f724c" 210 - dependencies = [ 211 - "libc", 212 - "lz4-sys", 213 - ] 214 - 215 - [[package]] 216 - name = "lz4-sys" 217 - version = "1.9.2" 218 - source = "registry+https://github.com/rust-lang/crates.io-index" 219 - checksum = "dca79aa95d8b3226213ad454d328369853be3a1382d89532a854f4d69640acae" 220 - dependencies = [ 221 - "cc", 222 - "libc", 223 - ] 224 - 225 - [[package]] 226 - name = "matrixmultiply" 227 - version = "0.2.4" 228 - source = "registry+https://github.com/rust-lang/crates.io-index" 229 - checksum = "916806ba0031cd542105d916a97c8572e1fa6dd79c9c51e7eb43a09ec2dd84c1" 230 - dependencies = [ 231 - "rawpointer", 232 - ] 233 - 234 - [[package]] 235 - name = "mimalloc" 236 - version = "0.1.25" 237 - source = "registry+https://github.com/rust-lang/crates.io-index" 238 - checksum = "1e7c6b11afd1e5e689ac96b6d18b1fc763398fe3d7eed99e8773426bc2033dfb" 239 - dependencies = [ 240 - "libmimalloc-sys", 241 - ] 242 - 243 - [[package]] 244 - name = "miniz_oxide" 245 - version = "0.4.4" 246 - source = "registry+https://github.com/rust-lang/crates.io-index" 247 - checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 248 - dependencies = [ 249 - "adler", 250 - "autocfg", 251 - ] 252 - 253 - [[package]] 254 - name = "ndarray" 255 - version = "0.14.0" 256 - source = "registry+https://github.com/rust-lang/crates.io-index" 257 - checksum = "6c0d5c9540a691d153064dc47a4db2504587a75eae07bf1d73f7a596ebc73c04" 258 - dependencies = [ 259 - "matrixmultiply", 260 - "num-complex", 261 - "num-integer", 262 - "num-traits", 263 - "rawpointer", 264 - ] 265 - 266 - [[package]] 267 - name = "num-complex" 268 - version = "0.3.1" 269 - source = "registry+https://github.com/rust-lang/crates.io-index" 270 - checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5" 271 - dependencies = [ 272 - "num-traits", 273 - ] 274 - 275 - [[package]] 276 - name = "num-integer" 277 - version = "0.1.44" 278 - source = "registry+https://github.com/rust-lang/crates.io-index" 279 - checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 280 - dependencies = [ 281 - "autocfg", 282 - "num-traits", 283 - ] 284 - 285 - [[package]] 286 - name = "num-traits" 287 - version = "0.2.14" 288 - source = "registry+https://github.com/rust-lang/crates.io-index" 289 - checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 290 - dependencies = [ 291 - "autocfg", 292 - ] 293 - 294 - [[package]] 295 - name = "numpy" 296 - version = "0.13.1" 297 - source = "registry+https://github.com/rust-lang/crates.io-index" 298 - checksum = "a7073fae1e0b82409533a29c6f804b79783d7b2d3c07728fdc4d884eda8cd4f0" 299 - dependencies = [ 300 - "cfg-if 0.1.10", 301 - "libc", 302 - "ndarray", 303 - "num-complex", 304 - "num-traits", 305 - "pyo3", 306 - ] 307 - 308 - [[package]] 309 - name = "parking_lot" 310 - version = "0.11.1" 311 - source = "registry+https://github.com/rust-lang/crates.io-index" 312 - checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" 313 - dependencies = [ 314 - "instant", 315 - "lock_api", 316 - "parking_lot_core", 317 - ] 318 - 319 - [[package]] 320 - name = "parking_lot_core" 321 - version = "0.8.3" 322 - source = "registry+https://github.com/rust-lang/crates.io-index" 323 - checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018" 324 - dependencies = [ 325 - "cfg-if 1.0.0", 326 - "instant", 327 - "libc", 328 - "redox_syscall", 329 - "smallvec", 330 - "winapi", 331 - ] 332 - 333 - [[package]] 334 - name = "paste" 335 - version = "0.1.18" 336 - source = "registry+https://github.com/rust-lang/crates.io-index" 337 - checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880" 338 - dependencies = [ 339 - "paste-impl", 340 - "proc-macro-hack", 341 - ] 342 - 343 - [[package]] 344 - name = "paste-impl" 345 - version = "0.1.18" 346 - source = "registry+https://github.com/rust-lang/crates.io-index" 347 - checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6" 348 - dependencies = [ 349 - "proc-macro-hack", 350 - ] 351 - 352 - [[package]] 353 - name = "proc-macro-hack" 354 - version = "0.5.19" 355 - source = "registry+https://github.com/rust-lang/crates.io-index" 356 - checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 357 - 358 - [[package]] 359 - name = "proc-macro2" 360 - version = "1.0.27" 361 - source = "registry+https://github.com/rust-lang/crates.io-index" 362 - checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038" 363 - dependencies = [ 364 - "unicode-xid", 365 - ] 366 - 367 - [[package]] 368 - name = "pyo3" 369 - version = "0.13.2" 370 - source = "registry+https://github.com/rust-lang/crates.io-index" 371 - checksum = "4837b8e8e18a102c23f79d1e9a110b597ea3b684c95e874eb1ad88f8683109c3" 372 - dependencies = [ 373 - "cfg-if 1.0.0", 374 - "ctor", 375 - "indoc", 376 - "inventory", 377 - "libc", 378 - "parking_lot", 379 - "paste", 380 - "pyo3-macros", 381 - "unindent", 382 - ] 383 - 384 - [[package]] 385 - name = "pyo3-macros" 386 - version = "0.13.2" 387 - source = "registry+https://github.com/rust-lang/crates.io-index" 388 - checksum = "a47f2c300ceec3e58064fd5f8f5b61230f2ffd64bde4970c81fdd0563a2db1bb" 389 - dependencies = [ 390 - "pyo3-macros-backend", 391 - "quote", 392 - "syn", 393 - ] 394 - 395 - [[package]] 396 - name = "pyo3-macros-backend" 397 - version = "0.13.2" 398 - source = "registry+https://github.com/rust-lang/crates.io-index" 399 - checksum = "87b097e5d84fcbe3e167f400fbedd657820a375b034c78bd852050749a575d66" 400 - dependencies = [ 401 - "proc-macro2", 402 - "quote", 403 - "syn", 404 - ] 405 - 406 - [[package]] 407 - name = "quote" 408 - version = "1.0.9" 409 - source = "registry+https://github.com/rust-lang/crates.io-index" 410 - checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" 411 - dependencies = [ 412 - "proc-macro2", 413 - ] 414 - 415 - [[package]] 416 - name = "rawpointer" 417 - version = "0.2.1" 418 - source = "registry+https://github.com/rust-lang/crates.io-index" 419 - checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" 420 - 421 - [[package]] 422 - name = "redox_syscall" 423 - version = "0.2.8" 424 - source = "registry+https://github.com/rust-lang/crates.io-index" 425 - checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc" 426 - dependencies = [ 427 - "bitflags", 428 - ] 429 - 430 - [[package]] 431 - name = "scopeguard" 432 - version = "1.1.0" 433 - source = "registry+https://github.com/rust-lang/crates.io-index" 434 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 435 - 436 - [[package]] 437 - name = "smallvec" 438 - version = "1.6.1" 439 - source = "registry+https://github.com/rust-lang/crates.io-index" 440 - checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" 441 - 442 - [[package]] 443 - name = "snap" 444 - version = "1.0.5" 445 - source = "registry+https://github.com/rust-lang/crates.io-index" 446 - checksum = "45456094d1983e2ee2a18fdfebce3189fa451699d0502cb8e3b49dba5ba41451" 447 - 448 - [[package]] 449 - name = "syn" 450 - version = "1.0.72" 451 - source = "registry+https://github.com/rust-lang/crates.io-index" 452 - checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82" 453 - dependencies = [ 454 - "proc-macro2", 455 - "quote", 456 - "unicode-xid", 457 - ] 458 - 459 - [[package]] 460 - name = "unicode-xid" 461 - version = "0.2.2" 462 - source = "registry+https://github.com/rust-lang/crates.io-index" 463 - checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 464 - 465 - [[package]] 466 - name = "unindent" 467 - version = "0.1.7" 468 - source = "registry+https://github.com/rust-lang/crates.io-index" 469 - checksum = "f14ee04d9415b52b3aeab06258a3f07093182b88ba0f9b8d203f211a7a7d41c7" 470 - 471 - [[package]] 472 - name = "winapi" 473 - version = "0.3.9" 474 - source = "registry+https://github.com/rust-lang/crates.io-index" 475 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 476 - dependencies = [ 477 - "winapi-i686-pc-windows-gnu", 478 - "winapi-x86_64-pc-windows-gnu", 479 - ] 480 - 481 - [[package]] 482 - name = "winapi-i686-pc-windows-gnu" 483 - version = "0.4.0" 484 - source = "registry+https://github.com/rust-lang/crates.io-index" 485 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 486 - 487 - [[package]] 488 - name = "winapi-x86_64-pc-windows-gnu" 489 - version = "0.4.0" 490 - source = "registry+https://github.com/rust-lang/crates.io-index" 491 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 492 - 493 - [[package]] 494 - name = "zstd" 495 - version = "0.6.1+zstd.1.4.9" 496 - source = "registry+https://github.com/rust-lang/crates.io-index" 497 - checksum = "5de55e77f798f205d8561b8fe2ef57abfb6e0ff2abe7fd3c089e119cdb5631a3" 498 - dependencies = [ 499 - "zstd-safe", 500 - ] 501 - 502 - [[package]] 503 - name = "zstd-safe" 504 - version = "3.0.1+zstd.1.4.9" 505 - source = "registry+https://github.com/rust-lang/crates.io-index" 506 - checksum = "1387cabcd938127b30ce78c4bf00b30387dddf704e3f0881dbc4ff62b5566f8c" 507 - dependencies = [ 508 - "libc", 509 - "zstd-sys", 510 - ] 511 - 512 - [[package]] 513 - name = "zstd-sys" 514 - version = "1.4.20+zstd.1.4.9" 515 - source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "ebd5b733d7cf2d9447e2c3e76a5589b4f5e5ae065c22a2bc0b023cbc331b6c8e" 517 - dependencies = [ 518 - "cc", 519 - "libc", 520 - ]
···
+14 -15
pkgs/development/python-modules/cramjam/default.nix
··· 1 { lib 2 - , stdenv 3 , buildPythonPackage 4 - , fetchPypi 5 , rustPlatform 6 , libiconv 7 - , pytestCheckHook 8 , brotli 9 , lz4 10 , memory_profiler 11 , numpy 12 , pytest-benchmark 13 , python-snappy 14 , zstd 15 }: 16 17 buildPythonPackage rec { 18 pname = "cramjam"; 19 - version = "2.3.2"; 20 format = "pyproject"; 21 22 - src = fetchPypi { 23 - inherit pname version; 24 - sha256 = "577955f1510d99df0e4d61379c3f05568f594f91e12bc6a7e147d0abfa643a3b"; 25 }; 26 27 - postPatch = '' 28 - cp ${./Cargo.lock} ./Cargo.lock 29 - ''; 30 - 31 - cargoDeps = rustPlatform.importCargoLock { 32 - lockFile = ./Cargo.lock; 33 }; 34 35 nativeBuildInputs = with rustPlatform; [ ··· 39 buildInputs = lib.optional stdenv.isDarwin libiconv; 40 41 checkInputs = [ 42 - pytestCheckHook 43 brotli 44 lz4 45 memory_profiler 46 numpy 47 pytest-benchmark 48 python-snappy 49 zstd 50 ]; ··· 53 54 meta = with lib; { 55 description = "Thin Python bindings to de/compression algorithms in Rust"; 56 - homepage = "https://crates.io/crates/cramjam"; 57 license = with licenses; [ mit ]; 58 maintainers = with maintainers; [ veprbl ]; 59 };
··· 1 { lib 2 , buildPythonPackage 3 + , fetchFromGitHub 4 , rustPlatform 5 + , stdenv 6 , libiconv 7 , brotli 8 , lz4 9 , memory_profiler 10 , numpy 11 , pytest-benchmark 12 + , pytestCheckHook 13 , python-snappy 14 , zstd 15 }: 16 17 buildPythonPackage rec { 18 pname = "cramjam"; 19 + version = "2.4.0"; 20 format = "pyproject"; 21 22 + src = fetchFromGitHub { 23 + owner = "milesgranger"; 24 + repo = "pyrus-cramjam"; 25 + rev = "v${version}"; 26 + sha256 = "sha256-00KvbiTf8PxYWljLKTRZmPIAbb+PnBleDM4p0AzZhHw="; 27 }; 28 29 + cargoDeps = rustPlatform.fetchCargoTarball { 30 + inherit src; 31 + sha256 = "sha256-4y/jeEZjVUbaXtBx5l3Hrbnj3iNYX089K4xexRP+5v0="; 32 }; 33 34 nativeBuildInputs = with rustPlatform; [ ··· 38 buildInputs = lib.optional stdenv.isDarwin libiconv; 39 40 checkInputs = [ 41 brotli 42 lz4 43 memory_profiler 44 numpy 45 pytest-benchmark 46 + pytestCheckHook 47 python-snappy 48 zstd 49 ]; ··· 52 53 meta = with lib; { 54 description = "Thin Python bindings to de/compression algorithms in Rust"; 55 + homepage = "https://github.com/milesgranger/pyrus-cramjam"; 56 license = with licenses; [ mit ]; 57 maintainers = with maintainers; [ veprbl ]; 58 };
+2 -2
pkgs/development/python-modules/fido2/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "fido2"; 12 - version = "0.9.1"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - sha256 = "8680ee25238e2307596eb3900a0f8c0d9cc91189146ed8039544f1a3a69dfe6e"; 17 }; 18 19 propagatedBuildInputs = [ six cryptography ];
··· 9 10 buildPythonPackage rec { 11 pname = "fido2"; 12 + version = "0.9.2"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + sha256 = "f491c47bb2d74fa157f9d127a1cbb2753a15939a21e78ba8b0bd323d7d101c61"; 17 }; 18 19 propagatedBuildInputs = [ six cryptography ];
+2 -2
pkgs/development/python-modules/google-cloud-asset/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "google-cloud-asset"; 19 - version = "3.6.1"; 20 21 src = fetchPypi { 22 inherit pname version; 23 - sha256 = "sha256-ug96Nj50fg29QHVCD95Cs+bFDnObqAiAdXh4l4qPT/k="; 24 }; 25 26 propagatedBuildInputs = [
··· 16 17 buildPythonPackage rec { 18 pname = "google-cloud-asset"; 19 + version = "3.7.0"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + sha256 = "48b8081700eeaa92f8921d5aff6a5287c0eb47a3cc483f2032105290ce0454b5"; 24 }; 25 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-kms/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-kms"; 15 - version = "2.8.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - sha256 = "sha256-4RQCpgJ+QkTgNAu/9rJmnA0wxOUm3HeAEDLWBbMMuSo="; 20 }; 21 22 propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ];
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-kms"; 15 + version = "2.9.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + sha256 = "bedd376807ab3dde08f2d92caa0e4e5ad7c2ccfc7069561e80964b998a0d8f51"; 20 }; 21 22 propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-redis/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "google-cloud-redis"; 14 - version = "2.2.4"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - sha256 = "sha256-3gbCBb+jnz4hE2T02JsSGxoFSIVg2UDTOaRMKCXh1vg="; 19 }; 20 21 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
··· 11 12 buildPythonPackage rec { 13 pname = "google-cloud-redis"; 14 + version = "2.3.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + sha256 = "3b53fde67a97718642d29ac26b1b7608e7581b37d1e468f3c2ae38ea6cf7308f"; 19 }; 20 21 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-translate/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-translate"; 17 - version = "3.4.1"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - sha256 = "sha256-cxuLaZ4cBdsWsyfRqb4NJ1+RWZSJhvTTclYF9uy6QM4="; 22 }; 23 24 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-translate"; 17 + version = "3.5.0"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + sha256 = "49c91574e04d52fc7c0fade95dd5e6ccb51190ab8b419352d008a617c7799879"; 22 }; 23 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-vision/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "google-cloud-vision"; 14 - version = "2.4.4"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - sha256 = "sha256-RqFvdF4sYDTgz0uZfqOn1trcSQX6qrbUH89957zbUoU="; 19 }; 20 21 propagatedBuildInputs = [ libcst google-api-core proto-plus];
··· 11 12 buildPythonPackage rec { 13 pname = "google-cloud-vision"; 14 + version = "2.5.0"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + sha256 = "e56e35fa647d794429c6fc1595b2ebf5f4d627f0b3d6499a000b54be343ea37e"; 19 }; 20 21 propagatedBuildInputs = [ libcst google-api-core proto-plus];
+2 -2
pkgs/development/python-modules/libvirt/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "libvirt"; 5 - version = "7.7.0"; 6 7 src = assert version == libvirt.version; fetchFromGitLab { 8 owner = "libvirt"; 9 repo = "libvirt-python"; 10 rev = "v${version}"; 11 - sha256 = "sha256-KIeo4CvJS8ZPlEHmrt7BPXdgA2RplHpb0j2ha4gyUxU="; 12 }; 13 14 nativeBuildInputs = [ pkg-config ];
··· 2 3 buildPythonPackage rec { 4 pname = "libvirt"; 5 + version = "7.8.0"; 6 7 src = assert version == libvirt.version; fetchFromGitLab { 8 owner = "libvirt"; 9 repo = "libvirt-python"; 10 rev = "v${version}"; 11 + sha256 = "sha256-GuV++CFkywW0LGconyahfBGY+jjFA27Qu9JGIFt4bus="; 12 }; 13 14 nativeBuildInputs = [ pkg-config ];
+22
pkgs/development/tools/esbuild/netlify.nix
···
··· 1 + { buildGoModule, fetchFromGitHub, lib }: 2 + 3 + buildGoModule rec { 4 + pname = "esbuild"; 5 + version = "0.13.6"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "netlify"; 9 + repo = "esbuild"; 10 + rev = "v${version}"; 11 + sha256 = "0asjmqfzdrpfx2hd5hkac1swp52qknyqavsm59j8xr4c1ixhc6n9"; 12 + }; 13 + 14 + vendorSha256 = "sha256-2ABWPqhK2Cf4ipQH7XvRrd+ZscJhYPc3SV2cGT0apdg="; 15 + 16 + meta = with lib; { 17 + description = "A fork of esbuild maintained by netlify"; 18 + homepage = "https://github.com/netlify/esbuild"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ roberth ]; 21 + }; 22 + }
-24
pkgs/development/tools/misc/luarocks/darwin-3.1.3.patch
··· 1 - diff --git a/src/luarocks/core/cfg.lua b/src/luarocks/core/cfg.lua 2 - index c5af5a2..1949fdc 100644 3 - --- a/src/luarocks/core/cfg.lua 4 - +++ b/src/luarocks/core/cfg.lua 5 - @@ -425,7 +425,7 @@ local function make_defaults(lua_version, target_cpu, platforms, home) 6 - defaults.external_lib_extension = "dylib" 7 - defaults.arch = "macosx-"..target_cpu 8 - defaults.variables.LIBFLAG = "-bundle -undefined dynamic_lookup -all_load" 9 - - local version = util.popen_read("sw_vers -productVersion") 10 - + local version = os.getenv("MACOSX_DEPLOYMENT_TARGET") or "@darwinMinVersion@" 11 - version = tonumber(version and version:match("^[^.]+%.([^.]+)")) or 3 12 - if version >= 10 then 13 - version = 8 14 - @@ -434,8 +434,8 @@ local function make_defaults(lua_version, target_cpu, platforms, home) 15 - else 16 - defaults.gcc_rpath = false 17 - end 18 - - defaults.variables.CC = "env MACOSX_DEPLOYMENT_TARGET=10."..version.." gcc" 19 - - defaults.variables.LD = "env MACOSX_DEPLOYMENT_TARGET=10."..version.." gcc" 20 - + defaults.variables.CC = "env MACOSX_DEPLOYMENT_TARGET=10."..version.." clang" 21 - + defaults.variables.LD = "env MACOSX_DEPLOYMENT_TARGET=10."..version.." clang" 22 - defaults.web_browser = "open" 23 - end 24 -
···
+24
pkgs/development/tools/misc/luarocks/darwin-3.7.0.patch
···
··· 1 + diff --git a/src/luarocks/core/cfg.lua b/src/luarocks/core/cfg.lua 2 + index 535bd69..b017161 100644 3 + --- a/src/luarocks/core/cfg.lua 4 + +++ b/src/luarocks/core/cfg.lua 5 + @@ -436,7 +436,7 @@ local function make_defaults(lua_version, target_cpu, platforms, home) 6 + defaults.external_lib_extension = "dylib" 7 + defaults.arch = "macosx-"..target_cpu 8 + defaults.variables.LIBFLAG = "-bundle -undefined dynamic_lookup -all_load" 9 + - local version = util.popen_read("sw_vers -productVersion") 10 + + local version = os.getenv("MACOSX_DEPLOYMENT_TARGET") or "@darwinMinVersion@" 11 + if not (version:match("^%d+%.%d+%.%d+$") or version:match("^%d+%.%d+$")) then 12 + version = "10.3" 13 + end 14 + @@ -448,8 +448,8 @@ local function make_defaults(lua_version, target_cpu, platforms, home) 15 + else 16 + defaults.gcc_rpath = false 17 + end 18 + - defaults.variables.CC = "env MACOSX_DEPLOYMENT_TARGET="..tostring(version).." gcc" 19 + - defaults.variables.LD = "env MACOSX_DEPLOYMENT_TARGET="..tostring(version).." gcc" 20 + + defaults.variables.CC = "env MACOSX_DEPLOYMENT_TARGET="..tostring(version).." clang" 21 + + defaults.variables.LD = "env MACOSX_DEPLOYMENT_TARGET="..tostring(version).." clang" 22 + defaults.web_browser = "open" 23 + end 24 +
+3 -3
pkgs/development/tools/misc/luarocks/default.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "luarocks"; 13 - version = "3.2.1"; 14 15 src = fetchFromGitHub { 16 owner = "luarocks"; 17 repo = "luarocks"; 18 rev = "v${version}"; 19 - sha256 = "0viiafmb8binksda79ah828q1dfnb6jsqlk7vyndl2xvx9yfn4y2"; 20 }; 21 22 - patches = [ ./darwin-3.1.3.patch ]; 23 24 postPatch = lib.optionalString stdenv.targetPlatform.isDarwin '' 25 substituteInPlace src/luarocks/core/cfg.lua --subst-var-by 'darwinMinVersion' '${stdenv.targetPlatform.darwinMinVersion}'
··· 10 11 stdenv.mkDerivation rec { 12 pname = "luarocks"; 13 + version = "3.7.0"; 14 15 src = fetchFromGitHub { 16 owner = "luarocks"; 17 repo = "luarocks"; 18 rev = "v${version}"; 19 + sha256 = "1sn2j7hv8nbdjqj1747glk9770zw8q5v8ivaxhvwbk3vl038ck9d"; 20 }; 21 22 + patches = [ ./darwin-3.7.0.patch ]; 23 24 postPatch = lib.optionalString stdenv.targetPlatform.isDarwin '' 25 substituteInPlace src/luarocks/core/cfg.lua --subst-var-by 'darwinMinVersion' '${stdenv.targetPlatform.darwinMinVersion}'
+5 -4
pkgs/os-specific/linux/numad/default.nix
··· 1 - { lib, stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 pname = "numad"; 5 version = "0.5"; 6 7 - src = fetchurl { 8 - url = "https://git.fedorahosted.org/cgit/numad.git/snapshot/numad-${version}.tar.xz"; 9 - sha256 = "08zd1yc3w00yv4mvvz5sq1gf91f6p2s9ljcd72m33xgnkglj60v4"; 10 }; 11 12 hardeningDisable = [ "format" ];
··· 1 + { lib, stdenv, fetchgit }: 2 3 stdenv.mkDerivation rec { 4 pname = "numad"; 5 version = "0.5"; 6 7 + src = fetchgit { 8 + url = "https://pagure.io/numad.git"; 9 + rev = "334278ff3d774d105939743436d7378a189e8693"; 10 + sha256 = "sha256-6nrbfooUI1ufJhsPf68li5584oKQcznXQlxfpStuX5I="; 11 }; 12 13 hardeningDisable = [ "format" ];
+7 -5
pkgs/servers/headphones/default.nix
··· 2 3 python2.pkgs.buildPythonApplication rec { 4 pname = "headphones"; 5 - version = "0.5.19"; 6 7 src = fetchFromGitHub { 8 owner = "rembo10"; 9 repo = "headphones"; 10 rev = "v${version}"; 11 - sha256 = "0z39gyan3ksdhnjxxs7byamrzmrk8cn15g300iqigzvgidff1lq0"; 12 }; 13 14 dontBuild = true; ··· 18 buildInputs = [ python2 ]; 19 20 installPhase = '' 21 - mkdir -p $out/bin 22 - cp -R {data,headphones,lib,Headphones.py} $out/ 23 24 - makeWrapper $out/Headphones.py $out/bin/headphones 25 ''; 26 27 meta = with lib; {
··· 2 3 python2.pkgs.buildPythonApplication rec { 4 pname = "headphones"; 5 + version = "0.5.20"; 6 7 src = fetchFromGitHub { 8 owner = "rembo10"; 9 repo = "headphones"; 10 rev = "v${version}"; 11 + sha256 = "0m234fr1i8bb8mgmjsdpkbaa3l16y23ca6s7nyyl5ismmjxhi4mz"; 12 }; 13 14 dontBuild = true; ··· 18 buildInputs = [ python2 ]; 19 20 installPhase = '' 21 + mkdir -p $out/bin $out/opt/headphones 22 + cp -R {data,headphones,lib,Headphones.py} $out/opt/headphones 23 24 + echo v${version} > $out/opt/headphones/version.txt 25 + 26 + makeWrapper $out/opt/headphones/Headphones.py $out/bin/headphones 27 ''; 28 29 meta = with lib; {
+1 -1
pkgs/servers/unifi/default.nix
··· 34 description = "Controller for Ubiquiti UniFi access points"; 35 license = licenses.unfree; 36 platforms = platforms.unix; 37 - maintainers = with maintainers; [ erictapen globin patryk27 ]; 38 }; 39 }; 40
··· 34 description = "Controller for Ubiquiti UniFi access points"; 35 license = licenses.unfree; 36 platforms = platforms.unix; 37 + maintainers = with maintainers; [ erictapen globin patryk27 pennae ]; 38 }; 39 }; 40
+3 -3
pkgs/tools/backup/kopia/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kopia"; 5 - version = "0.9.0"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-xfGx9rtpLmotW00pB4822dwBzB2u+QYNSLWtA+JDffU="; 12 }; 13 14 - vendorSha256 = "sha256-USWrI2vH0RpGJgxoEfEwqDUwXjxylOOqA9g7GltOdYQ="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "kopia"; 5 + version = "0.9.2"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-C1KLwl+hwyoRUK4GrDhj1Wwx4Fut+QuhgTFagyQeldc="; 12 }; 13 14 + vendorSha256 = "sha256-v81YkImg8GdI5locfsU4dg2JyO7XB24mfHRIZ+k8QBA="; 15 16 doCheck = false; 17
-15
pkgs/tools/compression/ncompress/builder.sh
··· 1 - source $stdenv/setup 2 - installFlags="PREFIX=$out" 3 - 4 - preBuild() { 5 - cp Makefile.def Makefile 6 - sed -i GNUmakefile -e 's/compress %/%/g' 7 - } 8 - 9 - postInstall() { 10 - rm $out/bin/uncompress* $out/bin/zcat* 11 - ln -s compress $out/bin/uncompress 12 - ln -s compress $out/bin/zcat 13 - } 14 - 15 - genericBuild
···
+16 -9
pkgs/tools/compression/ncompress/default.nix
··· 1 - {lib, stdenv, fetchurl}: 2 3 stdenv.mkDerivation rec { 4 pname = "ncompress"; 5 version = "5.0"; 6 7 - builder = ./builder.sh; 8 9 - src = fetchurl { 10 - url = "mirror://sourceforge/project/ncompress/${pname}-${version}.tar.gz"; 11 - sha256 = "004r086c11sw9vg2j3srgxpz98w8pycjl33bk3pgqnd0s92igrn4"; 12 - }; 13 14 - meta = { 15 homepage = "http://ncompress.sourceforge.net/"; 16 - license = lib.licenses.publicDomain; 17 description = "A fast, simple LZW file compressor"; 18 - platforms = lib.platforms.unix; 19 }; 20 }
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 3 stdenv.mkDerivation rec { 4 pname = "ncompress"; 5 version = "5.0"; 6 7 + src = fetchFromGitHub { 8 + owner = "vapier"; 9 + repo = "ncompress"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-Yhs3C5/kR7Ve56E84usYJprxIMAIwXVahLi1N9TIfj0="; 12 + }; 13 14 + makeFlags = [ "PREFIX=$(out)" ]; 15 + installTargets = "install_core"; 16 + 17 + postInstall = '' 18 + mv $out/bin/uncompress $out/bin/uncompress-ncompress 19 + ''; 20 21 + meta = with lib; { 22 homepage = "http://ncompress.sourceforge.net/"; 23 + license = licenses.publicDomain; 24 description = "A fast, simple LZW file compressor"; 25 + platforms = platforms.unix; 26 }; 27 }
+2 -2
pkgs/tools/graphics/directx-shader-compiler/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "directx-shader-compiler"; 5 - version = "1.5.2010"; 6 7 # Put headers in dev, there are lot of them which aren't necessary for 8 # using the compiler binary. ··· 12 owner = "microsoft"; 13 repo = "DirectXShaderCompiler"; 14 rev = "v${version}"; 15 - sha256 = "0ccfy1bfp0cm0pq63ri4yl1sr3fdn1a526bsnakg4bl6z4fwrnnj"; 16 # We rely on the side effect of leaving the .git directory here for the 17 # version-grabbing functionality of the build system. 18 fetchSubmodules = true;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "directx-shader-compiler"; 5 + version = "1.6.2106"; 6 7 # Put headers in dev, there are lot of them which aren't necessary for 8 # using the compiler binary. ··· 12 owner = "microsoft"; 13 repo = "DirectXShaderCompiler"; 14 rev = "v${version}"; 15 + sha256 = "6kQgAESYiQ06LkiGTfDBYwd/ORLSm1W+BcO+OUp4yXY="; 16 # We rely on the side effect of leaving the .git directory here for the 17 # version-grabbing functionality of the build system. 18 fetchSubmodules = true;
+2 -2
pkgs/tools/misc/ding-libs/default.nix
··· 5 version = "0.6.1"; 6 7 src = fetchurl { 8 - url = "https://fedorahosted.org/released/ding-libs/ding-libs-${version}.tar.gz"; 9 sha256 = "1h97mx2jdv4caiz4r7y8rxfsq78fx0k4jjnfp7x2s7xqvqks66d3"; 10 }; 11 ··· 16 17 meta = { 18 description = "'D is not GLib' utility libraries"; 19 - homepage = "https://fedorahosted.org/sssd/"; 20 platforms = with lib.platforms; linux; 21 maintainers = with lib.maintainers; [ e-user ]; 22 license = [ lib.licenses.gpl3 lib.licenses.lgpl3 ];
··· 5 version = "0.6.1"; 6 7 src = fetchurl { 8 + url = "https://releases.pagure.org/SSSD/${pname}/${pname}-${version}.tar.gz"; 9 sha256 = "1h97mx2jdv4caiz4r7y8rxfsq78fx0k4jjnfp7x2s7xqvqks66d3"; 10 }; 11 ··· 16 17 meta = { 18 description = "'D is not GLib' utility libraries"; 19 + homepage = "https://pagure.io/SSSD/ding-libs"; 20 platforms = with lib.platforms; linux; 21 maintainers = with lib.maintainers; [ e-user ]; 22 license = [ lib.licenses.gpl3 lib.licenses.lgpl3 ];
+2 -2
pkgs/tools/misc/plantuml/default.nix
··· 1 { lib, stdenv, fetchurl, makeWrapper, jre, graphviz }: 2 3 stdenv.mkDerivation rec { 4 - version = "1.2021.9"; 5 pname = "plantuml"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/project/plantuml/${version}/plantuml.${version}.jar"; 9 - sha256 = "sha256-ezyQGrJwMl2Tqv14GSQzApdDqg1RV8OWdnp4K8a1A5k="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 1 { lib, stdenv, fetchurl, makeWrapper, jre, graphviz }: 2 3 stdenv.mkDerivation rec { 4 + version = "1.2021.12"; 5 pname = "plantuml"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/project/plantuml/${version}/plantuml.${version}.jar"; 9 + sha256 = "sha256-t9IQ1D2QJHrQmt/0EWofrqSf6o2YMUdpxFILsV5muog="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/tools/misc/tmpwatch/default.nix
··· 5 version = "2.11"; 6 7 src = fetchurl { 8 - url = "https://fedorahosted.org/releases/t/m/tmpwatch/tmpwatch-${version}.tar.bz2"; 9 sha256 = "1m5859ngwx61l1i4s6fja2avf1hyv6w170by273w8nsin89825lk"; 10 }; 11 12 configureFlags = [ "--with-fuser=${psmisc}/bin/fuser" ]; 13 14 meta = with lib; { 15 - homepage = "https://fedorahosted.org/tmpwatch/"; 16 description = "Recursively searches through specified directories and removes files which have not been accessed in a specified period of time"; 17 license = licenses.gpl2; 18 maintainers = with maintainers; [ vlstill ];
··· 5 version = "2.11"; 6 7 src = fetchurl { 8 + url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.bz2"; 9 sha256 = "1m5859ngwx61l1i4s6fja2avf1hyv6w170by273w8nsin89825lk"; 10 }; 11 12 configureFlags = [ "--with-fuser=${psmisc}/bin/fuser" ]; 13 14 meta = with lib; { 15 + homepage = "https://pagure.io/tmpwatch"; 16 description = "Recursively searches through specified directories and removes files which have not been accessed in a specified period of time"; 17 license = licenses.gpl2; 18 maintainers = with maintainers; [ vlstill ];
-74
pkgs/tools/networking/swec/default.nix
··· 1 - { fetchurl, lib, stdenv, makeWrapper, perlPackages }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "swec"; 5 - version = "0.4"; 6 - 7 - src = fetchurl { 8 - url = "http://files.zerodogg.org/swec/swec-${version}.tar.bz2"; 9 - sha256 = "1m3971z4z1wr0paggprfz0n8ng8vsnkc9m6s3bdplgyz7qjk6jwx"; 10 - }; 11 - 12 - nativeBuildInputs = [ makeWrapper ]; 13 - buildInputs = [ perlPackages.perl perlPackages.LWP perlPackages.URI perlPackages.HTMLParser ]; 14 - checkInputs = [ perlPackages.HTTPServerSimple perlPackages.Parent ]; 15 - 16 - configurePhase = '' 17 - for i in swec tests/{runTests,testServer} 18 - do 19 - sed -i "$i" -e's|/usr/bin/perl|${perlPackages.perl}/bin/perl|g' 20 - done 21 - ''; 22 - 23 - dontBuild = true; 24 - 25 - installPhase = '' 26 - make install prefix="$out" 27 - 28 - mkdir -p "$out/share/swec-${version}" 29 - cp -v default.sdf "$out/share/swec-${version}" 30 - sed -i "$out/bin/swec" -e"s|realpath(\$0)|'$out/share/swec-${version}/swec'|g" 31 - 32 - wrapProgram "$out/bin/swec" \ 33 - --prefix PERL5LIB : ${with perlPackages; makePerlPath [ LWP URI HTMLParser ]} 34 - ''; 35 - 36 - doCheck = true; 37 - checkPhase = "make test"; 38 - 39 - meta = { 40 - homepage = "https://random.zerodogg.org/swec/"; 41 - 42 - description = "Simple Web Error Checker (SWEC)"; 43 - 44 - longDescription = 45 - '' SWEC (Simple Web Error Checker) is a program that automates testing 46 - of dynamic websites. It parses each HTML file it finds for links, 47 - and if those links are within the site specified (ie. local, not 48 - external), it will check that page as well. In this respect it 49 - works a lot like a crawler, in that it'll click on any link it finds 50 - (more notes about this later). 51 - 52 - In addition to parsing and locating links, it will also parse the 53 - pages looking for known errors and report those (such as Mason or 54 - PHP errors), and will report if a page can not be read (by either 55 - returning a 404, 500 or similar). 56 - 57 - Since you may often want SWEC to be logged in on your site, you have 58 - to be careful. When logged in, SWEC will still click on all links 59 - it finds, including things like 'join group' or 'delete account' 60 - (though it has some magic trying to avoid the latter). Therefore it 61 - is highly recommended that when you run SWEC as a logged-in user on 62 - a site, use a test server, not the live one. 63 - 64 - Running SWEC on a live site without being logged in as a user is 65 - perfectly fine, it won't do anything a normal crawler wouldn't do 66 - (well, not exactly true, SWEC will ignore robots.txt). 67 - ''; 68 - 69 - license = lib.licenses.gpl3Plus; 70 - 71 - maintainers = [ ]; 72 - platforms = lib.platforms.linux; 73 - }; 74 - }
···
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 # frozen_string_literal: true 2 source "https://rubygems.org" 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.9"
··· 1 # frozen_string_literal: true 2 source "https://rubygems.org" 3 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.10"
+7 -7
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 GIT 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: 1e520ab4a5779648de889d198100af4eb556a7f6 4 - ref: refs/tags/6.1.9 5 specs: 6 - metasploit-framework (6.1.9) 7 actionpack (~> 6.0) 8 activerecord (~> 6.0) 9 activesupport (~> 6.0) ··· 128 arel-helpers (2.12.1) 129 activerecord (>= 3.1.0, < 7) 130 aws-eventstream (1.2.0) 131 - aws-partitions (1.512.0) 132 aws-sdk-core (3.121.1) 133 aws-eventstream (~> 1, >= 1.0.2) 134 aws-partitions (~> 1, >= 1.239.0) 135 aws-sigv4 (~> 1.1) 136 jmespath (~> 1.0) 137 - aws-sdk-ec2 (1.266.0) 138 aws-sdk-core (~> 3, >= 3.120.0) 139 aws-sigv4 (~> 1.1) 140 aws-sdk-iam (1.61.0) ··· 220 jmespath (1.4.0) 221 jsobfu (0.4.2) 222 rkelly-remix 223 - json (2.5.1) 224 little-plugger (1.1.4) 225 logging (2.3.0) 226 little-plugger (~> 1.1) ··· 296 ttfunk 297 pg (1.2.3) 298 public_suffix (4.0.6) 299 - puma (5.5.0) 300 nio4r (~> 2.0) 301 racc (1.5.2) 302 rack (2.2.3)
··· 1 GIT 2 remote: https://github.com/rapid7/metasploit-framework 3 + revision: 822dd1ef2b1a1171d62803add58ee2afce30ea06 4 + ref: refs/tags/6.1.10 5 specs: 6 + metasploit-framework (6.1.10) 7 actionpack (~> 6.0) 8 activerecord (~> 6.0) 9 activesupport (~> 6.0) ··· 128 arel-helpers (2.12.1) 129 activerecord (>= 3.1.0, < 7) 130 aws-eventstream (1.2.0) 131 + aws-partitions (1.516.0) 132 aws-sdk-core (3.121.1) 133 aws-eventstream (~> 1, >= 1.0.2) 134 aws-partitions (~> 1, >= 1.239.0) 135 aws-sigv4 (~> 1.1) 136 jmespath (~> 1.0) 137 + aws-sdk-ec2 (1.270.0) 138 aws-sdk-core (~> 3, >= 3.120.0) 139 aws-sigv4 (~> 1.1) 140 aws-sdk-iam (1.61.0) ··· 220 jmespath (1.4.0) 221 jsobfu (0.4.2) 222 rkelly-remix 223 + json (2.6.0) 224 little-plugger (1.1.4) 225 logging (2.3.0) 226 little-plugger (~> 1.1) ··· 296 ttfunk 297 pg (1.2.3) 298 public_suffix (4.0.6) 299 + puma (5.5.2) 300 nio4r (~> 2.0) 301 racc (1.5.2) 302 rack (2.2.3)
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 14 }; 15 in stdenv.mkDerivation rec { 16 pname = "metasploit-framework"; 17 - version = "6.1.9"; 18 19 src = fetchFromGitHub { 20 owner = "rapid7"; 21 repo = "metasploit-framework"; 22 rev = version; 23 - sha256 = "sha256-ZhNy6rp3Jdrua1dZr3dTQxLOVAflWiI0lc/f38d0kqc="; 24 }; 25 26 nativeBuildInputs = [ makeWrapper ];
··· 14 }; 15 in stdenv.mkDerivation rec { 16 pname = "metasploit-framework"; 17 + version = "6.1.10"; 18 19 src = fetchFromGitHub { 20 owner = "rapid7"; 21 repo = "metasploit-framework"; 22 rev = version; 23 + sha256 = "sha256-VdnczTauHKYexXZs6U5F5v4DP8lJb8wCDy6yiPdEavI="; 24 }; 25 26 nativeBuildInputs = [ makeWrapper ];
+11 -11
pkgs/tools/security/metasploit/gemset.nix
··· 104 platforms = []; 105 source = { 106 remotes = ["https://rubygems.org"]; 107 - sha256 = "09v7z0sg09vsysv0hm1552b3laa8sf933c0sqnb35mb4wksj1fv9"; 108 type = "gem"; 109 }; 110 - version = "1.512.0"; 111 }; 112 aws-sdk-core = { 113 groups = ["default"]; ··· 124 platforms = []; 125 source = { 126 remotes = ["https://rubygems.org"]; 127 - sha256 = "0bwkgmdas7ig52cbfdx6vf63j8qk91lizd7sdjdapbfnabbpwmq1"; 128 type = "gem"; 129 }; 130 - version = "1.266.0"; 131 }; 132 aws-sdk-iam = { 133 groups = ["default"]; ··· 594 platforms = []; 595 source = { 596 remotes = ["https://rubygems.org"]; 597 - sha256 = "0lrirj0gw420kw71bjjlqkqhqbrplla61gbv1jzgsz6bv90qr3ci"; 598 type = "gem"; 599 }; 600 - version = "2.5.1"; 601 }; 602 little-plugger = { 603 groups = ["default"]; ··· 664 platforms = []; 665 source = { 666 fetchSubmodules = false; 667 - rev = "1e520ab4a5779648de889d198100af4eb556a7f6"; 668 - sha256 = "19wjfk3xzpygjls24np50xacw4j3advsynapdgpdl9bppbm744v6"; 669 type = "git"; 670 url = "https://github.com/rapid7/metasploit-framework"; 671 }; 672 - version = "6.1.9"; 673 }; 674 metasploit-model = { 675 groups = ["default"]; ··· 977 platforms = []; 978 source = { 979 remotes = ["https://rubygems.org"]; 980 - sha256 = "0ahk9a2a05985m0037gqlpha5vdkvmwhyk8v1shkbnwkkm30k0mq"; 981 type = "gem"; 982 }; 983 - version = "5.5.0"; 984 }; 985 racc = { 986 groups = ["default"];
··· 104 platforms = []; 105 source = { 106 remotes = ["https://rubygems.org"]; 107 + sha256 = "1jx44f1hc41712k8fqmzrbpqs2j9yl0msdqcmmfp0pirkbqw6ri0"; 108 type = "gem"; 109 }; 110 + version = "1.516.0"; 111 }; 112 aws-sdk-core = { 113 groups = ["default"]; ··· 124 platforms = []; 125 source = { 126 remotes = ["https://rubygems.org"]; 127 + sha256 = "1m46n4fn505l0qqwamc5gk88h6aqvjqc7j0pkrcngxcgh5r7hcvf"; 128 type = "gem"; 129 }; 130 + version = "1.270.0"; 131 }; 132 aws-sdk-iam = { 133 groups = ["default"]; ··· 594 platforms = []; 595 source = { 596 remotes = ["https://rubygems.org"]; 597 + sha256 = "0a7p95md8j8lbgxx9dzygysxmrg1s80895f46f1y47k9kq9q56ry"; 598 type = "gem"; 599 }; 600 + version = "2.6.0"; 601 }; 602 little-plugger = { 603 groups = ["default"]; ··· 664 platforms = []; 665 source = { 666 fetchSubmodules = false; 667 + rev = "822dd1ef2b1a1171d62803add58ee2afce30ea06"; 668 + sha256 = "1wka8kvqicif1w1cqvs9r4zh7zp68m7fjv3nqlgac75f6v6xrnam"; 669 type = "git"; 670 url = "https://github.com/rapid7/metasploit-framework"; 671 }; 672 + version = "6.1.10"; 673 }; 674 metasploit-model = { 675 groups = ["default"]; ··· 977 platforms = []; 978 source = { 979 remotes = ["https://rubygems.org"]; 980 + sha256 = "1xblxnrs0c5m326v7kgr32k4m00cl2ipcf5m0qvyisrw62vd5dbn"; 981 type = "gem"; 982 }; 983 + version = "5.5.2"; 984 }; 985 racc = { 986 groups = ["default"];
+13
pkgs/tools/security/swtpm/default.nix
··· 42 43 configureFlags = [ 44 "--with-cuse" 45 ]; 46 47 enableParallelBuilding = true; 48
··· 42 43 configureFlags = [ 44 "--with-cuse" 45 + "--localstatedir=/var" 46 ]; 47 + 48 + prePatch = '' 49 + # Makefile tries to create the directory /var/lib/swtpm-localcafor, which fails 50 + substituteInPlace samples/Makefile.am \ 51 + --replace 'install-data-local:' 'do-not-execute:' 52 + 53 + # Use the correct path to the certtool binary 54 + # instead of relying on it being in the environment 55 + substituteInPlace samples/swtpm_localca.c --replace \ 56 + '# define CERTTOOL_NAME "certtool"' \ 57 + '# define CERTTOOL_NAME "${gnutls}/bin/certtool"' 58 + ''; 59 60 enableParallelBuilding = true; 61
+3 -3
pkgs/tools/security/vault/default.nix
··· 6 7 buildGoModule rec { 8 pname = "vault"; 9 - version = "1.8.3"; 10 11 src = fetchFromGitHub { 12 owner = "hashicorp"; 13 repo = "vault"; 14 rev = "v${version}"; 15 - sha256 = "sha256-7jJMF8pNCKkiOAY9sZEK0lOqP2/yBVqS3FaKOOz74XI="; 16 }; 17 18 - vendorSha256 = "sha256-j+07Q5dpt8I0sf5B3AVw4343EMWyJDqrzFrdDrBp0DY="; 19 20 subPackages = [ "." ]; 21
··· 6 7 buildGoModule rec { 8 pname = "vault"; 9 + version = "1.8.4"; 10 11 src = fetchFromGitHub { 12 owner = "hashicorp"; 13 repo = "vault"; 14 rev = "v${version}"; 15 + sha256 = "sha256-t/BQu6nq0FcmqTc/vo3bTUbVNDqzePqlOMFkl4pD598="; 16 }; 17 18 + vendorSha256 = "sha256-9eXDcuVm+N4nenotUtCvyp2qB5uPDwzGHk43Y4uTT14="; 19 20 subPackages = [ "." ]; 21
+5 -5
pkgs/tools/security/vault/vault-bin.nix
··· 1 { lib, stdenv, fetchurl, unzip, makeWrapper, gawk, glibc }: 2 3 let 4 - version = "1.8.3"; 5 6 sources = let 7 base = "https://releases.hashicorp.com/vault/${version}"; 8 in { 9 x86_64-linux = fetchurl { 10 url = "${base}/vault_${version}_linux_amd64.zip"; 11 - sha256 = "sha256-x1ZHemRyblfMgmG2zx3AnZmhn2Q952v3nzi3HEvlmE8="; 12 }; 13 i686-linux = fetchurl { 14 url = "${base}/vault_${version}_linux_386.zip"; 15 - sha256 = "1141zjf56fz76ka7bim9qkdk46pa3kk39swxza17g3qxpj21w0jp"; 16 }; 17 x86_64-darwin = fetchurl { 18 url = "${base}/vault_${version}_darwin_amd64.zip"; 19 - sha256 = "06bkka2k09alhps5h2dk0dgczgnnd6g4npjp9j103lvzi935zjsy"; 20 }; 21 aarch64-linux = fetchurl { 22 url = "${base}/vault_${version}_linux_arm64.zip"; 23 - sha256 = "1z9pv46pgqnn34mc624x9z41kvr4hrjjdp6y9zv033h0cpxbd0y7"; 24 }; 25 }; 26
··· 1 { lib, stdenv, fetchurl, unzip, makeWrapper, gawk, glibc }: 2 3 let 4 + version = "1.8.4"; 5 6 sources = let 7 base = "https://releases.hashicorp.com/vault/${version}"; 8 in { 9 x86_64-linux = fetchurl { 10 url = "${base}/vault_${version}_linux_amd64.zip"; 11 + sha256 = "sha256-zrCRnIScIWJ8ocrgYPNhtvuX3PBLF9HX0dyZU/zY4yk="; 12 }; 13 i686-linux = fetchurl { 14 url = "${base}/vault_${version}_linux_386.zip"; 15 + sha256 = "0sh9q29b0bi5ap6nvll0ykxd5vf4wliksj31cmm4gw5vp90irvl3"; 16 }; 17 x86_64-darwin = fetchurl { 18 url = "${base}/vault_${version}_darwin_amd64.zip"; 19 + sha256 = "09nhfdw20g46fnrn82my7a59pfa81dxncxhiswmha3cdy8n0p6wb"; 20 }; 21 aarch64-linux = fetchurl { 22 url = "${base}/vault_${version}_linux_arm64.zip"; 23 + sha256 = "01ra0xrgivf01ff87p0gqmi1flnac9y02x7jpv5j6a9czr1sqw1j"; 24 }; 25 }; 26
+1 -1
pkgs/tools/system/logrotate/default.nix
··· 26 buildInputs = [ popt ] ++ lib.optionals aclSupport [ acl ]; 27 28 meta = with lib; { 29 - homepage = "https://fedorahosted.org/releases/l/o/logrotate/"; 30 description = "Rotates and compresses system logs"; 31 license = licenses.gpl2Plus; 32 maintainers = [ maintainers.viric ];
··· 26 buildInputs = [ popt ] ++ lib.optionals aclSupport [ acl ]; 27 28 meta = with lib; { 29 + homepage = "https://github.com/logrotate/logrotate"; 30 description = "Rotates and compresses system logs"; 31 license = licenses.gpl2Plus; 32 maintainers = [ maintainers.viric ];
+1 -1
pkgs/tools/typesetting/xmlto/default.nix
··· 46 ''; 47 48 license = lib.licenses.gpl2Plus; 49 - homepage = "https://fedorahosted.org/xmlto/"; 50 platforms = lib.platforms.unix; 51 }; 52 }
··· 46 ''; 47 48 license = lib.licenses.gpl2Plus; 49 + homepage = "https://pagure.io/xmlto/"; 50 platforms = lib.platforms.unix; 51 }; 52 }
+1
pkgs/top-level/aliases.nix
··· 897 stumpwm-git = throw "stumpwm-git has been broken for a long time and lispPackages.stumpwm follows Quicklisp that is close to git version"; # added 2021-05-09 898 surf-webkit2 = surf; # added 2017-04-02 899 sup = throw "sup was deprecated on 2019-09-10: abandoned by upstream"; 900 swfdec = throw "swfdec has been removed as broken and unmaintained."; # added 2020-08-23 901 swtpm-tpm2 = swtpm; # added 2021-02-26 902 syncthing-cli = syncthing; # added 2021-04-06
··· 897 stumpwm-git = throw "stumpwm-git has been broken for a long time and lispPackages.stumpwm follows Quicklisp that is close to git version"; # added 2021-05-09 898 surf-webkit2 = surf; # added 2017-04-02 899 sup = throw "sup was deprecated on 2019-09-10: abandoned by upstream"; 900 + swec = throw "swec has been removed; broken and abandoned upstream."; # added 2021-10-14 901 swfdec = throw "swfdec has been removed as broken and unmaintained."; # added 2020-08-23 902 swtpm-tpm2 = swtpm; # added 2021-02-26 903 syncthing-cli = syncthing; # added 2021-04-06
+7 -12
pkgs/top-level/all-packages.nix
··· 1616 1617 esbuild = callPackage ../development/tools/esbuild { }; 1618 1619 essentia-extractor = callPackage ../tools/audio/essentia-extractor { }; 1620 1621 esh = callPackage ../tools/text/esh { }; ··· 6659 6660 ldc = callPackage ../development/compilers/ldc { }; 6661 6662 ldgallery = callPackage ../tools/graphics/ldgallery { 6663 inherit (darwin.apple_sdk.frameworks) CoreServices; 6664 }; ··· 9589 swagger-codegen3 = callPackage ../tools/networking/swagger-codegen3 { }; 9590 9591 swapview = callPackage ../os-specific/linux/swapview/default.nix { }; 9592 - 9593 - swec = callPackage ../tools/networking/swec { }; 9594 9595 swtpm = callPackage ../tools/security/swtpm { }; 9596 ··· 18166 18167 libyamlcpp = callPackage ../development/libraries/libyaml-cpp { }; 18168 18169 libcyaml = callPackage ../development/libraries/libcyaml { }; 18170 18171 rang = callPackage ../development/libraries/rang { }; 18172 18173 - libyamlcpp_0_3 = pkgs.libyamlcpp.overrideAttrs (oldAttrs: { 18174 - src = pkgs.fetchurl { 18175 - url = "https://github.com/jbeder/yaml-cpp/archive/release-0.3.0.tar.gz"; 18176 - sha256 = "12aszqw6svwlnb6nzhsbqhz3c7vnd5ahd0k6xlj05w8lm83hx3db"; 18177 - }; 18178 - }); 18179 - 18180 libykclient = callPackage ../development/libraries/libykclient { }; 18181 18182 libykneomgr = callPackage ../development/libraries/libykneomgr { }; ··· 27489 rsclock = callPackage ../applications/misc/rsclock { }; 27490 27491 rstudio = libsForQt5.callPackage ../applications/editors/rstudio { 27492 - boost = boost166; 27493 - llvmPackages = llvmPackages_7; 27494 - jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 27495 }; 27496 27497 rsync = callPackage ../applications/networking/sync/rsync (config.rsync or {});
··· 1616 1617 esbuild = callPackage ../development/tools/esbuild { }; 1618 1619 + esbuild_netlify = callPackage ../development/tools/esbuild/netlify.nix { }; 1620 + 1621 essentia-extractor = callPackage ../tools/audio/essentia-extractor { }; 1622 1623 esh = callPackage ../tools/text/esh { }; ··· 6661 6662 ldc = callPackage ../development/compilers/ldc { }; 6663 6664 + ligo = callPackage ../development/compilers/ligo { }; 6665 + 6666 ldgallery = callPackage ../tools/graphics/ldgallery { 6667 inherit (darwin.apple_sdk.frameworks) CoreServices; 6668 }; ··· 9593 swagger-codegen3 = callPackage ../tools/networking/swagger-codegen3 { }; 9594 9595 swapview = callPackage ../os-specific/linux/swapview/default.nix { }; 9596 9597 swtpm = callPackage ../tools/security/swtpm { }; 9598 ··· 18168 18169 libyamlcpp = callPackage ../development/libraries/libyaml-cpp { }; 18170 18171 + libyamlcpp_0_3 = callPackage ../development/libraries/libyaml-cpp/0.3.0.nix { }; 18172 + 18173 libcyaml = callPackage ../development/libraries/libcyaml { }; 18174 18175 rang = callPackage ../development/libraries/rang { }; 18176 18177 libykclient = callPackage ../development/libraries/libykclient { }; 18178 18179 libykneomgr = callPackage ../development/libraries/libykneomgr { }; ··· 27486 rsclock = callPackage ../applications/misc/rsclock { }; 27487 27488 rstudio = libsForQt5.callPackage ../applications/editors/rstudio { 27489 + jdk = jdk8; 27490 }; 27491 27492 rsync = callPackage ../applications/networking/sync/rsync (config.rsync or {});
+587 -6
pkgs/top-level/perl-packages.nix
··· 118 }; 119 }; 120 121 AlgorithmAnnotate = buildPerlPackage { 122 pname = "Algorithm-Annotate"; 123 version = "0.10"; ··· 137 }; 138 meta = { 139 description = "A module for merging hierarchies using the C3 algorithm"; 140 license = with lib.licenses; [ artistic1 gpl1Plus ]; 141 }; 142 }; ··· 510 }; 511 }; 512 513 ApacheAuthCookie = buildPerlPackage { 514 pname = "Apache-AuthCookie"; 515 version = "3.30"; ··· 527 meta = { 528 homepage = "https://github.com/mschout/apache-authcookie"; 529 description = "Perl Authentication and Authorization via cookies"; 530 license = with lib.licenses; [ artistic1 gpl1Plus ]; 531 }; 532 }; ··· 1497 }; 1498 }; 1499 1500 BUtils = buildPerlPackage { 1501 pname = "B-Utils"; 1502 version = "0.27"; ··· 3205 }; 3206 }; 3207 3208 CLIHelpers = buildPerlPackage { 3209 pname = "CLI-Helpers"; 3210 version = "1.8"; ··· 3308 description = "TidyAll plugin to sort and align Moose-style attributes"; 3309 license = with lib.licenses; [ artistic1 gpl1Plus ]; 3310 }; 3311 }; 3312 3313 CommandRunner = buildPerlModule { ··· 4838 meta = { 4839 description = "Pretty printing of data structures"; 4840 license = with lib.licenses; [ artistic1 gpl1Plus ]; 4841 }; 4842 }; 4843 ··· 6470 }; 6471 }; 6472 6473 DevelStackTraceAsHTML = buildPerlPackage { 6474 pname = "Devel-StackTrace-AsHTML"; 6475 version = "0.15"; ··· 7441 }; 7442 }; 7443 7444 enum = buildPerlPackage { 7445 pname = "enum"; 7446 version = "1.11"; ··· 7526 }; 7527 }; 7528 7529 ExceptionBase = buildPerlModule { 7530 pname = "Exception-Base"; 7531 version = "0.2501"; ··· 8018 }; 8019 meta = { 8020 description = "Run many filetest checks on a tree"; 8021 license = with lib.licenses; [ artistic1 gpl1Plus ]; 8022 }; 8023 }; ··· 9260 }; 9261 }; 9262 9263 GraphicsTIFF = buildPerlPackage { 9264 pname = "Graphics-TIFF"; 9265 version = "16"; ··· 10556 }; 10557 }; 10558 10559 IMAPClient = buildPerlPackage { 10560 pname = "IMAP-Client"; 10561 version = "0.13"; ··· 10760 meta = { 10761 description = "Utilities for interactive I/O"; 10762 license = with lib.licenses; [ artistic1 gpl1Plus ]; 10763 }; 10764 }; 10765 ··· 11232 buildInputs = [ TestFatal TestRequires TestWarnings TestWithoutModule ]; 11233 }; 11234 11235 JSONMaybeXS = buildPerlPackage { 11236 pname = "JSON-MaybeXS"; 11237 version = "1.004003"; ··· 11274 11275 JSONParse = buildPerlPackage { 11276 pname = "JSON-Parse"; 11277 - version = "0.57"; 11278 src = fetchurl { 11279 - url = "mirror://cpan/authors/id/B/BK/BKB/JSON-Parse-0.57.tar.gz"; 11280 - sha256 = "1rqaqpgh068kqj11srw874m5ph5qkaz77ib5fi4hrc402d2qxa45"; 11281 }; 11282 meta = { 11283 description = "Read JSON into a Perl variable"; ··· 11396 }; 11397 }; 11398 11399 libapreq2 = buildPerlPackage { 11400 pname = "libapreq2"; 11401 version = "2.16"; ··· 11770 }; 11771 }; 11772 11773 ListAllUtils = buildPerlPackage { 11774 pname = "List-AllUtils"; 11775 version = "0.18"; ··· 11886 sha256 = "05cwqjxxary11di03gg3fm6j9lbvg1dr2wpr311c1rwp8salg7ch"; 11887 }; 11888 LANG="C"; 11889 }; 11890 11891 LocaleMOFile = buildPerlPackage { ··· 12081 description = "Log::Any adapter for Log::Log4perl"; 12082 license = with lib.licenses; [ artistic1 gpl1Plus ]; 12083 homepage = "https://github.com/preaction/Log-Any-Adapter-Log4perl"; 12084 }; 12085 }; 12086 ··· 12798 }; 12799 }; 12800 12801 MathGMP = buildPerlPackage { 12802 pname = "Math-GMP"; 12803 version = "2.20"; ··· 13505 license = with lib.licenses; [ artistic1 gpl1Plus ]; 13506 }; 13507 buildInputs = [ TestSharedFork ]; 13508 }; 13509 13510 ModuleBuildPluggablePPPort = buildPerlModule { ··· 14275 }; 14276 }; 14277 14278 MonitoringPlugin = buildPerlPackage { 14279 pname = "Monitoring-Plugin"; 14280 version = "0.40"; ··· 14523 meta = { 14524 homepage = "https://github.com/moose/MooseX-App-Cmd"; 14525 description = "Mashes up MooseX::Getopt and App::Cmd"; 14526 license = with lib.licenses; [ artistic1 gpl1Plus ]; 14527 }; 14528 }; ··· 15017 }; 15018 buildInputs = [ ModuleBuildTiny TestFatal TestRequires TestWarnings ]; 15019 propagatedBuildInputs = [ Moose ]; 15020 }; 15021 15022 MooseXStrictConstructor = buildPerlPackage { ··· 19122 }; 19123 }; 19124 19125 SpreadsheetParseExcel = buildPerlPackage { 19126 pname = "Spreadsheet-ParseExcel"; 19127 version = "0.65"; ··· 20141 20142 SysVirt = buildPerlModule rec { 20143 pname = "Sys-Virt"; 20144 - version = "7.7.0"; 20145 src = fetchFromGitLab { 20146 owner = "libvirt"; 20147 repo = "libvirt-perl"; 20148 - rev = "v7.7.0"; 20149 - sha256 = "sha256-rcokZm4pKZrLlkpAZCpECCepNWm+UyXemJGklokiSzM="; 20150 }; 20151 nativeBuildInputs = [ pkgs.pkg-config ]; 20152 buildInputs = [ pkgs.libvirt CPANChanges TestPod TestPodCoverage XMLXPath ]; ··· 20935 }; 20936 }; 20937 20938 TestDir = buildPerlPackage { 20939 pname = "Test-Dir"; 20940 version = "1.16"; ··· 22376 }; 22377 }; 22378 22379 TextGerman = buildPerlPackage { 22380 pname = "Text-German"; 22381 version = "0.06"; ··· 23154 }; 23155 }; 23156 23157 TimeOut = buildPerlPackage { 23158 pname = "Time-Out"; 23159 version = "0.11"; ··· 23352 license = with lib.licenses; [ artistic1 gpl1Plus ]; 23353 }; 23354 buildInputs = [ TestMemoryCycle ]; 23355 }; 23356 23357 TypesSerialiser = buildPerlPackage { ··· 23670 }; 23671 }; 23672 23673 VariableMagic = buildPerlPackage { 23674 pname = "Variable-Magic"; 23675 version = "0.62"; ··· 24016 }; 24017 }; 24018 24019 XMLDOM = buildPerlPackage { 24020 pname = "XML-DOM"; 24021 version = "1.46"; ··· 24263 }; 24264 }; 24265 24266 XMLSAX = buildPerlPackage { 24267 pname = "XML-SAX"; 24268 version = "1.02"; ··· 24480 meta = { 24481 homepage = "https://github.com/ingydotnet/yaml-pm"; 24482 description = "YAML Ain't Markup Language (tm)"; 24483 license = with lib.licenses; [ artistic1 gpl1Plus ]; 24484 }; 24485 };
··· 118 }; 119 }; 120 121 + ActionCircuitBreaker = buildPerlPackage { 122 + pname = "Action-CircuitBreaker"; 123 + version = "0.1"; 124 + src = fetchurl { 125 + url = "mirror://cpan/authors/id/H/HA/HANGY/Action-CircuitBreaker-0.1.tar.gz"; 126 + sha256 = "3f8f5d726fae537ab336e00a6819ae4a8596e4c5f243e772a536ef2eb6e606b1"; 127 + }; 128 + buildInputs = [ ActionRetry TryTiny ]; 129 + propagatedBuildInputs = [ Moo ]; 130 + meta = { 131 + homepage = "https://github.com/hangy/Action-CircuitBreaker"; 132 + description = "Module to try to perform an action, with an option to suspend execution after a number of failures"; 133 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 134 + }; 135 + }; 136 + 137 + ActionRetry = buildPerlPackage { 138 + pname = "Action-Retry"; 139 + version = "0.24"; 140 + src = fetchurl { 141 + url = "mirror://cpan/authors/id/D/DA/DAMS/Action-Retry-0.24.tar.gz"; 142 + sha256 = "a3759742c5bef2d1975ab73d35499d8113324919b24936130255cff07d0294f7"; 143 + }; 144 + propagatedBuildInputs = [ MathFibonacci ModuleRuntime Moo ]; 145 + meta = { 146 + description = "Module to try to perform an action, with various ways of retrying and sleeping between retries"; 147 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 148 + }; 149 + }; 150 + 151 AlgorithmAnnotate = buildPerlPackage { 152 pname = "Algorithm-Annotate"; 153 version = "0.10"; ··· 167 }; 168 meta = { 169 description = "A module for merging hierarchies using the C3 algorithm"; 170 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 171 + }; 172 + }; 173 + 174 + AlgorithmCheckDigits = buildPerlModule { 175 + pname = "Algorithm-CheckDigits"; 176 + version = "1.3.5"; 177 + src = fetchurl { 178 + url = "mirror://cpan/authors/id/M/MA/MAMAWE/Algorithm-CheckDigits-v1.3.5.tar.gz"; 179 + sha256 = "a956d0517180d6d9042f47d73aa6a2728b75fcbd546940d2dbe0a7e7cf428f73"; 180 + }; 181 + buildInputs = [ ProbePerl ]; 182 + meta = { 183 + description = "Perl extension to generate and test check digits"; 184 license = with lib.licenses; [ artistic1 gpl1Plus ]; 185 }; 186 }; ··· 554 }; 555 }; 556 557 + URIEscapeXS = buildPerlPackage { 558 + pname = "URI-Escape-XS"; 559 + version = "0.14"; 560 + src = fetchurl { 561 + url = "mirror://cpan/authors/id/D/DA/DANKOGAI/URI-Escape-XS-0.14.tar.gz"; 562 + sha256 = "c39ac50c6c2b831ae4bf08692e6ca5d4a3f9c57dc4d7f9c4cb0663e2c86c2759"; 563 + }; 564 + meta = { 565 + description = "Drop-In replacement for URI::Escape"; 566 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 567 + }; 568 + }; 569 + 570 ApacheAuthCookie = buildPerlPackage { 571 pname = "Apache-AuthCookie"; 572 version = "3.30"; ··· 584 meta = { 585 homepage = "https://github.com/mschout/apache-authcookie"; 586 description = "Perl Authentication and Authorization via cookies"; 587 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 588 + }; 589 + }; 590 + 591 + ApacheDB = buildPerlPackage { 592 + pname = "Apache-DB"; 593 + version = "0.18"; 594 + src = fetchurl { 595 + url = "mirror://cpan/authors/id/L/LZ/LZE/Apache-DB-0.18.tar.gz"; 596 + sha256 = "6527f4f1598270bea07bec787b71bdf0ec2b572548be7438cf74f2b9a600bfed"; 597 + }; 598 + meta = { 599 + description = "Run the interactive Perl debugger under mod_perl"; 600 license = with lib.licenses; [ artistic1 gpl1Plus ]; 601 }; 602 }; ··· 1567 }; 1568 }; 1569 1570 + BSON = buildPerlPackage { 1571 + pname = "BSON"; 1572 + version = "1.12.2"; 1573 + src = fetchurl { 1574 + url = "mirror://cpan/authors/id/M/MO/MONGODB/BSON-v1.12.2.tar.gz"; 1575 + sha256 = "f4612c0c354310741b99ab6d26451226823150ca27109b1b391232d5cfdda6db"; 1576 + }; 1577 + buildInputs = [ JSONMaybeXS PathTiny TestDeep TestFatal ]; 1578 + propagatedBuildInputs = [ CryptURandom Moo TieIxHash boolean namespaceclean ]; 1579 + meta = { 1580 + homepage = "https://github.com/mongodb-labs/mongo-perl-bson"; 1581 + description = "BSON serialization and deserialization (EOL)"; 1582 + license = lib.licenses.asl20; 1583 + }; 1584 + }; 1585 + 1586 + BSONXS = buildPerlPackage { 1587 + pname = "BSON-XS"; 1588 + version = "0.8.4"; 1589 + src = fetchurl { 1590 + url = "mirror://cpan/authors/id/M/MO/MONGODB/BSON-XS-v0.8.4.tar.gz"; 1591 + sha256 = "28f7d338fd78b6f9c9a6080be9de3f5cb23d888b96ebf6fcbface9f2966aebf9"; 1592 + }; 1593 + buildInputs = [ ConfigAutoConf JSONMaybeXS PathTiny TestDeep TestFatal TieIxHash ]; 1594 + propagatedBuildInputs = [ BSON boolean JSONXS JSONPP CpanelJSONXS ]; 1595 + meta = { 1596 + homepage = "https://github.com/mongodb-labs/mongo-perl-bson-xs"; 1597 + description = "XS implementation of MongoDB's BSON serialization (EOL)"; 1598 + license = lib.licenses.asl20; 1599 + }; 1600 + }; 1601 + 1602 BUtils = buildPerlPackage { 1603 pname = "B-Utils"; 1604 version = "0.27"; ··· 3307 }; 3308 }; 3309 3310 + CLDRNumber = buildPerlModule { 3311 + pname = "CLDR-Number"; 3312 + version = "0.19"; 3313 + src = fetchurl { 3314 + url = "mirror://cpan/authors/id/P/PA/PATCH/CLDR-Number-0.19.tar.gz"; 3315 + sha256 = "c6716488e65fe779ff79a83f0f2036ad94463efe3d0f349c6b99112975bd85fc"; 3316 + }; 3317 + buildInputs = [ SoftwareLicense TestDifferences TestException TestWarn ]; 3318 + propagatedBuildInputs = 3319 + [ ClassMethodModifiers MathRound Moo namespaceclean ]; 3320 + meta = { 3321 + homepage = "https://github.com/patch/cldr-number-pm5"; 3322 + description = "Localized number formatters using the Unicode CLDR"; 3323 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 3324 + }; 3325 + }; 3326 + 3327 CLIHelpers = buildPerlPackage { 3328 pname = "CLI-Helpers"; 3329 version = "1.8"; ··· 3427 description = "TidyAll plugin to sort and align Moose-style attributes"; 3428 license = with lib.licenses; [ artistic1 gpl1Plus ]; 3429 }; 3430 + }; 3431 + 3432 + ColorLibrary = buildPerlPackage { 3433 + pname = "Color-Library"; 3434 + version = "0.021"; 3435 + src = fetchurl { 3436 + url = "mirror://cpan/authors/id/R/RO/ROKR/Color-Library-0.021.tar.gz"; 3437 + sha256 = "58cbf7e333d3a4a40297abc43412b321da449c6816020e4fa6625ab079fc90a5"; 3438 + }; 3439 + buildInputs = [ TestMost TestWarn TestException TestDeep TestDifferences ModulePluggable ]; 3440 + propagatedBuildInputs = [ ClassAccessor ClassDataInheritable ]; 3441 + meta = { 3442 + description = "An easy-to-use and comprehensive named-color library"; 3443 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 3444 + }; 3445 }; 3446 3447 CommandRunner = buildPerlModule { ··· 4972 meta = { 4973 description = "Pretty printing of data structures"; 4974 license = with lib.licenses; [ artistic1 gpl1Plus ]; 4975 + }; 4976 + }; 4977 + 4978 + DataDumperAutoEncode = buildPerlModule { 4979 + pname = "Data-Dumper-AutoEncode"; 4980 + version = "1.00"; 4981 + src = fetchurl { 4982 + url = "mirror://cpan/authors/id/B/BA/BAYASHI/Data-Dumper-AutoEncode-1.00.tar.gz"; 4983 + sha256 = "2d9a0262ad443d321dc489ef6dfa7b3eed11a2708a75d397d371bb2585e5eca1"; 4984 + }; 4985 + buildInputs = [ ModuleBuildPluggable ModuleBuildPluggableCPANfile ]; 4986 + propagatedBuildInputs = [ IOInteractiveTiny ]; 4987 + meta = { 4988 + description = "Dump with recursive encoding"; 4989 + license = lib.licenses.artistic2; 4990 }; 4991 }; 4992 ··· 6619 }; 6620 }; 6621 6622 + DevelSize = buildPerlPackage { 6623 + pname = "Devel-Size"; 6624 + version = "0.83"; 6625 + src = fetchurl { 6626 + url = "mirror://cpan/authors/id/N/NW/NWCLARK/Devel-Size-0.83.tar.gz"; 6627 + sha256 = "757a67e0aa59ae103ea5ca092cbecc025644ebdc326731688ffab6f8823ef4b3"; 6628 + }; 6629 + meta = { 6630 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 6631 + }; 6632 + }; 6633 + 6634 DevelStackTraceAsHTML = buildPerlPackage { 6635 pname = "Devel-StackTrace-AsHTML"; 6636 version = "0.15"; ··· 7602 }; 7603 }; 7604 7605 + EncodePunycode = buildPerlPackage { 7606 + pname = "Encode-Punycode"; 7607 + version = "1.002"; 7608 + src = fetchurl { 7609 + url = "mirror://cpan/authors/id/C/CF/CFAERBER/Encode-Punycode-1.002.tar.gz"; 7610 + sha256 = "ca3aceecdb80b5d45aa10e1cde8fec4e90b4f8c9189c7504dd8658f071f77194"; 7611 + }; 7612 + buildInputs = [ TestNoWarnings ]; 7613 + propagatedBuildInputs = [ NetIDNEncode ]; 7614 + meta = { 7615 + homepage = "http://search.cpan.org/dist/Encode-Punycode"; 7616 + description = "Encode plugin for Punycode (RFC 3492)"; 7617 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 7618 + }; 7619 + }; 7620 + 7621 enum = buildPerlPackage { 7622 pname = "enum"; 7623 version = "1.11"; ··· 7703 }; 7704 }; 7705 7706 + ExcelWriterXLSX = buildPerlPackage { 7707 + pname = "Excel-Writer-XLSX"; 7708 + version = "1.09"; 7709 + src = fetchurl { 7710 + url = "mirror://cpan/authors/id/J/JM/JMCNAMARA/Excel-Writer-XLSX-1.09.tar.gz"; 7711 + sha256 = "d679c6ac19e93c32ab77594c793e41b948c7bb3873b600e70ad637d093dca187"; 7712 + }; 7713 + propagatedBuildInputs = [ ArchiveZip ]; 7714 + meta = { 7715 + homepage = "http://jmcnamara.github.com/excel-writer-xlsx/"; 7716 + description = "Create a new file in the Excel 2007+ XLSX format"; 7717 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 7718 + }; 7719 + }; 7720 + 7721 ExceptionBase = buildPerlModule { 7722 pname = "Exception-Base"; 7723 version = "0.2501"; ··· 8210 }; 8211 meta = { 8212 description = "Run many filetest checks on a tree"; 8213 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 8214 + }; 8215 + }; 8216 + 8217 + Filechmod = buildPerlPackage { 8218 + pname = "File-chmod"; 8219 + version = "0.42"; 8220 + src = fetchurl { 8221 + url = "mirror://cpan/authors/id/X/XE/XENO/File-chmod-0.42.tar.gz"; 8222 + sha256 = "6cafafff68bc84215168b55ede0d191dcb57f9a3201b51d61edb2858a2407795"; 8223 + }; 8224 + meta = { 8225 + homepage = "https://metacpan.org/dist/File-chmod"; 8226 + description = "Implements symbolic and ls chmod modes"; 8227 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 8228 + }; 8229 + }; 8230 + 8231 + FilechmodRecursive = buildPerlPackage { 8232 + pname = "File-chmod-Recursive"; 8233 + version = "1.0.3"; 8234 + src = fetchurl { 8235 + url = "mirror://cpan/authors/id/M/MI/MITHUN/File-chmod-Recursive-v1.0.3.tar.gz"; 8236 + sha256 = "9348ca5c5b88deadcc483b9399ef7c2e0fc2504f9058db65f3c3c53c41139aa7"; 8237 + }; 8238 + propagatedBuildInputs = [ Filechmod ]; 8239 + meta = { 8240 + homepage = "https://github.com/mithun/perl-file-chmod-recursive"; 8241 + description = "Run chmod recursively against directories"; 8242 license = with lib.licenses; [ artistic1 gpl1Plus ]; 8243 }; 8244 }; ··· 9481 }; 9482 }; 9483 9484 + GraphicsColor = buildPerlPackage { 9485 + pname = "Graphics-Color"; 9486 + version = "0.31"; 9487 + src = fetchurl { 9488 + url = "mirror://cpan/authors/id/G/GP/GPHAT/Graphics-Color-0.31.tar.gz"; 9489 + sha256 = "faa8fed5b2d80e5160af976e5db2242c0b3555542ce1042575ff6b694587a33d"; 9490 + }; 9491 + buildInputs = [ TestNumberDelta ModulePluggable ]; 9492 + propagatedBuildInputs = [ ColorLibrary Moose MooseXAliases MooseXClone MooseXStorage MooseXTypes ]; 9493 + meta = { 9494 + homepage = "https://github.com/gphat/graphics-color"; 9495 + description = "Device and library agnostic color spaces"; 9496 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 9497 + }; 9498 + }; 9499 + 9500 GraphicsTIFF = buildPerlPackage { 9501 pname = "Graphics-TIFF"; 9502 version = "16"; ··· 10793 }; 10794 }; 10795 10796 + ImageOCRTesseract = buildPerlPackage { 10797 + pname = "Image-OCR-Tesseract"; 10798 + version = "1.26"; 10799 + src = fetchurl { 10800 + url = "mirror://cpan/authors/id/L/LE/LEOCHARRE/Image-OCR-Tesseract-1.26.tar.gz"; 10801 + sha256 = "98d904266a7062f09c9b46f77c4e94529e1fe99339e3f83fda1f92013f007cea"; 10802 + }; 10803 + nativeBuildInputs = [ pkgs.which pkgs.makeWrapper pkgs.tesseract pkgs.imagemagick ]; 10804 + propagatedBuildInputs = [ FileFindRule FileWhich LEOCHARRECLI StringShellQuote ]; 10805 + postPatch = '' 10806 + substituteInPlace lib/Image/OCR/Tesseract.pm \ 10807 + --replace "which('tesseract')" "\"${pkgs.tesseract}/bin/tesseract\"" \ 10808 + --replace "which('convert')" "\"${pkgs.imagemagick}/bin/convert"\" 10809 + ''; 10810 + postInstall = '' 10811 + wrapProgram $out/bin/ocr --prefix PATH : ${lib.makeBinPath [ pkgs.tesseract pkgs.imagemagick ]} 10812 + ''; 10813 + meta = { 10814 + description = "Read an image with tesseract ocr and get output"; 10815 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 10816 + }; 10817 + }; 10818 + 10819 IMAPClient = buildPerlPackage { 10820 pname = "IMAP-Client"; 10821 version = "0.13"; ··· 11020 meta = { 11021 description = "Utilities for interactive I/O"; 11022 license = with lib.licenses; [ artistic1 gpl1Plus ]; 11023 + }; 11024 + }; 11025 + 11026 + IOInteractiveTiny = buildPerlPackage { 11027 + pname = "IO-Interactive-Tiny"; 11028 + version = "0.2"; 11029 + src = fetchurl { 11030 + url = "mirror://cpan/authors/id/D/DM/DMUEY/IO-Interactive-Tiny-0.2.tar.gz"; 11031 + sha256 = "45c0696505c7e4347845f5cd2512b7b1bc78fbce4cbed2b58008283fc95ea5f9"; 11032 + }; 11033 + meta = { 11034 + description = "Is_interactive() without large deps"; 11035 + license = lib.licenses.artistic2; 11036 }; 11037 }; 11038 ··· 11505 buildInputs = [ TestFatal TestRequires TestWarnings TestWithoutModule ]; 11506 }; 11507 11508 + JSONCreate = buildPerlPackage { 11509 + pname = "JSON-Create"; 11510 + version = "0.35"; 11511 + src = fetchurl { 11512 + url = "mirror://cpan/authors/id/B/BK/BKB/JSON-Create-0.35.tar.gz"; 11513 + sha256 = "5faefe0d833b8132568865308f3239d3cdaa1b8a1ecc9b5624dcf1efbe10683e"; 11514 + }; 11515 + propagatedBuildInputs = [ JSONParse UnicodeUTF8 ]; 11516 + meta = { 11517 + description = "Create JSON"; 11518 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 11519 + }; 11520 + }; 11521 + 11522 JSONMaybeXS = buildPerlPackage { 11523 pname = "JSON-MaybeXS"; 11524 version = "1.004003"; ··· 11561 11562 JSONParse = buildPerlPackage { 11563 pname = "JSON-Parse"; 11564 + version = "0.61"; 11565 src = fetchurl { 11566 + url = "mirror://cpan/authors/id/B/BK/BKB/JSON-Parse-0.61.tar.gz"; 11567 + sha256 = "ce8e55e70bef9bcbba2e96af631d10a605900961a22cad977e71aab56c3f2806"; 11568 }; 11569 meta = { 11570 description = "Read JSON into a Perl variable"; ··· 11683 }; 11684 }; 11685 11686 + LEOCHARRECLI = buildPerlPackage { 11687 + pname = "LEOCHARRE-CLI"; 11688 + version = "1.19"; 11689 + src = fetchurl { 11690 + url = "mirror://cpan/authors/id/L/LE/LEOCHARRE/LEOCHARRE-CLI-1.19.tar.gz"; 11691 + sha256 = "37835f11ee35326241b4d30368ae1bc195a50414b3662db3e13b865bd52fcde9"; 11692 + }; 11693 + propagatedBuildInputs = [ FileWhich Filechmod LEOCHARREDebug Linuxusermod YAML ]; 11694 + meta = { 11695 + description = "Useful subs for coding cli scripts"; 11696 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 11697 + }; 11698 + }; 11699 + 11700 + LEOCHARREDebug = buildPerlPackage { 11701 + pname = "LEOCHARRE-Debug"; 11702 + version = "1.03"; 11703 + src = fetchurl { 11704 + url = "mirror://cpan/authors/id/L/LE/LEOCHARRE/LEOCHARRE-Debug-1.03.tar.gz"; 11705 + sha256 = "c1665aa3abd457cc8624b8c418c6f8bdf58fb3a686f8eed515cf7e93514df192"; 11706 + }; 11707 + meta = { 11708 + description = "Debug sub"; 11709 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 11710 + }; 11711 + }; 11712 + 11713 libapreq2 = buildPerlPackage { 11714 pname = "libapreq2"; 11715 version = "2.16"; ··· 12084 }; 12085 }; 12086 12087 + Linuxusermod = buildPerlPackage { 12088 + pname = "Linux-usermod"; 12089 + version = "0.69"; 12090 + src = fetchurl { 12091 + url = "mirror://cpan/authors/id/V/VI/VIDUL/Linux-usermod-0.69.tar.gz"; 12092 + sha256 = "97ca186a3c416bf69ed62da046f1a60d88d89b8e6ed25008b2f96e787dee9d60"; 12093 + }; 12094 + meta = { 12095 + description = "This module adds, removes and modify user and group accounts according to the passwd and shadow files syntax"; 12096 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 12097 + platforms = lib.platforms.linux; 12098 + }; 12099 + }; 12100 + 12101 ListAllUtils = buildPerlPackage { 12102 pname = "List-AllUtils"; 12103 version = "0.18"; ··· 12214 sha256 = "05cwqjxxary11di03gg3fm6j9lbvg1dr2wpr311c1rwp8salg7ch"; 12215 }; 12216 LANG="C"; 12217 + }; 12218 + 12219 + LocaleMaketextLexiconGetcontext = buildPerlPackage { 12220 + pname = "Locale-Maketext-Lexicon-Getcontext"; 12221 + version = "0.05"; 12222 + src = fetchurl { 12223 + url = "mirror://cpan/authors/id/S/SA/SAPER/Locale-Maketext-Lexicon-Getcontext-0.05.tar.gz"; 12224 + sha256 = "75cb33df9472a5962de54082f42c6a76b260fc405ba10ca53246fb1f82c09208"; 12225 + }; 12226 + propagatedBuildInputs = [ LocaleMaketextLexicon ]; 12227 + meta = { 12228 + description = "PO file parser for Maketext"; 12229 + license = lib.licenses.mit; 12230 + }; 12231 }; 12232 12233 LocaleMOFile = buildPerlPackage { ··· 12423 description = "Log::Any adapter for Log::Log4perl"; 12424 license = with lib.licenses; [ artistic1 gpl1Plus ]; 12425 homepage = "https://github.com/preaction/Log-Any-Adapter-Log4perl"; 12426 + }; 12427 + }; 12428 + 12429 + LogAnyAdapterTAP = buildPerlPackage { 12430 + pname = "Log-Any-Adapter-TAP"; 12431 + version = "0.003003"; 12432 + src = fetchurl { 12433 + url = "mirror://cpan/authors/id/N/NE/NERDVANA/Log-Any-Adapter-TAP-0.003003.tar.gz"; 12434 + sha256 = "131f0689b2b42b1b31449714c6eda8f811dd96a7c86748f1e03b239cfd0121c0"; 12435 + }; 12436 + propagatedBuildInputs = [ LogAny TryTiny ]; 12437 + meta = { 12438 + homepage = "https://github.com/silverdirk/perl-Log-Any-Adapter-TAP"; 12439 + description = "Logger suitable for use with TAP test files"; 12440 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 12441 }; 12442 }; 12443 ··· 13155 }; 13156 }; 13157 13158 + MathFibonacci = buildPerlPackage { 13159 + pname = "Math-Fibonacci"; 13160 + version = "1.5"; 13161 + src = fetchurl { 13162 + url = "mirror://cpan/authors/id/V/VI/VIPUL/Math-Fibonacci-1.5.tar.gz"; 13163 + sha256 = "70a8286e94558df99dc92f52d83e1e20a7b8f7852bcc3a1de7d9e338260b99ba"; 13164 + }; 13165 + meta = { 13166 + description = "This module provides a few functions related to Fibonacci numbers"; 13167 + license = lib.licenses.artistic2; 13168 + }; 13169 + }; 13170 + 13171 MathGMP = buildPerlPackage { 13172 pname = "Math-GMP"; 13173 version = "2.20"; ··· 13875 license = with lib.licenses; [ artistic1 gpl1Plus ]; 13876 }; 13877 buildInputs = [ TestSharedFork ]; 13878 + }; 13879 + 13880 + ModuleBuildPluggableCPANfile = buildPerlModule { 13881 + pname = "Module-Build-Pluggable-CPANfile"; 13882 + version = "0.05"; 13883 + src = fetchurl { 13884 + url = "mirror://cpan/authors/id/K/KA/KAZEBURO/Module-Build-Pluggable-CPANfile-0.05.tar.gz"; 13885 + sha256 = "4aec6cba240cb6e78016406b6a3a875634cc2aec08ffc5f1572da1cdc40e1e7c"; 13886 + }; 13887 + buildInputs = [ CaptureTiny TestRequires TestSharedFork ]; 13888 + propagatedBuildInputs = [ ModuleBuildPluggable ModuleCPANfile ]; 13889 + meta = { 13890 + homepage = "https://github.com/kazeburo/Module-Build-Pluggable-CPANfile"; 13891 + description = "Include cpanfile"; 13892 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 13893 + }; 13894 }; 13895 13896 ModuleBuildPluggablePPPort = buildPerlModule { ··· 14661 }; 14662 }; 14663 14664 + MongoDB = buildPerlPackage { 14665 + pname = "MongoDB"; 14666 + version = "2.2.2"; 14667 + src = fetchurl { 14668 + url = "mirror://cpan/authors/id/M/MO/MONGODB/MongoDB-v2.2.2.tar.gz"; 14669 + sha256 = "201935f92dac94f39c35de73661e8b252439e496f228657db85ff93257c3268f"; 14670 + }; 14671 + buildInputs = [ JSONMaybeXS PathTiny TestDeep TestFatal TimeMoment ]; 14672 + propagatedBuildInputs = [ AuthenSASLSASLprep AuthenSCRAM BSON IOSocketSSL NetSSLeay ClassXSAccessor BSONXS TypeTinyXS MozillaCA Moo NetDNS SafeIsa SubQuote TieIxHash TypeTiny UUIDURandom boolean namespaceclean ]; 14673 + meta = { 14674 + homepage = "https://github.com/mongodb-labs/mongo-perl-driver"; 14675 + description = "Official MongoDB Driver for Perl (EOL)"; 14676 + license = lib.licenses.asl20; 14677 + }; 14678 + }; 14679 + 14680 MonitoringPlugin = buildPerlPackage { 14681 pname = "Monitoring-Plugin"; 14682 version = "0.40"; ··· 14925 meta = { 14926 homepage = "https://github.com/moose/MooseX-App-Cmd"; 14927 description = "Mashes up MooseX::Getopt and App::Cmd"; 14928 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 14929 + }; 14930 + }; 14931 + 14932 + MooseXStorageFormatJSONpm = buildPerlPackage { 14933 + pname = "MooseX-Storage-Format-JSONpm"; 14934 + version = "0.093093"; 14935 + src = fetchurl { 14936 + url = "mirror://cpan/authors/id/R/RJ/RJBS/MooseX-Storage-Format-JSONpm-0.093093.tar.gz"; 14937 + sha256 = "ebe0407a7eb1870270e0e2579f097dfd7df2aea3307fb71f324fb69e242cc58f"; 14938 + }; 14939 + buildInputs = [ Moose TestDeepJSON TestWithoutModule DigestHMAC MooseXTypes ]; 14940 + propagatedBuildInputs = [ JSON MooseXRoleParameterized MooseXStorage namespaceautoclean ]; 14941 + meta = { 14942 + homepage = "https://github.com/rjbs/MooseX-Storage-Format-JSONpm"; 14943 + description = "A format role for MooseX::Storage using JSON.pm"; 14944 license = with lib.licenses; [ artistic1 gpl1Plus ]; 14945 }; 14946 }; ··· 15435 }; 15436 buildInputs = [ ModuleBuildTiny TestFatal TestRequires TestWarnings ]; 15437 propagatedBuildInputs = [ Moose ]; 15438 + }; 15439 + 15440 + MooseXStorage = buildPerlPackage { 15441 + pname = "MooseX-Storage"; 15442 + version = "0.53"; 15443 + src = fetchurl { 15444 + url = "mirror://cpan/authors/id/E/ET/ETHER/MooseX-Storage-0.53.tar.gz"; 15445 + sha256 = "8704bfe505f66b340f62e85c9ff319c19e9670b26d4b012c91f4e103b1daace0"; 15446 + }; 15447 + buildInputs = [ TestDeep TestDeepType TestFatal TestNeeds TestDeepJSON TestWithoutModule DigestHMAC MooseXTypes ]; 15448 + propagatedBuildInputs = [ ModuleRuntime Moose MooseXRoleParameterized PodCoverage StringRewritePrefix namespaceautoclean IOStringy JSON JSONXS JSONMaybeXS CpanelJSONXS YAML YAMLOld YAMLTiny YAMLLibYAML YAMLSyck ]; 15449 + meta = { 15450 + homepage = "https://github.com/moose/MooseX-Storage"; 15451 + description = "A serialization framework for Moose classes"; 15452 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 15453 + }; 15454 }; 15455 15456 MooseXStrictConstructor = buildPerlPackage { ··· 19556 }; 19557 }; 19558 19559 + SpreadsheetCSV = buildPerlPackage { 19560 + pname = "Spreadsheet-CSV"; 19561 + version = "0.20"; 19562 + src = fetchurl { 19563 + url = "mirror://cpan/authors/id/D/DD/DDICK/Spreadsheet-CSV-0.20.tar.gz"; 19564 + sha256 = "070bb252a8fe8b938a1ce4fc90525f833d4e619b6d4673b0ae0a23408d514ab6"; 19565 + }; 19566 + nativeBuildInputs = [ CGI ]; 19567 + propagatedBuildInputs = [ ArchiveZip SpreadsheetParseExcel TextCSV_XS XMLParser ]; 19568 + meta = { 19569 + description = "Drop-in replacement for Text::CSV_XS with spreadsheet support"; 19570 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 19571 + }; 19572 + }; 19573 + 19574 SpreadsheetParseExcel = buildPerlPackage { 19575 pname = "Spreadsheet-ParseExcel"; 19576 version = "0.65"; ··· 20590 20591 SysVirt = buildPerlModule rec { 20592 pname = "Sys-Virt"; 20593 + version = "7.8.0"; 20594 src = fetchFromGitLab { 20595 owner = "libvirt"; 20596 repo = "libvirt-perl"; 20597 + rev = "v7.8.0"; 20598 + sha256 = "sha256-D/sVIKMWy3WnDM97+ofG3ClgGhJJuK2a6NJLC03S4LI="; 20599 }; 20600 nativeBuildInputs = [ pkgs.pkg-config ]; 20601 buildInputs = [ pkgs.libvirt CPANChanges TestPod TestPodCoverage XMLXPath ]; ··· 21384 }; 21385 }; 21386 21387 + TestDeepJSON = buildPerlModule { 21388 + pname = "Test-Deep-JSON"; 21389 + version = "0.05"; 21390 + src = fetchurl { 21391 + url = "mirror://cpan/authors/id/M/MO/MOTEMEN/Test-Deep-JSON-0.05.tar.gz"; 21392 + sha256 = "aec8571b9e31b7301e26132c132c6800952dc089c645d76954a3ad1a6b350858"; 21393 + }; 21394 + buildInputs = [ ModuleBuildTiny ]; 21395 + propagatedBuildInputs = [ ExporterLite JSONMaybeXS TestDeep ]; 21396 + meta = { 21397 + homepage = "https://github.com/motemen/perl5-Test-Deep-JSON"; 21398 + description = "Compare JSON with Test::Deep"; 21399 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 21400 + }; 21401 + }; 21402 + 21403 + TestDeepType = buildPerlPackage { 21404 + pname = "Test-Deep-Type"; 21405 + version = "0.008"; 21406 + src = fetchurl { 21407 + url = "mirror://cpan/authors/id/E/ET/ETHER/Test-Deep-Type-0.008.tar.gz"; 21408 + sha256 = "6e7bea1a2f1e75319a22d1c51996ebac50ca5e3663d1bc223130887e62e959f1"; 21409 + }; 21410 + buildInputs = [ TestFatal TestNeeds ]; 21411 + propagatedBuildInputs = [ TestDeep TryTiny ]; 21412 + meta = { 21413 + homepage = "https://github.com/karenetheridge/Test-Deep-Type"; 21414 + description = "A Test::Deep plugin for validating type constraints"; 21415 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 21416 + }; 21417 + }; 21418 + 21419 TestDir = buildPerlPackage { 21420 pname = "Test-Dir"; 21421 version = "1.16"; ··· 22857 }; 22858 }; 22859 22860 + TextFuzzy = buildPerlPackage { 22861 + pname = "Text-Fuzzy"; 22862 + version = "0.29"; 22863 + src = fetchurl { 22864 + url = "mirror://cpan/authors/id/B/BK/BKB/Text-Fuzzy-0.29.tar.gz"; 22865 + sha256 = "3df5cfd2ca1a4c5ca7ff7bab3cc8d53ad2064e134cbf11004f3cf8c4b9055bff"; 22866 + }; 22867 + meta = { 22868 + description = "Partial string matching using edit distances"; 22869 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 22870 + }; 22871 + }; 22872 + 22873 TextGerman = buildPerlPackage { 22874 pname = "Text-German"; 22875 version = "0.06"; ··· 23648 }; 23649 }; 23650 23651 + TimeMoment = buildPerlPackage { 23652 + pname = "Time-Moment"; 23653 + version = "0.44"; 23654 + src = fetchurl { 23655 + url = "mirror://cpan/authors/id/C/CH/CHANSEN/Time-Moment-0.44.tar.gz"; 23656 + sha256 = "64acfa042f634fcef8dadf55e7f42ba4eaab8aaeb7d5212eb89815a31f78f6fd"; 23657 + }; 23658 + buildInputs = [ TestFatal TestNumberDelta TestRequires ]; 23659 + meta = { 23660 + description = "Represents a date and time of day with an offset from UTC"; 23661 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 23662 + }; 23663 + }; 23664 + 23665 TimeOut = buildPerlPackage { 23666 pname = "Time-Out"; 23667 version = "0.11"; ··· 23860 license = with lib.licenses; [ artistic1 gpl1Plus ]; 23861 }; 23862 buildInputs = [ TestMemoryCycle ]; 23863 + }; 23864 + 23865 + TypeTinyXS = buildPerlPackage { 23866 + pname = "Type-Tiny-XS"; 23867 + version = "0.022"; 23868 + src = fetchurl { 23869 + url = "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-0.022.tar.gz"; 23870 + sha256 = "bcc34a31f7dc1d30cc803889b5c8f90e4773b73b5becbdb3860f5abe7e22ff00"; 23871 + }; 23872 + meta = { 23873 + homepage = "https://metacpan.org/release/Type-Tiny-XS"; 23874 + description = "Provides an XS boost for some of Type::Tiny's built-in type constraints"; 23875 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 23876 + }; 23877 }; 23878 23879 TypesSerialiser = buildPerlPackage { ··· 24192 }; 24193 }; 24194 24195 + UUIDURandom = buildPerlPackage { 24196 + pname = "UUID-URandom"; 24197 + version = "0.001"; 24198 + src = fetchurl { 24199 + url = "mirror://cpan/authors/id/D/DA/DAGOLDEN/UUID-URandom-0.001.tar.gz"; 24200 + sha256 = "3f13631b13b9604fb489e2989490c99f103743a837239bdafae9d6baf55f8f46"; 24201 + }; 24202 + propagatedBuildInputs = [ CryptURandom ]; 24203 + meta = { 24204 + homepage = "https://github.com/dagolden/UUID-URandom"; 24205 + description = "UUIDs based on /dev/urandom or the Windows Crypto API"; 24206 + license = lib.licenses.asl20; 24207 + }; 24208 + }; 24209 + 24210 VariableMagic = buildPerlPackage { 24211 pname = "Variable-Magic"; 24212 version = "0.62"; ··· 24553 }; 24554 }; 24555 24556 + XMLEncoding = buildPerlPackage { 24557 + pname = "XML-Encoding"; 24558 + version = "2.11"; 24559 + src = fetchurl { 24560 + url = "mirror://cpan/authors/id/S/SH/SHAY/XML-Encoding-2.11.tar.gz"; 24561 + sha256 = "a50e41af0a79b882d48816b95681f38a55af1e6a88828dcd96374a8bde2305a1"; 24562 + }; 24563 + propagatedBuildInputs = [ XMLParser ]; 24564 + meta = { 24565 + description = "A perl module for parsing XML encoding maps"; 24566 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 24567 + }; 24568 + }; 24569 + 24570 XMLDOM = buildPerlPackage { 24571 pname = "XML-DOM"; 24572 version = "1.46"; ··· 24814 }; 24815 }; 24816 24817 + XMLRules = buildPerlModule { 24818 + pname = "XML-Rules"; 24819 + version = "1.16"; 24820 + src = fetchurl { 24821 + url = "mirror://cpan/authors/id/J/JE/JENDA/XML-Rules-1.16.tar.gz"; 24822 + sha256 = "3788255c07afe4195a0de72ce050652320d817528ff2d10c611f6e392043868b"; 24823 + }; 24824 + propagatedBuildInputs = [ XMLParser ]; 24825 + meta = { 24826 + description = 24827 + "Parse XML and specify what and how to keep/process for individual tags"; 24828 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 24829 + }; 24830 + }; 24831 + 24832 XMLSAX = buildPerlPackage { 24833 pname = "XML-SAX"; 24834 version = "1.02"; ··· 25046 meta = { 25047 homepage = "https://github.com/ingydotnet/yaml-pm"; 25048 description = "YAML Ain't Markup Language (tm)"; 25049 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 25050 + }; 25051 + }; 25052 + 25053 + YAMLOld = buildPerlPackage { 25054 + pname = "YAML-Old"; 25055 + version = "1.23"; 25056 + src = fetchurl { 25057 + url = "mirror://cpan/authors/id/I/IN/INGY/YAML-Old-1.23.tar.gz"; 25058 + sha256 = "fa546fcd9acc5a39bc8871902f7fc1eba50e7dc781c5cd5c0abf1aece6d17ecd"; 25059 + }; 25060 + buildInputs = [ TestYAML TestBase ]; 25061 + meta = { 25062 + homepage = "https://github.com/ingydotnet/yaml-old-pm"; 25063 + description = "Old YAML.pm Legacy Code"; 25064 license = with lib.licenses; [ artistic1 gpl1Plus ]; 25065 }; 25066 };
+1 -1
pkgs/top-level/release-haskell.nix
··· 305 # package sets (like Cabal, jailbreak-cabal) are 306 # working as expected. 307 cabal-install = all; 308 - Cabal_3_6_1_0 = with compilerNames; [ ghc884 ghc8107 ghc901 ghc921 ]; 309 cabal2nix-unstable = all; 310 funcmp = all; 311 haskell-language-server = all;
··· 305 # package sets (like Cabal, jailbreak-cabal) are 306 # working as expected. 307 cabal-install = all; 308 + Cabal_3_6_2_0 = with compilerNames; [ ghc884 ghc8107 ghc901 ghc921 ]; 309 cabal2nix-unstable = all; 310 funcmp = all; 311 haskell-language-server = all;