nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge master into haskell-updates

authored by

github-actions[bot] and committed by
GitHub
95f07a60 0fe7b54b

+2689 -2145
+6 -17
lib/strings.nix
··· 328 328 escape ["(" ")"] "(foo)" 329 329 => "\\(foo\\)" 330 330 */ 331 - escape = list: replaceChars list (map (c: "\\${c}") list); 331 + escape = list: replaceStrings list (map (c: "\\${c}") list); 332 332 333 333 /* Escape occurence of the element of `list` in `string` by 334 334 converting to its ASCII value and prefixing it with \\x. ··· 341 341 => "foo\\x20bar" 342 342 343 343 */ 344 - escapeC = list: replaceChars list (map (c: "\\x${ toLower (lib.toHexString (charToInt c))}") list); 344 + escapeC = list: replaceStrings list (map (c: "\\x${ toLower (lib.toHexString (charToInt c))}") list); 345 345 346 346 /* Quote string to be used safely within the Bourne shell. 347 347 ··· 471 471 ["\"" "'" "<" ">" "&"] 472 472 ["&quot;" "&apos;" "&lt;" "&gt;" "&amp;"]; 473 473 474 - # Obsolete - use replaceStrings instead. 475 - replaceChars = builtins.replaceStrings or ( 476 - del: new: s: 477 - let 478 - substList = lib.zipLists del new; 479 - subst = c: 480 - let found = lib.findFirst (sub: sub.fst == c) null substList; in 481 - if found == null then 482 - c 483 - else 484 - found.snd; 485 - in 486 - stringAsChars subst s); 474 + # warning added 12-12-2022 475 + replaceChars = lib.warn "replaceChars is a deprecated alias of replaceStrings, replace usages of it with replaceStrings." builtins.replaceStrings; 487 476 488 477 # Case conversion utilities. 489 478 lowerChars = stringToCharacters "abcdefghijklmnopqrstuvwxyz"; ··· 486 497 toLower "HOME" 487 498 => "home" 488 499 */ 489 - toLower = replaceChars upperChars lowerChars; 500 + toLower = replaceStrings upperChars lowerChars; 490 501 491 502 /* Converts an ASCII string to upper-case. 492 503 ··· 496 507 toUpper "home" 497 508 => "HOME" 498 509 */ 499 - toUpper = replaceChars lowerChars upperChars; 510 + toUpper = replaceStrings lowerChars upperChars; 500 511 501 512 /* Appends string context from another string. This is an implementation 502 513 detail of Nix and should be used carefully.
+3 -3
nixos/lib/systemd-lib.nix
··· 8 8 systemd = cfg.package; 9 9 in rec { 10 10 11 - shellEscape = s: (replaceChars [ "\\" ] [ "\\\\" ] s); 11 + shellEscape = s: (replaceStrings [ "\\" ] [ "\\\\" ] s); 12 12 13 - mkPathSafeName = lib.replaceChars ["@" ":" "\\" "[" "]"] ["-" "-" "-" "" ""]; 13 + mkPathSafeName = lib.replaceStrings ["@" ":" "\\" "[" "]"] ["-" "-" "-" "" ""]; 14 14 15 15 # a type for options that take a unit name 16 16 unitNameType = types.strMatching "[a-zA-Z0-9@%:_.\\-]+[.](service|socket|device|mount|automount|swap|target|path|timer|scope|slice)"; ··· 258 258 259 259 makeJobScript = name: text: 260 260 let 261 - scriptName = replaceChars [ "\\" "@" ] [ "-" "_" ] (shellEscape name); 261 + scriptName = replaceStrings [ "\\" "@" ] [ "-" "_" ] (shellEscape name); 262 262 out = (pkgs.writeShellScriptBin scriptName '' 263 263 set -e 264 264 ${text}
+3 -3
nixos/lib/utils.nix
··· 48 48 trim = s: removeSuffix "/" (removePrefix "/" s); 49 49 normalizedPath = strings.normalizePath s; 50 50 in 51 - replaceChars ["/"] ["-"] 51 + replaceStrings ["/"] ["-"] 52 52 (replacePrefix "." (strings.escapeC ["."] ".") 53 53 (strings.escapeC (stringToCharacters " !\"#$%&'()*+,;<=>=@[\\]^`{|}~-") 54 54 (if normalizedPath == "/" then normalizedPath else trim normalizedPath))); ··· 67 67 else if builtins.isInt arg || builtins.isFloat arg then toString arg 68 68 else throw "escapeSystemdExecArg only allows strings, paths and numbers"; 69 69 in 70 - replaceChars [ "%" "$" ] [ "%%" "$$" ] (builtins.toJSON s); 70 + replaceStrings [ "%" "$" ] [ "%%" "$$" ] (builtins.toJSON s); 71 71 72 72 # Quotes a list of arguments into a single string for use in a Exec* 73 73 # line. ··· 112 112 else if isAttrs item then 113 113 map (name: 114 114 let 115 - escapedName = ''"${replaceChars [''"'' "\\"] [''\"'' "\\\\"] name}"''; 115 + escapedName = ''"${replaceStrings [''"'' "\\"] [''\"'' "\\\\"] name}"''; 116 116 in 117 117 recurse (prefix + "." + escapedName) item.${name}) (attrNames item) 118 118 else if isList item then
+1 -1
nixos/modules/config/swap.nix
··· 160 160 config = rec { 161 161 device = mkIf options.label.isDefined 162 162 "/dev/disk/by-label/${config.label}"; 163 - deviceName = lib.replaceChars ["\\"] [""] (escapeSystemdPath config.device); 163 + deviceName = lib.replaceStrings ["\\"] [""] (escapeSystemdPath config.device); 164 164 realDevice = if config.randomEncryption.enable then "/dev/mapper/${deviceName}" else config.device; 165 165 }; 166 166
+1 -1
nixos/modules/programs/xfs_quota.nix
··· 94 94 ''; 95 95 96 96 wantedBy = [ "multi-user.target" ]; 97 - after = [ ((replaceChars [ "/" ] [ "-" ] opts.fileSystem) + ".mount") ]; 97 + after = [ ((replaceStrings [ "/" ] [ "-" ] opts.fileSystem) + ".mount") ]; 98 98 99 99 restartTriggers = [ config.environment.etc.projects.source ]; 100 100
+1 -1
nixos/modules/services/mail/listmonk.nix
··· 8 8 # Escaping is done according to https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-CONSTANTS 9 9 setDatabaseOption = key: value: 10 10 "UPDATE settings SET value = '${ 11 - lib.replaceChars [ "'" ] [ "''" ] (builtins.toJSON value) 11 + lib.replaceStrings [ "'" ] [ "''" ] (builtins.toJSON value) 12 12 }' WHERE key = '${key}';"; 13 13 updateDatabaseConfigSQL = pkgs.writeText "update-database-config.sql" 14 14 (concatStringsSep "\n" (mapAttrsToList setDatabaseOption
+13 -5
nixos/modules/services/monitoring/prometheus/default.nix
··· 3 3 with lib; 4 4 5 5 let 6 - json = pkgs.formats.json { }; 6 + yaml = pkgs.formats.yaml { }; 7 7 cfg = config.services.prometheus; 8 8 checkConfigEnabled = 9 9 (lib.isBool cfg.checkConfig && cfg.checkConfig) 10 10 || cfg.checkConfig == "syntax-only"; 11 11 12 12 workingDir = "/var/lib/" + cfg.stateDir; 13 - 14 - prometheusYmlOut = "${workingDir}/prometheus-substituted.yaml"; 15 13 16 14 triggerReload = pkgs.writeShellScriptBin "trigger-reload-prometheus" '' 17 15 PATH="${makeBinPath (with pkgs; [ systemd ])}" ··· 36 38 promtool ${what} $out 37 39 '' else file; 38 40 39 - generatedPrometheusYml = json.generate "prometheus.yml" promConfig; 41 + generatedPrometheusYml = yaml.generate "prometheus.yml" promConfig; 40 42 41 43 # This becomes the main config file for Prometheus 42 44 promConfig = { ··· 71 73 "--web.listen-address=${cfg.listenAddress}:${builtins.toString cfg.port}" 72 74 "--alertmanager.notification-queue-capacity=${toString cfg.alertmanagerNotificationQueueCapacity}" 73 75 ] ++ optional (cfg.webExternalUrl != null) "--web.external-url=${cfg.webExternalUrl}" 74 - ++ optional (cfg.retentionTime != null) "--storage.tsdb.retention.time=${cfg.retentionTime}"; 76 + ++ optional (cfg.retentionTime != null) "--storage.tsdb.retention.time=${cfg.retentionTime}" 77 + ++ optional (cfg.webConfigFile != null) "--web.config.file=${cfg.webConfigFile}"; 75 78 76 79 filterValidPrometheus = filterAttrsListRecursive (n: v: !(n == "_module" || v == null)); 77 80 filterAttrsListRecursive = pred: x: ··· 1715 1716 description = lib.mdDoc '' 1716 1717 The URL under which Prometheus is externally reachable (for example, 1717 1718 if Prometheus is served via a reverse proxy). 1719 + ''; 1720 + }; 1721 + 1722 + webConfigFile = mkOption { 1723 + type = types.nullOr types.path; 1724 + default = null; 1725 + description = lib.mdDoc '' 1726 + Specifies which file should be used as web.config.file and be passed on startup. 1727 + See https://prometheus.io/docs/prometheus/latest/configuration/https/ for valid options. 1718 1728 ''; 1719 1729 }; 1720 1730
+3 -3
nixos/modules/services/networking/supplicant.nix
··· 13 13 serviceName = iface: "supplicant-${if (iface=="WLAN") then "wlan@" else ( 14 14 if (iface=="LAN") then "lan@" else ( 15 15 if (iface=="DBUS") then "dbus" 16 - else (replaceChars [" "] ["-"] iface)))}"; 16 + else (replaceStrings [" "] ["-"] iface)))}"; 17 17 18 18 # TODO: Use proper privilege separation for wpa_supplicant 19 19 supplicantService = iface: suppl: ··· 27 27 driverArg = optionalString (suppl.driver != null) "-D${suppl.driver}"; 28 28 bridgeArg = optionalString (suppl.bridge!="") "-b${suppl.bridge}"; 29 29 confFileArg = optionalString (suppl.configFile.path!=null) "-c${suppl.configFile.path}"; 30 - extraConfFile = pkgs.writeText "supplicant-extra-conf-${replaceChars [" "] ["-"] iface}" '' 30 + extraConfFile = pkgs.writeText "supplicant-extra-conf-${replaceStrings [" "] ["-"] iface}" '' 31 31 ${optionalString suppl.userControlled.enable "ctrl_interface=DIR=${suppl.userControlled.socketDir} GROUP=${suppl.userControlled.group}"} 32 32 ${optionalString suppl.configFile.writable "update_config=1"} 33 33 ${suppl.extraConf} ··· 223 223 text = '' 224 224 ${flip (concatMapStringsSep "\n") (filter (n: n!="WLAN" && n!="LAN" && n!="DBUS") (attrNames cfg)) (iface: 225 225 flip (concatMapStringsSep "\n") (splitString " " iface) (i: '' 226 - ACTION=="add", SUBSYSTEM=="net", ENV{INTERFACE}=="${i}", TAG+="systemd", ENV{SYSTEMD_WANTS}+="supplicant-${replaceChars [" "] ["-"] iface}.service", TAG+="SUPPLICANT_ASSIGNED"''))} 226 + ACTION=="add", SUBSYSTEM=="net", ENV{INTERFACE}=="${i}", TAG+="systemd", ENV{SYSTEMD_WANTS}+="supplicant-${replaceStrings [" "] ["-"] iface}.service", TAG+="SUPPLICANT_ASSIGNED"''))} 227 227 228 228 ${optionalString (hasAttr "WLAN" cfg) '' 229 229 ACTION=="add", SUBSYSTEM=="net", ENV{DEVTYPE}=="wlan", TAG!="SUPPLICANT_ASSIGNED", TAG+="systemd", PROGRAM="/run/current-system/systemd/bin/systemd-escape -p %E{INTERFACE}", ENV{SYSTEMD_WANTS}+="supplicant-wlan@$result.service"
+1 -1
nixos/modules/services/networking/wireguard.nix
··· 315 315 316 316 peerUnitServiceName = interfaceName: publicKey: dynamicRefreshEnabled: 317 317 let 318 - keyToUnitName = replaceChars 318 + keyToUnitName = replaceStrings 319 319 [ "/" "-" " " "+" "=" ] 320 320 [ "-" "\\x2d" "\\x20" "\\x2b" "\\x3d" ]; 321 321 unitName = keyToUnitName publicKey;
+1 -1
nixos/modules/system/boot/loader/grub/grub.nix
··· 38 38 grubConfig = args: 39 39 let 40 40 efiSysMountPoint = if args.efiSysMountPoint == null then args.path else args.efiSysMountPoint; 41 - efiSysMountPoint' = replaceChars [ "/" ] [ "-" ] efiSysMountPoint; 41 + efiSysMountPoint' = replaceStrings [ "/" ] [ "-" ] efiSysMountPoint; 42 42 in 43 43 pkgs.writeText "grub-config.xml" (builtins.toXML 44 44 { splashImage = f cfg.splashImage;
+3 -3
nixos/modules/tasks/network-interfaces.nix
··· 1377 1377 # networkmanager falls back to "/proc/sys/net/ipv6/conf/default/use_tempaddr" 1378 1378 "net.ipv6.conf.default.use_tempaddr" = tempaddrValues.${cfg.tempAddresses}.sysctl; 1379 1379 } // listToAttrs (forEach interfaces 1380 - (i: nameValuePair "net.ipv4.conf.${replaceChars ["."] ["/"] i.name}.proxy_arp" i.proxyARP)) 1380 + (i: nameValuePair "net.ipv4.conf.${replaceStrings ["."] ["/"] i.name}.proxy_arp" i.proxyARP)) 1381 1381 // listToAttrs (forEach interfaces 1382 1382 (i: let 1383 1383 opt = i.tempAddress; 1384 1384 val = tempaddrValues.${opt}.sysctl; 1385 - in nameValuePair "net.ipv6.conf.${replaceChars ["."] ["/"] i.name}.use_tempaddr" val)); 1385 + in nameValuePair "net.ipv6.conf.${replaceStrings ["."] ["/"] i.name}.use_tempaddr" val)); 1386 1386 1387 1387 security.wrappers = { 1388 1388 ping = { ··· 1495 1495 in 1496 1496 '' 1497 1497 # override to ${msg} for ${i.name} 1498 - ACTION=="add", SUBSYSTEM=="net", RUN+="${pkgs.procps}/bin/sysctl net.ipv6.conf.${replaceChars ["."] ["/"] i.name}.use_tempaddr=${val}" 1498 + ACTION=="add", SUBSYSTEM=="net", RUN+="${pkgs.procps}/bin/sysctl net.ipv6.conf.${replaceStrings ["."] ["/"] i.name}.use_tempaddr=${val}" 1499 1499 '') (filter (i: i.tempAddress != cfg.tempAddresses) interfaces); 1500 1500 }) 1501 1501 ] ++ lib.optional (cfg.wlanInterfaces != {})
+1 -1
nixos/tests/installer.nix
··· 57 57 58 58 hardware.enableAllFirmware = lib.mkForce false; 59 59 60 - ${replaceChars ["\n"] ["\n "] extraConfig} 60 + ${replaceStrings ["\n"] ["\n "] extraConfig} 61 61 } 62 62 ''; 63 63
+2 -2
nixos/tests/prometheus-exporters.nix
··· 6 6 let 7 7 inherit (import ../lib/testing-python.nix { inherit system pkgs; }) makeTest; 8 8 inherit (pkgs.lib) concatStringsSep maintainers mapAttrs mkMerge 9 - removeSuffix replaceChars singleton splitString; 9 + removeSuffix replaceStrings singleton splitString; 10 10 11 11 /* 12 12 * The attrset `exporterTests` contains one attribute ··· 182 182 enable = true; 183 183 extraFlags = [ "--web.collectd-push-path /collectd" ]; 184 184 }; 185 - exporterTest = let postData = replaceChars [ "\n" ] [ "" ] '' 185 + exporterTest = let postData = replaceStrings [ "\n" ] [ "" ] '' 186 186 [{ 187 187 "values":[23], 188 188 "dstypes":["gauge"],
+1 -1
pkgs/applications/audio/munt/libmt32emu.nix
··· 11 11 src = fetchFromGitHub { 12 12 owner = "munt"; 13 13 repo = "munt"; 14 - rev = "${pname}_${lib.replaceChars [ "." ] [ "_" ] version}"; 14 + rev = "${pname}_${lib.replaceStrings [ "." ] [ "_" ] version}"; 15 15 sha256 = "sha256-XGds9lDfSiY0D8RhYG4TGyjYEVvVYuAfNSv9+VxiJEs="; 16 16 }; 17 17
+1 -1
pkgs/applications/audio/munt/mt32emu-qt.nix
··· 14 14 }: 15 15 16 16 let 17 - char2underscore = char: str: lib.replaceChars [ char ] [ "_" ] str; 17 + char2underscore = char: str: lib.replaceStrings [ char ] [ "_" ] str; 18 18 in 19 19 mkDerivation rec { 20 20 pname = "mt32emu-qt";
+1 -1
pkgs/applications/audio/munt/mt32emu-smf2wav.nix
··· 8 8 }: 9 9 10 10 let 11 - char2underscore = char: str: lib.replaceChars [ char ] [ "_" ] str; 11 + char2underscore = char: str: lib.replaceStrings [ char ] [ "_" ] str; 12 12 in 13 13 stdenv.mkDerivation rec { 14 14 pname = "mt32emu-smf2wav";
+1 -1
pkgs/applications/audio/qjackctl/default.nix
··· 13 13 src = fetchFromGitHub { 14 14 owner = "rncbc"; 15 15 repo = "qjackctl"; 16 - rev = "${pname}_${lib.replaceChars ["."] ["_"] version}"; 16 + rev = "${pname}_${lib.replaceStrings ["."] ["_"] version}"; 17 17 sha256 = "sha256-PchW9cM5qEP51G9RXUZ3j/AvKqTkgNiw3esqSQqsy0M="; 18 18 }; 19 19
+1 -1
pkgs/applications/audio/roomeqwizard/default.nix
··· 17 17 version = "5.20.5"; 18 18 19 19 src = fetchurl { 20 - url = "https://www.roomeqwizard.com/installers/REW_linux_${lib.replaceChars [ "." ] [ "_" ] version}.sh"; 20 + url = "https://www.roomeqwizard.com/installers/REW_linux_${lib.replaceStrings [ "." ] [ "_" ] version}.sh"; 21 21 sha256 = "NYTRiOZmwkni4k+jI2SV84z5umO7+l+eKpwPCdlDD3U="; 22 22 }; 23 23
+2 -2
pkgs/applications/audio/tauon/default.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "tauon"; 28 - version = "7.4.5"; 28 + version = "7.4.6"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "Taiko2k"; 32 32 repo = "TauonMusicBox"; 33 33 rev = "v${version}"; 34 - sha256 = "sha256-fxmCLjnYO7ZblEiRoByxuFzw9xFHqbQvne1WNcFnnwI="; 34 + sha256 = "sha256-G3DDr2ON35ctjPkRMJDjnfDHMHMhR3tlTgJ65DXvzwk="; 35 35 }; 36 36 37 37 postUnpack = ''
+1 -1
pkgs/applications/editors/jetbrains/linux.nix
··· 21 21 desktopItem = makeDesktopItem { 22 22 name = pname; 23 23 exec = pname; 24 - comment = lib.replaceChars ["\n"] [" "] meta.longDescription; 24 + comment = lib.replaceStrings ["\n"] [" "] meta.longDescription; 25 25 desktopName = product; 26 26 genericName = meta.description; 27 27 categories = [ "Development" ];
+15
pkgs/applications/editors/vscode/extensions/default.nix
··· 605 605 }; 606 606 }; 607 607 608 + bmewburn.vscode-intelephense-client = buildVscodeMarketplaceExtension { 609 + mktplcRef = { 610 + name = "vscode-intelephense-client"; 611 + publisher = "bmewburn"; 612 + version = "1.8.2"; 613 + sha256 = "OvWdDQfhprQNve017pNSksMuCK3Ccaar5Ko5Oegdiuo="; 614 + }; 615 + meta = with lib; { 616 + description = "PHP code intelligence for Visual Studio Code"; 617 + license = licenses.mit; 618 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=bmewburn.vscode-intelephense-client"; 619 + maintainers = with maintainers; [ drupol ]; 620 + }; 621 + }; 622 + 608 623 catppuccin.catppuccin-vsc = buildVscodeMarketplaceExtension { 609 624 mktplcRef = { 610 625 name = "catppuccin-vsc";
+1 -1
pkgs/applications/emulators/atari800/default.nix
··· 9 9 src = fetchFromGitHub { 10 10 owner = "atari800"; 11 11 repo = "atari800"; 12 - rev = "ATARI800_${replaceChars ["."] ["_"] version}"; 12 + rev = "ATARI800_${replaceStrings ["."] ["_"] version}"; 13 13 sha256 = "sha256-+eJXhqPyU0GhmzF7DbteTXzEnn5klCor9Io/UgXQfQg="; 14 14 }; 15 15
+1 -1
pkgs/applications/emulators/desmume/default.nix
··· 29 29 src = fetchFromGitHub { 30 30 owner = "TASVideos"; 31 31 repo = "desmume"; 32 - rev = "release_${lib.replaceChars ["."] ["_"] finalAttrs.version}"; 32 + rev = "release_${lib.replaceStrings ["."] ["_"] finalAttrs.version}"; 33 33 hash = "sha256-vmjKXa/iXLTwtqnG+ZUvOnOQPZROeMpfM5J3Jh/Ynfo="; 34 34 }; 35 35
+1 -1
pkgs/applications/emulators/retroarch/mkLibretroCore.nix
··· 16 16 }@args: 17 17 18 18 let 19 - d2u = if normalizeCore then (lib.replaceChars [ "-" ] [ "_" ]) else (x: x); 19 + d2u = if normalizeCore then (lib.replaceStrings [ "-" ] [ "_" ]) else (x: x); 20 20 coreDir = placeholder "out" + libretroCore; 21 21 coreFilename = "${d2u core}_libretro${stdenv.hostPlatform.extensions.sharedLibrary}"; 22 22 mainProgram = "retroarch-${core}";
+9 -14
pkgs/applications/emulators/vbam/default.nix
··· 5 5 , fetchpatch 6 6 , ffmpeg 7 7 , gettext 8 + , wxGTK32 9 + , gtk3 8 10 , libGLU, libGL 9 11 , openal 10 12 , pkg-config ··· 18 16 19 17 stdenv.mkDerivation rec { 20 18 pname = "visualboyadvance-m"; 21 - version = "2.1.4"; 19 + version = "2.1.5"; 22 20 src = fetchFromGitHub { 23 21 owner = "visualboyadvance-m"; 24 22 repo = "visualboyadvance-m"; 25 23 rev = "v${version}"; 26 - sha256 = "1kgpbvng3c12ws0dy92zc0azd94h0i3j4vm7b67zc8mi3pqsppdg"; 24 + sha256 = "1sc3gdn7dqkipjsvlzchgd98mia9ic11169dw8v341vr9ppb1b6m"; 27 25 }; 28 26 29 27 nativeBuildInputs = [ cmake pkg-config ]; ··· 32 30 cairo 33 31 ffmpeg 34 32 gettext 35 - libGLU libGL 33 + libGLU 34 + libGL 36 35 openal 37 36 SDL2 38 37 sfml 39 38 zip 40 39 zlib 40 + wxGTK32 41 + gtk3 41 42 ]; 42 43 43 44 cmakeFlags = [ ··· 48 43 "-DENABLE_FFMPEG='true'" 49 44 "-DENABLE_LINK='true'" 50 45 "-DSYSCONFDIR=etc" 51 - "-DENABLE_WX='false'" 52 46 "-DENABLE_SDL='true'" 53 - ]; 54 - 55 - patches = [ 56 - (fetchpatch { 57 - # https://github.com/visualboyadvance-m/visualboyadvance-m/pull/793 58 - name = "fix-build-SDL-2.0.14.patch"; 59 - url = "https://github.com/visualboyadvance-m/visualboyadvance-m/commit/619a5cce683ec4b1d03f08f316ba276d8f8cd824.patch"; 60 - sha256 = "099cbzgq4r9g83bvdra8a0swfl1vpfng120wf4q7h6vs0n102rk9"; 61 - }) 62 47 ]; 63 48 64 49 meta = with lib; { 65 50 description = "A merge of the original Visual Boy Advance forks"; 66 51 license = licenses.gpl2; 67 - maintainers = with maintainers; [ lassulus ]; 52 + maintainers = with maintainers; [ lassulus netali ]; 68 53 homepage = "https://vba-m.com/"; 69 54 platforms = lib.platforms.linux; 70 55 badPlatforms = [ "aarch64-linux" ];
+3 -3
pkgs/applications/file-managers/felix-fm/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "felix"; 12 - version = "2.2.0"; 12 + version = "2.2.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "kyoheiu"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-wc1hBHqVH/ooXqF97Ev/mVdbfS9JCrreq2n2PIg/pEs="; 18 + sha256 = "sha256-DHFQLC89ZNf6wk/L9cmEj1qSfQhqFAmQ9msYTRy0y00="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-CraJexOepja1CJnp9ngCVBWiFy84rWXzDRTWa0sxQs0="; 21 + cargoSha256 = "sha256-9AC8muMKc0eU3g4uQvWscIULNetlgEs6ZVsMr4dpwqk="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24
-2
pkgs/applications/gis/qgis/unwrapped-ltr.nix
··· 7 7 , bison 8 8 , proj 9 9 , geos 10 - , xlibsWrapper 11 10 , sqlite 12 11 , gsl 13 12 , qwt ··· 91 92 openssl 92 93 proj 93 94 geos 94 - xlibsWrapper 95 95 sqlite 96 96 gsl 97 97 qwt
-2
pkgs/applications/gis/qgis/unwrapped.nix
··· 7 7 , bison 8 8 , proj 9 9 , geos 10 - , xlibsWrapper 11 10 , sqlite 12 11 , gsl 13 12 , qwt ··· 91 92 openssl 92 93 proj 93 94 geos 94 - xlibsWrapper 95 95 sqlite 96 96 gsl 97 97 qwt
+2 -2
pkgs/applications/graphics/hugin/default.nix
··· 13 13 , fftw 14 14 , flann 15 15 , gettext 16 - , glew 16 + , glew-egl 17 17 , ilmbase 18 18 , lcms2 19 19 , lensfun ··· 56 56 fftw 57 57 flann 58 58 gettext 59 - glew 59 + glew-egl 60 60 ilmbase 61 61 lcms2 62 62 lensfun
+1
pkgs/applications/maui/default.nix
··· 78 78 nota = callPackage ./nota.nix { }; 79 79 pix = callPackage ./pix.nix { }; 80 80 shelf = callPackage ./shelf.nix { }; 81 + station = callPackage ./station.nix { }; 81 82 vvave = callPackage ./vvave.nix { }; 82 83 }; 83 84
+36
pkgs/applications/maui/station.nix
··· 1 + { lib 2 + , mkDerivation 3 + , cmake 4 + , extra-cmake-modules 5 + , kcoreaddons 6 + , ki18n 7 + , kirigami2 8 + , mauikit 9 + , mauikit-filebrowsing 10 + , qmltermwidget 11 + }: 12 + 13 + mkDerivation { 14 + pname = "station"; 15 + 16 + nativeBuildInputs = [ 17 + cmake 18 + extra-cmake-modules 19 + ]; 20 + 21 + buildInputs = [ 22 + kcoreaddons 23 + ki18n 24 + kirigami2 25 + mauikit 26 + mauikit-filebrowsing 27 + qmltermwidget 28 + ]; 29 + 30 + meta = with lib; { 31 + description = "Convergent terminal emulator"; 32 + homepage = "https://invent.kde.org/maui/station"; 33 + license = licenses.gpl3Plus; 34 + maintainers = with maintainers; [ onny ]; 35 + }; 36 + }
+1 -1
pkgs/applications/misc/sweethome3d/default.nix
··· 105 105 }; 106 106 }; 107 107 108 - d2u = lib.replaceChars ["."] ["_"]; 108 + d2u = lib.replaceStrings ["."] ["_"]; 109 109 110 110 in { 111 111
+1 -1
pkgs/applications/misc/sweethome3d/editors.nix
··· 81 81 82 82 }; 83 83 84 - d2u = lib.replaceChars ["."] ["_"]; 84 + d2u = lib.replaceStrings ["."] ["_"]; 85 85 86 86 in { 87 87
+10 -10
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 19 19 } 20 20 }, 21 21 "beta": { 22 - "version": "109.0.5414.36", 23 - "sha256": "14kicgbadb83401dpfqnz3hb3dxi55nfydj5wpmg29dyw0bdndpm", 24 - "sha256bin64": "11lpv9432xqkdj4q89sfyd0261444s9amncnzdmij93ni1wac8b4", 22 + "version": "109.0.5414.46", 23 + "sha256": "17wzll9024c80fhgxi33ix1rpmqh9sbpx6qvw9cvhdlmhn0b5017", 24 + "sha256bin64": "199n8a7pjnhbgkm2dwh9hq7pzf39x932bh6b056jqp032d5c00ns", 25 25 "deps": { 26 26 "gn": { 27 27 "version": "2022-11-10", ··· 32 32 } 33 33 }, 34 34 "dev": { 35 - "version": "110.0.5449.0", 36 - "sha256": "1zims8jw7k53qpv4kml3n15hy587jgg0sai7j4zrv3i3lk8jr6g7", 37 - "sha256bin64": "1ykgxr3jxbqdgrq6g6vzbxnig05vljzdx800j6hn3kxwr9cdqwxn", 35 + "version": "110.0.5464.2", 36 + "sha256": "18k4rrwszk4xz416xi6li9b5pdajlscfgg4cyv67y10z7f28qwby", 37 + "sha256bin64": "0hzv55bba4041400zjysgzz1n8svzvi156xyrayfr5ynapf7g2rd", 38 38 "deps": { 39 39 "gn": { 40 40 "version": "2022-11-29", ··· 45 45 } 46 46 }, 47 47 "ungoogled-chromium": { 48 - "version": "108.0.5359.99", 49 - "sha256": "0v5ynal3s28s4f9s4s95hblnjxiy6498qmk04s0vf2ixqwi7rivn", 48 + "version": "108.0.5359.125", 49 + "sha256": "0n8aigw7qv6dzd8898xz435kj79z73v916amfaxyz69g57pnpqhn", 50 50 "sha256bin64": null, 51 51 "deps": { 52 52 "gn": { ··· 56 56 "sha256": "1rhadb6qk867jafr85x2m3asis3jv7x06blhmad2d296p26d5w6x" 57 57 }, 58 58 "ungoogled-patches": { 59 - "rev": "108.0.5359.99-1", 60 - "sha256": "0qibibgi54mdwmmcmz613qk9mgjczspvq09bz5m0wpkxbx7hla0i" 59 + "rev": "108.0.5359.125-1", 60 + "sha256": "1dacvzi6j4xyjjnrsb79mhhj7jc992z1di9acl4appfydlqadgv3" 61 61 } 62 62 } 63 63 }
+2 -2
pkgs/applications/networking/sync/onedrive/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "onedrive"; 17 - version = "2.4.21"; 17 + version = "2.4.22"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "abraunegg"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - hash = "sha256-KZVRLXXaJYMqHzjxTfQaD0u7n3ACBEk3fLOmqwybNhM="; 23 + hash = "sha256-/NhZHJEu2s+HlEUb1DqRdrpvrIWrDAtle07+oXMJCdI="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ autoreconfHook ldc installShellFiles pkg-config ];
+1 -1
pkgs/applications/science/math/weka/default.nix
··· 5 5 version = "3.9.6"; 6 6 7 7 src = fetchurl { 8 - url = "mirror://sourceforge/weka/${lib.replaceChars ["."]["-"] "${pname}-${version}"}.zip"; 8 + url = "mirror://sourceforge/weka/${lib.replaceStrings ["."]["-"] "${pname}-${version}"}.zip"; 9 9 sha256 = "sha256-8fVN4MXYqXNEmyVtXh1IrauHTBZWgWG8AvsGI5Y9Aj0="; 10 10 }; 11 11
+1 -1
pkgs/applications/science/misc/openmodelica/omlibrary/fakegit.nix
··· 13 13 14 14 hashname = r: 15 15 let 16 - rpl = lib.replaceChars [ ":" "/" ] [ "_" "_" ]; 16 + rpl = lib.replaceStrings [ ":" "/" ] [ "_" "_" ]; 17 17 in 18 18 (rpl r.url) + "-" + (rpl r.rev); 19 19
+3 -3
pkgs/build-support/fetchmavenartifact/default.nix
··· 39 39 let 40 40 name_ = 41 41 lib.concatStrings [ 42 - (lib.replaceChars ["."] ["_"] groupId) "_" 43 - (lib.replaceChars ["."] ["_"] artifactId) "-" 42 + (lib.replaceStrings ["."] ["_"] groupId) "_" 43 + (lib.replaceStrings ["."] ["_"] artifactId) "-" 44 44 version 45 45 ]; 46 46 mkJarUrl = repoUrl: 47 47 lib.concatStringsSep "/" [ 48 48 (lib.removeSuffix "/" repoUrl) 49 - (lib.replaceChars ["."] ["/"] groupId) 49 + (lib.replaceStrings ["."] ["/"] groupId) 50 50 artifactId 51 51 version 52 52 "${artifactId}-${version}${lib.optionalString (!isNull classifier) "-${classifier}"}.jar"
+1 -1
pkgs/build-support/rust/build-rust-crate/configure-crate.nix
··· 32 32 completeDepsDir = lib.concatStringsSep " " completeDeps; 33 33 completeBuildDepsDir = lib.concatStringsSep " " completeBuildDeps; 34 34 envFeatures = lib.concatStringsSep " " ( 35 - map (f: lib.replaceChars ["-"] ["_"] (lib.toUpper f)) crateFeatures 35 + map (f: lib.replaceStrings ["-"] ["_"] (lib.toUpper f)) crateFeatures 36 36 ); 37 37 in '' 38 38 ${echo_colored colors}
+3 -3
pkgs/data/misc/v2ray-geoip/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "v2ray-geoip"; 5 - version = "202212080044"; 5 + version = "202212150047"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "v2fly"; 9 9 repo = "geoip"; 10 - rev = "b8fc720b187e59a55609b2db8cf971a6c938be83"; 11 - sha256 = "sha256-Fg+r23V5gs9wQKfgH/xkUqJvSOc8daaWLuNiDWD2Nz8="; 10 + rev = "29c096b1285812a0a9a955b98ff2998c46f9b80a"; 11 + sha256 = "sha256-44kP+4Bc7fwxNViWiKo7jLtUov+7k60v+7NF7CTkbjg="; 12 12 }; 13 13 14 14 installPhase = ''
+1 -1
pkgs/development/compilers/elm/makeDotElm.nix
··· 3 3 ver: deps: 4 4 let cmds = lib.mapAttrsToList (name: info: let 5 5 pkg = stdenv.mkDerivation { 6 - name = lib.replaceChars ["/"] ["-"] name + "-${info.version}"; 6 + name = lib.replaceStrings ["/"] ["-"] name + "-${info.version}"; 7 7 8 8 src = fetchurl { 9 9 url = "https://github.com/${name}/archive/${info.version}.tar.gz";
+2 -2
pkgs/development/compilers/haxe/default.nix
··· 11 11 ptmap 12 12 camlp5 13 13 sha 14 - dune_2 14 + dune_3 15 15 luv 16 16 extlib 17 17 ] else if lib.versionAtLeast version "4.0" ··· 23 23 ptmap 24 24 camlp5 25 25 sha 26 - dune_2 26 + dune_3 27 27 luv 28 28 extlib-1-7-7 29 29 ] else with ocaml-ng.ocamlPackages_4_05; [
+1 -1
pkgs/development/interpreters/gauche/default.nix
··· 8 8 src = fetchFromGitHub { 9 9 owner = "shirok"; 10 10 repo = pname; 11 - rev = "release${lib.replaceChars [ "." ] [ "_" ] version}"; 11 + rev = "release${lib.replaceStrings [ "." ] [ "_" ] version}"; 12 12 sha256 = "0ki1w7sa10ivmg51sqjskby0gsznb0d3738nz80x589033km5hmb"; 13 13 }; 14 14
+3 -3
pkgs/development/interpreters/wasmer/default.nix
··· 14 14 15 15 rustPlatform.buildRustPackage rec { 16 16 pname = "wasmer"; 17 - version = "3.0.2"; 17 + version = "3.1.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "wasmerio"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-VCPA0/hcbagprr7Ztizkka7W5pkDPgAnqHaxQaY4H4o="; 23 + sha256 = "sha256-t/ObsvUSNGFvHkVH2nl8vLFI+5GUQx6niCgeH4ykk/0="; 24 24 }; 25 25 26 - cargoSha256 = "sha256-BzDud7IQiW/LosLDliORmYS+dNG+L6PY0rGEtAmiKhU="; 26 + cargoSha256 = "sha256-75/0D0lrV50wH51Ll7M1Lvqj2kRSaJXiQWElxCaF9mE="; 27 27 28 28 nativeBuildInputs = [ rustPlatform.bindgenHook ]; 29 29
+1 -1
pkgs/development/libraries/icu/base.nix
··· 9 9 10 10 baseAttrs = { 11 11 src = fetchurl { 12 - url = "https://github.com/unicode-org/icu/releases/download/release-${lib.replaceChars [ "." ] [ "-" ] version}/icu4c-${lib.replaceChars [ "." ] [ "_" ] version}-src.tgz"; 12 + url = "https://github.com/unicode-org/icu/releases/download/release-${lib.replaceStrings [ "." ] [ "-" ] version}/icu4c-${lib.replaceStrings [ "." ] [ "_" ] version}-src.tgz"; 13 13 inherit sha256; 14 14 }; 15 15
+1 -1
pkgs/development/libraries/java/hsqldb/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 pname = "hsqldb"; 5 5 version = "2.7.1"; 6 - underscoreMajMin = lib.strings.replaceChars ["."] ["_"] (lib.versions.majorMinor version); 6 + underscoreMajMin = lib.replaceStrings ["."] ["_"] (lib.versions.majorMinor version); 7 7 8 8 src = fetchurl { 9 9 url = "mirror://sourceforge/project/hsqldb/hsqldb/hsqldb_${underscoreMajMin}/hsqldb-${version}.zip";
+1 -1
pkgs/development/libraries/muparser/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 pname = "muparser"; 5 5 version = "2.2.3"; 6 - url-version = lib.replaceChars ["."] ["_"] version; 6 + url-version = lib.replaceStrings ["."] ["_"] version; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://sourceforge/muparser/muparser_v${url-version}.zip";
+1 -1
pkgs/development/libraries/opendkim/default.nix
··· 8 8 src = fetchFromGitHub { 9 9 owner = "trusteddomainproject"; 10 10 repo = "OpenDKIM"; 11 - rev = "rel-opendkim-${lib.replaceChars ["."] ["-"] version}"; 11 + rev = "rel-opendkim-${lib.replaceStrings ["."] ["-"] version}"; 12 12 sha256 = "0nx3in8sa6xna4vfacj8g60hfzk61jpj2ldag80xzxip9c3rd2pw"; 13 13 }; 14 14
+1 -1
pkgs/development/libraries/opensubdiv/default.nix
··· 15 15 src = fetchFromGitHub { 16 16 owner = "PixarAnimationStudios"; 17 17 repo = "OpenSubdiv"; 18 - rev = "v${lib.replaceChars ["."] ["_"] version}"; 18 + rev = "v${lib.replaceStrings ["."] ["_"] version}"; 19 19 sha256 = "sha256-ejxQ5mGIIrEa/rAfkTrRbIRerrAvEPoWn7e0lIqS1JQ="; 20 20 }; 21 21
+2
pkgs/development/libraries/xgboost/default.nix
··· 55 55 runHook preInstall 56 56 mkdir -p $out 57 57 cp -r ../include $out 58 + cp -r ../dmlc-core/include/dmlc $out/include 59 + cp -r ../rabit/include/rabit $out/include 58 60 install -Dm755 ../lib/${libname} $out/lib/${libname} 59 61 install -Dm755 ../xgboost $out/bin/xgboost 60 62 runHook postInstall
+1 -1
pkgs/development/mobile/androidenv/build-app.nix
··· 16 16 extraArgs = removeAttrs args ([ "name" ] ++ builtins.attrNames androidSdkFormalArgs); 17 17 in 18 18 stdenv.mkDerivation ({ 19 - name = lib.replaceChars [" "] [""] name; # Android APKs may contain white spaces in their names, but Nix store paths cannot 19 + name = lib.replaceStrings [" "] [""] name; # Android APKs may contain white spaces in their names, but Nix store paths cannot 20 20 ANDROID_HOME = "${androidsdk}/libexec/android-sdk"; 21 21 buildInputs = [ jdk ant ]; 22 22 buildPhase = ''
+2 -2
pkgs/development/mobile/androidenv/build-tools.nix
··· 1 - {deployAndroidPackage, lib, package, os, autoPatchelfHook, makeWrapper, pkgs, pkgs_i686}: 1 + {deployAndroidPackage, lib, package, os, autoPatchelfHook, makeWrapper, pkgs, pkgsi686Linux}: 2 2 3 3 deployAndroidPackage { 4 4 inherit package os; 5 5 nativeBuildInputs = [ makeWrapper ] 6 6 ++ lib.optionals (os == "linux") [ autoPatchelfHook ]; 7 - buildInputs = lib.optionals (os == "linux") [ pkgs.glibc pkgs.zlib pkgs.ncurses5 pkgs_i686.glibc pkgs_i686.zlib pkgs_i686.ncurses5 pkgs.libcxx ]; 7 + buildInputs = lib.optionals (os == "linux") [ pkgs.glibc pkgs.zlib pkgs.ncurses5 pkgsi686Linux.glibc pkgsi686Linux.zlib pkgsi686Linux.ncurses5 pkgs.libcxx ]; 8 8 patchInstructions = '' 9 9 ${lib.optionalString (os == "linux") '' 10 10 addAutoPatchelfSearchPath $packageBaseDir/lib
+16 -20
pkgs/development/mobile/androidenv/compose-android-packages.nix
··· 1 - { requireFile, autoPatchelfHook, pkgs, pkgsHostHost, pkgs_i686 1 + { callPackage, stdenv, lib, fetchurl, ruby, writeText 2 2 , licenseAccepted ? false 3 3 }: 4 4 ··· 25 25 }: 26 26 27 27 let 28 - inherit (pkgs) stdenv lib fetchurl; 29 - inherit (pkgs.buildPackages) makeWrapper unzip; 30 - 31 28 # Determine the Android os identifier from Nix's system identifier 32 29 os = if stdenv.system == "x86_64-linux" then "linux" 33 30 else if stdenv.system == "x86_64-darwin" then "macosx" ··· 32 35 33 36 # Uses mkrepo.rb to create a repo spec. 34 37 mkRepoJson = { packages ? [], images ? [], addons ? [] }: let 35 - mkRepoRuby = (pkgs.ruby.withPackages (pkgs: with pkgs; [ slop nokogiri ])); 38 + mkRepoRuby = (ruby.withPackages (pkgs: with pkgs; [ slop nokogiri ])); 36 39 mkRepoRubyArguments = lib.lists.flatten [ 37 40 (builtins.map (package: ["--packages" "${package}"]) packages) 38 41 (builtins.map (image: ["--images" "${image}"]) images) ··· 112 115 ] ++ extraLicenses); 113 116 in 114 117 rec { 115 - deployAndroidPackage = import ./deploy-androidpackage.nix { 116 - inherit stdenv unzip; 118 + deployAndroidPackage = callPackage ./deploy-androidpackage.nix { 117 119 }; 118 120 119 - platform-tools = import ./platform-tools.nix { 120 - inherit deployAndroidPackage autoPatchelfHook pkgs lib; 121 + platform-tools = callPackage ./platform-tools.nix { 122 + inherit deployAndroidPackage; 121 123 os = if stdenv.system == "aarch64-darwin" then "macosx" else os; # "macosx" is a universal binary here 122 124 package = packages.platform-tools.${platformToolsVersion}; 123 125 }; 124 126 125 127 build-tools = map (version: 126 - import ./build-tools.nix { 127 - inherit deployAndroidPackage os autoPatchelfHook makeWrapper pkgs pkgs_i686 lib; 128 + callPackage ./build-tools.nix { 129 + inherit deployAndroidPackage; 128 130 package = packages.build-tools.${version}; 129 131 } 130 132 ) buildToolsVersions; 131 133 132 - emulator = import ./emulator.nix { 133 - inherit deployAndroidPackage os autoPatchelfHook makeWrapper pkgs pkgs_i686 lib; 134 + emulator = callPackage ./emulator.nix { 135 + inherit deployAndroidPackage os; 134 136 package = packages.emulator.${emulatorVersion}; 135 137 }; 136 138 ··· 167 171 ) platformVersions); 168 172 169 173 cmake = map (version: 170 - import ./cmake.nix { 171 - inherit deployAndroidPackage os autoPatchelfHook pkgs lib stdenv; 174 + callPackage ./cmake.nix { 175 + inherit deployAndroidPackage os; 172 176 package = packages.cmake.${version}; 173 177 } 174 178 ) cmakeVersions; 175 179 176 180 # Creates a NDK bundle. 177 181 makeNdkBundle = ndkVersion: 178 - import ./ndk-bundle { 179 - inherit deployAndroidPackage os autoPatchelfHook makeWrapper pkgs pkgsHostHost lib platform-tools stdenv; 182 + callPackage ./ndk-bundle { 183 + inherit deployAndroidPackage os platform-tools; 180 184 package = packages.ndk-bundle.${ndkVersion} or packages.ndk.${ndkVersion}; 181 185 }; 182 186 ··· 249 253 ${lib.concatMapStringsSep "\n" (str: " - ${str}") licenseNames} 250 254 251 255 by setting nixpkgs config option 'android_sdk.accept_license = true;'. 252 - '' else import ./tools.nix { 253 - inherit deployAndroidPackage requireFile packages toolsVersion autoPatchelfHook makeWrapper os pkgs pkgs_i686 lib; 256 + '' else callPackage ./tools.nix { 257 + inherit deployAndroidPackage packages toolsVersion; 254 258 255 259 postInstall = '' 256 260 # Symlink all requested plugins ··· 319 323 ${lib.concatMapStrings (licenseName: 320 324 let 321 325 licenseHashes = builtins.concatStringsSep "\n" (mkLicenseHashes licenseName); 322 - licenseHashFile = pkgs.writeText "androidenv-${licenseName}" licenseHashes; 326 + licenseHashFile = writeText "androidenv-${licenseName}" licenseHashes; 323 327 in 324 328 '' 325 329 ln -s ${licenseHashFile} licenses/${licenseName}
+5 -9
pkgs/development/mobile/androidenv/default.nix
··· 1 - { config, pkgs ? import <nixpkgs> {}, pkgsHostHost ? pkgs.pkgsHostHost 2 - , pkgs_i686 ? import <nixpkgs> { system = "i686-linux"; } 1 + { config, pkgs ? import <nixpkgs> {} 3 2 , licenseAccepted ? config.android_sdk.accept_license or false 4 3 }: 5 4 6 5 rec { 7 - composeAndroidPackages = import ./compose-android-packages.nix { 8 - inherit (pkgs) requireFile autoPatchelfHook; 9 - inherit pkgs pkgsHostHost pkgs_i686 licenseAccepted; 6 + composeAndroidPackages = pkgs.callPackage ./compose-android-packages.nix { 7 + inherit licenseAccepted; 10 8 }; 11 9 12 - buildApp = import ./build-app.nix { 13 - inherit (pkgs) stdenv lib jdk ant gnumake gawk; 10 + buildApp = pkgs.callPackage ./build-app.nix { 14 11 inherit composeAndroidPackages; 15 12 }; 16 13 17 - emulateApp = import ./emulate-app.nix { 18 - inherit (pkgs) stdenv lib runtimeShell; 14 + emulateApp = pkgs.callPackage ./emulate-app.nix { 19 15 inherit composeAndroidPackages; 20 16 }; 21 17
+2 -2
pkgs/development/mobile/androidenv/emulator.nix
··· 1 - { deployAndroidPackage, lib, package, os, autoPatchelfHook, makeWrapper, pkgs, pkgs_i686 }: 1 + { deployAndroidPackage, lib, package, os, autoPatchelfHook, makeWrapper, pkgs, pkgsi686Linux }: 2 2 3 3 deployAndroidPackage { 4 4 inherit package os; ··· 13 13 zlib 14 14 ncurses5 15 15 stdenv.cc.cc 16 - pkgs_i686.glibc 16 + pkgsi686Linux.glibc 17 17 expat 18 18 freetype 19 19 nss
+4 -4
pkgs/development/mobile/androidenv/examples/shell.nix
··· 7 7 sha256 = "1wg61h4gndm3vcprdcg7rc4s1v3jkm5xd7lw8r2f67w502y94gcy"; 8 8 }), 9 9 pkgs ? import nixpkgsSource {}, 10 - pkgs_i686 ? import nixpkgsSource { system = "i686-linux"; },*/ 10 + pkgsi686Linux ? import nixpkgsSource { system = "i686-linux"; },*/ 11 11 12 12 # If you want to use the in-tree version of nixpkgs: 13 13 pkgs ? import ../../../../.. {}, 14 - pkgs_i686 ? import ../../../../.. { system = "i686-linux"; }, 14 + pkgsi686Linux ? import ../../../../.. { system = "i686-linux"; }, 15 15 16 16 config ? pkgs.config 17 17 }: ··· 46 46 }; 47 47 48 48 androidEnv = pkgs.callPackage "${androidEnvNixpkgs}/pkgs/development/mobile/androidenv" { 49 - inherit config pkgs pkgs_i686; 49 + inherit config pkgs pkgsi686Linux; 50 50 licenseAccepted = true; 51 51 };*/ 52 52 53 53 # Otherwise, just use the in-tree androidenv: 54 54 androidEnv = pkgs.callPackage ./.. { 55 - inherit config pkgs pkgs_i686; 55 + inherit config pkgs pkgsi686Linux; 56 56 licenseAccepted = true; 57 57 }; 58 58
+2 -1
pkgs/development/mobile/androidenv/platform-tools.nix
··· 2 2 3 3 deployAndroidPackage { 4 4 inherit package os; 5 - buildInputs = lib.optionals (os == "linux") [ autoPatchelfHook pkgs.glibc pkgs.zlib pkgs.ncurses5 ]; 5 + nativeBuildInputs = lib.optionals (os == "linux") [ autoPatchelfHook ]; 6 + buildInputs = lib.optionals (os == "linux") [ pkgs.glibc pkgs.zlib pkgs.ncurses5 ]; 6 7 patchInstructions = lib.optionalString (os == "linux") '' 7 8 addAutoPatchelfSearchPath $packageBaseDir/lib64 8 9 autoPatchelf --no-recurse $packageBaseDir/lib64
+7 -7
pkgs/development/mobile/androidenv/tools.nix
··· 1 - {deployAndroidPackage, requireFile, lib, packages, toolsVersion, autoPatchelfHook, makeWrapper, os, pkgs, pkgs_i686, postInstall ? ""}: 1 + {deployAndroidPackage, requireFile, lib, packages, toolsVersion, os, callPackage, postInstall ? ""}: 2 2 3 - if toolsVersion == "26.0.1" then import ./tools/26.nix { 4 - inherit deployAndroidPackage lib autoPatchelfHook makeWrapper os pkgs pkgs_i686 postInstall; 3 + if toolsVersion == "26.0.1" then callPackage ./tools/26.nix { 4 + inherit deployAndroidPackage lib os postInstall; 5 5 package = { 6 6 name = "tools"; 7 7 path = "tools"; ··· 17 17 }; 18 18 }; 19 19 }; 20 - } else if toolsVersion == "26.1.1" then import ./tools/26.nix { 21 - inherit deployAndroidPackage lib autoPatchelfHook makeWrapper os pkgs pkgs_i686 postInstall; 20 + } else if toolsVersion == "26.1.1" then callPackage ./tools/26.nix { 21 + inherit deployAndroidPackage lib os postInstall; 22 22 package = packages.tools.${toolsVersion}; 23 - } else import ./tools/25.nix { 24 - inherit deployAndroidPackage lib autoPatchelfHook makeWrapper os pkgs pkgs_i686 postInstall; 23 + } else callPackage ./tools/25.nix { 24 + inherit deployAndroidPackage lib os postInstall; 25 25 package = packages.tools.${toolsVersion}; 26 26 }
+2 -2
pkgs/development/mobile/androidenv/tools/25.nix
··· 1 - {deployAndroidPackage, lib, package, autoPatchelfHook, makeWrapper, os, pkgs, pkgs_i686, postInstall ? ""}: 1 + {deployAndroidPackage, lib, package, autoPatchelfHook, makeWrapper, os, pkgs, pkgsi686Linux, postInstall ? ""}: 2 2 3 3 deployAndroidPackage { 4 4 name = "androidsdk"; 5 5 nativeBuildInputs = [ autoPatchelfHook makeWrapper ]; 6 - buildInputs = lib.optionals (os == "linux") [ pkgs.glibc pkgs.xorg.libX11 pkgs.xorg.libXext pkgs.xorg.libXdamage pkgs.xorg.libxcb pkgs.xorg.libXfixes pkgs.xorg.libXrender pkgs.fontconfig.lib pkgs.freetype pkgs.libGL pkgs.zlib pkgs.ncurses5 pkgs.libpulseaudio pkgs_i686.glibc pkgs_i686.xorg.libX11 pkgs_i686.xorg.libXrender pkgs_i686.fontconfig pkgs_i686.freetype pkgs_i686.zlib ]; 6 + buildInputs = lib.optionals (os == "linux") [ pkgs.glibc pkgs.xorg.libX11 pkgs.xorg.libXext pkgs.xorg.libXdamage pkgs.xorg.libxcb pkgs.xorg.libXfixes pkgs.xorg.libXrender pkgs.fontconfig.lib pkgs.freetype pkgs.libGL pkgs.zlib pkgs.ncurses5 pkgs.libpulseaudio pkgsi686Linux.glibc pkgsi686Linux.xorg.libX11 pkgsi686Linux.xorg.libXrender pkgsi686Linux.fontconfig pkgsi686Linux.freetype pkgsi686Linux.zlib ]; 7 7 inherit package os; 8 8 9 9 patchInstructions = ''
+2 -2
pkgs/development/mobile/androidenv/tools/26.nix
··· 1 - {deployAndroidPackage, lib, package, autoPatchelfHook, makeWrapper, os, pkgs, pkgs_i686, postInstall ? ""}: 1 + {deployAndroidPackage, lib, package, autoPatchelfHook, makeWrapper, os, pkgs, pkgsi686Linux, postInstall ? ""}: 2 2 3 3 deployAndroidPackage { 4 4 name = "androidsdk"; ··· 8 8 buildInputs = lib.optional (os == "linux") ( 9 9 (with pkgs; [ glibc freetype fontconfig fontconfig.lib]) 10 10 ++ (with pkgs.xorg; [ libX11 libXrender libXext ]) 11 - ++ (with pkgs_i686; [ glibc xorg.libX11 xorg.libXrender xorg.libXext fontconfig.lib freetype zlib ]) 11 + ++ (with pkgsi686Linux; [ glibc xorg.libX11 xorg.libXrender xorg.libXext fontconfig.lib freetype zlib ]) 12 12 ); 13 13 14 14 patchInstructions = ''
+1 -1
pkgs/development/mobile/titaniumenv/build-app.nix
··· 34 34 extraArgs = removeAttrs args [ "name" "preRebuild" "androidsdkArgs" "xcodewrapperArgs" ]; 35 35 in 36 36 stdenv.mkDerivation ({ 37 - name = lib.replaceChars [" "] [""] name; 37 + name = lib.replaceStrings [" "] [""] name; 38 38 39 39 buildInputs = [ nodejs titanium alloy python which file jdk ]; 40 40
+1 -1
pkgs/development/mobile/xcodeenv/build-app.nix
··· 53 53 extraArgs = removeAttrs args ([ "name" "scheme" "xcodeFlags" "release" "certificateFile" "certificatePassword" "provisioningProfile" "signMethod" "generateIPA" "generateXCArchive" "enableWirelessDistribution" "installURL" "bundleId" "version" ] ++ builtins.attrNames xcodewrapperFormalArgs); 54 54 in 55 55 stdenv.mkDerivation ({ 56 - name = lib.replaceChars [" "] [""] name; # iOS app names can contain spaces, but in the Nix store this is not allowed 56 + name = lib.replaceStrings [" "] [""] name; # iOS app names can contain spaces, but in the Nix store this is not allowed 57 57 buildPhase = '' 58 58 # Be sure that the Xcode wrapper has priority over everything else. 59 59 # When using buildInputs this does not seem to be the case.
+1 -1
pkgs/development/mobile/xcodeenv/simulate-app.nix
··· 9 9 xcodewrapper = composeXcodeWrapper xcodewrapperArgs; 10 10 in 11 11 stdenv.mkDerivation { 12 - name = lib.replaceChars [" "] [""] name; 12 + name = lib.replaceStrings [" "] [""] name; 13 13 buildCommand = '' 14 14 mkdir -p $out/bin 15 15 cat > $out/bin/run-test-simulator << "EOF"
+8 -9
pkgs/development/ocaml-modules/lustre-v6/default.nix
··· 1 - { lib, buildDunePackage, fetchurl, extlib, lutils, rdbg }: 1 + { lib, buildDunePackage, fetchurl, extlib, lutils, rdbg, yaml }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "lustre-v6"; 5 - version = "6.103.3"; 5 + version = "6.107.1"; 6 6 7 - useDune2 = true; 8 - 9 - minimalOCamlVersion = "4.05"; 7 + minimalOCamlVersion = "4.12"; 10 8 11 9 src = fetchurl { 12 - url = "http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/lustre-v6.6.103.3.tgz"; 13 - sha512 = "8d452184ee68edda1b5a50717e6a5b13fb21f9204634fc5898280e27a1d79c97a6e7cc04424fc22f34cdd02ed3cc8774dca4f982faf342980b5f9fe0dc1a017d"; 10 + url = "http://www-verimag.imag.fr/DIST-TOOLS/SYNCHRONE/pool/lustre-v6.v${version}.tgz"; 11 + hash = "sha256-+OqDwUIiPrtJy1C3DmDNTrtsT8clKKcNWCev4TEMRBc="; 14 12 }; 15 13 16 14 propagatedBuildInputs = [ 17 15 extlib 18 16 lutils 19 17 rdbg 18 + yaml 20 19 ]; 21 20 22 21 meta = with lib; { 23 22 description = "Lustre V6 compiler"; 24 23 homepage = "https://www-verimag.imag.fr/lustre-v6.html"; 25 - license = lib.licenses.cecill21; 26 - maintainers = [ lib.maintainers.delta ]; 24 + license = licenses.cecill21; 25 + maintainers = with maintainers; [ delta wegank ]; 27 26 mainProgram = "lv6"; 28 27 }; 29 28 }
+1
pkgs/development/ocaml-modules/plotkicadsch/default.nix
··· 17 17 18 18 buildDunePackage rec { 19 19 pname = "plotkicadsch"; 20 + duneVersion = "3"; 20 21 21 22 inherit (kicadsch) src version; 22 23
+6 -9
pkgs/development/ocaml-modules/sha/default.nix
··· 1 - { lib, fetchurl, buildDunePackage, stdlib-shims, dune-configurator, ounit }: 1 + { lib, fetchurl, buildDunePackage, stdlib-shims, ounit2 }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "sha"; 5 - version = "1.15.1"; 5 + version = "1.15.2"; 6 + duneVersion = "3"; 6 7 7 8 src = fetchurl { 8 - url = "https://github.com/djs55/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; 9 - sha256 = "sha256-cRtjydvwgXgimi6F3C48j7LrWgfMO6m9UJKjKlxvp0Q="; 9 + url = "https://github.com/djs55/ocaml-${pname}/releases/download/${version}/${pname}-${version}.tbz"; 10 + hash = "sha256-P71Xs5p8QAaOtBrh7MuhQJOL6144BqTLvXlZOyGD/7c="; 10 11 }; 11 - 12 - useDune2 = true; 13 - 14 - buildInputs = [ dune-configurator ]; 15 12 16 13 propagatedBuildInputs = [ 17 14 stdlib-shims ··· 16 19 17 20 doCheck = true; 18 21 checkInputs = [ 19 - ounit 22 + ounit2 20 23 ]; 21 24 22 25 meta = with lib; {
+9 -11
pkgs/development/python-modules/bashlex/default.nix
··· 1 - { enum-compat 2 - , lib 1 + { lib 3 2 , buildPythonPackage 4 3 , fetchFromGitHub 5 - , nose 6 4 , python 5 + , pytestCheckHook 7 6 }: 8 7 9 8 buildPythonPackage rec { 10 9 pname = "bashlex"; 11 - version = "0.15"; 10 + version = "0.16"; 11 + 12 + format = "setuptools"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "idank"; 15 16 repo = pname; 16 17 rev = version; 17 - sha256 = "sha256-kKVorAIKlyC9vUzLOlaZ/JrG1kBBRIvLwBmHNj9nx84="; 18 + hash = "sha256-vpcru/ax872WK3XuRQWTmTD9zRdObn2Bit6kY9ZIQaI="; 18 19 }; 19 - 20 - checkInputs = [ nose ]; 21 - propagatedBuildInputs = [ enum-compat ]; 22 20 23 21 # workaround https://github.com/idank/bashlex/issues/51 24 22 preBuild = '' 25 23 ${python.interpreter} -c 'import bashlex' 26 24 ''; 27 25 28 - checkPhase = '' 29 - ${python.interpreter} -m nose --with-doctest 30 - ''; 26 + checkInputs = [ 27 + pytestCheckHook 28 + ]; 31 29 32 30 pythonImportsCheck = [ "bashlex" ]; 33 31
+2 -2
pkgs/development/python-modules/black/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "black"; 26 - version = "22.10.0"; 26 + version = "22.12.0"; 27 27 format = "pyproject"; 28 28 29 29 disabled = pythonOlder "3.7"; 30 30 31 31 src = fetchPypi { 32 32 inherit pname version; 33 - hash = "sha256-9RNYjaWZlD4M3k4yzJh56CXVhyDWVXBi0QmMWtgAgOE="; 33 + hash = "sha256-IpNR5aGMow9Ee/ck0Af4kPl+E68HC7atTApEHNdZai8="; 34 34 }; 35 35 36 36 nativeBuildInputs = [
+77
pkgs/development/python-modules/bonsai/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchFromGitHub 5 + , setuptools 6 + , cyrus_sasl 7 + , openldap 8 + , typing-extensions 9 + , gevent 10 + , tornado 11 + , trio 12 + , pytestCheckHook 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "bonsai"; 17 + version = "1.5.1"; 18 + 19 + disabled = pythonOlder "3.7"; 20 + 21 + format = "pyproject"; 22 + 23 + src = fetchFromGitHub { 24 + owner = "noirello"; 25 + repo = "bonsai"; 26 + rev = "v${version}"; 27 + hash = "sha256-UR/Ds5famD8kuDa6IIIyEv45eJuAcoygXef8XE+5Cxk="; 28 + }; 29 + 30 + nativeBuildInputs = [ 31 + setuptools 32 + ]; 33 + 34 + buildInputs = [ 35 + cyrus_sasl 36 + openldap 37 + ]; 38 + 39 + propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ 40 + typing-extensions 41 + ]; 42 + 43 + passthru.optional-dependencies = { 44 + gevent = [ gevent ]; 45 + tornado = [ tornado ]; 46 + trio = [ trio ]; 47 + }; 48 + 49 + checkInputs = [ 50 + pytestCheckHook 51 + ]; 52 + 53 + disabledTestPaths = [ 54 + # requires running LDAP server 55 + "tests/test_asyncio.py" 56 + "tests/test_ldapclient.py" 57 + "tests/test_ldapconnection.py" 58 + "tests/test_ldapentry.py" 59 + "tests/test_ldapreference.py" 60 + "tests/test_pool.py" 61 + ]; 62 + 63 + disabledTests = [ 64 + # requires running LDAP server 65 + "test_set_async_connect" 66 + ]; 67 + 68 + pythonImportsCheck = [ "bonsai" ]; 69 + 70 + meta = { 71 + changelog = "https://github.com/noirello/bonsai/blob/${src.rev}/CHANGELOG.rst"; 72 + description = "Python 3 module for accessing LDAP directory servers"; 73 + homepage = "https://github.com/noirello/bonsai"; 74 + license = lib.licenses.mit; 75 + maintainers = with lib.maintainers; [ dotlambda ]; 76 + }; 77 + }
+45 -23
pkgs/development/python-modules/cartopy/default.nix
··· 1 - { buildPythonPackage, lib, fetchPypi 2 - , pytestCheckHook, filelock, mock, pep8 3 - , cython, setuptools-scm 4 - , six, pyshp, shapely, geos, numpy 5 - , gdal, pillow, matplotlib, pyepsg, pykdtree, scipy, owslib, fiona 6 - , proj, flufl_lock 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchPypi 5 + , cython 6 + , setuptools-scm 7 + , geos 8 + , proj 9 + , matplotlib 10 + , numpy 11 + , pyproj 12 + , pyshp 13 + , shapely 14 + , owslib 15 + , pillow 16 + , gdal 17 + , scipy 18 + , fontconfig 19 + , pytest-mpl 20 + , pytestCheckHook 7 21 }: 8 22 9 23 buildPythonPackage rec { 10 24 pname = "cartopy"; 11 - version = "0.21.0"; 25 + version = "0.21.1"; 26 + 27 + disabled = pythonOlder "3.8"; 28 + 29 + format = "setuptools"; 12 30 13 31 src = fetchPypi { 14 32 inherit version; 15 33 pname = "Cartopy"; 16 - sha256 = "sha256-zh06KKEy6UyJrDN2mlD4H2VjSrK9QFVjF+Fb1srRzkI="; 34 + hash = "sha256-idVklxLIWCIxxuEYJaBMhfbwzulNu4nk2yPqvKHMJQo="; 17 35 }; 18 - 19 - postPatch = '' 20 - # https://github.com/SciTools/cartopy/issues/1880 21 - substituteInPlace lib/cartopy/tests/test_crs.py \ 22 - --replace "test_osgb(" "dont_test_osgb(" \ 23 - --replace "test_epsg(" "dont_test_epsg(" 24 - ''; 25 36 26 37 nativeBuildInputs = [ 27 38 cython ··· 46 35 ]; 47 36 48 37 propagatedBuildInputs = [ 49 - # required 50 - six pyshp shapely numpy 51 - 52 - # optional 53 - gdal pillow matplotlib pyepsg pykdtree scipy fiona owslib 38 + matplotlib 39 + numpy 40 + pyproj 41 + pyshp 42 + shapely 54 43 ]; 55 44 56 - checkInputs = [ pytestCheckHook filelock mock pep8 flufl_lock ]; 45 + passthru.optional-dependencies = { 46 + ows = [ owslib pillow ]; 47 + plotting = [ gdal pillow scipy ]; 48 + }; 49 + 50 + checkInputs = [ 51 + pytest-mpl 52 + pytestCheckHook 53 + ] ++ lib.flatten (lib.attrValues passthru.optional-dependencies); 54 + 55 + preCheck = '' 56 + export FONTCONFIG_FILE=${fontconfig.out}/etc/fonts/fonts.conf 57 + export HOME=$TMPDIR 58 + ''; 57 59 58 60 pytestFlagsArray = [ 59 61 "--pyargs" "cartopy" ··· 74 50 ]; 75 51 76 52 disabledTests = [ 77 - "test_nightshade_image" 78 - "background_img" 79 53 "test_gridliner_labels_bbox_style" 80 54 ]; 81 55
+2
pkgs/development/python-modules/eth-keys/default.nix
··· 50 50 "test_public_key_compression_is_equal" 51 51 "test_public_key_decompression_is_equal" 52 52 "test_signatures_with_high_s" 53 + # timing sensitive 54 + "test_encode_decode_pairings" 53 55 ]; 54 56 55 57 pythonImportsCheck = [ "eth_keys" ];
+2
pkgs/development/python-modules/fs/default.nix
··· 5 5 , setuptools 6 6 , six 7 7 , appdirs 8 + , scandir ? null 8 9 , backports_os ? null 9 10 , typing ? null 10 11 , pytz ··· 36 35 propagatedBuildInputs = [ six appdirs pytz setuptools ] 37 36 ++ lib.optionals (!isPy3k) [ backports_os ] 38 37 ++ lib.optionals (!pythonAtLeast "3.6") [ typing ] 38 + ++ lib.optionals (!pythonAtLeast "3.5") [ scandir ] 39 39 ++ lib.optionals (!pythonAtLeast "3.5") [ enum34 ]; 40 40 41 41 LC_ALL="en_US.utf-8";
+58
pkgs/development/python-modules/here-routing/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchFromGitHub 5 + , poetry-core 6 + , aiohttp 7 + , async-timeout 8 + , yarl 9 + , aresponses 10 + , pytest-asyncio 11 + , pytestCheckHook 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "here-routing"; 16 + version = "0.2.0"; 17 + 18 + disabled = pythonOlder "3.8"; 19 + 20 + format = "pyproject"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "eifinger"; 24 + repo = "here_routing"; 25 + rev = "v${version}"; 26 + hash = "sha256-IXiYLDrPXc6YT8u0QT6f2GAjBNYhWwzkFxGhmAyiq5s="; 27 + }; 28 + 29 + postPatch = '' 30 + sed -i "/^addopts/d" pyproject.toml 31 + ''; 32 + 33 + nativeBuildInputs = [ 34 + poetry-core 35 + ]; 36 + 37 + propagatedBuildInputs = [ 38 + aiohttp 39 + async-timeout 40 + yarl 41 + ]; 42 + 43 + checkInputs = [ 44 + aresponses 45 + pytest-asyncio 46 + pytestCheckHook 47 + ]; 48 + 49 + pythonImportsCheck = [ "here_routing" ]; 50 + 51 + meta = { 52 + changelog = "https://github.com/eifinger/here_routing/blob/${src.rev}/CHANGELOG.md"; 53 + description = "Asynchronous Python client for the HERE Routing V8 API"; 54 + homepage = "https://github.com/eifinger/here_routing"; 55 + license = lib.licenses.mit; 56 + maintainers = with lib.maintainers; [ dotlambda ]; 57 + }; 58 + }
+58
pkgs/development/python-modules/here-transit/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchFromGitHub 5 + , poetry-core 6 + , aiohttp 7 + , async-timeout 8 + , yarl 9 + , aresponses 10 + , pytest-asyncio 11 + , pytestCheckHook 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "here-transit"; 16 + version = "1.2.0"; 17 + 18 + disabled = pythonOlder "3.8"; 19 + 20 + format = "pyproject"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "eifinger"; 24 + repo = "here_transit"; 25 + rev = "v${version}"; 26 + hash = "sha256-C5HZZCmK9ILUUXyx1i/cUggSM3xbOzXiJ13hrT2DWAI="; 27 + }; 28 + 29 + postPatch = '' 30 + sed -i "/^addopts/d" pyproject.toml 31 + ''; 32 + 33 + nativeBuildInputs = [ 34 + poetry-core 35 + ]; 36 + 37 + propagatedBuildInputs = [ 38 + aiohttp 39 + async-timeout 40 + yarl 41 + ]; 42 + 43 + checkInputs = [ 44 + aresponses 45 + pytest-asyncio 46 + pytestCheckHook 47 + ]; 48 + 49 + pythonImportsCheck = [ "here_transit" ]; 50 + 51 + meta = { 52 + changelog = "https://github.com/eifinger/here_transit/blob/${src.rev}/CHANGELOG.md"; 53 + description = "Asynchronous Python client for the HERE Routing V8 API"; 54 + homepage = "https://github.com/eifinger/here_transit"; 55 + license = lib.licenses.mit; 56 + maintainers = with lib.maintainers; [ dotlambda ]; 57 + }; 58 + }
+2 -2
pkgs/development/python-modules/isort/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "isort"; 12 - version = "5.10.1"; 12 + version = "5.11.2"; 13 13 format = "pyproject"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "PyCQA"; 17 17 repo = "isort"; 18 18 rev = version; 19 - sha256 = "09spgl2k9xrprr5gbpfc91a8p7mx7a0c64ydgc91b3jhrmnd9jg1"; 19 + sha256 = "sha256-4Du9vYI1srStWCTfZr4Rq3uH5c9cRtR8ZqihI36G6hA="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+5 -2
pkgs/development/python-modules/mastodon-py/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "mastodon-py"; 21 - version = "1.7.0"; 21 + version = "1.8.0"; 22 + 23 + format = "setuptools"; 22 24 23 25 src = fetchFromGitHub { 24 26 owner = "halcy"; 25 27 repo = "Mastodon.py"; 26 28 rev = "refs/tags/${version}"; 27 - sha256 = "sha256-QavgCWWiGmGnNoEX7pxzUyujEQObXhkaucv4FduZ/Vg="; 29 + hash = "sha256-T/yG9LLdttBQ+9vCSit+pyQX/BPqqDXbrTcPfTAUu1U="; 28 30 }; 29 31 30 32 postPatch = '' ··· 55 53 pythonImportsCheck = [ "mastodon" ]; 56 54 57 55 meta = with lib; { 56 + changelog = "https://github.com/halcy/Mastodon.py/blob/${src.rev}/CHANGELOG.rst"; 58 57 description = "Python wrapper for the Mastodon API"; 59 58 homepage = "https://github.com/halcy/Mastodon.py"; 60 59 license = licenses.mit;
+2 -2
pkgs/development/python-modules/micloud/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "micloud"; 12 - version = "0.5"; 12 + version = "0.6"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "Squachen"; 16 16 repo = "micloud"; 17 17 rev = "v_${version}"; 18 - sha256 = "sha256-1qtOsEH+G5ASsRyVCa4U0WQ/9kDRn1WpPNkvuvWFovQ="; 18 + hash = "sha256-IsNXFs1N+rKwqve2Pjp+wRTZCxHF4acEo6KyhsSKuqI="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -1
pkgs/development/python-modules/pathlib2/default.nix
··· 3 3 , fetchPypi 4 4 , six 5 5 , pythonOlder 6 + , scandir ? null 6 7 , glibcLocales 7 8 , mock 8 9 , typing ··· 19 18 }; 20 19 21 20 propagatedBuildInputs = [ six ] 22 - ++ lib.optionals (pythonOlder "3.5") [ typing ]; 21 + ++ lib.optionals (pythonOlder "3.5") [ scandir typing ]; 23 22 checkInputs = [ glibcLocales ] 24 23 ++ lib.optional (pythonOlder "3.3") mock; 25 24
+2 -2
pkgs/development/python-modules/pikepdf/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "pikepdf"; 27 - version = "6.2.4"; 27 + version = "6.2.5"; 28 28 format = "setuptools"; 29 29 30 30 disabled = pythonOlder "3.7"; ··· 39 39 postFetch = '' 40 40 rm "$out/.git_archival.txt" 41 41 ''; 42 - hash = "sha256-YSzwcrWhqyKjdydwodf57S+HIGaKE124umJPtJKiM5g="; 42 + hash = "sha256-5ADRKFGQ1k/O/r9CgEWCbOZLgasUJVXtPm+5ocRE4Fk="; 43 43 }; 44 44 45 45 patches = [
+4 -2
pkgs/development/python-modules/pynetbox/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pynetbox"; 13 - version = "6.6.2"; 13 + version = "7.0.0"; 14 + format = "setuptools"; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "netbox-community"; 17 18 repo = pname; 18 19 rev = "refs/tags/v${version}"; 19 - sha256 = "sha256-W5ukrhqJTgOXM9MnbZWvNy9TCoEUGrFYfD+zGGNU07w="; 20 + hash = "sha256-PFSnINbXSnEo1gvntjfH6KCVa/LeaNrsiuWM4H+fOvQ="; 20 21 }; 21 22 22 23 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 42 41 ]; 43 42 44 43 meta = with lib; { 44 + changelog = "https://github.com/netbox-community/pynetbox/releases/tag/v${version}"; 45 45 description = "API client library for Netbox"; 46 46 homepage = "https://github.com/netbox-community/pynetbox"; 47 47 license = licenses.asl20;
+2 -2
pkgs/development/python-modules/pyomo/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pyomo"; 12 - version = "6.4.3"; 12 + version = "6.4.4"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 repo = "pyomo"; 19 19 owner = "pyomo"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-EHttGeQUI8SWo8R9zRchguvDA6U8EKhDbBf5jdwl4dI="; 21 + hash = "sha256-FVpwJRCRlc537tJomB4Alxx8zJj8FpZp+LxB0f12rGE="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+9
pkgs/development/python-modules/pyrdfa3/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , fetchpatch 4 5 , isPy27 5 6 , rdflib 6 7 , html5lib ··· 17 16 pname = "pyRdfa3"; 18 17 sha256 = "sha256-FXZjqSuH3zRbb2m94jXf9feXiRYI4S/h5PqNrWhxMa4="; 19 18 }; 19 + 20 + patches = [ 21 + (fetchpatch { 22 + name = "CVE-2022-4396.patch"; 23 + url = "https://github.com/RDFLib/pyrdfa3/commit/ffd1d62dd50d5f4190013b39cedcdfbd81f3ce3e.patch"; 24 + hash = "sha256-prRrOwylYcEqKLr/8LIpyJ5Yyt+6+HTUqH5sQXU8tqc="; 25 + }) 26 + ]; 20 27 21 28 postPatch = '' 22 29 substituteInPlace setup.py \
+2 -2
pkgs/development/python-modules/python-telegram-bot/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "python-telegram-bot"; 16 - version = "13.14"; 16 + version = "13.15"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.7"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-6TkdQ+sRI94md6nSTqh4qdUyfWWyQZr7plP0dtJq7MM="; 23 + hash = "sha256-tAR2BrgIG2K71qo2H3yh7+h/qPGIHsnZMtNYRL9XoVQ="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pytorch-pfn-extras/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pytorch-pfn-extras"; 15 - version = "0.6.2"; 15 + version = "0.6.3"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "pfnet"; 19 19 repo = pname; 20 20 rev = "refs/tags/v${version}"; 21 - sha256 = "sha256-J1+y5hHMKC31rIYeWI3Ca8Hdx0FF+MnCOAp0ejHzX/Y="; 21 + sha256 = "sha256-B8B5zULIuqiojP7bmj3sABC9dqYLqOX5CfEN6slOFZ8="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [ numpy packaging torch typing-extensions ];
+3 -3
pkgs/development/python-modules/rapidfuzz/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "rapidfuzz"; 21 - version = "2.13.4"; 21 + version = "2.13.6"; 22 22 23 23 disabled = pythonOlder "3.7"; 24 24 ··· 28 28 owner = "maxbachmann"; 29 29 repo = "RapidFuzz"; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-ztGeWQTEilKzL93fruBpMvQY1W6OiMGvWUK/bgMhYd8="; 31 + hash = "sha256-TvauQ5U3+xF01HuYsnmuPn3uqoDSg42vYk2qR9AdBIg="; 32 32 }; 33 33 34 34 nativeBuildInputs = [ ··· 80 80 meta = with lib; { 81 81 description = "Rapid fuzzy string matching"; 82 82 homepage = "https://github.com/maxbachmann/RapidFuzz"; 83 - changelog = "https://github.com/maxbachmann/RapidFuzz/blob/${src.rev}/CHANGELOG.md"; 83 + changelog = "https://github.com/maxbachmann/RapidFuzz/blob/${src.rev}/CHANGELOG.rst"; 84 84 license = licenses.mit; 85 85 maintainers = with maintainers; [ dotlambda ]; 86 86 };
+2 -2
pkgs/development/python-modules/safety/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "safety"; 16 - version = "2.3.3"; 16 + version = "2.3.5"; 17 17 18 18 disabled = pythonOlder "3.6"; 19 19 ··· 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-LhfPEnRyynIM3MZfg0AItVWhD+VmJ2RgCat1Zd0kWc8="; 24 + hash = "sha256-pgwR+JUvQSy7Fl1wyx9nOjtDorqak84R+X5qTeg0qjo="; 25 25 }; 26 26 27 27 postPatch = ''
+1 -1
pkgs/development/python-modules/scikit-learn/default.nix
··· 95 95 changelog = let 96 96 major = versions.major version; 97 97 minor = versions.minor version; 98 - dashVer = replaceChars ["."] ["-"] version; 98 + dashVer = replaceStrings ["."] ["-"] version; 99 99 in 100 100 "https://scikit-learn.org/stable/whats_new/v${major}.${minor}.html#version-${dashVer}"; 101 101 homepage = "https://scikit-learn.org";
+2 -2
pkgs/development/python-modules/ujson/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "ujson"; 11 - version = "5.5.0"; 11 + version = "5.6.0"; 12 12 disabled = pythonOlder "3.7"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "sha256-slB3qXHH2ke9aEapEqdH9pY3dtkHIMiGA7G1XYF5B4A="; 16 + sha256 = "sha256-+IHi2KAi6Shaouq2uoZ0NY28srV/poYY2I1ik3rD/wQ="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+28
pkgs/development/python2-modules/scandir/add-aarch64-darwin-dirent.patch
··· 1 + diff --git a/scandir.py b/scandir.py 2 + index 3f602fb..40af3e5 100644 3 + --- a/scandir.py 4 + +++ b/scandir.py 5 + @@ -23,6 +23,7 @@ from os import listdir, lstat, stat, strerror 6 + from os.path import join, islink 7 + from stat import S_IFDIR, S_IFLNK, S_IFREG 8 + import collections 9 + +import platform 10 + import sys 11 + 12 + try: 13 + @@ -432,6 +433,15 @@ elif sys.platform.startswith(('linux', 'darwin', 'sunos5')) or 'bsd' in sys.plat 14 + ('__d_padding', ctypes.c_uint8 * 4), 15 + ('d_name', ctypes.c_char * 256), 16 + ) 17 + + elif 'darwin' in sys.platform and 'arm64' in platform.machine(): 18 + + _fields_ = ( 19 + + ('d_ino', ctypes.c_uint64), 20 + + ('d_off', ctypes.c_uint64), 21 + + ('d_reclen', ctypes.c_uint16), 22 + + ('d_namlen', ctypes.c_uint16), 23 + + ('d_type', ctypes.c_uint8), 24 + + ('d_name', ctypes.c_char * 1024), 25 + + ) 26 + else: 27 + _fields_ = ( 28 + ('d_ino', ctypes.c_uint32), # must be uint32, not ulong
+24
pkgs/development/python2-modules/scandir/default.nix
··· 1 + { lib, python, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "scandir"; 5 + version = "1.10.0"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "1bkqwmf056pkchf05ywbnf659wqlp6lljcdb0y88wr9f0vv32ijd"; 10 + }; 11 + 12 + patches = [ 13 + ./add-aarch64-darwin-dirent.patch 14 + ]; 15 + 16 + checkPhase = "${python.interpreter} test/run_tests.py"; 17 + 18 + meta = with lib; { 19 + description = "A better directory iterator and faster os.walk()"; 20 + homepage = "https://github.com/benhoyt/scandir"; 21 + license = licenses.gpl3; 22 + maintainers = with maintainers; [ abbradar ]; 23 + }; 24 + }
+32
pkgs/development/python2-modules/typing/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, pythonOlder, isPy3k, isPyPy, unittestCheckHook 2 + , pythonAtLeast }: 3 + 4 + let 5 + testDir = if isPy3k then "src" else "python2"; 6 + 7 + in buildPythonPackage rec { 8 + pname = "typing"; 9 + version = "3.10.0.0"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "13b4ad211f54ddbf93e5901a9967b1e07720c1d1b78d596ac6a439641aa1b130"; 14 + }; 15 + 16 + disabled = pythonAtLeast "3.5"; 17 + 18 + # Error for Python3.6: ImportError: cannot import name 'ann_module' 19 + # See https://github.com/python/typing/pull/280 20 + # Also, don't bother on PyPy: AssertionError: TypeError not raised 21 + doCheck = pythonOlder "3.6" && !isPyPy; 22 + 23 + checkInputs = [ unittestCheckHook ]; 24 + 25 + unittestFlagsArray = [ "-s" testDir ]; 26 + 27 + meta = with lib; { 28 + description = "Backport of typing module to Python versions older than 3.5"; 29 + homepage = "https://docs.python.org/3/library/typing.html"; 30 + license = licenses.psfl; 31 + }; 32 + }
+2 -2
pkgs/development/tools/appthreat-depscan/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "appthreat-depscan"; 8 - version = "3.3.0"; 8 + version = "3.4.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "AppThreat"; 12 12 repo = "dep-scan"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-PHyg52I8I9TeSoWKLx2aqMF7Csym4Hnq83fO3hcVEOc="; 14 + hash = "sha256-Gp0JXjtU8TZl/k6HHWvMvdggIgyn4zqLyyBqiPtlkA8="; 15 15 }; 16 16 17 17 propagatedBuildInputs = with python3.pkgs; [
+3 -3
pkgs/development/tools/bacon/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "bacon"; 5 - version = "2.2.5"; 5 + version = "2.2.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Canop"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-KoAaECfZ8DwGN/U1HCp/4NUvTvFYiN+li3I5gNYM/oU="; 11 + sha256 = "sha256-GVwaqpczo+9bRA8VUwpLTwP+3PQ0mqM+4F1K61WKaNA="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-ifUbUeqWm/gwOqzxY8lpGvW1ArZmGAy8XxAkvEfpLVQ="; 14 + cargoSha256 = "sha256-mdzNbGDA93MSuZw3gYXGIuHbt36WAlf/7JcxJtkl0mk="; 15 15 16 16 buildInputs = lib.optional stdenv.isDarwin CoreServices; 17 17
+2 -2
pkgs/development/tools/castxml/default.nix
··· 14 14 15 15 stdenv.mkDerivation (finalAttrs: { 16 16 pname = "castxml"; 17 - version = "0.5.0"; 17 + version = "0.5.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "CastXML"; 21 21 repo = "CastXML"; 22 22 rev = "v${finalAttrs.version}"; 23 - hash = "sha256-NJ6DIZWab9KayFALHON9GfYg6sQOf71SbtfV+3TYKLQ="; 23 + hash = "sha256-XZIVOrTY6Ib5Cu1WtTJm5Bqoas1NbNWbvJPWkpFqH2c="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/tools/haskell/lambdabot/default.nix
··· 20 20 ++ lib.optional withDjinn haskellPackages.djinn 21 21 ++ lib.optional (aspell != null) aspell 22 22 ); 23 - modulesStr = lib.replaceChars ["\n"] [" "] modules; 24 - configStr = lib.replaceChars ["\n"] [" "] configuration; 23 + modulesStr = lib.replaceStrings ["\n"] [" "] modules; 24 + configStr = lib.replaceStrings ["\n"] [" "] configuration; 25 25 26 26 in haskellLib.overrideCabal (self: { 27 27 patches = (self.patches or []) ++ [ ./custom-config.patch ];
+1 -1
pkgs/development/tools/misc/segger-ozone/default.nix
··· 19 19 version = "3.22a"; 20 20 21 21 src = fetchurl { 22 - url = "https://www.segger.com/downloads/jlink/Ozone_Linux_V${(lib.replaceChars ["."] [""] version)}_x86_64.tgz"; 22 + url = "https://www.segger.com/downloads/jlink/Ozone_Linux_V${(lib.replaceStrings ["."] [""] version)}_x86_64.tgz"; 23 23 sha256 = "0v1r8qvp1w2f3yip9fys004pa0smlmq69p7w77lfvghs1rmg1649"; 24 24 }; 25 25
+24 -9
pkgs/development/tools/nc4nix/default.nix
··· 1 1 { lib 2 2 , buildGoModule 3 - , fetchFromGitLab 3 + , fetchFromGitHub 4 4 , nix 5 5 , makeWrapper 6 + , fetchpatch 6 7 }: 7 8 8 9 buildGoModule rec { 9 10 pname = "nc4nix"; 10 - version = "unstable-2022-11-13"; 11 + version = "unstable-2022-12-07"; 11 12 12 - src = fetchFromGitLab { 13 - domain = "git.project-insanity.org"; 14 - owner = "onny"; 13 + src = fetchFromGitHub { 14 + owner = "helsinki-systems"; 15 15 repo = "nc4nix"; 16 - rev = "857e789287692e42f3fcaae039d6f323b383543b"; 17 - sha256 = "sha256-ekuvqTyoaYiNju4yiQLPmxaXaGD4T3Wv9A8CHY1MZOI="; 16 + rev = "c556a596b1d40ff69b71adab257ec5ae51ba4df1"; 17 + sha256 = "sha256-EIPCMiVTf0ryXRMRGhepORaOlimt3/funvUdORRbVa8="; 18 18 }; 19 + 20 + patches = [ 21 + # Switch hash calculation method 22 + (fetchpatch { 23 + url = "https://github.com/helsinki-systems/nc4nix/commit/88c182fbdddef148e086fa86438dcd72208efd75.patch"; 24 + sha256 = "sha256-zAF0+t9wHrKhhyD0+/d58BiaavLHfxO8X5J6vNlEWx0="; 25 + name = "switch_hash_calculation_method.patch"; 26 + }) 27 + # Add package selection command line argument 28 + (fetchpatch { 29 + url = "https://github.com/helsinki-systems/nc4nix/pull/2/commits/449eec89538df4e92106d06046831202eb84a1db.patch"; 30 + sha256 = "sha256-qAAbR1G748+2vwwfAhpe8luVEIKNGifqXqTV9QqaUFc="; 31 + name = "add_package_selection_command_line_arg.patch"; 32 + }) 33 + ]; 19 34 20 35 vendorSha256 = "sha256-uhINWxFny/OY7M2vV3ehFzP90J6Z8cn5IZHWOuEg91M="; 21 36 ··· 46 31 47 32 meta = with lib; { 48 33 description = "Packaging helper for Nextcloud apps"; 49 - homepage = "https://git.project-insanity.org/onny/nc4nix"; 50 - license = licenses.unfree; 34 + homepage = "https://github.com/helsinki-systems/nc4nix"; 35 + license = licenses.mit; 51 36 maintainers = with maintainers; [ onny ]; 52 37 platforms = platforms.linux; 53 38 };
+3 -3
pkgs/development/tools/rust/cargo-generate/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "cargo-generate"; 13 - version = "0.17.3"; 13 + version = "0.17.4"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "cargo-generate"; 17 17 repo = "cargo-generate"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-7F6Pqq/iFmI3JzDKoMmSyVm6BUr+Ev9GPidOofcLNV4="; 19 + sha256 = "sha256-3dJ16G1PCLAV1sxtDt+eru+Chg7SWt+K/crJgXMO++k="; 20 20 }; 21 21 22 22 # patch Cargo.toml to not vendor libgit2 and openssl 23 23 cargoPatches = [ ./no-vendor.patch ]; 24 24 25 - cargoSha256 = "sha256-kC8BGobS1iMq+vIwE24Lip+HGdVnA/NjHFAb6cqOz44="; 25 + cargoSha256 = "sha256-eLPLBBytzjKfJk0pbPBC0kJrxkelfDrAj5kaM6g9z9w="; 26 26 27 27 nativeBuildInputs = [ pkg-config ]; 28 28
+3 -3
pkgs/development/tools/rust/cargo-release/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "cargo-release"; 13 - version = "0.24.0"; 13 + version = "0.24.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "crate-ci"; 17 17 repo = "cargo-release"; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-+sMlbihareVn//TaCTEMU0iDnboneRhb8FcPmY0Q04A="; 19 + sha256 = "sha256-vVbIwYfjU3Fmqwd7H7xZNYfrZlgMNdsxPGKLCjc6Ud0="; 20 20 }; 21 21 22 - cargoSha256 = "sha256-MqS8jSjukZfD86onInFZJOtI5ntNmpb/tvwAil2rAZA="; 22 + cargoSha256 = "sha256-uiz7SwHDL7NQroiTO2gK/WA5AS9LTQram73cAU60Lac="; 23 23 24 24 nativeBuildInputs = [ pkg-config ]; 25 25
+1 -1
pkgs/development/web/kcgi/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 pname = "kcgi"; 5 5 version = "0.10.8"; 6 - underscoreVersion = lib.replaceChars ["."] ["_"] version; 6 + underscoreVersion = lib.replaceStrings ["."] ["_"] version; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "kristapsdz";
+2 -2
pkgs/development/web/newman/node-composition.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 1 + # This file has been generated by node2nix 1.11.1. Do not edit! 2 2 3 3 {pkgs ? import <nixpkgs> { 4 4 inherit system; ··· 6 6 7 7 let 8 8 nodeEnv = import ./node-env.nix { 9 - inherit (pkgs) stdenv lib python2 runCommand writeTextFile; 9 + inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript; 10 10 inherit pkgs nodejs; 11 11 libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; 12 12 };
+171 -52
pkgs/development/web/newman/node-env.nix
··· 1 1 # This file originates from node2nix 2 2 3 - {lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile}: 3 + {lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript}: 4 4 5 5 let 6 6 # Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master ··· 40 40 ''; 41 41 }; 42 42 43 - includeDependencies = {dependencies}: 44 - lib.optionalString (dependencies != []) 45 - (lib.concatMapStrings (dependency: 46 - '' 47 - # Bundle the dependencies of the package 48 - mkdir -p node_modules 49 - cd node_modules 43 + # Common shell logic 44 + installPackage = writeShellScript "install-package" '' 45 + installPackage() { 46 + local packageName=$1 src=$2 50 47 51 - # Only include dependencies if they don't exist. They may also be bundled in the package. 52 - if [ ! -e "${dependency.name}" ] 53 - then 54 - ${composePackage dependency} 55 - fi 48 + local strippedName 56 49 57 - cd .. 58 - '' 59 - ) dependencies); 60 - 61 - # Recursively composes the dependencies of a package 62 - composePackage = { name, packageName, src, dependencies ? [], ... }@args: 63 - builtins.addErrorContext "while evaluating node package '${packageName}'" '' 64 - DIR=$(pwd) 50 + local DIR=$PWD 65 51 cd $TMPDIR 66 52 67 - unpackFile ${src} 53 + unpackFile $src 68 54 69 55 # Make the base dir in which the target dependency resides first 70 - mkdir -p "$(dirname "$DIR/${packageName}")" 56 + mkdir -p "$(dirname "$DIR/$packageName")" 71 57 72 - if [ -f "${src}" ] 58 + if [ -f "$src" ] 73 59 then 74 60 # Figure out what directory has been unpacked 75 61 packageDir="$(find . -maxdepth 1 -type d | tail -1)" ··· 65 79 chmod -R u+w "$packageDir" 66 80 67 81 # Move the extracted tarball into the output folder 68 - mv "$packageDir" "$DIR/${packageName}" 69 - elif [ -d "${src}" ] 82 + mv "$packageDir" "$DIR/$packageName" 83 + elif [ -d "$src" ] 70 84 then 71 85 # Get a stripped name (without hash) of the source directory. 72 86 # On old nixpkgs it's already set internally. 73 87 if [ -z "$strippedName" ] 74 88 then 75 - strippedName="$(stripHash ${src})" 89 + strippedName="$(stripHash $src)" 76 90 fi 77 91 78 92 # Restore write permissions to make building work 79 93 chmod -R u+w "$strippedName" 80 94 81 95 # Move the extracted directory into the output folder 82 - mv "$strippedName" "$DIR/${packageName}" 96 + mv "$strippedName" "$DIR/$packageName" 83 97 fi 84 98 85 - # Unset the stripped name to not confuse the next unpack step 86 - unset strippedName 99 + # Change to the package directory to install dependencies 100 + cd "$DIR/$packageName" 101 + } 102 + ''; 87 103 88 - # Include the dependencies of the package 89 - cd "$DIR/${packageName}" 104 + # Bundle the dependencies of the package 105 + # 106 + # Only include dependencies if they don't exist. They may also be bundled in the package. 107 + includeDependencies = {dependencies}: 108 + lib.optionalString (dependencies != []) ( 109 + '' 110 + mkdir -p node_modules 111 + cd node_modules 112 + '' 113 + + (lib.concatMapStrings (dependency: 114 + '' 115 + if [ ! -e "${dependency.packageName}" ]; then 116 + ${composePackage dependency} 117 + fi 118 + '' 119 + ) dependencies) 120 + + '' 121 + cd .. 122 + '' 123 + ); 124 + 125 + # Recursively composes the dependencies of a package 126 + composePackage = { name, packageName, src, dependencies ? [], ... }@args: 127 + builtins.addErrorContext "while evaluating node package '${packageName}'" '' 128 + installPackage "${packageName}" "${src}" 90 129 ${includeDependencies { inherit dependencies; }} 91 130 cd .. 92 131 ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} ··· 165 154 if(process.argv[2] == "development") { 166 155 replaceDependencies(packageObj.devDependencies); 167 156 } 157 + else { 158 + packageObj.devDependencies = {}; 159 + } 168 160 replaceDependencies(packageObj.optionalDependencies); 161 + replaceDependencies(packageObj.peerDependencies); 169 162 170 163 /* Write the fixed package.json file */ 171 164 fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2)); ··· 261 246 var packageLock = JSON.parse(fs.readFileSync("./package-lock.json")); 262 247 263 248 if(![1, 2].includes(packageLock.lockfileVersion)) { 264 - process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n"); 265 - process.exit(1); 249 + process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n"); 250 + process.exit(1); 266 251 } 267 252 268 253 if(packageLock.dependencies !== undefined) { ··· 274 259 275 260 # Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes 276 261 reconstructPackageLock = writeTextFile { 277 - name = "addintegrityfields.js"; 262 + name = "reconstructpackagelock.js"; 278 263 text = '' 279 264 var fs = require('fs'); 280 265 var path = require('path'); ··· 284 269 var lockObj = { 285 270 name: packageObj.name, 286 271 version: packageObj.version, 287 - lockfileVersion: 1, 272 + lockfileVersion: 2, 288 273 requires: true, 274 + packages: { 275 + "": { 276 + name: packageObj.name, 277 + version: packageObj.version, 278 + license: packageObj.license, 279 + bin: packageObj.bin, 280 + dependencies: packageObj.dependencies, 281 + engines: packageObj.engines, 282 + optionalDependencies: packageObj.optionalDependencies 283 + } 284 + }, 289 285 dependencies: {} 290 286 }; 291 287 292 - function augmentPackageJSON(filePath, dependencies) { 288 + function augmentPackageJSON(filePath, packages, dependencies) { 293 289 var packageJSON = path.join(filePath, "package.json"); 294 290 if(fs.existsSync(packageJSON)) { 295 291 var packageObj = JSON.parse(fs.readFileSync(packageJSON)); 292 + packages[filePath] = { 293 + version: packageObj.version, 294 + integrity: "sha1-000000000000000000000000000=", 295 + dependencies: packageObj.dependencies, 296 + engines: packageObj.engines, 297 + optionalDependencies: packageObj.optionalDependencies 298 + }; 296 299 dependencies[packageObj.name] = { 297 300 version: packageObj.version, 298 301 integrity: "sha1-000000000000000000000000000=", 299 302 dependencies: {} 300 303 }; 301 - processDependencies(path.join(filePath, "node_modules"), dependencies[packageObj.name].dependencies); 304 + processDependencies(path.join(filePath, "node_modules"), packages, dependencies[packageObj.name].dependencies); 302 305 } 303 306 } 304 307 305 - function processDependencies(dir, dependencies) { 308 + function processDependencies(dir, packages, dependencies) { 306 309 if(fs.existsSync(dir)) { 307 310 var files = fs.readdirSync(dir); 308 311 ··· 336 303 pkgFiles.forEach(function(entry) { 337 304 if(stats.isDirectory()) { 338 305 var pkgFilePath = path.join(filePath, entry); 339 - augmentPackageJSON(pkgFilePath, dependencies); 306 + augmentPackageJSON(pkgFilePath, packages, dependencies); 340 307 } 341 308 }); 342 309 } else { 343 - augmentPackageJSON(filePath, dependencies); 310 + augmentPackageJSON(filePath, packages, dependencies); 344 311 } 345 312 } 346 313 }); 347 314 } 348 315 } 349 316 350 - processDependencies("node_modules", lockObj.dependencies); 317 + processDependencies("node_modules", lockObj.packages, lockObj.dependencies); 351 318 352 319 fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2)); 320 + ''; 321 + }; 322 + 323 + # Script that links bins defined in package.json to the node_modules bin directory 324 + # NPM does not do this for top-level packages itself anymore as of v7 325 + linkBinsScript = writeTextFile { 326 + name = "linkbins.js"; 327 + text = '' 328 + var fs = require('fs'); 329 + var path = require('path'); 330 + 331 + var packageObj = JSON.parse(fs.readFileSync("package.json")); 332 + 333 + var nodeModules = Array(packageObj.name.split("/").length).fill("..").join(path.sep); 334 + 335 + if(packageObj.bin !== undefined) { 336 + fs.mkdirSync(path.join(nodeModules, ".bin")) 337 + 338 + if(typeof packageObj.bin == "object") { 339 + Object.keys(packageObj.bin).forEach(function(exe) { 340 + if(fs.existsSync(packageObj.bin[exe])) { 341 + console.log("linking bin '" + exe + "'"); 342 + fs.symlinkSync( 343 + path.join("..", packageObj.name, packageObj.bin[exe]), 344 + path.join(nodeModules, ".bin", exe) 345 + ); 346 + } 347 + else { 348 + console.log("skipping non-existent bin '" + exe + "'"); 349 + } 350 + }) 351 + } 352 + else { 353 + if(fs.existsSync(packageObj.bin)) { 354 + console.log("linking bin '" + packageObj.bin + "'"); 355 + fs.symlinkSync( 356 + path.join("..", packageObj.name, packageObj.bin), 357 + path.join(nodeModules, ".bin", packageObj.name.split("/").pop()) 358 + ); 359 + } 360 + else { 361 + console.log("skipping non-existent bin '" + packageObj.bin + "'"); 362 + } 363 + } 364 + } 365 + else if(packageObj.directories !== undefined && packageObj.directories.bin !== undefined) { 366 + fs.mkdirSync(path.join(nodeModules, ".bin")) 367 + 368 + fs.readdirSync(packageObj.directories.bin).forEach(function(exe) { 369 + if(fs.existsSync(path.join(packageObj.directories.bin, exe))) { 370 + console.log("linking bin '" + exe + "'"); 371 + fs.symlinkSync( 372 + path.join("..", packageObj.name, packageObj.directories.bin, exe), 373 + path.join(nodeModules, ".bin", exe) 374 + ); 375 + } 376 + else { 377 + console.log("skipping non-existent bin '" + exe + "'"); 378 + } 379 + }) 380 + } 353 381 ''; 354 382 }; 355 383 ··· 460 366 461 367 npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} rebuild 462 368 369 + runHook postRebuild 370 + 463 371 if [ "''${dontNpmInstall-}" != "1" ] 464 372 then 465 373 # NPM tries to download packages even when they already exist if npm-shrinkwrap is used. 466 374 rm -f npm-shrinkwrap.json 467 375 468 - npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} install 376 + npm ${forceOfflineFlag} --nodedir=${nodeSources} --no-bin-links --ignore-scripts ${npmFlags} ${lib.optionalString production "--production"} install 469 377 fi 378 + 379 + # Link executables defined in package.json 380 + node ${linkBinsScript} 470 381 ''; 471 382 472 383 # Builds and composes an NPM package including all its dependencies 473 384 buildNodePackage = 474 385 { name 475 386 , packageName 476 - , version 387 + , version ? null 477 388 , dependencies ? [] 478 389 , buildInputs ? [] 479 390 , production ? true ··· 490 391 , dontStrip ? true 491 392 , unpackPhase ? "true" 492 393 , buildPhase ? "true" 394 + , meta ? {} 493 395 , ... }@args: 494 396 495 397 let 496 - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" ]; 398 + extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta" ]; 497 399 in 498 400 stdenv.mkDerivation ({ 499 - name = "node_${name}-${version}"; 401 + name = "${name}${if version == null then "" else "-${version}"}"; 500 402 buildInputs = [ tarWrapper python nodejs ] 501 403 ++ lib.optional (stdenv.isLinux) utillinux 502 404 ++ lib.optional (stdenv.isDarwin) libtool ··· 514 414 passAsFile = [ "compositionScript" "pinpointDependenciesScript" ]; 515 415 516 416 installPhase = '' 417 + source ${installPackage} 418 + 517 419 # Create and enter a root node_modules/ folder 518 420 mkdir -p $out/lib/node_modules 519 421 cd $out/lib/node_modules ··· 529 427 if [ -d "$out/lib/node_modules/.bin" ] 530 428 then 531 429 ln -s $out/lib/node_modules/.bin $out/bin 430 + 431 + # Patch the shebang lines of all the executables 432 + ls $out/bin/* | while read i 433 + do 434 + file="$(readlink -f "$i")" 435 + chmod u+rwx "$file" 436 + patchShebangs "$file" 437 + done 532 438 fi 533 439 534 440 # Create symlinks to the deployed manual page folders, if applicable ··· 556 446 # Run post install hook, if provided 557 447 runHook postInstall 558 448 ''; 449 + 450 + meta = { 451 + # default to Node.js' platforms 452 + platforms = nodejs.meta.platforms; 453 + } // meta; 559 454 } // extraArgs); 560 455 561 456 # Builds a node environment (a node_modules folder and a set of binaries) 562 457 buildNodeDependencies = 563 458 { name 564 459 , packageName 565 - , version 460 + , version ? null 566 461 , src 567 462 , dependencies ? [] 568 463 , buildInputs ? [] ··· 585 470 extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ]; 586 471 in 587 472 stdenv.mkDerivation ({ 588 - name = "node-dependencies-${name}-${version}"; 473 + name = "node-dependencies-${name}${if version == null then "" else "-${version}"}"; 589 474 590 475 buildInputs = [ tarWrapper python nodejs ] 591 476 ++ lib.optional (stdenv.isLinux) utillinux ··· 601 486 passAsFile = [ "includeScript" "pinpointDependenciesScript" ]; 602 487 603 488 installPhase = '' 489 + source ${installPackage} 490 + 604 491 mkdir -p $out/${packageName} 605 492 cd $out/${packageName} 606 493 ··· 615 498 if [ -f ${src}/package-lock.json ] 616 499 then 617 500 cp ${src}/package-lock.json . 501 + chmod 644 package-lock.json 618 502 fi 619 503 ''} 620 504 ··· 638 520 buildNodeShell = 639 521 { name 640 522 , packageName 641 - , version 523 + , version ? null 642 524 , src 643 525 , dependencies ? [] 644 526 , buildInputs ? [] ··· 654 536 655 537 let 656 538 nodeDependencies = buildNodeDependencies args; 539 + extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "unpackPhase" "buildPhase" ]; 657 540 in 658 - stdenv.mkDerivation { 659 - name = "node-shell-${name}-${version}"; 541 + stdenv.mkDerivation ({ 542 + name = "node-shell-${name}${if version == null then "" else "-${version}"}"; 660 543 661 544 buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs; 662 545 buildCommand = '' ··· 676 557 export NODE_PATH=${nodeDependencies}/lib/node_modules 677 558 export PATH="${nodeDependencies}/bin:$PATH" 678 559 ''; 679 - }; 560 + } // extraArgs); 680 561 in 681 562 { 682 563 buildNodeSourceDist = lib.makeOverridable buildNodeSourceDist;
+1508 -1618
pkgs/development/web/newman/node-packages.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 1 + # This file has been generated by node2nix 1.11.1. Do not edit! 2 2 3 3 {nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}: 4 4 5 5 let 6 6 sources = { 7 + "@ampproject/remapping-2.2.0" = { 8 + name = "_at_ampproject_slash_remapping"; 9 + packageName = "@ampproject/remapping"; 10 + version = "2.2.0"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"; 13 + sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; 14 + }; 15 + }; 7 16 "@babel/code-frame-7.12.11" = { 8 17 name = "_at_babel_slash_code-frame"; 9 18 packageName = "@babel/code-frame"; ··· 22 13 sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; 23 14 }; 24 15 }; 25 - "@babel/core-7.12.10" = { 16 + "@babel/code-frame-7.18.6" = { 17 + name = "_at_babel_slash_code-frame"; 18 + packageName = "@babel/code-frame"; 19 + version = "7.18.6"; 20 + src = fetchurl { 21 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz"; 22 + sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; 23 + }; 24 + }; 25 + "@babel/compat-data-7.20.5" = { 26 + name = "_at_babel_slash_compat-data"; 27 + packageName = "@babel/compat-data"; 28 + version = "7.20.5"; 29 + src = fetchurl { 30 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.5.tgz"; 31 + sha512 = "KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g=="; 32 + }; 33 + }; 34 + "@babel/core-7.20.5" = { 26 35 name = "_at_babel_slash_core"; 27 36 packageName = "@babel/core"; 28 - version = "7.12.10"; 37 + version = "7.20.5"; 29 38 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz"; 31 - sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 39 + url = "https://registry.npmjs.org/@babel/core/-/core-7.20.5.tgz"; 40 + sha512 = "UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ=="; 32 41 }; 33 42 }; 34 - "@babel/generator-7.12.11" = { 43 + "@babel/generator-7.20.5" = { 35 44 name = "_at_babel_slash_generator"; 36 45 packageName = "@babel/generator"; 37 - version = "7.12.11"; 46 + version = "7.20.5"; 38 47 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz"; 40 - sha512 = "Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA=="; 48 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.20.5.tgz"; 49 + sha512 = "jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA=="; 41 50 }; 42 51 }; 43 - "@babel/helper-function-name-7.12.11" = { 52 + "@babel/helper-compilation-targets-7.20.0" = { 53 + name = "_at_babel_slash_helper-compilation-targets"; 54 + packageName = "@babel/helper-compilation-targets"; 55 + version = "7.20.0"; 56 + src = fetchurl { 57 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz"; 58 + sha512 = "0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ=="; 59 + }; 60 + }; 61 + "@babel/helper-environment-visitor-7.18.9" = { 62 + name = "_at_babel_slash_helper-environment-visitor"; 63 + packageName = "@babel/helper-environment-visitor"; 64 + version = "7.18.9"; 65 + src = fetchurl { 66 + url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz"; 67 + sha512 = "3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="; 68 + }; 69 + }; 70 + "@babel/helper-function-name-7.19.0" = { 44 71 name = "_at_babel_slash_helper-function-name"; 45 72 packageName = "@babel/helper-function-name"; 46 - version = "7.12.11"; 73 + version = "7.19.0"; 47 74 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz"; 49 - sha512 = "AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA=="; 75 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz"; 76 + sha512 = "WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w=="; 50 77 }; 51 78 }; 52 - "@babel/helper-get-function-arity-7.12.10" = { 53 - name = "_at_babel_slash_helper-get-function-arity"; 54 - packageName = "@babel/helper-get-function-arity"; 55 - version = "7.12.10"; 79 + "@babel/helper-hoist-variables-7.18.6" = { 80 + name = "_at_babel_slash_helper-hoist-variables"; 81 + packageName = "@babel/helper-hoist-variables"; 82 + version = "7.18.6"; 56 83 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz"; 58 - sha512 = "mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag=="; 84 + url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz"; 85 + sha512 = "UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="; 59 86 }; 60 87 }; 61 - "@babel/helper-member-expression-to-functions-7.12.7" = { 62 - name = "_at_babel_slash_helper-member-expression-to-functions"; 63 - packageName = "@babel/helper-member-expression-to-functions"; 64 - version = "7.12.7"; 65 - src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz"; 67 - sha512 = "DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw=="; 68 - }; 69 - }; 70 - "@babel/helper-module-imports-7.12.5" = { 88 + "@babel/helper-module-imports-7.18.6" = { 71 89 name = "_at_babel_slash_helper-module-imports"; 72 90 packageName = "@babel/helper-module-imports"; 73 - version = "7.12.5"; 91 + version = "7.18.6"; 74 92 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz"; 76 - sha512 = "SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA=="; 93 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz"; 94 + sha512 = "0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="; 77 95 }; 78 96 }; 79 - "@babel/helper-module-transforms-7.12.1" = { 97 + "@babel/helper-module-transforms-7.20.2" = { 80 98 name = "_at_babel_slash_helper-module-transforms"; 81 99 packageName = "@babel/helper-module-transforms"; 82 - version = "7.12.1"; 100 + version = "7.20.2"; 83 101 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz"; 85 - sha512 = "QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w=="; 102 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz"; 103 + sha512 = "zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA=="; 86 104 }; 87 105 }; 88 - "@babel/helper-optimise-call-expression-7.12.10" = { 89 - name = "_at_babel_slash_helper-optimise-call-expression"; 90 - packageName = "@babel/helper-optimise-call-expression"; 91 - version = "7.12.10"; 92 - src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz"; 94 - sha512 = "4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ=="; 95 - }; 96 - }; 97 - "@babel/helper-replace-supers-7.12.11" = { 98 - name = "_at_babel_slash_helper-replace-supers"; 99 - packageName = "@babel/helper-replace-supers"; 100 - version = "7.12.11"; 101 - src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz"; 103 - sha512 = "q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA=="; 104 - }; 105 - }; 106 - "@babel/helper-simple-access-7.12.1" = { 106 + "@babel/helper-simple-access-7.20.2" = { 107 107 name = "_at_babel_slash_helper-simple-access"; 108 108 packageName = "@babel/helper-simple-access"; 109 - version = "7.12.1"; 109 + version = "7.20.2"; 110 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz"; 112 - sha512 = "OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA=="; 111 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz"; 112 + sha512 = "+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA=="; 113 113 }; 114 114 }; 115 - "@babel/helper-split-export-declaration-7.12.11" = { 115 + "@babel/helper-split-export-declaration-7.18.6" = { 116 116 name = "_at_babel_slash_helper-split-export-declaration"; 117 117 packageName = "@babel/helper-split-export-declaration"; 118 - version = "7.12.11"; 118 + version = "7.18.6"; 119 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz"; 121 - sha512 = "LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g=="; 120 + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz"; 121 + sha512 = "bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="; 122 122 }; 123 123 }; 124 - "@babel/helper-validator-identifier-7.12.11" = { 124 + "@babel/helper-string-parser-7.19.4" = { 125 + name = "_at_babel_slash_helper-string-parser"; 126 + packageName = "@babel/helper-string-parser"; 127 + version = "7.19.4"; 128 + src = fetchurl { 129 + url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"; 130 + sha512 = "nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="; 131 + }; 132 + }; 133 + "@babel/helper-validator-identifier-7.19.1" = { 125 134 name = "_at_babel_slash_helper-validator-identifier"; 126 135 packageName = "@babel/helper-validator-identifier"; 127 - version = "7.12.11"; 136 + version = "7.19.1"; 128 137 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"; 130 - sha512 = "np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="; 138 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"; 139 + sha512 = "awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="; 131 140 }; 132 141 }; 133 - "@babel/helpers-7.12.5" = { 142 + "@babel/helper-validator-option-7.18.6" = { 143 + name = "_at_babel_slash_helper-validator-option"; 144 + packageName = "@babel/helper-validator-option"; 145 + version = "7.18.6"; 146 + src = fetchurl { 147 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz"; 148 + sha512 = "XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="; 149 + }; 150 + }; 151 + "@babel/helpers-7.20.6" = { 134 152 name = "_at_babel_slash_helpers"; 135 153 packageName = "@babel/helpers"; 136 - version = "7.12.5"; 154 + version = "7.20.6"; 137 155 src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz"; 139 - sha512 = "lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA=="; 156 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.6.tgz"; 157 + sha512 = "Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w=="; 140 158 }; 141 159 }; 142 - "@babel/highlight-7.10.4" = { 160 + "@babel/highlight-7.18.6" = { 143 161 name = "_at_babel_slash_highlight"; 144 162 packageName = "@babel/highlight"; 145 - version = "7.10.4"; 163 + version = "7.18.6"; 146 164 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz"; 148 - sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA=="; 165 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"; 166 + sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 149 167 }; 150 168 }; 151 - "@babel/parser-7.12.11" = { 169 + "@babel/parser-7.20.5" = { 152 170 name = "_at_babel_slash_parser"; 153 171 packageName = "@babel/parser"; 154 - version = "7.12.11"; 172 + version = "7.20.5"; 155 173 src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz"; 157 - sha512 = "N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg=="; 174 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.20.5.tgz"; 175 + sha512 = "r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA=="; 158 176 }; 159 177 }; 160 - "@babel/template-7.12.7" = { 178 + "@babel/template-7.18.10" = { 161 179 name = "_at_babel_slash_template"; 162 180 packageName = "@babel/template"; 163 - version = "7.12.7"; 181 + version = "7.18.10"; 164 182 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz"; 166 - sha512 = "GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow=="; 183 + url = "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz"; 184 + sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="; 167 185 }; 168 186 }; 169 - "@babel/traverse-7.12.12" = { 187 + "@babel/traverse-7.20.5" = { 170 188 name = "_at_babel_slash_traverse"; 171 189 packageName = "@babel/traverse"; 172 - version = "7.12.12"; 190 + version = "7.20.5"; 173 191 src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz"; 175 - sha512 = "s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w=="; 192 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.5.tgz"; 193 + sha512 = "WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ=="; 176 194 }; 177 195 }; 178 - "@babel/types-7.12.12" = { 196 + "@babel/types-7.20.5" = { 179 197 name = "_at_babel_slash_types"; 180 198 packageName = "@babel/types"; 181 - version = "7.12.12"; 199 + version = "7.20.5"; 182 200 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz"; 184 - sha512 = "lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ=="; 201 + url = "https://registry.npmjs.org/@babel/types/-/types-7.20.5.tgz"; 202 + sha512 = "c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg=="; 185 203 }; 186 204 }; 187 - "@eslint/eslintrc-0.3.0" = { 205 + "@es-joy/jsdoccomment-0.10.8" = { 206 + name = "_at_es-joy_slash_jsdoccomment"; 207 + packageName = "@es-joy/jsdoccomment"; 208 + version = "0.10.8"; 209 + src = fetchurl { 210 + url = "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.10.8.tgz"; 211 + sha512 = "3P1JiGL4xaR9PoTKUHa2N/LKwa2/eUdRqGwijMWWgBqbFEqJUVpmaOi2TcjcemrsRMgFLBzQCK4ToPhrSVDiFQ=="; 212 + }; 213 + }; 214 + "@eslint/eslintrc-0.4.3" = { 188 215 name = "_at_eslint_slash_eslintrc"; 189 216 packageName = "@eslint/eslintrc"; 190 - version = "0.3.0"; 217 + version = "0.4.3"; 191 218 src = fetchurl { 192 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.3.0.tgz"; 193 - sha512 = "1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg=="; 219 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"; 220 + sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 221 + }; 222 + }; 223 + "@humanwhocodes/config-array-0.5.0" = { 224 + name = "_at_humanwhocodes_slash_config-array"; 225 + packageName = "@humanwhocodes/config-array"; 226 + version = "0.5.0"; 227 + src = fetchurl { 228 + url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"; 229 + sha512 = "FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg=="; 230 + }; 231 + }; 232 + "@humanwhocodes/object-schema-1.2.1" = { 233 + name = "_at_humanwhocodes_slash_object-schema"; 234 + packageName = "@humanwhocodes/object-schema"; 235 + version = "1.2.1"; 236 + src = fetchurl { 237 + url = "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"; 238 + sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; 194 239 }; 195 240 }; 196 241 "@istanbuljs/load-nyc-config-1.1.0" = { ··· 256 193 sha512 = "VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="; 257 194 }; 258 195 }; 259 - "@istanbuljs/schema-0.1.2" = { 196 + "@istanbuljs/schema-0.1.3" = { 260 197 name = "_at_istanbuljs_slash_schema"; 261 198 packageName = "@istanbuljs/schema"; 262 - version = "0.1.2"; 199 + version = "0.1.3"; 263 200 src = fetchurl { 264 - url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz"; 265 - sha512 = "tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw=="; 201 + url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"; 202 + sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="; 203 + }; 204 + }; 205 + "@jridgewell/gen-mapping-0.1.1" = { 206 + name = "_at_jridgewell_slash_gen-mapping"; 207 + packageName = "@jridgewell/gen-mapping"; 208 + version = "0.1.1"; 209 + src = fetchurl { 210 + url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"; 211 + sha512 = "sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="; 212 + }; 213 + }; 214 + "@jridgewell/gen-mapping-0.3.2" = { 215 + name = "_at_jridgewell_slash_gen-mapping"; 216 + packageName = "@jridgewell/gen-mapping"; 217 + version = "0.3.2"; 218 + src = fetchurl { 219 + url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"; 220 + sha512 = "mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="; 221 + }; 222 + }; 223 + "@jridgewell/resolve-uri-3.1.0" = { 224 + name = "_at_jridgewell_slash_resolve-uri"; 225 + packageName = "@jridgewell/resolve-uri"; 226 + version = "3.1.0"; 227 + src = fetchurl { 228 + url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"; 229 + sha512 = "F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="; 230 + }; 231 + }; 232 + "@jridgewell/set-array-1.1.2" = { 233 + name = "_at_jridgewell_slash_set-array"; 234 + packageName = "@jridgewell/set-array"; 235 + version = "1.1.2"; 236 + src = fetchurl { 237 + url = "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"; 238 + sha512 = "xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="; 239 + }; 240 + }; 241 + "@jridgewell/sourcemap-codec-1.4.14" = { 242 + name = "_at_jridgewell_slash_sourcemap-codec"; 243 + packageName = "@jridgewell/sourcemap-codec"; 244 + version = "1.4.14"; 245 + src = fetchurl { 246 + url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"; 247 + sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; 248 + }; 249 + }; 250 + "@jridgewell/trace-mapping-0.3.17" = { 251 + name = "_at_jridgewell_slash_trace-mapping"; 252 + packageName = "@jridgewell/trace-mapping"; 253 + version = "0.3.17"; 254 + src = fetchurl { 255 + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz"; 256 + sha512 = "MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g=="; 257 + }; 258 + }; 259 + "@jsdoc/salty-0.2.1" = { 260 + name = "_at_jsdoc_slash_salty"; 261 + packageName = "@jsdoc/salty"; 262 + version = "0.2.1"; 263 + src = fetchurl { 264 + url = "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.1.tgz"; 265 + sha512 = "JXwylDNSHa549N9uceDYu8D4GMXwSo3H8CCPYEQqxhhHpxD28+lRl2b3bS/caaPj5w1YD3SWtrficJNTnUjGpg=="; 266 266 }; 267 267 }; 268 268 "@postman/form-data-3.1.1" = { ··· 346 220 sha512 = "k57fzmAZ2PJGxfOA4SGR05ejorHbVAa/84Hxh/2nAztjNXc4ZjOm9NUIk6/Z6LCrBvJZqjRZbN8e/nROVUPVdg=="; 347 221 }; 348 222 }; 349 - "@sinonjs/commons-1.8.2" = { 223 + "@sinonjs/commons-1.8.6" = { 350 224 name = "_at_sinonjs_slash_commons"; 351 225 packageName = "@sinonjs/commons"; 352 - version = "1.8.2"; 226 + version = "1.8.6"; 353 227 src = fetchurl { 354 - url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz"; 355 - sha512 = "sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw=="; 228 + url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz"; 229 + sha512 = "Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ=="; 356 230 }; 357 231 }; 358 - "@sinonjs/fake-timers-6.0.1" = { 232 + "@sinonjs/commons-2.0.0" = { 233 + name = "_at_sinonjs_slash_commons"; 234 + packageName = "@sinonjs/commons"; 235 + version = "2.0.0"; 236 + src = fetchurl { 237 + url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz"; 238 + sha512 = "uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg=="; 239 + }; 240 + }; 241 + "@sinonjs/fake-timers-7.1.2" = { 359 242 name = "_at_sinonjs_slash_fake-timers"; 360 243 packageName = "@sinonjs/fake-timers"; 361 - version = "6.0.1"; 244 + version = "7.1.2"; 362 245 src = fetchurl { 363 - url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz"; 364 - sha512 = "MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA=="; 246 + url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-7.1.2.tgz"; 247 + sha512 = "iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg=="; 365 248 }; 366 249 }; 367 - "@sinonjs/samsam-5.3.1" = { 250 + "@sinonjs/fake-timers-9.1.2" = { 251 + name = "_at_sinonjs_slash_fake-timers"; 252 + packageName = "@sinonjs/fake-timers"; 253 + version = "9.1.2"; 254 + src = fetchurl { 255 + url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz"; 256 + sha512 = "BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw=="; 257 + }; 258 + }; 259 + "@sinonjs/samsam-6.1.3" = { 368 260 name = "_at_sinonjs_slash_samsam"; 369 261 packageName = "@sinonjs/samsam"; 370 - version = "5.3.1"; 262 + version = "6.1.3"; 371 263 src = fetchurl { 372 - url = "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-5.3.1.tgz"; 373 - sha512 = "1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg=="; 264 + url = "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-6.1.3.tgz"; 265 + sha512 = "nhOb2dWPeb1sd3IQXL/dVPnKHDOAFfvichtBf4xV00/rU1QbPCQqKMbvIheIjqwVjh7qIgf2AHTHi391yMOMpQ=="; 374 266 }; 375 267 }; 376 - "@sinonjs/text-encoding-0.7.1" = { 268 + "@sinonjs/text-encoding-0.7.2" = { 377 269 name = "_at_sinonjs_slash_text-encoding"; 378 270 packageName = "@sinonjs/text-encoding"; 379 - version = "0.7.1"; 271 + version = "0.7.2"; 380 272 src = fetchurl { 381 - url = "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz"; 382 - sha512 = "+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ=="; 273 + url = "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz"; 274 + sha512 = "sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ=="; 275 + }; 276 + }; 277 + "@types/linkify-it-3.0.2" = { 278 + name = "_at_types_slash_linkify-it"; 279 + packageName = "@types/linkify-it"; 280 + version = "3.0.2"; 281 + src = fetchurl { 282 + url = "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.2.tgz"; 283 + sha512 = "HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA=="; 284 + }; 285 + }; 286 + "@types/markdown-it-12.2.3" = { 287 + name = "_at_types_slash_markdown-it"; 288 + packageName = "@types/markdown-it"; 289 + version = "12.2.3"; 290 + src = fetchurl { 291 + url = "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-12.2.3.tgz"; 292 + sha512 = "GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ=="; 293 + }; 294 + }; 295 + "@types/mdurl-1.0.2" = { 296 + name = "_at_types_slash_mdurl"; 297 + packageName = "@types/mdurl"; 298 + version = "1.0.2"; 299 + src = fetchurl { 300 + url = "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz"; 301 + sha512 = "eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA=="; 383 302 }; 384 303 }; 385 304 "@ungap/promise-all-settled-1.1.2" = { ··· 442 271 version = "1.3.2"; 443 272 src = fetchurl { 444 273 url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.2.tgz"; 445 - sha1 = "c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea"; 274 + sha512 = "mn0KSip7N4e0UDPZHnqDsHECo5uGQrixQKnAskOM1BIB8hd7QKbd6il8IPRPudPHOeHiECoCFqhyMaRO9+nWyA=="; 446 275 }; 447 276 }; 448 277 "acorn-7.4.1" = { ··· 454 283 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 455 284 }; 456 285 }; 457 - "acorn-jsx-5.3.1" = { 286 + "acorn-jsx-5.3.2" = { 458 287 name = "acorn-jsx"; 459 288 packageName = "acorn-jsx"; 460 - version = "5.3.1"; 289 + version = "5.3.2"; 461 290 src = fetchurl { 462 - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz"; 463 - sha512 = "K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng=="; 291 + url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"; 292 + sha512 = "rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="; 464 293 }; 465 294 }; 466 295 "aggregate-error-3.1.0" = { ··· 481 310 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 482 311 }; 483 312 }; 484 - "ajv-7.0.4" = { 313 + "ajv-8.11.2" = { 485 314 name = "ajv"; 486 315 packageName = "ajv"; 487 - version = "7.0.4"; 316 + version = "8.11.2"; 488 317 src = fetchurl { 489 - url = "https://registry.npmjs.org/ajv/-/ajv-7.0.4.tgz"; 490 - sha512 = "xzzzaqgEQfmuhbhAoqjJ8T/1okb6gAzXn/eQRNpAN1AEUoHJTNF9xCDRTtf/s3SKldtZfa+RJeTs+BQq+eZ/sw=="; 318 + url = "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz"; 319 + sha512 = "E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg=="; 491 320 }; 492 321 }; 493 322 "ansi-colors-4.1.1" = { ··· 499 328 sha512 = "JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="; 500 329 }; 501 330 }; 331 + "ansi-colors-4.1.3" = { 332 + name = "ansi-colors"; 333 + packageName = "ansi-colors"; 334 + version = "4.1.3"; 335 + src = fetchurl { 336 + url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz"; 337 + sha512 = "/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw=="; 338 + }; 339 + }; 502 340 "ansi-escape-sequences-4.1.0" = { 503 341 name = "ansi-escape-sequences"; 504 342 packageName = "ansi-escape-sequences"; ··· 517 337 sha512 = "dzW9kHxH011uBsidTXd14JXgzye/YLb2LzeKZ4bsgl/Knwx8AtbSFkkGxagdNOoh0DlqHCmfiEjWKBaqjOanVw=="; 518 338 }; 519 339 }; 520 - "ansi-regex-2.1.1" = { 340 + "ansi-regex-5.0.1" = { 521 341 name = "ansi-regex"; 522 342 packageName = "ansi-regex"; 523 - version = "2.1.1"; 343 + version = "5.0.1"; 524 344 src = fetchurl { 525 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 526 - sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 527 - }; 528 - }; 529 - "ansi-regex-3.0.0" = { 530 - name = "ansi-regex"; 531 - packageName = "ansi-regex"; 532 - version = "3.0.0"; 533 - src = fetchurl { 534 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"; 535 - sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 536 - }; 537 - }; 538 - "ansi-regex-4.1.0" = { 539 - name = "ansi-regex"; 540 - packageName = "ansi-regex"; 541 - version = "4.1.0"; 542 - src = fetchurl { 543 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"; 544 - sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 545 - }; 546 - }; 547 - "ansi-regex-5.0.0" = { 548 - name = "ansi-regex"; 549 - packageName = "ansi-regex"; 550 - version = "5.0.0"; 551 - src = fetchurl { 552 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"; 553 - sha512 = "bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="; 554 - }; 555 - }; 556 - "ansi-styles-2.2.1" = { 557 - name = "ansi-styles"; 558 - packageName = "ansi-styles"; 559 - version = "2.2.1"; 560 - src = fetchurl { 561 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; 562 - sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; 345 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"; 346 + sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 563 347 }; 564 348 }; 565 349 "ansi-styles-3.2.1" = { ··· 544 400 sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 545 401 }; 546 402 }; 547 - "anymatch-3.1.1" = { 403 + "anymatch-3.1.3" = { 548 404 name = "anymatch"; 549 405 packageName = "anymatch"; 550 - version = "3.1.1"; 406 + version = "3.1.3"; 551 407 src = fetchurl { 552 - url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz"; 553 - sha512 = "mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg=="; 408 + url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz"; 409 + sha512 = "KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="; 554 410 }; 555 411 }; 556 412 "append-transform-2.0.0" = { ··· 568 424 version = "1.0.0"; 569 425 src = fetchurl { 570 426 url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"; 571 - sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"; 427 + sha512 = "Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw=="; 572 428 }; 573 429 }; 574 430 "argparse-1.0.10" = { ··· 580 436 sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; 581 437 }; 582 438 }; 439 + "argparse-2.0.1" = { 440 + name = "argparse"; 441 + packageName = "argparse"; 442 + version = "2.0.1"; 443 + src = fetchurl { 444 + url = "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"; 445 + sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; 446 + }; 447 + }; 583 448 "array-back-1.0.4" = { 584 449 name = "array-back"; 585 450 packageName = "array-back"; 586 451 version = "1.0.4"; 587 452 src = fetchurl { 588 453 url = "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz"; 589 - sha1 = "644ba7f095f7ffcf7c43b5f0dc39d3c1f03c063b"; 454 + sha512 = "1WxbZvrmyhkNoeYcizokbmh5oiOCIfyvGtcqbK3Ls1v1fKcquzxnQSceOx6tzq7jmai2kFLWIpGND2cLhH6TPw=="; 590 455 }; 591 456 }; 592 457 "array-back-2.0.0" = { ··· 616 463 sha512 = "TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q=="; 617 464 }; 618 465 }; 619 - "array-back-4.0.1" = { 466 + "array-back-4.0.2" = { 620 467 name = "array-back"; 621 468 packageName = "array-back"; 622 - version = "4.0.1"; 469 + version = "4.0.2"; 623 470 src = fetchurl { 624 - url = "https://registry.npmjs.org/array-back/-/array-back-4.0.1.tgz"; 625 - sha512 = "Z/JnaVEXv+A9xabHzN43FiiiWEE7gPCRXMrVmRm00tWbjZRul1iHm7ECzlyNq1p4a4ATXz+G9FJ3GqGOkOV3fg=="; 471 + url = "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz"; 472 + sha512 = "NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg=="; 626 473 }; 627 474 }; 628 475 "array-back-5.0.0" = { ··· 634 481 sha512 = "kgVWwJReZWmVuWOQKEOohXKJX+nD02JAZ54D1RRWlv8L0NebauKAaFxACKzB74RTclt1+WNz5KHaLRDAPZbDEw=="; 635 482 }; 636 483 }; 637 - "array-uniq-1.0.3" = { 638 - name = "array-uniq"; 639 - packageName = "array-uniq"; 640 - version = "1.0.3"; 484 + "array-back-6.2.2" = { 485 + name = "array-back"; 486 + packageName = "array-back"; 487 + version = "6.2.2"; 641 488 src = fetchurl { 642 - url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"; 643 - sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; 489 + url = "https://registry.npmjs.org/array-back/-/array-back-6.2.2.tgz"; 490 + sha512 = "gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw=="; 644 491 }; 645 492 }; 646 - "asn1-0.2.4" = { 493 + "asn1-0.2.6" = { 647 494 name = "asn1"; 648 495 packageName = "asn1"; 649 - version = "0.2.4"; 496 + version = "0.2.6"; 650 497 src = fetchurl { 651 - url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"; 652 - sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; 498 + url = "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz"; 499 + sha512 = "ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ=="; 653 500 }; 654 501 }; 655 502 "assert-plus-1.0.0" = { ··· 658 505 version = "1.0.0"; 659 506 src = fetchurl { 660 507 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; 661 - sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; 508 + sha512 = "NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw=="; 662 509 }; 663 510 }; 664 511 "assertion-error-1.1.0" = { ··· 679 526 sha512 = "Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="; 680 527 }; 681 528 }; 682 - "async-1.0.0" = { 529 + "async-1.4.2" = { 683 530 name = "async"; 684 531 packageName = "async"; 685 - version = "1.0.0"; 532 + version = "1.4.2"; 686 533 src = fetchurl { 687 - url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz"; 688 - sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9"; 534 + url = "https://registry.npmjs.org/async/-/async-1.4.2.tgz"; 535 + sha512 = "O4fvy4JjdS0Q8MYH4jOODxJdXGbZ61eqfXdmfFDloHSnWoggxkn/+xWbh2eQbmQ6pJNliaravcTK1iQMpW9k4Q=="; 689 536 }; 690 537 }; 691 - "async-1.5.2" = { 538 + "async-2.6.4" = { 692 539 name = "async"; 693 540 packageName = "async"; 694 - version = "1.5.2"; 541 + version = "2.6.4"; 695 542 src = fetchurl { 696 - url = "https://registry.npmjs.org/async/-/async-1.5.2.tgz"; 697 - sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a"; 543 + url = "https://registry.npmjs.org/async/-/async-2.6.4.tgz"; 544 + sha512 = "mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="; 698 545 }; 699 546 }; 700 - "async-2.6.3" = { 547 + "async-3.2.3" = { 701 548 name = "async"; 702 549 packageName = "async"; 703 - version = "2.6.3"; 550 + version = "3.2.3"; 704 551 src = fetchurl { 705 - url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz"; 706 - sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; 707 - }; 708 - }; 709 - "async-3.2.0" = { 710 - name = "async"; 711 - packageName = "async"; 712 - version = "3.2.0"; 713 - src = fetchurl { 714 - url = "https://registry.npmjs.org/async/-/async-3.2.0.tgz"; 715 - sha512 = "TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw=="; 552 + url = "https://registry.npmjs.org/async/-/async-3.2.3.tgz"; 553 + sha512 = "spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g=="; 716 554 }; 717 555 }; 718 556 "asynckit-0.4.0" = { ··· 712 568 version = "0.4.0"; 713 569 src = fetchurl { 714 570 url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; 715 - sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 571 + sha512 = "Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="; 716 572 }; 717 573 }; 718 574 "aws-sign2-0.7.0" = { ··· 721 577 version = "0.7.0"; 722 578 src = fetchurl { 723 579 url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; 724 - sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 580 + sha512 = "08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA=="; 725 581 }; 726 582 }; 727 583 "aws4-1.11.0" = { ··· 733 589 sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 734 590 }; 735 591 }; 736 - "balanced-match-1.0.0" = { 592 + "balanced-match-1.0.2" = { 737 593 name = "balanced-match"; 738 594 packageName = "balanced-match"; 739 - version = "1.0.0"; 595 + version = "1.0.2"; 740 596 src = fetchurl { 741 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; 742 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 597 + url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"; 598 + sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; 743 599 }; 744 600 }; 745 601 "base64-js-1.5.1" = { ··· 757 613 version = "1.0.2"; 758 614 src = fetchurl { 759 615 url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; 760 - sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; 616 + sha512 = "qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w=="; 761 617 }; 762 618 }; 763 619 "binary-extensions-2.2.0" = { ··· 784 640 version = "2.11.0"; 785 641 src = fetchurl { 786 642 url = "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz"; 787 - sha1 = "534b9033c022c9579c56ba3b3e5a5caafbb650e1"; 643 + sha512 = "UfFSr22dmHPQqPP9XWHRhq+gWnHCYguQGkXQlbyPtW5qTnhFWA8/iXg765tH0cAjy7l/zPJ1aBTO0g5XgA7kvQ=="; 788 644 }; 789 645 }; 790 646 "bluebird-3.7.2" = { ··· 814 670 sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; 815 671 }; 816 672 }; 817 - "brotli-1.3.2" = { 673 + "brotli-1.3.3" = { 818 674 name = "brotli"; 819 675 packageName = "brotli"; 820 - version = "1.3.2"; 676 + version = "1.3.3"; 821 677 src = fetchurl { 822 - url = "https://registry.npmjs.org/brotli/-/brotli-1.3.2.tgz"; 823 - sha1 = "525a9cad4fcba96475d7d388f6aecb13eed52f46"; 678 + url = "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz"; 679 + sha512 = "oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg=="; 824 680 }; 825 681 }; 826 682 "browser-stdout-1.3.1" = { ··· 830 686 src = fetchurl { 831 687 url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz"; 832 688 sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="; 689 + }; 690 + }; 691 + "browserslist-4.21.4" = { 692 + name = "browserslist"; 693 + packageName = "browserslist"; 694 + version = "4.21.4"; 695 + src = fetchurl { 696 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz"; 697 + sha512 = "CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw=="; 833 698 }; 834 699 }; 835 700 "buffer-alloc-1.2.0" = { ··· 865 712 version = "1.0.0"; 866 713 src = fetchurl { 867 714 url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz"; 868 - sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c"; 715 + sha512 = "T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ=="; 869 716 }; 870 717 }; 871 - "buffer-from-1.1.1" = { 718 + "buffer-from-1.1.2" = { 872 719 name = "buffer-from"; 873 720 packageName = "buffer-from"; 874 - version = "1.1.1"; 721 + version = "1.1.2"; 875 722 src = fetchurl { 876 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; 877 - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 723 + url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"; 724 + sha512 = "E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="; 878 725 }; 879 726 }; 880 727 "cache-point-2.0.0" = { ··· 913 760 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 914 761 }; 915 762 }; 916 - "camelcase-6.2.0" = { 763 + "camelcase-6.3.0" = { 917 764 name = "camelcase"; 918 765 packageName = "camelcase"; 919 - version = "6.2.0"; 766 + version = "6.3.0"; 920 767 src = fetchurl { 921 - url = "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz"; 922 - sha512 = "c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="; 768 + url = "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"; 769 + sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="; 770 + }; 771 + }; 772 + "caniuse-lite-1.0.30001436" = { 773 + name = "caniuse-lite"; 774 + packageName = "caniuse-lite"; 775 + version = "1.0.30001436"; 776 + src = fetchurl { 777 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001436.tgz"; 778 + sha512 = "ZmWkKsnC2ifEPoWUvSAIGyOYwT+keAaaWPHiQ9DfMqS1t6tfuyFYoWR78TeZtznkEQ64+vGXH9cZrElwR2Mrxg=="; 923 779 }; 924 780 }; 925 781 "caseless-0.12.0" = { ··· 937 775 version = "0.12.0"; 938 776 src = fetchurl { 939 777 url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; 940 - sha1 = "1b681c21ff84033c826543090689420d187151dc"; 778 + sha512 = "4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw=="; 941 779 }; 942 780 }; 943 - "catharsis-0.8.11" = { 781 + "catharsis-0.9.0" = { 944 782 name = "catharsis"; 945 783 packageName = "catharsis"; 946 - version = "0.8.11"; 784 + version = "0.9.0"; 947 785 src = fetchurl { 948 - url = "https://registry.npmjs.org/catharsis/-/catharsis-0.8.11.tgz"; 949 - sha512 = "a+xUyMV7hD1BrDQA/3iPV7oc+6W26BgVJO05PGEoatMyIuPScQKsde6i3YorWX1qs+AZjnJ18NqdKoCtKiNh1g=="; 786 + url = "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz"; 787 + sha512 = "prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A=="; 950 788 }; 951 789 }; 952 - "chai-4.2.0" = { 790 + "chai-4.3.7" = { 953 791 name = "chai"; 954 792 packageName = "chai"; 955 - version = "4.2.0"; 793 + version = "4.3.7"; 956 794 src = fetchurl { 957 - url = "https://registry.npmjs.org/chai/-/chai-4.2.0.tgz"; 958 - sha512 = "XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw=="; 959 - }; 960 - }; 961 - "chalk-1.1.3" = { 962 - name = "chalk"; 963 - packageName = "chalk"; 964 - version = "1.1.3"; 965 - src = fetchurl { 966 - url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; 967 - sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; 795 + url = "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz"; 796 + sha512 = "HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A=="; 968 797 }; 969 798 }; 970 799 "chalk-2.4.2" = { ··· 967 814 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 968 815 }; 969 816 }; 970 - "chalk-4.1.0" = { 817 + "chalk-4.1.2" = { 971 818 name = "chalk"; 972 819 packageName = "chalk"; 973 - version = "4.1.0"; 820 + version = "4.1.2"; 974 821 src = fetchurl { 975 - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz"; 976 - sha512 = "qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A=="; 822 + url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"; 823 + sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 977 824 }; 978 825 }; 979 - "chardet-1.3.0" = { 826 + "chardet-1.4.0" = { 980 827 name = "chardet"; 981 828 packageName = "chardet"; 982 - version = "1.3.0"; 829 + version = "1.4.0"; 983 830 src = fetchurl { 984 - url = "https://registry.npmjs.org/chardet/-/chardet-1.3.0.tgz"; 985 - sha512 = "cyTQGGptIjIT+CMGT5J/0l9c6Fb+565GCFjjeUTKxUO7w3oR+FcNCMEKTn5xtVKaLFmladN7QF68IiQsv5Fbdw=="; 831 + url = "https://registry.npmjs.org/chardet/-/chardet-1.4.0.tgz"; 832 + sha512 = "NpwMDdSIprbYx1CLnfbxEIarI0Z+s9MssEgggMNheGM+WD68yOhV7IEA/3r6tr0yTRgQD0HuZJDw32s99i6L+A=="; 986 833 }; 987 834 }; 988 835 "charset-1.0.1" = { ··· 1000 847 version = "1.0.2"; 1001 848 src = fetchurl { 1002 849 url = "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz"; 1003 - sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82"; 850 + sha512 = "BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA=="; 1004 851 }; 1005 852 }; 1006 - "chokidar-3.4.3" = { 853 + "chokidar-3.5.3" = { 1007 854 name = "chokidar"; 1008 855 packageName = "chokidar"; 1009 - version = "3.4.3"; 856 + version = "3.5.3"; 1010 857 src = fetchurl { 1011 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz"; 1012 - sha512 = "DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ=="; 858 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"; 859 + sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; 1013 860 }; 1014 861 }; 1015 862 "chownr-1.1.4" = { ··· 1030 877 sha512 = "4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="; 1031 878 }; 1032 879 }; 1033 - "cli-progress-3.8.2" = { 880 + "cli-progress-3.10.0" = { 1034 881 name = "cli-progress"; 1035 882 packageName = "cli-progress"; 1036 - version = "3.8.2"; 883 + version = "3.10.0"; 1037 884 src = fetchurl { 1038 - url = "https://registry.npmjs.org/cli-progress/-/cli-progress-3.8.2.tgz"; 1039 - sha512 = "qRwBxLldMSfxB+YGFgNRaj5vyyHe1yMpVeDL79c+7puGujdKJHQHydgqXDcrkvQgJ5U/d3lpf6vffSoVVUftVQ=="; 885 + url = "https://registry.npmjs.org/cli-progress/-/cli-progress-3.10.0.tgz"; 886 + sha512 = "kLORQrhYCAtUPLZxqsAt2YJGOvRdt34+O6jl5cQGb7iF3dM55FQZlTR+rQyIK9JUcO9bBMwZsTlND+3dmFU2Cw=="; 1040 887 }; 1041 888 }; 1042 - "cli-table3-0.6.0" = { 889 + "cli-table3-0.6.1" = { 1043 890 name = "cli-table3"; 1044 891 packageName = "cli-table3"; 1045 - version = "0.6.0"; 892 + version = "0.6.1"; 1046 893 src = fetchurl { 1047 - url = "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.0.tgz"; 1048 - sha512 = "gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ=="; 1049 - }; 1050 - }; 1051 - "cliui-5.0.0" = { 1052 - name = "cliui"; 1053 - packageName = "cliui"; 1054 - version = "5.0.0"; 1055 - src = fetchurl { 1056 - url = "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz"; 1057 - sha512 = "PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA=="; 894 + url = "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.1.tgz"; 895 + sha512 = "w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA=="; 1058 896 }; 1059 897 }; 1060 898 "cliui-6.0.0" = { ··· 1055 911 src = fetchurl { 1056 912 url = "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz"; 1057 913 sha512 = "t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ=="; 914 + }; 915 + }; 916 + "cliui-7.0.4" = { 917 + name = "cliui"; 918 + packageName = "cliui"; 919 + version = "7.0.4"; 920 + src = fetchurl { 921 + url = "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz"; 922 + sha512 = "OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="; 1058 923 }; 1059 924 }; 1060 925 "collect-all-1.0.4" = { ··· 1099 946 version = "1.1.3"; 1100 947 src = fetchurl { 1101 948 url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; 1102 - sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 949 + sha512 = "72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="; 1103 950 }; 1104 951 }; 1105 952 "color-name-1.1.4" = { ··· 1117 964 version = "1.0.3"; 1118 965 src = fetchurl { 1119 966 url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; 1120 - sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; 967 + sha512 = "pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw=="; 1121 968 }; 1122 969 }; 1123 970 "colors-1.4.0" = { ··· 1138 985 sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; 1139 986 }; 1140 987 }; 1141 - "command-line-args-5.1.1" = { 988 + "command-line-args-5.2.1" = { 1142 989 name = "command-line-args"; 1143 990 packageName = "command-line-args"; 1144 - version = "5.1.1"; 991 + version = "5.2.1"; 1145 992 src = fetchurl { 1146 - url = "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz"; 1147 - sha512 = "hL/eG8lrll1Qy1ezvkant+trihbGnaKaeEjj6Scyr3DN+RC7iQ5Rz84IeLERfAWDGo0HBSNAakczwgCilDXnWg=="; 993 + url = "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz"; 994 + sha512 = "H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg=="; 1148 995 }; 1149 996 }; 1150 997 "command-line-tool-0.8.0" = { ··· 1180 1027 version = "2.9.0"; 1181 1028 src = fetchurl { 1182 1029 url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz"; 1183 - sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; 1030 + sha512 = "bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A=="; 1184 1031 }; 1185 1032 }; 1186 - "commander-6.2.0" = { 1033 + "commander-7.2.0" = { 1187 1034 name = "commander"; 1188 1035 packageName = "commander"; 1189 - version = "6.2.0"; 1036 + version = "7.2.0"; 1190 1037 src = fetchurl { 1191 - url = "https://registry.npmjs.org/commander/-/commander-6.2.0.tgz"; 1192 - sha512 = "zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q=="; 1038 + url = "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"; 1039 + sha512 = "QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="; 1193 1040 }; 1194 1041 }; 1195 - "commander-6.2.1" = { 1042 + "commander-8.3.0" = { 1196 1043 name = "commander"; 1197 1044 packageName = "commander"; 1198 - version = "6.2.1"; 1045 + version = "8.3.0"; 1199 1046 src = fetchurl { 1200 - url = "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz"; 1201 - sha512 = "U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="; 1047 + url = "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz"; 1048 + sha512 = "OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="; 1202 1049 }; 1203 1050 }; 1204 - "comment-parser-0.7.6" = { 1051 + "comment-parser-1.2.4" = { 1205 1052 name = "comment-parser"; 1206 1053 packageName = "comment-parser"; 1207 - version = "0.7.6"; 1054 + version = "1.2.4"; 1208 1055 src = fetchurl { 1209 - url = "https://registry.npmjs.org/comment-parser/-/comment-parser-0.7.6.tgz"; 1210 - sha512 = "GKNxVA7/iuTnAqGADlTWX4tkhzxZKXp5fLJqKTlQLHkE65XDUKutZ3BHaJC5IGcper2tT3QRD1xr4o3jNpgXXg=="; 1056 + url = "https://registry.npmjs.org/comment-parser/-/comment-parser-1.2.4.tgz"; 1057 + sha512 = "pm0b+qv+CkWNriSTMsfnjChF9kH0kxz55y44Wo5le9qLxMj5xDQAaEd9ZN1ovSuk9CsrncWaFwgpOMg7ClJwkw=="; 1211 1058 }; 1212 1059 }; 1213 - "common-sequence-2.0.0" = { 1060 + "common-sequence-2.0.2" = { 1214 1061 name = "common-sequence"; 1215 1062 packageName = "common-sequence"; 1216 - version = "2.0.0"; 1063 + version = "2.0.2"; 1217 1064 src = fetchurl { 1218 - url = "https://registry.npmjs.org/common-sequence/-/common-sequence-2.0.0.tgz"; 1219 - sha512 = "f0QqPLpRTgMQn/pQIynf+SdE73Lw5Q1jn4hjirHLgH/NJ71TiHjXusV16BmOyuK5rRQ1W2f++II+TFZbQOh4hA=="; 1065 + url = "https://registry.npmjs.org/common-sequence/-/common-sequence-2.0.2.tgz"; 1066 + sha512 = "jAg09gkdkrDO9EWTdXfv80WWH3yeZl5oT69fGfedBNS9pXUKYInVJ1bJ+/ht2+Moeei48TmSbQDYMc8EOx9G0g=="; 1220 1067 }; 1221 1068 }; 1222 1069 "commondir-1.0.1" = { ··· 1225 1072 version = "1.0.1"; 1226 1073 src = fetchurl { 1227 1074 url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"; 1228 - sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b"; 1075 + sha512 = "W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="; 1229 1076 }; 1230 1077 }; 1231 1078 "concat-map-0.0.1" = { ··· 1234 1081 version = "0.0.1"; 1235 1082 src = fetchurl { 1236 1083 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 1237 - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 1084 + sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="; 1238 1085 }; 1239 1086 }; 1240 1087 "concat-stream-1.6.2" = { ··· 1252 1099 version = "3.1.0"; 1253 1100 src = fetchurl { 1254 1101 url = "https://registry.npmjs.org/config-master/-/config-master-3.1.0.tgz"; 1255 - sha1 = "667663590505a283bf26a484d68489d74c5485da"; 1102 + sha512 = "n7LBL1zBzYdTpF1mx5DNcZnZn05CWIdsdvtPL4MosvqbBUK3Rq6VWEtGUuF3Y0s9/CIhMejezqlSkP6TnCJ/9g=="; 1256 1103 }; 1257 1104 }; 1258 - "convert-source-map-1.7.0" = { 1105 + "convert-source-map-1.9.0" = { 1259 1106 name = "convert-source-map"; 1260 1107 packageName = "convert-source-map"; 1261 - version = "1.7.0"; 1108 + version = "1.9.0"; 1262 1109 src = fetchurl { 1263 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz"; 1264 - sha512 = "4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA=="; 1110 + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz"; 1111 + sha512 = "ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="; 1265 1112 }; 1266 1113 }; 1267 1114 "core-util-is-1.0.2" = { ··· 1270 1117 version = "1.0.2"; 1271 1118 src = fetchurl { 1272 1119 url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; 1273 - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 1120 + sha512 = "3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ=="; 1274 1121 }; 1275 1122 }; 1276 1123 "cross-spawn-7.0.3" = { ··· 1282 1129 sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; 1283 1130 }; 1284 1131 }; 1285 - "csv-parse-4.14.2" = { 1132 + "csv-parse-4.16.3" = { 1286 1133 name = "csv-parse"; 1287 1134 packageName = "csv-parse"; 1288 - version = "4.14.2"; 1135 + version = "4.16.3"; 1289 1136 src = fetchurl { 1290 - url = "https://registry.npmjs.org/csv-parse/-/csv-parse-4.14.2.tgz"; 1291 - sha512 = "YE2xlTKtM035/94llhgsp9qFQxGi47EkQJ1pZ+mLT/98GpIsbjkMGAb7Rmu9hNxVfYFOLf10hP+rPVqnoccLgw=="; 1137 + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.3.tgz"; 1138 + sha512 = "cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg=="; 1292 1139 }; 1293 1140 }; 1294 1141 "cycle-1.0.3" = { ··· 1297 1144 version = "1.0.3"; 1298 1145 src = fetchurl { 1299 1146 url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; 1300 - sha1 = "21e80b2be8580f98b468f379430662b046c34ad2"; 1147 + sha512 = "TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA=="; 1301 1148 }; 1302 1149 }; 1303 1150 "dashdash-1.14.1" = { ··· 1306 1153 version = "1.14.1"; 1307 1154 src = fetchurl { 1308 1155 url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; 1309 - sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; 1156 + sha512 = "jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g=="; 1310 1157 }; 1311 1158 }; 1312 1159 "date-format-0.0.2" = { ··· 1315 1162 version = "0.0.2"; 1316 1163 src = fetchurl { 1317 1164 url = "https://registry.npmjs.org/date-format/-/date-format-0.0.2.tgz"; 1318 - sha1 = "fafd448f72115ef1e2b739155ae92f2be6c28dd1"; 1319 - }; 1320 - }; 1321 - "dbug-0.4.2" = { 1322 - name = "dbug"; 1323 - packageName = "dbug"; 1324 - version = "0.4.2"; 1325 - src = fetchurl { 1326 - url = "https://registry.npmjs.org/dbug/-/dbug-0.4.2.tgz"; 1327 - sha1 = "32b4b3105e8861043a6f9ac755d80e542d365b31"; 1165 + sha512 = "M4obuJx8jU5T91lcbwi0+QPNVaWOY1DQYz5xUuKYWO93osVzB2ZPqyDUc5T+mDjbA1X8VOb4JDZ+8r2MrSOp7Q=="; 1328 1166 }; 1329 1167 }; 1330 1168 "debug-3.2.7" = { ··· 1327 1183 sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 1328 1184 }; 1329 1185 }; 1330 - "debug-4.2.0" = { 1186 + "debug-4.3.3" = { 1331 1187 name = "debug"; 1332 1188 packageName = "debug"; 1333 - version = "4.2.0"; 1189 + version = "4.3.3"; 1334 1190 src = fetchurl { 1335 - url = "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz"; 1336 - sha512 = "IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg=="; 1191 + url = "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz"; 1192 + sha512 = "/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q=="; 1337 1193 }; 1338 1194 }; 1339 - "debug-4.3.2" = { 1195 + "debug-4.3.4" = { 1340 1196 name = "debug"; 1341 1197 packageName = "debug"; 1342 - version = "4.3.2"; 1198 + version = "4.3.4"; 1343 1199 src = fetchurl { 1344 - url = "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz"; 1345 - sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="; 1200 + url = "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"; 1201 + sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 1346 1202 }; 1347 1203 }; 1348 1204 "decamelize-1.2.0" = { ··· 1351 1207 version = "1.2.0"; 1352 1208 src = fetchurl { 1353 1209 url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 1354 - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 1210 + sha512 = "z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="; 1355 1211 }; 1356 1212 }; 1357 1213 "decamelize-4.0.0" = { ··· 1363 1219 sha512 = "9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ=="; 1364 1220 }; 1365 1221 }; 1366 - "deep-eql-3.0.1" = { 1222 + "deep-eql-4.1.3" = { 1367 1223 name = "deep-eql"; 1368 1224 packageName = "deep-eql"; 1369 - version = "3.0.1"; 1225 + version = "4.1.3"; 1370 1226 src = fetchurl { 1371 - url = "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz"; 1372 - sha512 = "+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw=="; 1227 + url = "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz"; 1228 + sha512 = "WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw=="; 1373 1229 }; 1374 1230 }; 1375 1231 "deep-extend-0.6.0" = { ··· 1381 1237 sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="; 1382 1238 }; 1383 1239 }; 1384 - "deep-is-0.1.3" = { 1240 + "deep-is-0.1.4" = { 1385 1241 name = "deep-is"; 1386 1242 packageName = "deep-is"; 1387 - version = "0.1.3"; 1243 + version = "0.1.4"; 1388 1244 src = fetchurl { 1389 - url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; 1390 - sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 1245 + url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"; 1246 + sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 1391 1247 }; 1392 1248 }; 1393 - "default-require-extensions-3.0.0" = { 1249 + "default-require-extensions-3.0.1" = { 1394 1250 name = "default-require-extensions"; 1395 1251 packageName = "default-require-extensions"; 1396 - version = "3.0.0"; 1252 + version = "3.0.1"; 1397 1253 src = fetchurl { 1398 - url = "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.0.tgz"; 1399 - sha512 = "ek6DpXq/SCpvjhpFsLFRVtIxJCRw6fUR42lYMVZuUMK7n8eMz4Uh5clckdBjEpLhn/gEBZo7hDJnJcwdKLKQjg=="; 1254 + url = "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz"; 1255 + sha512 = "eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw=="; 1400 1256 }; 1401 1257 }; 1402 1258 "delayed-stream-1.0.0" = { ··· 1405 1261 version = "1.0.0"; 1406 1262 src = fetchurl { 1407 1263 url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; 1408 - sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; 1264 + sha512 = "ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="; 1409 1265 }; 1410 1266 }; 1411 - "diff-4.0.2" = { 1267 + "diff-5.0.0" = { 1412 1268 name = "diff"; 1413 1269 packageName = "diff"; 1414 - version = "4.0.2"; 1270 + version = "5.0.0"; 1415 1271 src = fetchurl { 1416 - url = "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz"; 1417 - sha512 = "58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="; 1272 + url = "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz"; 1273 + sha512 = "/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w=="; 1418 1274 }; 1419 1275 }; 1420 - "dmd-5.0.2" = { 1276 + "dmd-6.2.0" = { 1421 1277 name = "dmd"; 1422 1278 packageName = "dmd"; 1423 - version = "5.0.2"; 1279 + version = "6.2.0"; 1424 1280 src = fetchurl { 1425 - url = "https://registry.npmjs.org/dmd/-/dmd-5.0.2.tgz"; 1426 - sha512 = "npXsE2+/onRPk/LCrUmx7PcUSqcSVnbrDDMi2nBSawNZ8QXlHE/8xaEZ6pNqPD1lQZv8LGr1xEIpyxP336xyfw=="; 1281 + url = "https://registry.npmjs.org/dmd/-/dmd-6.2.0.tgz"; 1282 + sha512 = "uXWxLF1H7TkUAuoHK59/h/ts5cKavm2LnhrIgJWisip4BVzPoXavlwyoprFFn2CzcahKYgvkfaebS6oxzgflkg=="; 1427 1283 }; 1428 1284 }; 1429 1285 "docker-modem-1.0.9" = { ··· 1462 1318 sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="; 1463 1319 }; 1464 1320 }; 1465 - "dom-serializer-0.2.2" = { 1466 - name = "dom-serializer"; 1467 - packageName = "dom-serializer"; 1468 - version = "0.2.2"; 1469 - src = fetchurl { 1470 - url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz"; 1471 - sha512 = "2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g=="; 1472 - }; 1473 - }; 1474 - "domelementtype-1.3.1" = { 1475 - name = "domelementtype"; 1476 - packageName = "domelementtype"; 1477 - version = "1.3.1"; 1478 - src = fetchurl { 1479 - url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz"; 1480 - sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="; 1481 - }; 1482 - }; 1483 - "domelementtype-2.1.0" = { 1484 - name = "domelementtype"; 1485 - packageName = "domelementtype"; 1486 - version = "2.1.0"; 1487 - src = fetchurl { 1488 - url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz"; 1489 - sha512 = "LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w=="; 1490 - }; 1491 - }; 1492 - "domhandler-2.4.2" = { 1493 - name = "domhandler"; 1494 - packageName = "domhandler"; 1495 - version = "2.4.2"; 1496 - src = fetchurl { 1497 - url = "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz"; 1498 - sha512 = "JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA=="; 1499 - }; 1500 - }; 1501 - "domutils-1.7.0" = { 1502 - name = "domutils"; 1503 - packageName = "domutils"; 1504 - version = "1.7.0"; 1505 - src = fetchurl { 1506 - url = "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz"; 1507 - sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="; 1508 - }; 1509 - }; 1510 1321 "ecc-jsbn-0.1.2" = { 1511 1322 name = "ecc-jsbn"; 1512 1323 packageName = "ecc-jsbn"; 1513 1324 version = "0.1.2"; 1514 1325 src = fetchurl { 1515 1326 url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; 1516 - sha1 = "3a83a904e54353287874c564b7549386849a98c9"; 1327 + sha512 = "eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw=="; 1517 1328 }; 1518 1329 }; 1519 1330 "editorconfig-0.15.3" = { ··· 1480 1381 sha512 = "M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g=="; 1481 1382 }; 1482 1383 }; 1483 - "emoji-regex-7.0.3" = { 1484 - name = "emoji-regex"; 1485 - packageName = "emoji-regex"; 1486 - version = "7.0.3"; 1384 + "electron-to-chromium-1.4.284" = { 1385 + name = "electron-to-chromium"; 1386 + packageName = "electron-to-chromium"; 1387 + version = "1.4.284"; 1487 1388 src = fetchurl { 1488 - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"; 1489 - sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; 1389 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz"; 1390 + sha512 = "M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA=="; 1490 1391 }; 1491 1392 }; 1492 1393 "emoji-regex-8.0.0" = { ··· 1516 1417 sha512 = "yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg=="; 1517 1418 }; 1518 1419 }; 1519 - "entities-1.1.2" = { 1420 + "entities-2.1.0" = { 1520 1421 name = "entities"; 1521 1422 packageName = "entities"; 1522 - version = "1.1.2"; 1423 + version = "2.1.0"; 1523 1424 src = fetchurl { 1524 - url = "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz"; 1525 - sha512 = "f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="; 1526 - }; 1527 - }; 1528 - "entities-2.0.3" = { 1529 - name = "entities"; 1530 - packageName = "entities"; 1531 - version = "2.0.3"; 1532 - src = fetchurl { 1533 - url = "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz"; 1534 - sha512 = "MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ=="; 1535 - }; 1536 - }; 1537 - "entities-2.2.0" = { 1538 - name = "entities"; 1539 - packageName = "entities"; 1540 - version = "2.2.0"; 1541 - src = fetchurl { 1542 - url = "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz"; 1543 - sha512 = "p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="; 1425 + url = "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz"; 1426 + sha512 = "hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w=="; 1544 1427 }; 1545 1428 }; 1546 1429 "es6-error-4.1.1" = { ··· 1534 1453 sha512 = "Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg=="; 1535 1454 }; 1536 1455 }; 1537 - "escape-html-1.0.3" = { 1538 - name = "escape-html"; 1539 - packageName = "escape-html"; 1540 - version = "1.0.3"; 1456 + "escalade-3.1.1" = { 1457 + name = "escalade"; 1458 + packageName = "escalade"; 1459 + version = "3.1.1"; 1541 1460 src = fetchurl { 1542 - url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"; 1543 - sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; 1461 + url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"; 1462 + sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; 1544 1463 }; 1545 1464 }; 1546 1465 "escape-string-regexp-1.0.5" = { ··· 1549 1468 version = "1.0.5"; 1550 1469 src = fetchurl { 1551 1470 url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 1552 - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 1471 + sha512 = "vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="; 1553 1472 }; 1554 1473 }; 1555 1474 "escape-string-regexp-2.0.0" = { ··· 1570 1489 sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 1571 1490 }; 1572 1491 }; 1573 - "eslint-7.19.0" = { 1492 + "eslint-7.32.0" = { 1574 1493 name = "eslint"; 1575 1494 packageName = "eslint"; 1576 - version = "7.19.0"; 1495 + version = "7.32.0"; 1577 1496 src = fetchurl { 1578 - url = "https://registry.npmjs.org/eslint/-/eslint-7.19.0.tgz"; 1579 - sha512 = "CGlMgJY56JZ9ZSYhJuhow61lMPPjUzWmChFya71Z/jilVos7mR/jPgaEfVGgMBY5DshbKdG8Ezb8FDCHcoMEMg=="; 1497 + url = "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz"; 1498 + sha512 = "VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="; 1580 1499 }; 1581 1500 }; 1582 - "eslint-plugin-jsdoc-30.7.13" = { 1501 + "eslint-plugin-jsdoc-36.1.1" = { 1583 1502 name = "eslint-plugin-jsdoc"; 1584 1503 packageName = "eslint-plugin-jsdoc"; 1585 - version = "30.7.13"; 1504 + version = "36.1.1"; 1586 1505 src = fetchurl { 1587 - url = "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.13.tgz"; 1588 - sha512 = "YM4WIsmurrp0rHX6XiXQppqKB8Ne5ATiZLJe2+/fkp9l9ExXFr43BbAbjZaVrpCT+tuPYOZ8k1MICARHnURUNQ=="; 1506 + url = "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.1.1.tgz"; 1507 + sha512 = "nuLDvH1EJaKx0PCa9oeQIxH6pACIhZd1gkalTUxZbaxxwokjs7TplqY0Q8Ew3CoZaf5aowm0g/Z3JGHCatt+gQ=="; 1589 1508 }; 1590 1509 }; 1591 - "eslint-plugin-lodash-7.1.0" = { 1510 + "eslint-plugin-lodash-7.4.0" = { 1592 1511 name = "eslint-plugin-lodash"; 1593 1512 packageName = "eslint-plugin-lodash"; 1594 - version = "7.1.0"; 1513 + version = "7.4.0"; 1595 1514 src = fetchurl { 1596 - url = "https://registry.npmjs.org/eslint-plugin-lodash/-/eslint-plugin-lodash-7.1.0.tgz"; 1597 - sha512 = "BRkEI/+ZjmeDCM1DfzR+NVwYkC/+ChJhaOSm3Xm7rer/fs89TKU6AMtkQiDdqQel1wZ4IJM+B6hlep9xwVKaMQ=="; 1515 + url = "https://registry.npmjs.org/eslint-plugin-lodash/-/eslint-plugin-lodash-7.4.0.tgz"; 1516 + sha512 = "Tl83UwVXqe1OVeBRKUeWcfg6/pCW1GTRObbdnbEJgYwjxp5Q92MEWQaH9+dmzbRt6kvYU1Mp893E79nJiCSM8A=="; 1598 1517 }; 1599 1518 }; 1600 - "eslint-plugin-mocha-8.0.0" = { 1519 + "eslint-plugin-mocha-10.1.0" = { 1601 1520 name = "eslint-plugin-mocha"; 1602 1521 packageName = "eslint-plugin-mocha"; 1603 - version = "8.0.0"; 1522 + version = "10.1.0"; 1604 1523 src = fetchurl { 1605 - url = "https://registry.npmjs.org/eslint-plugin-mocha/-/eslint-plugin-mocha-8.0.0.tgz"; 1606 - sha512 = "n67etbWDz6NQM+HnTwZHyBwz/bLlYPOxUbw7bPuCyFujv7ZpaT/Vn6KTAbT02gf7nRljtYIjWcTxK/n8a57rQQ=="; 1524 + url = "https://registry.npmjs.org/eslint-plugin-mocha/-/eslint-plugin-mocha-10.1.0.tgz"; 1525 + sha512 = "xLqqWUF17llsogVOC+8C6/jvQ+4IoOREbN7ZCHuOHuD6cT5cDD4h7f2LgsZuzMAiwswWE21tO7ExaknHVDrSkw=="; 1607 1526 }; 1608 1527 }; 1609 - "eslint-plugin-security-1.4.0" = { 1528 + "eslint-plugin-security-1.5.0" = { 1610 1529 name = "eslint-plugin-security"; 1611 1530 packageName = "eslint-plugin-security"; 1612 - version = "1.4.0"; 1531 + version = "1.5.0"; 1613 1532 src = fetchurl { 1614 - url = "https://registry.npmjs.org/eslint-plugin-security/-/eslint-plugin-security-1.4.0.tgz"; 1615 - sha512 = "xlS7P2PLMXeqfhyf3NpqbvbnW04kN8M9NtmhpR3XGyOvt/vNKS7XPXT5EDbwKW9vCjWH4PpfQvgD/+JgN0VJKA=="; 1533 + url = "https://registry.npmjs.org/eslint-plugin-security/-/eslint-plugin-security-1.5.0.tgz"; 1534 + sha512 = "hAFVwLZ/UeXrlyVD2TDarv/x00CoFVpaY0IUZhKjPjiFxqkuQVixsK4f2rxngeQOqSxi6OUjzJM/jMwKEVjJ8g=="; 1616 1535 }; 1617 1536 }; 1618 1537 "eslint-scope-5.1.1" = { ··· 1633 1552 sha512 = "w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg=="; 1634 1553 }; 1635 1554 }; 1555 + "eslint-utils-3.0.0" = { 1556 + name = "eslint-utils"; 1557 + packageName = "eslint-utils"; 1558 + version = "3.0.0"; 1559 + src = fetchurl { 1560 + url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz"; 1561 + sha512 = "uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA=="; 1562 + }; 1563 + }; 1636 1564 "eslint-visitor-keys-1.3.0" = { 1637 1565 name = "eslint-visitor-keys"; 1638 1566 packageName = "eslint-visitor-keys"; ··· 1651 1561 sha512 = "6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="; 1652 1562 }; 1653 1563 }; 1654 - "eslint-visitor-keys-2.0.0" = { 1564 + "eslint-visitor-keys-2.1.0" = { 1655 1565 name = "eslint-visitor-keys"; 1656 1566 packageName = "eslint-visitor-keys"; 1657 - version = "2.0.0"; 1567 + version = "2.1.0"; 1658 1568 src = fetchurl { 1659 - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz"; 1660 - sha512 = "QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ=="; 1569 + url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"; 1570 + sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; 1661 1571 }; 1662 1572 }; 1663 1573 "espree-7.3.1" = { ··· 1678 1588 sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 1679 1589 }; 1680 1590 }; 1681 - "esquery-1.3.1" = { 1591 + "esquery-1.4.0" = { 1682 1592 name = "esquery"; 1683 1593 packageName = "esquery"; 1684 - version = "1.3.1"; 1594 + version = "1.4.0"; 1685 1595 src = fetchurl { 1686 - url = "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz"; 1687 - sha512 = "olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ=="; 1596 + url = "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"; 1597 + sha512 = "cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="; 1688 1598 }; 1689 1599 }; 1690 1600 "esrecurse-4.3.0" = { ··· 1705 1615 sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="; 1706 1616 }; 1707 1617 }; 1708 - "estraverse-5.2.0" = { 1618 + "estraverse-5.3.0" = { 1709 1619 name = "estraverse"; 1710 1620 packageName = "estraverse"; 1711 - version = "5.2.0"; 1621 + version = "5.3.0"; 1712 1622 src = fetchurl { 1713 - url = "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz"; 1714 - sha512 = "BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ=="; 1623 + url = "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"; 1624 + sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="; 1715 1625 }; 1716 1626 }; 1717 1627 "esutils-2.0.3" = { ··· 1747 1657 version = "1.3.0"; 1748 1658 src = fetchurl { 1749 1659 url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; 1750 - sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; 1660 + sha512 = "11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g=="; 1751 1661 }; 1752 1662 }; 1753 1663 "eyes-0.1.8" = { ··· 1756 1666 version = "0.1.8"; 1757 1667 src = fetchurl { 1758 1668 url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz"; 1759 - sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0"; 1669 + sha512 = "GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ=="; 1760 1670 }; 1761 1671 }; 1762 - "faker-5.1.0" = { 1672 + "faker-5.5.3" = { 1763 1673 name = "faker"; 1764 1674 packageName = "faker"; 1765 - version = "5.1.0"; 1675 + version = "5.5.3"; 1766 1676 src = fetchurl { 1767 - url = "https://registry.npmjs.org/faker/-/faker-5.1.0.tgz"; 1768 - sha512 = "RrWKFSSA/aNLP0g3o2WW1Zez7/MnMr7xkiZmoCfAGZmdkDQZ6l2KtuXHN5XjdvpRjDl8+3vf+Rrtl06Z352+Mw=="; 1677 + url = "https://registry.npmjs.org/faker/-/faker-5.5.3.tgz"; 1678 + sha512 = "wLTv2a28wjUyWkbnX7u/ABZBkUkIF2fCd73V6P2oFqEGEktDfzWx4UxrSqtPRw0xPRAcjeAOIiJWqZm3pP4u3g=="; 1769 1679 }; 1770 1680 }; 1771 1681 "fast-deep-equal-3.1.3" = { ··· 1792 1702 version = "2.0.6"; 1793 1703 src = fetchurl { 1794 1704 url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 1795 - sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; 1705 + sha512 = "DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="; 1796 1706 }; 1797 1707 }; 1798 - "file-entry-cache-6.0.0" = { 1708 + "file-entry-cache-6.0.1" = { 1799 1709 name = "file-entry-cache"; 1800 1710 packageName = "file-entry-cache"; 1801 - version = "6.0.0"; 1711 + version = "6.0.1"; 1802 1712 src = fetchurl { 1803 - url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz"; 1804 - sha512 = "fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA=="; 1713 + url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; 1714 + sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="; 1805 1715 }; 1806 1716 }; 1807 - "file-set-4.0.1" = { 1717 + "file-set-4.0.2" = { 1808 1718 name = "file-set"; 1809 1719 packageName = "file-set"; 1810 - version = "4.0.1"; 1720 + version = "4.0.2"; 1811 1721 src = fetchurl { 1812 - url = "https://registry.npmjs.org/file-set/-/file-set-4.0.1.tgz"; 1813 - sha512 = "tRzX4kGPmxS2HDK2q2L4qcPopTl/gcyahve2/O8l8hHNJgJ7m+r/ZncCJ1MmFWEMp1yHxJGIU9gAcsWu5jPMpg=="; 1722 + url = "https://registry.npmjs.org/file-set/-/file-set-4.0.2.tgz"; 1723 + sha512 = "fuxEgzk4L8waGXaAkd8cMr73Pm0FxOVkn8hztzUW7BAHhOGH90viQNXbiOsnecCWmfInqU6YmAMwxRMdKETceQ=="; 1814 1724 }; 1815 1725 }; 1816 1726 "file-type-3.9.0" = { ··· 1819 1729 version = "3.9.0"; 1820 1730 src = fetchurl { 1821 1731 url = "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz"; 1822 - sha1 = "257a078384d1db8087bc449d107d52a52672b9e9"; 1732 + sha512 = "RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA=="; 1823 1733 }; 1824 1734 }; 1825 - "filesize-6.1.0" = { 1735 + "filesize-8.0.7" = { 1826 1736 name = "filesize"; 1827 1737 packageName = "filesize"; 1828 - version = "6.1.0"; 1738 + version = "8.0.7"; 1829 1739 src = fetchurl { 1830 - url = "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz"; 1831 - sha512 = "LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg=="; 1740 + url = "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz"; 1741 + sha512 = "pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ=="; 1832 1742 }; 1833 1743 }; 1834 1744 "fill-range-7.0.1" = { ··· 1840 1750 sha512 = "qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="; 1841 1751 }; 1842 1752 }; 1843 - "find-cache-dir-3.3.1" = { 1753 + "find-cache-dir-3.3.2" = { 1844 1754 name = "find-cache-dir"; 1845 1755 packageName = "find-cache-dir"; 1846 - version = "3.3.1"; 1756 + version = "3.3.2"; 1847 1757 src = fetchurl { 1848 - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz"; 1849 - sha512 = "t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ=="; 1758 + url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"; 1759 + sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; 1850 1760 }; 1851 1761 }; 1852 1762 "find-replace-3.0.0" = { ··· 1856 1766 src = fetchurl { 1857 1767 url = "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz"; 1858 1768 sha512 = "6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ=="; 1859 - }; 1860 - }; 1861 - "find-up-3.0.0" = { 1862 - name = "find-up"; 1863 - packageName = "find-up"; 1864 - version = "3.0.0"; 1865 - src = fetchurl { 1866 - url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"; 1867 - sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="; 1868 1769 }; 1869 1770 }; 1870 1771 "find-up-4.1.0" = { ··· 1894 1813 sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 1895 1814 }; 1896 1815 }; 1897 - "flatted-3.1.0" = { 1816 + "flatted-3.1.1" = { 1898 1817 name = "flatted"; 1899 1818 packageName = "flatted"; 1900 - version = "3.1.0"; 1819 + version = "3.1.1"; 1901 1820 src = fetchurl { 1902 - url = "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz"; 1903 - sha512 = "tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA=="; 1821 + url = "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz"; 1822 + sha512 = "zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA=="; 1904 1823 }; 1905 1824 }; 1906 1825 "foreground-child-2.0.0" = { ··· 1918 1837 version = "0.6.1"; 1919 1838 src = fetchurl { 1920 1839 url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; 1921 - sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; 1840 + sha512 = "j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw=="; 1922 1841 }; 1923 1842 }; 1924 1843 "fromentries-1.3.2" = { ··· 1945 1864 version = "2.0.0"; 1946 1865 src = fetchurl { 1947 1866 url = "https://registry.npmjs.org/fs-then-native/-/fs-then-native-2.0.0.tgz"; 1948 - sha1 = "19a124d94d90c22c8e045f2e8dd6ebea36d48c67"; 1867 + sha512 = "X712jAOaWXkemQCAmWeg5rOT2i+KOpWz1Z/txk/cW0qlOu2oQ9H61vc5w3X/iyuUEfq/OyaFJ78/cZAQD1/bgA=="; 1949 1868 }; 1950 1869 }; 1951 1870 "fs.realpath-1.0.0" = { ··· 1954 1873 version = "1.0.0"; 1955 1874 src = fetchurl { 1956 1875 url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; 1957 - sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 1876 + sha512 = "OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="; 1958 1877 }; 1959 1878 }; 1960 - "fsevents-2.1.3" = { 1879 + "fsevents-2.3.2" = { 1961 1880 name = "fsevents"; 1962 1881 packageName = "fsevents"; 1963 - version = "2.1.3"; 1882 + version = "2.3.2"; 1964 1883 src = fetchurl { 1965 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz"; 1966 - sha512 = "Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ=="; 1884 + url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"; 1885 + sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; 1967 1886 }; 1968 1887 }; 1969 1888 "function-bind-1.1.1" = { ··· 1981 1900 version = "1.0.1"; 1982 1901 src = fetchurl { 1983 1902 url = "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; 1984 - sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; 1903 + sha512 = "dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g=="; 1985 1904 }; 1986 1905 }; 1987 1906 "gensync-1.0.0-beta.2" = { ··· 2008 1927 version = "2.0.0"; 2009 1928 src = fetchurl { 2010 1929 url = "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz"; 2011 - sha1 = "ead774abee72e20409433a066366023dd6887a41"; 1930 + sha512 = "Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig=="; 2012 1931 }; 2013 1932 }; 2014 1933 "get-package-type-0.1.0" = { ··· 2026 1945 version = "0.1.7"; 2027 1946 src = fetchurl { 2028 1947 url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; 2029 - sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 1948 + sha512 = "0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng=="; 2030 1949 }; 2031 1950 }; 2032 - "glob-7.1.6" = { 1951 + "glob-7.2.0" = { 2033 1952 name = "glob"; 2034 1953 packageName = "glob"; 2035 - version = "7.1.6"; 1954 + version = "7.2.0"; 2036 1955 src = fetchurl { 2037 - url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"; 2038 - sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 1956 + url = "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz"; 1957 + sha512 = "lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q=="; 2039 1958 }; 2040 1959 }; 2041 - "glob-parent-5.1.1" = { 1960 + "glob-7.2.3" = { 1961 + name = "glob"; 1962 + packageName = "glob"; 1963 + version = "7.2.3"; 1964 + src = fetchurl { 1965 + url = "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"; 1966 + sha512 = "nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="; 1967 + }; 1968 + }; 1969 + "glob-parent-5.1.2" = { 2042 1970 name = "glob-parent"; 2043 1971 packageName = "glob-parent"; 2044 - version = "5.1.1"; 1972 + version = "5.1.2"; 2045 1973 src = fetchurl { 2046 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz"; 2047 - sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 1974 + url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; 1975 + sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; 2048 1976 }; 2049 1977 }; 2050 1978 "globals-11.12.0" = { ··· 2065 1975 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 2066 1976 }; 2067 1977 }; 2068 - "globals-12.4.0" = { 1978 + "globals-13.18.0" = { 2069 1979 name = "globals"; 2070 1980 packageName = "globals"; 2071 - version = "12.4.0"; 1981 + version = "13.18.0"; 2072 1982 src = fetchurl { 2073 - url = "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz"; 2074 - sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="; 1983 + url = "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz"; 1984 + sha512 = "/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A=="; 2075 1985 }; 2076 1986 }; 2077 - "graceful-fs-4.2.4" = { 1987 + "graceful-fs-4.2.10" = { 2078 1988 name = "graceful-fs"; 2079 1989 packageName = "graceful-fs"; 2080 - version = "4.2.4"; 1990 + version = "4.2.10"; 2081 1991 src = fetchurl { 2082 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz"; 2083 - sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="; 1992 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"; 1993 + sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; 2084 1994 }; 2085 1995 }; 2086 1996 "graceful-readlink-1.0.1" = { ··· 2089 1999 version = "1.0.1"; 2090 2000 src = fetchurl { 2091 2001 url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"; 2092 - sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725"; 2002 + sha512 = "8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w=="; 2093 2003 }; 2094 2004 }; 2095 2005 "growl-1.10.5" = { ··· 2101 2011 sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA=="; 2102 2012 }; 2103 2013 }; 2104 - "handlebars-4.7.6" = { 2014 + "handlebars-4.7.7" = { 2105 2015 name = "handlebars"; 2106 2016 packageName = "handlebars"; 2107 - version = "4.7.6"; 2017 + version = "4.7.7"; 2108 2018 src = fetchurl { 2109 - url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.6.tgz"; 2110 - sha512 = "1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA=="; 2019 + url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz"; 2020 + sha512 = "aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA=="; 2111 2021 }; 2112 2022 }; 2113 2023 "har-schema-2.0.0" = { ··· 2116 2026 version = "2.0.0"; 2117 2027 src = fetchurl { 2118 2028 url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; 2119 - sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; 2029 + sha512 = "Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q=="; 2120 2030 }; 2121 2031 }; 2122 2032 "har-validator-5.1.5" = { ··· 2137 2047 sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 2138 2048 }; 2139 2049 }; 2140 - "has-ansi-2.0.0" = { 2141 - name = "has-ansi"; 2142 - packageName = "has-ansi"; 2143 - version = "2.0.0"; 2144 - src = fetchurl { 2145 - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; 2146 - sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; 2147 - }; 2148 - }; 2149 2050 "has-flag-3.0.0" = { 2150 2051 name = "has-flag"; 2151 2052 packageName = "has-flag"; 2152 2053 version = "3.0.0"; 2153 2054 src = fetchurl { 2154 2055 url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"; 2155 - sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 2056 + sha512 = "sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="; 2156 2057 }; 2157 2058 }; 2158 2059 "has-flag-4.0.0" = { ··· 2182 2101 sha512 = "H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="; 2183 2102 }; 2184 2103 }; 2185 - "htmlparser2-3.10.1" = { 2186 - name = "htmlparser2"; 2187 - packageName = "htmlparser2"; 2188 - version = "3.10.1"; 2189 - src = fetchurl { 2190 - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz"; 2191 - sha512 = "IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ=="; 2192 - }; 2193 - }; 2194 2104 "http-reasons-0.1.0" = { 2195 2105 name = "http-reasons"; 2196 2106 packageName = "http-reasons"; 2197 2107 version = "0.1.0"; 2198 2108 src = fetchurl { 2199 2109 url = "https://registry.npmjs.org/http-reasons/-/http-reasons-0.1.0.tgz"; 2200 - sha1 = "a953ca670078669dde142ce899401b9d6e85d3b4"; 2110 + sha512 = "P6kYh0lKZ+y29T2Gqz+RlC9WBLhKe8kDmcJ+A+611jFfxdPsbMRQ5aNmFRM3lENqFkK+HTTL+tlQviAiv0AbLQ=="; 2201 2111 }; 2202 2112 }; 2203 - "http-signature-1.3.5" = { 2113 + "http-signature-1.3.6" = { 2204 2114 name = "http-signature"; 2205 2115 packageName = "http-signature"; 2206 - version = "1.3.5"; 2116 + version = "1.3.6"; 2207 2117 src = fetchurl { 2208 - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.3.5.tgz"; 2209 - sha512 = "NwoTQYSJoFt34jSBbwzDHDofoA61NGXzu6wXh95o1Ry62EnmKjXb/nR/RknLeZ3G/uGwrlKNY2z7uPt+Cdl7Tw=="; 2118 + url = "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz"; 2119 + sha512 = "3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw=="; 2210 2120 }; 2211 2121 }; 2212 - "httpntlm-1.7.6" = { 2122 + "httpntlm-1.7.7" = { 2213 2123 name = "httpntlm"; 2214 2124 packageName = "httpntlm"; 2215 - version = "1.7.6"; 2125 + version = "1.7.7"; 2216 2126 src = fetchurl { 2217 - url = "https://registry.npmjs.org/httpntlm/-/httpntlm-1.7.6.tgz"; 2218 - sha1 = "6991e8352836007d67101b83db8ed0f915f906d0"; 2127 + url = "https://registry.npmjs.org/httpntlm/-/httpntlm-1.7.7.tgz"; 2128 + sha512 = "Pv2Rvrz8H0qv1Dne5mAdZ9JegG1uc6Vu5lwLflIY6s8RKHdZQbW39L4dYswSgqMDT0pkJILUTKjeyU0VPNRZjA=="; 2219 2129 }; 2220 2130 }; 2221 - "httpreq-0.4.24" = { 2131 + "httpreq-0.5.2" = { 2222 2132 name = "httpreq"; 2223 2133 packageName = "httpreq"; 2224 - version = "0.4.24"; 2134 + version = "0.5.2"; 2225 2135 src = fetchurl { 2226 - url = "https://registry.npmjs.org/httpreq/-/httpreq-0.4.24.tgz"; 2227 - sha1 = "4335ffd82cd969668a39465c929ac61d6393627f"; 2136 + url = "https://registry.npmjs.org/httpreq/-/httpreq-0.5.2.tgz"; 2137 + sha512 = "2Jm+x9WkExDOeFRrdBCBSpLPT5SokTcRHkunV3pjKmX/cx6av8zQ0WtHUMDrYb6O4hBFzNU6sxJEypvRUVYKnw=="; 2228 2138 }; 2229 2139 }; 2230 - "iconv-lite-0.6.2" = { 2140 + "iconv-lite-0.6.3" = { 2231 2141 name = "iconv-lite"; 2232 2142 packageName = "iconv-lite"; 2233 - version = "0.6.2"; 2143 + version = "0.6.3"; 2234 2144 src = fetchurl { 2235 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz"; 2236 - sha512 = "2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ=="; 2145 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"; 2146 + sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; 2237 2147 }; 2238 2148 }; 2239 2149 "ignore-4.0.6" = { ··· 2251 2179 version = "0.1.4"; 2252 2180 src = fetchurl { 2253 2181 url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"; 2254 - sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; 2182 + sha512 = "JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="; 2255 2183 }; 2256 2184 }; 2257 2185 "indent-string-4.0.0" = { ··· 2269 2197 version = "1.0.6"; 2270 2198 src = fetchurl { 2271 2199 url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; 2272 - sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 2200 + sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; 2273 2201 }; 2274 2202 }; 2275 2203 "inherits-2.0.4" = { ··· 2279 2207 src = fetchurl { 2280 2208 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; 2281 2209 sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 2282 - }; 2283 - }; 2284 - "intel-1.2.0" = { 2285 - name = "intel"; 2286 - packageName = "intel"; 2287 - version = "1.2.0"; 2288 - src = fetchurl { 2289 - url = "https://registry.npmjs.org/intel/-/intel-1.2.0.tgz"; 2290 - sha1 = "11d1147eb6b3f4582bdf5337b37d541584e9e41e"; 2291 2210 }; 2292 2211 }; 2293 2212 "interpret-1.4.0" = { ··· 2296 2233 version = "2.1.0"; 2297 2234 src = fetchurl { 2298 2235 url = "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz"; 2299 - sha1 = "fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"; 2236 + sha512 = "58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw=="; 2300 2237 }; 2301 2238 }; 2302 2239 "is-binary-path-2.1.0" = { ··· 2308 2245 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 2309 2246 }; 2310 2247 }; 2311 - "is-core-module-2.2.0" = { 2248 + "is-core-module-2.11.0" = { 2312 2249 name = "is-core-module"; 2313 2250 packageName = "is-core-module"; 2314 - version = "2.2.0"; 2251 + version = "2.11.0"; 2315 2252 src = fetchurl { 2316 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz"; 2317 - sha512 = "XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ=="; 2253 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"; 2254 + sha512 = "RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="; 2318 2255 }; 2319 2256 }; 2320 2257 "is-extglob-2.1.1" = { ··· 2323 2260 version = "2.1.1"; 2324 2261 src = fetchurl { 2325 2262 url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; 2326 - sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; 2327 - }; 2328 - }; 2329 - "is-fullwidth-code-point-2.0.0" = { 2330 - name = "is-fullwidth-code-point"; 2331 - packageName = "is-fullwidth-code-point"; 2332 - version = "2.0.0"; 2333 - src = fetchurl { 2334 - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 2335 - sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 2263 + sha512 = "SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="; 2336 2264 }; 2337 2265 }; 2338 2266 "is-fullwidth-code-point-3.0.0" = { ··· 2335 2281 sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; 2336 2282 }; 2337 2283 }; 2338 - "is-glob-4.0.1" = { 2284 + "is-glob-4.0.3" = { 2339 2285 name = "is-glob"; 2340 2286 packageName = "is-glob"; 2341 - version = "4.0.1"; 2287 + version = "4.0.3"; 2342 2288 src = fetchurl { 2343 - url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz"; 2344 - sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="; 2289 + url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"; 2290 + sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; 2345 2291 }; 2346 2292 }; 2347 2293 "is-number-7.0.0" = { ··· 2362 2308 sha512 = "YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA=="; 2363 2309 }; 2364 2310 }; 2365 - "is-stream-2.0.0" = { 2311 + "is-stream-2.0.1" = { 2366 2312 name = "is-stream"; 2367 2313 packageName = "is-stream"; 2368 - version = "2.0.0"; 2314 + version = "2.0.1"; 2369 2315 src = fetchurl { 2370 - url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"; 2371 - sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 2316 + url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"; 2317 + sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; 2372 2318 }; 2373 2319 }; 2374 2320 "is-typedarray-1.0.0" = { ··· 2377 2323 version = "1.0.0"; 2378 2324 src = fetchurl { 2379 2325 url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; 2380 - sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; 2326 + sha512 = "cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="; 2327 + }; 2328 + }; 2329 + "is-unicode-supported-0.1.0" = { 2330 + name = "is-unicode-supported"; 2331 + packageName = "is-unicode-supported"; 2332 + version = "0.1.0"; 2333 + src = fetchurl { 2334 + url = "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"; 2335 + sha512 = "knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw=="; 2381 2336 }; 2382 2337 }; 2383 2338 "is-windows-1.0.2" = { ··· 2404 2341 version = "0.0.1"; 2405 2342 src = fetchurl { 2406 2343 url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; 2407 - sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; 2344 + sha512 = "D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="; 2408 2345 }; 2409 2346 }; 2410 2347 "isarray-1.0.0" = { ··· 2413 2350 version = "1.0.0"; 2414 2351 src = fetchurl { 2415 2352 url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; 2416 - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 2353 + sha512 = "VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="; 2417 2354 }; 2418 2355 }; 2419 2356 "isexe-2.0.0" = { ··· 2422 2359 version = "2.0.0"; 2423 2360 src = fetchurl { 2424 2361 url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; 2425 - sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 2362 + sha512 = "RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="; 2426 2363 }; 2427 2364 }; 2428 2365 "isstream-0.1.2" = { ··· 2431 2368 version = "0.1.2"; 2432 2369 src = fetchurl { 2433 2370 url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; 2434 - sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; 2371 + sha512 = "Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g=="; 2435 2372 }; 2436 2373 }; 2437 - "istanbul-lib-coverage-3.0.0" = { 2374 + "istanbul-lib-coverage-3.2.0" = { 2438 2375 name = "istanbul-lib-coverage"; 2439 2376 packageName = "istanbul-lib-coverage"; 2440 - version = "3.0.0"; 2377 + version = "3.2.0"; 2441 2378 src = fetchurl { 2442 - url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz"; 2443 - sha512 = "UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg=="; 2379 + url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz"; 2380 + sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="; 2444 2381 }; 2445 2382 }; 2446 2383 "istanbul-lib-hook-3.0.0" = { ··· 2461 2398 sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ=="; 2462 2399 }; 2463 2400 }; 2464 - "istanbul-lib-processinfo-2.0.2" = { 2401 + "istanbul-lib-processinfo-2.0.3" = { 2465 2402 name = "istanbul-lib-processinfo"; 2466 2403 packageName = "istanbul-lib-processinfo"; 2467 - version = "2.0.2"; 2404 + version = "2.0.3"; 2468 2405 src = fetchurl { 2469 - url = "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.2.tgz"; 2470 - sha512 = "kOwpa7z9hme+IBPZMzQ5vdQj8srYgAtaRqeI48NGmAQ+/5yKiHLV0QbYqQpxsdEF0+w14SoB8YbnHKcXE2KnYw=="; 2406 + url = "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz"; 2407 + sha512 = "NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg=="; 2471 2408 }; 2472 2409 }; 2473 2410 "istanbul-lib-report-3.0.0" = { ··· 2479 2416 sha512 = "wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw=="; 2480 2417 }; 2481 2418 }; 2482 - "istanbul-lib-source-maps-4.0.0" = { 2419 + "istanbul-lib-source-maps-4.0.1" = { 2483 2420 name = "istanbul-lib-source-maps"; 2484 2421 packageName = "istanbul-lib-source-maps"; 2485 - version = "4.0.0"; 2422 + version = "4.0.1"; 2486 2423 src = fetchurl { 2487 - url = "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz"; 2488 - sha512 = "c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg=="; 2424 + url = "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz"; 2425 + sha512 = "n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw=="; 2489 2426 }; 2490 2427 }; 2491 - "istanbul-reports-3.0.2" = { 2428 + "istanbul-reports-3.1.5" = { 2492 2429 name = "istanbul-reports"; 2493 2430 packageName = "istanbul-reports"; 2494 - version = "3.0.2"; 2431 + version = "3.1.5"; 2495 2432 src = fetchurl { 2496 - url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz"; 2497 - sha512 = "9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw=="; 2433 + url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz"; 2434 + sha512 = "nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w=="; 2498 2435 }; 2499 2436 }; 2500 2437 "js-sha512-0.8.0" = { ··· 2524 2461 sha512 = "YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw=="; 2525 2462 }; 2526 2463 }; 2527 - "js-yaml-3.14.0" = { 2528 - name = "js-yaml"; 2529 - packageName = "js-yaml"; 2530 - version = "3.14.0"; 2531 - src = fetchurl { 2532 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz"; 2533 - sha512 = "/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A=="; 2534 - }; 2535 - }; 2536 2464 "js-yaml-3.14.1" = { 2537 2465 name = "js-yaml"; 2538 2466 packageName = "js-yaml"; ··· 2533 2479 sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="; 2534 2480 }; 2535 2481 }; 2536 - "js2xmlparser-4.0.1" = { 2482 + "js-yaml-4.1.0" = { 2483 + name = "js-yaml"; 2484 + packageName = "js-yaml"; 2485 + version = "4.1.0"; 2486 + src = fetchurl { 2487 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz"; 2488 + sha512 = "wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="; 2489 + }; 2490 + }; 2491 + "js2xmlparser-4.0.2" = { 2537 2492 name = "js2xmlparser"; 2538 2493 packageName = "js2xmlparser"; 2539 - version = "4.0.1"; 2494 + version = "4.0.2"; 2540 2495 src = fetchurl { 2541 - url = "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.1.tgz"; 2542 - sha512 = "KrPTolcw6RocpYjdC7pL7v62e55q7qOMHvLX1UCLc5AAS8qeJ6nukarEJAF2KL2PZxlbGueEbINqZR2bDe/gUw=="; 2496 + url = "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.2.tgz"; 2497 + sha512 = "6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA=="; 2543 2498 }; 2544 2499 }; 2545 2500 "jsbn-0.1.1" = { ··· 2557 2494 version = "0.1.1"; 2558 2495 src = fetchurl { 2559 2496 url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"; 2560 - sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; 2497 + sha512 = "UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg=="; 2561 2498 }; 2562 2499 }; 2563 - "jsdoc-3.6.6" = { 2500 + "jsdoc-3.6.11" = { 2564 2501 name = "jsdoc"; 2565 2502 packageName = "jsdoc"; 2566 - version = "3.6.6"; 2503 + version = "3.6.11"; 2567 2504 src = fetchurl { 2568 - url = "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.6.tgz"; 2569 - sha512 = "znR99e1BHeyEkSvgDDpX0sTiTu+8aQyDl9DawrkOGZTTW8hv0deIFXx87114zJ7gRaDZKVQD/4tr1ifmJp9xhQ=="; 2505 + url = "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.11.tgz"; 2506 + sha512 = "8UCU0TYeIYD9KeLzEcAu2q8N/mx9O3phAGl32nmHlE0LpaJL71mMkP4d+QE5zWfNt50qheHtOZ0qoxVrsX5TUg=="; 2570 2507 }; 2571 2508 }; 2572 - "jsdoc-api-6.0.0" = { 2509 + "jsdoc-4.0.0" = { 2510 + name = "jsdoc"; 2511 + packageName = "jsdoc"; 2512 + version = "4.0.0"; 2513 + src = fetchurl { 2514 + url = "https://registry.npmjs.org/jsdoc/-/jsdoc-4.0.0.tgz"; 2515 + sha512 = "tzTgkklbWKrlaQL2+e3NNgLcZu3NaK2vsHRx7tyHQ+H5jcB9Gx0txSd2eJWlMC/xU1+7LQu4s58Ry0RkuaEQVg=="; 2516 + }; 2517 + }; 2518 + "jsdoc-api-7.2.0" = { 2573 2519 name = "jsdoc-api"; 2574 2520 packageName = "jsdoc-api"; 2575 - version = "6.0.0"; 2521 + version = "7.2.0"; 2576 2522 src = fetchurl { 2577 - url = "https://registry.npmjs.org/jsdoc-api/-/jsdoc-api-6.0.0.tgz"; 2578 - sha512 = "zvfB63nAc9e+Rv2kKmJfE6tmo4x8KFho5vKr6VfYTlCCgqtrfPv0McCdqT4betUT9rWtw0zGkNUVkVqeQipY6Q=="; 2523 + url = "https://registry.npmjs.org/jsdoc-api/-/jsdoc-api-7.2.0.tgz"; 2524 + sha512 = "93YDnlm/OYTlLOFeNs4qAv0RBCJ0kGj67xQaWy8wrbk97Rw1EySitoOTHsTHXPEs3uyx2IStPKGrbE7LTnZXbA=="; 2579 2525 }; 2580 2526 }; 2581 - "jsdoc-parse-5.0.0" = { 2527 + "jsdoc-parse-6.2.0" = { 2582 2528 name = "jsdoc-parse"; 2583 2529 packageName = "jsdoc-parse"; 2584 - version = "5.0.0"; 2530 + version = "6.2.0"; 2585 2531 src = fetchurl { 2586 - url = "https://registry.npmjs.org/jsdoc-parse/-/jsdoc-parse-5.0.0.tgz"; 2587 - sha512 = "Khw8c3glrTeA3/PfUJUBvhrMhWpSClORBUvL4pvq2wFcqvUVmA96wxnMkCno2GfZY4pnd8BStK5WGKGyn4Vckg=="; 2532 + url = "https://registry.npmjs.org/jsdoc-parse/-/jsdoc-parse-6.2.0.tgz"; 2533 + sha512 = "Afu1fQBEb7QHt6QWX/6eUWvYHJofB90Fjx7FuJYF7mnG9z5BkAIpms1wsnvYLytfmqpEENHs/fax9p8gvMj7dw=="; 2588 2534 }; 2589 2535 }; 2590 - "jsdoc-to-markdown-6.0.1" = { 2536 + "jsdoc-to-markdown-7.1.1" = { 2591 2537 name = "jsdoc-to-markdown"; 2592 2538 packageName = "jsdoc-to-markdown"; 2593 - version = "6.0.1"; 2539 + version = "7.1.1"; 2594 2540 src = fetchurl { 2595 - url = "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-6.0.1.tgz"; 2596 - sha512 = "hUI2PAR5n/KlmQU3mAWO9i3D7jVbhyvUHfQ6oYVBt+wnnsyxpsAuhCODY1ryLOb2U9OPJd4GIK9mL2hqy7fHDg=="; 2541 + url = "https://registry.npmjs.org/jsdoc-to-markdown/-/jsdoc-to-markdown-7.1.1.tgz"; 2542 + sha512 = "CI86d63xAVNO+ENumWwmJ034lYe5iGU5GwjtTA11EuphP9tpnoi4hrKgR/J8uME0D+o4KUpVfwX1fjZhc8dEtg=="; 2597 2543 }; 2598 2544 }; 2599 - "jsdoctypeparser-9.0.0" = { 2600 - name = "jsdoctypeparser"; 2601 - packageName = "jsdoctypeparser"; 2602 - version = "9.0.0"; 2545 + "jsdoc-type-pratt-parser-1.1.1" = { 2546 + name = "jsdoc-type-pratt-parser"; 2547 + packageName = "jsdoc-type-pratt-parser"; 2548 + version = "1.1.1"; 2603 2549 src = fetchurl { 2604 - url = "https://registry.npmjs.org/jsdoctypeparser/-/jsdoctypeparser-9.0.0.tgz"; 2605 - sha512 = "jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw=="; 2550 + url = "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-1.1.1.tgz"; 2551 + sha512 = "uelRmpghNwPBuZScwgBG/OzodaFk5RbO5xaivBdsAY70icWfShwZ7PCMO0x1zSkOa8T1FzHThmrdoyg/0AwV5g=="; 2552 + }; 2553 + }; 2554 + "jsdoc-type-pratt-parser-1.2.0" = { 2555 + name = "jsdoc-type-pratt-parser"; 2556 + packageName = "jsdoc-type-pratt-parser"; 2557 + version = "1.2.0"; 2558 + src = fetchurl { 2559 + url = "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-1.2.0.tgz"; 2560 + sha512 = "4STjeF14jp4bqha44nKMY1OUI6d2/g6uclHWUCZ7B4DoLzaB5bmpTkQrpqU+vSVzMD0LsKAOskcnI3I3VfIpmg=="; 2606 2561 }; 2607 2562 }; 2608 2563 "jsesc-2.5.2" = { ··· 2632 2551 sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; 2633 2552 }; 2634 2553 }; 2635 - "json-schema-0.2.3" = { 2554 + "json-schema-0.4.0" = { 2636 2555 name = "json-schema"; 2637 2556 packageName = "json-schema"; 2638 - version = "0.2.3"; 2557 + version = "0.4.0"; 2639 2558 src = fetchurl { 2640 - url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; 2641 - sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; 2559 + url = "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz"; 2560 + sha512 = "es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="; 2642 2561 }; 2643 2562 }; 2644 2563 "json-schema-traverse-0.4.1" = { ··· 2665 2584 version = "1.0.1"; 2666 2585 src = fetchurl { 2667 2586 url = "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 2668 - sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; 2587 + sha512 = "Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="; 2669 2588 }; 2670 2589 }; 2671 2590 "json-stringify-safe-5.0.1" = { ··· 2674 2593 version = "5.0.1"; 2675 2594 src = fetchurl { 2676 2595 url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; 2677 - sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 2596 + sha512 = "ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="; 2678 2597 }; 2679 2598 }; 2680 - "json5-2.2.0" = { 2599 + "json5-2.2.1" = { 2681 2600 name = "json5"; 2682 2601 packageName = "json5"; 2683 - version = "2.2.0"; 2602 + version = "2.2.1"; 2684 2603 src = fetchurl { 2685 - url = "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz"; 2686 - sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 2604 + url = "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz"; 2605 + sha512 = "1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="; 2687 2606 }; 2688 2607 }; 2689 2608 "jsonparse-1.3.1" = { ··· 2692 2611 version = "1.3.1"; 2693 2612 src = fetchurl { 2694 2613 url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"; 2695 - sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280"; 2614 + sha512 = "POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg=="; 2696 2615 }; 2697 2616 }; 2698 - "jsprim-1.4.1" = { 2617 + "jsprim-2.0.2" = { 2699 2618 name = "jsprim"; 2700 2619 packageName = "jsprim"; 2701 - version = "1.4.1"; 2620 + version = "2.0.2"; 2702 2621 src = fetchurl { 2703 - url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; 2704 - sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; 2622 + url = "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz"; 2623 + sha512 = "gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ=="; 2705 2624 }; 2706 2625 }; 2707 2626 "junit-report-builder-2.1.0" = { ··· 2713 2632 sha512 = "Ioj5I4w18ZcHFaaisqCKdh1z+ipzN7sA2JB+h+WOlGcOMWm0FFN1dfxkgc2I4EXfhSP/mOfM3W43uFzEdz4sTw=="; 2714 2633 }; 2715 2634 }; 2716 - "just-extend-4.1.1" = { 2635 + "just-extend-4.2.1" = { 2717 2636 name = "just-extend"; 2718 2637 packageName = "just-extend"; 2719 - version = "4.1.1"; 2638 + version = "4.2.1"; 2720 2639 src = fetchurl { 2721 - url = "https://registry.npmjs.org/just-extend/-/just-extend-4.1.1.tgz"; 2722 - sha512 = "aWgeGFW67BP3e5181Ep1Fv2v8z//iBJfrvyTnq8wG86vEESwmonn1zPBJ0VfmT9CJq2FIT0VsETtrNFm2a+SHA=="; 2640 + url = "https://registry.npmjs.org/just-extend/-/just-extend-4.2.1.tgz"; 2641 + sha512 = "g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg=="; 2723 2642 }; 2724 2643 }; 2725 2644 "klaw-3.0.0" = { ··· 2740 2659 sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; 2741 2660 }; 2742 2661 }; 2743 - "linkify-it-2.2.0" = { 2662 + "linkify-it-3.0.3" = { 2744 2663 name = "linkify-it"; 2745 2664 packageName = "linkify-it"; 2746 - version = "2.2.0"; 2665 + version = "3.0.3"; 2747 2666 src = fetchurl { 2748 - url = "https://registry.npmjs.org/linkify-it/-/linkify-it-2.2.0.tgz"; 2749 - sha512 = "GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw=="; 2667 + url = "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz"; 2668 + sha512 = "ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ=="; 2750 2669 }; 2751 2670 }; 2752 2671 "liquid-json-0.3.1" = { ··· 2755 2674 version = "0.3.1"; 2756 2675 src = fetchurl { 2757 2676 url = "https://registry.npmjs.org/liquid-json/-/liquid-json-0.3.1.tgz"; 2758 - sha1 = "9155a18136d8a6b2615e5f16f9a2448ab6b50eea"; 2759 - }; 2760 - }; 2761 - "locate-path-3.0.0" = { 2762 - name = "locate-path"; 2763 - packageName = "locate-path"; 2764 - version = "3.0.0"; 2765 - src = fetchurl { 2766 - url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"; 2767 - sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="; 2677 + sha512 = "wUayTU8MS827Dam6MxgD72Ui+KOSF+u/eIqpatOtjnvgJ0+mnDq33uC2M7J0tPK+upe/DpUAuK4JUU89iBoNKQ=="; 2768 2678 }; 2769 2679 }; 2770 2680 "locate-path-5.0.0" = { ··· 2782 2710 version = "2.4.2"; 2783 2711 src = fetchurl { 2784 2712 url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz"; 2785 - sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e"; 2713 + sha512 = "Kak1hi6/hYHGVPmdyiZijoQyz5x2iGVzs6w9GYB/HiXEtylY7tIoYEROMjvM1d9nXJqPOrG2MNPMn01bJ+S0Rw=="; 2786 2714 }; 2787 2715 }; 2788 - "lodash-3.10.1" = { 2716 + "lodash-4.17.21" = { 2789 2717 name = "lodash"; 2790 2718 packageName = "lodash"; 2791 - version = "3.10.1"; 2719 + version = "4.17.21"; 2792 2720 src = fetchurl { 2793 - url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"; 2794 - sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6"; 2795 - }; 2796 - }; 2797 - "lodash-4.17.20" = { 2798 - name = "lodash"; 2799 - packageName = "lodash"; 2800 - version = "4.17.20"; 2801 - src = fetchurl { 2802 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz"; 2803 - sha512 = "PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="; 2721 + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"; 2722 + sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 2804 2723 }; 2805 2724 }; 2806 2725 "lodash.camelcase-4.3.0" = { ··· 2800 2737 version = "4.3.0"; 2801 2738 src = fetchurl { 2802 2739 url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz"; 2803 - sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6"; 2804 - }; 2805 - }; 2806 - "lodash.clonedeep-4.5.0" = { 2807 - name = "lodash.clonedeep"; 2808 - packageName = "lodash.clonedeep"; 2809 - version = "4.5.0"; 2810 - src = fetchurl { 2811 - url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"; 2812 - sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef"; 2813 - }; 2814 - }; 2815 - "lodash.escaperegexp-4.1.2" = { 2816 - name = "lodash.escaperegexp"; 2817 - packageName = "lodash.escaperegexp"; 2818 - version = "4.1.2"; 2819 - src = fetchurl { 2820 - url = "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz"; 2821 - sha1 = "64762c48618082518ac3df4ccf5d5886dae20347"; 2740 + sha512 = "TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA=="; 2822 2741 }; 2823 2742 }; 2824 2743 "lodash.flattendeep-4.4.0" = { ··· 2809 2764 version = "4.4.0"; 2810 2765 src = fetchurl { 2811 2766 url = "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz"; 2812 - sha1 = "fb030917f86a3134e5bc9bec0d69e0013ddfedb2"; 2767 + sha512 = "uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ=="; 2813 2768 }; 2814 2769 }; 2815 2770 "lodash.get-4.4.2" = { ··· 2818 2773 version = "4.4.2"; 2819 2774 src = fetchurl { 2820 2775 url = "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz"; 2821 - sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99"; 2776 + sha512 = "z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ=="; 2822 2777 }; 2823 2778 }; 2824 - "lodash.isplainobject-4.0.6" = { 2825 - name = "lodash.isplainobject"; 2826 - packageName = "lodash.isplainobject"; 2827 - version = "4.0.6"; 2828 - src = fetchurl { 2829 - url = "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz"; 2830 - sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb"; 2831 - }; 2832 - }; 2833 - "lodash.isstring-4.0.1" = { 2834 - name = "lodash.isstring"; 2835 - packageName = "lodash.isstring"; 2836 - version = "4.0.1"; 2837 - src = fetchurl { 2838 - url = "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz"; 2839 - sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"; 2840 - }; 2841 - }; 2842 - "lodash.mergewith-4.6.2" = { 2843 - name = "lodash.mergewith"; 2844 - packageName = "lodash.mergewith"; 2779 + "lodash.merge-4.6.2" = { 2780 + name = "lodash.merge"; 2781 + packageName = "lodash.merge"; 2845 2782 version = "4.6.2"; 2846 2783 src = fetchurl { 2847 - url = "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz"; 2848 - sha512 = "GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ=="; 2784 + url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"; 2785 + sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 2849 2786 }; 2850 2787 }; 2851 2788 "lodash.omit-4.5.0" = { ··· 2836 2809 version = "4.5.0"; 2837 2810 src = fetchurl { 2838 2811 url = "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz"; 2839 - sha1 = "6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60"; 2812 + sha512 = "XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg=="; 2840 2813 }; 2841 2814 }; 2842 2815 "lodash.padend-4.6.1" = { ··· 2845 2818 version = "4.6.1"; 2846 2819 src = fetchurl { 2847 2820 url = "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.6.1.tgz"; 2848 - sha1 = "53ccba047d06e158d311f45da625f4e49e6f166e"; 2821 + sha512 = "sOQs2aqGpbl27tmCS1QNZA09Uqp01ZzWfDUoD+xzTii0E7dSQfRKcRetFwa+uXaxaqL+TKm7CgD2JdKP7aZBSw=="; 2849 2822 }; 2850 2823 }; 2851 2824 "lodash.pick-4.4.0" = { ··· 2854 2827 version = "4.4.0"; 2855 2828 src = fetchurl { 2856 2829 url = "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz"; 2857 - sha1 = "52f05610fff9ded422611441ed1fc123a03001b3"; 2830 + sha512 = "hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q=="; 2858 2831 }; 2859 2832 }; 2860 - "lodash.set-4.3.2" = { 2861 - name = "lodash.set"; 2862 - packageName = "lodash.set"; 2863 - version = "4.3.2"; 2833 + "lodash.truncate-4.4.2" = { 2834 + name = "lodash.truncate"; 2835 + packageName = "lodash.truncate"; 2836 + version = "4.4.2"; 2864 2837 src = fetchurl { 2865 - url = "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz"; 2866 - sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23"; 2838 + url = "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz"; 2839 + sha512 = "jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw=="; 2867 2840 }; 2868 2841 }; 2869 - "log-symbols-4.0.0" = { 2842 + "log-symbols-4.1.0" = { 2870 2843 name = "log-symbols"; 2871 2844 packageName = "log-symbols"; 2872 - version = "4.0.0"; 2845 + version = "4.1.0"; 2873 2846 src = fetchurl { 2874 - url = "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz"; 2875 - sha512 = "FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA=="; 2847 + url = "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz"; 2848 + sha512 = "8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg=="; 2849 + }; 2850 + }; 2851 + "loupe-2.3.6" = { 2852 + name = "loupe"; 2853 + packageName = "loupe"; 2854 + version = "2.3.6"; 2855 + src = fetchurl { 2856 + url = "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz"; 2857 + sha512 = "RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA=="; 2876 2858 }; 2877 2859 }; 2878 2860 "lru-cache-4.1.5" = { ··· 2920 2884 sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 2921 2885 }; 2922 2886 }; 2923 - "markdown-it-10.0.0" = { 2887 + "markdown-it-12.3.2" = { 2924 2888 name = "markdown-it"; 2925 2889 packageName = "markdown-it"; 2926 - version = "10.0.0"; 2890 + version = "12.3.2"; 2927 2891 src = fetchurl { 2928 - url = "https://registry.npmjs.org/markdown-it/-/markdown-it-10.0.0.tgz"; 2929 - sha512 = "YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg=="; 2892 + url = "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz"; 2893 + sha512 = "TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg=="; 2930 2894 }; 2931 2895 }; 2932 - "markdown-it-anchor-5.3.0" = { 2896 + "markdown-it-anchor-8.6.5" = { 2933 2897 name = "markdown-it-anchor"; 2934 2898 packageName = "markdown-it-anchor"; 2935 - version = "5.3.0"; 2899 + version = "8.6.5"; 2936 2900 src = fetchurl { 2937 - url = "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.3.0.tgz"; 2938 - sha512 = "/V1MnLL/rgJ3jkMWo84UR+K+jF1cxNG1a+KwqeXqTIJ+jtA8aWSHuigx8lTzauiIjBDbwF3NcWQMotd0Dm39jA=="; 2901 + url = "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.5.tgz"; 2902 + sha512 = "PI1qEHHkTNWT+X6Ip9w+paonfIQ+QZP9sCeMYi47oqhH+EsW8CrJ8J7CzV19QVOj6il8ATGbK2nTECj22ZHGvQ=="; 2939 2903 }; 2940 2904 }; 2941 - "marked-0.8.2" = { 2905 + "marked-4.2.4" = { 2942 2906 name = "marked"; 2943 2907 packageName = "marked"; 2944 - version = "0.8.2"; 2908 + version = "4.2.4"; 2945 2909 src = fetchurl { 2946 - url = "https://registry.npmjs.org/marked/-/marked-0.8.2.tgz"; 2947 - sha512 = "EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw=="; 2948 - }; 2949 - }; 2950 - "marked-1.2.7" = { 2951 - name = "marked"; 2952 - packageName = "marked"; 2953 - version = "1.2.7"; 2954 - src = fetchurl { 2955 - url = "https://registry.npmjs.org/marked/-/marked-1.2.7.tgz"; 2956 - sha512 = "No11hFYcXr/zkBvL6qFmAp1z6BKY3zqLMHny/JN/ey+al7qwCM2+CMBL9BOgqMxZU36fz4cCWfn2poWIf7QRXA=="; 2910 + url = "https://registry.npmjs.org/marked/-/marked-4.2.4.tgz"; 2911 + sha512 = "Wcc9ikX7Q5E4BYDPvh1C6QNSxrjC9tBgz+A/vAhp59KXUgachw++uMvMKiSW8oA85nopmPZcEvBoex/YLMsiyA=="; 2957 2912 }; 2958 2913 }; 2959 2914 "mdurl-1.0.1" = { ··· 2953 2926 version = "1.0.1"; 2954 2927 src = fetchurl { 2955 2928 url = "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz"; 2956 - sha1 = "fe85b2ec75a59037f2adfec100fd6c601761152e"; 2929 + sha512 = "/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g=="; 2957 2930 }; 2958 2931 }; 2959 - "mime-db-1.45.0" = { 2932 + "mime-db-1.51.0" = { 2960 2933 name = "mime-db"; 2961 2934 packageName = "mime-db"; 2962 - version = "1.45.0"; 2935 + version = "1.51.0"; 2963 2936 src = fetchurl { 2964 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz"; 2965 - sha512 = "CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w=="; 2937 + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz"; 2938 + sha512 = "5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g=="; 2966 2939 }; 2967 2940 }; 2968 - "mime-format-2.0.0" = { 2941 + "mime-format-2.0.1" = { 2969 2942 name = "mime-format"; 2970 2943 packageName = "mime-format"; 2971 - version = "2.0.0"; 2944 + version = "2.0.1"; 2972 2945 src = fetchurl { 2973 - url = "https://registry.npmjs.org/mime-format/-/mime-format-2.0.0.tgz"; 2974 - sha1 = "e29f8891e284d78270246f0050d6834bdbbe1332"; 2946 + url = "https://registry.npmjs.org/mime-format/-/mime-format-2.0.1.tgz"; 2947 + sha512 = "XxU3ngPbEnrYnNbIX+lYSaYg0M01v6p2ntd2YaFksTu0vayaw5OJvbdRyWs07EYRlLED5qadUZ+xo+XhOvFhwg=="; 2975 2948 }; 2976 2949 }; 2977 - "mime-types-2.1.28" = { 2950 + "mime-types-2.1.34" = { 2978 2951 name = "mime-types"; 2979 2952 packageName = "mime-types"; 2980 - version = "2.1.28"; 2953 + version = "2.1.34"; 2981 2954 src = fetchurl { 2982 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz"; 2983 - sha512 = "0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ=="; 2955 + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz"; 2956 + sha512 = "6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A=="; 2984 2957 }; 2985 2958 }; 2986 - "minimatch-3.0.4" = { 2959 + "minimatch-3.1.2" = { 2987 2960 name = "minimatch"; 2988 2961 packageName = "minimatch"; 2989 - version = "3.0.4"; 2962 + version = "3.1.2"; 2990 2963 src = fetchurl { 2991 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 2992 - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 2964 + url = "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"; 2965 + sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 2993 2966 }; 2994 2967 }; 2995 - "minimist-1.2.5" = { 2968 + "minimatch-4.2.1" = { 2969 + name = "minimatch"; 2970 + packageName = "minimatch"; 2971 + version = "4.2.1"; 2972 + src = fetchurl { 2973 + url = "https://registry.npmjs.org/minimatch/-/minimatch-4.2.1.tgz"; 2974 + sha512 = "9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g=="; 2975 + }; 2976 + }; 2977 + "minimist-1.2.7" = { 2996 2978 name = "minimist"; 2997 2979 packageName = "minimist"; 2998 - version = "1.2.5"; 2980 + version = "1.2.7"; 2999 2981 src = fetchurl { 3000 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; 3001 - sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 2982 + url = "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"; 2983 + sha512 = "bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="; 3002 2984 }; 3003 2985 }; 3004 - "mkdirp-0.5.5" = { 2986 + "mkdirp-0.5.6" = { 3005 2987 name = "mkdirp"; 3006 2988 packageName = "mkdirp"; 3007 - version = "0.5.5"; 2989 + version = "0.5.6"; 3008 2990 src = fetchurl { 3009 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"; 3010 - sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 2991 + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"; 2992 + sha512 = "FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="; 3011 2993 }; 3012 2994 }; 3013 2995 "mkdirp-1.0.4" = { ··· 3028 2992 sha512 = "vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="; 3029 2993 }; 3030 2994 }; 3031 - "mkdirp2-1.0.4" = { 2995 + "mkdirp2-1.0.5" = { 3032 2996 name = "mkdirp2"; 3033 2997 packageName = "mkdirp2"; 3034 - version = "1.0.4"; 2998 + version = "1.0.5"; 3035 2999 src = fetchurl { 3036 - url = "https://registry.npmjs.org/mkdirp2/-/mkdirp2-1.0.4.tgz"; 3037 - sha512 = "Q2PKB4ZR4UPtjLl76JfzlgSCUZhSV1AXQgAZa1qt5RiaALFjP/CDrGvFBrOz7Ck6McPcwMAxTsJvWOUjOU8XMw=="; 3000 + url = "https://registry.npmjs.org/mkdirp2/-/mkdirp2-1.0.5.tgz"; 3001 + sha512 = "xOE9xbICroUDmG1ye2h4bZ8WBie9EGmACaco8K8cx6RlkJJrxGIqjGqztAI+NMhexXBcdGbSEzI6N3EJPevxZw=="; 3038 3002 }; 3039 3003 }; 3040 - "mocha-8.2.1" = { 3004 + "mocha-9.2.2" = { 3041 3005 name = "mocha"; 3042 3006 packageName = "mocha"; 3043 - version = "8.2.1"; 3007 + version = "9.2.2"; 3044 3008 src = fetchurl { 3045 - url = "https://registry.npmjs.org/mocha/-/mocha-8.2.1.tgz"; 3046 - sha512 = "cuLBVfyFfFqbNR0uUKbDGXKGk+UDFe6aR4os78XIrMQpZl/nv7JYHcvP5MFIAb374b2zFXsdgEGwmzMtP0Xg8w=="; 3009 + url = "https://registry.npmjs.org/mocha/-/mocha-9.2.2.tgz"; 3010 + sha512 = "L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g=="; 3047 3011 }; 3048 3012 }; 3049 3013 "ms-2.1.2" = { ··· 3064 3028 sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 3065 3029 }; 3066 3030 }; 3067 - "nanoid-3.1.12" = { 3031 + "nanoid-3.3.1" = { 3068 3032 name = "nanoid"; 3069 3033 packageName = "nanoid"; 3070 - version = "3.1.12"; 3034 + version = "3.3.1"; 3071 3035 src = fetchurl { 3072 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.12.tgz"; 3073 - sha512 = "1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A=="; 3036 + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz"; 3037 + sha512 = "n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw=="; 3074 3038 }; 3075 3039 }; 3076 3040 "natural-compare-1.4.0" = { ··· 3079 3043 version = "1.4.0"; 3080 3044 src = fetchurl { 3081 3045 url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"; 3082 - sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; 3046 + sha512 = "OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="; 3083 3047 }; 3084 3048 }; 3085 3049 "neo-async-2.6.2" = { ··· 3091 3055 sha512 = "Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="; 3092 3056 }; 3093 3057 }; 3094 - "nise-4.0.4" = { 3058 + "nise-5.1.3" = { 3095 3059 name = "nise"; 3096 3060 packageName = "nise"; 3097 - version = "4.0.4"; 3061 + version = "5.1.3"; 3098 3062 src = fetchurl { 3099 - url = "https://registry.npmjs.org/nise/-/nise-4.0.4.tgz"; 3100 - sha512 = "bTTRUNlemx6deJa+ZyoCUTRvH3liK5+N6VQZ4NIw90AgDXY6iPnsqplNFf6STcj+ePk0H/xqxnP75Lr0J0Fq3A=="; 3063 + url = "https://registry.npmjs.org/nise/-/nise-5.1.3.tgz"; 3064 + sha512 = "U597iWTTBBYIV72986jyU382/MMZ70ApWcRmkoF1AZ75bpqOtI3Gugv/6+0jLgoDOabmcSwYBkSSAWIp1eA5cg=="; 3101 3065 }; 3102 3066 }; 3103 - "nock-13.0.7" = { 3067 + "nock-13.2.9" = { 3104 3068 name = "nock"; 3105 3069 packageName = "nock"; 3106 - version = "13.0.7"; 3070 + version = "13.2.9"; 3107 3071 src = fetchurl { 3108 - url = "https://registry.npmjs.org/nock/-/nock-13.0.7.tgz"; 3109 - sha512 = "WBz73VYIjdbO6BwmXODRQLtn7B5tldA9pNpWJe5QTtTEscQlY5KXU4srnGzBOK2fWakkXj69gfTnXGzmrsaRWw=="; 3072 + url = "https://registry.npmjs.org/nock/-/nock-13.2.9.tgz"; 3073 + sha512 = "1+XfJNYF1cjGB+TKMWi29eZ0b82QOvQs2YoLNzbpWGqFMtRQHTa57osqdGj4FrFPgkO4D4AZinzUJR9VvW3QUA=="; 3110 3074 }; 3111 3075 }; 3112 3076 "node-oauth1-1.3.0" = { ··· 3127 3091 sha512 = "RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ=="; 3128 3092 }; 3129 3093 }; 3094 + "node-releases-2.0.6" = { 3095 + name = "node-releases"; 3096 + packageName = "node-releases"; 3097 + version = "2.0.6"; 3098 + src = fetchurl { 3099 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz"; 3100 + sha512 = "PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg=="; 3101 + }; 3102 + }; 3130 3103 "normalize-path-3.0.0" = { 3131 3104 name = "normalize-path"; 3132 3105 packageName = "normalize-path"; ··· 3143 3098 src = fetchurl { 3144 3099 url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"; 3145 3100 sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; 3146 - }; 3147 - }; 3148 - "number-is-nan-1.0.1" = { 3149 - name = "number-is-nan"; 3150 - packageName = "number-is-nan"; 3151 - version = "1.0.1"; 3152 - src = fetchurl { 3153 - url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"; 3154 - sha1 = "097b602b53422a522c1afb8790318336941a011d"; 3155 3101 }; 3156 3102 }; 3157 3103 "nyc-15.1.0" = { ··· 3163 3127 sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; 3164 3128 }; 3165 3129 }; 3166 - "object-assign-4.1.1" = { 3167 - name = "object-assign"; 3168 - packageName = "object-assign"; 3169 - version = "4.1.1"; 3170 - src = fetchurl { 3171 - url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"; 3172 - sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 3173 - }; 3174 - }; 3175 3130 "object-get-2.1.1" = { 3176 3131 name = "object-get"; 3177 3132 packageName = "object-get"; ··· 3181 3154 sha512 = "OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA=="; 3182 3155 }; 3183 3156 }; 3184 - "object-to-spawn-args-2.0.0" = { 3157 + "object-to-spawn-args-2.0.1" = { 3185 3158 name = "object-to-spawn-args"; 3186 3159 packageName = "object-to-spawn-args"; 3187 - version = "2.0.0"; 3160 + version = "2.0.1"; 3188 3161 src = fetchurl { 3189 - url = "https://registry.npmjs.org/object-to-spawn-args/-/object-to-spawn-args-2.0.0.tgz"; 3190 - sha512 = "ZMT4owlXg3JGegecLlAgAA/6BsdKHn63R3ayXcAa3zFkF7oUBHcSb0oxszeutYe0FO2c1lT5pwCuidLkC4Gx3g=="; 3162 + url = "https://registry.npmjs.org/object-to-spawn-args/-/object-to-spawn-args-2.0.1.tgz"; 3163 + sha512 = "6FuKFQ39cOID+BMZ3QaphcC8Y4cw6LXBLyIgPU+OhIYwviJamPAn+4mITapnSBQrejB+NNp+FMskhD8Cq+Ys3w=="; 3191 3164 }; 3192 3165 }; 3193 3166 "once-1.4.0" = { ··· 3196 3169 version = "1.4.0"; 3197 3170 src = fetchurl { 3198 3171 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 3199 - sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 3172 + sha512 = "lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="; 3200 3173 }; 3201 3174 }; 3202 3175 "optionator-0.9.1" = { ··· 3224 3197 src = fetchurl { 3225 3198 url = "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"; 3226 3199 sha512 = "TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="; 3227 - }; 3228 - }; 3229 - "p-locate-3.0.0" = { 3230 - name = "p-locate"; 3231 - packageName = "p-locate"; 3232 - version = "3.0.0"; 3233 - src = fetchurl { 3234 - url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"; 3235 - sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; 3236 3200 }; 3237 3201 }; 3238 3202 "p-locate-4.1.0" = { ··· 3271 3253 sha512 = "whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ=="; 3272 3254 }; 3273 3255 }; 3274 - "packity-0.3.2" = { 3256 + "packity-0.3.4" = { 3275 3257 name = "packity"; 3276 3258 packageName = "packity"; 3277 - version = "0.3.2"; 3259 + version = "0.3.4"; 3278 3260 src = fetchurl { 3279 - url = "https://registry.npmjs.org/packity/-/packity-0.3.2.tgz"; 3280 - sha1 = "20566861a3ef24428e6d505fc542df452e7e9303"; 3261 + url = "https://registry.npmjs.org/packity/-/packity-0.3.4.tgz"; 3262 + sha512 = "DMl5Ny5yGtR2ZzsL8vDUSIdNL0L2kzOYV6y7T2l7ooMuIVCFqdBt8343AQhEeV7JBmvQsxvu8sXUmx1aFoOZQw=="; 3281 3263 }; 3282 3264 }; 3283 3265 "parent-module-1.0.1" = { ··· 3307 3289 sha512 = "kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA=="; 3308 3290 }; 3309 3291 }; 3310 - "path-exists-3.0.0" = { 3311 - name = "path-exists"; 3312 - packageName = "path-exists"; 3313 - version = "3.0.0"; 3314 - src = fetchurl { 3315 - url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; 3316 - sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; 3317 - }; 3318 - }; 3319 3292 "path-exists-4.0.0" = { 3320 3293 name = "path-exists"; 3321 3294 packageName = "path-exists"; ··· 3322 3313 version = "1.0.1"; 3323 3314 src = fetchurl { 3324 3315 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 3325 - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 3316 + sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="; 3326 3317 }; 3327 3318 }; 3328 3319 "path-key-3.1.1" = { ··· 3334 3325 sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 3335 3326 }; 3336 3327 }; 3337 - "path-parse-1.0.6" = { 3328 + "path-parse-1.0.7" = { 3338 3329 name = "path-parse"; 3339 3330 packageName = "path-parse"; 3340 - version = "1.0.6"; 3331 + version = "1.0.7"; 3341 3332 src = fetchurl { 3342 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz"; 3343 - sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="; 3333 + url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"; 3334 + sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 3344 3335 }; 3345 3336 }; 3346 3337 "path-to-regexp-1.8.0" = { ··· 3367 3358 version = "2.1.0"; 3368 3359 src = fetchurl { 3369 3360 url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; 3370 - sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; 3361 + sha512 = "7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow=="; 3371 3362 }; 3372 3363 }; 3373 - "picomatch-2.2.2" = { 3364 + "picocolors-1.0.0" = { 3365 + name = "picocolors"; 3366 + packageName = "picocolors"; 3367 + version = "1.0.0"; 3368 + src = fetchurl { 3369 + url = "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"; 3370 + sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; 3371 + }; 3372 + }; 3373 + "picomatch-2.3.1" = { 3374 3374 name = "picomatch"; 3375 3375 packageName = "picomatch"; 3376 - version = "2.2.2"; 3376 + version = "2.3.1"; 3377 3377 src = fetchurl { 3378 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz"; 3379 - sha512 = "q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg=="; 3378 + url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"; 3379 + sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; 3380 3380 }; 3381 3381 }; 3382 3382 "pify-3.0.0" = { ··· 3394 3376 version = "3.0.0"; 3395 3377 src = fetchurl { 3396 3378 url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"; 3397 - sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"; 3379 + sha512 = "C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg=="; 3398 3380 }; 3399 3381 }; 3400 3382 "pkg-dir-4.2.0" = { ··· 3406 3388 sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 3407 3389 }; 3408 3390 }; 3409 - "postcss-7.0.35" = { 3410 - name = "postcss"; 3411 - packageName = "postcss"; 3412 - version = "7.0.35"; 3413 - src = fetchurl { 3414 - url = "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz"; 3415 - sha512 = "3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg=="; 3416 - }; 3417 - }; 3418 - "postman-collection-3.6.9" = { 3391 + "postman-collection-4.1.1" = { 3419 3392 name = "postman-collection"; 3420 3393 packageName = "postman-collection"; 3421 - version = "3.6.9"; 3394 + version = "4.1.1"; 3422 3395 src = fetchurl { 3423 - url = "https://registry.npmjs.org/postman-collection/-/postman-collection-3.6.9.tgz"; 3424 - sha512 = "R3A4tM/Ll6ekkfsXqqefR2r/jSyubXc9Pa/DQSbocEUKzdT3QMMb0QR5SHNjDuR1qE+bywC5dyD2FO2+DFXJ6w=="; 3396 + url = "https://registry.npmjs.org/postman-collection/-/postman-collection-4.1.1.tgz"; 3397 + sha512 = "ODpJtlf8r99DMcTU7gFmi/yvQYckFzcuE6zL/fWnyrFT34ugdCBFlX+DN7M+AnP6lmR822fv5s60H4DnL4+fAg=="; 3425 3398 }; 3426 3399 }; 3427 - "postman-collection-transformer-4.0.0" = { 3400 + "postman-collection-transformer-4.1.6" = { 3428 3401 name = "postman-collection-transformer"; 3429 3402 packageName = "postman-collection-transformer"; 3430 - version = "4.0.0"; 3403 + version = "4.1.6"; 3431 3404 src = fetchurl { 3432 - url = "https://registry.npmjs.org/postman-collection-transformer/-/postman-collection-transformer-4.0.0.tgz"; 3433 - sha512 = "AGNGiSvMR7uJpuf2PpYbteYTsE/xsutyuUTaIRCcBhw8h0PS4vyQHua15uNB+PRaNsV8wKFm30T6z23yUg0rKg=="; 3405 + url = "https://registry.npmjs.org/postman-collection-transformer/-/postman-collection-transformer-4.1.6.tgz"; 3406 + sha512 = "xvdQb6sZoWcG9xZXUPSuxocjcd6WCZlINlGGiuHdSfxhgiwQhj9qhF0JRFbagZ8xB0+pYUairD5MiCENc6DEVA=="; 3434 3407 }; 3435 3408 }; 3436 3409 "postman-jsdoc-theme-0.0.3" = { ··· 3430 3421 version = "0.0.3"; 3431 3422 src = fetchurl { 3432 3423 url = "https://registry.npmjs.org/postman-jsdoc-theme/-/postman-jsdoc-theme-0.0.3.tgz"; 3433 - sha1 = "60e4fbf3b2175f772520b3c978c07a8bd32b5829"; 3424 + sha512 = "UBiDlVw56c++OYaisumfu6jwJY26ioUuiZtOowC763BiaVt+SazQIDdUr6TeBkaDG2HrvTfgypY43khweERwSg=="; 3434 3425 }; 3435 3426 }; 3436 - "postman-request-2.88.1-postman.28" = { 3427 + "postman-request-2.88.1-postman.31" = { 3437 3428 name = "postman-request"; 3438 3429 packageName = "postman-request"; 3439 - version = "2.88.1-postman.28"; 3430 + version = "2.88.1-postman.31"; 3440 3431 src = fetchurl { 3441 - url = "https://registry.npmjs.org/postman-request/-/postman-request-2.88.1-postman.28.tgz"; 3442 - sha512 = "QjhC9tIuHZTlYJafzCz7u+Nq57NgtOhJmt94RjcNyzpIts1QbihmAgYm0OhNoqcOIU91sNi2aYw2PCyAJR3kcQ=="; 3432 + url = "https://registry.npmjs.org/postman-request/-/postman-request-2.88.1-postman.31.tgz"; 3433 + sha512 = "OJbYqP7ItxQ84yHyuNpDywCZB0HYbpHJisMQ9lb1cSL3N5H3Td6a2+3l/a74UMd3u82BiGC5yQyYmdOIETP/nQ=="; 3443 3434 }; 3444 3435 }; 3445 - "postman-runtime-7.26.10" = { 3436 + "postman-runtime-7.29.0" = { 3446 3437 name = "postman-runtime"; 3447 3438 packageName = "postman-runtime"; 3448 - version = "7.26.10"; 3439 + version = "7.29.0"; 3449 3440 src = fetchurl { 3450 - url = "https://registry.npmjs.org/postman-runtime/-/postman-runtime-7.26.10.tgz"; 3451 - sha512 = "rYrSF/G0FoWHvOfbEuKVAgKYU8Nl6ow4+iYfdpRfJuTNcrHmfsdumzzdRJ8n0ZY0awAyrrtcAUr/NvSfdof3qA=="; 3441 + url = "https://registry.npmjs.org/postman-runtime/-/postman-runtime-7.29.0.tgz"; 3442 + sha512 = "eXxHREE/fUpohkGPRgBY1YccSGx9cyW3mtGiPyIE4zD5fYzasgBHqW6kbEND3Xrd3yf/uht/YI1H8O7J1+A1+w=="; 3452 3443 }; 3453 3444 }; 3454 - "postman-sandbox-4.0.1" = { 3445 + "postman-sandbox-4.0.6" = { 3455 3446 name = "postman-sandbox"; 3456 3447 packageName = "postman-sandbox"; 3457 - version = "4.0.1"; 3448 + version = "4.0.6"; 3458 3449 src = fetchurl { 3459 - url = "https://registry.npmjs.org/postman-sandbox/-/postman-sandbox-4.0.1.tgz"; 3460 - sha512 = "m0Jw95y5kzSdCY3yWf/hZlkqYxRyBG5sxqiI2D/48nKiHnYLkyMSHErRDJbMj7K4tjXBXn+BKWpWnRsf+iBdlw=="; 3450 + url = "https://registry.npmjs.org/postman-sandbox/-/postman-sandbox-4.0.6.tgz"; 3451 + sha512 = "PPRanSNEE4zy3kO7CeSBHmAfJnGdD9ecHY/Mjh26CQuZZarGkNO8c0U/n+xX3+5M1BRNc82UYq6YCtdsSDqcng=="; 3461 3452 }; 3462 3453 }; 3463 - "postman-url-encoder-3.0.1" = { 3454 + "postman-url-encoder-3.0.5" = { 3464 3455 name = "postman-url-encoder"; 3465 3456 packageName = "postman-url-encoder"; 3466 - version = "3.0.1"; 3457 + version = "3.0.5"; 3467 3458 src = fetchurl { 3468 - url = "https://registry.npmjs.org/postman-url-encoder/-/postman-url-encoder-3.0.1.tgz"; 3469 - sha512 = "dMPqXnkDlstM2Eya+Gw4MIGWEan8TzldDcUKZIhZUsJ/G5JjubfQPhFhVWKzuATDMvwvrWbSjF+8VmAvbu6giw=="; 3459 + url = "https://registry.npmjs.org/postman-url-encoder/-/postman-url-encoder-3.0.5.tgz"; 3460 + sha512 = "jOrdVvzUXBC7C+9gkIkpDJ3HIxOHTIqjpQ4C1EMt1ZGeMvSEpbFCKq23DEfgsj46vMnDgyQf+1ZLp2Wm+bKSsA=="; 3470 3461 }; 3471 3462 }; 3472 3463 "prelude-ls-1.2.1" = { ··· 3529 3520 version = "1.0.2"; 3530 3521 src = fetchurl { 3531 3522 url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; 3532 - sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; 3523 + sha512 = "b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ=="; 3533 3524 }; 3534 3525 }; 3535 - "psl-1.8.0" = { 3526 + "psl-1.9.0" = { 3536 3527 name = "psl"; 3537 3528 packageName = "psl"; 3538 - version = "1.8.0"; 3529 + version = "1.9.0"; 3539 3530 src = fetchurl { 3540 - url = "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"; 3541 - sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="; 3531 + url = "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz"; 3532 + sha512 = "E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="; 3542 3533 }; 3543 3534 }; 3544 3535 "pump-1.0.3" = { ··· 3565 3556 version = "1.0.1"; 3566 3557 src = fetchurl { 3567 3558 url = "https://registry.npmjs.org/q/-/q-1.0.1.tgz"; 3568 - sha1 = "11872aeedee89268110b10a718448ffb10112a14"; 3559 + sha512 = "18MnBaCeBX9sLRUdtxz/6onlb7wLzFxCylklyO8n27y5JxJYaGLPu4ccyc5zih58SpEzY8QmfwaWqguqXU6Y+A=="; 3569 3560 }; 3570 3561 }; 3571 - "qs-6.5.2" = { 3562 + "qs-6.5.3" = { 3572 3563 name = "qs"; 3573 3564 packageName = "qs"; 3574 - version = "6.5.2"; 3565 + version = "6.5.3"; 3575 3566 src = fetchurl { 3576 - url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; 3577 - sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; 3567 + url = "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz"; 3568 + sha512 = "qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA=="; 3578 3569 }; 3579 3570 }; 3580 - "ramda-0.27.1" = { 3581 - name = "ramda"; 3582 - packageName = "ramda"; 3583 - version = "0.27.1"; 3571 + "rambda-7.4.0" = { 3572 + name = "rambda"; 3573 + packageName = "rambda"; 3574 + version = "7.4.0"; 3584 3575 src = fetchurl { 3585 - url = "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz"; 3586 - sha512 = "PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw=="; 3576 + url = "https://registry.npmjs.org/rambda/-/rambda-7.4.0.tgz"; 3577 + sha512 = "A9hihu7dUTLOUCM+I8E61V4kRXnN4DwYeK0DwCBydC1MqNI1PidyAtbtpsJlBBzK4icSctEcCQ1bGcLpBuETUQ=="; 3587 3578 }; 3588 3579 }; 3589 3580 "randombytes-2.1.0" = { ··· 3601 3592 version = "1.0.34"; 3602 3593 src = fetchurl { 3603 3594 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz"; 3604 - sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c"; 3595 + sha512 = "ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg=="; 3605 3596 }; 3606 3597 }; 3607 3598 "readable-stream-2.3.7" = { ··· 3613 3604 sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 3614 3605 }; 3615 3606 }; 3616 - "readable-stream-3.6.0" = { 3617 - name = "readable-stream"; 3618 - packageName = "readable-stream"; 3619 - version = "3.6.0"; 3620 - src = fetchurl { 3621 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; 3622 - sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 3623 - }; 3624 - }; 3625 3607 "readdir-0.0.13" = { 3626 3608 name = "readdir"; 3627 3609 packageName = "readdir"; 3628 3610 version = "0.0.13"; 3629 3611 src = fetchurl { 3630 3612 url = "https://registry.npmjs.org/readdir/-/readdir-0.0.13.tgz"; 3631 - sha1 = "4dd002d3f30dc11afe3bb177ad8e99094f7f62dd"; 3613 + sha512 = "5bdsemn0z0E9u/ONNfnKBgjH4X6Y9HhW+0i46uVIwxE9YtUOZVrLAK4rXw/wlV+Epzewxy2jXcKmECwAcIRyBQ=="; 3632 3614 }; 3633 3615 }; 3634 - "readdirp-3.5.0" = { 3616 + "readdirp-3.6.0" = { 3635 3617 name = "readdirp"; 3636 3618 packageName = "readdirp"; 3637 - version = "3.5.0"; 3619 + version = "3.6.0"; 3638 3620 src = fetchurl { 3639 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz"; 3640 - sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ=="; 3621 + url = "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"; 3622 + sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; 3641 3623 }; 3642 3624 }; 3643 3625 "rechoir-0.6.2" = { ··· 3637 3637 version = "0.6.2"; 3638 3638 src = fetchurl { 3639 3639 url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz"; 3640 - sha1 = "85204b54dba82d5742e28c96756ef43af50e3384"; 3640 + sha512 = "HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw=="; 3641 3641 }; 3642 3642 }; 3643 - "recursive-readdir-2.2.2" = { 3643 + "recursive-readdir-2.2.3" = { 3644 3644 name = "recursive-readdir"; 3645 3645 packageName = "recursive-readdir"; 3646 - version = "2.2.2"; 3646 + version = "2.2.3"; 3647 3647 src = fetchurl { 3648 - url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz"; 3649 - sha512 = "nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg=="; 3648 + url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz"; 3649 + sha512 = "8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA=="; 3650 3650 }; 3651 3651 }; 3652 3652 "reduce-extract-1.0.0" = { ··· 3655 3655 version = "1.0.0"; 3656 3656 src = fetchurl { 3657 3657 url = "https://registry.npmjs.org/reduce-extract/-/reduce-extract-1.0.0.tgz"; 3658 - sha1 = "67f2385beda65061b5f5f4312662e8b080ca1525"; 3658 + sha512 = "QF8vjWx3wnRSL5uFMyCjDeDc5EBMiryoT9tz94VvgjKfzecHAVnqmXAwQDcr7X4JmLc2cjkjFGCVzhMqDjgR9g=="; 3659 3659 }; 3660 3660 }; 3661 3661 "reduce-flatten-1.0.1" = { ··· 3664 3664 version = "1.0.1"; 3665 3665 src = fetchurl { 3666 3666 url = "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-1.0.1.tgz"; 3667 - sha1 = "258c78efd153ddf93cb561237f61184f3696e327"; 3667 + sha512 = "j5WfFJfc9CoXv/WbwVLHq74i/hdTUpy+iNC534LxczMRP67vJeK3V9JOdnL0N1cIRbn9mYhE2yVjvvKXDxvNXQ=="; 3668 3668 }; 3669 3669 }; 3670 - "reduce-flatten-3.0.0" = { 3670 + "reduce-flatten-3.0.1" = { 3671 3671 name = "reduce-flatten"; 3672 3672 packageName = "reduce-flatten"; 3673 - version = "3.0.0"; 3673 + version = "3.0.1"; 3674 3674 src = fetchurl { 3675 - url = "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-3.0.0.tgz"; 3676 - sha512 = "eczl8wAYBxJ6Egl6I1ECIF+8z6sHu+KE7BzaEDZTpPXKXfy9SUDQlVYwkRcNTjJLC3Iakxbhss50KuT/R6SYfg=="; 3675 + url = "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-3.0.1.tgz"; 3676 + sha512 = "bYo+97BmUUOzg09XwfkwALt4PQH1M5L0wzKerBt6WLm3Fhdd43mMS89HiT1B9pJIqko/6lWx3OnV4J9f2Kqp5Q=="; 3677 3677 }; 3678 3678 }; 3679 3679 "reduce-unique-2.0.1" = { ··· 3691 3691 version = "1.0.1"; 3692 3692 src = fetchurl { 3693 3693 url = "https://registry.npmjs.org/reduce-without/-/reduce-without-1.0.1.tgz"; 3694 - sha1 = "68ad0ead11855c9a37d4e8256c15bbf87972fc8c"; 3694 + sha512 = "zQv5y/cf85sxvdrKPlfcRzlDn/OqKFThNimYmsS3flmkioKvkUGn2Qg9cJVoQiEvdxFGLE0MQER/9fZ9sUqdxg=="; 3695 3695 }; 3696 3696 }; 3697 - "regexpp-3.1.0" = { 3697 + "regexp-tree-0.1.24" = { 3698 + name = "regexp-tree"; 3699 + packageName = "regexp-tree"; 3700 + version = "0.1.24"; 3701 + src = fetchurl { 3702 + url = "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.24.tgz"; 3703 + sha512 = "s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw=="; 3704 + }; 3705 + }; 3706 + "regexpp-3.2.0" = { 3698 3707 name = "regexpp"; 3699 3708 packageName = "regexpp"; 3700 - version = "3.1.0"; 3709 + version = "3.2.0"; 3701 3710 src = fetchurl { 3702 - url = "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz"; 3703 - sha512 = "ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q=="; 3711 + url = "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz"; 3712 + sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; 3704 3713 }; 3705 3714 }; 3706 - "regextras-0.7.1" = { 3715 + "regextras-0.8.0" = { 3707 3716 name = "regextras"; 3708 3717 packageName = "regextras"; 3709 - version = "0.7.1"; 3718 + version = "0.8.0"; 3710 3719 src = fetchurl { 3711 - url = "https://registry.npmjs.org/regextras/-/regextras-0.7.1.tgz"; 3712 - sha512 = "9YXf6xtW+qzQ+hcMQXx95MOvfqXFgsKDZodX3qZB0x2n5Z94ioetIITsBtvJbiOyxa/6s9AtyweBLCdPmPko/w=="; 3720 + url = "https://registry.npmjs.org/regextras/-/regextras-0.8.0.tgz"; 3721 + sha512 = "k519uI04Z3SaY0fLX843MRXnDeG2+vHOFsyhiPZvNLe7r8rD2YNRjq4BQLZZ0oAr2NrtvZlICsXysGNFPGa3CQ=="; 3713 3722 }; 3714 3723 }; 3715 3724 "release-zalgo-1.0.0" = { ··· 3727 3718 version = "1.0.0"; 3728 3719 src = fetchurl { 3729 3720 url = "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz"; 3730 - sha1 = "09700b7e5074329739330e535c5a90fb67851730"; 3721 + sha512 = "gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA=="; 3731 3722 }; 3732 3723 }; 3733 3724 "require-directory-2.1.1" = { ··· 3736 3727 version = "2.1.1"; 3737 3728 src = fetchurl { 3738 3729 url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; 3739 - sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 3730 + sha512 = "fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="; 3740 3731 }; 3741 3732 }; 3742 3733 "require-from-string-2.0.2" = { ··· 3757 3748 sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 3758 3749 }; 3759 3750 }; 3760 - "requizzle-0.2.3" = { 3751 + "requizzle-0.2.4" = { 3761 3752 name = "requizzle"; 3762 3753 packageName = "requizzle"; 3763 - version = "0.2.3"; 3754 + version = "0.2.4"; 3764 3755 src = fetchurl { 3765 - url = "https://registry.npmjs.org/requizzle/-/requizzle-0.2.3.tgz"; 3766 - sha512 = "YanoyJjykPxGHii0fZP0uUPEXpvqfBDxWV7s6GKAiiOsiqhX6vHNyW3Qzdmqp/iq/ExbhaGbVrjB4ruEVSM4GQ=="; 3756 + url = "https://registry.npmjs.org/requizzle/-/requizzle-0.2.4.tgz"; 3757 + sha512 = "JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw=="; 3767 3758 }; 3768 3759 }; 3769 - "resolve-1.19.0" = { 3760 + "resolve-1.22.1" = { 3770 3761 name = "resolve"; 3771 3762 packageName = "resolve"; 3772 - version = "1.19.0"; 3763 + version = "1.22.1"; 3773 3764 src = fetchurl { 3774 - url = "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz"; 3775 - sha512 = "rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg=="; 3765 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"; 3766 + sha512 = "nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="; 3776 3767 }; 3777 3768 }; 3778 3769 "resolve-from-4.0.0" = { ··· 3791 3782 src = fetchurl { 3792 3783 url = "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"; 3793 3784 sha512 = "qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="; 3794 - }; 3795 - }; 3796 - "ret-0.1.15" = { 3797 - name = "ret"; 3798 - packageName = "ret"; 3799 - version = "0.1.15"; 3800 - src = fetchurl { 3801 - url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"; 3802 - sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="; 3803 3785 }; 3804 3786 }; 3805 3787 "rimraf-3.0.2" = { ··· 3820 3820 sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 3821 3821 }; 3822 3822 }; 3823 - "safe-regex-1.1.0" = { 3823 + "safe-regex-2.1.1" = { 3824 3824 name = "safe-regex"; 3825 3825 packageName = "safe-regex"; 3826 - version = "1.1.0"; 3826 + version = "2.1.1"; 3827 3827 src = fetchurl { 3828 - url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"; 3829 - sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; 3828 + url = "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz"; 3829 + sha512 = "rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A=="; 3830 3830 }; 3831 3831 }; 3832 3832 "safer-buffer-2.1.2" = { ··· 3836 3836 src = fetchurl { 3837 3837 url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; 3838 3838 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 3839 - }; 3840 - }; 3841 - "sanitize-html-1.20.1" = { 3842 - name = "sanitize-html"; 3843 - packageName = "sanitize-html"; 3844 - version = "1.20.1"; 3845 - src = fetchurl { 3846 - url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.20.1.tgz"; 3847 - sha512 = "txnH8TQjaQvg2Q0HY06G6CDJLVYCpbnxrdO0WN8gjCKaU5J0KbyGYhZxx5QJg3WLZ1lB7XU9kDkfrCXUozqptA=="; 3848 3839 }; 3849 3840 }; 3850 3841 "sax-1.2.4" = { ··· 3865 3874 sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 3866 3875 }; 3867 3876 }; 3868 - "semver-7.3.4" = { 3877 + "semver-7.3.5" = { 3869 3878 name = "semver"; 3870 3879 packageName = "semver"; 3871 - version = "7.3.4"; 3880 + version = "7.3.5"; 3872 3881 src = fetchurl { 3873 - url = "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz"; 3874 - sha512 = "tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw=="; 3882 + url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 3883 + sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 3875 3884 }; 3876 3885 }; 3877 3886 "serialised-error-1.1.3" = { ··· 3883 3892 sha512 = "vybp3GItaR1ZtO2nxZZo8eOo7fnVaNtP3XE2vJKgzkKR2bagCkdJ1EpYYhEMd3qu/80DwQk9KjsNSxE3fXWq0g=="; 3884 3893 }; 3885 3894 }; 3886 - "serialize-javascript-5.0.1" = { 3895 + "serialize-javascript-6.0.0" = { 3887 3896 name = "serialize-javascript"; 3888 3897 packageName = "serialize-javascript"; 3889 - version = "5.0.1"; 3898 + version = "6.0.0"; 3890 3899 src = fetchurl { 3891 - url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; 3892 - sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA=="; 3900 + url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz"; 3901 + sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag=="; 3893 3902 }; 3894 3903 }; 3895 3904 "server-destroy-1.0.1" = { ··· 3898 3907 version = "1.0.1"; 3899 3908 src = fetchurl { 3900 3909 url = "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz"; 3901 - sha1 = "f13bf928e42b9c3e79383e61cc3998b5d14e6cdd"; 3910 + sha512 = "rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ=="; 3902 3911 }; 3903 3912 }; 3904 3913 "set-blocking-2.0.0" = { ··· 3907 3916 version = "2.0.0"; 3908 3917 src = fetchurl { 3909 3918 url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; 3910 - sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 3919 + sha512 = "KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="; 3911 3920 }; 3912 3921 }; 3913 3922 "shebang-command-2.0.0" = { ··· 3928 3937 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 3929 3938 }; 3930 3939 }; 3931 - "shelljs-0.8.4" = { 3940 + "shelljs-0.8.5" = { 3932 3941 name = "shelljs"; 3933 3942 packageName = "shelljs"; 3934 - version = "0.8.4"; 3943 + version = "0.8.5"; 3935 3944 src = fetchurl { 3936 - url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz"; 3937 - sha512 = "7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ=="; 3945 + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz"; 3946 + sha512 = "TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow=="; 3938 3947 }; 3939 3948 }; 3940 3949 "sigmund-1.0.1" = { ··· 3943 3952 version = "1.0.1"; 3944 3953 src = fetchurl { 3945 3954 url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz"; 3946 - sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590"; 3955 + sha512 = "fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g=="; 3947 3956 }; 3948 3957 }; 3949 - "signal-exit-3.0.3" = { 3958 + "signal-exit-3.0.7" = { 3950 3959 name = "signal-exit"; 3951 3960 packageName = "signal-exit"; 3952 - version = "3.0.3"; 3961 + version = "3.0.7"; 3953 3962 src = fetchurl { 3954 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"; 3955 - sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="; 3963 + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"; 3964 + sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 3956 3965 }; 3957 3966 }; 3958 - "sinon-9.2.4" = { 3967 + "sinon-13.0.2" = { 3959 3968 name = "sinon"; 3960 3969 packageName = "sinon"; 3961 - version = "9.2.4"; 3970 + version = "13.0.2"; 3962 3971 src = fetchurl { 3963 - url = "https://registry.npmjs.org/sinon/-/sinon-9.2.4.tgz"; 3964 - sha512 = "zljcULZQsJxVra28qIAL6ow1Z9tpattkCTEJR4RBP3TGc00FcttsP5pK284Nas5WjMZU5Yzy3kAIp3B3KRf5Yg=="; 3972 + url = "https://registry.npmjs.org/sinon/-/sinon-13.0.2.tgz"; 3973 + sha512 = "KvOrztAVqzSJWMDoxM4vM+GPys1df2VBoXm+YciyB/OLMamfS3VXh3oGh5WtrAGSzrgczNWFFY22oKb7Fi5eeA=="; 3965 3974 }; 3966 3975 }; 3967 3976 "slice-ansi-4.0.0" = { ··· 3973 3982 sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 3974 3983 }; 3975 3984 }; 3976 - "sort-array-4.1.3" = { 3985 + "sort-array-4.1.5" = { 3977 3986 name = "sort-array"; 3978 3987 packageName = "sort-array"; 3979 - version = "4.1.3"; 3988 + version = "4.1.5"; 3980 3989 src = fetchurl { 3981 - url = "https://registry.npmjs.org/sort-array/-/sort-array-4.1.3.tgz"; 3982 - sha512 = "6auiM0DNob/zF+7Ae/SM4BFL5D7DPK/HVcllhVu5V+FgoCPs0A6b6ZwJDuvJpXQgFpxqLZUOD2kdxqO4Z59dkg=="; 3983 - }; 3984 - }; 3985 - "source-map-0.5.7" = { 3986 - name = "source-map"; 3987 - packageName = "source-map"; 3988 - version = "0.5.7"; 3989 - src = fetchurl { 3990 - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; 3991 - sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; 3990 + url = "https://registry.npmjs.org/sort-array/-/sort-array-4.1.5.tgz"; 3991 + sha512 = "Ya4peoS1fgFN42RN1REk2FgdNOeLIEMKFGJvs7VTP3OklF8+kl2SkpVliZ4tk/PurWsrWRsdNdU+tgyOBkB9sA=="; 3992 3992 }; 3993 3993 }; 3994 3994 "source-map-0.6.1" = { ··· 4018 4036 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 4019 4037 }; 4020 4038 }; 4021 - "spdx-license-ids-3.0.7" = { 4039 + "spdx-license-ids-3.0.12" = { 4022 4040 name = "spdx-license-ids"; 4023 4041 packageName = "spdx-license-ids"; 4024 - version = "3.0.7"; 4042 + version = "3.0.12"; 4025 4043 src = fetchurl { 4026 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz"; 4027 - sha512 = "U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ=="; 4044 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz"; 4045 + sha512 = "rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA=="; 4028 4046 }; 4029 4047 }; 4030 4048 "split-ca-1.0.1" = { ··· 4033 4051 version = "1.0.1"; 4034 4052 src = fetchurl { 4035 4053 url = "https://registry.npmjs.org/split-ca/-/split-ca-1.0.1.tgz"; 4036 - sha1 = "6c83aff3692fa61256e0cd197e05e9de157691a6"; 4054 + sha512 = "Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ=="; 4037 4055 }; 4038 4056 }; 4039 4057 "sprintf-js-1.0.3" = { ··· 4042 4060 version = "1.0.3"; 4043 4061 src = fetchurl { 4044 4062 url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; 4045 - sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 4063 + sha512 = "D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="; 4046 4064 }; 4047 4065 }; 4048 - "srcset-1.0.0" = { 4049 - name = "srcset"; 4050 - packageName = "srcset"; 4051 - version = "1.0.0"; 4052 - src = fetchurl { 4053 - url = "https://registry.npmjs.org/srcset/-/srcset-1.0.0.tgz"; 4054 - sha1 = "a5669de12b42f3b1d5e83ed03c71046fc48f41ef"; 4055 - }; 4056 - }; 4057 - "sshpk-1.16.1" = { 4066 + "sshpk-1.17.0" = { 4058 4067 name = "sshpk"; 4059 4068 packageName = "sshpk"; 4060 - version = "1.16.1"; 4069 + version = "1.17.0"; 4061 4070 src = fetchurl { 4062 - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; 4063 - sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; 4064 - }; 4065 - }; 4066 - "stack-trace-0.0.10" = { 4067 - name = "stack-trace"; 4068 - packageName = "stack-trace"; 4069 - version = "0.0.10"; 4070 - src = fetchurl { 4071 - url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz"; 4072 - sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0"; 4071 + url = "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz"; 4072 + sha512 = "/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ=="; 4073 4073 }; 4074 4074 }; 4075 4075 "stack-trace-0.0.9" = { ··· 4060 4096 version = "0.0.9"; 4061 4097 src = fetchurl { 4062 4098 url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz"; 4063 - sha1 = "a8f6eaeca90674c333e7c43953f275b451510695"; 4099 + sha512 = "vjUc6sfgtgY0dxCdnc40mK6Oftjo9+2K8H/NG81TMhgL392FtiPA9tn9RLyTxXmTLPJPjF3VyzFp6bsWFLisMQ=="; 4064 4100 }; 4065 4101 }; 4066 4102 "stream-connect-1.0.2" = { ··· 4069 4105 version = "1.0.2"; 4070 4106 src = fetchurl { 4071 4107 url = "https://registry.npmjs.org/stream-connect/-/stream-connect-1.0.2.tgz"; 4072 - sha1 = "18bc81f2edb35b8b5d9a8009200a985314428a97"; 4108 + sha512 = "68Kl+79cE0RGKemKkhxTSg8+6AGrqBt+cbZAXevg2iJ6Y3zX4JhA/sZeGzLpxW9cXhmqAcE7KnJCisUmIUfnFQ=="; 4073 4109 }; 4074 4110 }; 4075 4111 "stream-length-1.0.2" = { ··· 4078 4114 version = "1.0.2"; 4079 4115 src = fetchurl { 4080 4116 url = "https://registry.npmjs.org/stream-length/-/stream-length-1.0.2.tgz"; 4081 - sha1 = "8277f3cbee49a4daabcfdb4e2f4a9b5e9f2c9f00"; 4117 + sha512 = "aI+qKFiwoDV4rsXiS7WRoCt+v2RX1nUj17+KJC5r2gfh5xoSJIfP6Y3Do/HtvesFcTSWthIuJ3l1cvKQY/+nZg=="; 4082 4118 }; 4083 4119 }; 4084 4120 "stream-via-1.0.4" = { ··· 4090 4126 sha512 = "DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ=="; 4091 4127 }; 4092 4128 }; 4093 - "strftime-0.10.0" = { 4094 - name = "strftime"; 4095 - packageName = "strftime"; 4096 - version = "0.10.0"; 4097 - src = fetchurl { 4098 - url = "https://registry.npmjs.org/strftime/-/strftime-0.10.0.tgz"; 4099 - sha1 = "b3f0fa419295202a5a289f6d6be9f4909a617193"; 4100 - }; 4101 - }; 4102 - "string-width-2.1.1" = { 4129 + "string-width-4.2.3" = { 4103 4130 name = "string-width"; 4104 4131 packageName = "string-width"; 4105 - version = "2.1.1"; 4132 + version = "4.2.3"; 4106 4133 src = fetchurl { 4107 - url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; 4108 - sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; 4109 - }; 4110 - }; 4111 - "string-width-3.1.0" = { 4112 - name = "string-width"; 4113 - packageName = "string-width"; 4114 - version = "3.1.0"; 4115 - src = fetchurl { 4116 - url = "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"; 4117 - sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; 4118 - }; 4119 - }; 4120 - "string-width-4.2.0" = { 4121 - name = "string-width"; 4122 - packageName = "string-width"; 4123 - version = "4.2.0"; 4124 - src = fetchurl { 4125 - url = "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz"; 4126 - sha512 = "zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg=="; 4134 + url = "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"; 4135 + sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 4127 4136 }; 4128 4137 }; 4129 4138 "string_decoder-0.10.31" = { ··· 4105 4168 version = "0.10.31"; 4106 4169 src = fetchurl { 4107 4170 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; 4108 - sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; 4171 + sha512 = "ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ=="; 4109 4172 }; 4110 4173 }; 4111 4174 "string_decoder-1.1.1" = { ··· 4117 4180 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 4118 4181 }; 4119 4182 }; 4120 - "string_decoder-1.3.0" = { 4121 - name = "string_decoder"; 4122 - packageName = "string_decoder"; 4123 - version = "1.3.0"; 4124 - src = fetchurl { 4125 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"; 4126 - sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; 4127 - }; 4128 - }; 4129 - "strip-ansi-3.0.1" = { 4183 + "strip-ansi-6.0.1" = { 4130 4184 name = "strip-ansi"; 4131 4185 packageName = "strip-ansi"; 4132 - version = "3.0.1"; 4186 + version = "6.0.1"; 4133 4187 src = fetchurl { 4134 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 4135 - sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; 4136 - }; 4137 - }; 4138 - "strip-ansi-4.0.0" = { 4139 - name = "strip-ansi"; 4140 - packageName = "strip-ansi"; 4141 - version = "4.0.0"; 4142 - src = fetchurl { 4143 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"; 4144 - sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; 4145 - }; 4146 - }; 4147 - "strip-ansi-5.2.0" = { 4148 - name = "strip-ansi"; 4149 - packageName = "strip-ansi"; 4150 - version = "5.2.0"; 4151 - src = fetchurl { 4152 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"; 4153 - sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; 4154 - }; 4155 - }; 4156 - "strip-ansi-6.0.0" = { 4157 - name = "strip-ansi"; 4158 - packageName = "strip-ansi"; 4159 - version = "6.0.0"; 4160 - src = fetchurl { 4161 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz"; 4162 - sha512 = "AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w=="; 4188 + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"; 4189 + sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 4163 4190 }; 4164 4191 }; 4165 4192 "strip-bom-4.0.0" = { ··· 4144 4243 sha512 = "6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="; 4145 4244 }; 4146 4245 }; 4147 - "supports-color-2.0.0" = { 4148 - name = "supports-color"; 4149 - packageName = "supports-color"; 4150 - version = "2.0.0"; 4151 - src = fetchurl { 4152 - url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; 4153 - sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; 4154 - }; 4155 - }; 4156 4246 "supports-color-5.5.0" = { 4157 4247 name = "supports-color"; 4158 4248 packageName = "supports-color"; ··· 4151 4259 src = fetchurl { 4152 4260 url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"; 4153 4261 sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 4154 - }; 4155 - }; 4156 - "supports-color-6.1.0" = { 4157 - name = "supports-color"; 4158 - packageName = "supports-color"; 4159 - version = "6.1.0"; 4160 - src = fetchurl { 4161 - url = "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz"; 4162 - sha512 = "qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ=="; 4163 4262 }; 4164 4263 }; 4165 4264 "supports-color-7.2.0" = { ··· 4162 4279 sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 4163 4280 }; 4164 4281 }; 4165 - "symbol-0.3.1" = { 4166 - name = "symbol"; 4167 - packageName = "symbol"; 4168 - version = "0.3.1"; 4282 + "supports-color-8.1.1" = { 4283 + name = "supports-color"; 4284 + packageName = "supports-color"; 4285 + version = "8.1.1"; 4169 4286 src = fetchurl { 4170 - url = "https://registry.npmjs.org/symbol/-/symbol-0.3.1.tgz"; 4171 - sha1 = "b6f9a900d496a57f02408f22198c109dda063041"; 4287 + url = "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"; 4288 + sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 4172 4289 }; 4173 4290 }; 4174 - "table-6.0.7" = { 4291 + "supports-preserve-symlinks-flag-1.0.0" = { 4292 + name = "supports-preserve-symlinks-flag"; 4293 + packageName = "supports-preserve-symlinks-flag"; 4294 + version = "1.0.0"; 4295 + src = fetchurl { 4296 + url = "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; 4297 + sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 4298 + }; 4299 + }; 4300 + "table-6.8.1" = { 4175 4301 name = "table"; 4176 4302 packageName = "table"; 4177 - version = "6.0.7"; 4303 + version = "6.8.1"; 4178 4304 src = fetchurl { 4179 - url = "https://registry.npmjs.org/table/-/table-6.0.7.tgz"; 4180 - sha512 = "rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g=="; 4305 + url = "https://registry.npmjs.org/table/-/table-6.8.1.tgz"; 4306 + sha512 = "Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA=="; 4181 4307 }; 4182 4308 }; 4183 4309 "table-layout-0.4.5" = { ··· 4204 4312 version = "2.6.2"; 4205 4313 src = fetchurl { 4206 4314 url = "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz"; 4207 - sha1 = "7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268"; 4315 + sha512 = "y3JaeRSplks6NYQuCOj3ZFMO3j60rTwbuKCvZxsAraGYH2epusatvZ0baZYA01WsGqJBq/Dl6vOrMUJqyMj8kA=="; 4208 4316 }; 4209 4317 }; 4210 4318 "tar-fs-1.16.3" = { ··· 4240 4348 version = "1.0.0"; 4241 4349 src = fetchurl { 4242 4350 url = "https://registry.npmjs.org/temp-path/-/temp-path-1.0.0.tgz"; 4243 - sha1 = "24b1543973ab442896d9ad367dd9cbdbfafe918b"; 4351 + sha512 = "TvmyH7kC6ZVTYkqCODjJIbgvu0FKiwQpZ4D1aknE7xpcDf/qEOB8KZEK5ef2pfbVoiBhNWs3yx4y+ESMtNYmlg=="; 4244 4352 }; 4245 4353 }; 4246 4354 "test-exclude-6.0.0" = { ··· 4258 4366 version = "1.1.0"; 4259 4367 src = fetchurl { 4260 4368 url = "https://registry.npmjs.org/test-value/-/test-value-1.1.0.tgz"; 4261 - sha1 = "a09136f72ec043d27c893707c2b159bfad7de93f"; 4369 + sha512 = "wrsbRo7qP+2Je8x8DsK8ovCGyxe3sYfQwOraIY/09A2gFXU9DYKiTF14W4ki/01AEh56kMzAmlj9CaHGDDUBJA=="; 4262 4370 }; 4263 4371 }; 4264 4372 "test-value-2.1.0" = { ··· 4267 4375 version = "2.1.0"; 4268 4376 src = fetchurl { 4269 4377 url = "https://registry.npmjs.org/test-value/-/test-value-2.1.0.tgz"; 4270 - sha1 = "11da6ff670f3471a73b625ca4f3fdcf7bb748291"; 4378 + sha512 = "+1epbAxtKeXttkGFMTX9H42oqzOTufR1ceCF+GYA5aOmvaPq9wd4PUS8329fn2RRLGNeUkgRLnVpycjx8DsO2w=="; 4271 4379 }; 4272 4380 }; 4273 4381 "test-value-3.0.0" = { ··· 4285 4393 version = "0.2.0"; 4286 4394 src = fetchurl { 4287 4395 url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"; 4288 - sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; 4396 + sha512 = "N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="; 4289 4397 }; 4290 4398 }; 4291 4399 "through-2.3.8" = { ··· 4294 4402 version = "2.3.8"; 4295 4403 src = fetchurl { 4296 4404 url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; 4297 - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 4405 + sha512 = "w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="; 4298 4406 }; 4299 4407 }; 4300 4408 "to-buffer-1.1.1" = { ··· 4312 4420 version = "2.0.0"; 4313 4421 src = fetchurl { 4314 4422 url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 4315 - sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; 4423 + sha512 = "/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog=="; 4316 4424 }; 4317 4425 }; 4318 4426 "to-regex-range-5.0.1" = { ··· 4348 4456 version = "0.14.5"; 4349 4457 src = fetchurl { 4350 4458 url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"; 4351 - sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; 4459 + sha512 = "KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA=="; 4352 4460 }; 4353 4461 }; 4354 4462 "type-check-0.4.0" = { ··· 4369 4477 sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="; 4370 4478 }; 4371 4479 }; 4480 + "type-fest-0.20.2" = { 4481 + name = "type-fest"; 4482 + packageName = "type-fest"; 4483 + version = "0.20.2"; 4484 + src = fetchurl { 4485 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 4486 + sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 4487 + }; 4488 + }; 4372 4489 "type-fest-0.8.1" = { 4373 4490 name = "type-fest"; 4374 4491 packageName = "type-fest"; ··· 4393 4492 version = "0.0.6"; 4394 4493 src = fetchurl { 4395 4494 url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"; 4396 - sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 4495 + sha512 = "/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="; 4397 4496 }; 4398 4497 }; 4399 4498 "typedarray-to-buffer-3.1.5" = { ··· 4411 4510 version = "2.6.1"; 4412 4511 src = fetchurl { 4413 4512 url = "https://registry.npmjs.org/typical/-/typical-2.6.1.tgz"; 4414 - sha1 = "5c080e5d661cbbe38259d2e70a3c7253e873881d"; 4513 + sha512 = "ofhi8kjIje6npGozTip9Fr8iecmYfEbS06i0JnIg+rh51KakryWF4+jX8lLKZVhy6N+ID45WYSFCxPOdTWCzNg=="; 4415 4514 }; 4416 4515 }; 4417 4516 "typical-4.0.0" = { ··· 4441 4540 sha512 = "8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA=="; 4442 4541 }; 4443 4542 }; 4444 - "uglify-js-3.12.6" = { 4543 + "uglify-js-3.17.4" = { 4445 4544 name = "uglify-js"; 4446 4545 packageName = "uglify-js"; 4447 - version = "3.12.6"; 4546 + version = "3.17.4"; 4448 4547 src = fetchurl { 4449 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.12.6.tgz"; 4450 - sha512 = "aqWHe3DfQmZUDGWBbabZ2eQnJlQd1fKlMUu7gV+MiTuDzdgDw31bI3wA2jLLsV/hNcDP26IfyEgSVoft5+0SVw=="; 4548 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz"; 4549 + sha512 = "T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g=="; 4451 4550 }; 4452 4551 }; 4453 - "underscore-1.10.2" = { 4552 + "underscore-1.12.1" = { 4454 4553 name = "underscore"; 4455 4554 packageName = "underscore"; 4456 - version = "1.10.2"; 4555 + version = "1.12.1"; 4457 4556 src = fetchurl { 4458 - url = "https://registry.npmjs.org/underscore/-/underscore-1.10.2.tgz"; 4459 - sha512 = "N4P+Q/BuyuEKFJ43B9gYuOj4TQUHXX+j2FqguVOpjkssLUUrnJofCcBccJSCoeturDoZU6GorDTHSvUDlSQbTg=="; 4557 + url = "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz"; 4558 + sha512 = "hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw=="; 4460 4559 }; 4461 4560 }; 4462 - "underscore-1.7.0" = { 4561 + "underscore-1.13.6" = { 4463 4562 name = "underscore"; 4464 4563 packageName = "underscore"; 4465 - version = "1.7.0"; 4564 + version = "1.13.6"; 4466 4565 src = fetchurl { 4467 - url = "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz"; 4468 - sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209"; 4566 + url = "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz"; 4567 + sha512 = "+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A=="; 4568 + }; 4569 + }; 4570 + "update-browserslist-db-1.0.10" = { 4571 + name = "update-browserslist-db"; 4572 + packageName = "update-browserslist-db"; 4573 + version = "1.0.10"; 4574 + src = fetchurl { 4575 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz"; 4576 + sha512 = "OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ=="; 4469 4577 }; 4470 4578 }; 4471 4579 "uri-js-4.4.1" = { ··· 4486 4576 sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; 4487 4577 }; 4488 4578 }; 4489 - "utcstring-0.1.0" = { 4490 - name = "utcstring"; 4491 - packageName = "utcstring"; 4492 - version = "0.1.0"; 4493 - src = fetchurl { 4494 - url = "https://registry.npmjs.org/utcstring/-/utcstring-0.1.0.tgz"; 4495 - sha1 = "430fd510ab7fc95b5d5910c902d79880c208436b"; 4496 - }; 4497 - }; 4498 4579 "util-deprecate-1.0.2" = { 4499 4580 name = "util-deprecate"; 4500 4581 packageName = "util-deprecate"; 4501 4582 version = "1.0.2"; 4502 4583 src = fetchurl { 4503 4584 url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; 4504 - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 4585 + sha512 = "EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="; 4505 4586 }; 4506 4587 }; 4507 4588 "uuid-3.4.0" = { ··· 4504 4603 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 4505 4604 }; 4506 4605 }; 4507 - "uvm-2.0.1" = { 4508 - name = "uvm"; 4509 - packageName = "uvm"; 4510 - version = "2.0.1"; 4606 + "uuid-8.3.2" = { 4607 + name = "uuid"; 4608 + packageName = "uuid"; 4609 + version = "8.3.2"; 4511 4610 src = fetchurl { 4512 - url = "https://registry.npmjs.org/uvm/-/uvm-2.0.1.tgz"; 4513 - sha512 = "bZAckfNKnr95YkTCVZWyzK+7w1c8sYJuTresCBqhiizByVRtfPqhGJpTwFUSaS2YkaVfsMoN5xZcOCNxTx9uCA=="; 4611 + url = "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"; 4612 + sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; 4514 4613 }; 4515 4614 }; 4516 - "v8-compile-cache-2.2.0" = { 4615 + "uvm-2.0.2" = { 4616 + name = "uvm"; 4617 + packageName = "uvm"; 4618 + version = "2.0.2"; 4619 + src = fetchurl { 4620 + url = "https://registry.npmjs.org/uvm/-/uvm-2.0.2.tgz"; 4621 + sha512 = "Ra+aPiS5GXAbwXmyNExqdS42sTqmmx4XWEDF8uJlsTfOkKf9Rd9xNgav1Yckv4HfVEZg4iOFODWHFYuJ+9Fzfg=="; 4622 + }; 4623 + }; 4624 + "v8-compile-cache-2.3.0" = { 4517 4625 name = "v8-compile-cache"; 4518 4626 packageName = "v8-compile-cache"; 4519 - version = "2.2.0"; 4627 + version = "2.3.0"; 4520 4628 src = fetchurl { 4521 - url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"; 4522 - sha512 = "gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q=="; 4629 + url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"; 4630 + sha512 = "l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="; 4523 4631 }; 4524 4632 }; 4525 4633 "verror-1.10.0" = { ··· 4537 4627 version = "1.10.0"; 4538 4628 src = fetchurl { 4539 4629 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; 4540 - sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 4630 + sha512 = "ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="; 4541 4631 }; 4542 4632 }; 4543 4633 "walk-back-2.0.1" = { ··· 4546 4636 version = "2.0.1"; 4547 4637 src = fetchurl { 4548 4638 url = "https://registry.npmjs.org/walk-back/-/walk-back-2.0.1.tgz"; 4549 - sha1 = "554e2a9d874fac47a8cb006bf44c2f0c4998a0a4"; 4639 + sha512 = "Nb6GvBR8UWX1D+Le+xUq0+Q1kFmRBIWVrfLnQAOmcpEzA9oAxwJ9gIr36t9TWYfzvWRvuMtjHiVsJYEkXWaTAQ=="; 4550 4640 }; 4551 4641 }; 4552 - "walk-back-4.0.0" = { 4642 + "walk-back-5.1.0" = { 4553 4643 name = "walk-back"; 4554 4644 packageName = "walk-back"; 4555 - version = "4.0.0"; 4645 + version = "5.1.0"; 4556 4646 src = fetchurl { 4557 - url = "https://registry.npmjs.org/walk-back/-/walk-back-4.0.0.tgz"; 4558 - sha512 = "kudCA8PXVQfrqv2mFTG72vDBRi8BKWxGgFLwPpzHcpZnSwZk93WMwUDVcLHWNsnm+Y0AC4Vb6MUNRgaHfyV2DQ=="; 4647 + url = "https://registry.npmjs.org/walk-back/-/walk-back-5.1.0.tgz"; 4648 + sha512 = "Uhxps5yZcVNbLEAnb+xaEEMdgTXl9qAQDzKYejG2AZ7qPwRQ81lozY9ECDbjLPNWm7YsO1IK5rsP1KoQzXAcGA=="; 4559 4649 }; 4560 4650 }; 4561 4651 "which-2.0.2" = { ··· 4573 4663 version = "2.0.0"; 4574 4664 src = fetchurl { 4575 4665 url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; 4576 - sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; 4666 + sha512 = "B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q=="; 4577 4667 }; 4578 4668 }; 4579 - "wide-align-1.1.3" = { 4580 - name = "wide-align"; 4581 - packageName = "wide-align"; 4582 - version = "1.1.3"; 4583 - src = fetchurl { 4584 - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; 4585 - sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; 4586 - }; 4587 - }; 4588 - "winston-2.4.5" = { 4669 + "winston-2.4.7" = { 4589 4670 name = "winston"; 4590 4671 packageName = "winston"; 4591 - version = "2.4.5"; 4672 + version = "2.4.7"; 4592 4673 src = fetchurl { 4593 - url = "https://registry.npmjs.org/winston/-/winston-2.4.5.tgz"; 4594 - sha512 = "TWoamHt5yYvsMarGlGEQE59SbJHqGsZV8/lwC+iCcGeAe0vUaOh+Lv6SYM17ouzC/a/LB1/hz/7sxFBtlu1l4A=="; 4674 + url = "https://registry.npmjs.org/winston/-/winston-2.4.7.tgz"; 4675 + sha512 = "vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg=="; 4595 4676 }; 4596 4677 }; 4597 4678 "word-wrap-1.2.3" = { ··· 4600 4699 version = "1.0.0"; 4601 4700 src = fetchurl { 4602 4701 url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"; 4603 - sha1 = "27584810891456a4171c8d0226441ade90cbcaeb"; 4702 + sha512 = "gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q=="; 4604 4703 }; 4605 4704 }; 4606 4705 "wordwrapjs-3.0.0" = { ··· 4612 4711 sha512 = "mO8XtqyPvykVCsrwj5MlOVWvSnCdT+C+QVbm6blradR7JExAhbkZ7hZ9A+9NUtwzSqrlUo9a67ws0EiILrvRpw=="; 4613 4712 }; 4614 4713 }; 4615 - "workerpool-6.0.2" = { 4714 + "workerpool-6.2.0" = { 4616 4715 name = "workerpool"; 4617 4716 packageName = "workerpool"; 4618 - version = "6.0.2"; 4717 + version = "6.2.0"; 4619 4718 src = fetchurl { 4620 - url = "https://registry.npmjs.org/workerpool/-/workerpool-6.0.2.tgz"; 4621 - sha512 = "DSNyvOpFKrNusaaUwk+ej6cBj1bmhLcBfj80elGk+ZIo5JSkq+unB1dLKEOcNfJDZgjGICfhQ0Q5TbP0PvF4+Q=="; 4622 - }; 4623 - }; 4624 - "wrap-ansi-5.1.0" = { 4625 - name = "wrap-ansi"; 4626 - packageName = "wrap-ansi"; 4627 - version = "5.1.0"; 4628 - src = fetchurl { 4629 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz"; 4630 - sha512 = "QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q=="; 4719 + url = "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz"; 4720 + sha512 = "Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A=="; 4631 4721 }; 4632 4722 }; 4633 4723 "wrap-ansi-6.2.0" = { ··· 4630 4738 sha512 = "r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="; 4631 4739 }; 4632 4740 }; 4741 + "wrap-ansi-7.0.0" = { 4742 + name = "wrap-ansi"; 4743 + packageName = "wrap-ansi"; 4744 + version = "7.0.0"; 4745 + src = fetchurl { 4746 + url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; 4747 + sha512 = "YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="; 4748 + }; 4749 + }; 4633 4750 "wrappy-1.0.2" = { 4634 4751 name = "wrappy"; 4635 4752 packageName = "wrappy"; 4636 4753 version = "1.0.2"; 4637 4754 src = fetchurl { 4638 4755 url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; 4639 - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 4756 + sha512 = "l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="; 4640 4757 }; 4641 4758 }; 4642 4759 "write-file-atomic-3.0.3" = { ··· 4693 4792 sha512 = "yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg=="; 4694 4793 }; 4695 4794 }; 4696 - "xmlcreate-2.0.3" = { 4795 + "xmlcreate-2.0.4" = { 4697 4796 name = "xmlcreate"; 4698 4797 packageName = "xmlcreate"; 4699 - version = "2.0.3"; 4798 + version = "2.0.4"; 4700 4799 src = fetchurl { 4701 - url = "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.3.tgz"; 4702 - sha512 = "HgS+X6zAztGa9zIK3Y3LXuJes33Lz9x+YyTxgrkIdabu2vqcGOWwdfCpf1hWLRrd553wd4QCDf6BBO6FfdsRiQ=="; 4800 + url = "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz"; 4801 + sha512 = "nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg=="; 4703 4802 }; 4704 4803 }; 4705 4804 "xtend-4.0.2" = { ··· 4711 4810 sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 4712 4811 }; 4713 4812 }; 4714 - "y18n-4.0.1" = { 4813 + "y18n-4.0.3" = { 4715 4814 name = "y18n"; 4716 4815 packageName = "y18n"; 4717 - version = "4.0.1"; 4816 + version = "4.0.3"; 4718 4817 src = fetchurl { 4719 - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz"; 4720 - sha512 = "wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ=="; 4818 + url = "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz"; 4819 + sha512 = "JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="; 4820 + }; 4821 + }; 4822 + "y18n-5.0.8" = { 4823 + name = "y18n"; 4824 + packageName = "y18n"; 4825 + version = "5.0.8"; 4826 + src = fetchurl { 4827 + url = "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz"; 4828 + sha512 = "0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="; 4721 4829 }; 4722 4830 }; 4723 4831 "yallist-2.1.2" = { ··· 4735 4825 version = "2.1.2"; 4736 4826 src = fetchurl { 4737 4827 url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; 4738 - sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; 4828 + sha512 = "ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A=="; 4739 4829 }; 4740 4830 }; 4741 4831 "yallist-4.0.0" = { ··· 4747 4837 sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 4748 4838 }; 4749 4839 }; 4750 - "yargs-13.3.2" = { 4751 - name = "yargs"; 4752 - packageName = "yargs"; 4753 - version = "13.3.2"; 4754 - src = fetchurl { 4755 - url = "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz"; 4756 - sha512 = "AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw=="; 4757 - }; 4758 - }; 4759 4840 "yargs-15.4.1" = { 4760 4841 name = "yargs"; 4761 4842 packageName = "yargs"; ··· 4756 4855 sha512 = "aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A=="; 4757 4856 }; 4758 4857 }; 4759 - "yargs-parser-13.1.2" = { 4760 - name = "yargs-parser"; 4761 - packageName = "yargs-parser"; 4762 - version = "13.1.2"; 4858 + "yargs-16.2.0" = { 4859 + name = "yargs"; 4860 + packageName = "yargs"; 4861 + version = "16.2.0"; 4763 4862 src = fetchurl { 4764 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz"; 4765 - sha512 = "3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg=="; 4863 + url = "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz"; 4864 + sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="; 4766 4865 }; 4767 4866 }; 4768 4867 "yargs-parser-18.1.3" = { ··· 4772 4871 src = fetchurl { 4773 4872 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz"; 4774 4873 sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 4874 + }; 4875 + }; 4876 + "yargs-parser-20.2.4" = { 4877 + name = "yargs-parser"; 4878 + packageName = "yargs-parser"; 4879 + version = "20.2.4"; 4880 + src = fetchurl { 4881 + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz"; 4882 + sha512 = "WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA=="; 4775 4883 }; 4776 4884 }; 4777 4885 "yargs-unparser-2.0.0" = { ··· 4807 4897 newman = nodeEnv.buildNodePackage { 4808 4898 name = "newman"; 4809 4899 packageName = "newman"; 4810 - version = "5.2.2"; 4900 + version = "5.3.2"; 4811 4901 src = fetchurl { 4812 - url = "https://registry.npmjs.org/newman/-/newman-5.2.2.tgz"; 4813 - sha512 = "aRkh8eeRkKBlwxwBSdYQFZVLvSNMfRDmwPUfddlYR6PwZVKwukmoJmo9QTkRmo6vehgMmt2RTVkfwIIp73X1gg=="; 4902 + url = "https://registry.npmjs.org/newman/-/newman-5.3.2.tgz"; 4903 + sha512 = "cWy8pV0iwvMOZLTw3hkAHcwo2ZA0GKkXm8oUMn1Ltii3ZI2nKpnrg9QGdIT0hGHChRkX6prY5e3Aar7uykMGNg=="; 4814 4904 }; 4815 4905 dependencies = [ 4906 + sources."@ampproject/remapping-2.2.0" 4816 4907 sources."@babel/code-frame-7.12.11" 4817 - (sources."@babel/core-7.12.10" // { 4908 + sources."@babel/compat-data-7.20.5" 4909 + (sources."@babel/core-7.20.5" // { 4818 4910 dependencies = [ 4819 - sources."debug-4.3.2" 4911 + sources."@babel/code-frame-7.18.6" 4912 + sources."debug-4.3.4" 4820 4913 sources."ms-2.1.2" 4821 - sources."semver-5.7.1" 4822 - sources."source-map-0.5.7" 4914 + sources."semver-6.3.0" 4823 4915 ]; 4824 4916 }) 4825 - (sources."@babel/generator-7.12.11" // { 4917 + (sources."@babel/generator-7.20.5" // { 4826 4918 dependencies = [ 4827 - sources."source-map-0.5.7" 4919 + sources."@jridgewell/gen-mapping-0.3.2" 4828 4920 ]; 4829 4921 }) 4830 - sources."@babel/helper-function-name-7.12.11" 4831 - sources."@babel/helper-get-function-arity-7.12.10" 4832 - sources."@babel/helper-member-expression-to-functions-7.12.7" 4833 - sources."@babel/helper-module-imports-7.12.5" 4834 - sources."@babel/helper-module-transforms-7.12.1" 4835 - sources."@babel/helper-optimise-call-expression-7.12.10" 4836 - sources."@babel/helper-replace-supers-7.12.11" 4837 - sources."@babel/helper-simple-access-7.12.1" 4838 - sources."@babel/helper-split-export-declaration-7.12.11" 4839 - sources."@babel/helper-validator-identifier-7.12.11" 4840 - sources."@babel/helpers-7.12.5" 4841 - sources."@babel/highlight-7.10.4" 4842 - sources."@babel/parser-7.12.11" 4843 - sources."@babel/template-7.12.7" 4844 - (sources."@babel/traverse-7.12.12" // { 4922 + (sources."@babel/helper-compilation-targets-7.20.0" // { 4845 4923 dependencies = [ 4846 - sources."debug-4.3.2" 4924 + sources."semver-6.3.0" 4925 + ]; 4926 + }) 4927 + sources."@babel/helper-environment-visitor-7.18.9" 4928 + sources."@babel/helper-function-name-7.19.0" 4929 + sources."@babel/helper-hoist-variables-7.18.6" 4930 + sources."@babel/helper-module-imports-7.18.6" 4931 + sources."@babel/helper-module-transforms-7.20.2" 4932 + sources."@babel/helper-simple-access-7.20.2" 4933 + sources."@babel/helper-split-export-declaration-7.18.6" 4934 + sources."@babel/helper-string-parser-7.19.4" 4935 + sources."@babel/helper-validator-identifier-7.19.1" 4936 + sources."@babel/helper-validator-option-7.18.6" 4937 + sources."@babel/helpers-7.20.6" 4938 + (sources."@babel/highlight-7.18.6" // { 4939 + dependencies = [ 4940 + sources."chalk-2.4.2" 4941 + sources."escape-string-regexp-1.0.5" 4942 + ]; 4943 + }) 4944 + sources."@babel/parser-7.20.5" 4945 + (sources."@babel/template-7.18.10" // { 4946 + dependencies = [ 4947 + sources."@babel/code-frame-7.18.6" 4948 + ]; 4949 + }) 4950 + (sources."@babel/traverse-7.20.5" // { 4951 + dependencies = [ 4952 + sources."@babel/code-frame-7.18.6" 4953 + sources."debug-4.3.4" 4847 4954 sources."globals-11.12.0" 4848 4955 sources."ms-2.1.2" 4849 4956 ]; 4850 4957 }) 4851 - sources."@babel/types-7.12.12" 4852 - (sources."@eslint/eslintrc-0.3.0" // { 4958 + sources."@babel/types-7.20.5" 4959 + (sources."@es-joy/jsdoccomment-0.10.8" // { 4853 4960 dependencies = [ 4854 - sources."debug-4.3.2" 4961 + sources."jsdoc-type-pratt-parser-1.1.1" 4962 + ]; 4963 + }) 4964 + (sources."@eslint/eslintrc-0.4.3" // { 4965 + dependencies = [ 4966 + sources."debug-4.3.4" 4967 + sources."js-yaml-3.14.1" 4855 4968 sources."ms-2.1.2" 4856 4969 ]; 4857 4970 }) 4971 + (sources."@humanwhocodes/config-array-0.5.0" // { 4972 + dependencies = [ 4973 + sources."debug-4.3.4" 4974 + sources."ms-2.1.2" 4975 + ]; 4976 + }) 4977 + sources."@humanwhocodes/object-schema-1.2.1" 4858 4978 (sources."@istanbuljs/load-nyc-config-1.1.0" // { 4859 4979 dependencies = [ 4980 + sources."camelcase-5.3.1" 4860 4981 sources."find-up-4.1.0" 4982 + sources."js-yaml-3.14.1" 4861 4983 sources."locate-path-5.0.0" 4862 4984 sources."p-limit-2.3.0" 4863 4985 sources."p-locate-4.1.0" 4986 + sources."resolve-from-5.0.0" 4864 4987 ]; 4865 4988 }) 4866 - sources."@istanbuljs/schema-0.1.2" 4989 + sources."@istanbuljs/schema-0.1.3" 4990 + sources."@jridgewell/gen-mapping-0.1.1" 4991 + sources."@jridgewell/resolve-uri-3.1.0" 4992 + sources."@jridgewell/set-array-1.1.2" 4993 + sources."@jridgewell/sourcemap-codec-1.4.14" 4994 + sources."@jridgewell/trace-mapping-0.3.17" 4995 + sources."@jsdoc/salty-0.2.1" 4867 4996 sources."@postman/form-data-3.1.1" 4868 4997 sources."@postman/tunnel-agent-0.6.3" 4869 - sources."@sinonjs/commons-1.8.2" 4870 - sources."@sinonjs/fake-timers-6.0.1" 4871 - sources."@sinonjs/samsam-5.3.1" 4872 - sources."@sinonjs/text-encoding-0.7.1" 4998 + sources."@sinonjs/commons-1.8.6" 4999 + sources."@sinonjs/fake-timers-9.1.2" 5000 + sources."@sinonjs/samsam-6.1.3" 5001 + sources."@sinonjs/text-encoding-0.7.2" 5002 + sources."@types/linkify-it-3.0.2" 5003 + sources."@types/markdown-it-12.2.3" 5004 + sources."@types/mdurl-1.0.2" 4873 5005 sources."@ungap/promise-all-settled-1.1.2" 4874 5006 sources."JSONStream-1.3.2" 4875 5007 sources."acorn-7.4.1" 4876 - sources."acorn-jsx-5.3.1" 5008 + sources."acorn-jsx-5.3.2" 4877 5009 sources."aggregate-error-3.1.0" 4878 5010 sources."ajv-6.12.6" 4879 - sources."ansi-colors-4.1.1" 5011 + sources."ansi-colors-4.1.3" 4880 5012 (sources."ansi-escape-sequences-4.1.0" // { 4881 5013 dependencies = [ 4882 5014 sources."array-back-3.1.0" 4883 5015 ]; 4884 5016 }) 4885 - sources."ansi-regex-5.0.0" 5017 + sources."ansi-regex-5.0.1" 4886 5018 sources."ansi-styles-3.2.1" 4887 - sources."anymatch-3.1.1" 5019 + sources."anymatch-3.1.3" 4888 5020 sources."append-transform-2.0.0" 4889 5021 sources."archy-1.0.0" 4890 5022 sources."argparse-1.0.10" 4891 - sources."array-back-4.0.1" 4892 - sources."array-uniq-1.0.3" 4893 - sources."asn1-0.2.4" 5023 + sources."array-back-6.2.2" 5024 + sources."asn1-0.2.6" 4894 5025 sources."assert-plus-1.0.0" 4895 5026 sources."assertion-error-1.1.0" 4896 5027 sources."astral-regex-2.0.0" 4897 - sources."async-3.2.0" 5028 + sources."async-3.2.3" 4898 5029 sources."asynckit-0.4.0" 4899 5030 sources."aws-sign2-0.7.0" 4900 5031 sources."aws4-1.11.0" 4901 - sources."balanced-match-1.0.0" 5032 + sources."balanced-match-1.0.2" 4902 5033 sources."base64-js-1.5.1" 4903 5034 sources."bcrypt-pbkdf-1.0.2" 4904 5035 sources."binary-extensions-2.2.0" 4905 - (sources."bl-1.2.3" // { 4906 - dependencies = [ 4907 - (sources."readable-stream-2.3.7" // { 4908 - dependencies = [ 4909 - sources."safe-buffer-5.1.2" 4910 - ]; 4911 - }) 4912 - (sources."string_decoder-1.1.1" // { 4913 - dependencies = [ 4914 - sources."safe-buffer-5.1.2" 4915 - ]; 4916 - }) 4917 - ]; 4918 - }) 5036 + sources."bl-1.2.3" 4919 5037 sources."bluebird-2.11.0" 4920 5038 sources."brace-expansion-1.1.11" 4921 5039 sources."braces-3.0.2" 4922 - sources."brotli-1.3.2" 5040 + sources."brotli-1.3.3" 4923 5041 sources."browser-stdout-1.3.1" 5042 + sources."browserslist-4.21.4" 4924 5043 sources."buffer-alloc-1.2.0" 4925 5044 sources."buffer-alloc-unsafe-1.1.0" 4926 5045 sources."buffer-fill-1.0.0" 4927 - sources."buffer-from-1.1.1" 4928 - sources."cache-point-2.0.0" 5046 + sources."buffer-from-1.1.2" 5047 + (sources."cache-point-2.0.0" // { 5048 + dependencies = [ 5049 + sources."array-back-4.0.2" 5050 + ]; 5051 + }) 4929 5052 (sources."caching-transform-4.0.0" // { 4930 5053 dependencies = [ 4931 5054 sources."make-dir-3.1.0" ··· 4966 5023 ]; 4967 5024 }) 4968 5025 sources."callsites-3.1.0" 4969 - sources."camelcase-5.3.1" 5026 + sources."camelcase-6.3.0" 5027 + sources."caniuse-lite-1.0.30001436" 4970 5028 sources."caseless-0.12.0" 4971 - sources."catharsis-0.8.11" 4972 - sources."chai-4.2.0" 4973 - sources."chalk-2.4.2" 4974 - sources."chardet-1.3.0" 4975 - sources."charset-1.0.1" 4976 - sources."check-error-1.0.2" 4977 - sources."chokidar-3.4.3" 4978 - sources."chownr-1.1.4" 4979 - sources."clean-stack-2.2.0" 4980 - sources."cli-progress-3.8.2" 4981 - sources."cli-table3-0.6.0" 4982 - (sources."cliui-5.0.0" // { 5029 + sources."catharsis-0.9.0" 5030 + sources."chai-4.3.7" 5031 + (sources."chalk-4.1.2" // { 4983 5032 dependencies = [ 4984 - sources."ansi-regex-4.1.0" 4985 - sources."emoji-regex-7.0.3" 4986 - sources."is-fullwidth-code-point-2.0.0" 4987 - sources."string-width-3.1.0" 4988 - sources."strip-ansi-5.2.0" 5033 + sources."ansi-styles-4.3.0" 5034 + sources."color-convert-2.0.1" 5035 + sources."color-name-1.1.4" 5036 + sources."has-flag-4.0.0" 5037 + sources."supports-color-7.2.0" 4989 5038 ]; 4990 5039 }) 5040 + sources."chardet-1.4.0" 5041 + sources."charset-1.0.1" 5042 + sources."check-error-1.0.2" 5043 + sources."chokidar-3.5.3" 5044 + sources."chownr-1.1.4" 5045 + sources."clean-stack-2.2.0" 5046 + sources."cli-progress-3.10.0" 5047 + sources."cli-table3-0.6.1" 5048 + sources."cliui-7.0.4" 4991 5049 sources."collect-all-1.0.4" 4992 5050 sources."color-convert-1.9.3" 4993 5051 sources."color-name-1.1.3" 4994 5052 sources."colors-1.4.0" 4995 5053 sources."combined-stream-1.0.8" 4996 - (sources."command-line-args-5.1.1" // { 5054 + (sources."command-line-args-5.2.1" // { 4997 5055 dependencies = [ 4998 5056 sources."array-back-3.1.0" 4999 5057 sources."typical-4.0.0" ··· 5010 5066 sources."array-back-2.0.0" 5011 5067 ]; 5012 5068 }) 5013 - sources."commander-6.2.1" 5014 - sources."comment-parser-0.7.6" 5015 - sources."common-sequence-2.0.0" 5069 + sources."commander-7.2.0" 5070 + sources."comment-parser-1.2.4" 5071 + sources."common-sequence-2.0.2" 5016 5072 sources."commondir-1.0.1" 5017 5073 sources."concat-map-0.0.1" 5018 - (sources."concat-stream-1.6.2" // { 5019 - dependencies = [ 5020 - sources."readable-stream-2.3.7" 5021 - sources."safe-buffer-5.1.2" 5022 - sources."string_decoder-1.1.1" 5023 - ]; 5024 - }) 5074 + sources."concat-stream-1.6.2" 5025 5075 (sources."config-master-3.1.0" // { 5026 5076 dependencies = [ 5027 5077 sources."walk-back-2.0.1" 5028 5078 ]; 5029 5079 }) 5030 - (sources."convert-source-map-1.7.0" // { 5031 - dependencies = [ 5032 - sources."safe-buffer-5.1.2" 5033 - ]; 5034 - }) 5080 + sources."convert-source-map-1.9.0" 5035 5081 sources."core-util-is-1.0.2" 5036 5082 sources."cross-spawn-7.0.3" 5037 - sources."csv-parse-4.14.2" 5083 + sources."csv-parse-4.16.3" 5038 5084 sources."cycle-1.0.3" 5039 5085 sources."dashdash-1.14.1" 5040 5086 sources."date-format-0.0.2" 5041 - sources."dbug-0.4.2" 5042 5087 sources."debug-3.2.7" 5043 - sources."decamelize-1.2.0" 5044 - sources."deep-eql-3.0.1" 5088 + sources."decamelize-4.0.0" 5089 + sources."deep-eql-4.1.3" 5045 5090 sources."deep-extend-0.6.0" 5046 - sources."deep-is-0.1.3" 5047 - sources."default-require-extensions-3.0.0" 5091 + sources."deep-is-0.1.4" 5092 + sources."default-require-extensions-3.0.1" 5048 5093 sources."delayed-stream-1.0.0" 5049 - sources."diff-4.0.2" 5050 - (sources."dmd-5.0.2" // { 5094 + sources."diff-5.0.0" 5095 + (sources."dmd-6.2.0" // { 5051 5096 dependencies = [ 5052 - sources."reduce-flatten-3.0.0" 5097 + sources."reduce-flatten-3.0.1" 5053 5098 ]; 5054 5099 }) 5055 5100 (sources."docker-modem-1.0.9" // { ··· 5057 5124 }) 5058 5125 sources."dockerode-2.5.8" 5059 5126 sources."doctrine-3.0.0" 5060 - (sources."dom-serializer-0.2.2" // { 5061 - dependencies = [ 5062 - sources."domelementtype-2.1.0" 5063 - sources."entities-2.2.0" 5064 - ]; 5065 - }) 5066 - sources."domelementtype-1.3.1" 5067 - sources."domhandler-2.4.2" 5068 - sources."domutils-1.7.0" 5069 5127 sources."ecc-jsbn-0.1.2" 5070 5128 (sources."editorconfig-0.15.3" // { 5071 5129 dependencies = [ ··· 5066 5142 sources."yallist-2.1.2" 5067 5143 ]; 5068 5144 }) 5145 + sources."electron-to-chromium-1.4.284" 5069 5146 sources."emoji-regex-8.0.0" 5070 5147 sources."end-of-stream-1.4.4" 5071 5148 sources."enquirer-2.3.6" 5072 - sources."entities-1.1.2" 5149 + sources."entities-2.1.0" 5073 5150 sources."es6-error-4.1.1" 5074 - sources."escape-html-1.0.3" 5075 - sources."escape-string-regexp-1.0.5" 5076 - (sources."eslint-7.19.0" // { 5151 + sources."escalade-3.1.1" 5152 + sources."escape-string-regexp-4.0.0" 5153 + (sources."eslint-7.32.0" // { 5077 5154 dependencies = [ 5078 - sources."ansi-styles-4.3.0" 5079 - sources."chalk-4.1.0" 5080 - sources."color-convert-2.0.1" 5081 - sources."color-name-1.1.4" 5082 - sources."debug-4.3.2" 5083 - sources."has-flag-4.0.0" 5084 - sources."ms-2.1.2" 5085 - sources."supports-color-7.2.0" 5086 - ]; 5087 - }) 5088 - (sources."eslint-plugin-jsdoc-30.7.13" // { 5089 - dependencies = [ 5090 - sources."debug-4.3.2" 5155 + sources."debug-4.3.4" 5156 + sources."js-yaml-3.14.1" 5091 5157 sources."ms-2.1.2" 5092 5158 ]; 5093 5159 }) 5094 - sources."eslint-plugin-lodash-7.1.0" 5095 - sources."eslint-plugin-mocha-8.0.0" 5096 - sources."eslint-plugin-security-1.4.0" 5160 + (sources."eslint-plugin-jsdoc-36.1.1" // { 5161 + dependencies = [ 5162 + sources."debug-4.3.4" 5163 + sources."ms-2.1.2" 5164 + ]; 5165 + }) 5166 + sources."eslint-plugin-lodash-7.4.0" 5167 + (sources."eslint-plugin-mocha-10.1.0" // { 5168 + dependencies = [ 5169 + sources."eslint-utils-3.0.0" 5170 + ]; 5171 + }) 5172 + sources."eslint-plugin-security-1.5.0" 5097 5173 sources."eslint-scope-5.1.1" 5098 5174 (sources."eslint-utils-2.1.0" // { 5099 5175 dependencies = [ 5100 5176 sources."eslint-visitor-keys-1.3.0" 5101 5177 ]; 5102 5178 }) 5103 - sources."eslint-visitor-keys-2.0.0" 5179 + sources."eslint-visitor-keys-2.1.0" 5104 5180 (sources."espree-7.3.1" // { 5105 5181 dependencies = [ 5106 5182 sources."eslint-visitor-keys-1.3.0" 5107 5183 ]; 5108 5184 }) 5109 5185 sources."esprima-4.0.1" 5110 - (sources."esquery-1.3.1" // { 5186 + (sources."esquery-1.4.0" // { 5111 5187 dependencies = [ 5112 - sources."estraverse-5.2.0" 5188 + sources."estraverse-5.3.0" 5113 5189 ]; 5114 5190 }) 5115 5191 (sources."esrecurse-4.3.0" // { 5116 5192 dependencies = [ 5117 - sources."estraverse-5.2.0" 5193 + sources."estraverse-5.3.0" 5118 5194 ]; 5119 5195 }) 5120 5196 sources."estraverse-4.3.0" ··· 5123 5199 sources."extend-3.0.2" 5124 5200 sources."extsprintf-1.3.0" 5125 5201 sources."eyes-0.1.8" 5126 - sources."faker-5.1.0" 5202 + sources."faker-5.5.3" 5127 5203 sources."fast-deep-equal-3.1.3" 5128 5204 sources."fast-json-stable-stringify-2.1.0" 5129 5205 sources."fast-levenshtein-2.0.6" 5130 - sources."file-entry-cache-6.0.0" 5131 - sources."file-set-4.0.1" 5206 + sources."file-entry-cache-6.0.1" 5207 + (sources."file-set-4.0.2" // { 5208 + dependencies = [ 5209 + sources."array-back-5.0.0" 5210 + ]; 5211 + }) 5132 5212 sources."file-type-3.9.0" 5133 - sources."filesize-6.1.0" 5213 + sources."filesize-8.0.7" 5134 5214 sources."fill-range-7.0.1" 5135 - (sources."find-cache-dir-3.3.1" // { 5215 + (sources."find-cache-dir-3.3.2" // { 5136 5216 dependencies = [ 5137 5217 sources."make-dir-3.1.0" 5138 5218 sources."semver-6.3.0" ··· 5150 5222 sources."find-up-5.0.0" 5151 5223 sources."flat-5.0.2" 5152 5224 sources."flat-cache-3.0.4" 5153 - sources."flatted-3.1.0" 5225 + sources."flatted-3.1.1" 5154 5226 sources."foreground-child-2.0.0" 5155 5227 sources."forever-agent-0.6.1" 5156 5228 sources."fromentries-1.3.2" 5157 5229 sources."fs-constants-1.0.0" 5158 5230 sources."fs-then-native-2.0.0" 5159 5231 sources."fs.realpath-1.0.0" 5160 - sources."fsevents-2.1.3" 5232 + sources."fsevents-2.3.2" 5161 5233 sources."function-bind-1.1.1" 5162 5234 sources."functional-red-black-tree-1.0.1" 5163 5235 sources."gensync-1.0.0-beta.2" ··· 5165 5237 sources."get-func-name-2.0.0" 5166 5238 sources."get-package-type-0.1.0" 5167 5239 sources."getpass-0.1.7" 5168 - sources."glob-7.1.6" 5169 - sources."glob-parent-5.1.1" 5170 - sources."globals-12.4.0" 5171 - sources."graceful-fs-4.2.4" 5240 + sources."glob-7.2.3" 5241 + sources."glob-parent-5.1.2" 5242 + sources."globals-13.18.0" 5243 + sources."graceful-fs-4.2.10" 5172 5244 sources."graceful-readlink-1.0.1" 5173 5245 sources."growl-1.10.5" 5174 - sources."handlebars-4.7.6" 5246 + sources."handlebars-4.7.7" 5175 5247 sources."har-schema-2.0.0" 5176 5248 sources."har-validator-5.1.5" 5177 5249 sources."has-1.0.3" 5178 - (sources."has-ansi-2.0.0" // { 5250 + sources."has-flag-3.0.0" 5251 + (sources."hasha-5.2.2" // { 5179 5252 dependencies = [ 5180 - sources."ansi-regex-2.1.1" 5253 + sources."type-fest-0.8.1" 5181 5254 ]; 5182 5255 }) 5183 - sources."has-flag-3.0.0" 5184 - sources."hasha-5.2.2" 5185 5256 sources."he-1.2.0" 5186 5257 sources."html-escaper-2.0.2" 5187 - sources."htmlparser2-3.10.1" 5188 5258 sources."http-reasons-0.1.0" 5189 - sources."http-signature-1.3.5" 5190 - sources."httpntlm-1.7.6" 5191 - sources."httpreq-0.4.24" 5192 - sources."iconv-lite-0.6.2" 5259 + sources."http-signature-1.3.6" 5260 + sources."httpntlm-1.7.7" 5261 + sources."httpreq-0.5.2" 5262 + sources."iconv-lite-0.6.3" 5193 5263 sources."ignore-4.0.6" 5194 - (sources."import-fresh-3.3.0" // { 5195 - dependencies = [ 5196 - sources."resolve-from-4.0.0" 5197 - ]; 5198 - }) 5264 + sources."import-fresh-3.3.0" 5199 5265 sources."imurmurhash-0.1.4" 5200 5266 sources."indent-string-4.0.0" 5201 5267 sources."inflight-1.0.6" 5202 5268 sources."inherits-2.0.4" 5203 - (sources."intel-1.2.0" // { 5204 - dependencies = [ 5205 - sources."ansi-regex-2.1.1" 5206 - sources."ansi-styles-2.2.1" 5207 - sources."chalk-1.1.3" 5208 - sources."strip-ansi-3.0.1" 5209 - sources."supports-color-2.0.0" 5210 - ]; 5211 - }) 5212 5269 sources."interpret-1.4.0" 5213 5270 sources."ip-regex-2.1.0" 5214 5271 sources."is-binary-path-2.1.0" 5215 - sources."is-core-module-2.2.0" 5272 + sources."is-core-module-2.11.0" 5216 5273 sources."is-extglob-2.1.1" 5217 5274 sources."is-fullwidth-code-point-3.0.0" 5218 - sources."is-glob-4.0.1" 5275 + sources."is-glob-4.0.3" 5219 5276 sources."is-number-7.0.0" 5220 5277 sources."is-plain-obj-2.1.0" 5221 - sources."is-stream-2.0.0" 5278 + sources."is-stream-2.0.1" 5222 5279 sources."is-typedarray-1.0.0" 5280 + sources."is-unicode-supported-0.1.0" 5223 5281 sources."is-windows-1.0.2" 5224 5282 sources."isarray-1.0.0" 5225 5283 sources."isexe-2.0.0" 5226 5284 sources."isstream-0.1.2" 5227 - sources."istanbul-lib-coverage-3.0.0" 5285 + sources."istanbul-lib-coverage-3.2.0" 5228 5286 sources."istanbul-lib-hook-3.0.0" 5229 5287 (sources."istanbul-lib-instrument-4.0.3" // { 5230 5288 dependencies = [ 5231 5289 sources."semver-6.3.0" 5232 5290 ]; 5233 5291 }) 5234 - (sources."istanbul-lib-processinfo-2.0.2" // { 5235 - dependencies = [ 5236 - sources."make-dir-3.1.0" 5237 - sources."semver-6.3.0" 5238 - ]; 5239 - }) 5292 + sources."istanbul-lib-processinfo-2.0.3" 5240 5293 (sources."istanbul-lib-report-3.0.0" // { 5241 5294 dependencies = [ 5242 5295 sources."has-flag-4.0.0" ··· 5226 5317 sources."supports-color-7.2.0" 5227 5318 ]; 5228 5319 }) 5229 - (sources."istanbul-lib-source-maps-4.0.0" // { 5320 + (sources."istanbul-lib-source-maps-4.0.1" // { 5230 5321 dependencies = [ 5231 - sources."debug-4.3.2" 5322 + sources."debug-4.3.4" 5232 5323 sources."ms-2.1.2" 5233 5324 ]; 5234 5325 }) 5235 - sources."istanbul-reports-3.0.2" 5326 + sources."istanbul-reports-3.1.5" 5236 5327 sources."js-sha512-0.8.0" 5237 5328 sources."js-tokens-4.0.0" 5238 - sources."js-yaml-3.14.1" 5239 - sources."js2xmlparser-4.0.1" 5329 + (sources."js-yaml-4.1.0" // { 5330 + dependencies = [ 5331 + sources."argparse-2.0.1" 5332 + ]; 5333 + }) 5334 + sources."js2xmlparser-4.0.2" 5240 5335 sources."jsbn-0.1.1" 5241 - (sources."jsdoc-3.6.6" // { 5336 + (sources."jsdoc-3.6.11" // { 5242 5337 dependencies = [ 5243 5338 sources."bluebird-3.7.2" 5244 5339 sources."escape-string-regexp-2.0.0" 5245 - sources."marked-0.8.2" 5246 - sources."underscore-1.10.2" 5340 + sources."underscore-1.13.6" 5247 5341 ]; 5248 5342 }) 5249 - sources."jsdoc-api-6.0.0" 5250 - sources."jsdoc-parse-5.0.0" 5251 - sources."jsdoc-to-markdown-6.0.1" 5252 - sources."jsdoctypeparser-9.0.0" 5343 + (sources."jsdoc-api-7.2.0" // { 5344 + dependencies = [ 5345 + sources."bluebird-3.7.2" 5346 + sources."escape-string-regexp-2.0.0" 5347 + sources."jsdoc-4.0.0" 5348 + sources."underscore-1.13.6" 5349 + ]; 5350 + }) 5351 + sources."jsdoc-parse-6.2.0" 5352 + sources."jsdoc-to-markdown-7.1.1" 5353 + sources."jsdoc-type-pratt-parser-1.2.0" 5253 5354 sources."jsesc-2.5.2" 5254 - sources."json-schema-0.2.3" 5355 + sources."json-schema-0.4.0" 5255 5356 sources."json-schema-traverse-0.4.1" 5256 5357 sources."json-stable-stringify-without-jsonify-1.0.1" 5257 5358 sources."json-stringify-safe-5.0.1" 5258 - sources."json5-2.2.0" 5359 + sources."json5-2.2.1" 5259 5360 sources."jsonparse-1.3.1" 5260 - sources."jsprim-1.4.1" 5361 + sources."jsprim-2.0.2" 5261 5362 (sources."junit-report-builder-2.1.0" // { 5262 5363 dependencies = [ 5263 5364 sources."xmlbuilder-10.1.1" 5264 5365 ]; 5265 5366 }) 5266 - sources."just-extend-4.1.1" 5367 + sources."just-extend-4.2.1" 5267 5368 sources."klaw-3.0.0" 5268 5369 sources."levn-0.4.1" 5269 - sources."linkify-it-2.2.0" 5370 + sources."linkify-it-3.0.3" 5270 5371 sources."liquid-json-0.3.1" 5271 5372 sources."locate-path-6.0.0" 5272 - sources."lodash-4.17.20" 5373 + sources."lodash-4.17.21" 5273 5374 sources."lodash.camelcase-4.3.0" 5274 - sources."lodash.clonedeep-4.5.0" 5275 - sources."lodash.escaperegexp-4.1.2" 5276 5375 sources."lodash.flattendeep-4.4.0" 5277 5376 sources."lodash.get-4.4.2" 5278 - sources."lodash.isplainobject-4.0.6" 5279 - sources."lodash.isstring-4.0.1" 5280 - sources."lodash.mergewith-4.6.2" 5377 + sources."lodash.merge-4.6.2" 5281 5378 sources."lodash.omit-4.5.0" 5282 5379 sources."lodash.padend-4.6.1" 5283 5380 sources."lodash.pick-4.4.0" 5284 - sources."lodash.set-4.3.2" 5285 - (sources."log-symbols-4.0.0" // { 5286 - dependencies = [ 5287 - sources."ansi-styles-4.3.0" 5288 - sources."chalk-4.1.0" 5289 - sources."color-convert-2.0.1" 5290 - sources."color-name-1.1.4" 5291 - sources."has-flag-4.0.0" 5292 - sources."supports-color-7.2.0" 5293 - ]; 5294 - }) 5381 + sources."lodash.truncate-4.4.2" 5382 + sources."log-symbols-4.1.0" 5383 + sources."loupe-2.3.6" 5295 5384 sources."lru-cache-6.0.0" 5296 5385 sources."make-dir-1.3.0" 5297 - (sources."markdown-it-10.0.0" // { 5386 + (sources."markdown-it-12.3.2" // { 5298 5387 dependencies = [ 5299 - sources."entities-2.0.3" 5388 + sources."argparse-2.0.1" 5300 5389 ]; 5301 5390 }) 5302 - sources."markdown-it-anchor-5.3.0" 5303 - sources."marked-1.2.7" 5391 + sources."markdown-it-anchor-8.6.5" 5392 + sources."marked-4.2.4" 5304 5393 sources."mdurl-1.0.1" 5305 - sources."mime-db-1.45.0" 5306 - sources."mime-format-2.0.0" 5307 - sources."mime-types-2.1.28" 5308 - sources."minimatch-3.0.4" 5309 - sources."minimist-1.2.5" 5394 + sources."mime-db-1.51.0" 5395 + sources."mime-format-2.0.1" 5396 + sources."mime-types-2.1.34" 5397 + sources."minimatch-3.1.2" 5398 + sources."minimist-1.2.7" 5310 5399 sources."mkdirp-1.0.4" 5311 - sources."mkdirp2-1.0.4" 5312 - (sources."mocha-8.2.1" // { 5400 + sources."mkdirp2-1.0.5" 5401 + (sources."mocha-9.2.2" // { 5313 5402 dependencies = [ 5314 - sources."debug-4.2.0" 5315 - sources."escape-string-regexp-4.0.0" 5403 + sources."ansi-colors-4.1.1" 5404 + (sources."debug-4.3.3" // { 5405 + dependencies = [ 5406 + sources."ms-2.1.2" 5407 + ]; 5408 + }) 5409 + (sources."glob-7.2.0" // { 5410 + dependencies = [ 5411 + sources."minimatch-3.1.2" 5412 + ]; 5413 + }) 5316 5414 sources."has-flag-4.0.0" 5317 - sources."js-yaml-3.14.0" 5318 - sources."ms-2.1.2" 5319 - sources."supports-color-7.2.0" 5415 + sources."minimatch-4.2.1" 5416 + sources."supports-color-8.1.1" 5320 5417 ]; 5321 5418 }) 5322 5419 sources."ms-2.1.3" 5323 - sources."nanoid-3.1.12" 5420 + sources."nanoid-3.3.1" 5324 5421 sources."natural-compare-1.4.0" 5325 5422 sources."neo-async-2.6.2" 5326 - sources."nise-4.0.4" 5327 - (sources."nock-13.0.7" // { 5423 + (sources."nise-5.1.3" // { 5328 5424 dependencies = [ 5329 - sources."debug-4.3.2" 5425 + sources."@sinonjs/commons-2.0.0" 5426 + (sources."@sinonjs/fake-timers-7.1.2" // { 5427 + dependencies = [ 5428 + sources."@sinonjs/commons-1.8.6" 5429 + ]; 5430 + }) 5431 + ]; 5432 + }) 5433 + (sources."nock-13.2.9" // { 5434 + dependencies = [ 5435 + sources."debug-4.3.4" 5330 5436 sources."ms-2.1.2" 5331 5437 ]; 5332 5438 }) 5333 5439 sources."node-oauth1-1.3.0" 5334 5440 sources."node-preload-0.2.1" 5441 + sources."node-releases-2.0.6" 5335 5442 sources."normalize-path-3.0.0" 5336 - sources."number-is-nan-1.0.1" 5337 5443 (sources."nyc-15.1.0" // { 5338 5444 dependencies = [ 5339 5445 sources."ansi-styles-4.3.0" 5446 + sources."camelcase-5.3.1" 5340 5447 sources."cliui-6.0.0" 5341 5448 sources."color-convert-2.0.1" 5342 5449 sources."color-name-1.1.4" 5450 + sources."decamelize-1.2.0" 5343 5451 sources."find-up-4.1.0" 5344 5452 sources."locate-path-5.0.0" 5345 5453 sources."make-dir-3.1.0" 5346 5454 sources."p-limit-2.3.0" 5347 5455 sources."p-locate-4.1.0" 5456 + sources."resolve-from-5.0.0" 5348 5457 sources."semver-6.3.0" 5349 5458 sources."wrap-ansi-6.2.0" 5459 + sources."y18n-4.0.3" 5350 5460 sources."yargs-15.4.1" 5351 5461 sources."yargs-parser-18.1.3" 5352 5462 ]; 5353 5463 }) 5354 5464 sources."oauth-sign-0.9.0" 5355 - sources."object-assign-4.1.1" 5356 5465 sources."object-get-2.1.1" 5357 5466 sources."object-hash-1.3.1" 5358 - sources."object-to-spawn-args-2.0.0" 5467 + sources."object-to-spawn-args-2.0.1" 5359 5468 sources."once-1.4.0" 5360 5469 sources."optionator-0.9.1" 5361 5470 sources."p-limit-3.1.0" ··· 5381 5454 sources."p-map-3.0.0" 5382 5455 sources."p-try-2.2.0" 5383 5456 sources."package-hash-4.0.0" 5384 - (sources."packity-0.3.2" // { 5457 + (sources."packity-0.3.4" // { 5385 5458 dependencies = [ 5386 - sources."async-1.5.2" 5459 + sources."async-1.4.2" 5387 5460 sources."commander-2.20.3" 5388 - sources."lodash-3.10.1" 5389 5461 sources."semver-5.7.1" 5390 5462 ]; 5391 5463 }) ··· 5394 5468 sources."path-exists-4.0.0" 5395 5469 sources."path-is-absolute-1.0.1" 5396 5470 sources."path-key-3.1.1" 5397 - sources."path-parse-1.0.6" 5471 + sources."path-parse-1.0.7" 5398 5472 (sources."path-to-regexp-1.8.0" // { 5399 5473 dependencies = [ 5400 5474 sources."isarray-0.0.1" ··· 5402 5476 }) 5403 5477 sources."pathval-1.1.1" 5404 5478 sources."performance-now-2.1.0" 5405 - sources."picomatch-2.2.2" 5479 + sources."picocolors-1.0.0" 5480 + sources."picomatch-2.3.1" 5406 5481 sources."pify-3.0.0" 5407 5482 (sources."pkg-dir-4.2.0" // { 5408 5483 dependencies = [ ··· 5413 5486 sources."p-locate-4.1.0" 5414 5487 ]; 5415 5488 }) 5416 - (sources."postcss-7.0.35" // { 5489 + sources."postman-collection-4.1.1" 5490 + (sources."postman-collection-transformer-4.1.6" // { 5417 5491 dependencies = [ 5418 - sources."supports-color-6.1.0" 5419 - ]; 5420 - }) 5421 - sources."postman-collection-3.6.9" 5422 - (sources."postman-collection-transformer-4.0.0" // { 5423 - dependencies = [ 5424 - sources."commander-6.2.0" 5492 + sources."commander-8.3.0" 5425 5493 ]; 5426 5494 }) 5427 5495 sources."postman-jsdoc-theme-0.0.3" 5428 - (sources."postman-request-2.88.1-postman.28" // { 5496 + (sources."postman-request-2.88.1-postman.31" // { 5429 5497 dependencies = [ 5430 5498 sources."tough-cookie-2.5.0" 5499 + sources."uuid-3.4.0" 5431 5500 ]; 5432 5501 }) 5433 - (sources."postman-runtime-7.26.10" // { 5434 - dependencies = [ 5435 - sources."async-2.6.3" 5436 - ]; 5437 - }) 5438 - sources."postman-sandbox-4.0.1" 5439 - sources."postman-url-encoder-3.0.1" 5502 + sources."postman-runtime-7.29.0" 5503 + sources."postman-sandbox-4.0.6" 5504 + sources."postman-url-encoder-3.0.5" 5440 5505 sources."prelude-ls-1.2.1" 5441 5506 sources."pretty-ms-7.0.1" 5442 5507 sources."process-nextick-args-2.0.1" ··· 5436 5517 sources."progress-2.0.3" 5437 5518 sources."propagate-2.0.1" 5438 5519 sources."pseudomap-1.0.2" 5439 - sources."psl-1.8.0" 5520 + sources."psl-1.9.0" 5440 5521 sources."pump-1.0.3" 5441 5522 sources."punycode-2.1.1" 5442 5523 sources."q-1.0.1" 5443 - sources."qs-6.5.2" 5444 - sources."ramda-0.27.1" 5524 + sources."qs-6.5.3" 5525 + sources."rambda-7.4.0" 5445 5526 sources."randombytes-2.1.0" 5446 - sources."readable-stream-3.6.0" 5527 + (sources."readable-stream-2.3.7" // { 5528 + dependencies = [ 5529 + sources."safe-buffer-5.1.2" 5530 + ]; 5531 + }) 5447 5532 sources."readdir-0.0.13" 5448 - sources."readdirp-3.5.0" 5533 + sources."readdirp-3.6.0" 5449 5534 sources."rechoir-0.6.2" 5450 - sources."recursive-readdir-2.2.2" 5535 + sources."recursive-readdir-2.2.3" 5451 5536 (sources."reduce-extract-1.0.0" // { 5452 5537 dependencies = [ 5453 5538 sources."array-back-1.0.4" ··· 5466 5543 sources."test-value-2.1.0" 5467 5544 ]; 5468 5545 }) 5469 - sources."regexpp-3.1.0" 5470 - sources."regextras-0.7.1" 5546 + sources."regexp-tree-0.1.24" 5547 + sources."regexpp-3.2.0" 5548 + sources."regextras-0.8.0" 5471 5549 sources."release-zalgo-1.0.0" 5472 5550 sources."require-directory-2.1.1" 5473 5551 sources."require-from-string-2.0.2" 5474 5552 sources."require-main-filename-2.0.0" 5475 - sources."requizzle-0.2.3" 5476 - sources."resolve-1.19.0" 5477 - sources."resolve-from-5.0.0" 5478 - sources."ret-0.1.15" 5553 + sources."requizzle-0.2.4" 5554 + sources."resolve-1.22.1" 5555 + sources."resolve-from-4.0.0" 5479 5556 sources."rimraf-3.0.2" 5480 5557 sources."safe-buffer-5.2.1" 5481 - sources."safe-regex-1.1.0" 5558 + sources."safe-regex-2.1.1" 5482 5559 sources."safer-buffer-2.1.2" 5483 - sources."sanitize-html-1.20.1" 5484 5560 sources."sax-1.2.4" 5485 - sources."semver-7.3.4" 5561 + sources."semver-7.3.5" 5486 5562 (sources."serialised-error-1.1.3" // { 5487 5563 dependencies = [ 5488 - sources."stack-trace-0.0.9" 5564 + sources."uuid-3.4.0" 5489 5565 ]; 5490 5566 }) 5491 - sources."serialize-javascript-5.0.1" 5567 + sources."serialize-javascript-6.0.0" 5492 5568 sources."server-destroy-1.0.1" 5493 5569 sources."set-blocking-2.0.0" 5494 5570 sources."shebang-command-2.0.0" 5495 5571 sources."shebang-regex-3.0.0" 5496 - sources."shelljs-0.8.4" 5572 + sources."shelljs-0.8.5" 5497 5573 sources."sigmund-1.0.1" 5498 - sources."signal-exit-3.0.3" 5499 - (sources."sinon-9.2.4" // { 5574 + sources."signal-exit-3.0.7" 5575 + (sources."sinon-13.0.2" // { 5500 5576 dependencies = [ 5501 5577 sources."has-flag-4.0.0" 5502 5578 sources."supports-color-7.2.0" ··· 5508 5586 sources."color-name-1.1.4" 5509 5587 ]; 5510 5588 }) 5511 - (sources."sort-array-4.1.3" // { 5589 + (sources."sort-array-4.1.5" // { 5512 5590 dependencies = [ 5513 5591 sources."array-back-5.0.0" 5514 5592 sources."typical-6.0.1" ··· 5523 5601 }) 5524 5602 sources."spdx-exceptions-2.3.0" 5525 5603 sources."spdx-expression-parse-3.0.1" 5526 - sources."spdx-license-ids-3.0.7" 5604 + sources."spdx-license-ids-3.0.12" 5527 5605 sources."split-ca-1.0.1" 5528 5606 sources."sprintf-js-1.0.3" 5529 - sources."srcset-1.0.0" 5530 - sources."sshpk-1.16.1" 5531 - sources."stack-trace-0.0.10" 5607 + sources."sshpk-1.17.0" 5608 + sources."stack-trace-0.0.9" 5532 5609 (sources."stream-connect-1.0.2" // { 5533 5610 dependencies = [ 5534 5611 sources."array-back-1.0.4" ··· 5535 5614 }) 5536 5615 sources."stream-length-1.0.2" 5537 5616 sources."stream-via-1.0.4" 5538 - sources."strftime-0.10.0" 5539 - sources."string-width-4.2.0" 5540 - sources."string_decoder-1.3.0" 5541 - sources."strip-ansi-6.0.0" 5617 + sources."string-width-4.2.3" 5618 + (sources."string_decoder-1.1.1" // { 5619 + dependencies = [ 5620 + sources."safe-buffer-5.1.2" 5621 + ]; 5622 + }) 5623 + sources."strip-ansi-6.0.1" 5542 5624 sources."strip-bom-4.0.0" 5543 5625 sources."strip-json-comments-3.1.1" 5544 5626 sources."supports-color-5.5.0" 5545 - sources."symbol-0.3.1" 5546 - (sources."table-6.0.7" // { 5627 + sources."supports-preserve-symlinks-flag-1.0.0" 5628 + (sources."table-6.8.1" // { 5547 5629 dependencies = [ 5548 - sources."ajv-7.0.4" 5630 + sources."ajv-8.11.2" 5549 5631 sources."json-schema-traverse-1.0.0" 5550 5632 ]; 5551 5633 }) ··· 5560 5636 sources."taffydb-2.6.2" 5561 5637 (sources."tar-fs-1.16.3" // { 5562 5638 dependencies = [ 5563 - sources."mkdirp-0.5.5" 5639 + sources."mkdirp-0.5.6" 5564 5640 ]; 5565 5641 }) 5566 - (sources."tar-stream-1.6.2" // { 5567 - dependencies = [ 5568 - sources."readable-stream-2.3.7" 5569 - sources."safe-buffer-5.1.2" 5570 - sources."string_decoder-1.1.1" 5571 - ]; 5572 - }) 5642 + sources."tar-stream-1.6.2" 5573 5643 sources."teleport-javascript-1.0.0" 5574 5644 sources."temp-path-1.0.0" 5575 5645 sources."test-exclude-6.0.0" ··· 5581 5663 sources."tweetnacl-0.14.5" 5582 5664 sources."type-check-0.4.0" 5583 5665 sources."type-detect-4.0.8" 5584 - sources."type-fest-0.8.1" 5666 + sources."type-fest-0.20.2" 5585 5667 sources."typedarray-0.0.6" 5586 5668 sources."typedarray-to-buffer-3.1.5" 5587 5669 sources."typical-2.6.1" 5588 5670 sources."uc.micro-1.0.6" 5589 - sources."uglify-js-3.12.6" 5590 - sources."underscore-1.7.0" 5671 + sources."uglify-js-3.17.4" 5672 + sources."underscore-1.12.1" 5673 + sources."update-browserslist-db-1.0.10" 5591 5674 sources."uri-js-4.4.1" 5592 - sources."utcstring-0.1.0" 5593 5675 sources."util-deprecate-1.0.2" 5594 - sources."uuid-3.4.0" 5595 - sources."uvm-2.0.1" 5596 - sources."v8-compile-cache-2.2.0" 5676 + sources."uuid-8.3.2" 5677 + sources."uvm-2.0.2" 5678 + sources."v8-compile-cache-2.3.0" 5597 5679 sources."verror-1.10.0" 5598 - sources."walk-back-4.0.0" 5680 + sources."walk-back-5.1.0" 5599 5681 sources."which-2.0.2" 5600 5682 sources."which-module-2.0.0" 5601 - (sources."wide-align-1.1.3" // { 5683 + (sources."winston-2.4.7" // { 5602 5684 dependencies = [ 5603 - sources."ansi-regex-3.0.0" 5604 - sources."is-fullwidth-code-point-2.0.0" 5605 - sources."string-width-2.1.1" 5606 - sources."strip-ansi-4.0.0" 5607 - ]; 5608 - }) 5609 - (sources."winston-2.4.5" // { 5610 - dependencies = [ 5611 - sources."async-1.0.0" 5685 + sources."async-2.6.4" 5612 5686 sources."colors-1.0.3" 5613 5687 ]; 5614 5688 }) 5615 5689 sources."word-wrap-1.2.3" 5616 5690 sources."wordwrap-1.0.0" 5617 5691 sources."wordwrapjs-3.0.0" 5618 - sources."workerpool-6.0.2" 5619 - (sources."wrap-ansi-5.1.0" // { 5692 + sources."workerpool-6.2.0" 5693 + (sources."wrap-ansi-7.0.0" // { 5620 5694 dependencies = [ 5621 - sources."ansi-regex-4.1.0" 5622 - sources."emoji-regex-7.0.3" 5623 - sources."is-fullwidth-code-point-2.0.0" 5624 - sources."string-width-3.1.0" 5625 - sources."strip-ansi-5.2.0" 5695 + sources."ansi-styles-4.3.0" 5696 + sources."color-convert-2.0.1" 5697 + sources."color-name-1.1.4" 5626 5698 ]; 5627 5699 }) 5628 5700 sources."wrappy-1.0.2" ··· 5623 5715 ]; 5624 5716 }) 5625 5717 sources."xmlbuilder-15.1.1" 5626 - sources."xmlcreate-2.0.3" 5718 + sources."xmlcreate-2.0.4" 5627 5719 sources."xtend-4.0.2" 5628 - sources."y18n-4.0.1" 5720 + sources."y18n-5.0.8" 5629 5721 sources."yallist-4.0.0" 5630 - (sources."yargs-13.3.2" // { 5631 - dependencies = [ 5632 - sources."ansi-regex-4.1.0" 5633 - sources."emoji-regex-7.0.3" 5634 - sources."find-up-3.0.0" 5635 - sources."is-fullwidth-code-point-2.0.0" 5636 - sources."locate-path-3.0.0" 5637 - sources."p-limit-2.3.0" 5638 - sources."p-locate-3.0.0" 5639 - sources."path-exists-3.0.0" 5640 - sources."string-width-3.1.0" 5641 - sources."strip-ansi-5.2.0" 5642 - ]; 5643 - }) 5644 - sources."yargs-parser-13.1.2" 5645 - (sources."yargs-unparser-2.0.0" // { 5646 - dependencies = [ 5647 - sources."camelcase-6.2.0" 5648 - sources."decamelize-4.0.0" 5649 - ]; 5650 - }) 5722 + sources."yargs-16.2.0" 5723 + sources."yargs-parser-20.2.4" 5724 + sources."yargs-unparser-2.0.0" 5651 5725 sources."yocto-queue-0.1.0" 5652 5726 ]; 5653 5727 buildInputs = globalBuildInputs;
+33 -18
pkgs/games/jumpy/default.nix
··· 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 4 , stdenv 5 + , makeWrapper 5 6 , pkg-config 6 7 , alsa-lib 7 - , libGL 8 - , xorg 8 + , libxkbcommon 9 9 , udev 10 - , Cocoa 11 - , OpenGL 10 + , vulkan-loader 11 + , wayland 12 + , xorg 13 + , darwin 12 14 }: 13 15 14 16 rustPlatform.buildRustPackage rec { 15 17 pname = "jumpy"; 16 - version = "0.4.3"; 18 + version = "0.5.1"; 17 19 18 20 src = fetchFromGitHub { 19 - owner = "fishfolks"; 21 + owner = "fishfolk"; 20 22 repo = pname; 21 23 rev = "v${version}"; 22 - sha256 = "sha256-01zhiQi6v/8ZajsdBU+4hKUCj+PRJ/vUHluOIzy/Gi8="; 24 + sha256 = "sha256-5hgd4t9ZKHmv8wzED7Tn+ykzUM0EbQqRX15HBHzXtJY="; 23 25 }; 24 26 25 - cargoSha256 = "sha256-AXaGuRqSFiq+Uiy+UaqPdPVyDhCogC64KZZ0Ah1Yo7A="; 27 + cargoSha256 = "sha256-cK5n75T+Kkd6F4q4MFZNn0R6W6Nk2/H23AGhIe2FCig="; 26 28 27 - nativeBuildInputs = lib.optionals stdenv.isLinux [ 29 + nativeBuildInputs = [ 30 + makeWrapper 31 + ] ++ lib.optionals stdenv.isLinux [ 28 32 pkg-config 29 33 ]; 30 34 31 35 buildInputs = lib.optionals stdenv.isLinux [ 32 36 alsa-lib 33 - libGL 34 - xorg.libX11 35 - xorg.libXi 37 + libxkbcommon 36 38 udev 39 + vulkan-loader 40 + wayland 41 + xorg.libX11 42 + xorg.libXcursor 43 + xorg.libXi 44 + xorg.libXi 45 + xorg.libXrandr 37 46 ] ++ lib.optionals stdenv.isDarwin [ 38 - Cocoa 39 - OpenGL 47 + darwin.apple_sdk.frameworks.Cocoa 48 + rustPlatform.bindgenHook 40 49 ]; 41 50 42 51 postPatch = '' 43 - substituteInPlace src/main.rs \ 44 - --replace ./assets $out/share/assets \ 45 - --replace ./mods $out/share/mods 52 + touch ../$(stripHash $cargoDeps)/taffy/README.md 46 53 ''; 47 54 48 55 postInstall = '' 49 56 mkdir $out/share 50 - cp -r assets mods $out/share 57 + cp -r assets $out/share 58 + wrapProgram $out/bin/jumpy \ 59 + --set-default JUMPY_ASSET_DIR $out/share/assets 60 + ''; 61 + 62 + postFixup = lib.optionalString stdenv.isLinux '' 63 + patchelf $out/bin/.jumpy-wrapped \ 64 + --add-rpath ${lib.makeLibraryPath [ vulkan-loader ]} 51 65 ''; 52 66 53 67 meta = with lib; { 54 68 description = "A tactical 2D shooter played by up to 4 players online or on a shared screen"; 55 69 homepage = "https://fishfight.org/"; 70 + changelog = "https://github.com/fishfolk/jumpy/releases/tag/v${version}"; 56 71 license = with licenses; [ mit /* or */ asl20 ]; 57 72 maintainers = with maintainers; [ figsoda ]; 58 73 };
+1 -1
pkgs/games/nexuiz/default.nix
··· 11 11 let 12 12 version = "2.5.2"; 13 13 14 - version_short = lib.replaceChars [ "." ] [ "" ] version; 14 + version_short = lib.replaceStrings [ "." ] [ "" ] version; 15 15 in stdenv.mkDerivation { 16 16 pname = "nexuiz"; 17 17 inherit version;
+1 -1
pkgs/games/terraria-server/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 pname = "terraria-server"; 5 5 version = "1.4.4.9"; 6 - urlVersion = lib.replaceChars [ "." ] [ "" ] version; 6 + urlVersion = lib.replaceStrings [ "." ] [ "" ] version; 7 7 8 8 src = fetchurl { 9 9 url = "https://terraria.org/api/download/pc-dedicated-server/terraria-server-${urlVersion}.zip";
+6 -3
pkgs/os-specific/linux/apfs/default.nix
··· 2 2 , stdenv 3 3 , fetchFromGitHub 4 4 , kernel 5 + , nixosTests 5 6 }: 6 7 7 8 stdenv.mkDerivation { 8 9 pname = "apfs"; 9 - version = "unstable-2022-08-15-${kernel.version}"; 10 + version = "unstable-2022-10-20-${kernel.version}"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "linux-apfs"; 13 14 repo = "linux-apfs-rw"; 14 - rev = "e4bf2d51d3fe8485ad2b28a89c157ada32ee3d77"; 15 - sha256 = "sha256-zvl1H9AIExgt6t2A2w7zDwXmRsmLY8y3P6EfbBuFdh8="; 15 + rev = "e6eb67c92d425d395eac1c4403629391bdd5064d"; 16 + sha256 = "sha256-6rv5qZCjOqt0FaNFhA3tYg6/SdssvoT8kPVhalajgOo="; 16 17 }; 17 18 18 19 hardeningDisable = [ "pic" ]; ··· 24 23 "KERNEL_DIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" 25 24 "INSTALL_MOD_PATH=$(out)" 26 25 ]; 26 + 27 + passthru.tests.test = nixosTests.apfs; 27 28 28 29 meta = with lib; { 29 30 description = "APFS module for linux";
+2 -2
pkgs/os-specific/linux/below/default.nix
··· 3 3 , fetchFromGitHub 4 4 , rustPlatform 5 5 , clang 6 - , pkgconfig 6 + , pkg-config 7 7 , elfutils 8 8 , rustfmt 9 9 , zlib ··· 25 25 # bpf code compilation 26 26 hardeningDisable = [ "stackprotector" ]; 27 27 28 - nativeBuildInputs = [ clang pkgconfig rustfmt ]; 28 + nativeBuildInputs = [ clang pkg-config rustfmt ]; 29 29 buildInputs = [ elfutils zlib ]; 30 30 31 31 # needs /sys/fs/cgroup
+7 -1
pkgs/servers/coturn/default.nix
··· 29 29 30 30 buildInputs = [ 31 31 openssl 32 - libevent 32 + (libevent.override { inherit openssl; }) 33 33 libprom 34 34 libpromhttp 35 35 libmicrohttpd ··· 38 38 39 39 patches = [ 40 40 ./pure-configure.patch 41 + 42 + # fix build against openssl 3.x 43 + (fetchpatch { 44 + url = "https://github.com/coturn/coturn/commit/4ce784a8781ab086c150e2b9f5641b1a37fd9b31.patch"; 45 + hash = "sha256-Jx8XNXrgq0ockm1zjwRzfvSS3fVrVyVvQY1l0CpcR3Q="; 46 + }) 41 47 ]; 42 48 43 49 # Workaround build failure on -fno-common toolchains like upstream
+4 -1
pkgs/servers/home-assistant/component-packages.nix
··· 1349 1349 pyheos 1350 1350 ]; 1351 1351 "here_travel_time" = ps: with ps; [ 1352 - ]; # missing inputs: here_routing here_transit 1352 + here-routing 1353 + here-transit 1354 + ]; 1353 1355 "hexaom" = ps: with ps; [ 1354 1356 ]; 1355 1357 "hi_kumo" = ps: with ps; [ ··· 4317 4315 "hddtemp" 4318 4316 "hdmi_cec" 4319 4317 "heos" 4318 + "here_travel_time" 4320 4319 "hisense_aehw4a1" 4321 4320 "history" 4322 4321 "history_stats"
+1 -1
pkgs/servers/invidious/default.nix
··· 44 44 substituteInPlace src/invidious.cr \ 45 45 --replace ${lib.escapeShellArg branchTemplate} '"master"' \ 46 46 --replace ${lib.escapeShellArg commitTemplate} '"${lib.substring 0 7 versions.invidious.rev}"' \ 47 - --replace ${lib.escapeShellArg versionTemplate} '"${lib.replaceChars ["-"] ["."] (lib.substring 9 10 version)}"' \ 47 + --replace ${lib.escapeShellArg versionTemplate} '"${lib.replaceStrings ["-"] ["."] (lib.substring 9 10 version)}"' \ 48 48 --replace ${lib.escapeShellArg assetCommitTemplate} '"${lib.substring 0 7 versions.invidious.rev}"' 49 49 50 50 # Patch the assets and locales paths to be absolute
+2 -2
pkgs/servers/mqtt/nanomq/default.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "nanomq"; 5 - version = "0.14.1"; 5 + version = "0.14.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "emqx"; 9 9 repo = "nanomq"; 10 10 rev = finalAttrs.version; 11 - hash = "sha256-seSnY09WIBiVDn/wbTe/y/61wY6mDF1cYneKHX3SOag="; 11 + hash = "sha256-VbVeePacHrE79qV74rGv70G4Hj6O8nK4XCZ3xKbxuQU="; 12 12 fetchSubmodules = true; 13 13 }; 14 14
+3 -3
pkgs/servers/plex/raw.nix
··· 12 12 # server, and the FHS userenv and corresponding NixOS module should 13 13 # automatically pick up the changes. 14 14 stdenv.mkDerivation rec { 15 - version = "1.29.2.6364-6d72b0cf6"; 15 + version = "1.30.0.6486-629d58034"; 16 16 pname = "plexmediaserver"; 17 17 18 18 # Fetch the source 19 19 src = if stdenv.hostPlatform.system == "aarch64-linux" then fetchurl { 20 20 url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_arm64.deb"; 21 - sha256 = "sha256-rd8xnCRniDt6BoOo40g95EwgAT+lFpAOlYHlLAGn9Yc="; 21 + sha256 = "sha256-7blNvNx18sazfff6yIlRXp9vKWiRVISccx/8wjxWz34="; 22 22 } else fetchurl { 23 23 url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_amd64.deb"; 24 - sha256 = "sha256-6wLfhA1kPVWgREFJnhByewe4u4HCHbj8LY94+piewzE="; 24 + sha256 = "sha256-ol0WSYwk0Cmz6xJYe3mqaPDjgi4VPiH+vHnP0BIwVBU="; 25 25 }; 26 26 27 27 outputs = [ "out" "basedb" ];
+12 -27
pkgs/servers/web-apps/morty/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule { 4 4 pname = "morty"; 5 - version = "0.2.0"; 6 - 7 - goPackagePath = "github.com/asciimoo/morty"; 5 + version = "unstable-2021-04-22"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "asciimoo"; 11 9 repo = "morty"; 12 - rev = "v${version}"; 13 - sha256 = "sha256-NWfsqJKJcRPKR8gWQbgal1JsenDesczPcz/+uzhtefM="; 10 + rev = "f5bff1e285d3f973cacf73318e55175edafd633f"; 11 + sha256 = "sha256-ik2VAPdxllt76UVFt77c1ltxIwFNahAKjn3FuErNFYo="; 14 12 }; 15 13 16 - goDeps = ./deps.nix; 14 + vendorSha256 = "sha256-3sllcoTDYQBAyAT7e9KeKNrlTEbgnoZc0Vt0ksQByvo="; 17 15 18 16 meta = with lib; { 19 - homepage = "https://github.com/asciimoo/morty"; 20 - maintainers = with maintainers; [ leenaars ]; 21 - license = licenses.agpl3; 22 17 description = "Privacy aware web content sanitizer proxy as a service"; 23 18 longDescription = '' 24 - Morty is a web content sanitizer proxy as a service. It rewrites web 25 - pages to exclude malicious HTML tags and attributes. It also replaces 26 - external resource references to prevent third party information leaks. 19 + Morty rewrites web pages to exclude malicious HTML tags and attributes. 20 + It also replaces external resource references to prevent third party information leaks. 27 21 28 - The main goal of morty is to provide a result proxy for searx, but it 29 - can be used as a standalone sanitizer service too. 30 - 31 - Features: 32 - 33 - * HTML sanitization 34 - * Rewrites HTML/CSS external references to locals 35 - * JavaScript blocking 36 - * No Cookies forwarded 37 - * No Referrers 38 - * No Caching/Etag 39 - * Supports GET/POST forms and IFrames 40 - * Optional HMAC URL verifier key to prevent service abuse 22 + The main goal of morty is to provide a result proxy for searx, but it can be used as a standalone sanitizer service too. 41 23 ''; 24 + homepage = "https://github.com/asciimoo/morty"; 25 + maintainers = with maintainers; [ leenaars SuperSandro2000 ]; 26 + license = licenses.agpl3; 42 27 }; 43 28 }
-57
pkgs/servers/web-apps/morty/deps.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 - [ 3 - { 4 - goPackagePath = "github.com/klauspost/compress"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/klauspost/compress"; 8 - rev = "5698df94daded084fa836b7df2ffbf6cbd3dd63a"; 9 - sha256 = "1jligmzsyv08dysdaih3r95ki0dqnay9wlzganl4r0mamwhq22wz"; 10 - }; 11 - } 12 - { 13 - goPackagePath = "github.com/klauspost/cpuid"; 14 - fetch = { 15 - type = "git"; 16 - url = "https://github.com/klauspost/cpuid"; 17 - rev = "ae832f27941af41db13bd6d8efd2493e3b22415a"; 18 - sha256 = "1h46y0lbzx0zjdnwbh0znf2ghgbvpzk1p269kkn7v8645xk3apk9"; 19 - }; 20 - } 21 - { 22 - goPackagePath = "github.com/valyala/bytebufferpool"; 23 - fetch = { 24 - type = "git"; 25 - url = "https://github.com/valyala/bytebufferpool"; 26 - rev = "e746df99fe4a3986f4d4f79e13c1e0117ce9c2f7"; 27 - sha256 = "01lqzjddq6kz9v41nkky7wbgk7f1cw036sa7ldz10d82g5klzl93"; 28 - }; 29 - } 30 - { 31 - goPackagePath = "github.com/valyala/fasthttp"; 32 - fetch = { 33 - type = "git"; 34 - url = "https://github.com/valyala/fasthttp"; 35 - rev = "e5f51c11919d4f66400334047b897ef0a94c6f3c"; 36 - sha256 = "0g24gys7xk449jd9ja89vr33i3amcb12jnmhsrmd5r2q8byv3l09"; 37 - }; 38 - } 39 - { 40 - goPackagePath = "golang.org/x/net"; 41 - fetch = { 42 - type = "git"; 43 - url = "https://go.googlesource.com/net"; 44 - rev = "f5dfe339be1d06f81b22525fe34671ee7d2c8904"; 45 - sha256 = "01y9j7pjnnld4ipmzjvs0hls0hh698f2sga8cxaw5y6r5j7igaah"; 46 - }; 47 - } 48 - { 49 - goPackagePath = "golang.org/x/text"; 50 - fetch = { 51 - type = "git"; 52 - url = "https://go.googlesource.com/text"; 53 - rev = "4e4a3210bb54bb31f6ab2cdca2edcc0b50c420c1"; 54 - sha256 = "10505r4xw1njnr2ns1s5r62s4pwif0kfaa30xxpgpz6qxrrmw15s"; 55 - }; 56 - } 57 - ]
+44
pkgs/tools/graphics/steghide/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoreconfHook 5 + , libjpeg 6 + , libmcrypt 7 + , libmhash 8 + , zlib 9 + }: 10 + 11 + stdenv.mkDerivation (finalAttrs: { 12 + pname = "steghide"; 13 + version = "0.5.1.1"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "museoa"; 17 + repo = "steghide"; 18 + rev = finalAttrs.version; 19 + hash = "sha256-uUXEipIUfu9AbG7Ekz+25JkWSEGzqA7sJHZqezLzUto="; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + autoreconfHook 24 + ]; 25 + 26 + buildInputs = [ 27 + libjpeg 28 + libmcrypt 29 + libmhash 30 + zlib 31 + ]; 32 + 33 + postPatch = '' 34 + cd src 35 + ''; 36 + 37 + meta = with lib; { 38 + homepage = "https://github.com/museoa/steghide"; 39 + description = "Open source steganography program"; 40 + license = licenses.gpl3Plus; 41 + maintainers = with maintainers; [ AndersonTorres ]; 42 + platforms = with platforms; unix; 43 + }; 44 + })
+3 -3
pkgs/tools/misc/dua/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "dua"; 5 - version = "2.18.0"; 5 + version = "2.19.0"; 6 6 7 7 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Foundation ]; 8 8 ··· 10 10 owner = "Byron"; 11 11 repo = "dua-cli"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-8WXby+b5bZEylAmgONTHsKCDl9W9KCCk76utZUd9CuA="; 13 + sha256 = "sha256-cb2WW0FpY5GMzll7sgbDRcgiKYSVZjJ8e8BabywF9wg="; 14 14 # Remove unicode file names which leads to different checksums on HFS+ 15 15 # vs. other filesystems because of unicode normalisation. 16 16 postFetch = '' ··· 18 18 ''; 19 19 }; 20 20 21 - cargoSha256 = "sha256-NHPlBZhZoZHASQ3BaYfH+sLyWKYmCsAwwd7ENI0bIFo="; 21 + cargoSha256 = "sha256-79dUeQOf6hiSRzz5mLWcSP5bLXMOU5YcE9ecd/t9VaI="; 22 22 23 23 doCheck = false; 24 24
+2 -2
pkgs/tools/misc/esphome/dashboard.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "esphome-dashboard"; 8 - version = "20221109.0"; 8 + version = "20221213.0"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - hash = "sha256-9LL/tO40Mr4PGojj50m4UIPoqImnDRNoVPqr8xXs6KU="; 13 + hash = "sha256-LwP+LBHzEWjPUih6aaZnI7Yh85vsa1Md1YgBWkLOUIs="; 14 14 }; 15 15 16 16 # no tests
+2 -2
pkgs/tools/misc/esphome/default.nix
··· 15 15 in 16 16 with python.pkgs; buildPythonApplication rec { 17 17 pname = "esphome"; 18 - version = "2022.11.4"; 18 + version = "2022.12.0"; 19 19 format = "setuptools"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = pname; 23 23 repo = pname; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-sQ6uKAsXNQ1mZYvrJpUcS4bYAGg1pzqp0KB2ceePbqY="; 25 + hash = "sha256-ZFu9txZTdCOhDpsjz7cjmWkY+Fdd07masd0YA/tRS80="; 26 26 }; 27 27 28 28 postPatch = ''
+2 -2
pkgs/tools/networking/dnsproxy/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnsproxy"; 5 - version = "0.46.4"; 5 + version = "0.46.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "AdguardTeam"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-QJ9qLcQKuv2T3Vf9ASuCI+w6+6NysZJAYbUEEglWLts="; 11 + sha256 = "sha256-NoRB0S9hdxy6udiIbvYW8yYSuVNXIC12CXuMoNB4nNo="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+34 -20
pkgs/tools/security/semgrep/common.nix
··· 1 1 { lib, fetchFromGitHub, fetchzip, stdenv }: 2 2 3 3 rec { 4 - version = "0.112.1"; 4 + version = "1.0.0"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "returntocorp"; 8 8 repo = "semgrep"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-SZtxZz4x6YUKw1uO5HQTU4lRY989SoCNsPQphJr+L0Y="; 10 + sha256 = "sha256-4fNBpokHKCtMB3P0ot1TzcuzOs5hlyH8nIw+bCGqThA="; 11 11 }; 12 12 13 13 # submodule dependencies 14 14 # these are fetched so we: 15 15 # 1. don't fetch the many submodules we don't need 16 16 # 2. avoid fetchSubmodules since it's prone to impurities 17 - langsSrc = fetchFromGitHub { 18 - owner = "returntocorp"; 19 - repo = "semgrep-langs"; 20 - rev = "91e288062eb794e8a5e6967d1009624237793491"; 21 - sha256 = "sha256-z2t2bTRyj5zu9h/GBg2YeRFimpJsd3dA7dK8VBaKzHo="; 22 - }; 23 - 24 - interfacesSrc = fetchFromGitHub { 25 - owner = "returntocorp"; 26 - repo = "semgrep-interfaces"; 27 - rev = "7bc457a32e088ef21adf1529fa0ddeea634b9131"; 28 - sha256 = "sha256-xN8Qm1/YLa49k9fZKDoPPmHASI2ipI3mkKlwEK2ajO4="; 17 + submodules = { 18 + "cli/src/semgrep/lang" = fetchFromGitHub { 19 + owner = "returntocorp"; 20 + repo = "semgrep-langs"; 21 + rev = "65cb2ed80e31e01b122f893fef8428d14432da75"; 22 + sha256 = "sha256-HdPJdOlMM1l7vNSATkEu5KrCkpt2feEAH8LFDU84KUM="; 23 + }; 24 + "cli/src/semgrep/semgrep_interfaces" = fetchFromGitHub { 25 + owner = "returntocorp"; 26 + repo = "semgrep-interfaces"; 27 + rev = "c69e30a4cf39f11cab5378700f5e193e8282079e"; 28 + sha256 = "sha256-Wr3/TWx/LHiTFCoGY4sqdsn3dHvMsEIVYA3RGiv88xQ="; 29 + }; 29 30 }; 30 31 31 32 # fetch pre-built semgrep-core since the ocaml build is complex and relies on 32 33 # the opam package manager at some point 33 - coreRelease = if stdenv.isDarwin then fetchzip { 34 - url = "https://github.com/returntocorp/semgrep/releases/download/v${version}/semgrep-v${version}-osx.zip"; 35 - sha256 = "sha256-JiOH39vMDL6r9WKuPO0CDkRwGZtzl/GIFoSegVddFpw="; 36 - } else fetchzip { 37 - url = "https://github.com/returntocorp/semgrep/releases/download/v${version}/semgrep-v${version}-ubuntu-16.04.tgz"; 38 - sha256 = "sha256-V6r+VQrgz8uVSbRa2AmW4lnLxovk63FL7LqVKD46RBw="; 34 + core = rec { 35 + data = { 36 + x86_64-linux = { 37 + suffix = "-ubuntu-16.04.tgz"; 38 + sha256 = "sha256-SsaAuhcDyO3nr6H2xOtdxzOoEQd6aIe0mlpehvDWzU0="; 39 + }; 40 + x86_64-darwin = { 41 + suffix = "-osx.zip"; 42 + sha256 = "sha256-DAcAB/q6XeljCp4mVljIJB4AUjUuzMSRMFzIuyjWMew="; 43 + }; 44 + }; 45 + src = let 46 + inherit (stdenv.hostPlatform) system; 47 + selectSystemData = data: data.${system} or (throw "Unsupported system: ${system}"); 48 + inherit (selectSystemData data) suffix sha256; 49 + in fetchzip { 50 + url = "https://github.com/returntocorp/semgrep/releases/download/v${version}/semgrep-v${version}${suffix}"; 51 + inherit sha256; 52 + }; 39 53 }; 40 54 41 55 meta = with lib; {
+54 -34
pkgs/tools/security/semgrep/default.nix
··· 15 15 in 16 16 buildPythonApplication rec { 17 17 pname = "semgrep"; 18 - inherit (common) version; 19 - src = "${common.src}/cli"; 18 + inherit (common) src version; 20 19 21 - SEMGREP_CORE_BIN = "${semgrep-core}/bin/semgrep-core"; 20 + postPatch = (lib.concatStringsSep "\n" (lib.mapAttrsToList ( 21 + path: submodule: '' 22 + # substitute ${path} 23 + # remove git submodule placeholder 24 + rm -r ${path} 25 + # link submodule 26 + ln -s ${submodule}/ ${path} 27 + '' 28 + ) common.submodules)) + '' 29 + cd cli 30 + ''; 22 31 23 32 nativeBuildInputs = [ pythonRelaxDepsHook ]; 33 + # tell cli/setup.py to not copy semgrep-core into the result 34 + # this means we can share a copy of semgrep-core and avoid an issue where it 35 + # copies the binary but doesn't retain the executable bit 36 + SEMGREP_SKIP_BIN = true; 37 + 24 38 pythonRelaxDeps = [ 25 39 "attrs" 26 40 "boltons" 27 41 "jsonschema" 28 42 "typing-extensions" 29 43 ]; 30 - 31 - postPatch = '' 32 - # remove git submodule placeholders 33 - rm -r ./src/semgrep/{lang,semgrep_interfaces} 34 - # link submodule dependencies 35 - ln -s ${common.langsSrc}/ ./src/semgrep/lang 36 - ln -s ${common.interfacesSrc}/ ./src/semgrep/semgrep_interfaces 37 - ''; 38 - 39 - doCheck = true; 40 - checkInputs = [ git pytestCheckHook ] ++ (with pythonPackages; [ 41 - pytest-snapshot 42 - pytest-mock 43 - pytest-freezegun 44 - types-freezegun 45 - ]); 46 - disabledTests = [ 47 - # requires networking 48 - "tests/unit/test_metric_manager.py" 49 - ]; 50 - preCheck = '' 51 - # tests need a home directory 52 - export HOME="$(mktemp -d)" 53 - 54 - # disabledTestPaths doesn't manage to avoid the e2e tests 55 - # remove them from pyproject.toml 56 - # and remove need for pytest-split 57 - substituteInPlace pyproject.toml \ 58 - --replace '"tests/e2e",' "" \ 59 - --replace 'addopts = "--splitting-algorithm=least_duration"' "" 60 - ''; 61 44 62 45 propagatedBuildInputs = with pythonPackages; [ 63 46 attrs ··· 60 77 urllib3 61 78 typing-extensions 62 79 python-lsp-jsonrpc 80 + tomli 63 81 ]; 82 + 83 + doCheck = true; 84 + checkInputs = [ git pytestCheckHook ] ++ (with pythonPackages; [ 85 + pytest-snapshot 86 + pytest-mock 87 + pytest-freezegun 88 + types-freezegun 89 + ]); 90 + disabledTests = [ 91 + # requires networking 92 + "test_send" 93 + # requires networking 94 + "test_parse_exclude_rules_auto" 95 + ]; 96 + preCheck = '' 97 + # tests need a home directory 98 + export HOME="$(mktemp -d)" 99 + 100 + # disabledTestPaths doesn't manage to avoid the e2e tests 101 + # remove them from pyproject.toml 102 + # and remove need for pytest-split 103 + substituteInPlace pyproject.toml \ 104 + --replace '"tests/e2e",' "" \ 105 + --replace 'addopts = "--splitting-algorithm=least_duration"' "" 106 + ''; 107 + 108 + # since we stop cli/setup.py from finding semgrep-core and copying it into 109 + # the result we need to provide it on the PATH 110 + preFixup = '' 111 + makeWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ semgrep-core ]}) 112 + ''; 113 + 114 + passthru = { 115 + inherit common; 116 + updateScript = ./update.sh; 117 + }; 64 118 65 119 meta = common.meta // { 66 120 description = common.meta.description + " - cli";
+1 -2
pkgs/tools/security/semgrep/semgrep-core.nix
··· 6 6 stdenvNoCC.mkDerivation rec { 7 7 pname = "semgrep-core"; 8 8 inherit (common) version; 9 - 10 - src = common.coreRelease; 9 + inherit (common.core) src; 11 10 12 11 installPhase = '' 13 12 runHook preInstall
+139
pkgs/tools/security/semgrep/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p curl gnused jq 3 + 4 + set -euxo pipefail 5 + 6 + # provide a github token so you don't get rate limited 7 + # if you use gh cli you can use: 8 + # `export GITHUB_TOKEN="$(cat ~/.config/gh/config.yml | yq '.hosts."github.com".oauth_token' -r)"` 9 + # or just set your token by hand: 10 + # `read -s -p "Enter your token: " GITHUB_TOKEN; export GITHUB_TOKEN` 11 + # (we use read so it doesn't show in our shell history and in secret mode so the token you paste isn't visible) 12 + if [ -z "${GITHUB_TOKEN:-}" ]; then 13 + echo "no GITHUB_TOKEN provided - you could meet API request limiting" >&2 14 + fi 15 + 16 + ROOT="$(dirname "$(readlink -f "$0")")" 17 + NIXPKGS_ROOT="$ROOT/../../../.." 18 + NIX_DRV="$ROOT/default.nix" 19 + 20 + COMMON_FILE="$ROOT/common.nix" 21 + 22 + instantiateClean() { 23 + nix-instantiate -A "$1" --eval --strict | cut -d\" -f2 24 + } 25 + 26 + # get latest version 27 + NEW_VERSION=$( 28 + curl -s -H 29 + "Accept: application/vnd.github.v3+json" \ 30 + ${GITHUB_TOKEN:+ -H "Authorization: bearer $GITHUB_TOKEN"} \ 31 + https://api.github.com/repos/returntocorp/semgrep/releases/latest \ 32 + | jq -r '.tag_name' 33 + ) 34 + # trim v prefix 35 + NEW_VERSION="${NEW_VERSION:1}" 36 + OLD_VERSION="$(instantiateClean semgrep.common.version)" 37 + 38 + if [[ "$OLD_VERSION" == "$NEW_VERSION" ]]; then 39 + echo "Already up to date" 40 + exit 41 + fi 42 + 43 + replace() { 44 + sed -i "s@$1@$2@g" "$3" 45 + } 46 + 47 + fetchgithub() { 48 + set +eo pipefail 49 + nix-build -A "$1" 2>&1 >/dev/null | grep "got:" | cut -d':' -f2 | sed 's| ||g' 50 + set -eo pipefail 51 + } 52 + 53 + fetchzip() { 54 + set +eo pipefail 55 + nix-build -E "with import $NIXPKGS_ROOT {}; fetchzip {url = \"$1\"; sha256 = lib.fakeSha256; }" 2>&1 >/dev/null | grep "got:" | cut -d':' -f2 | sed 's| ||g' 56 + set -eo pipefail 57 + } 58 + 59 + replace "$OLD_VERSION" "$NEW_VERSION" "$COMMON_FILE" 60 + 61 + echo "Updating src" 62 + 63 + OLD_HASH="$(instantiateClean semgrep.common.src.outputHash)" 64 + echo "Old hash $OLD_HASH" 65 + TMP_HASH="sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=" 66 + replace "$OLD_HASH" "$TMP_HASH" "$COMMON_FILE" 67 + NEW_HASH="$(fetchgithub semgrep.common.src)" 68 + echo "New hash $NEW_HASH" 69 + replace "$TMP_HASH" "$NEW_HASH" "$COMMON_FILE" 70 + 71 + echo "Updated src" 72 + 73 + # loop through platforms for core 74 + nix-instantiate -E "with import $NIXPKGS_ROOT {}; builtins.attrNames semgrep.common.core.data" --eval --strict --json \ 75 + | jq '.[]' -r \ 76 + | while read -r PLATFORM; do 77 + echo "Updating core for $PLATFORM" 78 + SUFFIX=$(instantiateClean semgrep.common.core.data."$1".suffix "$PLATFORM") 79 + OLD_HASH=$(instantiateClean semgrep.common.core.data."$1".sha256 "$PLATFORM") 80 + echo "Old hash $OLD_HASH" 81 + 82 + NEW_URL="https://github.com/returntocorp/semgrep/releases/download/v$NEW_VERSION/semgrep-v$NEW_VERSION$SUFFIX" 83 + NEW_HASH="$(fetchzip "$NEW_URL")" 84 + echo "New hash $NEW_HASH" 85 + 86 + replace "$OLD_HASH" "$NEW_HASH" "$COMMON_FILE" 87 + 88 + echo "Updated core for $PLATFORM" 89 + done 90 + 91 + OLD_PWD=$PWD 92 + TMPDIR="$(mktemp -d)" 93 + # shallow clone to check submodule commits, don't actually need the submodules 94 + git clone https://github.com/returntocorp/semgrep "$TMPDIR/semgrep" --depth 1 --branch "v$NEW_VERSION" 95 + 96 + get_submodule_commit() { 97 + OLD_PWD=$PWD 98 + ( 99 + cd "$TMPDIR/semgrep" 100 + git ls-tree --object-only HEAD "$1" 101 + cd "$OLD_PWD" 102 + ) 103 + } 104 + 105 + # loop through submodules 106 + nix-instantiate -E "with import $NIXPKGS_ROOT {}; builtins.attrNames semgrep.passthru.common.submodules" --eval --strict --json \ 107 + | jq '.[]' -r \ 108 + | while read -r SUBMODULE; do 109 + echo "Updating $SUBMODULE" 110 + OLD_REV=$(instantiateClean semgrep.passthru.common.submodules."$SUBMODULE".rev) 111 + echo "Old commit $OLD_REV" 112 + OLD_HASH=$(instantiateClean semgrep.passthru.common.submodules."$SUBMODULE".outputHash) 113 + echo "Old hash $OLD_HASH" 114 + 115 + NEW_REV=$(get_submodule_commit "$SUBMODULE") 116 + echo "New commit $NEW_REV" 117 + 118 + if [[ "$OLD_REV" == "$NEW_REV" ]]; then 119 + echo "$SUBMODULE already up to date" 120 + continue 121 + fi 122 + 123 + NEW_URL=$(instantiateClean semgrep.passthru.common.submodules."$SUBMODULE".url | sed "s@$OLD_REV@$NEW_REV@g") 124 + NEW_HASH=$(nix --experimental-features nix-command hash to-sri "sha256:$(nix-prefetch-url "$NEW_URL")") 125 + 126 + TMP_HASH="sha256-ABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=" 127 + replace "$OLD_REV" "$NEW_REV" "$COMMON_FILE" 128 + replace "$OLD_HASH" "$TMP_HASH" "$COMMON_FILE" 129 + NEW_HASH="$(fetchgithub semgrep.passthru.common.submodules."$SUBMODULE")" 130 + echo "New hash $NEW_HASH" 131 + replace "$TMP_HASH" "$NEW_HASH" "$COMMON_FILE" 132 + 133 + echo "Updated $SUBMODULE" 134 + done 135 + 136 + rm -rf "$TMPDIR" 137 + 138 + echo "Finished" 139 +
+6 -11
pkgs/tools/text/mdbook/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "mdbook"; 5 - version = "0.4.21"; 5 + version = "0.4.24"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "rust-lang"; 9 9 repo = "mdBook"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-ggcyOsA4cyo5l87cZmOMI0w1gCzmWy9NRJiWxjBdB1E="; 10 + rev = "refs/tags/v${version}"; 11 + sha256 = "sha256-Y7ZbgRX0ZaYtLA20fD/L9eNMbARI1f7g6O4Yl/UDO5E="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-KVoMC8ypikABVkIj5dCSHzYZ9CV8UMuAFxSEYLaQTSk="; 14 + cargoSha256 = "sha256-74LyxlDx9tVjw0KGPml6EZbAIbDiW3tvM/CEj5BW7pI="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; 17 - 18 - # Tests rely on unset 'RUST_LOG' value to emit INFO messages. 19 - # 'RUST_LOG=' nixpkgs default enables warnings only and breaks tests. 20 - # Can be removed when https://github.com/rust-lang/mdBook/pull/1777 21 - # is released. 22 - logLevel = "info"; 23 17 24 18 passthru = { 25 19 tests = { ··· 24 30 meta = with lib; { 25 31 description = "Create books from MarkDown"; 26 32 homepage = "https://github.com/rust-lang/mdBook"; 33 + changelog = "https://github.com/rust-lang/mdBook/blob/v${version}/CHANGELOG.md"; 27 34 license = [ licenses.mpl20 ]; 28 - maintainers = [ maintainers.havvy ]; 35 + maintainers = with maintainers; [ havvy Frostman ]; 29 36 }; 30 37 }
+1 -1
pkgs/tools/typesetting/tex/pgf-tikz/pgf-1.x.nix
··· 10 10 src = fetchFromGitHub { 11 11 owner = "pgf-tikz"; 12 12 repo = "pgf"; 13 - rev = "refs/tags/version-${lib.replaceChars ["."] ["-"] finalAttrs.version}"; 13 + rev = "refs/tags/version-${lib.replaceStrings ["."] ["-"] finalAttrs.version}"; 14 14 hash = "sha256-WZ/191iEDd5VK1bnV9JZx2BZfACUeAUhAqrlyx+ZvA4="; 15 15 }; 16 16
+5 -9
pkgs/top-level/all-packages.nix
··· 3367 3367 3368 3368 anbox = callPackage ../os-specific/linux/anbox { }; 3369 3369 3370 - androidenv = callPackage ../development/mobile/androidenv { 3371 - pkgs_i686 = pkgsi686Linux; 3372 - }; 3370 + androidenv = callPackage ../development/mobile/androidenv { }; 3373 3371 3374 3372 androidndkPkgs = androidndkPkgs_21; 3375 3373 androidndkPkgs_21 = (callPackage ../development/androidndk-pkgs {})."21"; ··· 4055 4057 4056 4058 cot = with python3Packages; toPythonApplication cot; 4057 4059 4058 - coturn = callPackage ../servers/coturn { 4059 - openssl = openssl_1_1; 4060 - }; 4060 + coturn = callPackage ../servers/coturn { }; 4061 4061 4062 4062 coursier = callPackage ../development/tools/coursier {}; 4063 4063 ··· 22754 22758 22755 22759 stduuid = callPackage ../development/libraries/stduuid { }; 22756 22760 22761 + steghide = callPackage ../tools/graphics/steghide { }; 22762 + 22757 22763 stegsolve = callPackage ../tools/graphics/stegsolve { }; 22758 22764 22759 22765 StormLib = callPackage ../development/libraries/StormLib { }; ··· 34278 34280 34279 34281 fish-fillets-ng = callPackage ../games/fish-fillets-ng { }; 34280 34282 34281 - jumpy = callPackage ../games/jumpy { 34282 - inherit (darwin.apple_sdk.frameworks) Cocoa OpenGL; 34283 - }; 34283 + jumpy = callPackage ../games/jumpy { }; 34284 34284 34285 34285 flightgear = libsForQt5.callPackage ../games/flightgear { }; 34286 34286
+1 -1
pkgs/top-level/haxe-packages.nix
··· 4 4 self = haxePackages; 5 5 haxePackages = with self; { 6 6 7 - withCommas = lib.replaceChars ["."] [","]; 7 + withCommas = lib.replaceStrings ["."] [","]; 8 8 9 9 # simulate "haxelib dev $libname ." 10 10 simulateHaxelibDev = libname: ''
+6
pkgs/top-level/python-packages.nix
··· 1347 1347 1348 1348 bond-async = callPackage ../development/python-modules/bond-async { }; 1349 1349 1350 + bonsai = callPackage ../development/python-modules/bonsai { }; 1351 + 1350 1352 booleanoperations = callPackage ../development/python-modules/booleanoperations { }; 1351 1353 1352 1354 boolean-py = callPackage ../development/python-modules/boolean-py { }; ··· 4211 4209 }); 4212 4210 4213 4211 hepunits = callPackage ../development/python-modules/hepunits { }; 4212 + 4213 + here-routing = callPackage ../development/python-modules/here-routing { }; 4214 + 4215 + here-transit = callPackage ../development/python-modules/here-transit { }; 4214 4216 4215 4217 herepy = callPackage ../development/python-modules/herepy { }; 4216 4218
+4
pkgs/top-level/python2-packages.nix
··· 67 67 68 68 rpm = disabled super.rpm; 69 69 70 + scandir = callPackage ../development/python2-modules/scandir { }; 71 + 70 72 sequoia = disabled super.sequoia; 71 73 72 74 setuptools = callPackage ../development/python2-modules/setuptools { }; 73 75 74 76 setuptools-scm = callPackage ../development/python2-modules/setuptools-scm { }; 77 + 78 + typing = callPackage ../development/python2-modules/typing { }; 75 79 76 80 zeek = disabled super.zeek; 77 81