lol

Merge remote-tracking branch 'origin/master' into haskell-updates

+5521 -11913
+1 -1
lib/systems/default.nix
··· 121 121 ({ 122 122 linux-kernel = args.linux-kernel or {}; 123 123 gcc = args.gcc or {}; 124 - rustc = args.rust or {}; 124 + rustc = args.rustc or {}; 125 125 } // platforms.select final) 126 126 linux-kernel gcc rustc; 127 127
+12
maintainers/maintainer-list.nix
··· 6222 6222 githubId = 982322; 6223 6223 name = "Henrik Olsson"; 6224 6224 }; 6225 + henrirosten = { 6226 + email = "henri.rosten@unikie.com"; 6227 + github = "henrirosten"; 6228 + githubId = 49935860; 6229 + name = "Henri Rosten"; 6230 + }; 6225 6231 henrytill = { 6226 6232 email = "henrytill@gmail.com"; 6227 6233 github = "henrytill"; ··· 9040 9046 keys = [{ 9041 9047 fingerprint = "74F5 E5CC 19D3 B5CB 608F 6124 68FF 81E6 A785 0F49"; 9042 9048 }]; 9049 + }; 9050 + lizelive = { 9051 + email = "nixpkgs@lize.live"; 9052 + github = "lizelive"; 9053 + githubId = 40217331; 9054 + name = "LizeLive"; 9043 9055 }; 9044 9056 lluchs = { 9045 9057 email = "lukas.werling@gmail.com";
+1
maintainers/team-list.nix
··· 151 151 152 152 cuda = { 153 153 members = [ 154 + connorbaker 154 155 SomeoneSerge 155 156 ]; 156 157 scope = "Maintain CUDA-enabled packages";
+2
nixos/modules/services/monitoring/uptime-kuma.nix
··· 43 43 services.uptime-kuma.settings = { 44 44 DATA_DIR = "/var/lib/uptime-kuma/"; 45 45 NODE_ENV = mkDefault "production"; 46 + HOST = mkDefault "127.0.0.1"; 47 + PORT = mkDefault "3001"; 46 48 }; 47 49 48 50 systemd.services.uptime-kuma = {
+7 -1
nixos/modules/services/network-filesystems/webdav-server-rs.nix
··· 28 28 description = lib.mdDoc "Group to run under when setuid is not enabled."; 29 29 }; 30 30 31 + debug = mkOption { 32 + type = types.bool; 33 + default = false; 34 + description = lib.mdDoc "Enable debug mode."; 35 + }; 36 + 31 37 settings = mkOption { 32 38 type = format.type; 33 39 default = { }; ··· 111 117 after = [ "network.target" ]; 112 118 wantedBy = [ "multi-user.target" ]; 113 119 serviceConfig = { 114 - ExecStart = "${pkgs.webdav-server-rs}/bin/webdav-server -c ${cfg.configFile}"; 120 + ExecStart = "${pkgs.webdav-server-rs}/bin/webdav-server ${lib.optionalString cfg.debug "--debug"} -c ${cfg.configFile}"; 115 121 116 122 CapabilityBoundingSet = [ 117 123 "CAP_SETUID"
+4 -3
nixos/tests/aaaaxy.nix
··· 3 3 meta.maintainers = with lib.maintainers; [ Luflosi ]; 4 4 5 5 nodes.machine = { 6 - hardware.opengl.enable = true; 6 + imports = [ 7 + ./common/x11.nix 8 + ]; 7 9 }; 8 10 9 11 # This starts the game from a known state, feeds it a prerecorded set of button presses 10 12 # and then checks if the final game state is identical to the expected state. 11 13 # This is also what AAAAXY's CI system does and serves as a good sanity check. 12 14 testScript = '' 13 - machine.wait_for_unit("basic.target") 15 + machine.wait_for_x() 14 16 15 17 machine.succeed( 16 18 # benchmark.dem needs to be in a mutable directory, ··· 18 20 "mkdir -p '/tmp/aaaaxy/assets/demos/'", 19 21 "ln -s '${pkgs.aaaaxy.testing_infra}/assets/demos/benchmark.dem' '/tmp/aaaaxy/assets/demos/'", 20 22 """ 21 - '${pkgs.xvfb-run}/bin/xvfb-run' \ 22 23 '${pkgs.aaaaxy.testing_infra}/scripts/regression-test-demo.sh' \ 23 24 'aaaaxy' 'on track for Any%, All Paths and No Teleports' \ 24 25 '${pkgs.aaaaxy}/bin/aaaaxy' '/tmp/aaaaxy/assets/demos/benchmark.dem'
+6 -2
nixos/tests/geth.nix
··· 19 19 enable = true; 20 20 port = 18545; 21 21 }; 22 + authrpc = { 23 + enable = true; 24 + port = 18551; 25 + }; 22 26 }; 23 27 }; 24 28 ··· 31 35 machine.wait_for_open_port(18545) 32 36 33 37 machine.succeed( 34 - 'geth attach --exec eth.blockNumber http://localhost:8545 | grep \'^0$\' ' 38 + 'geth attach --exec "eth.blockNumber" http://localhost:8545 | grep \'^0$\' ' 35 39 ) 36 40 37 41 machine.succeed( 38 - 'geth attach --exec "eth.chainId()" http://localhost:18545 | grep \'"0x5"\' ' 42 + 'geth attach --exec "eth.blockNumber" http://localhost:18545 | grep \'^0$\' ' 39 43 ) 40 44 ''; 41 45 })
+13 -5
nixos/tests/nginx.nix
··· 87 87 return etag 88 88 89 89 90 - webserver.wait_for_unit("nginx") 91 - webserver.wait_for_open_port(80) 90 + def wait_for_nginx_on_port(port): 91 + webserver.wait_for_unit("nginx") 92 + webserver.wait_for_open_port(port) 93 + 94 + 95 + # nginx can be ready before multi-user.target, in which case switching to 96 + # a different configuration might not realize it needs to restart nginx. 97 + webserver.wait_for_unit("multi-user.target") 98 + 99 + wait_for_nginx_on_port(80) 92 100 93 101 with subtest("check ETag if serving Nix store paths"): 94 102 old_etag = check_etag() 95 103 webserver.succeed( 96 104 "${etagSystem}/bin/switch-to-configuration test >&2" 97 105 ) 98 - webserver.sleep(1) 106 + wait_for_nginx_on_port(80) 99 107 new_etag = check_etag() 100 108 assert old_etag != new_etag 101 109 ··· 103 111 webserver.succeed( 104 112 "${justReloadSystem}/bin/switch-to-configuration test >&2" 105 113 ) 106 - webserver.wait_for_open_port(8080) 114 + wait_for_nginx_on_port(8080) 107 115 webserver.fail("journalctl -u nginx | grep -q -i stopped") 108 116 webserver.succeed("journalctl -u nginx | grep -q -i reloaded") 109 117 ··· 111 119 webserver.succeed( 112 120 "${reloadRestartSystem}/bin/switch-to-configuration test >&2" 113 121 ) 114 - webserver.wait_for_unit("nginx") 122 + wait_for_nginx_on_port(80) 115 123 webserver.succeed("journalctl -u nginx | grep -q -i stopped") 116 124 117 125 with subtest("nixos-rebuild --switch should fail when there are configuration errors"):
+6 -8
pkgs/applications/audio/pbpctrl/default.nix
··· 1 - { rustPlatform 1 + { lib 2 + , rustPlatform 2 3 , fetchFromGitHub 3 4 , pkg-config 4 5 , dbus 5 6 , protobuf 6 - , lib 7 7 }: 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "pbpctrl"; 11 - 12 - # https://github.com/qzed/pbpctrl/issues/4 13 - version = "unstable-2023-02-07"; 11 + version = "0.1.3"; 14 12 15 13 src = fetchFromGitHub { 16 14 owner = "qzed"; 17 15 repo = "${pname}"; 18 - rev = "9fef4bb88046a9f00719b189f8e378c8dbdb8ee6"; 19 - hash = "sha256-8YbsBqqITJ9bKzbGX6d/CSBb8wzr6bDzy8vsyntL1CA="; 16 + rev = "v${version}"; 17 + hash = "sha256-CYroQb6x2d4ay3RZUSiSrcGDF0IL3ETZtHAFt18sa5s="; 20 18 }; 21 19 22 - cargoHash = "sha256-ZxJjjaT/ZpEPxvO42UWBy3xW/V5dhXGsKn3KmuM89YA=="; 20 + cargoHash = "sha256-+YtnPKbxZENL6/u36RFFZA6F+19qHDAVx6Q8FSB/LCU="; 23 21 24 22 nativeBuildInputs = [ pkg-config protobuf ]; 25 23 buildInputs = [ dbus ];
+2 -2
pkgs/applications/editors/imhex/default.nix
··· 1 1 { lib 2 - , gcc12Stdenv 2 + , stdenv 3 3 , cmake 4 4 , llvm 5 5 , fetchFromGitHub ··· 32 32 }; 33 33 34 34 in 35 - gcc12Stdenv.mkDerivation rec { 35 + stdenv.mkDerivation rec { 36 36 pname = "imhex"; 37 37 inherit version; 38 38
+3 -2
pkgs/applications/editors/ne/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, ncurses, texinfo, texlive, perl, ghostscript }: 1 + { lib, stdenv, fetchFromGitHub, ncurses, texinfo6, texlive, perl, ghostscript }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ne"; ··· 16 16 substituteInPlace src/makefile --replace "-lcurses" "-lncurses" 17 17 ''; 18 18 19 - nativeBuildInputs = [ texlive.combined.scheme-medium texinfo perl ghostscript ]; 19 + nativeBuildInputs = [ texlive.combined.scheme-medium texinfo6 perl ghostscript ]; 20 20 buildInputs = [ ncurses ]; 21 21 22 22 makeFlags = [ "PREFIX=${placeholder "out"}" ]; ··· 32 32 ''; 33 33 license = licenses.gpl3; 34 34 platforms = platforms.unix; 35 + maintainers = with maintainers; [ geri1701 ]; 35 36 }; 36 37 }
+8
pkgs/applications/editors/neovim/default.nix
··· 51 51 # necessary so that nix can handle `UpdateRemotePlugins` for the plugins 52 52 # it installs. See https://github.com/neovim/neovim/issues/9413. 53 53 ./system_rplugin_manifest.patch 54 + 55 + # fix bug with the gsub directive 56 + # https://github.com/neovim/neovim/pull/23015 57 + (fetchpatch { 58 + name = "use-the-correct-replacement-args-for-gsub-directive.patch"; 59 + url = "https://github.com/neovim/neovim/commit/ccc0980f86c6ef9a86b0e5a3a691f37cea8eb776.patch"; 60 + hash = "sha256-sZWM6M8jCL1e72H0bAc51a6FrH0mFFqTV1gGLwKT7Zo="; 61 + }) 54 62 ]; 55 63 56 64 dontFixCmake = true;
+246 -102
pkgs/applications/editors/vim/plugins/generated.nix
··· 29 29 30 30 ChatGPT-nvim = buildVimPluginFrom2Nix { 31 31 pname = "ChatGPT.nvim"; 32 - version = "2023-05-07"; 32 + version = "2023-05-09"; 33 33 src = fetchFromGitHub { 34 34 owner = "jackMort"; 35 35 repo = "ChatGPT.nvim"; 36 - rev = "da445ce3fbfe3d657090a621940123bba5eff034"; 37 - sha256 = "0jf803zssdghq24qfgs88pmra3f06plqg9f210z7dn02qi3h6xia"; 36 + rev = "b73a36b4fd9da33e6c488dc5588c1dcd27b9aea9"; 37 + sha256 = "19bb79rljpmp352skidhnza376cki1sx5vnbgyyyw8qicqlnxxzd"; 38 38 }; 39 39 meta.homepage = "https://github.com/jackMort/ChatGPT.nvim/"; 40 40 }; ··· 173 173 174 174 LazyVim = buildVimPluginFrom2Nix { 175 175 pname = "LazyVim"; 176 - version = "2023-05-04"; 176 + version = "2023-05-08"; 177 177 src = fetchFromGitHub { 178 178 owner = "LazyVim"; 179 179 repo = "LazyVim"; 180 - rev = "25d37a2cdd6202f1d767595454a7f84f77bbd83e"; 181 - sha256 = "04c66zbnx2xfgfzik56lyk0pzsn1bnkgrylw86j1wv1aa3nn19nr"; 180 + rev = "cbf1d335ed6a478a2e6144aa2d462a8330b2b0fc"; 181 + sha256 = "0pc0br58ckbd8whnp6lf3vwgds99rzbsm8kx77wfbld84d63cin8"; 182 182 }; 183 183 meta.homepage = "https://github.com/LazyVim/LazyVim/"; 184 184 }; ··· 571 571 572 572 alpha-nvim = buildVimPluginFrom2Nix { 573 573 pname = "alpha-nvim"; 574 - version = "2023-05-05"; 574 + version = "2023-05-09"; 575 575 src = fetchFromGitHub { 576 576 owner = "goolord"; 577 577 repo = "alpha-nvim"; 578 - rev = "89eaa18a472be680539dee5977e2255f4dbd0738"; 579 - sha256 = "0xhpv2pdw4hkpkki1b1kgq894qv57h97d9yfva88pk52ly898jga"; 578 + rev = "effcde1c41ccf82b77354e70598c60d7e5f7ab7d"; 579 + sha256 = "0xc5bs3llcac19w9wq3dy5iqbrlmw6m64hxl5kdic68pjqszklrz"; 580 580 }; 581 581 meta.homepage = "https://github.com/goolord/alpha-nvim/"; 582 582 }; ··· 653 653 meta.homepage = "https://github.com/prabirshrestha/async.vim/"; 654 654 }; 655 655 656 + asyncomplete-buffer-vim = buildVimPluginFrom2Nix { 657 + pname = "asyncomplete-buffer.vim"; 658 + version = "2020-06-26"; 659 + src = fetchFromGitHub { 660 + owner = "prabirshrestha"; 661 + repo = "asyncomplete-buffer.vim"; 662 + rev = "018bcf0f712ce0fde3f1f2eaabd7004fccb2d34a"; 663 + sha256 = "0ixc37gzgsf93sl52fa3ywz6bw7cn1406fgimmy5rz0d62b0y8yi"; 664 + }; 665 + meta.homepage = "https://github.com/prabirshrestha/asyncomplete-buffer.vim/"; 666 + }; 667 + 668 + asyncomplete-file-vim = buildVimPluginFrom2Nix { 669 + pname = "asyncomplete-file.vim"; 670 + version = "2022-07-11"; 671 + src = fetchFromGitHub { 672 + owner = "prabirshrestha"; 673 + repo = "asyncomplete-file.vim"; 674 + rev = "770772daf1ff6ae29193bed02f8a7907913415d3"; 675 + sha256 = "1zvll94h2cx631z5xwii1mgx3lhm6i4pfppszk4p2mwk9hp9c4g4"; 676 + }; 677 + meta.homepage = "https://github.com/prabirshrestha/asyncomplete-file.vim/"; 678 + }; 679 + 656 680 asyncomplete-lsp-vim = buildVimPluginFrom2Nix { 657 681 pname = "asyncomplete-lsp.vim"; 658 682 version = "2022-11-21"; ··· 665 689 meta.homepage = "https://github.com/prabirshrestha/asyncomplete-lsp.vim/"; 666 690 }; 667 691 692 + asyncomplete-omni-vim = buildVimPluginFrom2Nix { 693 + pname = "asyncomplete-omni.vim"; 694 + version = "2018-04-04"; 695 + src = fetchFromGitHub { 696 + owner = "prabirshrestha"; 697 + repo = "asyncomplete-omni.vim"; 698 + rev = "f707e07f0c367c672ac24012b362b48ea3fd1611"; 699 + sha256 = "14kk15dqdjylj8x9m79ajrsqprf4yzcrv2k71y7lq8j6h4ybdcgr"; 700 + }; 701 + meta.homepage = "https://github.com/prabirshrestha/asyncomplete-omni.vim/"; 702 + }; 703 + 704 + asyncomplete-tags-vim = buildVimPluginFrom2Nix { 705 + pname = "asyncomplete-tags.vim"; 706 + version = "2021-04-29"; 707 + src = fetchFromGitHub { 708 + owner = "prabirshrestha"; 709 + repo = "asyncomplete-tags.vim"; 710 + rev = "041af0565f2c16634277cd29d2429c573af1dac4"; 711 + sha256 = "0i1ahg96j1ixyps0lfzl7w7skd64y6br1zn3bms447341zw4lc0k"; 712 + }; 713 + meta.homepage = "https://github.com/prabirshrestha/asyncomplete-tags.vim/"; 714 + }; 715 + 716 + asyncomplete-ultisnips-vim = buildVimPluginFrom2Nix { 717 + pname = "asyncomplete-ultisnips.vim"; 718 + version = "2023-01-13"; 719 + src = fetchFromGitHub { 720 + owner = "prabirshrestha"; 721 + repo = "asyncomplete-ultisnips.vim"; 722 + rev = "4cca37143274cc6947ee2d85bbd6dc1bfec5e53e"; 723 + sha256 = "0hh27i47qm0sqij2608b21qlggj8jn9czanw4yh5rh7kzd2c4lg3"; 724 + }; 725 + meta.homepage = "https://github.com/prabirshrestha/asyncomplete-ultisnips.vim/"; 726 + }; 727 + 668 728 asyncomplete-vim = buildVimPluginFrom2Nix { 669 729 pname = "asyncomplete.vim"; 670 730 version = "2023-04-11"; ··· 859 919 860 920 barbar-nvim = buildVimPluginFrom2Nix { 861 921 pname = "barbar.nvim"; 862 - version = "2023-05-02"; 922 + version = "2023-05-08"; 863 923 src = fetchFromGitHub { 864 924 owner = "romgrk"; 865 925 repo = "barbar.nvim"; 866 - rev = "de37647f05a5b556b6426b78c4608bbd40a8089f"; 867 - sha256 = "0c8bf8ikz6vpy3284cb820f88gh97fgiyhnw7nb4cw86hhxkviv7"; 926 + rev = "de10307c2d49a1b567adc020448dbeac3f667bb0"; 927 + sha256 = "0sxi7fwb8vvpayda2hc1b2psqlqj7s29ls10sbvn803gzn3f554p"; 868 928 }; 869 929 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 870 930 }; ··· 1241 1301 meta.homepage = "https://github.com/ekickx/clipboard-image.nvim/"; 1242 1302 }; 1243 1303 1304 + close-buffers-vim = buildVimPluginFrom2Nix { 1305 + pname = "close-buffers.vim"; 1306 + version = "2020-09-23"; 1307 + src = fetchFromGitHub { 1308 + owner = "asheq"; 1309 + repo = "close-buffers.vim"; 1310 + rev = "0b29fbc483344e2ebec96a28070698d72a8a767c"; 1311 + sha256 = "08pqnal5zfspg1wmg6laf9k46xrh3cg0yzdhl853j3ys96mfk8pf"; 1312 + }; 1313 + meta.homepage = "https://github.com/asheq/close-buffers.vim/"; 1314 + }; 1315 + 1244 1316 cmd-parser-nvim = buildVimPluginFrom2Nix { 1245 1317 pname = "cmd-parser.nvim"; 1246 1318 version = "2022-02-23"; ··· 2011 2083 2012 2084 compiler-explorer-nvim = buildVimPluginFrom2Nix { 2013 2085 pname = "compiler-explorer.nvim"; 2014 - version = "2023-04-15"; 2086 + version = "2023-05-09"; 2015 2087 src = fetchFromGitHub { 2016 2088 owner = "krady21"; 2017 2089 repo = "compiler-explorer.nvim"; 2018 - rev = "6708947a47479bc922847432f0909cbeb19ee557"; 2019 - sha256 = "1ky0pqjkjhxxgllzk0rml9xnpjwv83rvsrz2f9vqjn7wn9k4rkpr"; 2090 + rev = "42979d2da0696da244f1e8f08de0a0ecaeceb718"; 2091 + sha256 = "13n7fw03yyagml8ddvqqpi9gcng7kpz4bb0j9n63g9xfirpxszvj"; 2020 2092 }; 2021 2093 meta.homepage = "https://github.com/krady21/compiler-explorer.nvim/"; 2022 2094 }; ··· 2143 2215 2144 2216 copilot-lua = buildVimPluginFrom2Nix { 2145 2217 pname = "copilot.lua"; 2146 - version = "2023-05-07"; 2218 + version = "2023-05-08"; 2147 2219 src = fetchFromGitHub { 2148 2220 owner = "zbirenbaum"; 2149 2221 repo = "copilot.lua"; 2150 - rev = "3bfdf96d5eb7704ece1013ef04d0b0d211d12ee7"; 2151 - sha256 = "1dz0rip3ansn97vz98kl3fdfifhzpgbrpqbbv95l1zaj3abp4v9z"; 2222 + rev = "653bbdc44cd569a5fd0617e5a9d3df2b1359e230"; 2223 + sha256 = "1ym30fl7aw5x5wwr5bz5n4vh1hala66z4cdqk5pisin3270b1npr"; 2152 2224 }; 2153 2225 meta.homepage = "https://github.com/zbirenbaum/copilot.lua/"; 2154 2226 }; ··· 2345 2417 meta.homepage = "https://github.com/dart-lang/dart-vim-plugin/"; 2346 2418 }; 2347 2419 2420 + dash-vim = buildVimPluginFrom2Nix { 2421 + pname = "dash.vim"; 2422 + version = "2017-09-12"; 2423 + src = fetchFromGitHub { 2424 + owner = "rizzatti"; 2425 + repo = "dash.vim"; 2426 + rev = "25b17d9488454a1fcdbb2cbe829a23226f95e3c2"; 2427 + sha256 = "1pzc6bzmh38ivmcn37hgjaq21zc692smwfb39chh8hj853il183c"; 2428 + }; 2429 + meta.homepage = "https://github.com/rizzatti/dash.vim/"; 2430 + }; 2431 + 2348 2432 dashboard-nvim = buildVimPluginFrom2Nix { 2349 2433 pname = "dashboard-nvim"; 2350 2434 version = "2023-05-03"; ··· 2443 2527 2444 2528 deol-nvim = buildVimPluginFrom2Nix { 2445 2529 pname = "deol.nvim"; 2446 - version = "2023-05-04"; 2530 + version = "2023-05-08"; 2447 2531 src = fetchFromGitHub { 2448 2532 owner = "Shougo"; 2449 2533 repo = "deol.nvim"; 2450 - rev = "2f4cf55846774c70996b009adb030b109d90d4af"; 2451 - sha256 = "1gx3742v9hcfa9zwmsfba2pwjssys6n7jbs99n50z04lrndjnnk4"; 2534 + rev = "3e39af5e21948db1592b8789d10c87b66b524908"; 2535 + sha256 = "0j9j6wkp4rhxj87xp9akc52d0mqz1rkwpdk57549s5lmh1r65ylz"; 2452 2536 }; 2453 2537 meta.homepage = "https://github.com/Shougo/deol.nvim/"; 2454 2538 }; ··· 2866 2950 2867 2951 elixir-tools-nvim = buildVimPluginFrom2Nix { 2868 2952 pname = "elixir-tools.nvim"; 2869 - version = "2023-05-06"; 2953 + version = "2023-05-09"; 2870 2954 src = fetchFromGitHub { 2871 2955 owner = "elixir-tools"; 2872 2956 repo = "elixir-tools.nvim"; 2873 - rev = "08b7843979266cbf928815fdc8859dc1136f6ef3"; 2874 - sha256 = "0nfq62hfp34bfh7yb229ihfmh4kdi7kl17bgxd121g33cq4hdsmm"; 2957 + rev = "3fbcf9c0802cc28f8f621c4b02a7db1e7dfbcc26"; 2958 + sha256 = "1dghdlhn3x4r7qa999q3m80bnh1jvvl2scp76284v9gg244ciq08"; 2875 2959 }; 2876 2960 meta.homepage = "https://github.com/elixir-tools/elixir-tools.nvim/"; 2877 2961 }; ··· 3059 3143 3060 3144 firenvim = buildVimPluginFrom2Nix { 3061 3145 pname = "firenvim"; 3062 - version = "2023-03-31"; 3146 + version = "2023-05-09"; 3063 3147 src = fetchFromGitHub { 3064 3148 owner = "glacambre"; 3065 3149 repo = "firenvim"; 3066 - rev = "ee4ef314bd990b2b05b7fbd95b857159e444a2fe"; 3067 - sha256 = "0lv0dlbabjm5bcx1g36ncsiqaki7lc0iqapfbp2dvyij1rqq93l5"; 3150 + rev = "386239e1b1e6e3884db4da8bb7057709bec3dc51"; 3151 + sha256 = "0srvka4bl6nwh66p04zdlb8qr35j1i0gcxakaavjamrs3qqk6b1k"; 3068 3152 }; 3069 3153 meta.homepage = "https://github.com/glacambre/firenvim/"; 3070 3154 }; ··· 3520 3604 src = fetchFromGitHub { 3521 3605 owner = "ray-x"; 3522 3606 repo = "go.nvim"; 3523 - rev = "8ea5439288bf5a88c5e191bea47a5c60935f2e34"; 3524 - sha256 = "10fzb2pgf4y8aynzhii2k80ka2z59dmb6wd2ddghr09d61l27wrk"; 3607 + rev = "b119217e8324f13a2be12935f5d2d15a1df09b09"; 3608 + sha256 = "10wfmf2m5g22blks6fgi3x6mmmirhd452pi6r91jzxqliwf41pzc"; 3525 3609 }; 3526 3610 meta.homepage = "https://github.com/ray-x/go.nvim/"; 3527 3611 }; ··· 4391 4475 4392 4476 legendary-nvim = buildVimPluginFrom2Nix { 4393 4477 pname = "legendary.nvim"; 4394 - version = "2023-05-04"; 4478 + version = "2023-05-08"; 4395 4479 src = fetchFromGitHub { 4396 4480 owner = "mrjones2014"; 4397 4481 repo = "legendary.nvim"; 4398 - rev = "42e32d51b685f16fe6b56367b308dbdd9c01dbd0"; 4399 - sha256 = "1mc5lkw1alijl936iwahrawl0j4k8s4y10zb0inb8svdbjwd9wsd"; 4482 + rev = "729cb6203b7b2a47a996a3540ca86e860fc3823b"; 4483 + sha256 = "02i4cckxilkmjkxlq8mwsgyrnqjjhmhyj6i2451gg0bdss0ln5d9"; 4400 4484 }; 4401 4485 meta.homepage = "https://github.com/mrjones2014/legendary.nvim/"; 4402 4486 }; ··· 4727 4811 4728 4812 lsp-zero-nvim = buildVimPluginFrom2Nix { 4729 4813 pname = "lsp-zero.nvim"; 4730 - version = "2023-04-18"; 4814 + version = "2023-05-09"; 4731 4815 src = fetchFromGitHub { 4732 4816 owner = "VonHeikemen"; 4733 4817 repo = "lsp-zero.nvim"; 4734 - rev = "8f7436b5df998515d9e15073b16f1bd142c406f9"; 4735 - sha256 = "06jdi7qg9nhqjb2isldndjkbn4z3jminhn7rp036bc2rp3r6l3iw"; 4818 + rev = "6f7192ab78e4e2f29fddf44f617bea42a0979e3e"; 4819 + sha256 = "1hmg4fkv8w1vrg6bmb8368yiy47b0pj2vinpk89h1g37dgl21aj9"; 4736 4820 }; 4737 4821 meta.homepage = "https://github.com/VonHeikemen/lsp-zero.nvim/"; 4738 4822 }; ··· 4943 5027 4944 5028 mason-lspconfig-nvim = buildVimPluginFrom2Nix { 4945 5029 pname = "mason-lspconfig.nvim"; 4946 - version = "2023-05-02"; 5030 + version = "2023-05-08"; 4947 5031 src = fetchFromGitHub { 4948 5032 owner = "williamboman"; 4949 5033 repo = "mason-lspconfig.nvim"; 4950 - rev = "cec0e6dd534ade486b5eeb59ebcfa8d51c3e8c5e"; 4951 - sha256 = "0gv5bhc7jpsaxg7rgj52kvsnxrkqpww63zychrxc8mafbc3jfnn0"; 5034 + rev = "90a8bbf106b85b76951a34c542058ffa807de2b1"; 5035 + sha256 = "0gwm937hjc8x184zxdajrfvbjjn64n06li4g4iqqjzlypgpy8ild"; 4952 5036 }; 4953 5037 meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; 4954 5038 }; ··· 5375 5459 5376 5460 neo-tree-nvim = buildVimPluginFrom2Nix { 5377 5461 pname = "neo-tree.nvim"; 5378 - version = "2023-04-23"; 5462 + version = "2023-05-04"; 5379 5463 src = fetchFromGitHub { 5380 5464 owner = "nvim-neo-tree"; 5381 5465 repo = "neo-tree.nvim"; 5382 - rev = "8d485aab32da9b8841d4af977f992b82b14af469"; 5383 - sha256 = "192q4z6sy4kcyc57h2n4hsis7rirswfd83zcq1r0zvk7j1sbzzsr"; 5466 + rev = "8a600830a358639b0e630fa424d668e095901231"; 5467 + sha256 = "1j9gf4p3ns31g7bsw3sxg9qwccnzm8g0ramrilgx9imnb8jfai1x"; 5384 5468 }; 5385 5469 meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; 5386 5470 }; ··· 5399 5483 5400 5484 neoconf-nvim = buildVimPluginFrom2Nix { 5401 5485 pname = "neoconf.nvim"; 5402 - version = "2023-05-08"; 5486 + version = "2023-05-09"; 5403 5487 src = fetchFromGitHub { 5404 5488 owner = "folke"; 5405 5489 repo = "neoconf.nvim"; 5406 - rev = "3927733e7d1b2f987089642d6959926b7c273289"; 5407 - sha256 = "19yjhycv9662lh8z3qbvlijr5h8f8dgxhicwv1rgphs16f8mpazv"; 5490 + rev = "6086792a14a4490b227075a847f4226c07ed7eac"; 5491 + sha256 = "162vbsirid5l963ar46lawlfs4cdv0ph3vgg299bxhxr30pwalzi"; 5408 5492 }; 5409 5493 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 5410 5494 }; ··· 5459 5543 5460 5544 neogit = buildVimPluginFrom2Nix { 5461 5545 pname = "neogit"; 5462 - version = "2023-05-03"; 5546 + version = "2023-05-08"; 5463 5547 src = fetchFromGitHub { 5464 5548 owner = "TimUntersberger"; 5465 5549 repo = "neogit"; 5466 - rev = "d7c66e5e8752e0cc76336a78c4432648cf3102e1"; 5467 - sha256 = "0h5q4i8q2nz4a4lwr9gkrllqmn2dz4b14yazdyvq2ljjaqziv03q"; 5550 + rev = "917fb24c9b7e0506ebfa94ccdbeaaea5eff2f916"; 5551 + sha256 = "1554jri0cydga475vg3ink1cd9lc7pjx9akq0lds4fmwcrdq08zh"; 5468 5552 }; 5469 5553 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 5470 5554 }; ··· 5723 5807 5724 5808 neotest-rspec = buildVimPluginFrom2Nix { 5725 5809 pname = "neotest-rspec"; 5726 - version = "2023-04-24"; 5810 + version = "2023-05-09"; 5727 5811 src = fetchFromGitHub { 5728 5812 owner = "olimorris"; 5729 5813 repo = "neotest-rspec"; 5730 - rev = "fa28be514ceff6465e491bcab08989d8011453fd"; 5731 - sha256 = "1q2fp6csz6178bjks40n5kbccs0pq3i5p46n4vv9nq0xggs7fqpx"; 5814 + rev = "e9e9083ed7d741c25b6890ce12b70ff6f1e7a57a"; 5815 + sha256 = "0bph1jilga84s87d5xjiiqfb311b84hininypwf9qlq6h6jdh37k"; 5732 5816 }; 5733 5817 meta.homepage = "https://github.com/olimorris/neotest-rspec/"; 5734 5818 }; ··· 5831 5915 5832 5916 nerdcommenter = buildVimPluginFrom2Nix { 5833 5917 pname = "nerdcommenter"; 5834 - version = "2023-04-26"; 5918 + version = "2023-05-08"; 5835 5919 src = fetchFromGitHub { 5836 5920 owner = "preservim"; 5837 5921 repo = "nerdcommenter"; 5838 - rev = "1fe9e1cfea9bb0dbc77174d776759ed67899ee50"; 5839 - sha256 = "1h2j3f6fmlxggz1ghmb1b4kwpdiwzr7bfccbbxzyabvf04gdsn8h"; 5922 + rev = "277bdfc6796479639b4c580d2089e2a34962cd1f"; 5923 + sha256 = "1dg9jibmcsjfnb3ahzs2vdmiyzgphjslbrsc128d9sll7w0baq0j"; 5840 5924 }; 5841 5925 meta.homepage = "https://github.com/preservim/nerdcommenter/"; 5842 5926 }; ··· 5951 6035 5952 6036 nlsp-settings-nvim = buildVimPluginFrom2Nix { 5953 6037 pname = "nlsp-settings.nvim"; 5954 - version = "2023-05-07"; 6038 + version = "2023-05-09"; 5955 6039 src = fetchFromGitHub { 5956 6040 owner = "tamago324"; 5957 6041 repo = "nlsp-settings.nvim"; 5958 - rev = "f0930cf5a25924f0f952a0b22c79f4fc801fdd08"; 5959 - sha256 = "0wlv7n6lra7aylhikrz7csnhra83ms4f2fgy897xb3qsg27zrlik"; 6042 + rev = "b4691419660362793d552bf4503d26d7917efbad"; 6043 + sha256 = "1z9zwwj68wmxs0zbr6mnpy3aq7fiklmgcq9psmappvxn5a2lwgmj"; 5960 6044 }; 5961 6045 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 5962 6046 }; ··· 6275 6359 6276 6360 nvim-config-local = buildVimPluginFrom2Nix { 6277 6361 pname = "nvim-config-local"; 6278 - version = "2023-05-03"; 6362 + version = "2023-05-08"; 6279 6363 src = fetchFromGitHub { 6280 6364 owner = "klen"; 6281 6365 repo = "nvim-config-local"; 6282 - rev = "55b9f8520a39b45fbfc9526c39765c7c9ed2c166"; 6283 - sha256 = "062dvy8fdpg3zgh70hqsk0n29mz0izfll9g6hs34ssg6gkn2b3vf"; 6366 + rev = "b038a54768a55875417a242dc40833904de1c9c5"; 6367 + sha256 = "0f55lxzccflipn4yh4zp618g8zn501j949ln1j5a025c8kxh29ij"; 6284 6368 }; 6285 6369 meta.homepage = "https://github.com/klen/nvim-config-local/"; 6286 6370 }; ··· 6323 6407 6324 6408 nvim-dap-python = buildVimPluginFrom2Nix { 6325 6409 pname = "nvim-dap-python"; 6326 - version = "2023-04-05"; 6410 + version = "2023-05-08"; 6327 6411 src = fetchFromGitHub { 6328 6412 owner = "mfussenegger"; 6329 6413 repo = "nvim-dap-python"; 6330 - rev = "972b8b8b65823c433ee834ed02a7f06edf590dfc"; 6331 - sha256 = "154fspyyxh8s0z5bywi8266ns3vhxk4b6rgvd8qy9zkqm42spq3v"; 6414 + rev = "51ecb08dbff57fca8add396b93dc765aba262e0a"; 6415 + sha256 = "07pxdw9hx6qd4rs673jmai86zi0ggxpby3qyxim0hvir4w15000h"; 6332 6416 }; 6333 6417 meta.homepage = "https://github.com/mfussenegger/nvim-dap-python/"; 6334 6418 }; ··· 6467 6551 6468 6552 nvim-jdtls = buildVimPluginFrom2Nix { 6469 6553 pname = "nvim-jdtls"; 6470 - version = "2023-05-05"; 6554 + version = "2023-05-08"; 6471 6555 src = fetchFromGitHub { 6472 6556 owner = "mfussenegger"; 6473 6557 repo = "nvim-jdtls"; 6474 - rev = "b041dd4308d8c715187274ece9bc8d501a6f3041"; 6475 - sha256 = "01ns87mfd93q82adwyb5whnsnn6p7qnmshdcmpza6j1wsayhkj6s"; 6558 + rev = "355de7458fd63ccef9c6485d952ea118ba2cb46a"; 6559 + sha256 = "16319zrfqdxml6sl7jf7bf15ia9v579ihanba7bqfby6dbw6c40f"; 6476 6560 }; 6477 6561 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 6478 6562 }; ··· 6551 6635 6552 6636 nvim-lspconfig = buildVimPluginFrom2Nix { 6553 6637 pname = "nvim-lspconfig"; 6554 - version = "2023-05-07"; 6638 + version = "2023-05-09"; 6555 6639 src = fetchFromGitHub { 6556 6640 owner = "neovim"; 6557 6641 repo = "nvim-lspconfig"; 6558 - rev = "5ba7ab746d814413c84ed98c0214c71cd28f130a"; 6559 - sha256 = "0h3izsxism4j9lfcgzalw09kynnpk6mpznblkd5gr52n8fhdwxcz"; 6642 + rev = "8356319af6e8012a5797b647e946b377d1ba3d9c"; 6643 + sha256 = "026n4pkgasfa9r7rnsdrcp0x9fc48qzxri1wkyqlk3hrzv8d2iyw"; 6560 6644 }; 6561 6645 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 6562 6646 }; ··· 6623 6707 6624 6708 nvim-navic = buildVimPluginFrom2Nix { 6625 6709 pname = "nvim-navic"; 6626 - version = "2023-04-22"; 6710 + version = "2023-05-09"; 6627 6711 src = fetchFromGitHub { 6628 6712 owner = "smiteshp"; 6629 6713 repo = "nvim-navic"; 6630 - rev = "83dc174da915f9dbc9b51169e9b62a2e0d42b527"; 6631 - sha256 = "19lr5mlhnfd9s47mvhhkxl343slsvhw8ni5gqb9p11k1zznl2h9b"; 6714 + rev = "15704c607569d6c5cfeab486d3ef9459645a70ce"; 6715 + sha256 = "0wsrpz61ndgi2imzyn18s69zixvbmky5j1h5srfgv2cxjzdm67gh"; 6632 6716 }; 6633 6717 meta.homepage = "https://github.com/smiteshp/nvim-navic/"; 6634 6718 }; ··· 6839 6923 6840 6924 nvim-treesitter = buildVimPluginFrom2Nix { 6841 6925 pname = "nvim-treesitter"; 6842 - version = "2023-05-08"; 6926 + version = "2023-05-09"; 6843 6927 src = fetchFromGitHub { 6844 6928 owner = "nvim-treesitter"; 6845 6929 repo = "nvim-treesitter"; 6846 - rev = "402f1b8d3b424bb2379fc2fde522cd782de68cf4"; 6847 - sha256 = "0x2f5dp8hiinjpp93rwfq8s150ha143gdwj3w6vzvzbxrh7xg1l1"; 6930 + rev = "6e8ad92031ff3b07db8980ab4a5491d1c40398ea"; 6931 + sha256 = "1adjxg359j101d43k700nr3p43id2rb4yqqplfd4a897gxq60znj"; 6848 6932 }; 6849 6933 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 6850 6934 }; ··· 7127 7211 7128 7212 onedarkpro-nvim = buildVimPluginFrom2Nix { 7129 7213 pname = "onedarkpro.nvim"; 7130 - version = "2023-05-04"; 7214 + version = "2023-05-08"; 7131 7215 src = fetchFromGitHub { 7132 7216 owner = "olimorris"; 7133 7217 repo = "onedarkpro.nvim"; 7134 - rev = "d9d6cd9ba5b4e9d15ea2e9730ccf569f7fd0ffaa"; 7135 - sha256 = "0lpsdcic1nllbx2q6dgg6s8sw5is3j52ckyxii8prcy3rqg20f00"; 7218 + rev = "7ba6cff6147b4b32ffc614f2bee4c4da75e64e91"; 7219 + sha256 = "0dga10gn12ra4wl39hq8hi36gb4fln7wipx1qxxxlw8s66sd1iji"; 7136 7220 }; 7137 7221 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 7138 7222 }; ··· 7211 7295 7212 7296 oxocarbon-nvim = buildVimPluginFrom2Nix { 7213 7297 pname = "oxocarbon.nvim"; 7214 - version = "2023-05-07"; 7298 + version = "2023-05-08"; 7215 7299 src = fetchFromGitHub { 7216 7300 owner = "nyoom-engineering"; 7217 7301 repo = "oxocarbon.nvim"; 7218 - rev = "ece6aefe395717d92dd0d4f567eef836337ff761"; 7219 - sha256 = "16z1131vmqwhf7xql2cg4xyisxybxgp63vrvzrrkbilc7zd3xy7d"; 7302 + rev = "91fdca604c34af4e85e8cd7c3ab08724c86565cd"; 7303 + sha256 = "1aqxkz6zlr7xvgw641wg5i451ff7m0g700wvg5132ipa3s0ndw16"; 7220 7304 }; 7221 7305 meta.homepage = "https://github.com/nyoom-engineering/oxocarbon.nvim/"; 7222 7306 }; ··· 7861 7945 7862 7946 scope-nvim = buildVimPluginFrom2Nix { 7863 7947 pname = "scope.nvim"; 7864 - version = "2023-04-24"; 7948 + version = "2023-05-08"; 7865 7949 src = fetchFromGitHub { 7866 7950 owner = "tiagovla"; 7867 7951 repo = "scope.nvim"; 7868 - rev = "6c5d5d73701e45b1fad50fa821fe9bf88ab2eec6"; 7869 - sha256 = "1ryfnjl0384aq0mi2i8b9993hx9s2wgriixf02pmb8mz9hv38rpm"; 7952 + rev = "aae18f209049bca84075a8adccc934e463bfe7fe"; 7953 + sha256 = "08i0ygcf0v520c0n0l6idjb9gm2vg37wzj0jxm5rw9d5qzrdqxa4"; 7870 7954 }; 7871 7955 meta.homepage = "https://github.com/tiagovla/scope.nvim/"; 7872 7956 }; ··· 8042 8126 8043 8127 smart-splits-nvim = buildVimPluginFrom2Nix { 8044 8128 pname = "smart-splits.nvim"; 8045 - version = "2023-05-02"; 8129 + version = "2023-05-08"; 8046 8130 src = fetchFromGitHub { 8047 8131 owner = "mrjones2014"; 8048 8132 repo = "smart-splits.nvim"; 8049 - rev = "a2668b59bf3f9b87d47b42e7e8d08200ff0ab3b5"; 8050 - sha256 = "0lgm0vp42q6sz4ncv0mrss39c0sidb085plkww9k62n1pdwd8kwv"; 8133 + rev = "d1feced4a556677722862389964cb0e0ca646e52"; 8134 + sha256 = "06aw2si7f02vghqnp2ln3mmpay2168kn6wi9frjc3snrnrvw5y1i"; 8051 8135 }; 8052 8136 meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; 8053 8137 }; ··· 9380 9464 9381 9465 unison = buildVimPluginFrom2Nix { 9382 9466 pname = "unison"; 9383 - version = "2023-05-05"; 9467 + version = "2023-05-09"; 9384 9468 src = fetchFromGitHub { 9385 9469 owner = "unisonweb"; 9386 9470 repo = "unison"; 9387 - rev = "c33b29bad9270cdfd78fe511b914feefa6c15c77"; 9388 - sha256 = "0j76y4c55pq520v8wq1n4p9gfjyykcm5cx7aqb3ggnf5bhnd32bf"; 9471 + rev = "c4a4cfb1606b95d16bc1029183ad239d3208fe48"; 9472 + sha256 = "076zs2wgvk69g9z4b3a4af18hr1ksfqz9gyzw16zkdhavpfxkh3f"; 9389 9473 }; 9390 9474 meta.homepage = "https://github.com/unisonweb/unison/"; 9391 9475 }; ··· 10333 10417 owner = "flazz"; 10334 10418 repo = "vim-colorschemes"; 10335 10419 rev = "fd8f122cef604330c96a6a6e434682dbdfb878c9"; 10336 - sha256 = "1cg8q7w0vgl73aw1b9zz0zh5vw5d2pm8pm54fhfzva4azg56f416"; 10420 + sha256 = "0kpsf6j20fgblc8vhqn7ymr52v2d1h52vc7rbxmxfwdm80nvv3g5"; 10337 10421 }; 10338 10422 meta.homepage = "https://github.com/flazz/vim-colorschemes/"; 10339 10423 }; ··· 10540 10624 sha256 = "0kshppxgi63wn96a8h9zv7drwqcbljin5jhszh8q7pqw2xsd83gn"; 10541 10625 }; 10542 10626 meta.homepage = "https://github.com/ryanoasis/vim-devicons/"; 10627 + }; 10628 + 10629 + vim-dim = buildVimPluginFrom2Nix { 10630 + pname = "vim-dim"; 10631 + version = "2021-01-29"; 10632 + src = fetchFromGitHub { 10633 + owner = "jeffkreeftmeijer"; 10634 + repo = "vim-dim"; 10635 + rev = "8320a40f12cf89295afc4f13eb10159f29c43777"; 10636 + sha256 = "0mnwr4kxhng4mzds8l72s5km1qww4bifn5pds68c7zzyyy17ffxh"; 10637 + }; 10638 + meta.homepage = "https://github.com/jeffkreeftmeijer/vim-dim/"; 10543 10639 }; 10544 10640 10545 10641 vim-diminactive = buildVimPluginFrom2Nix { ··· 11900 11996 meta.homepage = "https://github.com/prabirshrestha/vim-lsp/"; 11901 11997 }; 11902 11998 11999 + vim-lsp-ale = buildVimPluginFrom2Nix { 12000 + pname = "vim-lsp-ale"; 12001 + version = "2021-12-28"; 12002 + src = fetchFromGitHub { 12003 + owner = "rhysd"; 12004 + repo = "vim-lsp-ale"; 12005 + rev = "db0f9a8a33c0480988dc420cd2fba8a07743e4a4"; 12006 + sha256 = "17ygzvmg3nqvf2vqnryazpcpdl20rgahkqwl4d1c40sfrmsqpwgi"; 12007 + }; 12008 + meta.homepage = "https://github.com/rhysd/vim-lsp-ale/"; 12009 + }; 12010 + 11903 12011 vim-lsp-cxx-highlight = buildVimPluginFrom2Nix { 11904 12012 pname = "vim-lsp-cxx-highlight"; 11905 12013 version = "2021-10-20"; ··· 11912 12020 meta.homepage = "https://github.com/jackguo380/vim-lsp-cxx-highlight/"; 11913 12021 }; 11914 12022 12023 + vim-lsp-settings = buildVimPluginFrom2Nix { 12024 + pname = "vim-lsp-settings"; 12025 + version = "2023-05-05"; 12026 + src = fetchFromGitHub { 12027 + owner = "mattn"; 12028 + repo = "vim-lsp-settings"; 12029 + rev = "af35b04c2d6c12fd2350a18757f3d08830886eb1"; 12030 + sha256 = "1givbnmg8w72cfg359hqn8lcxqdnk2rplnxbb5yd3g66wbqvfq38"; 12031 + }; 12032 + meta.homepage = "https://github.com/mattn/vim-lsp-settings/"; 12033 + }; 12034 + 12035 + vim-lsp-snippets = buildVimPluginFrom2Nix { 12036 + pname = "vim-lsp-snippets"; 12037 + version = "2020-01-15"; 12038 + src = fetchFromGitHub { 12039 + owner = "thomasfaingnaert"; 12040 + repo = "vim-lsp-snippets"; 12041 + rev = "7d9bca7f5b37285cfec412caf92e1d6132e1fffb"; 12042 + sha256 = "0ikjds0y0r3iq3b8dpw2pl3a3vh7kvn7jrlvz16s1n2ckixgirx4"; 12043 + }; 12044 + meta.homepage = "https://github.com/thomasfaingnaert/vim-lsp-snippets/"; 12045 + }; 12046 + 12047 + vim-lsp-ultisnips = buildVimPluginFrom2Nix { 12048 + pname = "vim-lsp-ultisnips"; 12049 + version = "2023-04-07"; 12050 + src = fetchFromGitHub { 12051 + owner = "thomasfaingnaert"; 12052 + repo = "vim-lsp-ultisnips"; 12053 + rev = "e6e903f4c5442004965890907e4318acbc61d375"; 12054 + sha256 = "004qv3yq16riq02wdv349xv06qngykh1i58bq3y04rny5bbdjl4i"; 12055 + }; 12056 + meta.homepage = "https://github.com/thomasfaingnaert/vim-lsp-ultisnips/"; 12057 + }; 12058 + 11915 12059 vim-lua = buildVimPluginFrom2Nix { 11916 12060 pname = "vim-lua"; 11917 12061 version = "2020-08-05"; ··· 12791 12935 12792 12936 vim-qf = buildVimPluginFrom2Nix { 12793 12937 pname = "vim-qf"; 12794 - version = "2021-07-20"; 12938 + version = "2023-05-09"; 12795 12939 src = fetchFromGitHub { 12796 12940 owner = "romainl"; 12797 12941 repo = "vim-qf"; 12798 - rev = "65f115c350934517382ae45198a74232a9069c2a"; 12799 - sha256 = "0pylxkmhcanks59imah3q2xyn8lp5735xm17p13yx9vx90779nwp"; 12942 + rev = "7e65325651ff5a0b06af8df3980d2ee54cf10e14"; 12943 + sha256 = "0w1hqngpflngjg0pvrpd6a61p7i4f06qg6h2kiyjnqkwaq5zsyym"; 12800 12944 }; 12801 12945 meta.homepage = "https://github.com/romainl/vim-qf/"; 12802 12946 }; ··· 13944 14088 13945 14089 vim-wakatime = buildVimPluginFrom2Nix { 13946 14090 pname = "vim-wakatime"; 13947 - version = "2023-04-13"; 14091 + version = "2023-05-09"; 13948 14092 src = fetchFromGitHub { 13949 14093 owner = "wakatime"; 13950 14094 repo = "vim-wakatime"; 13951 - rev = "515dbcc2278a9279a19de838fa29fc5078e34e56"; 13952 - sha256 = "186p9v00j7sag46wh9w0x7nvc52k5ki19smxfi1mwjpfrfizxywn"; 14095 + rev = "02be9238319937e04afea73fd0fc7da5413ee041"; 14096 + sha256 = "0izlgvx9p64wpv1ycwy2viyqgb75f10dhy0jq13r2zjprskgx20c"; 13953 14097 }; 13954 14098 meta.homepage = "https://github.com/wakatime/vim-wakatime/"; 13955 14099 }; ··· 14244 14388 14245 14389 vimspector = buildVimPluginFrom2Nix { 14246 14390 pname = "vimspector"; 14247 - version = "2023-05-02"; 14391 + version = "2023-05-09"; 14248 14392 src = fetchFromGitHub { 14249 14393 owner = "puremourning"; 14250 14394 repo = "vimspector"; 14251 - rev = "e69222931721673d48fa9177325b1740e93e6ac7"; 14252 - sha256 = "090kcz3jzz1yk52hv8l4l80aszs2cs782f07ca6l40v33ng4pgkk"; 14395 + rev = "6d818bb04381c41a5a3fbdd0063cc0bff2a5cfb8"; 14396 + sha256 = "0392dc8jgnmfz7pxllr2wz2p0ins3hlbzkxqlcvs2r2flfdj3637"; 14253 14397 fetchSubmodules = true; 14254 14398 }; 14255 14399 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 14666 14810 14667 14811 catppuccin-nvim = buildVimPluginFrom2Nix { 14668 14812 pname = "catppuccin-nvim"; 14669 - version = "2023-05-07"; 14813 + version = "2023-05-08"; 14670 14814 src = fetchFromGitHub { 14671 14815 owner = "catppuccin"; 14672 14816 repo = "nvim"; 14673 - rev = "ce06ac2d31e0ec390d308c52809da869c8568812"; 14674 - sha256 = "1p7x4pa945027n79rdaiaj8x6pyicbqb5r3rdapjdjsw7kmw4ah8"; 14817 + rev = "b2f566d43e04557b1b83065cae706d461de04e66"; 14818 + sha256 = "1bvwzrwz0s8mj5bhr046z9x72n3cmhszy6pgaid4kmxqf89bfrxz"; 14675 14819 }; 14676 14820 meta.homepage = "https://github.com/catppuccin/nvim/"; 14677 14821 };
+3 -3
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 1597 1597 }; 1598 1598 slint = buildGrammar { 1599 1599 language = "slint"; 1600 - version = "0.0.0+rev=0754752"; 1600 + version = "0.0.0+rev=6f12865"; 1601 1601 src = fetchFromGitHub { 1602 1602 owner = "jrmoulton"; 1603 1603 repo = "tree-sitter-slint"; 1604 - rev = "07547525cdf4627343dca5891f1743ae45e879bb"; 1605 - hash = "sha256-FB5uDzvJKBN3KH+g71kn2/SX8KIZdLv3OamX8f1NeVE="; 1604 + rev = "6f128658eb22cfd15a801f52369d517c25253d5c"; 1605 + hash = "sha256-zW6WlzVSea8F1E2HJP5DPNEnxnFQMFLXnyRECiIkXR8="; 1606 1606 }; 1607 1607 meta.homepage = "https://github.com/jrmoulton/tree-sitter-slint"; 1608 1608 };
+12
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 53 53 https://github.com/solarnz/arcanist.vim/,, 54 54 https://github.com/vim-scripts/argtextobj.vim/,, 55 55 https://github.com/prabirshrestha/async.vim/,, 56 + https://github.com/prabirshrestha/asyncomplete-buffer.vim/,HEAD, 57 + https://github.com/prabirshrestha/asyncomplete-file.vim/,HEAD, 56 58 https://github.com/prabirshrestha/asyncomplete-lsp.vim/,, 59 + https://github.com/prabirshrestha/asyncomplete-omni.vim/,HEAD, 60 + https://github.com/prabirshrestha/asyncomplete-tags.vim/,HEAD, 61 + https://github.com/prabirshrestha/asyncomplete-ultisnips.vim/,HEAD, 57 62 https://github.com/prabirshrestha/asyncomplete.vim/,, 58 63 https://github.com/skywind3000/asyncrun.vim/,, 59 64 https://github.com/skywind3000/asynctasks.vim/,, ··· 104 109 https://github.com/rhysd/clever-f.vim/,, 105 110 https://github.com/bbchung/clighter8/,, 106 111 https://github.com/ekickx/clipboard-image.nvim/,, 112 + https://github.com/asheq/close-buffers.vim/,HEAD, 107 113 https://github.com/winston0410/cmd-parser.nvim/,, 108 114 https://github.com/hrsh7th/cmp-buffer/,, 109 115 https://github.com/hrsh7th/cmp-calc/,, ··· 196 202 https://github.com/amiorin/ctrlp-z/,, 197 203 https://github.com/ctrlpvim/ctrlp.vim/,, 198 204 https://github.com/dart-lang/dart-vim-plugin/,, 205 + https://github.com/rizzatti/dash.vim/,HEAD, 199 206 https://github.com/glepnir/dashboard-nvim/,, 200 207 https://github.com/kristijanhusak/defx-git/,, 201 208 https://github.com/kristijanhusak/defx-icons/,, ··· 887 894 https://github.com/sunaku/vim-dasht/,, 888 895 https://github.com/ajmwagar/vim-deus/,, 889 896 https://github.com/ryanoasis/vim-devicons/,, 897 + https://github.com/jeffkreeftmeijer/vim-dim/,HEAD, 890 898 https://github.com/blueyed/vim-diminactive/,, 891 899 https://github.com/will133/vim-dirdiff/,, 892 900 https://github.com/justinmk/vim-dirvish/,, ··· 1000 1008 https://github.com/mlr-msft/vim-loves-dafny/,, 1001 1009 https://github.com/natebosch/vim-lsc/,, 1002 1010 https://github.com/prabirshrestha/vim-lsp/,, 1011 + https://github.com/rhysd/vim-lsp-ale/,HEAD, 1003 1012 https://github.com/jackguo380/vim-lsp-cxx-highlight/,, 1013 + https://github.com/mattn/vim-lsp-settings/,HEAD, 1014 + https://github.com/thomasfaingnaert/vim-lsp-snippets/,HEAD, 1015 + https://github.com/thomasfaingnaert/vim-lsp-ultisnips/,HEAD, 1004 1016 https://github.com/tbastos/vim-lua/,, 1005 1017 https://github.com/google/vim-maktaba/,, 1006 1018 https://github.com/lambdalisue/vim-manpager/,,
+2 -2
pkgs/applications/emulators/rpcs3/default.nix
··· 1 - { gcc12Stdenv, lib, fetchFromGitHub, wrapQtAppsHook, cmake, pkg-config, git 1 + { lib, stdenv, fetchFromGitHub, wrapQtAppsHook, cmake, pkg-config, git 2 2 , qtbase, qtquickcontrols, qtmultimedia, openal, glew, vulkan-headers, vulkan-loader, libpng 3 3 , ffmpeg, libevdev, libusb1, zlib, curl, wolfssl, python3, pugixml, faudio, flatbuffers 4 4 , sdl2Support ? true, SDL2 ··· 21 21 sha256 = "0c3g30rj1y8fbd2q4kwlpg1jdy02z4w5ryhj3yr9051pdnf4kndz"; 22 22 }; 23 23 in 24 - gcc12Stdenv.mkDerivation { 24 + stdenv.mkDerivation { 25 25 pname = "rpcs3"; 26 26 version = rpcs3Version; 27 27
+51 -28
pkgs/applications/emulators/yuzu/default.nix
··· 1 1 { branch ? "mainline" 2 - , libsForQt5 2 + , qt6Packages 3 3 , fetchFromGitHub 4 + , fetchgit 4 5 , fetchurl 6 + , fetchzip 7 + , runCommand 8 + , gnutar 5 9 }: 6 10 7 11 let 8 - # Mirror of https://api.yuzu-emu.org/gamedb, last updated 2022-08-13 9 - # Please make sure to update this when updating yuzu! 12 + sources = import ./sources.nix; 13 + 10 14 compat-list = fetchurl { 11 15 name = "yuzu-compat-list"; 12 - url = "https://raw.githubusercontent.com/flathub/org.yuzu_emu.yuzu/d83401d2ee3fd5e1922e31baed1f3bdb1c0f036c/compatibility_list.json"; 13 - sha256 = "sha256-anOmO7NscHDsQxT03+YbJEyBkXjhcSVGgKpDwt//GHw="; 16 + url = "https://raw.githubusercontent.com/flathub/org.yuzu_emu.yuzu/${sources.compatList.rev}/compatibility_list.json"; 17 + hash = sources.compatList.hash; 14 18 }; 15 - in { 16 - mainline = libsForQt5.callPackage ./generic.nix rec { 17 - pname = "yuzu-mainline"; 18 - version = "1245"; 19 19 20 - src = fetchFromGitHub { 21 - owner = "yuzu-emu"; 22 - repo = "yuzu-mainline"; 23 - rev = "mainline-0-${version}"; 24 - sha256 = "sha256-lWXlY1KQC067MvCRUFhmr0c7KDrHDuwJOhIWMKw1f+A="; 25 - fetchSubmodules = true; 26 - }; 20 + mainlineSrc = fetchFromGitHub { 21 + owner = "yuzu-emu"; 22 + repo = "yuzu-mainline"; 23 + rev = "mainline-0-${sources.mainline.version}"; 24 + hash = sources.mainline.hash; 25 + fetchSubmodules = true; 26 + }; 27 27 28 - inherit branch compat-list; 28 + # The mirror repo for early access builds is missing submodule info, 29 + # but the Windows distributions include a source tarball, which in turn 30 + # includes the full git metadata. So, grab that and rehydrate it. 31 + # This has the unfortunate side effect of requiring two FODs, one 32 + # for the Windows download and one for the full repo with submodules. 33 + eaZip = fetchzip { 34 + name = "yuzu-ea-windows-dist"; 35 + url = "https://github.com/pineappleEA/pineapple-src/releases/download/EA-${sources.ea.version}/Windows-Yuzu-EA-${sources.ea.version}.zip"; 36 + hash = sources.ea.distHash; 29 37 }; 30 38 31 - early-access = libsForQt5.callPackage ./generic.nix rec { 32 - pname = "yuzu-ea"; 33 - version = "2945"; 39 + eaGitSrc = runCommand "yuzu-ea-dist-unpacked" { 40 + src = eaZip; 41 + nativeBuildInputs = [ gnutar ]; 42 + } 43 + '' 44 + mkdir $out 45 + tar xf $src/*.tar.xz --directory=$out --strip-components=1 46 + ''; 34 47 35 - src = fetchFromGitHub { 36 - owner = "pineappleEA"; 37 - repo = "pineapple-src"; 38 - rev = "EA-${version}"; 39 - sha256 = "sha256-/051EtQxhB5oKH/JxZZ2AjnxOBcRxCBIwd4Qr8lq7Ok="; 40 - fetchSubmodules = true; 41 - }; 48 + eaSrcRehydrated = fetchgit { 49 + url = eaGitSrc; 50 + fetchSubmodules = true; 51 + hash = sources.ea.fullHash; 52 + }; 53 + 54 + in { 55 + mainline = qt6Packages.callPackage ./generic.nix { 56 + branch = "mainline"; 57 + version = sources.mainline.version; 58 + src = mainlineSrc; 59 + inherit compat-list; 60 + }; 42 61 43 - inherit branch compat-list; 62 + early-access = qt6Packages.callPackage ./generic.nix { 63 + branch = "early-access"; 64 + version = sources.ea.version; 65 + src = eaSrcRehydrated; 66 + inherit compat-list; 44 67 }; 45 68 }.${branch}
+51 -37
pkgs/applications/emulators/yuzu/generic.nix
··· 1 - { pname 2 - , version 1 + { version 3 2 , src 4 3 , branch 5 4 , compat-list 6 5 7 6 , lib 8 7 , stdenv 9 - , runCommandLocal 10 - , substituteAll 11 8 , wrapQtAppsHook 12 9 , alsa-lib 13 10 , boost 14 - , catch2 11 + , catch2_3 15 12 , cmake 13 + , cpp-jwt 14 + , cubeb 15 + , discord-rpc 16 16 , doxygen 17 + , enet 17 18 , ffmpeg 18 - , fmt_8 19 + , fmt 19 20 , glslang 21 + , httplib 22 + , inih 20 23 , libjack2 21 24 , libopus 22 25 , libpulseaudio ··· 29 32 , pkg-config 30 33 , python3 31 34 , qtbase 35 + , qtmultimedia 32 36 , qttools 37 + , qtwayland 33 38 , qtwebengine 34 39 , rapidjson 35 40 , SDL2 ··· 42 47 , zstd 43 48 }: 44 49 45 - stdenv.mkDerivation rec { 46 - inherit pname version src; 50 + stdenv.mkDerivation { 51 + pname = "yuzu-${branch}"; 52 + 53 + inherit version src; 47 54 48 55 nativeBuildInputs = [ 49 56 cmake ··· 57 64 buildInputs = [ 58 65 alsa-lib 59 66 boost 60 - catch2 67 + catch2_3 68 + cpp-jwt 69 + cubeb 70 + discord-rpc 71 + # intentionally omitted: dynarmic - prefer vendored version for compatibility 72 + enet 61 73 ffmpeg 62 - fmt_8 74 + fmt 63 75 glslang 76 + httplib 77 + inih 64 78 libjack2 65 79 libopus 66 80 libpulseaudio 67 81 libusb1 68 82 libva 69 83 libzip 84 + # intentionally omitted: LLVM - heavy, only used for stack traces in the debugger 70 85 lz4 71 86 nlohmann_json 72 87 qtbase 88 + qtmultimedia 73 89 qttools 90 + qtwayland 74 91 qtwebengine 75 92 rapidjson 76 93 SDL2 77 94 sndio 78 95 speexdsp 79 96 udev 97 + vulkan-headers 98 + # intentionally omitted: xbyak - prefer vendored version for compatibility 80 99 zlib 81 100 zstd 82 101 ]; 83 102 84 - doCheck = true; 85 - 86 103 # This changes `ir/opt` to `ir/var/empty` in `externals/dynarmic/src/dynarmic/CMakeLists.txt` 87 104 # making the build fail, as that path does not exist 88 105 dontFixCmake = true; 89 106 90 - # -Werror causes build failures for deprecation warnings introduced by transitive dependency updates 91 - postPatch = '' 92 - sed -i '/-Werror/d' src/common/CMakeLists.txt 93 - ''; 94 - 95 107 cmakeFlags = [ 96 - "-DYUZU_USE_BUNDLED_QT=OFF" 97 - "-DYUZU_USE_BUNDLED_FFMPEG=OFF" 98 - "-DYUZU_USE_BUNDLED_OPUS=OFF" 99 - "-DYUZU_USE_EXTERNAL_SDL2=OFF" 108 + # actually has a noticeable performance impact 109 + "-DYUZU_ENABLE_LTO=ON" 100 110 111 + # build with qt6 112 + "-DENABLE_QT6=ON" 101 113 "-DENABLE_QT_TRANSLATION=ON" 114 + 115 + # use system libraries 116 + "-DYUZU_USE_EXTERNAL_SDL2=OFF" 117 + "-DYUZU_USE_EXTERNAL_VULKAN_HEADERS=OFF" 118 + 119 + # don't check for missing submodules 120 + "-DYUZU_CHECK_SUBMODULES=OFF" 121 + 122 + # enable some optional features 102 123 "-DYUZU_USE_QT_WEB_ENGINE=ON" 124 + "-DYUZU_USE_QT_MULTIMEDIA=ON" 103 125 "-DUSE_DISCORD_PRESENCE=ON" 104 126 105 127 # We dont want to bother upstream with potentially outdated compat reports ··· 107 129 "-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=OFF" # We provide this deterministically 108 130 ]; 109 131 132 + # Fixes vulkan detection. 133 + # FIXME: patchelf --add-rpath corrupts the binary for some reason, investigate 110 134 qtWrapperArgs = [ 111 - # Fixes vulkan detection 112 135 "--prefix LD_LIBRARY_PATH : ${vulkan-loader}/lib" 113 - # Without yuzu doesnt start on wayland. See https://github.com/yuzu-emu/yuzu/issues/6088 114 - "--set QT_QPA_PLATFORM xcb" 115 136 ]; 116 137 117 138 preConfigure = '' 118 - # This prevents a check for submodule directories. 119 - rm -f .gitmodules 120 - 121 139 # see https://github.com/NixOS/nixpkgs/issues/114044, setting this through cmakeFlags does not work. 122 140 cmakeFlagsArray+=( 123 - "-DTITLE_BAR_FORMAT_IDLE=yuzu ${branch} ${version}" 124 - "-DTITLE_BAR_FORMAT_RUNNING=yuzu ${branch} ${version} | {3}" 141 + "-DTITLE_BAR_FORMAT_IDLE=yuzu | ${branch} ${version} (nixpkgs) {}" 142 + "-DTITLE_BAR_FORMAT_RUNNING=yuzu | ${branch} ${version} (nixpkgs) | {}" 125 143 ) 126 144 ''; 127 145 ··· 130 148 ln -sf ${compat-list} ./dist/compatibility_list/compatibility_list.json 131 149 ''; 132 150 133 - passthru.updateScript = runCommandLocal "yuzu-${branch}-updateScript" { 134 - script = substituteAll { 135 - src = ./update.sh; 136 - inherit branch; 137 - }; 138 - } "install -Dm755 $script $out"; 151 + passthru.updateScript = ./update.sh; 139 152 140 153 meta = with lib; { 141 154 homepage = "https://yuzu-emu.org"; ··· 143 156 description = "The ${branch} branch of an experimental Nintendo Switch emulator written in C++"; 144 157 longDescription = '' 145 158 An experimental Nintendo Switch emulator written in C++. 146 - Using the mainline branch is recommanded for general usage. 147 - Using the early-access branch is recommanded if you would like to try out experimental features, with a cost of stability. 159 + Using the mainline branch is recommended for general usage. 160 + Using the early-access branch is recommended if you would like to try out experimental features, with a cost of stability. 148 161 ''; 149 162 mainProgram = "yuzu"; 150 163 platforms = [ "x86_64-linux" ]; ··· 158 171 ivar 159 172 joshuafern 160 173 sbruder 174 + k900 161 175 ]; 162 176 }; 163 177 }
+19
pkgs/applications/emulators/yuzu/sources.nix
··· 1 + # Generated by ./update.sh - do not update manually! 2 + # Last updated: 2023-05-05 3 + { 4 + compatList = { 5 + rev = "773d28cbc699427c8baa427452d7b229920eec59"; 6 + hash = "sha256:1hdsza3wf9a0yvj6h55gsl7xqvhafvbz1i8paz9kg7l49b0gnlh1"; 7 + }; 8 + 9 + mainline = { 10 + version = "1421"; 11 + hash = "sha256:1ldxframs7a8rmna9ymyx20n89594q0d1266kr7ah8yvh1gp04r3"; 12 + }; 13 + 14 + ea = { 15 + version = "3557"; 16 + distHash = "sha256:0bddx5d88cfaaqbzr59w9kqjjsf9xvgvdn1g0l9w3ifr9zc2vlwr"; 17 + fullHash = "sha256:0w1ji3a8iridh4dpyal8lscgwddf9pwz1pfigksmvbn8mm9d9xwl"; 18 + }; 19 + }
+47 -86
pkgs/applications/emulators/yuzu/update.sh
··· 1 1 #! /usr/bin/env nix-shell 2 - #! nix-shell -I nixpkgs=./. -i bash -p nix nix-prefetch-git coreutils curl jq gnused 2 + #! nix-shell -i bash -p nix nix-prefetch-git gnutar curl jq 3 3 4 4 set -euo pipefail 5 5 6 - # Will be replaced with the actual branch when running this from passthru.updateScript 7 - BRANCH="@branch@" 8 - DEFAULT_NIX="$(dirname "${BASH_SOURCE[@]}")/default.nix" 6 + cd "$(dirname "$(readlink -f "$0")")" 9 7 10 - if [[ "$(basename "$PWD")" = "yuzu" ]]; then 11 - echo "error: Script must be ran from nixpkgs's root directory for compatibility with the maintainer script" 12 - exit 1 13 - fi 8 + log() { 9 + tput bold 10 + echo "#" "$@" 11 + tput sgr0 12 + } 14 13 15 - updateBranch() { 16 - local branch attribute oldVersion oldHash newVersion newHash 17 - branch="$1" 18 - attribute="yuzu-$branch" 19 - [[ "$branch" = "early-access" ]] && attribute="yuzu-ea" # Attribute path doesnt match the branch name 20 - oldVersion="$(nix eval --raw -f "./default.nix" "$attribute".version)" 21 - oldHash="$(nix eval --raw -f "./default.nix" "$attribute".src.drvAttrs.outputHash)" 14 + alias curl='curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"}' 22 15 23 - if [[ "$branch" = "mainline" ]]; then 24 - newVersion="$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} "https://api.github.com/repos/yuzu-emu/yuzu-mainline/releases?per_page=1" \ 25 - | jq -r '.[0].name' | cut -d" " -f2)" 26 - elif [[ "$branch" = "early-access" ]]; then 27 - newVersion="$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} "https://api.github.com/repos/pineappleEA/pineapple-src/releases?per_page=2" \ 28 - | jq -r '.[].tag_name' | grep '^EA-[0-9]*' | head -n1 | cut -d"-" -f2 | cut -d" " -f1)" 29 - fi 16 + log "Updating compatibility list..." 17 + compatListRev="$(curl "https://api.github.com/repos/flathub/org.yuzu_emu.yuzu/commits/master" | jq -r '.sha')" 30 18 31 - if [[ "${oldVersion}" = "${newVersion}" ]]; then 32 - echo "$attribute is already up to date." 33 - return 34 - else 35 - echo "$attribute: ${oldVersion} -> ${newVersion}" 36 - fi 19 + log "Downloading rev: ${compatListRev}" 20 + compatListHash="$(nix-prefetch-url "https://raw.githubusercontent.com/flathub/org.yuzu_emu.yuzu/${compatListRev}/compatibility_list.json")" 37 21 38 - echo " fetching source code to generate hash..." 39 - if [[ "$branch" = "mainline" ]]; then 40 - newHash="$(nix-prefetch-git --quiet --fetch-submodules --rev "mainline-0-${newVersion}" "https://github.com/yuzu-emu/yuzu-mainline" | jq -r '.sha256')" 41 - elif [[ "$branch" = "early-access" ]]; then 42 - newHash="$(nix-prefetch-git --quiet --fetch-submodules --rev "EA-${newVersion}" "https://github.com/pineappleEA/pineapple-src" | jq -r '.sha256')" 43 - fi 44 - newHash="$(nix hash to-sri --type sha256 "${newHash}")" 22 + log "Updating mainline..." 23 + mainlineVersion="$(curl "https://api.github.com/repos/yuzu-emu/yuzu-mainline/releases?per_page=1" | jq -r '.[0].name' | cut -d" " -f2)" 45 24 46 - sed -i "s,${oldVersion},${newVersion}," "$DEFAULT_NIX" 47 - sed -i "s,${oldHash},${newHash},g" "$DEFAULT_NIX" 48 - echo " successfully updated $attribute. new hash: $newHash" 49 - } 25 + log "Downloading version: ${mainlineVersion}" 26 + mainlineHash="$(nix-prefetch-git --fetch-submodules --rev "mainline-0-${mainlineVersion}" "https://github.com/yuzu-emu/yuzu-mainline" | jq -r '.sha256')" 50 27 51 - updateCompatibilityList() { 52 - local latestRevision oldUrl newUrl oldHash newHash oldDate newDate 53 - latestRevision="$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} "https://api.github.com/repos/flathub/org.yuzu_emu.yuzu/commits/master" | jq -r '.sha')" 28 + log "Updating early access..." 29 + eaVersion="$(curl "https://api.github.com/repos/pineappleEA/pineapple-src/releases?per_page=1" | jq -r '.[0].tag_name' | cut -d"-" -f2)" 54 30 55 - oldUrl="$(sed -n '/yuzu-compat-list/,/url/p' "$DEFAULT_NIX" | tail -n1 | cut -d'"' -f2)" 56 - newUrl="https://raw.githubusercontent.com/flathub/org.yuzu_emu.yuzu/${latestRevision}/compatibility_list.json" 31 + log "Downloading dist version: ${eaVersion}" 32 + fetched="$(nix-prefetch-url --unpack --print-path "https://github.com/pineappleEA/pineapple-src/releases/download/EA-${eaVersion}/Windows-Yuzu-EA-${eaVersion}.zip")" 57 33 58 - oldDate="$(sed -n '/last updated.*/p' "$DEFAULT_NIX" | rev | cut -d' ' -f1 | rev)" 59 - newDate="$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} "https://api.github.com/repos/flathub/org.yuzu_emu.yuzu/commits/${latestRevision}" \ 60 - | jq -r '.commit.committer.date' | cut -d'T' -f1)" 34 + eaDistHash="$(echo "${fetched}" | head -n1)" 35 + eaDist="$(echo "${fetched}" | tail -n1)" 61 36 62 - oldHash="$(sed -n '/yuzu-compat-list/,/sha256/p' "$DEFAULT_NIX" | tail -n1 | cut -d'"' -f2)" 63 - newHash="$(nix hash to-sri --type sha256 "$(nix-prefetch-url --quiet "$newUrl")")" 37 + eaDistUnpacked="$(mktemp -d)" 38 + trap 'rm -rf "$eaDistUnpacked"' EXIT 64 39 65 - if [[ "$oldHash" = "$newHash" ]]; then 66 - echo "compatibility_list is already up to date." 67 - return 68 - else 69 - echo "compatibility_list: $oldDate -> $newDate" 70 - fi 40 + log "Unpacking dist..." 41 + tar xf "$eaDist"/*.tar.xz --directory="$eaDistUnpacked" --strip-components=1 71 42 72 - sed -i "s,${oldUrl},${newUrl},g" "$DEFAULT_NIX" 73 - sed -i "s,${oldHash},${newHash},g" "$DEFAULT_NIX" 74 - sed -i "s,${oldDate},${newDate},g" "$DEFAULT_NIX" 75 - echo " successfully updated compatibility_list. new hash: $newHash" 76 - } 43 + log "Rehydrating..." 44 + eaFullHash="$(nix-prefetch-git --fetch-submodules "$eaDistUnpacked" | jq -r '.sha256')" 77 45 78 - if [[ "$BRANCH" = "mainline" ]] || [[ "$BRANCH" = "early-access" ]]; then 79 - updateBranch "$BRANCH" 80 - updateCompatibilityList 81 - else # Script is not ran from passthru.updateScript 82 - if (( $# == 0 )); then 83 - updateBranch "mainline" 84 - updateBranch "early-access" 85 - fi 46 + cat >sources.nix <<EOF 47 + # Generated by ./update.sh - do not update manually! 48 + # Last updated: $(date +%F) 49 + { 50 + compatList = { 51 + rev = "$compatListRev"; 52 + hash = "sha256:$compatListHash"; 53 + }; 86 54 87 - while (( "$#" > 0 )); do 88 - case "$1" in 89 - mainline|yuzu-mainline) 90 - updateBranch "mainline" 91 - ;; 92 - early-access|yuzu-early-access|ea|yuzu-ea) 93 - updateBranch "early-access" 94 - ;; 95 - *) 96 - echo "error: invalid branch: $1." 97 - echo "usage: $(basename "$0") [mainline|early-access]" 98 - exit 1 99 - ;; 100 - esac 101 - shift 102 - done 55 + mainline = { 56 + version = "$mainlineVersion"; 57 + hash = "sha256:$mainlineHash"; 58 + }; 103 59 104 - updateCompatibilityList 105 - fi 60 + ea = { 61 + version = "$eaVersion"; 62 + distHash = "sha256:$eaDistHash"; 63 + fullHash = "sha256:$eaFullHash"; 64 + }; 65 + } 66 + EOF
+3 -3
pkgs/applications/misc/authy/default.nix
··· 10 10 stdenv.mkDerivation rec { 11 11 pname = "authy"; 12 12 # curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/authy?channel=stable' | jq '.download_url,.version' 13 - version = "2.2.2"; 14 - rev = "12"; 13 + version = "2.3.0"; 14 + rev = "19"; 15 15 16 16 src = fetchurl { 17 17 url = "https://api.snapcraft.io/api/v1/snaps/download/H8ZpNgIoPyvmkgxOWw5MSzsXK1wRZiHn_${rev}.snap"; 18 - sha256 = "sha256-vSbqT2s5lLEU1SSDaC+sS6qt446iSKYUgKudO5WMOu4="; 18 + hash = "sha256-WN/vcY3kfF/HQZ7opyIdDevU5oDYDGjshS7XVU7yrj8="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ autoPatchelfHook makeWrapper squashfsTools ];
+79
pkgs/applications/misc/health/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + , fetchpatch 5 + , meson 6 + , ninja 7 + , pkg-config 8 + , rustPlatform 9 + , rustc 10 + , cargo 11 + , wrapGAppsHook4 12 + , blueprint-compiler 13 + , libadwaita 14 + , libsecret 15 + , tracker 16 + , darwin 17 + }: 18 + 19 + stdenv.mkDerivation rec { 20 + pname = "health"; 21 + version = "0.94.0"; 22 + 23 + src = fetchFromGitLab { 24 + domain = "gitlab.gnome.org"; 25 + owner = "World"; 26 + repo = pname; 27 + rev = version; 28 + hash = "sha256-KS0sdCQg2LqQB0K1cUbAjA8VITn5rAb8XCWjOKYbPqM="; 29 + }; 30 + 31 + cargoDeps = rustPlatform.fetchCargoTarball { 32 + inherit src; 33 + patches = [ ./update_gtk4_cargo_deps.patch ]; 34 + name = "${pname}-${version}"; 35 + hash = "sha256-j0I0vKoGaf2pce2C/xkz+nJYCfLvHB5F6Q9XpJtABMI="; 36 + }; 37 + 38 + patches = [ 39 + (fetchpatch { 40 + url = "https://aur.archlinux.org/cgit/aur.git/plain/max_size_tightending_thresh_0.94.0.patch?h=health&id=d35d89760964b00ad457eca07855143a1dcbabdf"; 41 + hash = "sha256-ndoxyrm+SVGVxfUbc5sQItQwzK75ZtKMSGUOB9mzBmo="; 42 + }) 43 + (fetchpatch { 44 + url = "https://aur.archlinux.org/cgit/aur.git/plain/max_value_0.94.0.patch?h=health&id=d35d89760964b00ad457eca07855143a1dcbabdf"; 45 + hash = "sha256-YKVQNtz+RWN6Ydw+kbStCVf0vu0eTrMKGd6kEijFG00="; 46 + }) 47 + # patch both or it will complain Cargo.lock mismatch 48 + ./update_gtk4_cargo_deps.patch 49 + ]; 50 + 51 + nativeBuildInputs = [ 52 + meson 53 + ninja 54 + pkg-config 55 + rustPlatform.cargoSetupHook 56 + rustc 57 + cargo 58 + wrapGAppsHook4 59 + blueprint-compiler 60 + ]; 61 + 62 + buildInputs = [ 63 + libadwaita 64 + libsecret 65 + tracker 66 + ] ++ lib.optionals stdenv.isDarwin [ 67 + darwin.apple_sdk.frameworks.Security 68 + darwin.apple_sdk.frameworks.Foundation 69 + ]; 70 + 71 + meta = with lib; { 72 + description = "A health tracking app for the GNOME desktop"; 73 + homepage = "https://apps.gnome.org/app/dev.Cogitri.Health"; 74 + license = licenses.gpl3Plus; 75 + mainProgram = "dev.Cogitri.Health"; 76 + maintainers = with maintainers; [ aleksana ]; 77 + platforms = platforms.unix; 78 + }; 79 + }
+28
pkgs/applications/misc/health/update_gtk4_cargo_deps.patch
··· 1 + diff --git a/Cargo.lock b/Cargo.lock 2 + index 0331121..8d290e4 100644 3 + --- a/Cargo.lock 4 + +++ b/Cargo.lock 5 + @@ -829,9 +829,9 @@ checksum = "da5bf7748fd4cd0b2490df8debcc911809dbcbee4ece9531b96c29a9c729de5a" 6 + 7 + [[package]] 8 + name = "gtk4" 9 + -version = "0.4.8" 10 + +version = "0.4.9" 11 + source = "registry+https://github.com/rust-lang/crates.io-index" 12 + -checksum = "c64f0c2a3d80e899dc3febddad5bac193ffcf74a0fd7e31037f30dd34d6f7396" 13 + +checksum = "4e8ae5aef2793bc3551b5e5e3fa062a5de54bb1eccf10dfa4effe9e4384fbbbc" 14 + dependencies = [ 15 + "bitflags", 16 + "cairo-rs", 17 + @@ -852,9 +852,9 @@ dependencies = [ 18 + 19 + [[package]] 20 + name = "gtk4-macros" 21 + -version = "0.4.8" 22 + +version = "0.4.10" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + -checksum = "fafbcc920af4eb677d7d164853e7040b9de5a22379c596f570190c675d45f7a7" 25 + +checksum = "6aba0b544e91a753068e279e99d34e9624b8cfd26282167024c8a5773b8a826c" 26 + dependencies = [ 27 + "anyhow", 28 + "proc-macro-crate",
+19 -28
pkgs/applications/misc/inlyne/default.nix
··· 1 1 { lib 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 + , installShellFiles 4 5 , stdenv 5 6 , pkg-config 6 7 , fontconfig 7 8 , xorg 8 9 , libGL 9 10 , openssl 10 - , AppKit 11 - , ApplicationServices 12 - , CoreFoundation 13 - , CoreGraphics 14 - , CoreServices 15 - , CoreText 16 - , CoreVideo 17 - , Foundation 18 - , Metal 19 - , QuartzCore 20 - , Security 21 - , libobjc 11 + , darwin 22 12 }: 23 13 24 14 rustPlatform.buildRustPackage rec { 25 15 pname = "inlyne"; 26 - version = "0.2.1"; 16 + version = "0.3.1"; 27 17 28 18 src = fetchFromGitHub { 29 19 owner = "trimental"; 30 20 repo = pname; 31 21 rev = "v${version}"; 32 - sha256 = "sha256-jFocERr2cW7zdLiYfAay5Dh1issKAHp6vRWYWR1Axcg="; 22 + hash = "sha256-B+H3G4jVysqrzWIP+1hktSGnycZLizxhmBCO/lYIr0I="; 33 23 }; 34 24 35 - cargoSha256 = "sha256-mH8tu8koprmHo6JJ9AwYMexy2SFR2yukZmFT060cuZ4="; 25 + cargoHash = "sha256-LFL2DVKu/UM7effikZN/IhSD6DrlwO+CF+S60PXULa0="; 36 26 37 - nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; 27 + nativeBuildInputs = [ 28 + installShellFiles 29 + ] ++ lib.optionals stdenv.isLinux [ 30 + pkg-config 31 + ]; 38 32 39 33 buildInputs = lib.optionals stdenv.isLinux [ 40 34 fontconfig ··· 44 38 xorg.libxcb 45 39 openssl 46 40 ] ++ lib.optionals stdenv.isDarwin [ 47 - AppKit 48 - ApplicationServices 49 - CoreFoundation 50 - CoreGraphics 51 - CoreServices 52 - CoreText 53 - CoreVideo 54 - Foundation 55 - Metal 56 - QuartzCore 57 - Security 58 - libobjc 41 + darwin.apple_sdk_11_0.frameworks.AppKit 59 42 ]; 43 + 44 + postInstall = '' 45 + installShellCompletion --cmd inlyne \ 46 + --bash <($out/bin/inlyne --gen-completions bash) \ 47 + --fish <($out/bin/inlyne --gen-completions fish) \ 48 + --zsh <($out/bin/inlyne --gen-completions zsh) 49 + ''; 60 50 61 51 postFixup = lib.optionalString stdenv.isLinux '' 62 52 patchelf $out/bin/inlyne \ ··· 66 56 meta = with lib; { 67 57 description = "A GPU powered browserless markdown viewer"; 68 58 homepage = "https://github.com/trimental/inlyne"; 59 + changelog = "https://github.com/trimental/inlyne/releases/tag/${src.rev}"; 69 60 license = licenses.mit; 70 61 maintainers = with maintainers; [ figsoda ]; 71 62 };
+2 -2
pkgs/applications/misc/osmscout-server/default.nix
··· 14 14 in 15 15 mkDerivation rec { 16 16 pname = "osmscout-server"; 17 - version = "2.2.2"; 17 + version = "3.0.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "rinigus"; 21 21 repo = "osmscout-server"; 22 22 rev = version; 23 - sha256 = "sha256-ngB3c6rUQ/+AeaJHKAFRl9lCkUobLWSnsn030brB+Bw="; 23 + hash = "sha256-jcg/0SKeLviEC+vszh5DployKDAI7N+a8lzvImzFTvY="; 24 24 fetchSubmodules = true; 25 25 }; 26 26
+27
pkgs/applications/misc/osmtogeojson/default.nix
··· 1 + { lib, buildNpmPackage, fetchFromGitHub }: 2 + 3 + buildNpmPackage rec { 4 + pname = "osmtogeojson"; 5 + version = "3.0.0-beta.5"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "tyrasd"; 9 + repo = pname; 10 + rev = version; 11 + hash = "sha256-T6d/KQQGoXHgV0iNhOms8d9zfjYMfnBNwPLShrEkHG4="; 12 + }; 13 + 14 + postPatch = '' 15 + cp ${./package-lock.json} ./package-lock.json 16 + ''; 17 + 18 + npmDepsHash = "sha256-stAVuyjuRQthQ3jQdekmZYjeau9l0GzEEMkV1q5fT2k="; 19 + dontNpmBuild = true; 20 + 21 + meta = with lib; { 22 + description = "Converts OSM data to GeoJSON"; 23 + homepage = "https://tyrasd.github.io/osmtogeojson/"; 24 + maintainers = with maintainers; [ thibautmarty ]; 25 + license = licenses.mit; 26 + }; 27 + }
+2967
pkgs/applications/misc/osmtogeojson/package-lock.json
··· 1 + { 2 + "name": "osmtogeojson", 3 + "version": "3.0.0-beta.5", 4 + "lockfileVersion": 3, 5 + "requires": true, 6 + "packages": { 7 + "": { 8 + "name": "osmtogeojson", 9 + "version": "3.0.0-beta.5", 10 + "license": "MIT", 11 + "dependencies": { 12 + "@mapbox/geojson-rewind": "0.5.2", 13 + "@xmldom/xmldom": "0.8.3", 14 + "concat-stream": "2.0.0", 15 + "geojson-numeric": "0.2.1", 16 + "htmlparser2": "3.5.1", 17 + "JSONStream": "0.8.0", 18 + "optimist": "~0.3.5", 19 + "osm-polygon-features": "^0.9.1", 20 + "tiny-osmpbf": "^0.1.0" 21 + }, 22 + "bin": { 23 + "osmtogeojson": "osmtogeojson" 24 + }, 25 + "devDependencies": { 26 + "expect.js": "~0.2.0", 27 + "faucet": "~0.0.1", 28 + "istanbul": "^0.4.5", 29 + "mocha": "~10.1.0", 30 + "tape": "~5.6.1" 31 + }, 32 + "engines": { 33 + "node": ">=0.5" 34 + }, 35 + "optionalDependencies": { 36 + "@types/geojson": "^7946.0" 37 + } 38 + }, 39 + "node_modules/@mapbox/geojson-rewind": { 40 + "version": "0.5.2", 41 + "resolved": "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", 42 + "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", 43 + "dependencies": { 44 + "get-stream": "^6.0.1", 45 + "minimist": "^1.2.6" 46 + }, 47 + "bin": { 48 + "geojson-rewind": "geojson-rewind" 49 + } 50 + }, 51 + "node_modules/@types/geojson": { 52 + "version": "7946.0.10", 53 + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz", 54 + "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==", 55 + "optional": true 56 + }, 57 + "node_modules/@xmldom/xmldom": { 58 + "version": "0.8.3", 59 + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.3.tgz", 60 + "integrity": "sha512-Lv2vySXypg4nfa51LY1nU8yDAGo/5YwF+EY/rUZgIbfvwVARcd67ttCM8SMsTeJy51YhHYavEq+FS6R0hW9PFQ==", 61 + "engines": { 62 + "node": ">=10.0.0" 63 + } 64 + }, 65 + "node_modules/abbrev": { 66 + "version": "1.0.9", 67 + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz", 68 + "integrity": "sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==", 69 + "dev": true 70 + }, 71 + "node_modules/amdefine": { 72 + "version": "1.0.1", 73 + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", 74 + "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==", 75 + "dev": true, 76 + "optional": true, 77 + "engines": { 78 + "node": ">=0.4.2" 79 + } 80 + }, 81 + "node_modules/ansi-colors": { 82 + "version": "4.1.1", 83 + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", 84 + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", 85 + "dev": true, 86 + "engines": { 87 + "node": ">=6" 88 + } 89 + }, 90 + "node_modules/ansi-regex": { 91 + "version": "5.0.1", 92 + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 93 + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 94 + "dev": true, 95 + "engines": { 96 + "node": ">=8" 97 + } 98 + }, 99 + "node_modules/ansi-styles": { 100 + "version": "4.3.0", 101 + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 102 + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 103 + "dev": true, 104 + "dependencies": { 105 + "color-convert": "^2.0.1" 106 + }, 107 + "engines": { 108 + "node": ">=8" 109 + }, 110 + "funding": { 111 + "url": "https://github.com/chalk/ansi-styles?sponsor=1" 112 + } 113 + }, 114 + "node_modules/anymatch": { 115 + "version": "3.1.3", 116 + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 117 + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 118 + "dev": true, 119 + "dependencies": { 120 + "normalize-path": "^3.0.0", 121 + "picomatch": "^2.0.4" 122 + }, 123 + "engines": { 124 + "node": ">= 8" 125 + } 126 + }, 127 + "node_modules/argparse": { 128 + "version": "1.0.10", 129 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 130 + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 131 + "dev": true, 132 + "dependencies": { 133 + "sprintf-js": "~1.0.2" 134 + } 135 + }, 136 + "node_modules/argparse/node_modules/sprintf-js": { 137 + "version": "1.0.3", 138 + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 139 + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 140 + "dev": true 141 + }, 142 + "node_modules/array-buffer-byte-length": { 143 + "version": "1.0.0", 144 + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 145 + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 146 + "dev": true, 147 + "dependencies": { 148 + "call-bind": "^1.0.2", 149 + "is-array-buffer": "^3.0.1" 150 + }, 151 + "funding": { 152 + "url": "https://github.com/sponsors/ljharb" 153 + } 154 + }, 155 + "node_modules/array.prototype.every": { 156 + "version": "1.1.4", 157 + "resolved": "https://registry.npmjs.org/array.prototype.every/-/array.prototype.every-1.1.4.tgz", 158 + "integrity": "sha512-Aui35iRZk1HHLRAyF7QP0KAnOnduaQ6fo6k1NVWfRc0xTs2AZ70ytlXvOmkC6Di4JmUs2Wv3DYzGtCQFSk5uGg==", 159 + "dev": true, 160 + "dependencies": { 161 + "call-bind": "^1.0.2", 162 + "define-properties": "^1.1.4", 163 + "es-abstract": "^1.20.4", 164 + "is-string": "^1.0.7" 165 + }, 166 + "engines": { 167 + "node": ">= 0.4" 168 + }, 169 + "funding": { 170 + "url": "https://github.com/sponsors/ljharb" 171 + } 172 + }, 173 + "node_modules/array.prototype.foreach": { 174 + "version": "1.0.4", 175 + "resolved": "https://registry.npmjs.org/array.prototype.foreach/-/array.prototype.foreach-1.0.4.tgz", 176 + "integrity": "sha512-OYqqGR/56CopyheXNwdlJvFtbSvf2Z9RGvL20X6GvAuKePJ76L/D46BqZn3bITd36QA2Ti7Iy0UwVJaD/YwXZA==", 177 + "dev": true, 178 + "dependencies": { 179 + "call-bind": "^1.0.2", 180 + "define-properties": "^1.1.4", 181 + "es-abstract": "^1.20.4", 182 + "es-array-method-boxes-properly": "^1.0.0", 183 + "get-intrinsic": "^1.1.3", 184 + "is-string": "^1.0.7" 185 + }, 186 + "engines": { 187 + "node": ">= 0.4" 188 + }, 189 + "funding": { 190 + "url": "https://github.com/sponsors/ljharb" 191 + } 192 + }, 193 + "node_modules/array.prototype.join": { 194 + "version": "1.0.1", 195 + "resolved": "https://registry.npmjs.org/array.prototype.join/-/array.prototype.join-1.0.1.tgz", 196 + "integrity": "sha512-wZy9B8ee6JWSiSStaXac/L5BvoaNDo29l/PaEeIrnpW6PzLGOPBsOzNb4xMTua/q/bLBDttN7n6zc2TSp6058g==", 197 + "dev": true, 198 + "dependencies": { 199 + "call-bind": "^1.0.2", 200 + "define-properties": "^1.1.4", 201 + "es-abstract": "^1.20.4", 202 + "is-string": "^1.0.7" 203 + }, 204 + "engines": { 205 + "node": ">= 0.4" 206 + }, 207 + "funding": { 208 + "url": "https://github.com/sponsors/ljharb" 209 + } 210 + }, 211 + "node_modules/array.prototype.map": { 212 + "version": "1.0.5", 213 + "resolved": "https://registry.npmjs.org/array.prototype.map/-/array.prototype.map-1.0.5.tgz", 214 + "integrity": "sha512-gfaKntvwqYIuC7mLLyv2wzZIJqrRhn5PZ9EfFejSx6a78sV7iDsGpG9P+3oUPtm1Rerqm6nrKS4FYuTIvWfo3g==", 215 + "dev": true, 216 + "dependencies": { 217 + "call-bind": "^1.0.2", 218 + "define-properties": "^1.1.4", 219 + "es-abstract": "^1.20.4", 220 + "es-array-method-boxes-properly": "^1.0.0", 221 + "is-string": "^1.0.7" 222 + }, 223 + "engines": { 224 + "node": ">= 0.4" 225 + }, 226 + "funding": { 227 + "url": "https://github.com/sponsors/ljharb" 228 + } 229 + }, 230 + "node_modules/array.prototype.push": { 231 + "version": "1.0.3", 232 + "resolved": "https://registry.npmjs.org/array.prototype.push/-/array.prototype.push-1.0.3.tgz", 233 + "integrity": "sha512-oFJY5zqd2Izh0mEyuAQYduuzjydpaSG3t9L2oepBZUjPlRr/sNd6jqKBt5xtR0ZEKsZkhCeBQecUK16uxfuRYA==", 234 + "dev": true, 235 + "dependencies": { 236 + "call-bind": "^1.0.2", 237 + "define-properties": "^1.1.4", 238 + "es-abstract": "^1.20.4", 239 + "get-intrinsic": "^1.1.3", 240 + "has-property-descriptors": "^1.0.0", 241 + "is-string": "^1.0.7" 242 + }, 243 + "engines": { 244 + "node": ">= 0.4" 245 + }, 246 + "funding": { 247 + "url": "https://github.com/sponsors/ljharb" 248 + } 249 + }, 250 + "node_modules/array.prototype.slice": { 251 + "version": "1.0.1", 252 + "resolved": "https://registry.npmjs.org/array.prototype.slice/-/array.prototype.slice-1.0.1.tgz", 253 + "integrity": "sha512-3LqX5RpWG4uLrHQrc7pQmQIhbqdHI77/CSSzSzRP7zC/mUqujux5yGVTvhSli2B9+8Fux5DZKt90+f84Kl4HVw==", 254 + "dev": true, 255 + "dependencies": { 256 + "call-bind": "^1.0.2", 257 + "define-properties": "^1.1.4", 258 + "es-abstract": "^1.20.4", 259 + "get-intrinsic": "^1.1.3", 260 + "is-string": "^1.0.7" 261 + }, 262 + "engines": { 263 + "node": ">= 0.4" 264 + }, 265 + "funding": { 266 + "url": "https://github.com/sponsors/ljharb" 267 + } 268 + }, 269 + "node_modules/async": { 270 + "version": "1.5.2", 271 + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", 272 + "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==", 273 + "dev": true 274 + }, 275 + "node_modules/available-typed-arrays": { 276 + "version": "1.0.5", 277 + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 278 + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 279 + "dev": true, 280 + "engines": { 281 + "node": ">= 0.4" 282 + }, 283 + "funding": { 284 + "url": "https://github.com/sponsors/ljharb" 285 + } 286 + }, 287 + "node_modules/balanced-match": { 288 + "version": "1.0.2", 289 + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 290 + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 291 + "dev": true 292 + }, 293 + "node_modules/binary-extensions": { 294 + "version": "2.2.0", 295 + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 296 + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 297 + "dev": true, 298 + "engines": { 299 + "node": ">=8" 300 + } 301 + }, 302 + "node_modules/brace-expansion": { 303 + "version": "1.1.11", 304 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 305 + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 306 + "dev": true, 307 + "dependencies": { 308 + "balanced-match": "^1.0.0", 309 + "concat-map": "0.0.1" 310 + } 311 + }, 312 + "node_modules/braces": { 313 + "version": "3.0.2", 314 + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 315 + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 316 + "dev": true, 317 + "dependencies": { 318 + "fill-range": "^7.0.1" 319 + }, 320 + "engines": { 321 + "node": ">=8" 322 + } 323 + }, 324 + "node_modules/browser-stdout": { 325 + "version": "1.3.1", 326 + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", 327 + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", 328 + "dev": true 329 + }, 330 + "node_modules/buffer-from": { 331 + "version": "1.1.2", 332 + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 333 + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" 334 + }, 335 + "node_modules/call-bind": { 336 + "version": "1.0.2", 337 + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 338 + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 339 + "dev": true, 340 + "dependencies": { 341 + "function-bind": "^1.1.1", 342 + "get-intrinsic": "^1.0.2" 343 + }, 344 + "funding": { 345 + "url": "https://github.com/sponsors/ljharb" 346 + } 347 + }, 348 + "node_modules/camelcase": { 349 + "version": "6.3.0", 350 + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 351 + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 352 + "dev": true, 353 + "engines": { 354 + "node": ">=10" 355 + }, 356 + "funding": { 357 + "url": "https://github.com/sponsors/sindresorhus" 358 + } 359 + }, 360 + "node_modules/chalk": { 361 + "version": "4.1.2", 362 + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 363 + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 364 + "dev": true, 365 + "dependencies": { 366 + "ansi-styles": "^4.1.0", 367 + "supports-color": "^7.1.0" 368 + }, 369 + "engines": { 370 + "node": ">=10" 371 + }, 372 + "funding": { 373 + "url": "https://github.com/chalk/chalk?sponsor=1" 374 + } 375 + }, 376 + "node_modules/chalk/node_modules/has-flag": { 377 + "version": "4.0.0", 378 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 379 + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 380 + "dev": true, 381 + "engines": { 382 + "node": ">=8" 383 + } 384 + }, 385 + "node_modules/chalk/node_modules/supports-color": { 386 + "version": "7.2.0", 387 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 388 + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 389 + "dev": true, 390 + "dependencies": { 391 + "has-flag": "^4.0.0" 392 + }, 393 + "engines": { 394 + "node": ">=8" 395 + } 396 + }, 397 + "node_modules/chokidar": { 398 + "version": "3.5.3", 399 + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 400 + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 401 + "dev": true, 402 + "funding": [ 403 + { 404 + "type": "individual", 405 + "url": "https://paulmillr.com/funding/" 406 + } 407 + ], 408 + "dependencies": { 409 + "anymatch": "~3.1.2", 410 + "braces": "~3.0.2", 411 + "glob-parent": "~5.1.2", 412 + "is-binary-path": "~2.1.0", 413 + "is-glob": "~4.0.1", 414 + "normalize-path": "~3.0.0", 415 + "readdirp": "~3.6.0" 416 + }, 417 + "engines": { 418 + "node": ">= 8.10.0" 419 + }, 420 + "optionalDependencies": { 421 + "fsevents": "~2.3.2" 422 + } 423 + }, 424 + "node_modules/cliui": { 425 + "version": "7.0.4", 426 + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", 427 + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", 428 + "dev": true, 429 + "dependencies": { 430 + "string-width": "^4.2.0", 431 + "strip-ansi": "^6.0.0", 432 + "wrap-ansi": "^7.0.0" 433 + } 434 + }, 435 + "node_modules/color-convert": { 436 + "version": "2.0.1", 437 + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 438 + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 439 + "dev": true, 440 + "dependencies": { 441 + "color-name": "~1.1.4" 442 + }, 443 + "engines": { 444 + "node": ">=7.0.0" 445 + } 446 + }, 447 + "node_modules/color-name": { 448 + "version": "1.1.4", 449 + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 450 + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 451 + "dev": true 452 + }, 453 + "node_modules/commander": { 454 + "version": "2.20.3", 455 + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 456 + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 457 + "dev": true 458 + }, 459 + "node_modules/concat-map": { 460 + "version": "0.0.1", 461 + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 462 + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 463 + "dev": true 464 + }, 465 + "node_modules/concat-stream": { 466 + "version": "2.0.0", 467 + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", 468 + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", 469 + "engines": [ 470 + "node >= 6.0" 471 + ], 472 + "dependencies": { 473 + "buffer-from": "^1.0.0", 474 + "inherits": "^2.0.3", 475 + "readable-stream": "^3.0.2", 476 + "typedarray": "^0.0.6" 477 + } 478 + }, 479 + "node_modules/core-util-is": { 480 + "version": "1.0.3", 481 + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 482 + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" 483 + }, 484 + "node_modules/debug": { 485 + "version": "4.3.4", 486 + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 487 + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 488 + "dev": true, 489 + "dependencies": { 490 + "ms": "2.1.2" 491 + }, 492 + "engines": { 493 + "node": ">=6.0" 494 + }, 495 + "peerDependenciesMeta": { 496 + "supports-color": { 497 + "optional": true 498 + } 499 + } 500 + }, 501 + "node_modules/debug/node_modules/ms": { 502 + "version": "2.1.2", 503 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 504 + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 505 + "dev": true 506 + }, 507 + "node_modules/decamelize": { 508 + "version": "4.0.0", 509 + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", 510 + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", 511 + "dev": true, 512 + "engines": { 513 + "node": ">=10" 514 + }, 515 + "funding": { 516 + "url": "https://github.com/sponsors/sindresorhus" 517 + } 518 + }, 519 + "node_modules/deep-equal": { 520 + "version": "2.2.0", 521 + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", 522 + "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", 523 + "dev": true, 524 + "dependencies": { 525 + "call-bind": "^1.0.2", 526 + "es-get-iterator": "^1.1.2", 527 + "get-intrinsic": "^1.1.3", 528 + "is-arguments": "^1.1.1", 529 + "is-array-buffer": "^3.0.1", 530 + "is-date-object": "^1.0.5", 531 + "is-regex": "^1.1.4", 532 + "is-shared-array-buffer": "^1.0.2", 533 + "isarray": "^2.0.5", 534 + "object-is": "^1.1.5", 535 + "object-keys": "^1.1.1", 536 + "object.assign": "^4.1.4", 537 + "regexp.prototype.flags": "^1.4.3", 538 + "side-channel": "^1.0.4", 539 + "which-boxed-primitive": "^1.0.2", 540 + "which-collection": "^1.0.1", 541 + "which-typed-array": "^1.1.9" 542 + }, 543 + "funding": { 544 + "url": "https://github.com/sponsors/ljharb" 545 + } 546 + }, 547 + "node_modules/deep-is": { 548 + "version": "0.1.4", 549 + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 550 + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 551 + "dev": true 552 + }, 553 + "node_modules/define-properties": { 554 + "version": "1.2.0", 555 + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 556 + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 557 + "dev": true, 558 + "dependencies": { 559 + "has-property-descriptors": "^1.0.0", 560 + "object-keys": "^1.1.1" 561 + }, 562 + "engines": { 563 + "node": ">= 0.4" 564 + }, 565 + "funding": { 566 + "url": "https://github.com/sponsors/ljharb" 567 + } 568 + }, 569 + "node_modules/defined": { 570 + "version": "1.0.1", 571 + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", 572 + "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", 573 + "dev": true, 574 + "funding": { 575 + "url": "https://github.com/sponsors/ljharb" 576 + } 577 + }, 578 + "node_modules/diff": { 579 + "version": "5.0.0", 580 + "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", 581 + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", 582 + "dev": true, 583 + "engines": { 584 + "node": ">=0.3.1" 585 + } 586 + }, 587 + "node_modules/domelementtype": { 588 + "version": "1.3.1", 589 + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", 590 + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" 591 + }, 592 + "node_modules/domhandler": { 593 + "version": "2.2.1", 594 + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.2.1.tgz", 595 + "integrity": "sha512-MFFBQFGkyTuNe3vL9WEw9JdlCwIoBYpOGESLeZAvc/jClYNsOl6P1KzevJbWg76GovdEycfR7/2/Ra7NnqtMKw==", 596 + "dependencies": { 597 + "domelementtype": "1" 598 + } 599 + }, 600 + "node_modules/domutils": { 601 + "version": "1.3.0", 602 + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.3.0.tgz", 603 + "integrity": "sha512-1UdPmldjSGewOuWE40YYFZB1Q4im4LZoCMXGYeTeLz3R9hvxrDYJPRcPHXR4yBbubQebgGNCY2hwpJxmAiUMzQ==", 604 + "dependencies": { 605 + "domelementtype": "1" 606 + } 607 + }, 608 + "node_modules/dotignore": { 609 + "version": "0.1.2", 610 + "resolved": "https://registry.npmjs.org/dotignore/-/dotignore-0.1.2.tgz", 611 + "integrity": "sha512-UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw==", 612 + "dev": true, 613 + "dependencies": { 614 + "minimatch": "^3.0.4" 615 + }, 616 + "bin": { 617 + "ignored": "bin/ignored" 618 + } 619 + }, 620 + "node_modules/duplexer": { 621 + "version": "0.1.2", 622 + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", 623 + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", 624 + "dev": true 625 + }, 626 + "node_modules/emoji-regex": { 627 + "version": "8.0.0", 628 + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 629 + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 630 + "dev": true 631 + }, 632 + "node_modules/es-abstract": { 633 + "version": "1.21.2", 634 + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", 635 + "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", 636 + "dev": true, 637 + "dependencies": { 638 + "array-buffer-byte-length": "^1.0.0", 639 + "available-typed-arrays": "^1.0.5", 640 + "call-bind": "^1.0.2", 641 + "es-set-tostringtag": "^2.0.1", 642 + "es-to-primitive": "^1.2.1", 643 + "function.prototype.name": "^1.1.5", 644 + "get-intrinsic": "^1.2.0", 645 + "get-symbol-description": "^1.0.0", 646 + "globalthis": "^1.0.3", 647 + "gopd": "^1.0.1", 648 + "has": "^1.0.3", 649 + "has-property-descriptors": "^1.0.0", 650 + "has-proto": "^1.0.1", 651 + "has-symbols": "^1.0.3", 652 + "internal-slot": "^1.0.5", 653 + "is-array-buffer": "^3.0.2", 654 + "is-callable": "^1.2.7", 655 + "is-negative-zero": "^2.0.2", 656 + "is-regex": "^1.1.4", 657 + "is-shared-array-buffer": "^1.0.2", 658 + "is-string": "^1.0.7", 659 + "is-typed-array": "^1.1.10", 660 + "is-weakref": "^1.0.2", 661 + "object-inspect": "^1.12.3", 662 + "object-keys": "^1.1.1", 663 + "object.assign": "^4.1.4", 664 + "regexp.prototype.flags": "^1.4.3", 665 + "safe-regex-test": "^1.0.0", 666 + "string.prototype.trim": "^1.2.7", 667 + "string.prototype.trimend": "^1.0.6", 668 + "string.prototype.trimstart": "^1.0.6", 669 + "typed-array-length": "^1.0.4", 670 + "unbox-primitive": "^1.0.2", 671 + "which-typed-array": "^1.1.9" 672 + }, 673 + "engines": { 674 + "node": ">= 0.4" 675 + }, 676 + "funding": { 677 + "url": "https://github.com/sponsors/ljharb" 678 + } 679 + }, 680 + "node_modules/es-array-method-boxes-properly": { 681 + "version": "1.0.0", 682 + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", 683 + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", 684 + "dev": true 685 + }, 686 + "node_modules/es-get-iterator": { 687 + "version": "1.1.3", 688 + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", 689 + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", 690 + "dev": true, 691 + "dependencies": { 692 + "call-bind": "^1.0.2", 693 + "get-intrinsic": "^1.1.3", 694 + "has-symbols": "^1.0.3", 695 + "is-arguments": "^1.1.1", 696 + "is-map": "^2.0.2", 697 + "is-set": "^2.0.2", 698 + "is-string": "^1.0.7", 699 + "isarray": "^2.0.5", 700 + "stop-iteration-iterator": "^1.0.0" 701 + }, 702 + "funding": { 703 + "url": "https://github.com/sponsors/ljharb" 704 + } 705 + }, 706 + "node_modules/es-set-tostringtag": { 707 + "version": "2.0.1", 708 + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 709 + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 710 + "dev": true, 711 + "dependencies": { 712 + "get-intrinsic": "^1.1.3", 713 + "has": "^1.0.3", 714 + "has-tostringtag": "^1.0.0" 715 + }, 716 + "engines": { 717 + "node": ">= 0.4" 718 + } 719 + }, 720 + "node_modules/es-to-primitive": { 721 + "version": "1.2.1", 722 + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 723 + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 724 + "dev": true, 725 + "dependencies": { 726 + "is-callable": "^1.1.4", 727 + "is-date-object": "^1.0.1", 728 + "is-symbol": "^1.0.2" 729 + }, 730 + "engines": { 731 + "node": ">= 0.4" 732 + }, 733 + "funding": { 734 + "url": "https://github.com/sponsors/ljharb" 735 + } 736 + }, 737 + "node_modules/escalade": { 738 + "version": "3.1.1", 739 + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 740 + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 741 + "dev": true, 742 + "engines": { 743 + "node": ">=6" 744 + } 745 + }, 746 + "node_modules/escape-string-regexp": { 747 + "version": "4.0.0", 748 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 749 + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 750 + "dev": true, 751 + "engines": { 752 + "node": ">=10" 753 + }, 754 + "funding": { 755 + "url": "https://github.com/sponsors/sindresorhus" 756 + } 757 + }, 758 + "node_modules/escodegen": { 759 + "version": "1.8.1", 760 + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", 761 + "integrity": "sha512-yhi5S+mNTOuRvyW4gWlg5W1byMaQGWWSYHXsuFZ7GBo7tpyOwi2EdzMP/QWxh9hwkD2m+wDVHJsxhRIj+v/b/A==", 762 + "dev": true, 763 + "dependencies": { 764 + "esprima": "^2.7.1", 765 + "estraverse": "^1.9.1", 766 + "esutils": "^2.0.2", 767 + "optionator": "^0.8.1" 768 + }, 769 + "bin": { 770 + "escodegen": "bin/escodegen.js", 771 + "esgenerate": "bin/esgenerate.js" 772 + }, 773 + "engines": { 774 + "node": ">=0.12.0" 775 + }, 776 + "optionalDependencies": { 777 + "source-map": "~0.2.0" 778 + } 779 + }, 780 + "node_modules/esprima": { 781 + "version": "2.7.3", 782 + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", 783 + "integrity": "sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==", 784 + "dev": true, 785 + "bin": { 786 + "esparse": "bin/esparse.js", 787 + "esvalidate": "bin/esvalidate.js" 788 + }, 789 + "engines": { 790 + "node": ">=0.10.0" 791 + } 792 + }, 793 + "node_modules/estraverse": { 794 + "version": "1.9.3", 795 + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", 796 + "integrity": "sha512-25w1fMXQrGdoquWnScXZGckOv+Wes+JDnuN/+7ex3SauFRS72r2lFDec0EKPt2YD1wUJ/IrfEex+9yp4hfSOJA==", 797 + "dev": true, 798 + "engines": { 799 + "node": ">=0.10.0" 800 + } 801 + }, 802 + "node_modules/esutils": { 803 + "version": "2.0.3", 804 + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 805 + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 806 + "dev": true, 807 + "engines": { 808 + "node": ">=0.10.0" 809 + } 810 + }, 811 + "node_modules/expect.js": { 812 + "version": "0.2.0", 813 + "resolved": "https://registry.npmjs.org/expect.js/-/expect.js-0.2.0.tgz", 814 + "integrity": "sha512-Si9lyFUkFCY9nTSKocf/Im/knEJNHUgbEWCNpRqiM5J2w+0YPxalJo0aomfh4WxlQiZ6kG97cZlN2UhAVxPAsA==", 815 + "dev": true 816 + }, 817 + "node_modules/fast-levenshtein": { 818 + "version": "2.0.6", 819 + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 820 + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 821 + "dev": true 822 + }, 823 + "node_modules/faucet": { 824 + "version": "0.0.4", 825 + "resolved": "https://registry.npmjs.org/faucet/-/faucet-0.0.4.tgz", 826 + "integrity": "sha512-vSUB+9iT2n77DPv2x3zYEt3rEIGIhVZJmNTfrx3Y0XVXlBiNOPq2jJVOucqkZ6MNHCgVQUZ5xxe78LkkYCRSFg==", 827 + "dev": true, 828 + "dependencies": { 829 + "array.prototype.foreach": "^1.0.4", 830 + "array.prototype.join": "^1.0.1", 831 + "array.prototype.map": "^1.0.5", 832 + "array.prototype.push": "^1.0.3", 833 + "array.prototype.slice": "^1.0.1", 834 + "defined": "^1.0.1", 835 + "duplexer": "^0.1.2", 836 + "minimist": "^1.2.7", 837 + "npm-which": "^1.0.2", 838 + "readable-stream": "^2.3.7", 839 + "safe-regex-test": "^1.0.0", 840 + "sprintf-js": "^1.1.2", 841 + "string.prototype.split": "^1.0.7", 842 + "string.prototype.trim": "^1.2.7", 843 + "tap-parser": "^0.7.0", 844 + "tape": "^5.6.3", 845 + "through2": "^0.2.3" 846 + }, 847 + "bin": { 848 + "faucet": "bin/cmd.js" 849 + }, 850 + "funding": { 851 + "url": "https://github.com/sponsors/ljharb" 852 + } 853 + }, 854 + "node_modules/faucet/node_modules/isarray": { 855 + "version": "1.0.0", 856 + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 857 + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", 858 + "dev": true 859 + }, 860 + "node_modules/faucet/node_modules/readable-stream": { 861 + "version": "2.3.8", 862 + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", 863 + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", 864 + "dev": true, 865 + "dependencies": { 866 + "core-util-is": "~1.0.0", 867 + "inherits": "~2.0.3", 868 + "isarray": "~1.0.0", 869 + "process-nextick-args": "~2.0.0", 870 + "safe-buffer": "~5.1.1", 871 + "string_decoder": "~1.1.1", 872 + "util-deprecate": "~1.0.1" 873 + } 874 + }, 875 + "node_modules/faucet/node_modules/safe-buffer": { 876 + "version": "5.1.2", 877 + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 878 + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", 879 + "dev": true 880 + }, 881 + "node_modules/faucet/node_modules/string_decoder": { 882 + "version": "1.1.1", 883 + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 884 + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 885 + "dev": true, 886 + "dependencies": { 887 + "safe-buffer": "~5.1.0" 888 + } 889 + }, 890 + "node_modules/fill-range": { 891 + "version": "7.0.1", 892 + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 893 + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 894 + "dev": true, 895 + "dependencies": { 896 + "to-regex-range": "^5.0.1" 897 + }, 898 + "engines": { 899 + "node": ">=8" 900 + } 901 + }, 902 + "node_modules/find-up": { 903 + "version": "5.0.0", 904 + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 905 + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 906 + "dev": true, 907 + "dependencies": { 908 + "locate-path": "^6.0.0", 909 + "path-exists": "^4.0.0" 910 + }, 911 + "engines": { 912 + "node": ">=10" 913 + }, 914 + "funding": { 915 + "url": "https://github.com/sponsors/sindresorhus" 916 + } 917 + }, 918 + "node_modules/flat": { 919 + "version": "5.0.2", 920 + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", 921 + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", 922 + "dev": true, 923 + "bin": { 924 + "flat": "cli.js" 925 + } 926 + }, 927 + "node_modules/for-each": { 928 + "version": "0.3.3", 929 + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 930 + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 931 + "dev": true, 932 + "dependencies": { 933 + "is-callable": "^1.1.3" 934 + } 935 + }, 936 + "node_modules/fs.realpath": { 937 + "version": "1.0.0", 938 + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 939 + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 940 + "dev": true 941 + }, 942 + "node_modules/fsevents": { 943 + "version": "2.3.2", 944 + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 945 + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 946 + "dev": true, 947 + "hasInstallScript": true, 948 + "optional": true, 949 + "os": [ 950 + "darwin" 951 + ], 952 + "engines": { 953 + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 954 + } 955 + }, 956 + "node_modules/function-bind": { 957 + "version": "1.1.1", 958 + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 959 + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 960 + "dev": true 961 + }, 962 + "node_modules/function.prototype.name": { 963 + "version": "1.1.5", 964 + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 965 + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 966 + "dev": true, 967 + "dependencies": { 968 + "call-bind": "^1.0.2", 969 + "define-properties": "^1.1.3", 970 + "es-abstract": "^1.19.0", 971 + "functions-have-names": "^1.2.2" 972 + }, 973 + "engines": { 974 + "node": ">= 0.4" 975 + }, 976 + "funding": { 977 + "url": "https://github.com/sponsors/ljharb" 978 + } 979 + }, 980 + "node_modules/functions-have-names": { 981 + "version": "1.2.3", 982 + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 983 + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 984 + "dev": true, 985 + "funding": { 986 + "url": "https://github.com/sponsors/ljharb" 987 + } 988 + }, 989 + "node_modules/geojson-numeric": { 990 + "version": "0.2.1", 991 + "resolved": "https://registry.npmjs.org/geojson-numeric/-/geojson-numeric-0.2.1.tgz", 992 + "integrity": "sha512-rvItMp3W7pe16o2EQTnRw54v6WHdiE4bYjUsdr3FZskFb6oPC7gjLe4zginP+Wd1B/HLl2acTukfn16Lmwn7lg==", 993 + "dependencies": { 994 + "concat-stream": "2.0.0", 995 + "optimist": "~0.3.5" 996 + }, 997 + "bin": { 998 + "geojson-numeric": "geojson-numeric" 999 + } 1000 + }, 1001 + "node_modules/get-caller-file": { 1002 + "version": "2.0.5", 1003 + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1004 + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1005 + "dev": true, 1006 + "engines": { 1007 + "node": "6.* || 8.* || >= 10.*" 1008 + } 1009 + }, 1010 + "node_modules/get-intrinsic": { 1011 + "version": "1.2.0", 1012 + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", 1013 + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", 1014 + "dev": true, 1015 + "dependencies": { 1016 + "function-bind": "^1.1.1", 1017 + "has": "^1.0.3", 1018 + "has-symbols": "^1.0.3" 1019 + }, 1020 + "funding": { 1021 + "url": "https://github.com/sponsors/ljharb" 1022 + } 1023 + }, 1024 + "node_modules/get-package-type": { 1025 + "version": "0.1.0", 1026 + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", 1027 + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", 1028 + "dev": true, 1029 + "engines": { 1030 + "node": ">=8.0.0" 1031 + } 1032 + }, 1033 + "node_modules/get-stream": { 1034 + "version": "6.0.1", 1035 + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1036 + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1037 + "engines": { 1038 + "node": ">=10" 1039 + }, 1040 + "funding": { 1041 + "url": "https://github.com/sponsors/sindresorhus" 1042 + } 1043 + }, 1044 + "node_modules/get-symbol-description": { 1045 + "version": "1.0.0", 1046 + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 1047 + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 1048 + "dev": true, 1049 + "dependencies": { 1050 + "call-bind": "^1.0.2", 1051 + "get-intrinsic": "^1.1.1" 1052 + }, 1053 + "engines": { 1054 + "node": ">= 0.4" 1055 + }, 1056 + "funding": { 1057 + "url": "https://github.com/sponsors/ljharb" 1058 + } 1059 + }, 1060 + "node_modules/glob": { 1061 + "version": "5.0.15", 1062 + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", 1063 + "integrity": "sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==", 1064 + "dev": true, 1065 + "dependencies": { 1066 + "inflight": "^1.0.4", 1067 + "inherits": "2", 1068 + "minimatch": "2 || 3", 1069 + "once": "^1.3.0", 1070 + "path-is-absolute": "^1.0.0" 1071 + }, 1072 + "engines": { 1073 + "node": "*" 1074 + } 1075 + }, 1076 + "node_modules/glob-parent": { 1077 + "version": "5.1.2", 1078 + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1079 + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1080 + "dev": true, 1081 + "dependencies": { 1082 + "is-glob": "^4.0.1" 1083 + }, 1084 + "engines": { 1085 + "node": ">= 6" 1086 + } 1087 + }, 1088 + "node_modules/globalthis": { 1089 + "version": "1.0.3", 1090 + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 1091 + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 1092 + "dev": true, 1093 + "dependencies": { 1094 + "define-properties": "^1.1.3" 1095 + }, 1096 + "engines": { 1097 + "node": ">= 0.4" 1098 + }, 1099 + "funding": { 1100 + "url": "https://github.com/sponsors/ljharb" 1101 + } 1102 + }, 1103 + "node_modules/gopd": { 1104 + "version": "1.0.1", 1105 + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 1106 + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 1107 + "dev": true, 1108 + "dependencies": { 1109 + "get-intrinsic": "^1.1.3" 1110 + }, 1111 + "funding": { 1112 + "url": "https://github.com/sponsors/ljharb" 1113 + } 1114 + }, 1115 + "node_modules/handlebars": { 1116 + "version": "4.7.7", 1117 + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", 1118 + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", 1119 + "dev": true, 1120 + "dependencies": { 1121 + "minimist": "^1.2.5", 1122 + "neo-async": "^2.6.0", 1123 + "source-map": "^0.6.1", 1124 + "wordwrap": "^1.0.0" 1125 + }, 1126 + "bin": { 1127 + "handlebars": "bin/handlebars" 1128 + }, 1129 + "engines": { 1130 + "node": ">=0.4.7" 1131 + }, 1132 + "optionalDependencies": { 1133 + "uglify-js": "^3.1.4" 1134 + } 1135 + }, 1136 + "node_modules/handlebars/node_modules/source-map": { 1137 + "version": "0.6.1", 1138 + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 1139 + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 1140 + "dev": true, 1141 + "engines": { 1142 + "node": ">=0.10.0" 1143 + } 1144 + }, 1145 + "node_modules/has": { 1146 + "version": "1.0.3", 1147 + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1148 + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1149 + "dev": true, 1150 + "dependencies": { 1151 + "function-bind": "^1.1.1" 1152 + }, 1153 + "engines": { 1154 + "node": ">= 0.4.0" 1155 + } 1156 + }, 1157 + "node_modules/has-bigints": { 1158 + "version": "1.0.2", 1159 + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 1160 + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 1161 + "dev": true, 1162 + "funding": { 1163 + "url": "https://github.com/sponsors/ljharb" 1164 + } 1165 + }, 1166 + "node_modules/has-dynamic-import": { 1167 + "version": "2.0.1", 1168 + "resolved": "https://registry.npmjs.org/has-dynamic-import/-/has-dynamic-import-2.0.1.tgz", 1169 + "integrity": "sha512-X3fbtsZmwb6W7fJGR9o7x65fZoodygCrZ3TVycvghP62yYQfS0t4RS0Qcz+j5tQYUKeSWS09tHkWW6WhFV3XhQ==", 1170 + "dev": true, 1171 + "dependencies": { 1172 + "call-bind": "^1.0.2", 1173 + "get-intrinsic": "^1.1.1" 1174 + }, 1175 + "funding": { 1176 + "url": "https://github.com/sponsors/ljharb" 1177 + } 1178 + }, 1179 + "node_modules/has-flag": { 1180 + "version": "1.0.0", 1181 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", 1182 + "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==", 1183 + "dev": true, 1184 + "engines": { 1185 + "node": ">=0.10.0" 1186 + } 1187 + }, 1188 + "node_modules/has-property-descriptors": { 1189 + "version": "1.0.0", 1190 + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 1191 + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 1192 + "dev": true, 1193 + "dependencies": { 1194 + "get-intrinsic": "^1.1.1" 1195 + }, 1196 + "funding": { 1197 + "url": "https://github.com/sponsors/ljharb" 1198 + } 1199 + }, 1200 + "node_modules/has-proto": { 1201 + "version": "1.0.1", 1202 + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 1203 + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 1204 + "dev": true, 1205 + "engines": { 1206 + "node": ">= 0.4" 1207 + }, 1208 + "funding": { 1209 + "url": "https://github.com/sponsors/ljharb" 1210 + } 1211 + }, 1212 + "node_modules/has-symbols": { 1213 + "version": "1.0.3", 1214 + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 1215 + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 1216 + "dev": true, 1217 + "engines": { 1218 + "node": ">= 0.4" 1219 + }, 1220 + "funding": { 1221 + "url": "https://github.com/sponsors/ljharb" 1222 + } 1223 + }, 1224 + "node_modules/has-tostringtag": { 1225 + "version": "1.0.0", 1226 + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 1227 + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 1228 + "dev": true, 1229 + "dependencies": { 1230 + "has-symbols": "^1.0.2" 1231 + }, 1232 + "engines": { 1233 + "node": ">= 0.4" 1234 + }, 1235 + "funding": { 1236 + "url": "https://github.com/sponsors/ljharb" 1237 + } 1238 + }, 1239 + "node_modules/he": { 1240 + "version": "1.2.0", 1241 + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", 1242 + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", 1243 + "dev": true, 1244 + "bin": { 1245 + "he": "bin/he" 1246 + } 1247 + }, 1248 + "node_modules/htmlparser2": { 1249 + "version": "3.5.1", 1250 + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.5.1.tgz", 1251 + "integrity": "sha512-9ouaQ6sjVJZS4NhPC65zNm2JCJotiH6BVm6iFvI90hRcsIEISMrgjqMUrPpU9G1VS4vTspH4dyaqSRf6JLQPbg==", 1252 + "dependencies": { 1253 + "domelementtype": "1", 1254 + "domhandler": "2.2", 1255 + "domutils": "1.3", 1256 + "readable-stream": "1.1" 1257 + } 1258 + }, 1259 + "node_modules/htmlparser2/node_modules/isarray": { 1260 + "version": "0.0.1", 1261 + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", 1262 + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" 1263 + }, 1264 + "node_modules/htmlparser2/node_modules/readable-stream": { 1265 + "version": "1.1.14", 1266 + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", 1267 + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", 1268 + "dependencies": { 1269 + "core-util-is": "~1.0.0", 1270 + "inherits": "~2.0.1", 1271 + "isarray": "0.0.1", 1272 + "string_decoder": "~0.10.x" 1273 + } 1274 + }, 1275 + "node_modules/htmlparser2/node_modules/string_decoder": { 1276 + "version": "0.10.31", 1277 + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", 1278 + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" 1279 + }, 1280 + "node_modules/ieee754": { 1281 + "version": "1.2.1", 1282 + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 1283 + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 1284 + "funding": [ 1285 + { 1286 + "type": "github", 1287 + "url": "https://github.com/sponsors/feross" 1288 + }, 1289 + { 1290 + "type": "patreon", 1291 + "url": "https://www.patreon.com/feross" 1292 + }, 1293 + { 1294 + "type": "consulting", 1295 + "url": "https://feross.org/support" 1296 + } 1297 + ] 1298 + }, 1299 + "node_modules/inflight": { 1300 + "version": "1.0.6", 1301 + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1302 + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1303 + "dev": true, 1304 + "dependencies": { 1305 + "once": "^1.3.0", 1306 + "wrappy": "1" 1307 + } 1308 + }, 1309 + "node_modules/inherits": { 1310 + "version": "2.0.4", 1311 + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1312 + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 1313 + }, 1314 + "node_modules/internal-slot": { 1315 + "version": "1.0.5", 1316 + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 1317 + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 1318 + "dev": true, 1319 + "dependencies": { 1320 + "get-intrinsic": "^1.2.0", 1321 + "has": "^1.0.3", 1322 + "side-channel": "^1.0.4" 1323 + }, 1324 + "engines": { 1325 + "node": ">= 0.4" 1326 + } 1327 + }, 1328 + "node_modules/is-arguments": { 1329 + "version": "1.1.1", 1330 + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", 1331 + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", 1332 + "dev": true, 1333 + "dependencies": { 1334 + "call-bind": "^1.0.2", 1335 + "has-tostringtag": "^1.0.0" 1336 + }, 1337 + "engines": { 1338 + "node": ">= 0.4" 1339 + }, 1340 + "funding": { 1341 + "url": "https://github.com/sponsors/ljharb" 1342 + } 1343 + }, 1344 + "node_modules/is-array-buffer": { 1345 + "version": "3.0.2", 1346 + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 1347 + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 1348 + "dev": true, 1349 + "dependencies": { 1350 + "call-bind": "^1.0.2", 1351 + "get-intrinsic": "^1.2.0", 1352 + "is-typed-array": "^1.1.10" 1353 + }, 1354 + "funding": { 1355 + "url": "https://github.com/sponsors/ljharb" 1356 + } 1357 + }, 1358 + "node_modules/is-bigint": { 1359 + "version": "1.0.4", 1360 + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 1361 + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 1362 + "dev": true, 1363 + "dependencies": { 1364 + "has-bigints": "^1.0.1" 1365 + }, 1366 + "funding": { 1367 + "url": "https://github.com/sponsors/ljharb" 1368 + } 1369 + }, 1370 + "node_modules/is-binary-path": { 1371 + "version": "2.1.0", 1372 + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1373 + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1374 + "dev": true, 1375 + "dependencies": { 1376 + "binary-extensions": "^2.0.0" 1377 + }, 1378 + "engines": { 1379 + "node": ">=8" 1380 + } 1381 + }, 1382 + "node_modules/is-boolean-object": { 1383 + "version": "1.1.2", 1384 + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 1385 + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 1386 + "dev": true, 1387 + "dependencies": { 1388 + "call-bind": "^1.0.2", 1389 + "has-tostringtag": "^1.0.0" 1390 + }, 1391 + "engines": { 1392 + "node": ">= 0.4" 1393 + }, 1394 + "funding": { 1395 + "url": "https://github.com/sponsors/ljharb" 1396 + } 1397 + }, 1398 + "node_modules/is-callable": { 1399 + "version": "1.2.7", 1400 + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 1401 + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 1402 + "dev": true, 1403 + "engines": { 1404 + "node": ">= 0.4" 1405 + }, 1406 + "funding": { 1407 + "url": "https://github.com/sponsors/ljharb" 1408 + } 1409 + }, 1410 + "node_modules/is-core-module": { 1411 + "version": "2.12.0", 1412 + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", 1413 + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", 1414 + "dev": true, 1415 + "dependencies": { 1416 + "has": "^1.0.3" 1417 + }, 1418 + "funding": { 1419 + "url": "https://github.com/sponsors/ljharb" 1420 + } 1421 + }, 1422 + "node_modules/is-date-object": { 1423 + "version": "1.0.5", 1424 + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 1425 + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 1426 + "dev": true, 1427 + "dependencies": { 1428 + "has-tostringtag": "^1.0.0" 1429 + }, 1430 + "engines": { 1431 + "node": ">= 0.4" 1432 + }, 1433 + "funding": { 1434 + "url": "https://github.com/sponsors/ljharb" 1435 + } 1436 + }, 1437 + "node_modules/is-extglob": { 1438 + "version": "2.1.1", 1439 + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1440 + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1441 + "dev": true, 1442 + "engines": { 1443 + "node": ">=0.10.0" 1444 + } 1445 + }, 1446 + "node_modules/is-fullwidth-code-point": { 1447 + "version": "3.0.0", 1448 + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1449 + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1450 + "dev": true, 1451 + "engines": { 1452 + "node": ">=8" 1453 + } 1454 + }, 1455 + "node_modules/is-glob": { 1456 + "version": "4.0.3", 1457 + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1458 + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1459 + "dev": true, 1460 + "dependencies": { 1461 + "is-extglob": "^2.1.1" 1462 + }, 1463 + "engines": { 1464 + "node": ">=0.10.0" 1465 + } 1466 + }, 1467 + "node_modules/is-map": { 1468 + "version": "2.0.2", 1469 + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", 1470 + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", 1471 + "dev": true, 1472 + "funding": { 1473 + "url": "https://github.com/sponsors/ljharb" 1474 + } 1475 + }, 1476 + "node_modules/is-negative-zero": { 1477 + "version": "2.0.2", 1478 + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 1479 + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 1480 + "dev": true, 1481 + "engines": { 1482 + "node": ">= 0.4" 1483 + }, 1484 + "funding": { 1485 + "url": "https://github.com/sponsors/ljharb" 1486 + } 1487 + }, 1488 + "node_modules/is-number": { 1489 + "version": "7.0.0", 1490 + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1491 + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1492 + "dev": true, 1493 + "engines": { 1494 + "node": ">=0.12.0" 1495 + } 1496 + }, 1497 + "node_modules/is-number-object": { 1498 + "version": "1.0.7", 1499 + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 1500 + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 1501 + "dev": true, 1502 + "dependencies": { 1503 + "has-tostringtag": "^1.0.0" 1504 + }, 1505 + "engines": { 1506 + "node": ">= 0.4" 1507 + }, 1508 + "funding": { 1509 + "url": "https://github.com/sponsors/ljharb" 1510 + } 1511 + }, 1512 + "node_modules/is-plain-obj": { 1513 + "version": "2.1.0", 1514 + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", 1515 + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", 1516 + "dev": true, 1517 + "engines": { 1518 + "node": ">=8" 1519 + } 1520 + }, 1521 + "node_modules/is-regex": { 1522 + "version": "1.1.4", 1523 + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 1524 + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 1525 + "dev": true, 1526 + "dependencies": { 1527 + "call-bind": "^1.0.2", 1528 + "has-tostringtag": "^1.0.0" 1529 + }, 1530 + "engines": { 1531 + "node": ">= 0.4" 1532 + }, 1533 + "funding": { 1534 + "url": "https://github.com/sponsors/ljharb" 1535 + } 1536 + }, 1537 + "node_modules/is-set": { 1538 + "version": "2.0.2", 1539 + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", 1540 + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", 1541 + "dev": true, 1542 + "funding": { 1543 + "url": "https://github.com/sponsors/ljharb" 1544 + } 1545 + }, 1546 + "node_modules/is-shared-array-buffer": { 1547 + "version": "1.0.2", 1548 + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 1549 + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 1550 + "dev": true, 1551 + "dependencies": { 1552 + "call-bind": "^1.0.2" 1553 + }, 1554 + "funding": { 1555 + "url": "https://github.com/sponsors/ljharb" 1556 + } 1557 + }, 1558 + "node_modules/is-string": { 1559 + "version": "1.0.7", 1560 + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 1561 + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 1562 + "dev": true, 1563 + "dependencies": { 1564 + "has-tostringtag": "^1.0.0" 1565 + }, 1566 + "engines": { 1567 + "node": ">= 0.4" 1568 + }, 1569 + "funding": { 1570 + "url": "https://github.com/sponsors/ljharb" 1571 + } 1572 + }, 1573 + "node_modules/is-symbol": { 1574 + "version": "1.0.4", 1575 + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 1576 + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 1577 + "dev": true, 1578 + "dependencies": { 1579 + "has-symbols": "^1.0.2" 1580 + }, 1581 + "engines": { 1582 + "node": ">= 0.4" 1583 + }, 1584 + "funding": { 1585 + "url": "https://github.com/sponsors/ljharb" 1586 + } 1587 + }, 1588 + "node_modules/is-typed-array": { 1589 + "version": "1.1.10", 1590 + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 1591 + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 1592 + "dev": true, 1593 + "dependencies": { 1594 + "available-typed-arrays": "^1.0.5", 1595 + "call-bind": "^1.0.2", 1596 + "for-each": "^0.3.3", 1597 + "gopd": "^1.0.1", 1598 + "has-tostringtag": "^1.0.0" 1599 + }, 1600 + "engines": { 1601 + "node": ">= 0.4" 1602 + }, 1603 + "funding": { 1604 + "url": "https://github.com/sponsors/ljharb" 1605 + } 1606 + }, 1607 + "node_modules/is-unicode-supported": { 1608 + "version": "0.1.0", 1609 + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", 1610 + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", 1611 + "dev": true, 1612 + "engines": { 1613 + "node": ">=10" 1614 + }, 1615 + "funding": { 1616 + "url": "https://github.com/sponsors/sindresorhus" 1617 + } 1618 + }, 1619 + "node_modules/is-weakmap": { 1620 + "version": "2.0.1", 1621 + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", 1622 + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", 1623 + "dev": true, 1624 + "funding": { 1625 + "url": "https://github.com/sponsors/ljharb" 1626 + } 1627 + }, 1628 + "node_modules/is-weakref": { 1629 + "version": "1.0.2", 1630 + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 1631 + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 1632 + "dev": true, 1633 + "dependencies": { 1634 + "call-bind": "^1.0.2" 1635 + }, 1636 + "funding": { 1637 + "url": "https://github.com/sponsors/ljharb" 1638 + } 1639 + }, 1640 + "node_modules/is-weakset": { 1641 + "version": "2.0.2", 1642 + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", 1643 + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", 1644 + "dev": true, 1645 + "dependencies": { 1646 + "call-bind": "^1.0.2", 1647 + "get-intrinsic": "^1.1.1" 1648 + }, 1649 + "funding": { 1650 + "url": "https://github.com/sponsors/ljharb" 1651 + } 1652 + }, 1653 + "node_modules/isarray": { 1654 + "version": "2.0.5", 1655 + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 1656 + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 1657 + "dev": true 1658 + }, 1659 + "node_modules/isexe": { 1660 + "version": "2.0.0", 1661 + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1662 + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1663 + "dev": true 1664 + }, 1665 + "node_modules/istanbul": { 1666 + "version": "0.4.5", 1667 + "resolved": "https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz", 1668 + "integrity": "sha512-nMtdn4hvK0HjUlzr1DrKSUY8ychprt8dzHOgY2KXsIhHu5PuQQEOTM27gV9Xblyon7aUH/TSFIjRHEODF/FRPg==", 1669 + "deprecated": "This module is no longer maintained, try this instead:\n npm i nyc\nVisit https://istanbul.js.org/integrations for other alternatives.", 1670 + "dev": true, 1671 + "dependencies": { 1672 + "abbrev": "1.0.x", 1673 + "async": "1.x", 1674 + "escodegen": "1.8.x", 1675 + "esprima": "2.7.x", 1676 + "glob": "^5.0.15", 1677 + "handlebars": "^4.0.1", 1678 + "js-yaml": "3.x", 1679 + "mkdirp": "0.5.x", 1680 + "nopt": "3.x", 1681 + "once": "1.x", 1682 + "resolve": "1.1.x", 1683 + "supports-color": "^3.1.0", 1684 + "which": "^1.1.1", 1685 + "wordwrap": "^1.0.0" 1686 + }, 1687 + "bin": { 1688 + "istanbul": "lib/cli.js" 1689 + } 1690 + }, 1691 + "node_modules/js-yaml": { 1692 + "version": "3.14.1", 1693 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 1694 + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 1695 + "dev": true, 1696 + "dependencies": { 1697 + "argparse": "^1.0.7", 1698 + "esprima": "^4.0.0" 1699 + }, 1700 + "bin": { 1701 + "js-yaml": "bin/js-yaml.js" 1702 + } 1703 + }, 1704 + "node_modules/js-yaml/node_modules/esprima": { 1705 + "version": "4.0.1", 1706 + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1707 + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1708 + "dev": true, 1709 + "bin": { 1710 + "esparse": "bin/esparse.js", 1711 + "esvalidate": "bin/esvalidate.js" 1712 + }, 1713 + "engines": { 1714 + "node": ">=4" 1715 + } 1716 + }, 1717 + "node_modules/jsonparse": { 1718 + "version": "0.0.5", 1719 + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-0.0.5.tgz", 1720 + "integrity": "sha512-fw7Q/8gFR8iSekUi9I+HqWIap6mywuoe7hQIg3buTVjuZgALKj4HAmm0X6f+TaL4c9NJbvyFQdaI2ppr5p6dnQ==", 1721 + "engines": [ 1722 + "node >= 0.2.0" 1723 + ] 1724 + }, 1725 + "node_modules/JSONStream": { 1726 + "version": "0.8.0", 1727 + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-0.8.0.tgz", 1728 + "integrity": "sha512-PiV28BpoUorz9kKFwRbD7+wg0t/k0ITHKn0DgCU44YZ/GaGAZRPt9q5PzoifC85gE55SEPIdMu0Labfxevj8cw==", 1729 + "dependencies": { 1730 + "jsonparse": "0.0.5", 1731 + "through": "~2.2.7" 1732 + }, 1733 + "engines": { 1734 + "node": "*" 1735 + } 1736 + }, 1737 + "node_modules/levn": { 1738 + "version": "0.3.0", 1739 + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", 1740 + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", 1741 + "dev": true, 1742 + "dependencies": { 1743 + "prelude-ls": "~1.1.2", 1744 + "type-check": "~0.3.2" 1745 + }, 1746 + "engines": { 1747 + "node": ">= 0.8.0" 1748 + } 1749 + }, 1750 + "node_modules/locate-path": { 1751 + "version": "6.0.0", 1752 + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1753 + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1754 + "dev": true, 1755 + "dependencies": { 1756 + "p-locate": "^5.0.0" 1757 + }, 1758 + "engines": { 1759 + "node": ">=10" 1760 + }, 1761 + "funding": { 1762 + "url": "https://github.com/sponsors/sindresorhus" 1763 + } 1764 + }, 1765 + "node_modules/log-symbols": { 1766 + "version": "4.1.0", 1767 + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", 1768 + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", 1769 + "dev": true, 1770 + "dependencies": { 1771 + "chalk": "^4.1.0", 1772 + "is-unicode-supported": "^0.1.0" 1773 + }, 1774 + "engines": { 1775 + "node": ">=10" 1776 + }, 1777 + "funding": { 1778 + "url": "https://github.com/sponsors/sindresorhus" 1779 + } 1780 + }, 1781 + "node_modules/minimatch": { 1782 + "version": "3.1.2", 1783 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1784 + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1785 + "dev": true, 1786 + "dependencies": { 1787 + "brace-expansion": "^1.1.7" 1788 + }, 1789 + "engines": { 1790 + "node": "*" 1791 + } 1792 + }, 1793 + "node_modules/minimist": { 1794 + "version": "1.2.8", 1795 + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 1796 + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 1797 + "funding": { 1798 + "url": "https://github.com/sponsors/ljharb" 1799 + } 1800 + }, 1801 + "node_modules/mkdirp": { 1802 + "version": "0.5.6", 1803 + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", 1804 + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", 1805 + "dev": true, 1806 + "dependencies": { 1807 + "minimist": "^1.2.6" 1808 + }, 1809 + "bin": { 1810 + "mkdirp": "bin/cmd.js" 1811 + } 1812 + }, 1813 + "node_modules/mocha": { 1814 + "version": "10.1.0", 1815 + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.1.0.tgz", 1816 + "integrity": "sha512-vUF7IYxEoN7XhQpFLxQAEMtE4W91acW4B6En9l97MwE9stL1A9gusXfoHZCLVHDUJ/7V5+lbCM6yMqzo5vNymg==", 1817 + "dev": true, 1818 + "dependencies": { 1819 + "ansi-colors": "4.1.1", 1820 + "browser-stdout": "1.3.1", 1821 + "chokidar": "3.5.3", 1822 + "debug": "4.3.4", 1823 + "diff": "5.0.0", 1824 + "escape-string-regexp": "4.0.0", 1825 + "find-up": "5.0.0", 1826 + "glob": "7.2.0", 1827 + "he": "1.2.0", 1828 + "js-yaml": "4.1.0", 1829 + "log-symbols": "4.1.0", 1830 + "minimatch": "5.0.1", 1831 + "ms": "2.1.3", 1832 + "nanoid": "3.3.3", 1833 + "serialize-javascript": "6.0.0", 1834 + "strip-json-comments": "3.1.1", 1835 + "supports-color": "8.1.1", 1836 + "workerpool": "6.2.1", 1837 + "yargs": "16.2.0", 1838 + "yargs-parser": "20.2.4", 1839 + "yargs-unparser": "2.0.0" 1840 + }, 1841 + "bin": { 1842 + "_mocha": "bin/_mocha", 1843 + "mocha": "bin/mocha.js" 1844 + }, 1845 + "engines": { 1846 + "node": ">= 14.0.0" 1847 + }, 1848 + "funding": { 1849 + "type": "opencollective", 1850 + "url": "https://opencollective.com/mochajs" 1851 + } 1852 + }, 1853 + "node_modules/mocha/node_modules/argparse": { 1854 + "version": "2.0.1", 1855 + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1856 + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1857 + "dev": true 1858 + }, 1859 + "node_modules/mocha/node_modules/glob": { 1860 + "version": "7.2.0", 1861 + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", 1862 + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", 1863 + "dev": true, 1864 + "dependencies": { 1865 + "fs.realpath": "^1.0.0", 1866 + "inflight": "^1.0.4", 1867 + "inherits": "2", 1868 + "minimatch": "^3.0.4", 1869 + "once": "^1.3.0", 1870 + "path-is-absolute": "^1.0.0" 1871 + }, 1872 + "engines": { 1873 + "node": "*" 1874 + }, 1875 + "funding": { 1876 + "url": "https://github.com/sponsors/isaacs" 1877 + } 1878 + }, 1879 + "node_modules/mocha/node_modules/glob/node_modules/minimatch": { 1880 + "version": "3.1.2", 1881 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1882 + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1883 + "dev": true, 1884 + "dependencies": { 1885 + "brace-expansion": "^1.1.7" 1886 + }, 1887 + "engines": { 1888 + "node": "*" 1889 + } 1890 + }, 1891 + "node_modules/mocha/node_modules/has-flag": { 1892 + "version": "4.0.0", 1893 + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1894 + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1895 + "dev": true, 1896 + "engines": { 1897 + "node": ">=8" 1898 + } 1899 + }, 1900 + "node_modules/mocha/node_modules/js-yaml": { 1901 + "version": "4.1.0", 1902 + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1903 + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1904 + "dev": true, 1905 + "dependencies": { 1906 + "argparse": "^2.0.1" 1907 + }, 1908 + "bin": { 1909 + "js-yaml": "bin/js-yaml.js" 1910 + } 1911 + }, 1912 + "node_modules/mocha/node_modules/minimatch": { 1913 + "version": "5.0.1", 1914 + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", 1915 + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", 1916 + "dev": true, 1917 + "dependencies": { 1918 + "brace-expansion": "^2.0.1" 1919 + }, 1920 + "engines": { 1921 + "node": ">=10" 1922 + } 1923 + }, 1924 + "node_modules/mocha/node_modules/minimatch/node_modules/brace-expansion": { 1925 + "version": "2.0.1", 1926 + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1927 + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1928 + "dev": true, 1929 + "dependencies": { 1930 + "balanced-match": "^1.0.0" 1931 + } 1932 + }, 1933 + "node_modules/mocha/node_modules/supports-color": { 1934 + "version": "8.1.1", 1935 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 1936 + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 1937 + "dev": true, 1938 + "dependencies": { 1939 + "has-flag": "^4.0.0" 1940 + }, 1941 + "engines": { 1942 + "node": ">=10" 1943 + }, 1944 + "funding": { 1945 + "url": "https://github.com/chalk/supports-color?sponsor=1" 1946 + } 1947 + }, 1948 + "node_modules/ms": { 1949 + "version": "2.1.3", 1950 + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1951 + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 1952 + "dev": true 1953 + }, 1954 + "node_modules/nanoid": { 1955 + "version": "3.3.3", 1956 + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", 1957 + "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", 1958 + "dev": true, 1959 + "bin": { 1960 + "nanoid": "bin/nanoid.cjs" 1961 + }, 1962 + "engines": { 1963 + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 1964 + } 1965 + }, 1966 + "node_modules/neo-async": { 1967 + "version": "2.6.2", 1968 + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", 1969 + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", 1970 + "dev": true 1971 + }, 1972 + "node_modules/nopt": { 1973 + "version": "3.0.6", 1974 + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", 1975 + "integrity": "sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==", 1976 + "dev": true, 1977 + "dependencies": { 1978 + "abbrev": "1" 1979 + }, 1980 + "bin": { 1981 + "nopt": "bin/nopt.js" 1982 + } 1983 + }, 1984 + "node_modules/normalize-path": { 1985 + "version": "3.0.0", 1986 + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1987 + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 1988 + "dev": true, 1989 + "engines": { 1990 + "node": ">=0.10.0" 1991 + } 1992 + }, 1993 + "node_modules/npm-path": { 1994 + "version": "1.1.0", 1995 + "resolved": "https://registry.npmjs.org/npm-path/-/npm-path-1.1.0.tgz", 1996 + "integrity": "sha512-wsL+YXGWlE3DWEqhpgKdt0RWxQrHKpVZ5u6uDYFSpxrxKYVPOctOun8q77VwD02zPTQD4wkc35elWPcocaICag==", 1997 + "dev": true, 1998 + "dependencies": { 1999 + "which": "^1.2.4" 2000 + }, 2001 + "bin": { 2002 + "npm-path": "bin/npm-path" 2003 + } 2004 + }, 2005 + "node_modules/npm-which": { 2006 + "version": "1.0.2", 2007 + "resolved": "https://registry.npmjs.org/npm-which/-/npm-which-1.0.2.tgz", 2008 + "integrity": "sha512-y1s2PrTct2DuRudZNyu4+l4HteWFzaHcN+mMtA54htjA8xIzYza9casIqUdf+/Lqb4Zg2harBpCxBUt83Dwnuw==", 2009 + "dev": true, 2010 + "dependencies": { 2011 + "commander": "^2.2.0", 2012 + "npm-path": "^1.0.0", 2013 + "which": "^1.0.5" 2014 + }, 2015 + "bin": { 2016 + "npm-which": "bin/npm-which.js" 2017 + } 2018 + }, 2019 + "node_modules/object-inspect": { 2020 + "version": "1.12.3", 2021 + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 2022 + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 2023 + "dev": true, 2024 + "funding": { 2025 + "url": "https://github.com/sponsors/ljharb" 2026 + } 2027 + }, 2028 + "node_modules/object-is": { 2029 + "version": "1.1.5", 2030 + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", 2031 + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", 2032 + "dev": true, 2033 + "dependencies": { 2034 + "call-bind": "^1.0.2", 2035 + "define-properties": "^1.1.3" 2036 + }, 2037 + "engines": { 2038 + "node": ">= 0.4" 2039 + }, 2040 + "funding": { 2041 + "url": "https://github.com/sponsors/ljharb" 2042 + } 2043 + }, 2044 + "node_modules/object-keys": { 2045 + "version": "1.1.1", 2046 + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2047 + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2048 + "dev": true, 2049 + "engines": { 2050 + "node": ">= 0.4" 2051 + } 2052 + }, 2053 + "node_modules/object.assign": { 2054 + "version": "4.1.4", 2055 + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 2056 + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 2057 + "dev": true, 2058 + "dependencies": { 2059 + "call-bind": "^1.0.2", 2060 + "define-properties": "^1.1.4", 2061 + "has-symbols": "^1.0.3", 2062 + "object-keys": "^1.1.1" 2063 + }, 2064 + "engines": { 2065 + "node": ">= 0.4" 2066 + }, 2067 + "funding": { 2068 + "url": "https://github.com/sponsors/ljharb" 2069 + } 2070 + }, 2071 + "node_modules/once": { 2072 + "version": "1.4.0", 2073 + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2074 + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2075 + "dev": true, 2076 + "dependencies": { 2077 + "wrappy": "1" 2078 + } 2079 + }, 2080 + "node_modules/optimist": { 2081 + "version": "0.3.7", 2082 + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz", 2083 + "integrity": "sha512-TCx0dXQzVtSCg2OgY/bO9hjM9cV4XYx09TVK+s3+FhkjT6LovsLe+pPMzpWf+6yXK/hUizs2gUoTw3jHM0VaTQ==", 2084 + "dependencies": { 2085 + "wordwrap": "~0.0.2" 2086 + } 2087 + }, 2088 + "node_modules/optimist/node_modules/wordwrap": { 2089 + "version": "0.0.3", 2090 + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", 2091 + "integrity": "sha512-1tMA907+V4QmxV7dbRvb4/8MaRALK6q9Abid3ndMYnbyo8piisCmeONVqVSXqQA3KaP4SLt5b7ud6E2sqP8TFw==", 2092 + "engines": { 2093 + "node": ">=0.4.0" 2094 + } 2095 + }, 2096 + "node_modules/optionator": { 2097 + "version": "0.8.3", 2098 + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", 2099 + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", 2100 + "dev": true, 2101 + "dependencies": { 2102 + "deep-is": "~0.1.3", 2103 + "fast-levenshtein": "~2.0.6", 2104 + "levn": "~0.3.0", 2105 + "prelude-ls": "~1.1.2", 2106 + "type-check": "~0.3.2", 2107 + "word-wrap": "~1.2.3" 2108 + }, 2109 + "engines": { 2110 + "node": ">= 0.8.0" 2111 + } 2112 + }, 2113 + "node_modules/osm-polygon-features": { 2114 + "version": "0.9.2", 2115 + "resolved": "https://registry.npmjs.org/osm-polygon-features/-/osm-polygon-features-0.9.2.tgz", 2116 + "integrity": "sha512-5zNEFCq+G6X2TDkqbKYLF1+GtWVCCLA8zX+FVhSogsiTRsGquyaGRy5cYNW4BE3ci0MKOLvNTkFNsjsCNtgz0A==" 2117 + }, 2118 + "node_modules/p-limit": { 2119 + "version": "3.1.0", 2120 + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2121 + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2122 + "dev": true, 2123 + "dependencies": { 2124 + "yocto-queue": "^0.1.0" 2125 + }, 2126 + "engines": { 2127 + "node": ">=10" 2128 + }, 2129 + "funding": { 2130 + "url": "https://github.com/sponsors/sindresorhus" 2131 + } 2132 + }, 2133 + "node_modules/p-locate": { 2134 + "version": "5.0.0", 2135 + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2136 + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2137 + "dev": true, 2138 + "dependencies": { 2139 + "p-limit": "^3.0.2" 2140 + }, 2141 + "engines": { 2142 + "node": ">=10" 2143 + }, 2144 + "funding": { 2145 + "url": "https://github.com/sponsors/sindresorhus" 2146 + } 2147 + }, 2148 + "node_modules/path-exists": { 2149 + "version": "4.0.0", 2150 + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2151 + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2152 + "dev": true, 2153 + "engines": { 2154 + "node": ">=8" 2155 + } 2156 + }, 2157 + "node_modules/path-is-absolute": { 2158 + "version": "1.0.1", 2159 + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2160 + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2161 + "dev": true, 2162 + "engines": { 2163 + "node": ">=0.10.0" 2164 + } 2165 + }, 2166 + "node_modules/path-parse": { 2167 + "version": "1.0.7", 2168 + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2169 + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2170 + "dev": true 2171 + }, 2172 + "node_modules/pbf": { 2173 + "version": "3.2.1", 2174 + "resolved": "https://registry.npmjs.org/pbf/-/pbf-3.2.1.tgz", 2175 + "integrity": "sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==", 2176 + "dependencies": { 2177 + "ieee754": "^1.1.12", 2178 + "resolve-protobuf-schema": "^2.1.0" 2179 + }, 2180 + "bin": { 2181 + "pbf": "bin/pbf" 2182 + } 2183 + }, 2184 + "node_modules/picomatch": { 2185 + "version": "2.3.1", 2186 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2187 + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2188 + "dev": true, 2189 + "engines": { 2190 + "node": ">=8.6" 2191 + }, 2192 + "funding": { 2193 + "url": "https://github.com/sponsors/jonschlinkert" 2194 + } 2195 + }, 2196 + "node_modules/prelude-ls": { 2197 + "version": "1.1.2", 2198 + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", 2199 + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", 2200 + "dev": true, 2201 + "engines": { 2202 + "node": ">= 0.8.0" 2203 + } 2204 + }, 2205 + "node_modules/process-nextick-args": { 2206 + "version": "2.0.1", 2207 + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 2208 + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", 2209 + "dev": true 2210 + }, 2211 + "node_modules/protocol-buffers-schema": { 2212 + "version": "3.6.0", 2213 + "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", 2214 + "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==" 2215 + }, 2216 + "node_modules/randombytes": { 2217 + "version": "2.1.0", 2218 + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", 2219 + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", 2220 + "dev": true, 2221 + "dependencies": { 2222 + "safe-buffer": "^5.1.0" 2223 + } 2224 + }, 2225 + "node_modules/readable-stream": { 2226 + "version": "3.6.2", 2227 + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 2228 + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 2229 + "dependencies": { 2230 + "inherits": "^2.0.3", 2231 + "string_decoder": "^1.1.1", 2232 + "util-deprecate": "^1.0.1" 2233 + }, 2234 + "engines": { 2235 + "node": ">= 6" 2236 + } 2237 + }, 2238 + "node_modules/readdirp": { 2239 + "version": "3.6.0", 2240 + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2241 + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2242 + "dev": true, 2243 + "dependencies": { 2244 + "picomatch": "^2.2.1" 2245 + }, 2246 + "engines": { 2247 + "node": ">=8.10.0" 2248 + } 2249 + }, 2250 + "node_modules/regexp.prototype.flags": { 2251 + "version": "1.4.3", 2252 + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", 2253 + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", 2254 + "dev": true, 2255 + "dependencies": { 2256 + "call-bind": "^1.0.2", 2257 + "define-properties": "^1.1.3", 2258 + "functions-have-names": "^1.2.2" 2259 + }, 2260 + "engines": { 2261 + "node": ">= 0.4" 2262 + }, 2263 + "funding": { 2264 + "url": "https://github.com/sponsors/ljharb" 2265 + } 2266 + }, 2267 + "node_modules/require-directory": { 2268 + "version": "2.1.1", 2269 + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 2270 + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 2271 + "dev": true, 2272 + "engines": { 2273 + "node": ">=0.10.0" 2274 + } 2275 + }, 2276 + "node_modules/resolve": { 2277 + "version": "1.1.7", 2278 + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", 2279 + "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==", 2280 + "dev": true 2281 + }, 2282 + "node_modules/resolve-protobuf-schema": { 2283 + "version": "2.1.0", 2284 + "resolved": "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", 2285 + "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", 2286 + "dependencies": { 2287 + "protocol-buffers-schema": "^3.3.1" 2288 + } 2289 + }, 2290 + "node_modules/resumer": { 2291 + "version": "0.0.0", 2292 + "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", 2293 + "integrity": "sha512-Fn9X8rX8yYF4m81rZCK/5VmrmsSbqS/i3rDLl6ZZHAXgC2nTAx3dhwG8q8odP/RmdLa2YrybDJaAMg+X1ajY3w==", 2294 + "dev": true, 2295 + "dependencies": { 2296 + "through": "~2.3.4" 2297 + } 2298 + }, 2299 + "node_modules/resumer/node_modules/through": { 2300 + "version": "2.3.8", 2301 + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", 2302 + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", 2303 + "dev": true 2304 + }, 2305 + "node_modules/safe-buffer": { 2306 + "version": "5.2.1", 2307 + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 2308 + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 2309 + "funding": [ 2310 + { 2311 + "type": "github", 2312 + "url": "https://github.com/sponsors/feross" 2313 + }, 2314 + { 2315 + "type": "patreon", 2316 + "url": "https://www.patreon.com/feross" 2317 + }, 2318 + { 2319 + "type": "consulting", 2320 + "url": "https://feross.org/support" 2321 + } 2322 + ] 2323 + }, 2324 + "node_modules/safe-regex-test": { 2325 + "version": "1.0.0", 2326 + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 2327 + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 2328 + "dev": true, 2329 + "dependencies": { 2330 + "call-bind": "^1.0.2", 2331 + "get-intrinsic": "^1.1.3", 2332 + "is-regex": "^1.1.4" 2333 + }, 2334 + "funding": { 2335 + "url": "https://github.com/sponsors/ljharb" 2336 + } 2337 + }, 2338 + "node_modules/serialize-javascript": { 2339 + "version": "6.0.0", 2340 + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", 2341 + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", 2342 + "dev": true, 2343 + "dependencies": { 2344 + "randombytes": "^2.1.0" 2345 + } 2346 + }, 2347 + "node_modules/side-channel": { 2348 + "version": "1.0.4", 2349 + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 2350 + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 2351 + "dev": true, 2352 + "dependencies": { 2353 + "call-bind": "^1.0.0", 2354 + "get-intrinsic": "^1.0.2", 2355 + "object-inspect": "^1.9.0" 2356 + }, 2357 + "funding": { 2358 + "url": "https://github.com/sponsors/ljharb" 2359 + } 2360 + }, 2361 + "node_modules/source-map": { 2362 + "version": "0.2.0", 2363 + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", 2364 + "integrity": "sha512-CBdZ2oa/BHhS4xj5DlhjWNHcan57/5YuvfdLf17iVmIpd9KRm+DFLmC6nBNj+6Ua7Kt3TmOjDpQT1aTYOQtoUA==", 2365 + "dev": true, 2366 + "optional": true, 2367 + "dependencies": { 2368 + "amdefine": ">=0.0.4" 2369 + }, 2370 + "engines": { 2371 + "node": ">=0.8.0" 2372 + } 2373 + }, 2374 + "node_modules/sprintf-js": { 2375 + "version": "1.1.2", 2376 + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", 2377 + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", 2378 + "dev": true 2379 + }, 2380 + "node_modules/stop-iteration-iterator": { 2381 + "version": "1.0.0", 2382 + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", 2383 + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", 2384 + "dev": true, 2385 + "dependencies": { 2386 + "internal-slot": "^1.0.4" 2387 + }, 2388 + "engines": { 2389 + "node": ">= 0.4" 2390 + } 2391 + }, 2392 + "node_modules/string_decoder": { 2393 + "version": "1.3.0", 2394 + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 2395 + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 2396 + "dependencies": { 2397 + "safe-buffer": "~5.2.0" 2398 + } 2399 + }, 2400 + "node_modules/string-width": { 2401 + "version": "4.2.3", 2402 + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2403 + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2404 + "dev": true, 2405 + "dependencies": { 2406 + "emoji-regex": "^8.0.0", 2407 + "is-fullwidth-code-point": "^3.0.0", 2408 + "strip-ansi": "^6.0.1" 2409 + }, 2410 + "engines": { 2411 + "node": ">=8" 2412 + } 2413 + }, 2414 + "node_modules/string.prototype.split": { 2415 + "version": "1.0.7", 2416 + "resolved": "https://registry.npmjs.org/string.prototype.split/-/string.prototype.split-1.0.7.tgz", 2417 + "integrity": "sha512-nKEBpIMVowgjlHVshwjhv7Tq6bp3INe+0Ib4XNjTT5RbJwIrF1t5JJ2xWrICohhCuSa6HfSZUU1EJWBFven2+Q==", 2418 + "dev": true, 2419 + "dependencies": { 2420 + "call-bind": "^1.0.2", 2421 + "define-properties": "^1.1.4", 2422 + "es-abstract": "^1.20.4", 2423 + "get-intrinsic": "^1.1.3", 2424 + "is-regex": "^1.1.4", 2425 + "regexp.prototype.flags": "^1.4.3" 2426 + }, 2427 + "funding": { 2428 + "url": "https://github.com/sponsors/ljharb" 2429 + } 2430 + }, 2431 + "node_modules/string.prototype.trim": { 2432 + "version": "1.2.7", 2433 + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", 2434 + "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", 2435 + "dev": true, 2436 + "dependencies": { 2437 + "call-bind": "^1.0.2", 2438 + "define-properties": "^1.1.4", 2439 + "es-abstract": "^1.20.4" 2440 + }, 2441 + "engines": { 2442 + "node": ">= 0.4" 2443 + }, 2444 + "funding": { 2445 + "url": "https://github.com/sponsors/ljharb" 2446 + } 2447 + }, 2448 + "node_modules/string.prototype.trimend": { 2449 + "version": "1.0.6", 2450 + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 2451 + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 2452 + "dev": true, 2453 + "dependencies": { 2454 + "call-bind": "^1.0.2", 2455 + "define-properties": "^1.1.4", 2456 + "es-abstract": "^1.20.4" 2457 + }, 2458 + "funding": { 2459 + "url": "https://github.com/sponsors/ljharb" 2460 + } 2461 + }, 2462 + "node_modules/string.prototype.trimstart": { 2463 + "version": "1.0.6", 2464 + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 2465 + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 2466 + "dev": true, 2467 + "dependencies": { 2468 + "call-bind": "^1.0.2", 2469 + "define-properties": "^1.1.4", 2470 + "es-abstract": "^1.20.4" 2471 + }, 2472 + "funding": { 2473 + "url": "https://github.com/sponsors/ljharb" 2474 + } 2475 + }, 2476 + "node_modules/strip-ansi": { 2477 + "version": "6.0.1", 2478 + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2479 + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2480 + "dev": true, 2481 + "dependencies": { 2482 + "ansi-regex": "^5.0.1" 2483 + }, 2484 + "engines": { 2485 + "node": ">=8" 2486 + } 2487 + }, 2488 + "node_modules/strip-json-comments": { 2489 + "version": "3.1.1", 2490 + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2491 + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2492 + "dev": true, 2493 + "engines": { 2494 + "node": ">=8" 2495 + }, 2496 + "funding": { 2497 + "url": "https://github.com/sponsors/sindresorhus" 2498 + } 2499 + }, 2500 + "node_modules/supports-color": { 2501 + "version": "3.2.3", 2502 + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", 2503 + "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", 2504 + "dev": true, 2505 + "dependencies": { 2506 + "has-flag": "^1.0.0" 2507 + }, 2508 + "engines": { 2509 + "node": ">=0.8.0" 2510 + } 2511 + }, 2512 + "node_modules/supports-preserve-symlinks-flag": { 2513 + "version": "1.0.0", 2514 + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 2515 + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 2516 + "dev": true, 2517 + "engines": { 2518 + "node": ">= 0.4" 2519 + }, 2520 + "funding": { 2521 + "url": "https://github.com/sponsors/ljharb" 2522 + } 2523 + }, 2524 + "node_modules/tap-parser": { 2525 + "version": "0.7.0", 2526 + "resolved": "https://registry.npmjs.org/tap-parser/-/tap-parser-0.7.0.tgz", 2527 + "integrity": "sha512-eg6Vt2kTjxJyjrt1luqrMD6jbOM2W5MCZ53ci6+9K97f/aQFI0R/01l70hTES66fTuqhMkNQQGjZESz+/7wsGA==", 2528 + "dev": true, 2529 + "dependencies": { 2530 + "inherits": "~2.0.1", 2531 + "minimist": "^0.2.0", 2532 + "readable-stream": "~1.1.11" 2533 + }, 2534 + "bin": { 2535 + "tap-parser": "bin/cmd.js" 2536 + } 2537 + }, 2538 + "node_modules/tap-parser/node_modules/isarray": { 2539 + "version": "0.0.1", 2540 + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", 2541 + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", 2542 + "dev": true 2543 + }, 2544 + "node_modules/tap-parser/node_modules/minimist": { 2545 + "version": "0.2.4", 2546 + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.2.4.tgz", 2547 + "integrity": "sha512-Pkrrm8NjyQ8yVt8Am9M+yUt74zE3iokhzbG1bFVNjLB92vwM71hf40RkEsryg98BujhVOncKm/C1xROxZ030LQ==", 2548 + "dev": true, 2549 + "funding": { 2550 + "url": "https://github.com/sponsors/ljharb" 2551 + } 2552 + }, 2553 + "node_modules/tap-parser/node_modules/readable-stream": { 2554 + "version": "1.1.14", 2555 + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", 2556 + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", 2557 + "dev": true, 2558 + "dependencies": { 2559 + "core-util-is": "~1.0.0", 2560 + "inherits": "~2.0.1", 2561 + "isarray": "0.0.1", 2562 + "string_decoder": "~0.10.x" 2563 + } 2564 + }, 2565 + "node_modules/tap-parser/node_modules/string_decoder": { 2566 + "version": "0.10.31", 2567 + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", 2568 + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", 2569 + "dev": true 2570 + }, 2571 + "node_modules/tape": { 2572 + "version": "5.6.3", 2573 + "resolved": "https://registry.npmjs.org/tape/-/tape-5.6.3.tgz", 2574 + "integrity": "sha512-cUDDGSbyoSIpdUAqbqLI/r7i/S4BHuCB9M5j7E/LrLs/x/i4zeAJ798aqo+FGo+kr9seBZwr8AkZW6rjceyAMQ==", 2575 + "dev": true, 2576 + "dependencies": { 2577 + "array.prototype.every": "^1.1.4", 2578 + "call-bind": "^1.0.2", 2579 + "deep-equal": "^2.2.0", 2580 + "defined": "^1.0.1", 2581 + "dotignore": "^0.1.2", 2582 + "for-each": "^0.3.3", 2583 + "get-package-type": "^0.1.0", 2584 + "glob": "^7.2.3", 2585 + "has": "^1.0.3", 2586 + "has-dynamic-import": "^2.0.1", 2587 + "inherits": "^2.0.4", 2588 + "is-regex": "^1.1.4", 2589 + "minimist": "^1.2.7", 2590 + "object-inspect": "^1.12.3", 2591 + "object-is": "^1.1.5", 2592 + "object-keys": "^1.1.1", 2593 + "object.assign": "^4.1.4", 2594 + "resolve": "^2.0.0-next.4", 2595 + "resumer": "^0.0.0", 2596 + "string.prototype.trim": "^1.2.7", 2597 + "through": "^2.3.8" 2598 + }, 2599 + "bin": { 2600 + "tape": "bin/tape" 2601 + }, 2602 + "funding": { 2603 + "url": "https://github.com/sponsors/ljharb" 2604 + } 2605 + }, 2606 + "node_modules/tape/node_modules/glob": { 2607 + "version": "7.2.3", 2608 + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2609 + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2610 + "dev": true, 2611 + "dependencies": { 2612 + "fs.realpath": "^1.0.0", 2613 + "inflight": "^1.0.4", 2614 + "inherits": "2", 2615 + "minimatch": "^3.1.1", 2616 + "once": "^1.3.0", 2617 + "path-is-absolute": "^1.0.0" 2618 + }, 2619 + "engines": { 2620 + "node": "*" 2621 + }, 2622 + "funding": { 2623 + "url": "https://github.com/sponsors/isaacs" 2624 + } 2625 + }, 2626 + "node_modules/tape/node_modules/resolve": { 2627 + "version": "2.0.0-next.4", 2628 + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", 2629 + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", 2630 + "dev": true, 2631 + "dependencies": { 2632 + "is-core-module": "^2.9.0", 2633 + "path-parse": "^1.0.7", 2634 + "supports-preserve-symlinks-flag": "^1.0.0" 2635 + }, 2636 + "bin": { 2637 + "resolve": "bin/resolve" 2638 + }, 2639 + "funding": { 2640 + "url": "https://github.com/sponsors/ljharb" 2641 + } 2642 + }, 2643 + "node_modules/tape/node_modules/through": { 2644 + "version": "2.3.8", 2645 + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", 2646 + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", 2647 + "dev": true 2648 + }, 2649 + "node_modules/through": { 2650 + "version": "2.2.7", 2651 + "resolved": "https://registry.npmjs.org/through/-/through-2.2.7.tgz", 2652 + "integrity": "sha512-JIR0m0ybkmTcR8URann+HbwKmodP+OE8UCbsifQDYMLD5J3em1Cdn3MYPpbEd5elGDwmP98T+WbqP/tvzA5Mjg==" 2653 + }, 2654 + "node_modules/through2": { 2655 + "version": "0.2.3", 2656 + "resolved": "https://registry.npmjs.org/through2/-/through2-0.2.3.tgz", 2657 + "integrity": "sha512-mLa8Bn2mZurjyomGKWRu3Bo2mvoQojFks9NvOK8H+k4kDJNkdEqG522KFZsEFBEl6rKkxTgFbE5+OPcgfvPEHA==", 2658 + "dev": true, 2659 + "dependencies": { 2660 + "readable-stream": "~1.1.9", 2661 + "xtend": "~2.1.1" 2662 + } 2663 + }, 2664 + "node_modules/through2/node_modules/isarray": { 2665 + "version": "0.0.1", 2666 + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", 2667 + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", 2668 + "dev": true 2669 + }, 2670 + "node_modules/through2/node_modules/readable-stream": { 2671 + "version": "1.1.14", 2672 + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", 2673 + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", 2674 + "dev": true, 2675 + "dependencies": { 2676 + "core-util-is": "~1.0.0", 2677 + "inherits": "~2.0.1", 2678 + "isarray": "0.0.1", 2679 + "string_decoder": "~0.10.x" 2680 + } 2681 + }, 2682 + "node_modules/through2/node_modules/string_decoder": { 2683 + "version": "0.10.31", 2684 + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", 2685 + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", 2686 + "dev": true 2687 + }, 2688 + "node_modules/tiny-inflate": { 2689 + "version": "1.0.3", 2690 + "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", 2691 + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==" 2692 + }, 2693 + "node_modules/tiny-osmpbf": { 2694 + "version": "0.1.0", 2695 + "resolved": "https://registry.npmjs.org/tiny-osmpbf/-/tiny-osmpbf-0.1.0.tgz", 2696 + "integrity": "sha512-Sl0xuDdM0+bnrYPhTAWnQ5eui8+2cpYCnsBxq0EFR1/IgmfB7+FiC23I8aa7tdP4AjaWvBUMK34kfXdY6C1LCQ==", 2697 + "dependencies": { 2698 + "pbf": "^3.0.4", 2699 + "tiny-inflate": "^1.0.2" 2700 + } 2701 + }, 2702 + "node_modules/to-regex-range": { 2703 + "version": "5.0.1", 2704 + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2705 + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2706 + "dev": true, 2707 + "dependencies": { 2708 + "is-number": "^7.0.0" 2709 + }, 2710 + "engines": { 2711 + "node": ">=8.0" 2712 + } 2713 + }, 2714 + "node_modules/type-check": { 2715 + "version": "0.3.2", 2716 + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", 2717 + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", 2718 + "dev": true, 2719 + "dependencies": { 2720 + "prelude-ls": "~1.1.2" 2721 + }, 2722 + "engines": { 2723 + "node": ">= 0.8.0" 2724 + } 2725 + }, 2726 + "node_modules/typed-array-length": { 2727 + "version": "1.0.4", 2728 + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 2729 + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 2730 + "dev": true, 2731 + "dependencies": { 2732 + "call-bind": "^1.0.2", 2733 + "for-each": "^0.3.3", 2734 + "is-typed-array": "^1.1.9" 2735 + }, 2736 + "funding": { 2737 + "url": "https://github.com/sponsors/ljharb" 2738 + } 2739 + }, 2740 + "node_modules/typedarray": { 2741 + "version": "0.0.6", 2742 + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", 2743 + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" 2744 + }, 2745 + "node_modules/uglify-js": { 2746 + "version": "3.17.4", 2747 + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", 2748 + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", 2749 + "dev": true, 2750 + "optional": true, 2751 + "bin": { 2752 + "uglifyjs": "bin/uglifyjs" 2753 + }, 2754 + "engines": { 2755 + "node": ">=0.8.0" 2756 + } 2757 + }, 2758 + "node_modules/unbox-primitive": { 2759 + "version": "1.0.2", 2760 + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 2761 + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 2762 + "dev": true, 2763 + "dependencies": { 2764 + "call-bind": "^1.0.2", 2765 + "has-bigints": "^1.0.2", 2766 + "has-symbols": "^1.0.3", 2767 + "which-boxed-primitive": "^1.0.2" 2768 + }, 2769 + "funding": { 2770 + "url": "https://github.com/sponsors/ljharb" 2771 + } 2772 + }, 2773 + "node_modules/util-deprecate": { 2774 + "version": "1.0.2", 2775 + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2776 + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 2777 + }, 2778 + "node_modules/which": { 2779 + "version": "1.3.1", 2780 + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 2781 + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 2782 + "dev": true, 2783 + "dependencies": { 2784 + "isexe": "^2.0.0" 2785 + }, 2786 + "bin": { 2787 + "which": "bin/which" 2788 + } 2789 + }, 2790 + "node_modules/which-boxed-primitive": { 2791 + "version": "1.0.2", 2792 + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 2793 + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 2794 + "dev": true, 2795 + "dependencies": { 2796 + "is-bigint": "^1.0.1", 2797 + "is-boolean-object": "^1.1.0", 2798 + "is-number-object": "^1.0.4", 2799 + "is-string": "^1.0.5", 2800 + "is-symbol": "^1.0.3" 2801 + }, 2802 + "funding": { 2803 + "url": "https://github.com/sponsors/ljharb" 2804 + } 2805 + }, 2806 + "node_modules/which-collection": { 2807 + "version": "1.0.1", 2808 + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", 2809 + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", 2810 + "dev": true, 2811 + "dependencies": { 2812 + "is-map": "^2.0.1", 2813 + "is-set": "^2.0.1", 2814 + "is-weakmap": "^2.0.1", 2815 + "is-weakset": "^2.0.1" 2816 + }, 2817 + "funding": { 2818 + "url": "https://github.com/sponsors/ljharb" 2819 + } 2820 + }, 2821 + "node_modules/which-typed-array": { 2822 + "version": "1.1.9", 2823 + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 2824 + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 2825 + "dev": true, 2826 + "dependencies": { 2827 + "available-typed-arrays": "^1.0.5", 2828 + "call-bind": "^1.0.2", 2829 + "for-each": "^0.3.3", 2830 + "gopd": "^1.0.1", 2831 + "has-tostringtag": "^1.0.0", 2832 + "is-typed-array": "^1.1.10" 2833 + }, 2834 + "engines": { 2835 + "node": ">= 0.4" 2836 + }, 2837 + "funding": { 2838 + "url": "https://github.com/sponsors/ljharb" 2839 + } 2840 + }, 2841 + "node_modules/word-wrap": { 2842 + "version": "1.2.3", 2843 + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 2844 + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 2845 + "dev": true, 2846 + "engines": { 2847 + "node": ">=0.10.0" 2848 + } 2849 + }, 2850 + "node_modules/wordwrap": { 2851 + "version": "1.0.0", 2852 + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", 2853 + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", 2854 + "dev": true 2855 + }, 2856 + "node_modules/workerpool": { 2857 + "version": "6.2.1", 2858 + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", 2859 + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", 2860 + "dev": true 2861 + }, 2862 + "node_modules/wrap-ansi": { 2863 + "version": "7.0.0", 2864 + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 2865 + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 2866 + "dev": true, 2867 + "dependencies": { 2868 + "ansi-styles": "^4.0.0", 2869 + "string-width": "^4.1.0", 2870 + "strip-ansi": "^6.0.0" 2871 + }, 2872 + "engines": { 2873 + "node": ">=10" 2874 + }, 2875 + "funding": { 2876 + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 2877 + } 2878 + }, 2879 + "node_modules/wrappy": { 2880 + "version": "1.0.2", 2881 + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2882 + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 2883 + "dev": true 2884 + }, 2885 + "node_modules/xtend": { 2886 + "version": "2.1.2", 2887 + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", 2888 + "integrity": "sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==", 2889 + "dev": true, 2890 + "dependencies": { 2891 + "object-keys": "~0.4.0" 2892 + }, 2893 + "engines": { 2894 + "node": ">=0.4" 2895 + } 2896 + }, 2897 + "node_modules/xtend/node_modules/object-keys": { 2898 + "version": "0.4.0", 2899 + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", 2900 + "integrity": "sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw==", 2901 + "dev": true 2902 + }, 2903 + "node_modules/y18n": { 2904 + "version": "5.0.8", 2905 + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 2906 + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 2907 + "dev": true, 2908 + "engines": { 2909 + "node": ">=10" 2910 + } 2911 + }, 2912 + "node_modules/yargs": { 2913 + "version": "16.2.0", 2914 + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", 2915 + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", 2916 + "dev": true, 2917 + "dependencies": { 2918 + "cliui": "^7.0.2", 2919 + "escalade": "^3.1.1", 2920 + "get-caller-file": "^2.0.5", 2921 + "require-directory": "^2.1.1", 2922 + "string-width": "^4.2.0", 2923 + "y18n": "^5.0.5", 2924 + "yargs-parser": "^20.2.2" 2925 + }, 2926 + "engines": { 2927 + "node": ">=10" 2928 + } 2929 + }, 2930 + "node_modules/yargs-parser": { 2931 + "version": "20.2.4", 2932 + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", 2933 + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", 2934 + "dev": true, 2935 + "engines": { 2936 + "node": ">=10" 2937 + } 2938 + }, 2939 + "node_modules/yargs-unparser": { 2940 + "version": "2.0.0", 2941 + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", 2942 + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", 2943 + "dev": true, 2944 + "dependencies": { 2945 + "camelcase": "^6.0.0", 2946 + "decamelize": "^4.0.0", 2947 + "flat": "^5.0.2", 2948 + "is-plain-obj": "^2.1.0" 2949 + }, 2950 + "engines": { 2951 + "node": ">=10" 2952 + } 2953 + }, 2954 + "node_modules/yocto-queue": { 2955 + "version": "0.1.0", 2956 + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 2957 + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 2958 + "dev": true, 2959 + "engines": { 2960 + "node": ">=10" 2961 + }, 2962 + "funding": { 2963 + "url": "https://github.com/sponsors/sindresorhus" 2964 + } 2965 + } 2966 + } 2967 + }
+14 -3
pkgs/applications/misc/rusty-psn/default.nix
··· 5 5 , makeDesktopItem 6 6 , copyDesktopItems 7 7 , pkg-config 8 + , cmake 9 + , fontconfig 10 + , glib 11 + , gtk3 12 + , freetype 8 13 , openssl 9 14 , xorg 10 15 , libGL ··· 26 31 27 32 nativeBuildInputs = [ 28 33 pkg-config 34 + ] ++ lib.optionals withGui [ 29 35 copyDesktopItems 36 + cmake 30 37 ]; 31 38 32 - buildInputs = if withGui then [ 39 + buildInputs = [ 40 + openssl 41 + ] ++ lib.optionals withGui [ 42 + fontconfig 43 + glib 44 + gtk3 45 + freetype 33 46 openssl 34 47 xorg.libxcb 35 48 xorg.libX11 ··· 39 52 xorg.libxcb 40 53 libGL 41 54 libGL.dev 42 - ] else [ 43 - openssl 44 55 ]; 45 56 46 57 buildNoDefaultFeatures = true;
+3 -3
pkgs/applications/networking/browsers/vivaldi/default.nix
··· 23 23 vivaldiName = if isSnapshot then "vivaldi-snapshot" else "vivaldi"; 24 24 in stdenv.mkDerivation rec { 25 25 pname = "vivaldi"; 26 - version = "6.0.2979.15"; 26 + version = "6.0.2979.18"; 27 27 28 28 suffix = { 29 29 aarch64-linux = "arm64"; ··· 33 33 src = fetchurl { 34 34 url = "https://downloads.vivaldi.com/${branch}/vivaldi-${branch}_${version}-1_${suffix}.deb"; 35 35 hash = { 36 - aarch64-linux = "sha256-6rETxeExtHxWrKFO0MHzjLgnaHUeREVqsOB9264jZr8="; 37 - x86_64-linux = "sha256-vvN0AxrKotphYIpkyOKHBgEOQtF4LvYBV1cB591ICbc="; 36 + aarch64-linux = "sha256-S3b0mmWsQhWDKPz34Gzb50q+wAURAFNEt6IvCqo8CMs="; 37 + x86_64-linux = "sha256-uqhXL7kndmGoOOalyQ6mVxRB3k8L11UJzADCnNakj64="; 38 38 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 39 39 }; 40 40
+2 -2
pkgs/applications/networking/cluster/nova/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "nova"; 5 - version = "3.6.2"; 5 + version = "3.6.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "FairwindsOps"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-l2HBjM5DyeWkdAwQGzPp+A3UuXXc0OTizInsVL0k/0I="; 11 + hash = "sha256-bu0iIhoRRi2dzBGGjWy9YJVSHtdO3T1NkLpGMseyK/E="; 12 12 }; 13 13 14 14 vendorHash = "sha256-YvYfSb2ZC86S2osFRG7Ep9nrgYJV0tB8fBgZQZ07t2U=";
+5 -15
pkgs/applications/networking/cluster/spark/default.nix
··· 31 31 mkdir -p $out/{lib/${untarDir}/conf,bin,/share/java} 32 32 mv * $out/lib/${untarDir} 33 33 34 - cp $out/lib/${untarDir}/conf/log4j.properties{.template,} 34 + cp $out/lib/${untarDir}/conf/log4j.properties{.template,} || \ 35 + cp $out/lib/${untarDir}/conf/log4j2.properties{.template,} 35 36 36 37 cat > $out/lib/${untarDir}/conf/spark-env.sh <<- EOF 37 38 export JAVA_HOME="${jdk}" ··· 70 71 }; 71 72 in 72 73 { 73 - spark_3_2 = spark rec { 74 + spark_3_4 = spark rec { 74 75 pname = "spark"; 75 - version = "3.2.2"; 76 - sha256 = "sha256-yKoTyD/IqvsJQs0jB67h1zqwYaLuikdoa5fYIXtvhz0="; 77 - }; 78 - spark_3_1 = spark rec { 79 - pname = "spark"; 80 - version = "3.1.3"; 81 - sha256 = "sha256-RIQyN5YjxFLfNIrETR3Vv99zsHxt77rhOXHIThCI2Y8="; 82 - }; 83 - spark_2_4 = spark rec { 84 - pname = "spark"; 85 - version = "2.4.8"; 86 - sha256 = "1mkyq0gz9fiav25vr0dba5ivp0wh0mh7kswwnx8pvsmb6wbwyfxv"; 87 - extraMeta.knownVulnerabilities = [ "CVE-2021-38296" ]; 76 + version = "3.4.0"; 77 + sha256 = "sha256-0y80dRYzb6Ceu6MlGQHtpMdzOob/TBg6kf8dtF6KyCk="; 88 78 }; 89 79 }
+8 -8
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 327 327 "vendorHash": "sha256-SvyeMKuAJ4vu++7Fx0hutx3vQvgf1sh1PFSLPRqJPjw=" 328 328 }, 329 329 "dnsimple": { 330 - "hash": "sha256-I5TUhq8OZqcLQs/jr8LB22Uc9s5M/WH9LRzV8EsgRnc=", 330 + "hash": "sha256-XLye6cuVZN9AdLuISJOw9aOSFXMdFNqrOCBGASVC2Bw=", 331 331 "homepage": "https://registry.terraform.io/providers/dnsimple/dnsimple", 332 332 "owner": "dnsimple", 333 333 "repo": "terraform-provider-dnsimple", 334 - "rev": "v1.1.0", 334 + "rev": "v1.1.1", 335 335 "spdx": "MPL-2.0", 336 - "vendorHash": "sha256-2FZWc+i4mSLDo143CULLmsVhjs2otN8bSqcfZROZPTM=" 336 + "vendorHash": "sha256-rCM+PL78zD1FYK2v9ihdLkoFwbkgtJTSEq5vKXZPAsU=" 337 337 }, 338 338 "docker": { 339 339 "hash": "sha256-UyHOI8C0eDV5YllAi9clHp/CEldHjIp3FHHMPy1rK58=", ··· 1026 1026 "vendorHash": null 1027 1027 }, 1028 1028 "snowflake": { 1029 - "hash": "sha256-ScGBo04qWjSuYXKHynn/rpd+2iKf+K+musYt/eWJfok=", 1029 + "hash": "sha256-2eS56WAEVz1nYiYmfthharyX9giEQ/8kufAwyHCG6PM=", 1030 1030 "homepage": "https://registry.terraform.io/providers/Snowflake-Labs/snowflake", 1031 1031 "owner": "Snowflake-Labs", 1032 1032 "repo": "terraform-provider-snowflake", 1033 - "rev": "v0.63.0", 1033 + "rev": "v0.64.0", 1034 1034 "spdx": "MIT", 1035 - "vendorHash": "sha256-3Ry+XQxF39lXr3Ev+KOx0GatVbD0Sjs9Jai1VPjEDBE=" 1035 + "vendorHash": "sha256-lJUkSd3v8VVoOI9ywiUh7wEPyvhF9Ip2v9kJ43hCwsI=" 1036 1036 }, 1037 1037 "sops": { 1038 1038 "hash": "sha256-D1Yzs8hDimMP9y8ZRbizEhic3vGtLcZjOVSuSMUAqPk=", ··· 1044 1044 "vendorHash": "sha256-NO1r/EWLgH1Gogru+qPeZ4sW7FuDENxzNnpLSKstnE8=" 1045 1045 }, 1046 1046 "spotinst": { 1047 - "hash": "sha256-RrnDjmzQIOR/dZjiNMqL4fw4nayLZrsaD5mtg+3OWMU=", 1047 + "hash": "sha256-dEHRN3JXncWC1fua293hKc27jjPdFvyO7p0Zx9YNfWk=", 1048 1048 "homepage": "https://registry.terraform.io/providers/spotinst/spotinst", 1049 1049 "owner": "spotinst", 1050 1050 "repo": "terraform-provider-spotinst", 1051 - "rev": "v1.116.0", 1051 + "rev": "v1.117.0", 1052 1052 "spdx": "MPL-2.0", 1053 1053 "vendorHash": "sha256-6ZxurzzOa/1TXOApQNLFUrY+Ryxc7n+JwZG76JuePGc=" 1054 1054 },
+2 -2
pkgs/applications/office/portfolio/default.nix
··· 27 27 in 28 28 stdenv.mkDerivation rec { 29 29 pname = "PortfolioPerformance"; 30 - version = "0.62.0"; 30 + version = "0.62.1"; 31 31 32 32 src = fetchurl { 33 33 url = "https://github.com/buchen/portfolio/releases/download/${version}/PortfolioPerformance-${version}-linux.gtk.x86_64.tar.gz"; 34 - hash = "sha256-V3CHp0r+3Vya9lcuCfHeVQqmy9rxlN9cs5ZShoJ9XTA="; 34 + hash = "sha256-tENX2F+kZSrltvaZm3ZaUld3es8Bt8LCpEVGxAOFVm0="; 35 35 }; 36 36 37 37 nativeBuildInputs = [
+1
pkgs/applications/science/math/labplot/default.nix
··· 101 101 homepage = "https://labplot.kde.org"; 102 102 license = with licenses; [ asl20 bsd3 cc-by-30 cc0 gpl2Only gpl2Plus gpl3Only gpl3Plus lgpl3Plus mit ]; 103 103 maintainers = with maintainers; [ hqurve ]; 104 + mainProgram = "labplot2"; 104 105 platforms = platforms.unix; 105 106 }; 106 107 }
+1 -1
pkgs/applications/version-management/git-cola/default.nix
··· 11 11 hash = "sha256-VAn4zXypOugPIVyXQ/8Yt0rCDM7hVdIY+jpmoTHqssU="; 12 12 }; 13 13 14 - buildInputs = [ qt5.qtwayland ]; 14 + buildInputs = lib.optionals stdenv.isLinux [ qt5.qtwayland ]; 15 15 propagatedBuildInputs = with python3Packages; [ git pyqt5 qtpy send2trash ]; 16 16 nativeBuildInputs = [ gettext qt5.wrapQtAppsHook ]; 17 17 nativeCheckInputs = with python3Packages; [ git pytestCheckHook ];
+38
pkgs/applications/window-managers/sway/osd.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , gtk3 6 + , gtk-layer-shell 7 + , libpulseaudio 8 + }: 9 + 10 + rustPlatform.buildRustPackage { 11 + pname = "swayosd"; 12 + version = "unstable-2023-05-09"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "ErikReider"; 16 + repo = "SwayOSD"; 17 + rev = "5c2176ae6a01a18fdc2b0f5d5f593737b5765914"; 18 + hash = "sha256-rh42J6LWgNPOWYLaIwocU1JtQnA5P1jocN3ywVOfYoc="; 19 + }; 20 + 21 + cargoHash = "sha256-ZcgrUcRQTcEYhw2mpJDuYDz3I/u/2Q+O60ajXYRMeow="; 22 + 23 + nativeBuildInputs = [ pkg-config ]; 24 + 25 + buildInputs = [ 26 + gtk3 27 + gtk-layer-shell 28 + libpulseaudio 29 + ]; 30 + 31 + meta = with lib; { 32 + description = "A GTK based on screen display for keyboard shortcuts"; 33 + homepage = "https://github.com/ErikReider/SwayOSD"; 34 + license = licenses.gpl3Plus; 35 + maintainers = with maintainers; [ aleksana ]; 36 + platforms = platforms.linux; 37 + }; 38 + }
+1 -1
pkgs/build-support/rust/build-rust-package/default.nix
··· 45 45 , buildFeatures ? [ ] 46 46 , checkFeatures ? buildFeatures 47 47 , useNextest ? false 48 - , auditable ? true 48 + , auditable ? !cargo-auditable.meta.broken 49 49 50 50 , depsExtraArgs ? {} 51 51
+2 -2
pkgs/data/misc/wireless-regdb/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "wireless-regdb"; 5 - version = "2023.02.13"; 5 + version = "2023.05.03"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.kernel.org/pub/software/network/${pname}/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-/oHoqGlNxHU6RQh6HEx+G0je5aWfX3ls43TqVQ8LLnM="; 9 + sha256 = "sha256-8lTQirN2WuriuFYiLhGpXUSu9RmmZjh3xx72j65MjBI="; 10 10 }; 11 11 12 12 dontBuild = true;
+1 -1
pkgs/desktops/plasma-5/fetch.sh
··· 1 - WGET_ARGS=( https://download.kde.org/stable/plasma/5.27.4/ -A '*.tar.xz' ) 1 + WGET_ARGS=( https://download.kde.org/stable/plasma/5.27.5/ -A '*.tar.xz' )
+236 -236
pkgs/desktops/plasma-5/srcs.nix
··· 4 4 5 5 { 6 6 aura-browser = { 7 - version = "5.27.4"; 7 + version = "5.27.5"; 8 8 src = fetchurl { 9 - url = "${mirror}/stable/plasma/5.27.4/aura-browser-5.27.4.tar.xz"; 10 - sha256 = "0m69p3pnb4kwpibqi8p4kg15sd47298hbhxgkj6ijpbd0422p4c9"; 11 - name = "aura-browser-5.27.4.tar.xz"; 9 + url = "${mirror}/stable/plasma/5.27.5/aura-browser-5.27.5.tar.xz"; 10 + sha256 = "0vqw9kxskx3d6wfgrfbhrsw2vy71zr3cwhmfk7qj4vfpmilmsvy5"; 11 + name = "aura-browser-5.27.5.tar.xz"; 12 12 }; 13 13 }; 14 14 bluedevil = { 15 - version = "5.27.4"; 15 + version = "5.27.5"; 16 16 src = fetchurl { 17 - url = "${mirror}/stable/plasma/5.27.4/bluedevil-5.27.4.tar.xz"; 18 - sha256 = "18wnr31rdpk70g7l3ig03kw99ss6qkfjmhqysrkyd6m1dpsp260h"; 19 - name = "bluedevil-5.27.4.tar.xz"; 17 + url = "${mirror}/stable/plasma/5.27.5/bluedevil-5.27.5.tar.xz"; 18 + sha256 = "1vadllkv4fjjwqb30jyawi56jflslw5nc391r0bixg55cpk5llv1"; 19 + name = "bluedevil-5.27.5.tar.xz"; 20 20 }; 21 21 }; 22 22 breeze = { 23 - version = "5.27.4"; 23 + version = "5.27.5"; 24 24 src = fetchurl { 25 - url = "${mirror}/stable/plasma/5.27.4/breeze-5.27.4.tar.xz"; 26 - sha256 = "008rdgyn10wdm393hgxvshfcqrxg6y5yr6xi0nzj4y0cd6yhxn32"; 27 - name = "breeze-5.27.4.tar.xz"; 25 + url = "${mirror}/stable/plasma/5.27.5/breeze-5.27.5.tar.xz"; 26 + sha256 = "0s68zr21wniqsdkb14lzqz0hj7hb4mbvcwrq7sf8yxf0z1ds7n3h"; 27 + name = "breeze-5.27.5.tar.xz"; 28 28 }; 29 29 }; 30 30 breeze-grub = { 31 - version = "5.27.4"; 31 + version = "5.27.5"; 32 32 src = fetchurl { 33 - url = "${mirror}/stable/plasma/5.27.4/breeze-grub-5.27.4.tar.xz"; 34 - sha256 = "0ymivw0pwia1vbf45pr04f825r8w6gsgn450s5x35144vg6lqkqb"; 35 - name = "breeze-grub-5.27.4.tar.xz"; 33 + url = "${mirror}/stable/plasma/5.27.5/breeze-grub-5.27.5.tar.xz"; 34 + sha256 = "0kkrsda7ml3cbvfxb0ng3np1bk61fnl1jndk3c13lyi0jj97na7f"; 35 + name = "breeze-grub-5.27.5.tar.xz"; 36 36 }; 37 37 }; 38 38 breeze-gtk = { 39 - version = "5.27.4"; 39 + version = "5.27.5"; 40 40 src = fetchurl { 41 - url = "${mirror}/stable/plasma/5.27.4/breeze-gtk-5.27.4.tar.xz"; 42 - sha256 = "17wr4ri1jxsfx8pcm41mp0fsszlf6wi80gxlkixghrc04p6pv5nb"; 43 - name = "breeze-gtk-5.27.4.tar.xz"; 41 + url = "${mirror}/stable/plasma/5.27.5/breeze-gtk-5.27.5.tar.xz"; 42 + sha256 = "0s69alp490yhm2v42vkngz99ji4b10n6fd36ybf72m6nnkd6v5f4"; 43 + name = "breeze-gtk-5.27.5.tar.xz"; 44 44 }; 45 45 }; 46 46 breeze-plymouth = { 47 - version = "5.27.4"; 47 + version = "5.27.5"; 48 48 src = fetchurl { 49 - url = "${mirror}/stable/plasma/5.27.4/breeze-plymouth-5.27.4.tar.xz"; 50 - sha256 = "1fzidj0dqmr5baphffr5fyxww7v6bigfvbj1hndhk5silm28krkv"; 51 - name = "breeze-plymouth-5.27.4.tar.xz"; 49 + url = "${mirror}/stable/plasma/5.27.5/breeze-plymouth-5.27.5.tar.xz"; 50 + sha256 = "0k014dvx2sw4hd63n74vjglg8dgyjjlvipxhb5cfp44x7ch52wii"; 51 + name = "breeze-plymouth-5.27.5.tar.xz"; 52 52 }; 53 53 }; 54 54 discover = { 55 - version = "5.27.4"; 55 + version = "5.27.5"; 56 56 src = fetchurl { 57 - url = "${mirror}/stable/plasma/5.27.4/discover-5.27.4.tar.xz"; 58 - sha256 = "0rpr0c87nlm3fanv5fxs930rp5mrw357cfar6d81mwacmp86d7yw"; 59 - name = "discover-5.27.4.tar.xz"; 57 + url = "${mirror}/stable/plasma/5.27.5/discover-5.27.5.tar.xz"; 58 + sha256 = "06xk780a60f4a1n2052q1wxydjvvb8nlw9r2cj7x4rg02s57hpvq"; 59 + name = "discover-5.27.5.tar.xz"; 60 60 }; 61 61 }; 62 62 drkonqi = { 63 - version = "5.27.4"; 63 + version = "5.27.5"; 64 64 src = fetchurl { 65 - url = "${mirror}/stable/plasma/5.27.4/drkonqi-5.27.4.tar.xz"; 66 - sha256 = "1lcidwcsm216acr6ybhyma64gl37n1pn7y8ilkh2iilwm1fwwfnn"; 67 - name = "drkonqi-5.27.4.tar.xz"; 65 + url = "${mirror}/stable/plasma/5.27.5/drkonqi-5.27.5.tar.xz"; 66 + sha256 = "0mmcp5fzlygcchv5v10mn39iqfxjxig9x8h74n3hq0rw7arax3a4"; 67 + name = "drkonqi-5.27.5.tar.xz"; 68 68 }; 69 69 }; 70 70 flatpak-kcm = { 71 - version = "5.27.4"; 71 + version = "5.27.5"; 72 72 src = fetchurl { 73 - url = "${mirror}/stable/plasma/5.27.4/flatpak-kcm-5.27.4.tar.xz"; 74 - sha256 = "0i917li4cm8p0qq28m4jfasy5lph58spf9bfsbp3ka1x7i25cqdd"; 75 - name = "flatpak-kcm-5.27.4.tar.xz"; 73 + url = "${mirror}/stable/plasma/5.27.5/flatpak-kcm-5.27.5.tar.xz"; 74 + sha256 = "16ms8l7cncbmll808mb0hfjsfjpg1m3f1j38y9zh1hal0rw42xbv"; 75 + name = "flatpak-kcm-5.27.5.tar.xz"; 76 76 }; 77 77 }; 78 78 kactivitymanagerd = { 79 - version = "5.27.4"; 79 + version = "5.27.5"; 80 80 src = fetchurl { 81 - url = "${mirror}/stable/plasma/5.27.4/kactivitymanagerd-5.27.4.tar.xz"; 82 - sha256 = "0wnsj5mbzjc3bylzyhgj8bw0qsf5c9jcyxmfr0h7w4hj414zvqfr"; 83 - name = "kactivitymanagerd-5.27.4.tar.xz"; 81 + url = "${mirror}/stable/plasma/5.27.5/kactivitymanagerd-5.27.5.tar.xz"; 82 + sha256 = "06dn0cnspp2qsjxa10vz81vrhhb6przr9lcfyia4gi65gdrg82d2"; 83 + name = "kactivitymanagerd-5.27.5.tar.xz"; 84 84 }; 85 85 }; 86 86 kde-cli-tools = { 87 - version = "5.27.4"; 87 + version = "5.27.5"; 88 88 src = fetchurl { 89 - url = "${mirror}/stable/plasma/5.27.4/kde-cli-tools-5.27.4.tar.xz"; 90 - sha256 = "06dl811mwssjylgkn74wjhxi98q1qacf5c2m0jfyny7hbphgv565"; 91 - name = "kde-cli-tools-5.27.4.tar.xz"; 89 + url = "${mirror}/stable/plasma/5.27.5/kde-cli-tools-5.27.5.tar.xz"; 90 + sha256 = "0rzggjsly44wxpsqqxylnzw2n3sf7s1584rf1qp1040jf0vmcx7d"; 91 + name = "kde-cli-tools-5.27.5.tar.xz"; 92 92 }; 93 93 }; 94 94 kde-gtk-config = { 95 - version = "5.27.4"; 95 + version = "5.27.5"; 96 96 src = fetchurl { 97 - url = "${mirror}/stable/plasma/5.27.4/kde-gtk-config-5.27.4.tar.xz"; 98 - sha256 = "1qi0cbx9yilbxs19nbh8iplj5hi19mllk63ldyah2vn5bgwavxcq"; 99 - name = "kde-gtk-config-5.27.4.tar.xz"; 97 + url = "${mirror}/stable/plasma/5.27.5/kde-gtk-config-5.27.5.tar.xz"; 98 + sha256 = "0a0hbif6xvlfg6jm2kmzsfjr2f73c7pxbn8amam6z4h1171bfys7"; 99 + name = "kde-gtk-config-5.27.5.tar.xz"; 100 100 }; 101 101 }; 102 102 kdecoration = { 103 - version = "5.27.4"; 103 + version = "5.27.5"; 104 104 src = fetchurl { 105 - url = "${mirror}/stable/plasma/5.27.4/kdecoration-5.27.4.tar.xz"; 106 - sha256 = "0vpshfjb2m1m4lx4sh1mhfpx70wvy6laaids9q1cip3k22i24ps1"; 107 - name = "kdecoration-5.27.4.tar.xz"; 105 + url = "${mirror}/stable/plasma/5.27.5/kdecoration-5.27.5.tar.xz"; 106 + sha256 = "0hmy621b8zb8jvanw6w6y8mgrfspkl5d92sgl5zx00lqqz2zdyzg"; 107 + name = "kdecoration-5.27.5.tar.xz"; 108 108 }; 109 109 }; 110 110 kdeplasma-addons = { 111 - version = "5.27.4"; 111 + version = "5.27.5"; 112 112 src = fetchurl { 113 - url = "${mirror}/stable/plasma/5.27.4/kdeplasma-addons-5.27.4.tar.xz"; 114 - sha256 = "128zjkbvxkibh1d5d1m5xsg3f6hrkgs1f0k371bk8dpki1wsb0ka"; 115 - name = "kdeplasma-addons-5.27.4.tar.xz"; 113 + url = "${mirror}/stable/plasma/5.27.5/kdeplasma-addons-5.27.5.tar.xz"; 114 + sha256 = "1y8gaqmbqcjvzpxk6bb7bjgycrmsnw3cjk741csb0xbw66q1ldf9"; 115 + name = "kdeplasma-addons-5.27.5.tar.xz"; 116 116 }; 117 117 }; 118 118 kgamma5 = { 119 - version = "5.27.4"; 119 + version = "5.27.5"; 120 120 src = fetchurl { 121 - url = "${mirror}/stable/plasma/5.27.4/kgamma5-5.27.4.tar.xz"; 122 - sha256 = "00jq6pc40k1dd6g38bjyb52z8xf3iz9s2n0bwvqaddcngw5wb0aa"; 123 - name = "kgamma5-5.27.4.tar.xz"; 121 + url = "${mirror}/stable/plasma/5.27.5/kgamma5-5.27.5.tar.xz"; 122 + sha256 = "1nadx1fgpz1k7c2j93wk4ipzp6pydz8ak1p9p2pv9a24753jcrkv"; 123 + name = "kgamma5-5.27.5.tar.xz"; 124 124 }; 125 125 }; 126 126 khotkeys = { 127 - version = "5.27.4"; 127 + version = "5.27.5"; 128 128 src = fetchurl { 129 - url = "${mirror}/stable/plasma/5.27.4/khotkeys-5.27.4.tar.xz"; 130 - sha256 = "08qhj9m5dkg1vgjyzm93ns8c5yvbwfa5r6z7xgn0filvlzg284l4"; 131 - name = "khotkeys-5.27.4.tar.xz"; 129 + url = "${mirror}/stable/plasma/5.27.5/khotkeys-5.27.5.tar.xz"; 130 + sha256 = "087cws4g8p0fzalspnizsd8fxk3745g9ar03pl746fqyvqk57s43"; 131 + name = "khotkeys-5.27.5.tar.xz"; 132 132 }; 133 133 }; 134 134 kinfocenter = { 135 - version = "5.27.4"; 135 + version = "5.27.5"; 136 136 src = fetchurl { 137 - url = "${mirror}/stable/plasma/5.27.4/kinfocenter-5.27.4.tar.xz"; 138 - sha256 = "15g4czd8pm4vliaax8kgy8zdgxqj73x1icy4gc09y4zwqhaclxb8"; 139 - name = "kinfocenter-5.27.4.tar.xz"; 137 + url = "${mirror}/stable/plasma/5.27.5/kinfocenter-5.27.5.tar.xz"; 138 + sha256 = "0j6w9b4pf353l0dfv8b8a90q4swylqxwx818271abs1bkq271s8b"; 139 + name = "kinfocenter-5.27.5.tar.xz"; 140 140 }; 141 141 }; 142 142 kmenuedit = { 143 - version = "5.27.4"; 143 + version = "5.27.5"; 144 144 src = fetchurl { 145 - url = "${mirror}/stable/plasma/5.27.4/kmenuedit-5.27.4.tar.xz"; 146 - sha256 = "1cx7ih68by4slrxrgf8yh49fxszfrzgfhrajk8xjgq9s34nvgarp"; 147 - name = "kmenuedit-5.27.4.tar.xz"; 145 + url = "${mirror}/stable/plasma/5.27.5/kmenuedit-5.27.5.tar.xz"; 146 + sha256 = "09qiydq3v4yl51cn0l2ndsr54m33n6x3ngz9q18j4nf4pk266qj4"; 147 + name = "kmenuedit-5.27.5.tar.xz"; 148 148 }; 149 149 }; 150 150 kpipewire = { 151 - version = "5.27.4"; 151 + version = "5.27.5"; 152 152 src = fetchurl { 153 - url = "${mirror}/stable/plasma/5.27.4/kpipewire-5.27.4.tar.xz"; 154 - sha256 = "0r9ii0mwv2d8nlq3p0g5hsp3m0j8my17ji1an7hzw5pajf340lx6"; 155 - name = "kpipewire-5.27.4.tar.xz"; 153 + url = "${mirror}/stable/plasma/5.27.5/kpipewire-5.27.5.tar.xz"; 154 + sha256 = "166xggr22k2ksnsx97kngc02r8fy0fagd2m7zghdbl5axvf6lcj1"; 155 + name = "kpipewire-5.27.5.tar.xz"; 156 156 }; 157 157 }; 158 158 kscreen = { 159 - version = "5.27.4"; 159 + version = "5.27.5"; 160 160 src = fetchurl { 161 - url = "${mirror}/stable/plasma/5.27.4/kscreen-5.27.4.tar.xz"; 162 - sha256 = "1vf5lhbm1r55l1y06sib1fdv5mbmd77ns1xmq3f0ff7mfabj8vs5"; 163 - name = "kscreen-5.27.4.tar.xz"; 161 + url = "${mirror}/stable/plasma/5.27.5/kscreen-5.27.5.tar.xz"; 162 + sha256 = "0s24halra8gnczmlj8kvbqvls1njck2abxbdsvn7gm3rkg1sm5vj"; 163 + name = "kscreen-5.27.5.tar.xz"; 164 164 }; 165 165 }; 166 166 kscreenlocker = { 167 - version = "5.27.4"; 167 + version = "5.27.5"; 168 168 src = fetchurl { 169 - url = "${mirror}/stable/plasma/5.27.4/kscreenlocker-5.27.4.tar.xz"; 170 - sha256 = "14bip40nkkj6xhmws14hqzjmw23348dpvip4vad8fdgyndcpznm9"; 171 - name = "kscreenlocker-5.27.4.tar.xz"; 169 + url = "${mirror}/stable/plasma/5.27.5/kscreenlocker-5.27.5.tar.xz"; 170 + sha256 = "14pch0w4cgsx1q18hssdnjxdbdcparyrqqr9kd5a33zdqbqhg22c"; 171 + name = "kscreenlocker-5.27.5.tar.xz"; 172 172 }; 173 173 }; 174 174 ksshaskpass = { 175 - version = "5.27.4"; 175 + version = "5.27.5"; 176 176 src = fetchurl { 177 - url = "${mirror}/stable/plasma/5.27.4/ksshaskpass-5.27.4.tar.xz"; 178 - sha256 = "0spl7v7narfpvx37f1fqyk9mbsqhymy7jvd3gbxyln0x31j041d9"; 179 - name = "ksshaskpass-5.27.4.tar.xz"; 177 + url = "${mirror}/stable/plasma/5.27.5/ksshaskpass-5.27.5.tar.xz"; 178 + sha256 = "1mqckg3j5flx02fji7lcqv2iip4nblrzf2wqq23q7six7rljdvgn"; 179 + name = "ksshaskpass-5.27.5.tar.xz"; 180 180 }; 181 181 }; 182 182 ksystemstats = { 183 - version = "5.27.4"; 183 + version = "5.27.5"; 184 184 src = fetchurl { 185 - url = "${mirror}/stable/plasma/5.27.4/ksystemstats-5.27.4.tar.xz"; 186 - sha256 = "1knykvf6ygg75y7qj8087v8sg6m54ywsk8v9d5yc7f0g8mhqkmhz"; 187 - name = "ksystemstats-5.27.4.tar.xz"; 185 + url = "${mirror}/stable/plasma/5.27.5/ksystemstats-5.27.5.tar.xz"; 186 + sha256 = "1y6w6v1vf2bphspk7a3lgwgmz6ahdycbbsrr6qn8mkf9z36q97fm"; 187 + name = "ksystemstats-5.27.5.tar.xz"; 188 188 }; 189 189 }; 190 190 kwallet-pam = { 191 - version = "5.27.4"; 191 + version = "5.27.5"; 192 192 src = fetchurl { 193 - url = "${mirror}/stable/plasma/5.27.4/kwallet-pam-5.27.4.tar.xz"; 194 - sha256 = "0v0jzkmdbwry6k70nk4gmzv758744q4qi50gry9bcz619imkz8ff"; 195 - name = "kwallet-pam-5.27.4.tar.xz"; 193 + url = "${mirror}/stable/plasma/5.27.5/kwallet-pam-5.27.5.tar.xz"; 194 + sha256 = "144ijabyj9w2yi9j5r0m945l6ysccwyq27cc0mc21mjyqa6sm6ka"; 195 + name = "kwallet-pam-5.27.5.tar.xz"; 196 196 }; 197 197 }; 198 198 kwayland-integration = { 199 - version = "5.27.4"; 199 + version = "5.27.5"; 200 200 src = fetchurl { 201 - url = "${mirror}/stable/plasma/5.27.4/kwayland-integration-5.27.4.tar.xz"; 202 - sha256 = "027y4r02g26mv5a76s2yr0fxyx7dq81md41lgjnr3gg0jdm8ajpp"; 203 - name = "kwayland-integration-5.27.4.tar.xz"; 201 + url = "${mirror}/stable/plasma/5.27.5/kwayland-integration-5.27.5.tar.xz"; 202 + sha256 = "1y8qrdyvz61zcxsp9ylz7bg6hp7wk7is5p0n3s25650dlx0grqcs"; 203 + name = "kwayland-integration-5.27.5.tar.xz"; 204 204 }; 205 205 }; 206 206 kwin = { 207 - version = "5.27.4.1"; 207 + version = "5.27.5"; 208 208 src = fetchurl { 209 - url = "${mirror}/stable/plasma/5.27.4/kwin-5.27.4.1.tar.xz"; 210 - sha256 = "1c821szi4vvxc0aw49nb2xbdgnkc1pl5hadpvc9m4l18qly1v7xk"; 211 - name = "kwin-5.27.4.1.tar.xz"; 209 + url = "${mirror}/stable/plasma/5.27.5/kwin-5.27.5.tar.xz"; 210 + sha256 = "1si01jrhxa6sfqgl2ljl5czyls5mli7b4n6yy6jiws0rb6qjc4mv"; 211 + name = "kwin-5.27.5.tar.xz"; 212 212 }; 213 213 }; 214 214 kwrited = { 215 - version = "5.27.4"; 215 + version = "5.27.5"; 216 216 src = fetchurl { 217 - url = "${mirror}/stable/plasma/5.27.4/kwrited-5.27.4.tar.xz"; 218 - sha256 = "1z07fjw3b8q7cgy7vvlh1bmx4qm609mipgm5wjf6lb63ss04nfpd"; 219 - name = "kwrited-5.27.4.tar.xz"; 217 + url = "${mirror}/stable/plasma/5.27.5/kwrited-5.27.5.tar.xz"; 218 + sha256 = "14fcby31017mmplcp5v2mfmfnlds5mgn35b725d06z584xcfrfpj"; 219 + name = "kwrited-5.27.5.tar.xz"; 220 220 }; 221 221 }; 222 222 layer-shell-qt = { 223 - version = "5.27.4"; 223 + version = "5.27.5"; 224 224 src = fetchurl { 225 - url = "${mirror}/stable/plasma/5.27.4/layer-shell-qt-5.27.4.tar.xz"; 226 - sha256 = "1znhwg86wnjrmw5lfbwarl2va90zf4b0lpafia73q0i39g0ysfiv"; 227 - name = "layer-shell-qt-5.27.4.tar.xz"; 225 + url = "${mirror}/stable/plasma/5.27.5/layer-shell-qt-5.27.5.tar.xz"; 226 + sha256 = "088xilf31485mqxw09v2h7v3dayzd19c6yipmlxpyhzhg6jnmpyc"; 227 + name = "layer-shell-qt-5.27.5.tar.xz"; 228 228 }; 229 229 }; 230 230 libkscreen = { 231 - version = "5.27.4"; 231 + version = "5.27.5"; 232 232 src = fetchurl { 233 - url = "${mirror}/stable/plasma/5.27.4/libkscreen-5.27.4.tar.xz"; 234 - sha256 = "0zps0z0j4yln2yda4sj15rn3i6y3qipb5yb4q90qm5a0iiggp7d8"; 235 - name = "libkscreen-5.27.4.tar.xz"; 233 + url = "${mirror}/stable/plasma/5.27.5/libkscreen-5.27.5.tar.xz"; 234 + sha256 = "0rgbdlchhks5bxicdc8v7388wlg5b6ms9phlp5jfh1l7iprg7br9"; 235 + name = "libkscreen-5.27.5.tar.xz"; 236 236 }; 237 237 }; 238 238 libksysguard = { 239 - version = "5.27.4"; 239 + version = "5.27.5"; 240 240 src = fetchurl { 241 - url = "${mirror}/stable/plasma/5.27.4/libksysguard-5.27.4.tar.xz"; 242 - sha256 = "1y7q4bkgpg1j9yw9glm0566fbx6vf9ccz9f46vg3zfjwa468s4p0"; 243 - name = "libksysguard-5.27.4.tar.xz"; 241 + url = "${mirror}/stable/plasma/5.27.5/libksysguard-5.27.5.tar.xz"; 242 + sha256 = "052yx04sihlvf7j94y140g9hldq9fjad9ziqdgmczvszy0xbazky"; 243 + name = "libksysguard-5.27.5.tar.xz"; 244 244 }; 245 245 }; 246 246 milou = { 247 - version = "5.27.4"; 247 + version = "5.27.5"; 248 248 src = fetchurl { 249 - url = "${mirror}/stable/plasma/5.27.4/milou-5.27.4.tar.xz"; 250 - sha256 = "1a2p3y3zcmjigwywl7k7mgwvilpyjzjnbylx8zadp0051yw6f3sd"; 251 - name = "milou-5.27.4.tar.xz"; 249 + url = "${mirror}/stable/plasma/5.27.5/milou-5.27.5.tar.xz"; 250 + sha256 = "1602imffywir1il1xsq3n413fjxg4s3w9c49z20yn1igcwz0l6qv"; 251 + name = "milou-5.27.5.tar.xz"; 252 252 }; 253 253 }; 254 254 oxygen = { 255 - version = "5.27.4"; 255 + version = "5.27.5"; 256 256 src = fetchurl { 257 - url = "${mirror}/stable/plasma/5.27.4/oxygen-5.27.4.tar.xz"; 258 - sha256 = "1sz3rnsz8qabln3jn5bg1f5vgijgmm13242k65kiksvigfdrc3p2"; 259 - name = "oxygen-5.27.4.tar.xz"; 257 + url = "${mirror}/stable/plasma/5.27.5/oxygen-5.27.5.tar.xz"; 258 + sha256 = "1gby4a9sf666i10nwjv4wswsbi34idcczz0cknfan08ahal4wxpv"; 259 + name = "oxygen-5.27.5.tar.xz"; 260 260 }; 261 261 }; 262 262 oxygen-sounds = { 263 - version = "5.27.4"; 263 + version = "5.27.5"; 264 264 src = fetchurl { 265 - url = "${mirror}/stable/plasma/5.27.4/oxygen-sounds-5.27.4.tar.xz"; 266 - sha256 = "1v44jcy0zkvpqkc6yih55j6xmb0g3pd26szk95mpjkn7jxsav8wy"; 267 - name = "oxygen-sounds-5.27.4.tar.xz"; 265 + url = "${mirror}/stable/plasma/5.27.5/oxygen-sounds-5.27.5.tar.xz"; 266 + sha256 = "0rl55k6h34bcf5pk71942m3bf831ymh4kk89xkimczq4qki33yr1"; 267 + name = "oxygen-sounds-5.27.5.tar.xz"; 268 268 }; 269 269 }; 270 270 plank-player = { 271 - version = "5.27.4"; 271 + version = "5.27.5"; 272 272 src = fetchurl { 273 - url = "${mirror}/stable/plasma/5.27.4/plank-player-5.27.4.tar.xz"; 274 - sha256 = "0650v644nvbnl9b0caa83pbq8y7jrklqzqxdlcrml6km85avhx5n"; 275 - name = "plank-player-5.27.4.tar.xz"; 273 + url = "${mirror}/stable/plasma/5.27.5/plank-player-5.27.5.tar.xz"; 274 + sha256 = "0anws5npjdqq0p94fdrqmvyc55x3vwfx8v59l10k8qmj6habarph"; 275 + name = "plank-player-5.27.5.tar.xz"; 276 276 }; 277 277 }; 278 278 plasma-bigscreen = { 279 - version = "5.27.4"; 279 + version = "5.27.5"; 280 280 src = fetchurl { 281 - url = "${mirror}/stable/plasma/5.27.4/plasma-bigscreen-5.27.4.tar.xz"; 282 - sha256 = "18jdgk3aydk394r91c279fnlhyrvmklqznxjikq25mx449wa3acp"; 283 - name = "plasma-bigscreen-5.27.4.tar.xz"; 281 + url = "${mirror}/stable/plasma/5.27.5/plasma-bigscreen-5.27.5.tar.xz"; 282 + sha256 = "1wab0l0cz5a82lgq83s9ipmjqmj5nzzfk689lbz3swxns71qx03n"; 283 + name = "plasma-bigscreen-5.27.5.tar.xz"; 284 284 }; 285 285 }; 286 286 plasma-browser-integration = { 287 - version = "5.27.4"; 287 + version = "5.27.5"; 288 288 src = fetchurl { 289 - url = "${mirror}/stable/plasma/5.27.4/plasma-browser-integration-5.27.4.tar.xz"; 290 - sha256 = "0rpljxnir2nbh4ww5ycgpdrj739cr1dg46mmfqj65h8yn60zfynk"; 291 - name = "plasma-browser-integration-5.27.4.tar.xz"; 289 + url = "${mirror}/stable/plasma/5.27.5/plasma-browser-integration-5.27.5.tar.xz"; 290 + sha256 = "09frs7yxaiqi10j9f7vnr05nk53mvx0jshjk9wlz1cibcwflb45l"; 291 + name = "plasma-browser-integration-5.27.5.tar.xz"; 292 292 }; 293 293 }; 294 294 plasma-desktop = { 295 - version = "5.27.4"; 295 + version = "5.27.5"; 296 296 src = fetchurl { 297 - url = "${mirror}/stable/plasma/5.27.4/plasma-desktop-5.27.4.tar.xz"; 298 - sha256 = "0068wcm586gv31aqjgppj1n5a81jv10q01spsxl24c91y7aiqkxr"; 299 - name = "plasma-desktop-5.27.4.tar.xz"; 297 + url = "${mirror}/stable/plasma/5.27.5/plasma-desktop-5.27.5.tar.xz"; 298 + sha256 = "1c8wx4al96vnz9p02ml8ax6dzna1xvm6gvnn2w3n93v56hqmfasg"; 299 + name = "plasma-desktop-5.27.5.tar.xz"; 300 300 }; 301 301 }; 302 302 plasma-disks = { 303 - version = "5.27.4"; 303 + version = "5.27.5"; 304 304 src = fetchurl { 305 - url = "${mirror}/stable/plasma/5.27.4/plasma-disks-5.27.4.tar.xz"; 306 - sha256 = "08w3x7hd3wkgj41g9xcaylsz8lsjv1d4pgmzq7dy436vwbiaxx4p"; 307 - name = "plasma-disks-5.27.4.tar.xz"; 305 + url = "${mirror}/stable/plasma/5.27.5/plasma-disks-5.27.5.tar.xz"; 306 + sha256 = "02s8n7da2i2zjqi2q9k8fddqr4868dqyx9bf1lyfag3bb64y447a"; 307 + name = "plasma-disks-5.27.5.tar.xz"; 308 308 }; 309 309 }; 310 310 plasma-firewall = { 311 - version = "5.27.4"; 311 + version = "5.27.5"; 312 312 src = fetchurl { 313 - url = "${mirror}/stable/plasma/5.27.4/plasma-firewall-5.27.4.tar.xz"; 314 - sha256 = "1b538c9jngyj5zg6bvih2x7nskzdn8g9g04bxdjnayldj2hb979l"; 315 - name = "plasma-firewall-5.27.4.tar.xz"; 313 + url = "${mirror}/stable/plasma/5.27.5/plasma-firewall-5.27.5.tar.xz"; 314 + sha256 = "0hav4d2pgsvzvr9lw93v3zm473gii44x012fs1gx6dgcaam90b73"; 315 + name = "plasma-firewall-5.27.5.tar.xz"; 316 316 }; 317 317 }; 318 318 plasma-integration = { 319 - version = "5.27.4"; 319 + version = "5.27.5"; 320 320 src = fetchurl { 321 - url = "${mirror}/stable/plasma/5.27.4/plasma-integration-5.27.4.tar.xz"; 322 - sha256 = "0bl99gr2clqs6wxlx0652gcypgxqw9s34yxvhc9df0fn53v9b84s"; 323 - name = "plasma-integration-5.27.4.tar.xz"; 321 + url = "${mirror}/stable/plasma/5.27.5/plasma-integration-5.27.5.tar.xz"; 322 + sha256 = "0ywzz2s46kaidzg5cagx2wp4kqndynfssz6a29czpw1811iwbvcd"; 323 + name = "plasma-integration-5.27.5.tar.xz"; 324 324 }; 325 325 }; 326 326 plasma-mobile = { 327 - version = "5.27.4"; 327 + version = "5.27.5"; 328 328 src = fetchurl { 329 - url = "${mirror}/stable/plasma/5.27.4/plasma-mobile-5.27.4.tar.xz"; 330 - sha256 = "1a05lnhnxnizzs9fswsrlddwb0629xfl3wmm2rw635gqldd0f66m"; 331 - name = "plasma-mobile-5.27.4.tar.xz"; 329 + url = "${mirror}/stable/plasma/5.27.5/plasma-mobile-5.27.5.tar.xz"; 330 + sha256 = "0h61q8nkwl5adrgm0353l2kada76760rqzwb94xdc7r9cjxjy6yc"; 331 + name = "plasma-mobile-5.27.5.tar.xz"; 332 332 }; 333 333 }; 334 334 plasma-nano = { 335 - version = "5.27.4"; 335 + version = "5.27.5"; 336 336 src = fetchurl { 337 - url = "${mirror}/stable/plasma/5.27.4/plasma-nano-5.27.4.tar.xz"; 338 - sha256 = "1z70bj5s3qkx2rbrbn9xqf4vzyj7yx9vq9givcagncxnldi1x3pa"; 339 - name = "plasma-nano-5.27.4.tar.xz"; 337 + url = "${mirror}/stable/plasma/5.27.5/plasma-nano-5.27.5.tar.xz"; 338 + sha256 = "1w6pq6wrnb3lq2jyfx9lpn11vmfka5rw4mn52cdz8997g4zyrhlj"; 339 + name = "plasma-nano-5.27.5.tar.xz"; 340 340 }; 341 341 }; 342 342 plasma-nm = { 343 - version = "5.27.4"; 343 + version = "5.27.5"; 344 344 src = fetchurl { 345 - url = "${mirror}/stable/plasma/5.27.4/plasma-nm-5.27.4.tar.xz"; 346 - sha256 = "0jr1a4d9qj43925abr36nvc9fhvyd58qhdg4w5i805p533wbzrif"; 347 - name = "plasma-nm-5.27.4.tar.xz"; 345 + url = "${mirror}/stable/plasma/5.27.5/plasma-nm-5.27.5.tar.xz"; 346 + sha256 = "0bm6ihcg5cgfzz1pcj7zg2bjm8gik3rcjj4mp03ac1v29gj4hbqm"; 347 + name = "plasma-nm-5.27.5.tar.xz"; 348 348 }; 349 349 }; 350 350 plasma-pa = { 351 - version = "5.27.4"; 351 + version = "5.27.5"; 352 352 src = fetchurl { 353 - url = "${mirror}/stable/plasma/5.27.4/plasma-pa-5.27.4.tar.xz"; 354 - sha256 = "1rpjscmfb7i9h50m9xglxf4rgca63y0i8x341jgmf5kmpm9lad7d"; 355 - name = "plasma-pa-5.27.4.tar.xz"; 353 + url = "${mirror}/stable/plasma/5.27.5/plasma-pa-5.27.5.tar.xz"; 354 + sha256 = "1241v4igi3d1n2x46vp9qgqvw2gngsk75gx3rnjnivfypxrkzay2"; 355 + name = "plasma-pa-5.27.5.tar.xz"; 356 356 }; 357 357 }; 358 358 plasma-remotecontrollers = { 359 - version = "5.27.4"; 359 + version = "5.27.5"; 360 360 src = fetchurl { 361 - url = "${mirror}/stable/plasma/5.27.4/plasma-remotecontrollers-5.27.4.tar.xz"; 362 - sha256 = "0l9n0q318720yx02whrp9qfhhwcnw261sdvyw78y9c3n4v22k31n"; 363 - name = "plasma-remotecontrollers-5.27.4.tar.xz"; 361 + url = "${mirror}/stable/plasma/5.27.5/plasma-remotecontrollers-5.27.5.tar.xz"; 362 + sha256 = "04d0rp4jpavn999lbvfni007l98i1zglwv7byrkb494zs40gqylc"; 363 + name = "plasma-remotecontrollers-5.27.5.tar.xz"; 364 364 }; 365 365 }; 366 366 plasma-sdk = { 367 - version = "5.27.4"; 367 + version = "5.27.5"; 368 368 src = fetchurl { 369 - url = "${mirror}/stable/plasma/5.27.4/plasma-sdk-5.27.4.tar.xz"; 370 - sha256 = "08fv6rnb7vc3wxkwk3xrrvb3k1gac7sncjdvk0lik6y1c7ilk27r"; 371 - name = "plasma-sdk-5.27.4.tar.xz"; 369 + url = "${mirror}/stable/plasma/5.27.5/plasma-sdk-5.27.5.tar.xz"; 370 + sha256 = "05b9n2h7qkxm5yws4mi4f929dassi6hng0p730dx5fw7fsr4a0pi"; 371 + name = "plasma-sdk-5.27.5.tar.xz"; 372 372 }; 373 373 }; 374 374 plasma-systemmonitor = { 375 - version = "5.27.4"; 375 + version = "5.27.5"; 376 376 src = fetchurl { 377 - url = "${mirror}/stable/plasma/5.27.4/plasma-systemmonitor-5.27.4.tar.xz"; 378 - sha256 = "1sy38lmkrvma4kkf96n68f65hdjvpyaszx13hynhrplsgn24fj19"; 379 - name = "plasma-systemmonitor-5.27.4.tar.xz"; 377 + url = "${mirror}/stable/plasma/5.27.5/plasma-systemmonitor-5.27.5.tar.xz"; 378 + sha256 = "0d1ficiqv7zjcc1fkh7jx4f7pcpkygk1pyfm8gsp10i0iwwm3rc2"; 379 + name = "plasma-systemmonitor-5.27.5.tar.xz"; 380 380 }; 381 381 }; 382 382 plasma-thunderbolt = { 383 - version = "5.27.4"; 383 + version = "5.27.5"; 384 384 src = fetchurl { 385 - url = "${mirror}/stable/plasma/5.27.4/plasma-thunderbolt-5.27.4.tar.xz"; 386 - sha256 = "1zzl59qyajf8xcxxs5lijx85v8gm3y4izf3qd502smq2841hbxi8"; 387 - name = "plasma-thunderbolt-5.27.4.tar.xz"; 385 + url = "${mirror}/stable/plasma/5.27.5/plasma-thunderbolt-5.27.5.tar.xz"; 386 + sha256 = "1mchvgh180m8anjznpwihay934c331fqc88l1wyiqqn6072n819i"; 387 + name = "plasma-thunderbolt-5.27.5.tar.xz"; 388 388 }; 389 389 }; 390 390 plasma-vault = { 391 - version = "5.27.4.1"; 391 + version = "5.27.5"; 392 392 src = fetchurl { 393 - url = "${mirror}/stable/plasma/5.27.4/plasma-vault-5.27.4.1.tar.xz"; 394 - sha256 = "1bh2662ghdq5qkvn4347yc2dh6c616qiax4k4yylkf37czqdil77"; 395 - name = "plasma-vault-5.27.4.1.tar.xz"; 393 + url = "${mirror}/stable/plasma/5.27.5/plasma-vault-5.27.5.tar.xz"; 394 + sha256 = "1s176masmip1qzv5am3phkwvb7yalmiasgzbx7r2rq705bh2pwkl"; 395 + name = "plasma-vault-5.27.5.tar.xz"; 396 396 }; 397 397 }; 398 398 plasma-welcome = { 399 - version = "5.27.4.1"; 399 + version = "5.27.5"; 400 400 src = fetchurl { 401 - url = "${mirror}/stable/plasma/5.27.4/plasma-welcome-5.27.4.1.tar.xz"; 402 - sha256 = "0rg80rc07q63z0ds4q8lf9yrv3ys9cvjcfwx39ibjy9nrkismrca"; 403 - name = "plasma-welcome-5.27.4.1.tar.xz"; 401 + url = "${mirror}/stable/plasma/5.27.5/plasma-welcome-5.27.5.tar.xz"; 402 + sha256 = "1ddfyi1a2ccs8ny9is0x8fjz0yh2v65sin85nrv6j483n3qqxjfb"; 403 + name = "plasma-welcome-5.27.5.tar.xz"; 404 404 }; 405 405 }; 406 406 plasma-workspace = { 407 - version = "5.27.4.1"; 407 + version = "5.27.5"; 408 408 src = fetchurl { 409 - url = "${mirror}/stable/plasma/5.27.4/plasma-workspace-5.27.4.1.tar.xz"; 410 - sha256 = "19b5mydi995aa634v57dlc769nmbz6mb2hs8c620gzabjnn0cffb"; 411 - name = "plasma-workspace-5.27.4.1.tar.xz"; 409 + url = "${mirror}/stable/plasma/5.27.5/plasma-workspace-5.27.5.tar.xz"; 410 + sha256 = "05rayz8n3qgpnddr4wpzjwgvk3if4vnnwb1ccpm841zxxsr9a2zd"; 411 + name = "plasma-workspace-5.27.5.tar.xz"; 412 412 }; 413 413 }; 414 414 plasma-workspace-wallpapers = { 415 - version = "5.27.4.1"; 415 + version = "5.27.5"; 416 416 src = fetchurl { 417 - url = "${mirror}/stable/plasma/5.27.4/plasma-workspace-wallpapers-5.27.4.1.tar.xz"; 418 - sha256 = "0sv58kp088vxqd5dfs3hvc93xlydk7nyxm1ly0xy377r2v3pnkg4"; 419 - name = "plasma-workspace-wallpapers-5.27.4.1.tar.xz"; 417 + url = "${mirror}/stable/plasma/5.27.5/plasma-workspace-wallpapers-5.27.5.tar.xz"; 418 + sha256 = "0h6871pwn000jzilhh4w5wa3s017cgkphhj4sxxpqds7q7f5x013"; 419 + name = "plasma-workspace-wallpapers-5.27.5.tar.xz"; 420 420 }; 421 421 }; 422 422 plymouth-kcm = { 423 - version = "5.27.4.1"; 423 + version = "5.27.5"; 424 424 src = fetchurl { 425 - url = "${mirror}/stable/plasma/5.27.4/plymouth-kcm-5.27.4.1.tar.xz"; 426 - sha256 = "0x20dswpy1vg1rh01m7pbicd1fn0rbh5gfaqdlizdcpnd6gjjfh5"; 427 - name = "plymouth-kcm-5.27.4.1.tar.xz"; 425 + url = "${mirror}/stable/plasma/5.27.5/plymouth-kcm-5.27.5.tar.xz"; 426 + sha256 = "0r00kmqzkzpjvp3s02h7vjiiyzfpvzn5j158jf6khvb4vywljqjr"; 427 + name = "plymouth-kcm-5.27.5.tar.xz"; 428 428 }; 429 429 }; 430 430 polkit-kde-agent = { 431 - version = "1-5.27.4.1"; 431 + version = "1-5.27.5"; 432 432 src = fetchurl { 433 - url = "${mirror}/stable/plasma/5.27.4/polkit-kde-agent-1-5.27.4.1.tar.xz"; 434 - sha256 = "1ikhrs17ffrsji6phwxhz8b6gxldksjb4625zpin8vkf07v9brr6"; 435 - name = "polkit-kde-agent-1-5.27.4.1.tar.xz"; 433 + url = "${mirror}/stable/plasma/5.27.5/polkit-kde-agent-1-5.27.5.tar.xz"; 434 + sha256 = "0brab8hn2qdnxzzx0q37m40h67s00s0zpc2wx1gzbnbl1kzv9qra"; 435 + name = "polkit-kde-agent-1-5.27.5.tar.xz"; 436 436 }; 437 437 }; 438 438 powerdevil = { 439 - version = "5.27.4.1"; 439 + version = "5.27.5"; 440 440 src = fetchurl { 441 - url = "${mirror}/stable/plasma/5.27.4/powerdevil-5.27.4.1.tar.xz"; 442 - sha256 = "0s6k7kcfa717lcjdlx61h21ldk4fg67is6r2vzcq0507gp3r8jb4"; 443 - name = "powerdevil-5.27.4.1.tar.xz"; 441 + url = "${mirror}/stable/plasma/5.27.5/powerdevil-5.27.5.tar.xz"; 442 + sha256 = "03jhzcwg1kjhm8ly3w12slgdxbyycqymijgnh3llrvzgawn8cy83"; 443 + name = "powerdevil-5.27.5.tar.xz"; 444 444 }; 445 445 }; 446 446 qqc2-breeze-style = { 447 - version = "5.27.4"; 447 + version = "5.27.5"; 448 448 src = fetchurl { 449 - url = "${mirror}/stable/plasma/5.27.4/qqc2-breeze-style-5.27.4.tar.xz"; 450 - sha256 = "0x96xa5j3726i4ci6g51hk364hhcq9xip4jrb1qssb9l0v1324n4"; 451 - name = "qqc2-breeze-style-5.27.4.tar.xz"; 449 + url = "${mirror}/stable/plasma/5.27.5/qqc2-breeze-style-5.27.5.tar.xz"; 450 + sha256 = "0vcq59m074zvcivlhk0jp7k5vywmamfdq4bsacvsjzxhlvzkvjlh"; 451 + name = "qqc2-breeze-style-5.27.5.tar.xz"; 452 452 }; 453 453 }; 454 454 sddm-kcm = { 455 - version = "5.27.4.1"; 455 + version = "5.27.5"; 456 456 src = fetchurl { 457 - url = "${mirror}/stable/plasma/5.27.4/sddm-kcm-5.27.4.1.tar.xz"; 458 - sha256 = "0l85mk8mj3g5fga6z93w5k88pkpf8wrx6vaf4f1q9lgy2dkm4ylp"; 459 - name = "sddm-kcm-5.27.4.1.tar.xz"; 457 + url = "${mirror}/stable/plasma/5.27.5/sddm-kcm-5.27.5.tar.xz"; 458 + sha256 = "16hrmbl413zy89if8yj9jsvnzv58rvs7w6y5isq33drkzvgz41an"; 459 + name = "sddm-kcm-5.27.5.tar.xz"; 460 460 }; 461 461 }; 462 462 systemsettings = { 463 - version = "5.27.4.1"; 463 + version = "5.27.5"; 464 464 src = fetchurl { 465 - url = "${mirror}/stable/plasma/5.27.4/systemsettings-5.27.4.1.tar.xz"; 466 - sha256 = "03kk2bangg9nixdwpyrp2k4wgv3r3d3ymklqfx37b7c25wpiv7az"; 467 - name = "systemsettings-5.27.4.1.tar.xz"; 465 + url = "${mirror}/stable/plasma/5.27.5/systemsettings-5.27.5.tar.xz"; 466 + sha256 = "1nxla37vr1j1h2vklm6cdzr5h5my9d3m05nr9dr1wcxsmaq4wifm"; 467 + name = "systemsettings-5.27.5.tar.xz"; 468 468 }; 469 469 }; 470 470 xdg-desktop-portal-kde = { 471 - version = "5.27.4.1"; 471 + version = "5.27.5"; 472 472 src = fetchurl { 473 - url = "${mirror}/stable/plasma/5.27.4/xdg-desktop-portal-kde-5.27.4.1.tar.xz"; 474 - sha256 = "0hrxlql13yab3w778wgdsr92g65q81qk5dvlqnn0fdc9lbfw5ipg"; 475 - name = "xdg-desktop-portal-kde-5.27.4.1.tar.xz"; 473 + url = "${mirror}/stable/plasma/5.27.5/xdg-desktop-portal-kde-5.27.5.tar.xz"; 474 + sha256 = "1aqsiwfhca7nimdflwnq86fai4lhjqpi4pi4xyp8pcgrrwj3zykw"; 475 + name = "xdg-desktop-portal-kde-5.27.5.tar.xz"; 476 476 }; 477 477 }; 478 478 }
+1
pkgs/development/compilers/dmd/binary.nix
··· 28 28 tzdata 29 29 ] ++ lib.optionals hostPlatform.isLinux [ 30 30 glibc 31 + stdenv.cc.cc.libgcc 31 32 ]; 32 33 33 34 installPhase = ''
+2 -2
pkgs/development/compilers/julia/1.9.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "julia"; 17 - version = "1.9.0-rc1"; 17 + version = "1.9.0"; 18 18 19 19 src = fetchurl { 20 20 url = "https://github.com/JuliaLang/julia/releases/download/v${version}/julia-${version}-full.tar.gz"; 21 - hash = "sha256-BjHuS1pP8S+iZndyGS8HiNzApr7xUYPRPRkX55DEy4Y="; 21 + hash = "sha256-Ii61M8ncVHNJSes6QWn1Su+hvCC+OF/Bz3mMghn+ZAA="; 22 22 }; 23 23 24 24 patches = [
+2 -2
pkgs/development/compilers/rust/rustc.nix
··· 1 - { lib, stdenv, removeReferencesTo, pkgsBuildBuild, pkgsBuildHost, pkgsBuildTarget 1 + { lib, stdenv, removeReferencesTo, pkgsBuildBuild, pkgsBuildHost, pkgsBuildTarget, targetPackages 2 2 , llvmShared, llvmSharedForBuild, llvmSharedForHost, llvmSharedForTarget, llvmPackages 3 3 , fetchurl, file, python3 4 4 , darwin, cmake, rust, rustPlatform ··· 21 21 inherit (lib) optionals optional optionalString concatStringsSep; 22 22 inherit (darwin.apple_sdk.frameworks) Security; 23 23 in stdenv.mkDerivation rec { 24 - pname = "${pkgsBuildTarget.targetPackages.stdenv.cc.targetPrefix}rustc"; 24 + pname = "${targetPackages.stdenv.cc.targetPrefix}rustc"; 25 25 inherit version; 26 26 27 27 src = fetchurl {
+5 -1
pkgs/development/embedded/openocd/default.nix
··· 3 3 , fetchurl 4 4 , pkg-config 5 5 , hidapi 6 + , jimtcl 7 + , libjaylink 6 8 , libusb1 7 9 , libgpiod 8 10 ··· 22 24 23 25 nativeBuildInputs = [ pkg-config ]; 24 26 25 - buildInputs = [ hidapi libftdi1 libusb1 ] 27 + buildInputs = [ hidapi jimtcl libftdi1 libjaylink libusb1 ] 26 28 ++ lib.optional stdenv.isLinux libgpiod; 27 29 28 30 configureFlags = [ 29 31 "--disable-werror" 32 + "--disable-internal-jimtcl" 33 + "--disable-internal-libjaylink" 30 34 "--enable-jtag_vpi" 31 35 "--enable-buspirate" 32 36 "--enable-remote-bitbang"
+50 -16
pkgs/development/interpreters/cling/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , python3 3 4 , libffi 4 5 , git 5 6 , cmake 6 7 , zlib 7 8 , fetchgit 9 + , fetchFromGitHub 8 10 , makeWrapper 9 11 , runCommand 10 - , llvmPackages_5 12 + , llvmPackages_9 11 13 , glibc 12 14 , ncurses 13 15 }: 14 16 15 17 let 18 + # The LLVM 9 headers have a couple bugs we need to patch 19 + fixedLlvmDev = runCommand "llvm-dev-${llvmPackages_9.llvm.version}" { buildInputs = [git]; } '' 20 + mkdir $out 21 + cp -r ${llvmPackages_9.llvm.dev}/include $out 22 + cd $out 23 + chmod -R u+w include 24 + git apply ${./fix-llvm-include.patch} 25 + ''; 26 + 16 27 unwrapped = stdenv.mkDerivation rec { 17 28 pname = "cling-unwrapped"; 18 - version = "0.7"; 29 + version = "0.9"; 19 30 20 31 src = fetchgit { 21 32 url = "http://root.cern/git/clang.git"; 22 - # This commit has the tag cling-0.7 so we use it, even though cpt.py 23 - # tries to use refs/tags/cling-patches-rrelease_50 24 - rev = "354b25b5d915ff3b1946479ad07f3f2768ea1621"; 25 - branchName = "cling-patches"; 26 - sha256 = "0q8q2nnvjx3v59ng0q3qqqhzmzf4pmfqqiy3rz1f3drx5w3lgyjg"; 33 + rev = "cling-v0.9"; 34 + sha256 = "sha256-ft1NUIclSiZ9lN3Z3DJCWA0U9q/K1M0TKkZr+PjsFYk="; 27 35 }; 28 36 29 - clingSrc = fetchgit { 30 - url = "http://root.cern/git/cling.git"; 31 - rev = "70163975eee5a76b45a1ca4016bfafebc9b57e07"; 32 - sha256 = "1mv2fhk857kp5rq714bq49iv7gy9fgdwibydj5wy1kq2m3sf3ysi"; 37 + clingSrc = fetchFromGitHub { 38 + owner = "root-project"; 39 + repo = "cling"; 40 + rev = "v0.9"; 41 + sha256 = "0wx3fi19wfjcph5kclf8108i436y79ddwakrcf0lgxnnxhdjyd29"; 33 42 }; 34 43 35 - preConfigure = '' 44 + prePatch = '' 36 45 echo "add_llvm_external_project(cling)" >> tools/CMakeLists.txt 46 + 37 47 cp -r $clingSrc ./tools/cling 38 48 chmod -R a+w ./tools/cling 39 49 ''; 40 50 41 - nativeBuildInputs = [ python3 git cmake llvmPackages_5.llvm.dev ]; 42 - buildInputs = [ libffi llvmPackages_5.llvm zlib ncurses ]; 51 + patches = [ 52 + ./no-clang-cpp.patch 53 + 54 + # https://github.com/root-project/root/commit/286d96b12aad8688b9d8e4b3b5df843dcfb716a8 55 + ./fix-llvm-dylib-usage.patch 56 + 57 + ./force-install-cling-targets.patch 58 + ]; 59 + 60 + nativeBuildInputs = [ python3 git cmake ]; 61 + buildInputs = [ libffi zlib ncurses ]; 43 62 44 63 strictDeps = true; 45 64 46 65 cmakeFlags = [ 66 + "-DLLVM_BINARY_DIR=${llvmPackages_9.llvm.out}" 67 + "-DLLVM_CONFIG=${llvmPackages_9.llvm.dev}/bin/llvm-config" 68 + "-DLLVM_LIBRARY_DIR=${llvmPackages_9.llvm.lib}/lib" 69 + "-DLLVM_MAIN_INCLUDE_DIR=${fixedLlvmDev}/include" 70 + "-DLLVM_TABLEGEN_EXE=${llvmPackages_9.llvm.out}/bin/llvm-tblgen" 71 + "-DLLVM_TOOLS_BINARY_DIR=${llvmPackages_9.llvm.out}/bin" 72 + "-DLLVM_TOOL_CLING_BUILD=ON" 73 + 47 74 "-DLLVM_TARGETS_TO_BUILD=host;NVPTX" 48 75 "-DLLVM_ENABLE_RTTI=ON" 49 76 50 77 # Setting -DCLING_INCLUDE_TESTS=ON causes the cling/tools targets to be built; 51 78 # see cling/tools/CMakeLists.txt 52 79 "-DCLING_INCLUDE_TESTS=ON" 80 + "-DCLANG-TOOLS=OFF" 81 + # "--trace-expand" 53 82 ]; 83 + 84 + postInstall = lib.optionalString (!stdenv.isDarwin) '' 85 + mkdir -p $out/share/Jupyter 86 + cp -r /build/clang/tools/cling/tools/Jupyter/kernel $out/share/Jupyter 87 + ''; 54 88 55 89 meta = with lib; { 56 90 description = "The Interactive C++ Interpreter"; ··· 77 111 "-nostdinc++" 78 112 "-isystem" "${lib.getDev stdenv.cc.libc}/include" 79 113 "-I" "${lib.getDev unwrapped}/include" 80 - "-I" "${lib.getLib unwrapped}/lib/clang/5.0.2/include" 114 + "-I" "${lib.getLib unwrapped}/lib/clang/9.0.1/include" 81 115 ]; 82 116 83 117 # Autodetect the include paths for the compiler used to build Cling, in the same way Cling does at
+24
pkgs/development/interpreters/cling/fix-llvm-dylib-usage.patch
··· 1 + diff --git a/tools/cling/tools/driver/CMakeLists.txt b/tools/cling/tools/driver/CMakeLists.txt 2 + --- a/tools/cling/tools/driver/CMakeLists.txt 3 + +++ b/tools/cling/tools/driver/CMakeLists.txt 4 + @@ -9,10 +9,10 @@ 5 + # Keep symbols for JIT resolution 6 + set(LLVM_NO_DEAD_STRIP 1) 7 + 8 + +set(LLVM_LINK_COMPONENTS support) 9 + + 10 + if(BUILD_SHARED_LIBS) 11 + set(LIBS 12 + - LLVMSupport 13 + - 14 + clangFrontendTool 15 + 16 + clingInterpreter 17 + @@ -25,8 +25,6 @@ if(BUILD_SHARED_LIBS) 18 + ) 19 + else() 20 + set(LIBS 21 + - LLVMSupport 22 + - 23 + clangASTMatchers 24 + clangFrontendTool
+27
pkgs/development/interpreters/cling/fix-llvm-include.patch
··· 1 + diff --git a/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h b/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h 2 + index 16202d8..3afdac3 100644 3 + --- a/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h 4 + +++ b/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h 5 + @@ -220,7 +220,7 @@ public: 6 + Error removeModule(VModuleKey K) { 7 + auto I = ModuleMap.find(K); 8 + assert(I != ModuleMap.end() && "VModuleKey K not valid here"); 9 + - auto EDM = std::move(I.second); 10 + + auto EDM = std::move(I->second); 11 + ModuleMap.erase(I); 12 + return EDM->removeModuleFromBaseLayer(BaseLayer); 13 + } 14 + diff --git a/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h b/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h 15 + index d9535ce..4c688c3 100644 16 + --- a/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h 17 + +++ b/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h 18 + @@ -472,7 +472,9 @@ private: 19 + 20 + // NB! `LinkedObjects` needs to be destroyed before `NotifyFreed` because 21 + // `~ConcreteLinkedObject` calls `NotifyFreed` 22 + +protected: 23 + std::map<VModuleKey, std::unique_ptr<LinkedObject>> LinkedObjects; 24 + +private: 25 + bool ProcessAllSections = false; 26 + }; 27 +
+16
pkgs/development/interpreters/cling/force-install-cling-targets.patch
··· 1 + diff --git a/tools/cling/cmake/modules/CMakeLists.txt b/tools/cling/cmake/modules/CMakeLists.txt 2 + --- a/tools/cling/cmake/modules/CMakeLists.txt 3 + +++ b/tools/cling/cmake/modules/CMakeLists.txt 4 + @@ -54,10 +54,8 @@ set(CLING_CONFIG_EXPORTS_FILE) 5 + 6 + if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY) 7 + get_property(cling_has_exports GLOBAL PROPERTY CLING_HAS_EXPORTS) 8 + - if(cling_has_exports) 9 + - install(EXPORT ClingTargets DESTINATION ${CLING_INSTALL_PACKAGE_DIR} 10 + - COMPONENT cling-cmake-exports) 11 + - endif() 12 + + install(EXPORT ClingTargets DESTINATION ${CLING_INSTALL_PACKAGE_DIR} 13 + + COMPONENT cling-cmake-exports) 14 + 15 + install(FILES 16 + ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/ClingConfig.cmake
+13
pkgs/development/interpreters/cling/no-clang-cpp.patch
··· 1 + diff --git a/tools/driver/CMakeLists.txt b/tools/driver/CMakeLists.txt 2 + index 590d708d83..340ae529d4 100644 3 + --- a/tools/driver/CMakeLists.txt 4 + +++ b/tools/driver/CMakeLists.txt 5 + @@ -63,7 +63,7 @@ endif() 6 + add_dependencies(clang clang-resource-headers) 7 + 8 + if(NOT CLANG_LINKS_TO_CREATE) 9 + - set(CLANG_LINKS_TO_CREATE clang++ clang-cl clang-cpp) 10 + + set(CLANG_LINKS_TO_CREATE clang++ clang-cl) 11 + endif() 12 + 13 + foreach(link ${CLANG_LINKS_TO_CREATE})
+2 -1
pkgs/development/interpreters/lua-5/build-lua-package.nix
··· 2 2 { lib 3 3 , lua 4 4 , wrapLua 5 + , luarocks 5 6 6 7 # Whether the derivation provides a lua module or not. 7 8 , luarocksCheckHook ··· 89 90 90 91 nativeBuildInputs = [ 91 92 wrapLua 92 - lua.pkgs.luarocks 93 + luarocks 93 94 ]; 94 95 95 96 inherit doCheck extraVariables rockspecFilename knownRockspec externalDeps nativeCheckInputs;
+8 -3
pkgs/development/libraries/gexiv2/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "gexiv2"; 21 - version = "0.14.0"; 21 + version = "0.14.1"; 22 22 23 23 outputs = [ "out" "dev" "devdoc" ]; 24 24 25 25 src = fetchurl { 26 26 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 27 - sha256 = "5YJ5pv8gtvZPpJlhXaXptXz2W6eFC3L6/fFyIanW1p4="; 27 + sha256 = "7D7j7DhguceJWKVdqJz3auIwWEjhL0GUW3tSEk2PbPk="; 28 28 }; 29 29 30 30 nativeBuildInputs = [ ··· 51 51 52 52 mesonFlags = [ 53 53 "-Dgtk_doc=true" 54 - "-Dpython3_girdir=${placeholder "out"}/${python3.sitePackages}/gi/overrides" 54 + "-Dtests=true" 55 55 ]; 56 + 57 + # Needed for darwin due to std::auto_ptr in exiv2 header files & enabling C++ 17 58 + # https://github.com/Exiv2/exiv2/issues/2359 59 + # https://gitlab.gnome.org/GNOME/gexiv2/-/issues/73 60 + env.NIX_CFLAGS_COMPILE = "-D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR"; 56 61 57 62 doCheck = true; 58 63
+14 -5
pkgs/development/libraries/libfsm/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 2 4 , bmake 5 + , docbook_xsl 6 + , libxslt 3 7 }: 4 8 5 9 stdenv.mkDerivation rec { 6 10 pname = "libfsm"; 7 - version = "0.1pre2442_${builtins.substring 0 8 src.rev}"; 11 + version = "0.1pre2987_${builtins.substring 0 8 src.rev}"; 8 12 9 13 src = fetchFromGitHub { 10 14 owner = "katef"; 11 15 repo = pname; 12 - rev = "9c5095f7364fa464efff6c81fad9b60b19dfcc99"; 13 - sha256 = "1bs51agvrrwqid0slq2svj2yj7kkjdsnv3xsrk8zmf1jbgza6jrm"; 16 + rev = "087e3389ad2cd5e5c40caeb40387e632567d7258"; 17 + hash = "sha256-XWrZxnRbMB609l+sYFf8VsXy3NxqBsBPUrHgKLIyu/I="; 14 18 fetchSubmodules = true; 15 19 }; 16 20 17 - nativeBuildInputs = [ bmake ]; 21 + nativeBuildInputs = [ 22 + bmake 23 + docbook_xsl 24 + libxslt # xsltproc 25 + ]; 18 26 enableParallelBuilding = true; 27 + enableParallelInstalling = false; 19 28 20 29 # note: build checks value of '$CC' to add some extra cflags, but we don't 21 30 # necessarily know which 'stdenv' someone chose, so we leave it alone (e.g.
+1 -1
pkgs/development/libraries/libjaylink/default.nix
··· 31 31 description = "libjaylink is a shared library written in C to access SEGGER J-Link and compatible devices."; 32 32 license = licenses.gpl2Plus; 33 33 maintainers = with maintainers; [ felixsinger ]; 34 - platforms = platforms.linux; 34 + platforms = platforms.unix; 35 35 }; 36 36 }
+5
pkgs/development/libraries/mapbox-gl-native/default.nix
··· 35 35 url = "https://aur.archlinux.org/cgit/aur.git/plain/fix-compilation.patch?h=mapbox-gl-native"; 36 36 hash = "sha256-KgJHyoIdKdnQo+gedns3C+mEXlaTH/UtyQsaYR1T3iI="; 37 37 }) 38 + (fetchpatch { 39 + name = "fix-narrowing-conversion.patch"; 40 + url = "https://github.com/mapbox/mapbox-gl-native/commit/2955d0e479f57a39a0af4a0fa7ca7683455cca58.patch"; 41 + hash = "sha256-Jk7OLb9/mVtc2mm0AL1h9zcSiQ54jogNI+q6ojY0HEo="; 42 + }) 38 43 ]; 39 44 40 45 postPatch = ''
+1 -1
pkgs/development/libraries/opensaml-cpp/default.nix
··· 19 19 20 20 configureFlags = [ "--with-xmltooling=${xml-tooling-c}" ]; 21 21 22 - env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ]; 22 + env.NIX_CFLAGS_COMPILE = lib.optionalString (!stdenv.isDarwin) "-std=c++14"; 23 23 24 24 enableParallelBuilding = true; 25 25
+3 -4
pkgs/development/libraries/qcoro/default.nix
··· 1 - { stdenv 2 - , gcc12Stdenv 3 - , lib 1 + { lib 2 + , stdenv 4 3 , fetchFromGitHub 5 4 , cmake 6 5 , libpthreadstubs ··· 9 8 , wrapQtAppsHook 10 9 }: 11 10 12 - gcc12Stdenv.mkDerivation rec { 11 + stdenv.mkDerivation rec { 13 12 pname = "qcoro"; 14 13 version = "0.9.0"; 15 14
+1 -1
pkgs/development/libraries/shibboleth-sp/default.nix
··· 20 20 "--with-fastcgi" 21 21 ]; 22 22 23 - env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ]; 23 + env.NIX_CFLAGS_COMPILE = lib.optionalString (!stdenv.isDarwin) "-std=c++14"; 24 24 25 25 enableParallelBuilding = true; 26 26
+1 -1
pkgs/development/libraries/xml-tooling-c/default.nix
··· 15 15 buildInputs = [ boost curl openssl log4shib xercesc xml-security-c ]; 16 16 nativeBuildInputs = [ autoreconfHook pkg-config ]; 17 17 18 - env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ]; 18 + env.NIX_CFLAGS_COMPILE = lib.optionalString (!stdenv.isDarwin) "-std=c++14"; 19 19 20 20 enableParallelBuilding = true; 21 21
+5
pkgs/development/lisp-modules/patches/log4cl-fix-build.patch
··· 1 + --- a/src/naming-sbcl.lisp 2 + +++ b/src/naming-sbcl.lisp 3 + @@ -108,1 +108,1 @@ 4 + - then (sb-c::lambda-parent lambda) 5 + + then (sb-c::lexenv-lambda (sb-c::lambda-lexenv lambda))
+3
pkgs/development/lisp-modules/ql.nix
··· 164 164 cl-readline = super.cl-readline.overrideLispAttrs (o: { 165 165 nativeLibs = [ pkgs.readline ]; 166 166 }); 167 + log4cl = super.log4cl.overrideLispAttrs (o: { 168 + patches = [ ./patches/log4cl-fix-build.patch ]; 169 + }); 167 170 md5 = super.md5.overrideLispAttrs (o: { 168 171 lispLibs = [ super.flexi-streams ]; 169 172 });
+18 -17
pkgs/development/mobile/adbfs-rootless/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, fuse, adb }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , pkg-config 5 + , fuse 6 + , android-tools 7 + }: 2 8 3 9 stdenv.mkDerivation rec { 4 10 pname = "adbfs-rootless"; 5 - version = "2016-10-02"; 11 + version = "unstable-2023-03-21"; 6 12 7 13 src = fetchFromGitHub { 8 14 owner = "spion"; 9 - repo = "adbfs-rootless"; 10 - rev = "b58963430e40c9246710a16cec58e7ffc88baa48"; 11 - sha256 = "1kjibl86k6pf7vciwaaxwv5m4q28zdpd2g7yhp71av32jq6j3wm8"; 15 + repo = pname; 16 + rev = "fd56381af4dc9ae2f09b904c295686871a46ed0f"; 17 + sha256 = "atiVjRfqvhTlm8Q+3iTNNPQiNkLIaHDLg5HZDJvpl2Q="; 12 18 }; 13 19 14 - patches = [ 15 - (fetchpatch { 16 - # https://github.com/spion/adbfs-rootless/issues/14 17 - url = "https://github.com/kronenpj/adbfs-rootless/commit/35f87ce0a7aeddaaad118daed3022e01453b838d.patch"; 18 - sha256 = "1iigla74n3hphnyx9ffli9wqk7v71ylvsxama868czlg7851jqj9"; 19 - }) 20 - ]; 20 + nativeBuildInputs = [ pkg-config ]; 21 21 22 - nativeBuildInputs = [ pkg-config ]; 23 22 buildInputs = [ fuse ]; 24 23 25 24 postPatch = '' 26 25 # very ugly way of replacing the adb calls 27 - sed -e 's|"adb |"${adb}/bin/adb |g' \ 28 - -i adbfs.cpp 26 + substituteInPlace adbfs.cpp \ 27 + --replace '"adb ' '"${android-tools}/bin/adb ' 29 28 ''; 30 29 31 30 installPhase = '' 31 + runHook preInstall 32 32 install -D adbfs $out/bin/adbfs 33 + runHook postInstall 33 34 ''; 34 35 35 36 meta = with lib; { 36 37 description = "Mount Android phones on Linux with adb, no root required"; 37 38 inherit (src.meta) homepage; 38 39 license = licenses.bsd3; 39 - maintainers = with maintainers; [ Profpatsch ]; 40 - platforms = platforms.linux; 40 + maintainers = with maintainers; [ Profpatsch aleksana ]; 41 + platforms = platforms.unix; 41 42 }; 42 43 }
+2 -2
pkgs/development/nim-packages/vmath/default.nix
··· 1 - { lib, buildNimPackage, fetchFromGitHub }: 1 + { lib, stdenv, buildNimPackage, fetchFromGitHub }: 2 2 3 3 buildNimPackage rec { 4 4 pname = "vmath"; ··· 11 11 hash = "sha256-/v0lQIOMogTxFRtbssziW4W6VhMDepM6Si8igLgcx30="; 12 12 }; 13 13 14 - doCheck = true; 14 + doCheck = !stdenv.isDarwin; 15 15 16 16 meta = with lib; 17 17 src.meta // {
+2 -2
pkgs/development/python-modules/adafruit-platformdetect/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "adafruit-platformdetect"; 10 - version = "3.45.1"; 10 + version = "3.45.2"; 11 11 format = "pyproject"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 15 15 src = fetchPypi { 16 16 pname = "Adafruit-PlatformDetect"; 17 17 inherit version; 18 - hash = "sha256-dMXHjI4J/Bp4dBpymyzgWZxBi0al3N5eY7QxVoSNdxc="; 18 + hash = "sha256-bHrFOf6Qb1z3uB5HpTq4T+TWl7YYVL849pDycHekynk="; 19 19 }; 20 20 21 21 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "ailment"; 11 - version = "9.2.49"; 11 + version = "9.2.50"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "angr"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-pKQNaPRdsjS8RHPAsZCHEm9eiCOuAxQymDowvpeg7W0="; 20 + hash = "sha256-npqwIwAUUFrwg9/+rERRhqU68GCDueTZ1N5LKFWvmms="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+8 -3
pkgs/development/python-modules/aioairzone/default.nix
··· 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 5 , pythonOlder 6 + , setuptools 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "aioairzone"; 10 - version = "0.5.3"; 11 - format = "setuptools"; 11 + version = "0.5.5"; 12 + format = "pyproject"; 12 13 13 14 disabled = pythonOlder "3.8"; 14 15 ··· 16 17 owner = "Noltari"; 17 18 repo = pname; 18 19 rev = "refs/tags/${version}"; 19 - hash = "sha256-A2jk8gXqKeQ3b2p9/bkPat1NdhUOFdJCZeSFg//D/hA="; 20 + hash = "sha256-6PBNwCfh5ryR3Jub3GDykY6lRQt9wdkV8yWkvivuQpM="; 20 21 }; 22 + 23 + nativeBuildInputs = [ 24 + setuptools 25 + ]; 21 26 22 27 propagatedBuildInputs = [ 23 28 aiohttp
+3 -12
pkgs/development/python-modules/aiolimiter/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , poetry-core 6 5 , importlib-metadata 7 6 , pytest-asyncio ··· 12 11 13 12 buildPythonPackage rec { 14 13 pname = "aiolimiter"; 15 - version = "1.0.0"; 14 + version = "1.1.0"; 16 15 format = "pyproject"; 17 16 18 17 disabled = pythonOlder "3.7"; ··· 21 20 owner = "mjpieters"; 22 21 repo = pname; 23 22 rev = "v${version}"; 24 - hash = "sha256-4wByVZoOLhrXFx9oK19GBmRcjGoJolQ3Gwx9vQV/n8s="; 23 + hash = "sha256-BpLh9utf2oJe+83rsIZeV5+MjbJ3aO5slMNVbUywQIo="; 25 24 }; 26 25 27 26 nativeBuildInputs = [ ··· 38 37 toml 39 38 ]; 40 39 41 - patches = [ 42 - # Switch to poetry-core, https://github.com/mjpieters/aiolimiter/pull/77 43 - (fetchpatch { 44 - name = "switch-to-peotry-core.patch"; 45 - url = "https://github.com/mjpieters/aiolimiter/commit/84a85eff42621b0daff8fcf6bb485db313faae0b.patch"; 46 - hash = "sha256-xUfJwLvMF2Xt/V1bKBFn/fjn1uyw7bGNo9RpWxtyr50="; 47 - }) 48 - ]; 49 - 50 40 postPatch = '' 51 41 substituteInPlace tox.ini \ 52 42 --replace " --cov=aiolimiter --cov-config=tox.ini --cov-report term-missing" "" ··· 59 49 meta = with lib; { 60 50 description = "Implementation of a rate limiter for asyncio"; 61 51 homepage = "https://github.com/mjpieters/aiolimiter"; 52 + changelog = "https://github.com/mjpieters/aiolimiter/blob/v${version}/CHANGELOG.md"; 62 53 license = with licenses; [ mit ]; 63 54 maintainers = with maintainers; [ fab ]; 64 55 };
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 32 32 33 33 buildPythonPackage rec { 34 34 pname = "angr"; 35 - version = "9.2.49"; 35 + version = "9.2.50"; 36 36 format = "pyproject"; 37 37 38 38 disabled = pythonOlder "3.8"; ··· 41 41 owner = pname; 42 42 repo = pname; 43 43 rev = "refs/tags/v${version}"; 44 - hash = "sha256-6SHg1topRXQlZ2kDCcOyPbNpGl7Na9vcOgOthQ44tCs="; 44 + hash = "sha256-lsQ0pMabd1nC9ysR38u2rlGOGY+onk3qV1V68AZBQy4="; 45 45 }; 46 46 47 47 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "archinfo"; 11 - version = "9.2.49"; 11 + version = "9.2.50"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "angr"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-FbI2XX5/gc3bTW28alT8qEEQ46UEkQf5cO37jJcFVBs="; 20 + hash = "sha256-36BWuqK6/cPPSpL4sb97+w4re65bUU3ySiCcOUXh79M="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/asyncsleepiq/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "asyncsleepiq"; 10 - version = "1.3.4"; 10 + version = "1.3.5"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-eW6iSGuaZ/cQZKN55b6tHsBPdYglxGYt7OoxV7czB8w="; 17 + hash = "sha256-CLBKFDvhErnWNEs7xWLha2QgUvKRDmj0y1CYYKri3ag="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "claripy"; 16 - version = "9.2.49"; 16 + version = "9.2.50"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "angr"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-PTlkyu8Thm81VO9HIhNUwGxDBEQedfs3RYfZW5ZEAaY="; 25 + hash = "sha256-bHo1hpLLrJVZ8BxupsavreY6JTmuGboLODT8so6Fx1c="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/cle/default.nix
··· 16 16 17 17 let 18 18 # The binaries are following the argr projects release cycle 19 - version = "9.2.49"; 19 + version = "9.2.50"; 20 20 21 21 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 22 22 binaries = fetchFromGitHub { ··· 38 38 owner = "angr"; 39 39 repo = pname; 40 40 rev = "refs/tags/v${version}"; 41 - hash = "sha256-xNYAYXKrfpvY9oYPmiR6GNaWAIUi9w1T9YznosIABSs="; 41 + hash = "sha256-pThCJlxx2IkLJhc+U5H6fSQy8QLFQr6cIILsdlEA8wM="; 42 42 }; 43 43 44 44 nativeBuildInputs = [
+3
pkgs/development/python-modules/dataset/default.nix
··· 37 37 homepage = "https://dataset.readthedocs.io"; 38 38 license = licenses.mit; 39 39 maintainers = with maintainers; [ xfnw ]; 40 + # SQLAlchemy >= 2.0.0 is unsupported 41 + # https://github.com/pudo/dataset/issues/411 42 + broken = true; 40 43 }; 41 44 }
+6
pkgs/development/python-modules/django-cryptography/default.nix
··· 3 3 , django 4 4 , django-appconf 5 5 , fetchFromGitHub 6 + , fetchpatch 6 7 , lib 7 8 , python 8 9 , pythonOlder ··· 30 31 cryptography 31 32 django 32 33 django-appconf 34 + ]; 35 + 36 + patches = [ 37 + # See: https://github.com/georgemarshall/django-cryptography/pull/88 38 + ./fix-setup-cfg.patch 33 39 ]; 34 40 35 41 pythonImportsCheck = [ "django_cryptography" ];
+16
pkgs/development/python-modules/django-cryptography/fix-setup-cfg.patch
··· 1 + diff --git a/setup.cfg b/setup.cfg 2 + index 865b4c3..577d917 100644 3 + --- a/setup.cfg 4 + +++ b/setup.cfg 5 + @@ -35,7 +35,10 @@ project_urls = 6 + Documentation = https://django-cryptography.readthedocs.io 7 + 8 + [options] 9 + -packages = django_cryptography 10 + +packages = 11 + + django_cryptography 12 + + django_cryptography.core 13 + + django_cryptography.utils 14 + python_requires = >=3.6 15 + include_package_data = True 16 + install_requires =
+2 -2
pkgs/development/python-modules/dvc-data/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "dvc-data"; 18 - version = "0.47.2"; 18 + version = "0.48.1"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.8"; ··· 24 24 owner = "iterative"; 25 25 repo = pname; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-5DbnvIScSq+bu8ki0eUwUZd9Gf3KlhD+I0/PpWfGOu0="; 27 + hash = "sha256-h4E4nwACnGPtmQjEi+O2WNvlDsfJBSngh4CYHQVxDkY="; 28 28 }; 29 29 30 30 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/lightwave/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "lightwave"; 9 - version = "0.21"; 9 + version = "0.24"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.7"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-h/ztEY473XjvUCWu6vr7FA3WSYPHaLKNMc2fpu/wRC0="; 16 + hash = "sha256-l9hwdAKrpdXj/pkrgyiuhbPaGgT6tjfoOw/TBpR+k1I="; 17 17 }; 18 18 19 19 pythonImportsCheck = [
+2 -4
pkgs/development/python-modules/nbdime/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "nbdime"; 31 - version = "3.1.1"; 31 + version = "3.2.0"; 32 32 format = "setuptools"; 33 33 34 34 disabled = pythonOlder "3.6"; 35 35 36 36 src = fetchPypi { 37 37 inherit pname version; 38 - hash = "sha256-Z3ZzIOlxN09wGhdapZq9OlVHIwOdOfrpCOctFjMNZIs="; 38 + hash = "sha256-5Q0aDPZy4CNW4Q5tPQrqjoYSpTSubhub/VmsO2DEBes="; 39 39 }; 40 40 41 41 nativeBuildInputs = [ ··· 92 92 description = "Tools for diffing and merging of Jupyter notebooks."; 93 93 license = licenses.bsd3; 94 94 maintainers = with maintainers; [ tbenst ]; 95 - # https://github.com/jupyter/nbdime/issues/645 96 - broken = lib.versionAtLeast jupyter-server.version "2"; 97 95 }; 98 96 }
+4 -1
pkgs/development/python-modules/netutils/default.nix
··· 44 44 "test_is_fqdn_resolvable" 45 45 "test_fqdn_to_ip" 46 46 "test_tcp_ping" 47 - # Skip SPhinx test 47 + # Skip Sphinx test 48 48 "test_sphinx_build" 49 + # OSError: [Errno 22] Invalid argument 50 + "test_compare_type5" 51 + "test_encrypt_type5" 49 52 ]; 50 53 51 54 meta = with lib; {
+4 -15
pkgs/development/python-modules/nox/default.nix
··· 3 3 , buildPythonPackage 4 4 , colorlog 5 5 , fetchFromGitHub 6 - , fetchpatch 7 - , setuptools 6 + , hatchling 8 7 , importlib-metadata 9 8 , jinja2 10 9 , packaging ··· 17 16 18 17 buildPythonPackage rec { 19 18 pname = "nox"; 20 - version = "2022.11.21"; 19 + version = "2023.04.22"; 21 20 format = "pyproject"; 22 21 23 22 disabled = pythonOlder "3.7"; ··· 26 25 owner = "wntrblm"; 27 26 repo = pname; 28 27 rev = "refs/tags/${version}"; 29 - hash = "sha256-N70yBZyrtdQvgaJzkskG3goHit8eH0di9jHycuAwzfU="; 28 + hash = "sha256-WuyNp3jxIktI72zbk+1CK8xflTKrYE5evn/gVdMx+cQ="; 30 29 }; 31 30 32 - patches = [ 33 - # Remove rogue mocking of py._path, https://github.com/wntrblm/nox/pull/677 34 - (fetchpatch { 35 - name = "remove-py-pyth.patch"; 36 - url = "https://github.com/wntrblm/nox/commit/44d06b679761e21d76bb96b2b8ffe0ffbe3d4fd0.patch"; 37 - hash = "sha256-KRDVwbBMBd4GdiAcGJyS7DTNUw3Pumt0JO1igx6npnc="; 38 - }) 39 - ]; 40 - 41 31 nativeBuildInputs = [ 42 - setuptools 32 + hatchling 43 33 ]; 44 34 45 35 propagatedBuildInputs = [ ··· 51 41 typing-extensions 52 42 importlib-metadata 53 43 ]; 54 - 55 44 56 45 checkInputs = [ 57 46 jinja2
+2 -2
pkgs/development/python-modules/pontos/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "pontos"; 20 - version = "23.5.0"; 20 + version = "23.5.1"; 21 21 format = "pyproject"; 22 22 23 23 disabled = pythonOlder "3.9"; ··· 26 26 owner = "greenbone"; 27 27 repo = pname; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-GboOp0lsJ5nsZ6PIUqqCVLmroppKFR/xBnd9DqNw030="; 29 + hash = "sha256-nUVJjBebHOY0/oN/Cl2HdaLGnDVgLsUK7Yd+johP1PM="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+6
pkgs/development/python-modules/pygtfs/default.nix
··· 22 22 hash = "sha256-sGJwtf8DVIrE4hcU3IksnyAAt8yf67UBJIiVILDSsv8="; 23 23 }; 24 24 25 + postPatch = '' 26 + # https://github.com/jarondl/pygtfs/pull/72 27 + substituteInPlace setup.py \ 28 + --replace "pytz>=2012d" "pytz" 29 + ''; 30 + 25 31 nativeBuildInputs = [ 26 32 setuptools-scm 27 33 ];
+2 -2
pkgs/development/python-modules/python-roborock/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "python-roborock"; 19 - version = "0.13.4"; 19 + version = "0.15.0"; 20 20 format = "pyproject"; 21 21 22 22 disabled = pythonOlder "3.7"; ··· 25 25 owner = "humbertogontijo"; 26 26 repo = "python-roborock"; 27 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-gR8fp2ppVxc1ALRNQn+I8oXZWkQN5yd5vQlnATp6PoM="; 28 + hash = "sha256-Cyp/uCSQTDB21v+nRu73gfJgTGm3qvdkyXXMPXMsMVA="; 29 29 }; 30 30 31 31 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pytrafikverket/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pytrafikverket"; 12 - version = "0.3.1"; 12 + version = "0.3.3"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-foTIzWk/Y1H6OK+OAIU5VPlb/+gevc8WP9TzpYtnWvM="; 19 + hash = "sha256-Lq6YAYScBYRA2ltv+ohWfMasqohCH5zrnCi+sQbQWLI="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pyvex"; 16 - version = "9.2.49"; 16 + version = "9.2.50"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-RtTejAkyvFLOr2zA7AKJUkz3Zjhxsz8ippn64T37qXU="; 23 + hash = "sha256-DfC1POGV6bR3p0LqZBfmX2BkFvhdn4QjHgZkDwznSyE="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pyvicare/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pyvicare"; 13 - version = "2.27.1"; 13 + version = "2.27.2"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "somm15"; 20 20 repo = "PyViCare"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-PlXVsDLCEBjsll9cXPJqvNSFyjtGol9jXYWzaYHWNw4="; 22 + hash = "sha256-BLvHZRIHj+HysdGcq51Ry3unbT2BQd7lwslAo9n9SdY="; 23 23 }; 24 24 25 25 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+61
pkgs/development/python-modules/rouge-score/default.nix
··· 1 + { lib 2 + , fetchPypi 3 + , fetchFromGitHub 4 + , python 5 + , buildPythonPackage 6 + , absl-py 7 + , nltk 8 + , numpy 9 + , six 10 + , pytestCheckHook 11 + , pythonOlder 12 + }: 13 + let 14 + testdata = fetchFromGitHub { 15 + owner = "google-research"; 16 + repo = "google-research"; 17 + sparseCheckout = [ "rouge/testdata" ]; 18 + rev = "1d4d2f1aa6f2883a790d2ae46a6ee8ab150d8f31"; 19 + hash = "sha256-ojqk6U2caS7Xz4iGUC9aQVHrKb2QNvMlPuQAL/jJat0="; 20 + }; 21 + in buildPythonPackage rec { 22 + pname = "rouge-score"; 23 + version = "0.1.2"; 24 + format = "setuptools"; 25 + disabled = pythonOlder "3.7"; 26 + 27 + src = fetchPypi { 28 + pname = "rouge_score"; 29 + inherit version; 30 + extension = "tar.gz"; 31 + hash = "sha256-x9TaJoPmjJq/ATXvkV1jpGZDZm+EjlWKG59+rRf/DwQ="; 32 + }; 33 + 34 + # the tar file from pypi doesn't come with the test data 35 + postPatch = '' 36 + substituteInPlace rouge_score/test_util.py \ 37 + --replace 'os.path.join(os.path.dirname(__file__), "testdata")' '"${testdata}/rouge/testdata/"' 38 + ''; 39 + 40 + propagatedBuildInputs = [ absl-py nltk numpy six ]; 41 + 42 + nativeCheckInputs = [ pytestCheckHook ]; 43 + 44 + doCheck = true; 45 + 46 + disabledTests = [ 47 + # https://github.com/google-research/google-research/issues/1203 48 + "testRougeLSumSentenceSplitting" 49 + # tries to download external tokenizers via nltk 50 + "testRougeLsumLarge" 51 + ]; 52 + 53 + pythonImportsCheck = [ "rouge_score" ]; 54 + 55 + meta = { 56 + description = "Python ROUGE Implementation"; 57 + homepage = "https://github.com/google-research/google-research/tree/master/rouge"; 58 + license = lib.licenses.asl20; 59 + maintainers = with lib.maintainers; [ nviets ]; 60 + }; 61 + }
+4
pkgs/development/python-modules/ruyaml/default.nix
··· 37 37 pytestCheckHook 38 38 ]; 39 39 40 + pytestFlagsArray = [ 41 + "-W" "ignore::DeprecationWarning" 42 + ]; 43 + 40 44 pythonImportsCheck = [ 41 45 "ruyaml" 42 46 ];
+3 -2
pkgs/development/python-modules/samsungtvws/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "samsungtvws"; 26 - version = "2.5.0"; 26 + version = "2.6.0"; 27 27 format = "setuptools"; 28 28 disabled = isPy27; 29 29 ··· 31 31 owner = "xchwarze"; 32 32 repo = "samsung-tv-ws-api"; 33 33 rev = "v${version}"; 34 - hash = "sha256-AimG5tyTRBETpivC2BwCuoR4o7y98YT6u5sogJlcmoo="; 34 + hash = "sha256-mkjfimzu7paz+ZskartL052AfUBtL1xU0eOlrHgD1UE="; 35 35 }; 36 36 37 37 propagatedBuildInputs = [ ··· 63 63 meta = with lib; { 64 64 description = "Samsung Smart TV WS API wrapper"; 65 65 homepage = "https://github.com/xchwarze/samsung-tv-ws-api"; 66 + changelog = "https://github.com/xchwarze/samsung-tv-ws-api/releases/tag/v${version}"; 66 67 license = licenses.mit; 67 68 maintainers = with maintainers; [ hexa ]; 68 69 };
+2 -8
pkgs/development/python-modules/scrapy/default.nix
··· 31 31 32 32 buildPythonPackage rec { 33 33 pname = "scrapy"; 34 - version = "2.8.0"; 34 + version = "2.9.0"; 35 35 format = "setuptools"; 36 36 37 37 disabled = pythonOlder "3.7"; ··· 39 39 src = fetchPypi { 40 40 inherit version; 41 41 pname = "Scrapy"; 42 - hash = "sha256-gHGsbGXxhewsdv6FCflNmf6ggFGf3CBvkIqSDV4F/kM="; 42 + hash = "sha256-VkyXK1blS4MUHzlc4/aiW/4gk9YdE/m4HQU4ThnbmNo="; 43 43 }; 44 44 45 45 nativeBuildInputs = [ ··· 75 75 ]; 76 76 77 77 LC_ALL = "en_US.UTF-8"; 78 - 79 - preCheck = '' 80 - # Disable doctest plugin because it causes pytest to hang 81 - substituteInPlace pytest.ini \ 82 - --replace "--doctest-modules" "" 83 - ''; 84 78 85 79 disabledTestPaths = [ 86 80 "tests/test_proxy_connect.py"
+3
pkgs/development/python-modules/snowflake-sqlalchemy/default.nix
··· 38 38 homepage = "https://github.com/snowflakedb/snowflake-sqlalchemy"; 39 39 license = licenses.asl20; 40 40 maintainers = [ ]; 41 + 42 + # https://github.com/snowflakedb/snowflake-sqlalchemy/issues/380 43 + broken = versionAtLeast sqlalchemy.version "2"; 41 44 }; 42 45 }
+2 -2
pkgs/development/python-modules/sonos-websocket/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "sonos-websocket"; 12 - version = "0.1.0"; 12 + version = "0.1.1"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "jjlawren"; 19 19 repo = "sonos-websocket"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-Pb+L+823Clka0IjVMVEx4A0tJsI1IUhrFbx5Jy+xkgg="; 21 + hash = "sha256-8fHHaHvJKZOnzSaclt+TSQgcP2O6fmjU3+cF1nJpjOI="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+3
pkgs/development/python-modules/sqlalchemy-continuum/default.nix
··· 74 74 changelog = "https://github.com/kvesteri/sqlalchemy-continuum/blob/${version}/CHANGES.rst"; 75 75 license = licenses.bsd3; 76 76 maintainers = with maintainers; [ ]; 77 + 78 + # https://github.com/kvesteri/sqlalchemy-continuum/issues/326 79 + broken = versionAtLeast sqlalchemy.version "2"; 77 80 }; 78 81 }
+3 -3
pkgs/development/python-modules/sqlalchemy-jsonfield/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "sqlalchemy-jsonfield"; 17 - version = "1.0.1.post0"; 17 + version = "1.0.1.post0+2023-04-24"; 18 18 format = "setuptools"; 19 19 20 20 disabled = pythonOlder "3.7"; ··· 22 22 src = fetchFromGitHub { 23 23 owner = "penguinolog"; 24 24 repo = "sqlalchemy_jsonfield"; 25 - rev = "refs/tags/${version}"; 26 - hash = "sha256-dSvqUXZzr+s/v8QEtqrv6slI7p1akXwAxi68D9ctyuU="; 25 + rev = "a1efda9755055c1d382257fb4ef78006b713d07e"; 26 + hash = "sha256-6l4LEGpA8dKPw8M4quStd1nWyshMNiwQojBCxKwRRXA="; 27 27 }; 28 28 29 29 SETUPTOOLS_SCM_PRETEND_VERSION = "v${version}";
+6
pkgs/development/python-modules/telethon-session-sqlalchemy/default.nix
··· 23 23 description = "SQLAlchemy backend for Telethon session storage"; 24 24 license = licenses.mit; 25 25 maintainers = with maintainers; [ nyanloutre ]; 26 + 27 + # Package requires SQLAlchemy <2 28 + # https://github.com/tulir/telethon-session-sqlalchemy/blob/d498503ddde332e190bfa47e70f0bfa59fe6b5ef/setup.py#L17 29 + # Repo is archived and so this is unlikely to change unless someone forks 30 + # and takes over development 31 + broken = versionAtLeast sqlalchemy.version "2"; 26 32 }; 27 33 }
+1
pkgs/development/python-modules/theano-pymc/default.nix
··· 44 44 homepage = "https://github.com/majidaldo/Theano-PyMC"; 45 45 license = lib.licenses.asl20; 46 46 maintainers = with lib.maintainers; [ nidabdella ]; 47 + broken = true; 47 48 }; 48 49 }
+1
pkgs/development/python-modules/theano/default.nix
··· 100 100 description = "A Python library for large-scale array computation"; 101 101 license = licenses.bsd3; 102 102 maintainers = [ ]; 103 + broken = true; 103 104 }; 104 105 }
+2 -2
pkgs/development/python-modules/upb-lib/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "upb-lib"; 11 - version = "0.5.3"; 11 + version = "0.5.4"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 pname = "upb_lib"; 17 17 inherit version; 18 - hash = "sha256-I1lnIr8ptDCyK8r0bvFWFPUGRwoMsQcNnSCSwzdt1Bc="; 18 + hash = "sha256-KEnSADj+sQtz37Xbi6fXoe2TN+F5Z9SYnlvCgXtxVnk="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 22 23 23 buildPythonApplication rec { 24 24 pname = "checkov"; 25 - version = "2.3.224"; 25 + version = "2.3.234"; 26 26 format = "setuptools"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "bridgecrewio"; 30 30 repo = pname; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-WvNGHFAGJfW0IutlIulxNTYG4q/pzd5Bn5AKyh1o24w="; 32 + hash = "sha256-PLeqYD9aIv/nmFvfW2QjDz1xDD2PIFUvr9lkQ2Rh6k8="; 33 33 }; 34 34 35 35 patches = [
+3 -3
pkgs/development/tools/benthos/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "benthos"; 8 - version = "4.14.0"; 8 + version = "4.15.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "benthosdev"; 12 12 repo = "benthos"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-i+B5SfIfaAkZNKftD5iMObsRostwDThu+C1gEAir4Sc="; 14 + hash = "sha256-RqfTDE4dcVUegiaHsJMm9z9WV2dxFpgT/5LlM5105Oc="; 15 15 }; 16 16 17 - vendorHash = "sha256-mRT/23ieJbN5EjcMH1J9E/zYaiUb0TCRkp7PGlMV4jA="; 17 + vendorHash = "sha256-jfRmzCrw0qZJqt9tHkr/FmLWEAc911Z1hmk+nc6Lyb4="; 18 18 19 19 doCheck = false; 20 20
+2 -2
pkgs/development/tools/build-managers/bmake/default.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "bmake"; 13 - version = "20230126"; 13 + version = "20230414"; 14 14 15 15 src = fetchurl { 16 16 url = "http://www.crufty.net/ftp/pub/sjg/${finalAttrs.pname}-${finalAttrs.version}.tar.gz"; 17 - hash = "sha256-hk9yGFgs95Dsc7ILcQVCXLn/ozUiJUF3LwMTMGtqC8Q="; 17 + hash = "sha256-KcsdJqrn3p3vkr2us6rUUg6JlRzpey518LibrhuVOZ8="; 18 18 }; 19 19 20 20 # Make tests work with musl
+3 -3
pkgs/development/tools/conftest/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "conftest"; 9 - version = "0.41.0"; 9 + version = "0.42.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "open-policy-agent"; 13 13 repo = "conftest"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-uT0IpoBC4gxshjiKMwzZUApudHCGGh1AF+d6DKJ9GXo="; 15 + hash = "sha256-G17ehJlWLiFgH7g4KBzr/MJfP27/F2ESPOEMsHdVh7s="; 16 16 }; 17 - vendorHash = "sha256-ucHMCKwtei+2r8P5BdcRPyLqYNStBo8jYOdVI+0adas="; 17 + vendorHash = "sha256-v+OElsOgA5yzs9zOEntpCHIzekmANWTyYjIbsfjzkwo="; 18 18 19 19 ldflags = [ 20 20 "-s"
+73
pkgs/development/tools/database/surrealdb-migrations/default.nix
··· 1 + { lib 2 + , stdenv 3 + , rustPlatform 4 + , fetchFromGitHub 5 + , testers 6 + , Security 7 + , surrealdb-migrations 8 + , nix-update-script 9 + }: 10 + 11 + let 12 + pname = "surrealdb-migrations"; 13 + version = "0.9.5"; 14 + in 15 + rustPlatform.buildRustPackage rec { 16 + inherit pname version; 17 + 18 + src = fetchFromGitHub { 19 + owner = "Odonno"; 20 + repo = pname; 21 + rev = "v${version}"; 22 + sha256 = "sha256-raDWqdOid4WSl6Ads8dmh7KI6NMWZrSwGfh+wbd/Vao="; 23 + }; 24 + 25 + cargoSha256 = "sha256-1+cvOhDeH9vx/8J1RwKLPdkBmqBKFmbNXv3H44pZfj0="; 26 + 27 + 28 + # nativeBuildInputs = [ 29 + # pkg-config 30 + # # needed on top of LIBCLANG_PATH to compile rquickjs 31 + # llvmPackages.clang 32 + # ]; 33 + 34 + buildInputs = [ ] 35 + ++ lib.optionals stdenv.isDarwin [ Security ]; 36 + 37 + # Error: No such file or directory (os error 2) 38 + # failures: 39 + # cli::apply::apply_initial_migrations 40 + # cli::apply::apply_initial_schema_changes 41 + # cli::apply::apply_new_migrations 42 + # cli::apply::apply_new_schema_changes 43 + # cli::apply::apply_should_skip_events_if_no_events_folder 44 + # cli::apply::apply_with_db_configuration 45 + # cli::apply::apply_with_skipped_migrations 46 + # cli::list::list_blog_migrations 47 + # cli::list::list_empty_migrations 48 + # library::list::list_blog_migrations 49 + # library::list::list_empty_migrations 50 + # library::up::apply_initial_migrations 51 + # library::up::apply_initial_schema_changes 52 + # library::up::apply_new_migrations 53 + # library::up::apply_new_schema_changes 54 + # library::up::apply_should_skip_events_if_no_events_folder 55 + # library::up_to::apply_with_skipped_migrations 56 + doCheck = false; 57 + 58 + passthru = { 59 + updateScript = nix-update-script { }; 60 + tests.version = testers.testVersion { 61 + package = surrealdb-migrations; 62 + command = "surrealdb-migrations --version"; 63 + }; 64 + }; 65 + 66 + meta = with lib; { 67 + description = "An awesome SurrealDB migration tool, with a user-friendly CLI and a versatile Rust library that enables seamless integration into any project."; 68 + homepage = "https://crates.io/crates/surrealdb-migrations"; 69 + mainProgram = "surrealdb-migrations"; 70 + license = licenses.mit; 71 + maintainers = with maintainers; [ happysalada ]; 72 + }; 73 + }
+3 -3
pkgs/development/tools/language-servers/nil/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "nil"; 5 - version = "2023-05-02"; 5 + version = "2023-05-09"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "oxalica"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-T6iBqa9+KsVbcjNivRWXi2kXP90S+NJLp2qVah7I1w8="; 11 + hash = "sha256-Xg3Cux5wQDatXRvQWsVD0YPfmxfijjG8+gxYqgoT6JE="; 12 12 }; 13 13 14 - cargoHash = "sha256-ehT+i4Khen8fD6OZ6WMzFPtv1D49JyxmGmN0ZPKiOhk="; 14 + cargoHash = "sha256-N7flQRIc0CXTuKjy9tVZapu+CXUT4rg66VLLT/vMUoc="; 15 15 16 16 CFG_RELEASE = version; 17 17
+1 -1
pkgs/development/tools/ocaml/findlib/default.nix
··· 50 50 if [[ -n "$conflict" ]]; then 51 51 echo "Conflicting ocaml packages detected"; 52 52 echo "$conflict" 53 - echo "Set dontDetectOcamlConflicts to false to disable this check." 53 + echo "Set dontDetectOcamlConflicts to true to disable this check." 54 54 exit 1 55 55 fi 56 56 }
+3 -3
pkgs/development/tools/rgp/default.nix
··· 19 19 }: 20 20 21 21 let 22 - buildNum = "2023-02-15-1051"; 22 + buildNum = "2023-04-25-1075"; 23 23 in 24 24 stdenv.mkDerivation { 25 25 pname = "rgp"; 26 - version = "1.14.1"; 26 + version = "1.15"; 27 27 28 28 src = fetchurl { 29 29 url = "https://gpuopen.com/download/radeon-developer-tool-suite/RadeonDeveloperToolSuite-${buildNum}.tgz"; 30 - hash = "sha256-1JxW6vXfOYDaCnHWEq8crjuu0QrUCwahm+ipOKVDQPA="; 30 + hash = "sha256-sk7Z+fmcDsbnYSjf4H4ke2U1pKTh/p4fWRj+f5XX6LQ="; 31 31 }; 32 32 33 33 nativeBuildInputs = [ makeWrapper autoPatchelfHook ];
-3
pkgs/development/tools/unityhub/default.nix
··· 21 21 name = "${pname}-fhs-env"; 22 22 runScript = ""; 23 23 24 - # Seems to be needed for GTK filepickers to work in FHSUserEnv 25 - profile = "XDG_DATA_DIRS=\"\$XDG_DATA_DIRS:/usr/share/\""; 26 - 27 24 targetPkgs = pkgs: with pkgs; [ 28 25 xorg.libXrandr 29 26
+2 -2
pkgs/development/web/flyctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "flyctl"; 5 - version = "0.0.559"; 5 + version = "0.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "superfly"; 9 9 repo = "flyctl"; 10 10 rev = "v${version}"; 11 - hash = "sha256-pvIh5eECKyK+xa9HV6oGF6X10xfJOYfyOufalvmfFv8="; 11 + hash = "sha256-QkUNEdoCrnpDPM20nQTafpzxTb3RhgBVEjBNJu49r0g="; 12 12 }; 13 13 14 14 vendorHash = "sha256-5UXq22ea+m2KJ+XX/MLu/vDk3B4M+og0ws+p9bDuIxk=";
+3 -3
pkgs/games/aaaaxy/default.nix
··· 17 17 18 18 buildGoModule rec { 19 19 pname = "aaaaxy"; 20 - version = "1.3.457"; 20 + version = "1.3.524"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "divVerent"; 24 24 repo = pname; 25 25 rev = "v${version}"; 26 - hash = "sha256-PN/Gt2iDOWsbKspyWYKjnX98xF6NQuGVFjlEg3ZZpio="; 26 + hash = "sha256-9g0wTvG6XSKI7e3RP6e3RoYyvE5UjOYxI5hVINI9Fq8="; 27 27 fetchSubmodules = true; 28 28 }; 29 29 30 - vendorHash = "sha256-vI8EyZgjJA89UmqoDuh/H+qQzAKO9pyqpmA8hci9cco="; 30 + vendorHash = "sha256-slvBpweXRLsDegJDQ0ysZ0pugx5fdOOnD/OxWUfUnno="; 31 31 32 32 buildInputs = [ 33 33 alsa-lib
+2 -2
pkgs/games/starsector/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "starsector"; 16 - version = "0.95.1a-RC6"; 16 + version = "0.96a-RC8"; 17 17 18 18 src = fetchzip { 19 19 url = "https://s3.amazonaws.com/fractalsoftworks/starsector/starsector_linux-${version}.zip"; 20 - sha256 = "sha256-+0zGJHM+SMonx3sytCQNQA/QBgzdPMEfQvOjrCDSOs8="; 20 + sha256 = "sha256-RDXqFqiWpBG3kasofzbOl7Zp0a9LiMpJKsHcFaJtm2Y="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ copyDesktopItems makeWrapper ];
+1 -1
pkgs/misc/base16-builder/generate.sh
··· 1 1 #!/usr/bin/env nix-shell 2 2 #! nix-shell -i bash -p nodePackages.node2nix 3 - exec node2nix --nodejs-16 \ 3 + exec node2nix --nodejs-18 \ 4 4 --input node-packages.json \ 5 5 --output node-packages-generated.nix \ 6 6 --supplement-input supplement.json \
+575 -350
pkgs/misc/base16-builder/node-packages-generated.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 + "@mapbox/node-pre-gyp-1.0.10" = { 8 + name = "_at_mapbox_slash_node-pre-gyp"; 9 + packageName = "@mapbox/node-pre-gyp"; 10 + version = "1.0.10"; 11 + src = fetchurl { 12 + url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz"; 13 + sha512 = "4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA=="; 14 + }; 15 + }; 7 16 "abbrev-1.1.1" = { 8 17 name = "abbrev"; 9 18 packageName = "abbrev"; ··· 13 22 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 14 23 }; 15 24 }; 25 + "agent-base-6.0.2" = { 26 + name = "agent-base"; 27 + packageName = "agent-base"; 28 + version = "6.0.2"; 29 + src = fetchurl { 30 + url = "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz"; 31 + sha512 = "RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="; 32 + }; 33 + }; 16 34 "ansi-regex-2.1.1" = { 17 35 name = "ansi-regex"; 18 36 packageName = "ansi-regex"; 19 37 version = "2.1.1"; 20 38 src = fetchurl { 21 39 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 22 - sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 40 + sha512 = "TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="; 41 + }; 42 + }; 43 + "ansi-regex-5.0.1" = { 44 + name = "ansi-regex"; 45 + packageName = "ansi-regex"; 46 + version = "5.0.1"; 47 + src = fetchurl { 48 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"; 49 + sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 23 50 }; 24 51 }; 25 52 "ansi-styles-2.2.1" = { ··· 28 55 version = "2.2.1"; 29 56 src = fetchurl { 30 57 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; 31 - sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; 58 + sha512 = "kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA=="; 32 59 }; 33 60 }; 34 61 "any-promise-0.1.0" = { ··· 37 64 version = "0.1.0"; 38 65 src = fetchurl { 39 66 url = "https://registry.npmjs.org/any-promise/-/any-promise-0.1.0.tgz"; 40 - sha1 = "830b680aa7e56f33451d4b049f3bd8044498ee27"; 67 + sha512 = "lqzY9o+BbeGHRCOyxQkt/Tgvz0IZhTmQiA+LxQW8wSNpcTbj8K+0cZiSEvbpNZZP9/11Gy7dnLO3GNWUXO4d1g=="; 41 68 }; 42 69 }; 43 - "aproba-1.2.0" = { 70 + "aproba-2.0.0" = { 44 71 name = "aproba"; 45 72 packageName = "aproba"; 46 - version = "1.2.0"; 73 + version = "2.0.0"; 47 74 src = fetchurl { 48 - url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; 49 - sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="; 75 + url = "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz"; 76 + sha512 = "lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="; 50 77 }; 51 78 }; 52 - "are-we-there-yet-1.1.5" = { 79 + "are-we-there-yet-2.0.0" = { 53 80 name = "are-we-there-yet"; 54 81 packageName = "are-we-there-yet"; 55 - version = "1.1.5"; 82 + version = "2.0.0"; 56 83 src = fetchurl { 57 - url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; 58 - sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w=="; 84 + url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz"; 85 + sha512 = "Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw=="; 59 86 }; 60 87 }; 61 88 "argparse-1.0.10" = { ··· 73 100 version = "1.0.2"; 74 101 src = fetchurl { 75 102 url = "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz"; 76 - sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1"; 103 + sha512 = "M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw=="; 77 104 }; 78 105 }; 79 - "balanced-match-1.0.0" = { 106 + "balanced-match-1.0.2" = { 80 107 name = "balanced-match"; 81 108 packageName = "balanced-match"; 82 - version = "1.0.0"; 109 + version = "1.0.2"; 83 110 src = fetchurl { 84 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; 85 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 111 + url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"; 112 + sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; 86 113 }; 87 114 }; 88 115 "boxen-0.3.1" = { ··· 91 118 version = "0.3.1"; 92 119 src = fetchurl { 93 120 url = "https://registry.npmjs.org/boxen/-/boxen-0.3.1.tgz"; 94 - sha1 = "a7d898243ae622f7abb6bb604d740a76c6a5461b"; 121 + sha512 = "u9JPc+sK+tsB7uH0870GNESSm2I005T9nE9fug2X/6COxMJ9qXmSducVSFt5f3xdZgR/PtKXVJTxN296cMCP6w=="; 95 122 }; 96 123 }; 97 124 "brace-expansion-1.1.11" = { ··· 109 136 version = "0.0.1"; 110 137 src = fetchurl { 111 138 url = "https://registry.npmjs.org/bulk-replace/-/bulk-replace-0.0.1.tgz"; 112 - sha1 = "f095682a896abd4b3d9e08de409cc222e213f9dd"; 139 + sha512 = "IxLEnfsCYLjlpf6mG7SWpWgA4A8IAT5dAX3FxXHFn+6FTLf3ums771elQ74sj1BCOVanBf6esu0rEC6zgwfmIg=="; 113 140 }; 114 141 }; 115 142 "camelcase-2.1.1" = { ··· 118 145 version = "2.1.1"; 119 146 src = fetchurl { 120 147 url = "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz"; 121 - sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"; 148 + sha512 = "DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw=="; 122 149 }; 123 150 }; 124 151 "camelcase-keys-2.1.0" = { ··· 127 154 version = "2.1.0"; 128 155 src = fetchurl { 129 156 url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; 130 - sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7"; 157 + sha512 = "bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ=="; 131 158 }; 132 159 }; 133 - "capture-stack-trace-1.0.1" = { 160 + "capture-stack-trace-1.0.2" = { 134 161 name = "capture-stack-trace"; 135 162 packageName = "capture-stack-trace"; 136 - version = "1.0.1"; 163 + version = "1.0.2"; 137 164 src = fetchurl { 138 - url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz"; 139 - sha512 = "mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw=="; 165 + url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.2.tgz"; 166 + sha512 = "X/WM2UQs6VMHUtjUDnZTRI+i1crWteJySFzr9UpGoQa4WQffXVTTXuekjl7TjZRlcF2XfjgITT0HxZ9RnxeT0w=="; 140 167 }; 141 168 }; 142 169 "chalk-1.1.3" = { ··· 145 172 version = "1.1.3"; 146 173 src = fetchurl { 147 174 url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; 148 - sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; 175 + sha512 = "U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A=="; 149 176 }; 150 177 }; 151 - "chownr-1.1.4" = { 178 + "chownr-2.0.0" = { 152 179 name = "chownr"; 153 180 packageName = "chownr"; 154 - version = "1.1.4"; 181 + version = "2.0.0"; 155 182 src = fetchurl { 156 - url = "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz"; 157 - sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg=="; 183 + url = "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz"; 184 + sha512 = "bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="; 158 185 }; 159 186 }; 160 187 "code-point-at-1.1.0" = { ··· 163 190 version = "1.1.0"; 164 191 src = fetchurl { 165 192 url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"; 166 - sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; 193 + sha512 = "RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA=="; 194 + }; 195 + }; 196 + "color-support-1.1.3" = { 197 + name = "color-support"; 198 + packageName = "color-support"; 199 + version = "1.1.3"; 200 + src = fetchurl { 201 + url = "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz"; 202 + sha512 = "qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="; 167 203 }; 168 204 }; 169 205 "commander-1.1.1" = { ··· 172 208 version = "1.1.1"; 173 209 src = fetchurl { 174 210 url = "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz"; 175 - sha1 = "50d1651868ae60eccff0a2d9f34595376bc6b041"; 211 + sha512 = "71Rod2AhcH3JhkBikVpNd0pA+fWsmAaVoti6OR38T76chA7vE3pSerS0Jor4wDw+tOueD2zLVvFOw5H0Rcj7rA=="; 176 212 }; 177 213 }; 178 214 "concat-map-0.0.1" = { ··· 181 217 version = "0.0.1"; 182 218 src = fetchurl { 183 219 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 184 - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 220 + sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="; 185 221 }; 186 222 }; 187 223 "configstore-2.1.0" = { ··· 190 226 version = "2.1.0"; 191 227 src = fetchurl { 192 228 url = "https://registry.npmjs.org/configstore/-/configstore-2.1.0.tgz"; 193 - sha1 = "737a3a7036e9886102aa6099e47bb33ab1aba1a1"; 229 + sha512 = "BOCxwwxF5WPspp1OBq9j0JLyL5JgJOTssz9PdOHr8VWjFijaC3PpjU48vFEX3uxx8sTusnVQckLbNzBq6fmkGw=="; 194 230 }; 195 231 }; 196 232 "console-control-strings-1.1.0" = { ··· 199 235 version = "1.1.0"; 200 236 src = fetchurl { 201 237 url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz"; 202 - sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e"; 238 + sha512 = "ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="; 203 239 }; 204 240 }; 205 - "core-util-is-1.0.2" = { 241 + "core-util-is-1.0.3" = { 206 242 name = "core-util-is"; 207 243 packageName = "core-util-is"; 208 - version = "1.0.2"; 244 + version = "1.0.3"; 209 245 src = fetchurl { 210 - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; 211 - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 246 + url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"; 247 + sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; 212 248 }; 213 249 }; 214 250 "create-error-class-3.0.2" = { ··· 217 253 version = "3.0.2"; 218 254 src = fetchurl { 219 255 url = "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz"; 220 - sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; 256 + sha512 = "gYTKKexFO3kh200H1Nit76sRwRtOY32vQd3jpAQKpLtZqyNsSQNfI4N7o3eP2wUjV35pTWKRYqFUDBvUha/Pkw=="; 221 257 }; 222 258 }; 223 259 "currently-unhandled-0.4.1" = { ··· 226 262 version = "0.4.1"; 227 263 src = fetchurl { 228 264 url = "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz"; 229 - sha1 = "988df33feab191ef799a61369dd76c17adf957ea"; 265 + sha512 = "/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng=="; 230 266 }; 231 267 }; 232 - "debug-3.2.7" = { 268 + "debug-4.3.4" = { 233 269 name = "debug"; 234 270 packageName = "debug"; 235 - version = "3.2.7"; 271 + version = "4.3.4"; 236 272 src = fetchurl { 237 - url = "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"; 238 - sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 273 + url = "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"; 274 + sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 239 275 }; 240 276 }; 241 277 "decamelize-1.2.0" = { ··· 244 280 version = "1.2.0"; 245 281 src = fetchurl { 246 282 url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 247 - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 283 + sha512 = "z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="; 248 284 }; 249 285 }; 250 286 "deep-extend-0.6.0" = { ··· 262 298 version = "1.0.0"; 263 299 src = fetchurl { 264 300 url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz"; 265 - sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; 301 + sha512 = "bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="; 266 302 }; 267 303 }; 268 - "detect-libc-1.0.3" = { 304 + "detect-libc-2.0.1" = { 269 305 name = "detect-libc"; 270 306 packageName = "detect-libc"; 271 - version = "1.0.3"; 307 + version = "2.0.1"; 272 308 src = fetchurl { 273 - url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"; 274 - sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"; 309 + url = "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz"; 310 + sha512 = "463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w=="; 275 311 }; 276 312 }; 277 313 "dot-prop-3.0.0" = { ··· 280 316 version = "3.0.0"; 281 317 src = fetchurl { 282 318 url = "https://registry.npmjs.org/dot-prop/-/dot-prop-3.0.0.tgz"; 283 - sha1 = "1b708af094a49c9a0e7dbcad790aba539dac1177"; 319 + sha512 = "k4ELWeEU3uCcwub7+dWydqQBRjAjkV9L33HjVRG5Xo2QybI6ja/v+4W73SRi8ubCqJz0l9XsTP1NbewfyqaSlw=="; 284 320 }; 285 321 }; 286 322 "duplexer2-0.1.4" = { ··· 289 325 version = "0.1.4"; 290 326 src = fetchurl { 291 327 url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz"; 292 - sha1 = "8b12dab878c0d69e3e7891051662a32fc6bddcc1"; 328 + sha512 = "asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA=="; 293 329 }; 294 330 }; 295 331 "ejs-2.7.4" = { ··· 301 337 sha512 = "7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA=="; 302 338 }; 303 339 }; 340 + "emoji-regex-8.0.0" = { 341 + name = "emoji-regex"; 342 + packageName = "emoji-regex"; 343 + version = "8.0.0"; 344 + src = fetchurl { 345 + url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"; 346 + sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; 347 + }; 348 + }; 349 + "encoding-0.1.13" = { 350 + name = "encoding"; 351 + packageName = "encoding"; 352 + version = "0.1.13"; 353 + src = fetchurl { 354 + url = "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz"; 355 + sha512 = "ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A=="; 356 + }; 357 + }; 304 358 "error-ex-1.3.2" = { 305 359 name = "error-ex"; 306 360 packageName = "error-ex"; ··· 316 370 version = "1.0.5"; 317 371 src = fetchurl { 318 372 url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 319 - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 373 + sha512 = "vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="; 320 374 }; 321 375 }; 322 376 "esprima-4.0.1" = { ··· 334 388 version = "1.1.0"; 335 389 src = fetchurl { 336 390 url = "https://registry.npmjs.org/filled-array/-/filled-array-1.1.0.tgz"; 337 - sha1 = "c3c4f6c663b923459a9aa29912d2d031f1507f84"; 391 + sha512 = "4XwZ1k4rgoF3Yap59MyXFmiUh2zu9fht32NYPSRYwLv4o8BWHxi60I1VH5kHje14qGMoS3qyfHQUsN16ROOugQ=="; 338 392 }; 339 393 }; 340 394 "find-up-1.1.2" = { ··· 343 397 version = "1.1.2"; 344 398 src = fetchurl { 345 399 url = "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz"; 346 - sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"; 400 + sha512 = "jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA=="; 347 401 }; 348 402 }; 349 - "fs-minipass-1.2.7" = { 403 + "fs-minipass-2.1.0" = { 350 404 name = "fs-minipass"; 351 405 packageName = "fs-minipass"; 352 - version = "1.2.7"; 406 + version = "2.1.0"; 353 407 src = fetchurl { 354 - url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz"; 355 - sha512 = "GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA=="; 408 + url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz"; 409 + sha512 = "V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg=="; 356 410 }; 357 411 }; 358 412 "fs-promise-0.3.1" = { ··· 361 415 version = "0.3.1"; 362 416 src = fetchurl { 363 417 url = "https://registry.npmjs.org/fs-promise/-/fs-promise-0.3.1.tgz"; 364 - sha1 = "bf34050368f24d6dc9dfc6688ab5cead8f86842a"; 418 + sha512 = "JjkAd4+JaA8VTL1vmX54f7xz6AgBZ9VA6mXlIvN8eJMJGZMVyJ6fdRyjwCP0pIuEkWkM0XcbVz/4F6sFu7OdQg=="; 365 419 }; 366 420 }; 367 421 "fs.realpath-1.0.0" = { ··· 370 424 version = "1.0.0"; 371 425 src = fetchurl { 372 426 url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; 373 - sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 427 + sha512 = "OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="; 374 428 }; 375 429 }; 376 430 "function-bind-1.1.1" = { ··· 382 436 sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 383 437 }; 384 438 }; 385 - "gauge-2.7.4" = { 439 + "gauge-3.0.2" = { 386 440 name = "gauge"; 387 441 packageName = "gauge"; 388 - version = "2.7.4"; 442 + version = "3.0.2"; 389 443 src = fetchurl { 390 - url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz"; 391 - sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; 444 + url = "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz"; 445 + sha512 = "+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q=="; 392 446 }; 393 447 }; 394 448 "get-stdin-4.0.1" = { ··· 397 451 version = "4.0.1"; 398 452 src = fetchurl { 399 453 url = "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz"; 400 - sha1 = "b968c6b0a04384324902e8bf1a5df32579a450fe"; 454 + sha512 = "F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw=="; 401 455 }; 402 456 }; 403 - "glob-7.1.6" = { 457 + "glob-7.2.3" = { 404 458 name = "glob"; 405 459 packageName = "glob"; 406 - version = "7.1.6"; 460 + version = "7.2.3"; 407 461 src = fetchurl { 408 - url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"; 409 - sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 462 + url = "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"; 463 + sha512 = "nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="; 410 464 }; 411 465 }; 412 466 "got-5.7.1" = { ··· 415 469 version = "5.7.1"; 416 470 src = fetchurl { 417 471 url = "https://registry.npmjs.org/got/-/got-5.7.1.tgz"; 418 - sha1 = "5f81635a61e4a6589f180569ea4e381680a51f35"; 472 + sha512 = "1qd54GLxvVgzuidFmw9ze9umxS3rzhdBH6Wt6BTYrTQUXTN01vGGYXwzLzYLowNx8HBH3/c7kRyvx90fh13i7Q=="; 419 473 }; 420 474 }; 421 - "graceful-fs-4.2.4" = { 475 + "graceful-fs-4.2.11" = { 422 476 name = "graceful-fs"; 423 477 packageName = "graceful-fs"; 424 - version = "4.2.4"; 478 + version = "4.2.11"; 425 479 src = fetchurl { 426 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz"; 427 - sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="; 480 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz"; 481 + sha512 = "RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="; 428 482 }; 429 483 }; 430 484 "has-1.0.3" = { ··· 442 496 version = "2.0.0"; 443 497 src = fetchurl { 444 498 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; 445 - sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; 499 + sha512 = "C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg=="; 446 500 }; 447 501 }; 448 502 "has-unicode-2.0.1" = { ··· 451 505 version = "2.0.1"; 452 506 src = fetchurl { 453 507 url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz"; 454 - sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9"; 508 + sha512 = "8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="; 455 509 }; 456 510 }; 457 511 "hepburn-1.2.0" = { ··· 463 517 sha512 = "xWjHb03dN/ivNcqG2vqA//sHQ0oapYGZ9QV/2TR7m2+cggxzoVpbDxZn9s/Zm1tF88/7a1IpdZyn00tNP5oABA=="; 464 518 }; 465 519 }; 466 - "hosted-git-info-2.8.8" = { 520 + "hosted-git-info-2.8.9" = { 467 521 name = "hosted-git-info"; 468 522 packageName = "hosted-git-info"; 469 - version = "2.8.8"; 523 + version = "2.8.9"; 470 524 src = fetchurl { 471 - url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz"; 472 - sha512 = "f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg=="; 525 + url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"; 526 + sha512 = "mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw=="; 473 527 }; 474 528 }; 475 - "iconv-lite-0.4.24" = { 476 - name = "iconv-lite"; 477 - packageName = "iconv-lite"; 478 - version = "0.4.24"; 529 + "https-proxy-agent-5.0.1" = { 530 + name = "https-proxy-agent"; 531 + packageName = "https-proxy-agent"; 532 + version = "5.0.1"; 479 533 src = fetchurl { 480 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; 481 - sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 534 + url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz"; 535 + sha512 = "dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="; 482 536 }; 483 537 }; 484 - "ignore-walk-3.0.3" = { 485 - name = "ignore-walk"; 486 - packageName = "ignore-walk"; 487 - version = "3.0.3"; 538 + "iconv-lite-0.6.3" = { 539 + name = "iconv-lite"; 540 + packageName = "iconv-lite"; 541 + version = "0.6.3"; 488 542 src = fetchurl { 489 - url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz"; 490 - sha512 = "m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw=="; 543 + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"; 544 + sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; 491 545 }; 492 546 }; 493 547 "imurmurhash-0.1.4" = { ··· 496 550 version = "0.1.4"; 497 551 src = fetchurl { 498 552 url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"; 499 - sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; 553 + sha512 = "JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="; 500 554 }; 501 555 }; 502 556 "indent-string-2.1.0" = { ··· 505 559 version = "2.1.0"; 506 560 src = fetchurl { 507 561 url = "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz"; 508 - sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80"; 562 + sha512 = "aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg=="; 509 563 }; 510 564 }; 511 565 "inflight-1.0.6" = { ··· 514 568 version = "1.0.6"; 515 569 src = fetchurl { 516 570 url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; 517 - sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 571 + sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; 518 572 }; 519 573 }; 520 574 "inherits-2.0.4" = { ··· 541 595 version = "0.2.1"; 542 596 src = fetchurl { 543 597 url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"; 544 - sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; 598 + sha512 = "zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="; 545 599 }; 546 600 }; 547 - "is-core-module-2.2.0" = { 601 + "is-core-module-2.12.0" = { 548 602 name = "is-core-module"; 549 603 packageName = "is-core-module"; 550 - version = "2.2.0"; 604 + version = "2.12.0"; 551 605 src = fetchurl { 552 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz"; 553 - sha512 = "XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ=="; 606 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz"; 607 + sha512 = "RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ=="; 554 608 }; 555 609 }; 556 610 "is-finite-1.1.0" = { ··· 568 622 version = "1.0.0"; 569 623 src = fetchurl { 570 624 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; 571 - sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; 625 + sha512 = "1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw=="; 626 + }; 627 + }; 628 + "is-fullwidth-code-point-3.0.0" = { 629 + name = "is-fullwidth-code-point"; 630 + packageName = "is-fullwidth-code-point"; 631 + version = "3.0.0"; 632 + src = fetchurl { 633 + url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; 634 + sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; 572 635 }; 573 636 }; 574 637 "is-npm-1.0.0" = { ··· 577 640 version = "1.0.0"; 578 641 src = fetchurl { 579 642 url = "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz"; 580 - sha1 = "f2fb63a65e4905b406c86072765a1a4dc793b9f4"; 643 + sha512 = "9r39FIr3d+KD9SbX0sfMsHzb5PP3uimOiwr3YupUaUFG4W0l1U57Rx3utpttV7qz5U3jmrO5auUa04LU9pyHsg=="; 581 644 }; 582 645 }; 583 646 "is-obj-1.0.1" = { ··· 586 649 version = "1.0.1"; 587 650 src = fetchurl { 588 651 url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz"; 589 - sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; 652 + sha512 = "l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg=="; 590 653 }; 591 654 }; 592 655 "is-redirect-1.0.0" = { ··· 595 658 version = "1.0.0"; 596 659 src = fetchurl { 597 660 url = "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz"; 598 - sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"; 661 + sha512 = "cr/SlUEe5zOGmzvj9bUyC4LVvkNVAXu4GytXLNMr1pny+a65MpQ9IJzFHD5vi7FyJgb4qt27+eS3TuQnqB+RQw=="; 599 662 }; 600 663 }; 601 664 "is-retry-allowed-1.2.0" = { ··· 613 676 version = "1.1.0"; 614 677 src = fetchurl { 615 678 url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; 616 - sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; 679 + sha512 = "uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ=="; 617 680 }; 618 681 }; 619 682 "is-utf8-0.2.1" = { ··· 622 685 version = "0.2.1"; 623 686 src = fetchurl { 624 687 url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"; 625 - sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; 688 + sha512 = "rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q=="; 626 689 }; 627 690 }; 628 691 "isarray-1.0.0" = { ··· 631 694 version = "1.0.0"; 632 695 src = fetchurl { 633 696 url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; 634 - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 697 + sha512 = "VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="; 635 698 }; 636 699 }; 637 700 "js-yaml-3.14.1" = { ··· 649 712 version = "0.1.0"; 650 713 src = fetchurl { 651 714 url = "https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz"; 652 - sha1 = "4a3188d4291b66b4f65edb99f806aa9ae293592a"; 715 + sha512 = "x0yf9PL/nx9Nw9oLL8ZVErFAk85/lslwEP7Vz7s5SI1ODXZIgit3C5qyWjw4DxOuO/3Hb4866SQh28a1V1d+WA=="; 653 716 }; 654 717 }; 655 718 "latest-version-2.0.0" = { ··· 658 721 version = "2.0.0"; 659 722 src = fetchurl { 660 723 url = "https://registry.npmjs.org/latest-version/-/latest-version-2.0.0.tgz"; 661 - sha1 = "56f8d6139620847b8017f8f1f4d78e211324168b"; 724 + sha512 = "8925wFYLfWBciewimt0VmDyYw0GFCRcbFSTrZGt4JgQ7lh5jb/kodMlUt0uMaxXdRKVi+7F3ib30N7fTv83ikw=="; 662 725 }; 663 726 }; 664 727 "limax-1.7.0" = { ··· 676 739 version = "1.1.0"; 677 740 src = fetchurl { 678 741 url = "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"; 679 - sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0"; 742 + sha512 = "cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A=="; 680 743 }; 681 744 }; 682 745 "loud-rejection-1.6.0" = { ··· 685 748 version = "1.6.0"; 686 749 src = fetchurl { 687 750 url = "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz"; 688 - sha1 = "5b46f80147edee578870f086d04821cf998e551f"; 751 + sha512 = "RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ=="; 689 752 }; 690 753 }; 691 754 "lowercase-keys-1.0.1" = { ··· 697 760 sha512 = "G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA=="; 698 761 }; 699 762 }; 763 + "lru-cache-6.0.0" = { 764 + name = "lru-cache"; 765 + packageName = "lru-cache"; 766 + version = "6.0.0"; 767 + src = fetchurl { 768 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"; 769 + sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 770 + }; 771 + }; 772 + "make-dir-3.1.0" = { 773 + name = "make-dir"; 774 + packageName = "make-dir"; 775 + version = "3.1.0"; 776 + src = fetchurl { 777 + url = "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"; 778 + sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 779 + }; 780 + }; 700 781 "map-obj-1.0.1" = { 701 782 name = "map-obj"; 702 783 packageName = "map-obj"; 703 784 version = "1.0.1"; 704 785 src = fetchurl { 705 786 url = "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"; 706 - sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d"; 787 + sha512 = "7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg=="; 707 788 }; 708 789 }; 709 790 "meow-3.7.0" = { ··· 712 793 version = "3.7.0"; 713 794 src = fetchurl { 714 795 url = "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz"; 715 - sha1 = "72cb668b425228290abbfa856892587308a801fb"; 796 + sha512 = "TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA=="; 716 797 }; 717 798 }; 718 - "minimatch-3.0.4" = { 799 + "minimatch-3.1.2" = { 719 800 name = "minimatch"; 720 801 packageName = "minimatch"; 721 - version = "3.0.4"; 802 + version = "3.1.2"; 722 803 src = fetchurl { 723 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 724 - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 804 + url = "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"; 805 + sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 725 806 }; 726 807 }; 727 - "minimist-1.2.5" = { 808 + "minimist-1.2.8" = { 728 809 name = "minimist"; 729 810 packageName = "minimist"; 730 - version = "1.2.5"; 811 + version = "1.2.8"; 812 + src = fetchurl { 813 + url = "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz"; 814 + sha512 = "2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="; 815 + }; 816 + }; 817 + "minipass-3.3.6" = { 818 + name = "minipass"; 819 + packageName = "minipass"; 820 + version = "3.3.6"; 731 821 src = fetchurl { 732 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; 733 - sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 822 + url = "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz"; 823 + sha512 = "DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw=="; 734 824 }; 735 825 }; 736 - "minipass-2.9.0" = { 826 + "minipass-5.0.0" = { 737 827 name = "minipass"; 738 828 packageName = "minipass"; 739 - version = "2.9.0"; 829 + version = "5.0.0"; 740 830 src = fetchurl { 741 - url = "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz"; 742 - sha512 = "wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg=="; 831 + url = "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz"; 832 + sha512 = "3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="; 743 833 }; 744 834 }; 745 - "minizlib-1.3.3" = { 835 + "minizlib-2.1.2" = { 746 836 name = "minizlib"; 747 837 packageName = "minizlib"; 748 - version = "1.3.3"; 838 + version = "2.1.2"; 749 839 src = fetchurl { 750 - url = "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz"; 751 - sha512 = "6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q=="; 840 + url = "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz"; 841 + sha512 = "bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg=="; 752 842 }; 753 843 }; 754 - "mkdirp-0.5.5" = { 844 + "mkdirp-0.5.6" = { 755 845 name = "mkdirp"; 756 846 packageName = "mkdirp"; 757 - version = "0.5.5"; 847 + version = "0.5.6"; 758 848 src = fetchurl { 759 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"; 760 - sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 849 + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"; 850 + sha512 = "FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="; 761 851 }; 762 852 }; 763 - "ms-2.1.3" = { 764 - name = "ms"; 765 - packageName = "ms"; 766 - version = "2.1.3"; 853 + "mkdirp-1.0.4" = { 854 + name = "mkdirp"; 855 + packageName = "mkdirp"; 856 + version = "1.0.4"; 767 857 src = fetchurl { 768 - url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"; 769 - sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 858 + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz"; 859 + sha512 = "vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="; 770 860 }; 771 861 }; 772 - "needle-2.6.0" = { 773 - name = "needle"; 774 - packageName = "needle"; 775 - version = "2.6.0"; 862 + "ms-2.1.2" = { 863 + name = "ms"; 864 + packageName = "ms"; 865 + version = "2.1.2"; 776 866 src = fetchurl { 777 - url = "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz"; 778 - sha512 = "KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg=="; 867 + url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; 868 + sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 779 869 }; 780 870 }; 781 - "node-addon-api-3.1.0" = { 871 + "node-addon-api-3.2.1" = { 782 872 name = "node-addon-api"; 783 873 packageName = "node-addon-api"; 784 - version = "3.1.0"; 874 + version = "3.2.1"; 785 875 src = fetchurl { 786 - url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.1.0.tgz"; 787 - sha512 = "flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw=="; 876 + url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz"; 877 + sha512 = "mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A=="; 788 878 }; 789 879 }; 790 - "node-pre-gyp-0.14.0" = { 791 - name = "node-pre-gyp"; 792 - packageName = "node-pre-gyp"; 793 - version = "0.14.0"; 880 + "node-fetch-2.6.10" = { 881 + name = "node-fetch"; 882 + packageName = "node-fetch"; 883 + version = "2.6.10"; 794 884 src = fetchurl { 795 - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz"; 796 - sha512 = "+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA=="; 885 + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz"; 886 + sha512 = "5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug=="; 797 887 }; 798 888 }; 799 889 "node-status-codes-1.0.0" = { ··· 802 892 version = "1.0.0"; 803 893 src = fetchurl { 804 894 url = "https://registry.npmjs.org/node-status-codes/-/node-status-codes-1.0.0.tgz"; 805 - sha1 = "5ae5541d024645d32a58fcddc9ceecea7ae3ac2f"; 895 + sha512 = "1cBMgRxdMWE8KeWCqk2RIOrvUb0XCwYfEsY5/y2NlXyq4Y/RumnOZvTj4Nbr77+Vb2C+kyBoRTdkNOS8L3d/aQ=="; 806 896 }; 807 897 }; 808 - "nodejieba-2.5.1" = { 898 + "nodejieba-2.5.2" = { 809 899 name = "nodejieba"; 810 900 packageName = "nodejieba"; 811 - version = "2.5.1"; 901 + version = "2.5.2"; 812 902 src = fetchurl { 813 - url = "https://registry.npmjs.org/nodejieba/-/nodejieba-2.5.1.tgz"; 814 - sha512 = "VnJBQSl2G8swDf3ZAXMbXrMCrGFO+kVKbkB93OaBthGbEG5BrxfD8I2m7auaRX8E5C1t+hlwo3HCmQOWKkiZ9A=="; 903 + url = "https://registry.npmjs.org/nodejieba/-/nodejieba-2.5.2.tgz"; 904 + sha512 = "ByskJvaBrQ2eV+5M0OeD80S5NKoGaHc9zi3Z/PTKl/95eac2YF8RmWduq9AknLpkQLrLAIcqurrtC6BzjpKwwg=="; 815 905 }; 816 906 }; 817 - "nopt-4.0.3" = { 907 + "nopt-5.0.0" = { 818 908 name = "nopt"; 819 909 packageName = "nopt"; 820 - version = "4.0.3"; 910 + version = "5.0.0"; 821 911 src = fetchurl { 822 - url = "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz"; 823 - sha512 = "CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg=="; 912 + url = "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz"; 913 + sha512 = "Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ=="; 824 914 }; 825 915 }; 826 916 "normalize-package-data-2.5.0" = { ··· 832 922 sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="; 833 923 }; 834 924 }; 835 - "npm-bundled-1.1.1" = { 836 - name = "npm-bundled"; 837 - packageName = "npm-bundled"; 838 - version = "1.1.1"; 839 - src = fetchurl { 840 - url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.1.tgz"; 841 - sha512 = "gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA=="; 842 - }; 843 - }; 844 - "npm-normalize-package-bin-1.0.1" = { 845 - name = "npm-normalize-package-bin"; 846 - packageName = "npm-normalize-package-bin"; 847 - version = "1.0.1"; 848 - src = fetchurl { 849 - url = "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz"; 850 - sha512 = "EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA=="; 851 - }; 852 - }; 853 - "npm-packlist-1.4.8" = { 854 - name = "npm-packlist"; 855 - packageName = "npm-packlist"; 856 - version = "1.4.8"; 857 - src = fetchurl { 858 - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz"; 859 - sha512 = "5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A=="; 860 - }; 861 - }; 862 - "npmlog-4.1.2" = { 925 + "npmlog-5.0.1" = { 863 926 name = "npmlog"; 864 927 packageName = "npmlog"; 865 - version = "4.1.2"; 928 + version = "5.0.1"; 866 929 src = fetchurl { 867 - url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz"; 868 - sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg=="; 930 + url = "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz"; 931 + sha512 = "AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw=="; 869 932 }; 870 933 }; 871 934 "number-is-nan-1.0.1" = { ··· 874 937 version = "1.0.1"; 875 938 src = fetchurl { 876 939 url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"; 877 - sha1 = "097b602b53422a522c1afb8790318336941a011d"; 940 + sha512 = "4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ=="; 878 941 }; 879 942 }; 880 943 "object-assign-4.1.1" = { ··· 883 946 version = "4.1.1"; 884 947 src = fetchurl { 885 948 url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"; 886 - sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 949 + sha512 = "rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="; 887 950 }; 888 951 }; 889 952 "once-1.4.0" = { ··· 892 955 version = "1.4.0"; 893 956 src = fetchurl { 894 957 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 895 - sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 958 + sha512 = "lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="; 896 959 }; 897 960 }; 898 961 "open-0.0.5" = { ··· 901 964 version = "0.0.5"; 902 965 src = fetchurl { 903 966 url = "https://registry.npmjs.org/open/-/open-0.0.5.tgz"; 904 - sha1 = "42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc"; 967 + sha512 = "+X/dJYLapVO1VbC620DhtNZK9U4/kQVaTQp/Gh7cb6UTLYfGZzzU2ZXkWrOA/wBrf4UqAFwtLqXYTxe4tSnWQQ=="; 905 968 }; 906 969 }; 907 970 "os-homedir-1.0.2" = { ··· 910 973 version = "1.0.2"; 911 974 src = fetchurl { 912 975 url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; 913 - sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; 976 + sha512 = "B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ=="; 914 977 }; 915 978 }; 916 979 "os-tmpdir-1.0.2" = { ··· 919 982 version = "1.0.2"; 920 983 src = fetchurl { 921 984 url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 922 - sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 985 + sha512 = "D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g=="; 923 986 }; 924 987 }; 925 988 "osenv-0.1.5" = { ··· 937 1000 version = "2.4.0"; 938 1001 src = fetchurl { 939 1002 url = "https://registry.npmjs.org/package-json/-/package-json-2.4.0.tgz"; 940 - sha1 = "0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb"; 1003 + sha512 = "PRg65iXMTt/uK8Rfh5zvzkUbfAPitF17YaCY+IbHsYgksiLvtzWWTUildHth3mVaZ7871OJ7gtP4LBRBlmAdXg=="; 941 1004 }; 942 1005 }; 943 1006 "parse-json-2.2.0" = { ··· 946 1009 version = "2.2.0"; 947 1010 src = fetchurl { 948 1011 url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"; 949 - sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; 1012 + sha512 = "QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ=="; 950 1013 }; 951 1014 }; 952 1015 "path-exists-2.1.0" = { ··· 955 1018 version = "2.1.0"; 956 1019 src = fetchurl { 957 1020 url = "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz"; 958 - sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b"; 1021 + sha512 = "yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ=="; 959 1022 }; 960 1023 }; 961 1024 "path-is-absolute-1.0.1" = { ··· 964 1027 version = "1.0.1"; 965 1028 src = fetchurl { 966 1029 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 967 - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 1030 + sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="; 968 1031 }; 969 1032 }; 970 - "path-parse-1.0.6" = { 1033 + "path-parse-1.0.7" = { 971 1034 name = "path-parse"; 972 1035 packageName = "path-parse"; 973 - version = "1.0.6"; 1036 + version = "1.0.7"; 974 1037 src = fetchurl { 975 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz"; 976 - sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="; 1038 + url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"; 1039 + sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 977 1040 }; 978 1041 }; 979 1042 "path-type-1.1.0" = { ··· 982 1045 version = "1.1.0"; 983 1046 src = fetchurl { 984 1047 url = "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz"; 985 - sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; 1048 + sha512 = "S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg=="; 986 1049 }; 987 1050 }; 988 1051 "pify-2.3.0" = { ··· 991 1054 version = "2.3.0"; 992 1055 src = fetchurl { 993 1056 url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"; 994 - sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; 1057 + sha512 = "udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="; 995 1058 }; 996 1059 }; 997 1060 "pinkie-2.0.4" = { ··· 1000 1063 version = "2.0.4"; 1001 1064 src = fetchurl { 1002 1065 url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"; 1003 - sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; 1066 + sha512 = "MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg=="; 1004 1067 }; 1005 1068 }; 1006 1069 "pinkie-promise-2.0.1" = { ··· 1009 1072 version = "2.0.1"; 1010 1073 src = fetchurl { 1011 1074 url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; 1012 - sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 1075 + sha512 = "0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw=="; 1013 1076 }; 1014 1077 }; 1015 - "pinyin-2.9.1" = { 1078 + "pinyin-2.11.2" = { 1016 1079 name = "pinyin"; 1017 1080 packageName = "pinyin"; 1018 - version = "2.9.1"; 1081 + version = "2.11.2"; 1019 1082 src = fetchurl { 1020 - url = "https://registry.npmjs.org/pinyin/-/pinyin-2.9.1.tgz"; 1021 - sha512 = "U7kHlVP6yUYl2DV2bX4brlYWdgaAlwtqJrdkboiyri9ixRDVqVO3LD98te3PT5deN5EA9W8ywuG9GaYZfiiIlw=="; 1083 + url = "https://registry.npmjs.org/pinyin/-/pinyin-2.11.2.tgz"; 1084 + sha512 = "tAWDBcowj09j/vLUjty98nVqrbTVNhutf1VcyID4p0sxTFPzRyXw7n7Ic0HQwBdWFIWrrDP8bYiT64gaT6h3gA=="; 1022 1085 }; 1023 1086 }; 1024 1087 "prepend-http-1.0.4" = { ··· 1027 1090 version = "1.0.4"; 1028 1091 src = fetchurl { 1029 1092 url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz"; 1030 - sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"; 1093 + sha512 = "PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg=="; 1031 1094 }; 1032 1095 }; 1033 1096 "process-nextick-args-2.0.1" = { ··· 1054 1117 version = "3.1.0"; 1055 1118 src = fetchurl { 1056 1119 url = "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz"; 1057 - sha1 = "35c3e177f2078ef789ee4bfafa4373074eaef4fa"; 1120 + sha512 = "DI1drPHbmBcUDWrJ7ull/F2Qb8HkwBncVx8/RpKYFSIACYaVRQReISYPdZz/mt1y1+qMCOrfReTopERmaxtP6w=="; 1058 1121 }; 1059 1122 }; 1060 1123 "read-pkg-1.1.0" = { ··· 1063 1126 version = "1.1.0"; 1064 1127 src = fetchurl { 1065 1128 url = "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz"; 1066 - sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"; 1129 + sha512 = "7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ=="; 1067 1130 }; 1068 1131 }; 1069 1132 "read-pkg-up-1.0.1" = { ··· 1072 1135 version = "1.0.1"; 1073 1136 src = fetchurl { 1074 1137 url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz"; 1075 - sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02"; 1138 + sha512 = "WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A=="; 1076 1139 }; 1077 1140 }; 1078 - "readable-stream-2.3.7" = { 1141 + "readable-stream-2.3.8" = { 1079 1142 name = "readable-stream"; 1080 1143 packageName = "readable-stream"; 1081 - version = "2.3.7"; 1144 + version = "2.3.8"; 1082 1145 src = fetchurl { 1083 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; 1084 - sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 1146 + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"; 1147 + sha512 = "8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="; 1148 + }; 1149 + }; 1150 + "readable-stream-3.6.2" = { 1151 + name = "readable-stream"; 1152 + packageName = "readable-stream"; 1153 + version = "3.6.2"; 1154 + src = fetchurl { 1155 + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz"; 1156 + sha512 = "9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="; 1085 1157 }; 1086 1158 }; 1087 1159 "redent-1.0.0" = { ··· 1090 1162 version = "1.0.0"; 1091 1163 src = fetchurl { 1092 1164 url = "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz"; 1093 - sha1 = "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"; 1165 + sha512 = "qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g=="; 1094 1166 }; 1095 1167 }; 1096 1168 "registry-auth-token-3.4.0" = { ··· 1108 1180 version = "3.1.0"; 1109 1181 src = fetchurl { 1110 1182 url = "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz"; 1111 - sha1 = "3d4ef870f73dde1d77f0cf9a381432444e174942"; 1183 + sha512 = "ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA=="; 1112 1184 }; 1113 1185 }; 1114 1186 "repeating-2.0.1" = { ··· 1117 1189 version = "2.0.1"; 1118 1190 src = fetchurl { 1119 1191 url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz"; 1120 - sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; 1192 + sha512 = "ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A=="; 1121 1193 }; 1122 1194 }; 1123 - "resolve-1.19.0" = { 1195 + "resolve-1.22.3" = { 1124 1196 name = "resolve"; 1125 1197 packageName = "resolve"; 1126 - version = "1.19.0"; 1198 + version = "1.22.3"; 1127 1199 src = fetchurl { 1128 - url = "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz"; 1129 - sha512 = "rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg=="; 1200 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz"; 1201 + sha512 = "P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw=="; 1130 1202 }; 1131 1203 }; 1132 - "rimraf-2.7.1" = { 1204 + "rimraf-3.0.2" = { 1133 1205 name = "rimraf"; 1134 1206 packageName = "rimraf"; 1135 - version = "2.7.1"; 1207 + version = "3.0.2"; 1136 1208 src = fetchurl { 1137 - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz"; 1138 - sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="; 1209 + url = "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"; 1210 + sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 1139 1211 }; 1140 1212 }; 1141 1213 "safe-buffer-5.1.2" = { ··· 1147 1219 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 1148 1220 }; 1149 1221 }; 1222 + "safe-buffer-5.2.1" = { 1223 + name = "safe-buffer"; 1224 + packageName = "safe-buffer"; 1225 + version = "5.2.1"; 1226 + src = fetchurl { 1227 + url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"; 1228 + sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 1229 + }; 1230 + }; 1150 1231 "safer-buffer-2.1.2" = { 1151 1232 name = "safer-buffer"; 1152 1233 packageName = "safer-buffer"; ··· 1156 1237 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 1157 1238 }; 1158 1239 }; 1159 - "sax-1.2.4" = { 1160 - name = "sax"; 1161 - packageName = "sax"; 1162 - version = "1.2.4"; 1163 - src = fetchurl { 1164 - url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"; 1165 - sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; 1166 - }; 1167 - }; 1168 1240 "semver-5.7.1" = { 1169 1241 name = "semver"; 1170 1242 packageName = "semver"; ··· 1174 1246 sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 1175 1247 }; 1176 1248 }; 1249 + "semver-6.3.0" = { 1250 + name = "semver"; 1251 + packageName = "semver"; 1252 + version = "6.3.0"; 1253 + src = fetchurl { 1254 + url = "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"; 1255 + sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 1256 + }; 1257 + }; 1258 + "semver-7.5.0" = { 1259 + name = "semver"; 1260 + packageName = "semver"; 1261 + version = "7.5.0"; 1262 + src = fetchurl { 1263 + url = "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz"; 1264 + sha512 = "+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA=="; 1265 + }; 1266 + }; 1177 1267 "semver-diff-2.1.0" = { 1178 1268 name = "semver-diff"; 1179 1269 packageName = "semver-diff"; 1180 1270 version = "2.1.0"; 1181 1271 src = fetchurl { 1182 1272 url = "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz"; 1183 - sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"; 1273 + sha512 = "gL8F8L4ORwsS0+iQ34yCYv///jsOq0ZL7WP55d1HnJ32o7tyFYEFQZQA22mrLIacZdU6xecaBBZ+uEiffGNyXw=="; 1184 1274 }; 1185 1275 }; 1186 1276 "set-blocking-2.0.0" = { ··· 1189 1279 version = "2.0.0"; 1190 1280 src = fetchurl { 1191 1281 url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; 1192 - sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 1282 + sha512 = "KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="; 1193 1283 }; 1194 1284 }; 1195 - "signal-exit-3.0.3" = { 1285 + "signal-exit-3.0.7" = { 1196 1286 name = "signal-exit"; 1197 1287 packageName = "signal-exit"; 1198 - version = "3.0.3"; 1288 + version = "3.0.7"; 1199 1289 src = fetchurl { 1200 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"; 1201 - sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="; 1290 + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"; 1291 + sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 1202 1292 }; 1203 1293 }; 1204 1294 "slide-1.1.6" = { ··· 1207 1297 version = "1.1.6"; 1208 1298 src = fetchurl { 1209 1299 url = "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz"; 1210 - sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"; 1300 + sha512 = "NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw=="; 1211 1301 }; 1212 1302 }; 1213 - "spdx-correct-3.1.1" = { 1303 + "spdx-correct-3.2.0" = { 1214 1304 name = "spdx-correct"; 1215 1305 packageName = "spdx-correct"; 1216 - version = "3.1.1"; 1306 + version = "3.2.0"; 1217 1307 src = fetchurl { 1218 - url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz"; 1219 - sha512 = "cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w=="; 1308 + url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz"; 1309 + sha512 = "kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA=="; 1220 1310 }; 1221 1311 }; 1222 1312 "spdx-exceptions-2.3.0" = { ··· 1237 1327 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 1238 1328 }; 1239 1329 }; 1240 - "spdx-license-ids-3.0.7" = { 1330 + "spdx-license-ids-3.0.13" = { 1241 1331 name = "spdx-license-ids"; 1242 1332 packageName = "spdx-license-ids"; 1243 - version = "3.0.7"; 1333 + version = "3.0.13"; 1244 1334 src = fetchurl { 1245 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz"; 1246 - sha512 = "U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ=="; 1335 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz"; 1336 + sha512 = "XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w=="; 1247 1337 }; 1248 1338 }; 1249 1339 "speakingurl-14.0.1" = { ··· 1261 1351 version = "1.0.3"; 1262 1352 src = fetchurl { 1263 1353 url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; 1264 - sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 1354 + sha512 = "D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="; 1265 1355 }; 1266 1356 }; 1267 1357 "string-width-1.0.2" = { ··· 1270 1360 version = "1.0.2"; 1271 1361 src = fetchurl { 1272 1362 url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"; 1273 - sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; 1363 + sha512 = "0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw=="; 1364 + }; 1365 + }; 1366 + "string-width-4.2.3" = { 1367 + name = "string-width"; 1368 + packageName = "string-width"; 1369 + version = "4.2.3"; 1370 + src = fetchurl { 1371 + url = "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"; 1372 + sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 1274 1373 }; 1275 1374 }; 1276 1375 "string_decoder-1.1.1" = { ··· 1282 1381 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 1283 1382 }; 1284 1383 }; 1384 + "string_decoder-1.3.0" = { 1385 + name = "string_decoder"; 1386 + packageName = "string_decoder"; 1387 + version = "1.3.0"; 1388 + src = fetchurl { 1389 + url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"; 1390 + sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; 1391 + }; 1392 + }; 1285 1393 "strip-ansi-3.0.1" = { 1286 1394 name = "strip-ansi"; 1287 1395 packageName = "strip-ansi"; 1288 1396 version = "3.0.1"; 1289 1397 src = fetchurl { 1290 1398 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 1291 - sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; 1399 + sha512 = "VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg=="; 1400 + }; 1401 + }; 1402 + "strip-ansi-6.0.1" = { 1403 + name = "strip-ansi"; 1404 + packageName = "strip-ansi"; 1405 + version = "6.0.1"; 1406 + src = fetchurl { 1407 + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"; 1408 + sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 1292 1409 }; 1293 1410 }; 1294 1411 "strip-bom-2.0.0" = { ··· 1297 1414 version = "2.0.0"; 1298 1415 src = fetchurl { 1299 1416 url = "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz"; 1300 - sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e"; 1417 + sha512 = "kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g=="; 1301 1418 }; 1302 1419 }; 1303 1420 "strip-indent-1.0.1" = { ··· 1306 1423 version = "1.0.1"; 1307 1424 src = fetchurl { 1308 1425 url = "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz"; 1309 - sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2"; 1426 + sha512 = "I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA=="; 1310 1427 }; 1311 1428 }; 1312 1429 "strip-json-comments-2.0.1" = { ··· 1315 1432 version = "2.0.1"; 1316 1433 src = fetchurl { 1317 1434 url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; 1318 - sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 1435 + sha512 = "4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="; 1319 1436 }; 1320 1437 }; 1321 1438 "supports-color-2.0.0" = { ··· 1324 1441 version = "2.0.0"; 1325 1442 src = fetchurl { 1326 1443 url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; 1327 - sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; 1444 + sha512 = "KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g=="; 1328 1445 }; 1329 1446 }; 1330 - "tar-4.4.13" = { 1447 + "supports-preserve-symlinks-flag-1.0.0" = { 1448 + name = "supports-preserve-symlinks-flag"; 1449 + packageName = "supports-preserve-symlinks-flag"; 1450 + version = "1.0.0"; 1451 + src = fetchurl { 1452 + url = "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; 1453 + sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 1454 + }; 1455 + }; 1456 + "tar-6.1.14" = { 1331 1457 name = "tar"; 1332 1458 packageName = "tar"; 1333 - version = "4.4.13"; 1459 + version = "6.1.14"; 1334 1460 src = fetchurl { 1335 - url = "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz"; 1336 - sha512 = "w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA=="; 1461 + url = "https://registry.npmjs.org/tar/-/tar-6.1.14.tgz"; 1462 + sha512 = "piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw=="; 1337 1463 }; 1338 1464 }; 1339 1465 "timed-out-3.1.3" = { ··· 1342 1468 version = "3.1.3"; 1343 1469 src = fetchurl { 1344 1470 url = "https://registry.npmjs.org/timed-out/-/timed-out-3.1.3.tgz"; 1345 - sha1 = "95860bfcc5c76c277f8f8326fd0f5b2e20eba217"; 1471 + sha512 = "3RB4qgvPkxF/FGPnrzaWLhW1rxNK2sdH0mFjbhxkfTR6QXvcM3EtYm9L44UrhODZrZ+yhDXeMncLqi8QXn2MJg=="; 1472 + }; 1473 + }; 1474 + "tr46-0.0.3" = { 1475 + name = "tr46"; 1476 + packageName = "tr46"; 1477 + version = "0.0.3"; 1478 + src = fetchurl { 1479 + url = "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"; 1480 + sha512 = "N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="; 1346 1481 }; 1347 1482 }; 1348 1483 "trim-newlines-1.0.0" = { ··· 1351 1486 version = "1.0.0"; 1352 1487 src = fetchurl { 1353 1488 url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz"; 1354 - sha1 = "5887966bb582a4503a41eb524f7d35011815a613"; 1489 + sha512 = "Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw=="; 1355 1490 }; 1356 1491 }; 1357 1492 "unzip-response-1.0.2" = { ··· 1360 1495 version = "1.0.2"; 1361 1496 src = fetchurl { 1362 1497 url = "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.2.tgz"; 1363 - sha1 = "b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe"; 1498 + sha512 = "pwCcjjhEcpW45JZIySExBHYv5Y9EeL2OIGEfrSKp2dMUFGFv4CpvZkwJbVge8OvGH2BNNtJBx67DuKuJhf+N5Q=="; 1364 1499 }; 1365 1500 }; 1366 1501 "update-notifier-0.6.3" = { ··· 1369 1504 version = "0.6.3"; 1370 1505 src = fetchurl { 1371 1506 url = "https://registry.npmjs.org/update-notifier/-/update-notifier-0.6.3.tgz"; 1372 - sha1 = "776dec8daa13e962a341e8a1d98354306b67ae08"; 1507 + sha512 = "Gjt2a7j+qL2wvazHPSkWZOay4NfZe7WpV63OtrKbK6Uxyta0U1aS7f++XSNpljIinKYLC8wrNfPHYkPmV5AhbQ=="; 1373 1508 }; 1374 1509 }; 1375 1510 "url-parse-lax-1.0.0" = { ··· 1378 1513 version = "1.0.0"; 1379 1514 src = fetchurl { 1380 1515 url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz"; 1381 - sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73"; 1516 + sha512 = "BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA=="; 1382 1517 }; 1383 1518 }; 1384 1519 "util-deprecate-1.0.2" = { ··· 1387 1522 version = "1.0.2"; 1388 1523 src = fetchurl { 1389 1524 url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; 1390 - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 1525 + sha512 = "EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="; 1391 1526 }; 1392 1527 }; 1393 1528 "uuid-2.0.3" = { ··· 1396 1531 version = "2.0.3"; 1397 1532 src = fetchurl { 1398 1533 url = "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz"; 1399 - sha1 = "67e2e863797215530dff318e5bf9dcebfd47b21a"; 1534 + sha512 = "FULf7fayPdpASncVy4DLh3xydlXEJJpvIELjYjNeQWYUZ9pclcpvCZSr2gkmN2FrrGcI7G/cJsIEwk5/8vfXpg=="; 1400 1535 }; 1401 1536 }; 1402 1537 "validate-npm-package-license-3.0.4" = { ··· 1408 1543 sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="; 1409 1544 }; 1410 1545 }; 1411 - "wide-align-1.1.3" = { 1546 + "webidl-conversions-3.0.1" = { 1547 + name = "webidl-conversions"; 1548 + packageName = "webidl-conversions"; 1549 + version = "3.0.1"; 1550 + src = fetchurl { 1551 + url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"; 1552 + sha512 = "2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="; 1553 + }; 1554 + }; 1555 + "whatwg-url-5.0.0" = { 1556 + name = "whatwg-url"; 1557 + packageName = "whatwg-url"; 1558 + version = "5.0.0"; 1559 + src = fetchurl { 1560 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"; 1561 + sha512 = "saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="; 1562 + }; 1563 + }; 1564 + "wide-align-1.1.5" = { 1412 1565 name = "wide-align"; 1413 1566 packageName = "wide-align"; 1414 - version = "1.1.3"; 1567 + version = "1.1.5"; 1415 1568 src = fetchurl { 1416 - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; 1417 - sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; 1569 + url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz"; 1570 + sha512 = "eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg=="; 1418 1571 }; 1419 1572 }; 1420 1573 "widest-line-1.0.0" = { ··· 1423 1576 version = "1.0.0"; 1424 1577 src = fetchurl { 1425 1578 url = "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz"; 1426 - sha1 = "0c09c85c2a94683d0d7eaf8ee097d564bf0e105c"; 1579 + sha512 = "r5vvGtqsHUHn98V0jURY4Ts86xJf6+SzK9rpWdV8/73nURB3WFPIHd67aOvPw2fSuunIyHjAUqiJ2TY0x4E5gw=="; 1427 1580 }; 1428 1581 }; 1429 1582 "wrappy-1.0.2" = { ··· 1432 1585 version = "1.0.2"; 1433 1586 src = fetchurl { 1434 1587 url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; 1435 - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 1588 + sha512 = "l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="; 1436 1589 }; 1437 1590 }; 1438 1591 "write-file-atomic-1.3.4" = { ··· 1441 1594 version = "1.3.4"; 1442 1595 src = fetchurl { 1443 1596 url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz"; 1444 - sha1 = "f807a4f0b1d9e913ae7a48112e6cc3af1991b45f"; 1597 + sha512 = "SdrHoC/yVBPpV0Xq/mUZQIpW2sWXAShb/V4pomcJXh92RuaO+f3UTWItiR3Px+pLnV2PvC2/bfn5cwr5X6Vfxw=="; 1445 1598 }; 1446 1599 }; 1447 1600 "xdg-basedir-2.0.0" = { ··· 1450 1603 version = "2.0.0"; 1451 1604 src = fetchurl { 1452 1605 url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz"; 1453 - sha1 = "edbc903cc385fc04523d966a335504b5504d1bd2"; 1606 + sha512 = "NF1pPn594TaRSUO/HARoB4jK8I+rWgcpVlpQCK6/6o5PHyLUt2CSiDrpUZbQ6rROck+W2EwF8mBJcTs+W98J9w=="; 1454 1607 }; 1455 1608 }; 1456 - "yallist-3.1.1" = { 1609 + "yallist-4.0.0" = { 1457 1610 name = "yallist"; 1458 1611 packageName = "yallist"; 1459 - version = "3.1.1"; 1612 + version = "4.0.0"; 1460 1613 src = fetchurl { 1461 - url = "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz"; 1462 - sha512 = "a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="; 1614 + url = "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"; 1615 + sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 1463 1616 }; 1464 1617 }; 1465 1618 }; ··· 1471 1624 version = "1.3.0"; 1472 1625 src = fetchurl { 1473 1626 url = "https://registry.npmjs.org/base16-builder/-/base16-builder-1.3.0.tgz"; 1474 - sha1 = "320eafea9333a8ea2bc8e04bda8db2537c52d23f"; 1627 + sha512 = "fXzZ8Pn1mVA0POzZJ1tQzFHlHdVHpR+z31xlbECEy+7yW3jdkYvFtZl9V0SPJSwkOA5aPQALqi4rM0BCtJiAVA=="; 1475 1628 }; 1476 1629 dependencies = [ 1630 + sources."@mapbox/node-pre-gyp-1.0.10" 1477 1631 sources."abbrev-1.1.1" 1632 + sources."agent-base-6.0.2" 1478 1633 sources."ansi-regex-2.1.1" 1479 1634 sources."ansi-styles-2.2.1" 1480 1635 sources."any-promise-0.1.0" 1481 - sources."aproba-1.2.0" 1482 - sources."are-we-there-yet-1.1.5" 1636 + sources."aproba-2.0.0" 1637 + sources."are-we-there-yet-2.0.0" 1483 1638 sources."argparse-1.0.10" 1484 1639 sources."array-find-index-1.0.2" 1485 - sources."balanced-match-1.0.0" 1486 - sources."boxen-0.3.1" 1640 + sources."balanced-match-1.0.2" 1641 + (sources."boxen-0.3.1" // { 1642 + dependencies = [ 1643 + sources."is-fullwidth-code-point-1.0.0" 1644 + sources."string-width-1.0.2" 1645 + ]; 1646 + }) 1487 1647 sources."brace-expansion-1.1.11" 1488 1648 sources."bulk-replace-0.0.1" 1489 1649 sources."camelcase-2.1.1" 1490 1650 sources."camelcase-keys-2.1.0" 1491 - sources."capture-stack-trace-1.0.1" 1651 + sources."capture-stack-trace-1.0.2" 1492 1652 sources."chalk-1.1.3" 1493 - sources."chownr-1.1.4" 1653 + sources."chownr-2.0.0" 1494 1654 sources."code-point-at-1.1.0" 1655 + sources."color-support-1.1.3" 1495 1656 sources."commander-1.1.1" 1496 1657 sources."concat-map-0.0.1" 1497 - sources."configstore-2.1.0" 1658 + (sources."configstore-2.1.0" // { 1659 + dependencies = [ 1660 + sources."mkdirp-0.5.6" 1661 + ]; 1662 + }) 1498 1663 sources."console-control-strings-1.1.0" 1499 - sources."core-util-is-1.0.2" 1664 + sources."core-util-is-1.0.3" 1500 1665 sources."create-error-class-3.0.2" 1501 1666 sources."currently-unhandled-0.4.1" 1502 - sources."debug-3.2.7" 1667 + sources."debug-4.3.4" 1503 1668 sources."decamelize-1.2.0" 1504 1669 sources."deep-extend-0.6.0" 1505 1670 sources."delegates-1.0.0" 1506 - sources."detect-libc-1.0.3" 1671 + sources."detect-libc-2.0.1" 1507 1672 sources."dot-prop-3.0.0" 1508 - sources."duplexer2-0.1.4" 1673 + (sources."duplexer2-0.1.4" // { 1674 + dependencies = [ 1675 + sources."readable-stream-2.3.8" 1676 + sources."safe-buffer-5.1.2" 1677 + sources."string_decoder-1.1.1" 1678 + ]; 1679 + }) 1509 1680 sources."ejs-2.7.4" 1681 + sources."emoji-regex-8.0.0" 1682 + sources."encoding-0.1.13" 1510 1683 sources."error-ex-1.3.2" 1511 1684 sources."escape-string-regexp-1.0.5" 1512 1685 sources."esprima-4.0.1" 1513 1686 sources."filled-array-1.1.0" 1514 1687 sources."find-up-1.1.2" 1515 - sources."fs-minipass-1.2.7" 1688 + (sources."fs-minipass-2.1.0" // { 1689 + dependencies = [ 1690 + sources."minipass-3.3.6" 1691 + ]; 1692 + }) 1516 1693 sources."fs-promise-0.3.1" 1517 1694 sources."fs.realpath-1.0.0" 1518 1695 sources."function-bind-1.1.1" 1519 - sources."gauge-2.7.4" 1696 + (sources."gauge-3.0.2" // { 1697 + dependencies = [ 1698 + sources."ansi-regex-5.0.1" 1699 + sources."strip-ansi-6.0.1" 1700 + ]; 1701 + }) 1520 1702 sources."get-stdin-4.0.1" 1521 - sources."glob-7.1.6" 1522 - sources."got-5.7.1" 1523 - sources."graceful-fs-4.2.4" 1703 + sources."glob-7.2.3" 1704 + (sources."got-5.7.1" // { 1705 + dependencies = [ 1706 + sources."readable-stream-2.3.8" 1707 + sources."safe-buffer-5.1.2" 1708 + sources."string_decoder-1.1.1" 1709 + ]; 1710 + }) 1711 + sources."graceful-fs-4.2.11" 1524 1712 sources."has-1.0.3" 1525 1713 sources."has-ansi-2.0.0" 1526 1714 sources."has-unicode-2.0.1" 1527 1715 sources."hepburn-1.2.0" 1528 - sources."hosted-git-info-2.8.8" 1529 - sources."iconv-lite-0.4.24" 1530 - sources."ignore-walk-3.0.3" 1716 + sources."hosted-git-info-2.8.9" 1717 + sources."https-proxy-agent-5.0.1" 1718 + sources."iconv-lite-0.6.3" 1531 1719 sources."imurmurhash-0.1.4" 1532 1720 sources."indent-string-2.1.0" 1533 1721 sources."inflight-1.0.6" 1534 1722 sources."inherits-2.0.4" 1535 1723 sources."ini-1.3.8" 1536 1724 sources."is-arrayish-0.2.1" 1537 - sources."is-core-module-2.2.0" 1725 + sources."is-core-module-2.12.0" 1538 1726 sources."is-finite-1.1.0" 1539 - sources."is-fullwidth-code-point-1.0.0" 1727 + sources."is-fullwidth-code-point-3.0.0" 1540 1728 sources."is-npm-1.0.0" 1541 1729 sources."is-obj-1.0.1" 1542 1730 sources."is-redirect-1.0.0" ··· 1551 1739 sources."load-json-file-1.1.0" 1552 1740 sources."loud-rejection-1.6.0" 1553 1741 sources."lowercase-keys-1.0.1" 1742 + sources."lru-cache-6.0.0" 1743 + (sources."make-dir-3.1.0" // { 1744 + dependencies = [ 1745 + sources."semver-6.3.0" 1746 + ]; 1747 + }) 1554 1748 sources."map-obj-1.0.1" 1555 1749 sources."meow-3.7.0" 1556 - sources."minimatch-3.0.4" 1557 - sources."minimist-1.2.5" 1558 - sources."minipass-2.9.0" 1559 - sources."minizlib-1.3.3" 1560 - sources."mkdirp-0.5.5" 1561 - sources."ms-2.1.3" 1562 - sources."needle-2.6.0" 1563 - sources."node-addon-api-3.1.0" 1564 - sources."node-pre-gyp-0.14.0" 1750 + sources."minimatch-3.1.2" 1751 + sources."minimist-1.2.8" 1752 + sources."minipass-5.0.0" 1753 + (sources."minizlib-2.1.2" // { 1754 + dependencies = [ 1755 + sources."minipass-3.3.6" 1756 + ]; 1757 + }) 1758 + sources."mkdirp-1.0.4" 1759 + sources."ms-2.1.2" 1760 + sources."node-addon-api-3.2.1" 1761 + sources."node-fetch-2.6.10" 1565 1762 sources."node-status-codes-1.0.0" 1566 - sources."nodejieba-2.5.1" 1567 - sources."nopt-4.0.3" 1568 - sources."normalize-package-data-2.5.0" 1569 - sources."npm-bundled-1.1.1" 1570 - sources."npm-normalize-package-bin-1.0.1" 1571 - sources."npm-packlist-1.4.8" 1572 - sources."npmlog-4.1.2" 1763 + sources."nodejieba-2.5.2" 1764 + sources."nopt-5.0.0" 1765 + (sources."normalize-package-data-2.5.0" // { 1766 + dependencies = [ 1767 + sources."semver-5.7.1" 1768 + ]; 1769 + }) 1770 + sources."npmlog-5.0.1" 1573 1771 sources."number-is-nan-1.0.1" 1574 1772 sources."object-assign-4.1.1" 1575 1773 sources."once-1.4.0" ··· 1577 1775 sources."os-homedir-1.0.2" 1578 1776 sources."os-tmpdir-1.0.2" 1579 1777 sources."osenv-0.1.5" 1580 - sources."package-json-2.4.0" 1778 + (sources."package-json-2.4.0" // { 1779 + dependencies = [ 1780 + sources."semver-5.7.1" 1781 + ]; 1782 + }) 1581 1783 sources."parse-json-2.2.0" 1582 1784 sources."path-exists-2.1.0" 1583 1785 sources."path-is-absolute-1.0.1" 1584 - sources."path-parse-1.0.6" 1786 + sources."path-parse-1.0.7" 1585 1787 sources."path-type-1.1.0" 1586 1788 sources."pify-2.3.0" 1587 1789 sources."pinkie-2.0.4" 1588 1790 sources."pinkie-promise-2.0.1" 1589 - sources."pinyin-2.9.1" 1791 + sources."pinyin-2.11.2" 1590 1792 sources."prepend-http-1.0.4" 1591 1793 sources."process-nextick-args-2.0.1" 1592 1794 sources."rc-1.2.8" 1593 - sources."read-all-stream-3.1.0" 1795 + (sources."read-all-stream-3.1.0" // { 1796 + dependencies = [ 1797 + sources."readable-stream-2.3.8" 1798 + sources."safe-buffer-5.1.2" 1799 + sources."string_decoder-1.1.1" 1800 + ]; 1801 + }) 1594 1802 sources."read-pkg-1.1.0" 1595 1803 sources."read-pkg-up-1.0.1" 1596 - sources."readable-stream-2.3.7" 1804 + sources."readable-stream-3.6.2" 1597 1805 sources."redent-1.0.0" 1598 1806 sources."registry-auth-token-3.4.0" 1599 1807 sources."registry-url-3.1.0" 1600 1808 sources."repeating-2.0.1" 1601 - sources."resolve-1.19.0" 1602 - sources."rimraf-2.7.1" 1603 - sources."safe-buffer-5.1.2" 1809 + sources."resolve-1.22.3" 1810 + sources."rimraf-3.0.2" 1811 + sources."safe-buffer-5.2.1" 1604 1812 sources."safer-buffer-2.1.2" 1605 - sources."sax-1.2.4" 1606 - sources."semver-5.7.1" 1607 - sources."semver-diff-2.1.0" 1813 + sources."semver-7.5.0" 1814 + (sources."semver-diff-2.1.0" // { 1815 + dependencies = [ 1816 + sources."semver-5.7.1" 1817 + ]; 1818 + }) 1608 1819 sources."set-blocking-2.0.0" 1609 - sources."signal-exit-3.0.3" 1820 + sources."signal-exit-3.0.7" 1610 1821 sources."slide-1.1.6" 1611 - sources."spdx-correct-3.1.1" 1822 + sources."spdx-correct-3.2.0" 1612 1823 sources."spdx-exceptions-2.3.0" 1613 1824 sources."spdx-expression-parse-3.0.1" 1614 - sources."spdx-license-ids-3.0.7" 1825 + sources."spdx-license-ids-3.0.13" 1615 1826 sources."speakingurl-14.0.1" 1616 1827 sources."sprintf-js-1.0.3" 1617 - sources."string-width-1.0.2" 1618 - sources."string_decoder-1.1.1" 1828 + (sources."string-width-4.2.3" // { 1829 + dependencies = [ 1830 + sources."ansi-regex-5.0.1" 1831 + sources."strip-ansi-6.0.1" 1832 + ]; 1833 + }) 1834 + sources."string_decoder-1.3.0" 1619 1835 sources."strip-ansi-3.0.1" 1620 1836 sources."strip-bom-2.0.0" 1621 1837 sources."strip-indent-1.0.1" 1622 1838 sources."strip-json-comments-2.0.1" 1623 1839 sources."supports-color-2.0.0" 1624 - sources."tar-4.4.13" 1840 + sources."supports-preserve-symlinks-flag-1.0.0" 1841 + sources."tar-6.1.14" 1625 1842 sources."timed-out-3.1.3" 1843 + sources."tr46-0.0.3" 1626 1844 sources."trim-newlines-1.0.0" 1627 1845 sources."unzip-response-1.0.2" 1628 1846 sources."update-notifier-0.6.3" ··· 1630 1848 sources."util-deprecate-1.0.2" 1631 1849 sources."uuid-2.0.3" 1632 1850 sources."validate-npm-package-license-3.0.4" 1633 - sources."wide-align-1.1.3" 1634 - sources."widest-line-1.0.0" 1851 + sources."webidl-conversions-3.0.1" 1852 + sources."whatwg-url-5.0.0" 1853 + sources."wide-align-1.1.5" 1854 + (sources."widest-line-1.0.0" // { 1855 + dependencies = [ 1856 + sources."is-fullwidth-code-point-1.0.0" 1857 + sources."string-width-1.0.2" 1858 + ]; 1859 + }) 1635 1860 sources."wrappy-1.0.2" 1636 1861 sources."write-file-atomic-1.3.4" 1637 1862 sources."xdg-basedir-2.0.0" 1638 - sources."yallist-3.1.1" 1863 + sources."yallist-4.0.0" 1639 1864 ]; 1640 1865 buildInputs = globalBuildInputs; 1641 1866 meta = {
+2 -2
pkgs/misc/base16-builder/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 {pkgs ? import <nixpkgs> { 4 4 inherit system; 5 - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs_14"}: 5 + }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs_18"}: 6 6 7 7 let 8 8 globalBuildInputs = pkgs.lib.attrValues (import ./supplement.nix {
+108 -95
pkgs/misc/base16-builder/supplement.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 ··· 19 19 version = "2.1.1"; 20 20 src = fetchurl { 21 21 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 22 - sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 22 + sha512 = "TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="; 23 23 }; 24 24 }; 25 25 "aproba-1.2.0" = { ··· 31 31 sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="; 32 32 }; 33 33 }; 34 - "are-we-there-yet-1.1.5" = { 34 + "are-we-there-yet-1.1.7" = { 35 35 name = "are-we-there-yet"; 36 36 packageName = "are-we-there-yet"; 37 - version = "1.1.5"; 37 + version = "1.1.7"; 38 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; 40 - sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w=="; 39 + url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz"; 40 + sha512 = "nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g=="; 41 41 }; 42 42 }; 43 - "balanced-match-1.0.0" = { 43 + "balanced-match-1.0.2" = { 44 44 name = "balanced-match"; 45 45 packageName = "balanced-match"; 46 - version = "1.0.0"; 46 + version = "1.0.2"; 47 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; 49 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 48 + url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"; 49 + sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; 50 50 }; 51 51 }; 52 52 "brace-expansion-1.1.11" = { ··· 73 73 version = "1.1.0"; 74 74 src = fetchurl { 75 75 url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"; 76 - sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; 76 + sha512 = "RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA=="; 77 77 }; 78 78 }; 79 79 "concat-map-0.0.1" = { ··· 82 82 version = "0.0.1"; 83 83 src = fetchurl { 84 84 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 85 - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 85 + sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="; 86 86 }; 87 87 }; 88 88 "console-control-strings-1.1.0" = { ··· 91 91 version = "1.1.0"; 92 92 src = fetchurl { 93 93 url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz"; 94 - sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e"; 94 + sha512 = "ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="; 95 95 }; 96 96 }; 97 - "core-util-is-1.0.2" = { 97 + "core-util-is-1.0.3" = { 98 98 name = "core-util-is"; 99 99 packageName = "core-util-is"; 100 - version = "1.0.2"; 100 + version = "1.0.3"; 101 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; 103 - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 102 + url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"; 103 + sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; 104 104 }; 105 105 }; 106 106 "debug-3.2.7" = { ··· 127 127 version = "1.0.0"; 128 128 src = fetchurl { 129 129 url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz"; 130 - sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; 130 + sha512 = "bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="; 131 131 }; 132 132 }; 133 133 "detect-libc-1.0.3" = { ··· 136 136 version = "1.0.3"; 137 137 src = fetchurl { 138 138 url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"; 139 - sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"; 139 + sha512 = "pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg=="; 140 140 }; 141 141 }; 142 142 "fs-minipass-1.2.7" = { ··· 154 154 version = "1.0.0"; 155 155 src = fetchurl { 156 156 url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; 157 - sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 157 + sha512 = "OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="; 158 158 }; 159 159 }; 160 160 "gauge-2.7.4" = { ··· 163 163 version = "2.7.4"; 164 164 src = fetchurl { 165 165 url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz"; 166 - sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; 166 + sha512 = "14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg=="; 167 167 }; 168 168 }; 169 - "glob-7.1.6" = { 169 + "glob-7.2.3" = { 170 170 name = "glob"; 171 171 packageName = "glob"; 172 - version = "7.1.6"; 172 + version = "7.2.3"; 173 173 src = fetchurl { 174 - url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"; 175 - sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 174 + url = "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"; 175 + sha512 = "nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="; 176 176 }; 177 177 }; 178 178 "has-unicode-2.0.1" = { ··· 181 181 version = "2.0.1"; 182 182 src = fetchurl { 183 183 url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz"; 184 - sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9"; 184 + sha512 = "8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="; 185 185 }; 186 186 }; 187 187 "iconv-lite-0.4.24" = { ··· 193 193 sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 194 194 }; 195 195 }; 196 - "ignore-walk-3.0.3" = { 196 + "ignore-walk-3.0.4" = { 197 197 name = "ignore-walk"; 198 198 packageName = "ignore-walk"; 199 - version = "3.0.3"; 199 + version = "3.0.4"; 200 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz"; 202 - sha512 = "m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw=="; 201 + url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz"; 202 + sha512 = "PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ=="; 203 203 }; 204 204 }; 205 205 "inflight-1.0.6" = { ··· 208 208 version = "1.0.6"; 209 209 src = fetchurl { 210 210 url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; 211 - sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 211 + sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; 212 212 }; 213 213 }; 214 214 "inherits-2.0.4" = { ··· 235 235 version = "1.0.0"; 236 236 src = fetchurl { 237 237 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; 238 - sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; 238 + sha512 = "1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw=="; 239 239 }; 240 240 }; 241 241 "isarray-1.0.0" = { ··· 244 244 version = "1.0.0"; 245 245 src = fetchurl { 246 246 url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; 247 - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 247 + sha512 = "VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="; 248 248 }; 249 249 }; 250 - "minimatch-3.0.4" = { 250 + "minimatch-3.1.2" = { 251 251 name = "minimatch"; 252 252 packageName = "minimatch"; 253 - version = "3.0.4"; 253 + version = "3.1.2"; 254 254 src = fetchurl { 255 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 256 - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 255 + url = "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"; 256 + sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 257 257 }; 258 258 }; 259 - "minimist-1.2.5" = { 259 + "minimist-1.2.8" = { 260 260 name = "minimist"; 261 261 packageName = "minimist"; 262 - version = "1.2.5"; 262 + version = "1.2.8"; 263 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; 265 - sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 264 + url = "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz"; 265 + sha512 = "2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="; 266 266 }; 267 267 }; 268 268 "minipass-2.9.0" = { ··· 283 283 sha512 = "6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q=="; 284 284 }; 285 285 }; 286 - "mkdirp-0.5.5" = { 286 + "mkdirp-0.5.6" = { 287 287 name = "mkdirp"; 288 288 packageName = "mkdirp"; 289 - version = "0.5.5"; 289 + version = "0.5.6"; 290 290 src = fetchurl { 291 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"; 292 - sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 291 + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"; 292 + sha512 = "FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="; 293 293 }; 294 294 }; 295 295 "ms-2.1.3" = { ··· 301 301 sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 302 302 }; 303 303 }; 304 - "needle-2.6.0" = { 304 + "needle-2.9.1" = { 305 305 name = "needle"; 306 306 packageName = "needle"; 307 - version = "2.6.0"; 307 + version = "2.9.1"; 308 308 src = fetchurl { 309 - url = "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz"; 310 - sha512 = "KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg=="; 309 + url = "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz"; 310 + sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="; 311 311 }; 312 312 }; 313 313 "nopt-4.0.3" = { ··· 319 319 sha512 = "CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg=="; 320 320 }; 321 321 }; 322 - "npm-bundled-1.1.1" = { 322 + "npm-bundled-1.1.2" = { 323 323 name = "npm-bundled"; 324 324 packageName = "npm-bundled"; 325 - version = "1.1.1"; 325 + version = "1.1.2"; 326 326 src = fetchurl { 327 - url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.1.tgz"; 328 - sha512 = "gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA=="; 327 + url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz"; 328 + sha512 = "x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ=="; 329 329 }; 330 330 }; 331 331 "npm-normalize-package-bin-1.0.1" = { ··· 361 361 version = "1.0.1"; 362 362 src = fetchurl { 363 363 url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"; 364 - sha1 = "097b602b53422a522c1afb8790318336941a011d"; 364 + sha512 = "4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ=="; 365 365 }; 366 366 }; 367 367 "object-assign-4.1.1" = { ··· 370 370 version = "4.1.1"; 371 371 src = fetchurl { 372 372 url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"; 373 - sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 373 + sha512 = "rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="; 374 374 }; 375 375 }; 376 376 "once-1.4.0" = { ··· 379 379 version = "1.4.0"; 380 380 src = fetchurl { 381 381 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 382 - sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 382 + sha512 = "lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="; 383 383 }; 384 384 }; 385 385 "os-homedir-1.0.2" = { ··· 388 388 version = "1.0.2"; 389 389 src = fetchurl { 390 390 url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; 391 - sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; 391 + sha512 = "B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ=="; 392 392 }; 393 393 }; 394 394 "os-tmpdir-1.0.2" = { ··· 397 397 version = "1.0.2"; 398 398 src = fetchurl { 399 399 url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 400 - sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 400 + sha512 = "D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g=="; 401 401 }; 402 402 }; 403 403 "osenv-0.1.5" = { ··· 415 415 version = "1.0.1"; 416 416 src = fetchurl { 417 417 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 418 - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 418 + sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="; 419 419 }; 420 420 }; 421 421 "process-nextick-args-2.0.1" = { ··· 436 436 sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="; 437 437 }; 438 438 }; 439 - "readable-stream-2.3.7" = { 439 + "readable-stream-2.3.8" = { 440 440 name = "readable-stream"; 441 441 packageName = "readable-stream"; 442 - version = "2.3.7"; 442 + version = "2.3.8"; 443 443 src = fetchurl { 444 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; 445 - sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 444 + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"; 445 + sha512 = "8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="; 446 446 }; 447 447 }; 448 448 "rimraf-2.7.1" = { ··· 463 463 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 464 464 }; 465 465 }; 466 + "safe-buffer-5.2.1" = { 467 + name = "safe-buffer"; 468 + packageName = "safe-buffer"; 469 + version = "5.2.1"; 470 + src = fetchurl { 471 + url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"; 472 + sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 473 + }; 474 + }; 466 475 "safer-buffer-2.1.2" = { 467 476 name = "safer-buffer"; 468 477 packageName = "safer-buffer"; ··· 496 505 version = "2.0.0"; 497 506 src = fetchurl { 498 507 url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; 499 - sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 508 + sha512 = "KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="; 500 509 }; 501 510 }; 502 - "signal-exit-3.0.3" = { 511 + "signal-exit-3.0.7" = { 503 512 name = "signal-exit"; 504 513 packageName = "signal-exit"; 505 - version = "3.0.3"; 514 + version = "3.0.7"; 506 515 src = fetchurl { 507 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"; 508 - sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="; 516 + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"; 517 + sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 509 518 }; 510 519 }; 511 520 "string-width-1.0.2" = { ··· 514 523 version = "1.0.2"; 515 524 src = fetchurl { 516 525 url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"; 517 - sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; 526 + sha512 = "0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw=="; 518 527 }; 519 528 }; 520 529 "string_decoder-1.1.1" = { ··· 532 541 version = "3.0.1"; 533 542 src = fetchurl { 534 543 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 535 - sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; 544 + sha512 = "VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg=="; 536 545 }; 537 546 }; 538 547 "strip-json-comments-2.0.1" = { ··· 541 550 version = "2.0.1"; 542 551 src = fetchurl { 543 552 url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; 544 - sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 553 + sha512 = "4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="; 545 554 }; 546 555 }; 547 - "tar-4.4.13" = { 556 + "tar-4.4.19" = { 548 557 name = "tar"; 549 558 packageName = "tar"; 550 - version = "4.4.13"; 559 + version = "4.4.19"; 551 560 src = fetchurl { 552 - url = "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz"; 553 - sha512 = "w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA=="; 561 + url = "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz"; 562 + sha512 = "a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA=="; 554 563 }; 555 564 }; 556 565 "util-deprecate-1.0.2" = { ··· 559 568 version = "1.0.2"; 560 569 src = fetchurl { 561 570 url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; 562 - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 571 + sha512 = "EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="; 563 572 }; 564 573 }; 565 - "wide-align-1.1.3" = { 574 + "wide-align-1.1.5" = { 566 575 name = "wide-align"; 567 576 packageName = "wide-align"; 568 - version = "1.1.3"; 577 + version = "1.1.5"; 569 578 src = fetchurl { 570 - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; 571 - sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; 579 + url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz"; 580 + sha512 = "eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg=="; 572 581 }; 573 582 }; 574 583 "wrappy-1.0.2" = { ··· 577 586 version = "1.0.2"; 578 587 src = fetchurl { 579 588 url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; 580 - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 589 + sha512 = "l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="; 581 590 }; 582 591 }; 583 592 "yallist-3.1.1" = { ··· 604 613 sources."abbrev-1.1.1" 605 614 sources."ansi-regex-2.1.1" 606 615 sources."aproba-1.2.0" 607 - sources."are-we-there-yet-1.1.5" 608 - sources."balanced-match-1.0.0" 616 + sources."are-we-there-yet-1.1.7" 617 + sources."balanced-match-1.0.2" 609 618 sources."brace-expansion-1.1.11" 610 619 sources."chownr-1.1.4" 611 620 sources."code-point-at-1.1.0" 612 621 sources."concat-map-0.0.1" 613 622 sources."console-control-strings-1.1.0" 614 - sources."core-util-is-1.0.2" 623 + sources."core-util-is-1.0.3" 615 624 sources."debug-3.2.7" 616 625 sources."deep-extend-0.6.0" 617 626 sources."delegates-1.0.0" ··· 619 628 sources."fs-minipass-1.2.7" 620 629 sources."fs.realpath-1.0.0" 621 630 sources."gauge-2.7.4" 622 - sources."glob-7.1.6" 631 + sources."glob-7.2.3" 623 632 sources."has-unicode-2.0.1" 624 633 sources."iconv-lite-0.4.24" 625 - sources."ignore-walk-3.0.3" 634 + sources."ignore-walk-3.0.4" 626 635 sources."inflight-1.0.6" 627 636 sources."inherits-2.0.4" 628 637 sources."ini-1.3.8" 629 638 sources."is-fullwidth-code-point-1.0.0" 630 639 sources."isarray-1.0.0" 631 - sources."minimatch-3.0.4" 632 - sources."minimist-1.2.5" 640 + sources."minimatch-3.1.2" 641 + sources."minimist-1.2.8" 633 642 sources."minipass-2.9.0" 634 643 sources."minizlib-1.3.3" 635 - sources."mkdirp-0.5.5" 644 + sources."mkdirp-0.5.6" 636 645 sources."ms-2.1.3" 637 - sources."needle-2.6.0" 646 + sources."needle-2.9.1" 638 647 sources."nopt-4.0.3" 639 - sources."npm-bundled-1.1.1" 648 + sources."npm-bundled-1.1.2" 640 649 sources."npm-normalize-package-bin-1.0.1" 641 650 sources."npm-packlist-1.4.8" 642 651 sources."npmlog-4.1.2" ··· 649 658 sources."path-is-absolute-1.0.1" 650 659 sources."process-nextick-args-2.0.1" 651 660 sources."rc-1.2.8" 652 - sources."readable-stream-2.3.7" 661 + sources."readable-stream-2.3.8" 653 662 sources."rimraf-2.7.1" 654 663 sources."safe-buffer-5.1.2" 655 664 sources."safer-buffer-2.1.2" 656 665 sources."sax-1.2.4" 657 666 sources."semver-5.7.1" 658 667 sources."set-blocking-2.0.0" 659 - sources."signal-exit-3.0.3" 668 + sources."signal-exit-3.0.7" 660 669 sources."string-width-1.0.2" 661 670 sources."string_decoder-1.1.1" 662 671 sources."strip-ansi-3.0.1" 663 672 sources."strip-json-comments-2.0.1" 664 - sources."tar-4.4.13" 673 + (sources."tar-4.4.19" // { 674 + dependencies = [ 675 + sources."safe-buffer-5.2.1" 676 + ]; 677 + }) 665 678 sources."util-deprecate-1.0.2" 666 - sources."wide-align-1.1.3" 679 + sources."wide-align-1.1.5" 667 680 sources."wrappy-1.0.2" 668 681 sources."yallist-3.1.1" 669 682 ];
+6 -7
pkgs/os-specific/linux/erofs-utils/default.nix
··· 1 - { lib, stdenv, fetchgit, autoreconfHook, pkg-config, fuse, libuuid, lz4 }: 1 + { lib, stdenv, fetchurl, autoreconfHook, pkg-config, fuse, libuuid, lz4 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "erofs-utils"; 5 - version = "1.5"; 5 + version = "1.6"; 6 6 outputs = [ "out" "man" ]; 7 7 8 - src = fetchgit { 8 + src = fetchurl { 9 9 url = 10 - "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git"; 11 - rev = "v" + version; 12 - sha256 = "sha256-vMWAmGMJp0XDuc4sbo6Y7gfCQVAo4rETea0Tkdbg82U="; 10 + "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot/erofs-utils-${version}.tar.gz"; 11 + sha256 = "sha256-2/Gtrv8buFMrKacsip4ZGTjJOJlGdw3HY9PFnm8yBXE="; 13 12 }; 14 13 15 14 nativeBuildInputs = [ autoreconfHook pkg-config ]; ··· 19 18 20 19 meta = with lib; { 21 20 description = "Userspace utilities for linux-erofs file system"; 22 - license = with licenses; [ gpl2 ]; 21 + license = with licenses; [ gpl2Plus ]; 23 22 maintainers = with maintainers; [ ehmry ]; 24 23 platforms = platforms.linux; 25 24 };
-7
pkgs/os-specific/linux/firmware/firmware-manager/default.nix
··· 2 2 , stdenv 3 3 , rustPlatform 4 4 , fetchFromGitHub 5 - , xz 6 5 , pkg-config 7 6 , openssl 8 - , dbus 9 - , glib 10 7 , udev 11 - , cairo 12 - , pango 13 - , atk 14 - , gdk-pixbuf 15 8 , gtk3 16 9 , wrapGAppsHook 17 10 }:
+2 -2
pkgs/os-specific/linux/kernel/common-config.nix
··· 314 314 DRM_AMD_DC_DCN2_0 = whenBetween "5.3" "5.6" yes; 315 315 DRM_AMD_DC_DCN2_1 = whenBetween "5.4" "5.6" yes; 316 316 DRM_AMD_DC_DCN3_0 = whenBetween "5.9" "5.11" yes; 317 - DRM_AMD_DC_DCN = whenAtLeast "5.11" yes; 318 - DRM_AMD_DC_HDCP = whenAtLeast "5.5" yes; 317 + DRM_AMD_DC_DCN = whenBetween "5.11" "6.4" yes; 318 + DRM_AMD_DC_HDCP = whenBetween "5.5" "6.4" yes; 319 319 DRM_AMD_DC_SI = whenAtLeast "5.10" yes; 320 320 } // optionalAttrs (stdenv.hostPlatform.system == "x86_64-linux") { 321 321 # Intel GVT-g graphics virtualization supports 64-bit only
+9
pkgs/os-specific/linux/kernel/patches.nix
··· 62 62 name = "fix-em-ice-bonding"; 63 63 patch = ./fix-em-ice-bonding.patch; 64 64 }; 65 + 66 + CVE-2023-32233 = rec { 67 + name = "CVE-2023-32233"; 68 + patch = fetchpatch { 69 + name = name + ".patch"; 70 + url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/patch/?id=c1592a89942e9678f7d9c8030efa777c0d57edab"; 71 + hash = "sha256-DYPWgraXPNeFkjtuDYkFXHnCJ4yDewrukM2CCAqC2BE="; 72 + }; 73 + }; 65 74 }
+6 -6
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 25 25 stable = if stdenv.hostPlatform.system == "i686-linux" then legacy_390 else latest; 26 26 27 27 production = generic { 28 - version = "525.116.03"; 29 - sha256_64bit = "sha256-XClbAuvsLpqewNebqSkutiO0svu6im7WGQYJKaMNBGk="; 30 - sha256_aarch64 = "sha256-x4FZxtMDtlSwLvh0rCTdFp8+lCPoxdevCDA+b3I8De4="; 31 - openSha256 = "sha256-AiUWHwVjXiii4hckWcFFGPyvSJfWqBlRi+lZKdfGsKM="; 32 - settingsSha256 = "sha256-PgyV8YzEtLTER4ucnZuRjA2LkX1kqy+k0am0k9Ci40Q="; 33 - persistencedSha256 = "sha256-Ok20+fGlTlmMyROzIPQ+V+cStsM7BTabTVORJTNZDf4="; 28 + version = "525.116.04"; 29 + sha256_64bit = "sha256-hhDsgkR8/3LLXxizZX7ppjSlFRZiuK2QHrgfTE+2F/4="; 30 + sha256_aarch64 = "sha256-k7k22z5PYZdBVfuYXVcl9SFUMqZmK4qyxoRwlYyRdgU="; 31 + openSha256 = "sha256-dktHCoESqoNfu5M73aY5MQGROlZawZwzBqs3RkOyfoQ="; 32 + settingsSha256 = "sha256-qNjfsT9NGV151EHnG4fgBonVFSKc4yFEVomtXg9uYD4="; 33 + persistencedSha256 = "sha256-ci86XGlno6DbHw6rkVSzBpopaapfJvk0+lHcR4LDq50="; 34 34 35 35 ibtSupport = true; 36 36 };
+9 -27
pkgs/servers/ariang/default.nix
··· 1 - { lib ? pkgs.lib 1 + { lib 2 2 , stdenv 3 - , pkgs 4 3 , fetchFromGitHub 5 - , nodejs ? pkgs.nodejs_18 4 + , buildNpmPackage 5 + , nix-update-script 6 6 }: 7 7 8 - stdenv.mkDerivation rec { 8 + buildNpmPackage rec { 9 9 pname = "ariang"; 10 - version = "1.3.4"; 10 + version = "1.3.5"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "mayswind"; 14 14 repo = "AriaNg"; 15 15 rev = version; 16 - hash = "sha256-jprx1JIh+Q0Cv2NkLj9dMnGr+nR/0T08N02gXGknC1Q="; 16 + hash = "sha256-Ki9W66ITdunxU+HQWVf2pG+BROlYFYUJSAySC8wsJRo="; 17 17 }; 18 18 19 - buildPhase = 20 - let 21 - nodePackages = import ./node-composition.nix { 22 - inherit pkgs nodejs; 23 - inherit (stdenv.hostPlatform) system; 24 - }; 25 - nodeDependencies = (nodePackages.shell.override (old: { 26 - # access to path '/nix/store/...-source' is forbidden in restricted mode 27 - src = src; 28 - # Error: Cannot find module '/nix/store/...-node-dependencies 29 - dontNpmInstall = true; 30 - })).nodeDependencies; 31 - in 32 - '' 33 - runHook preBuild 19 + npmDepsHash = "sha256-FyIQinOQDJ+k612z/qkl3KW0z85sswRhQCbF6N63z8Y="; 34 20 35 - ln -s ${nodeDependencies}/lib/node_modules ./node_modules 36 - ${nodeDependencies}/bin/gulp clean build 37 - 38 - runHook postBuild 39 - ''; 21 + makeCacheWritable = true; 40 22 41 23 installPhase = '' 42 24 runHook preInstall ··· 47 29 runHook postInstall 48 30 ''; 49 31 50 - passthru.updateScript = ./update.sh; 32 + passthru.updateScript = nix-update-script {}; 51 33 52 34 meta = with lib; { 53 35 description = "a modern web frontend making aria2 easier to use";
-17
pkgs/servers/ariang/node-composition.nix
··· 1 - # This file has been generated by node2nix 1.11.1. Do not edit! 2 - 3 - {pkgs ? import <nixpkgs> { 4 - inherit system; 5 - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-18_x"}: 6 - 7 - let 8 - nodeEnv = import ../../development/node-packages/node-env.nix { 9 - inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript; 10 - inherit pkgs nodejs; 11 - libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; 12 - }; 13 - in 14 - import ./node-deps.nix { 15 - inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit; 16 - inherit nodeEnv; 17 - }
-10503
pkgs/servers/ariang/node-deps.nix
··· 1 - # This file has been generated by node2nix 1.11.1. Do not edit! 2 - 3 - {nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}: 4 - 5 - let 6 - sources = { 7 - "@gulp-sourcemaps/identity-map-2.0.1" = { 8 - name = "_at_gulp-sourcemaps_slash_identity-map"; 9 - packageName = "@gulp-sourcemaps/identity-map"; 10 - version = "2.0.1"; 11 - src = fetchurl { 12 - url = "https://registry.npmjs.org/@gulp-sourcemaps/identity-map/-/identity-map-2.0.1.tgz"; 13 - sha512 = "Tb+nSISZku+eQ4X1lAkevcQa+jknn/OVUgZ3XCxEKIsLsqYuPoJwJOPQeaOk75X3WPftb29GWY1eqE7GLsXb1Q=="; 14 - }; 15 - }; 16 - "@gulp-sourcemaps/map-sources-1.0.0" = { 17 - name = "_at_gulp-sourcemaps_slash_map-sources"; 18 - packageName = "@gulp-sourcemaps/map-sources"; 19 - version = "1.0.0"; 20 - src = fetchurl { 21 - url = "https://registry.npmjs.org/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz"; 22 - sha512 = "o/EatdaGt8+x2qpb0vFLC/2Gug/xYPRXb6a+ET1wGYKozKN3krDWC/zZFZAtrzxJHuDL12mwdfEFKcKMNvc55A=="; 23 - }; 24 - }; 25 - "@nodelib/fs.scandir-2.1.5" = { 26 - name = "_at_nodelib_slash_fs.scandir"; 27 - packageName = "@nodelib/fs.scandir"; 28 - version = "2.1.5"; 29 - src = fetchurl { 30 - url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"; 31 - sha512 = "vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="; 32 - }; 33 - }; 34 - "@nodelib/fs.stat-2.0.5" = { 35 - name = "_at_nodelib_slash_fs.stat"; 36 - packageName = "@nodelib/fs.stat"; 37 - version = "2.0.5"; 38 - src = fetchurl { 39 - url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"; 40 - sha512 = "RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="; 41 - }; 42 - }; 43 - "@nodelib/fs.walk-1.2.8" = { 44 - name = "_at_nodelib_slash_fs.walk"; 45 - packageName = "@nodelib/fs.walk"; 46 - version = "1.2.8"; 47 - src = fetchurl { 48 - url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; 49 - sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 50 - }; 51 - }; 52 - "@socket.io/component-emitter-3.1.0" = { 53 - name = "_at_socket.io_slash_component-emitter"; 54 - packageName = "@socket.io/component-emitter"; 55 - version = "3.1.0"; 56 - src = fetchurl { 57 - url = "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz"; 58 - sha512 = "+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg=="; 59 - }; 60 - }; 61 - "@types/cookie-0.4.1" = { 62 - name = "_at_types_slash_cookie"; 63 - packageName = "@types/cookie"; 64 - version = "0.4.1"; 65 - src = fetchurl { 66 - url = "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz"; 67 - sha512 = "XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q=="; 68 - }; 69 - }; 70 - "@types/cors-2.8.12" = { 71 - name = "_at_types_slash_cors"; 72 - packageName = "@types/cors"; 73 - version = "2.8.12"; 74 - src = fetchurl { 75 - url = "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz"; 76 - sha512 = "vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw=="; 77 - }; 78 - }; 79 - "@types/expect-1.20.4" = { 80 - name = "_at_types_slash_expect"; 81 - packageName = "@types/expect"; 82 - version = "1.20.4"; 83 - src = fetchurl { 84 - url = "https://registry.npmjs.org/@types/expect/-/expect-1.20.4.tgz"; 85 - sha512 = "Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg=="; 86 - }; 87 - }; 88 - "@types/node-14.18.33" = { 89 - name = "_at_types_slash_node"; 90 - packageName = "@types/node"; 91 - version = "14.18.33"; 92 - src = fetchurl { 93 - url = "https://registry.npmjs.org/@types/node/-/node-14.18.33.tgz"; 94 - sha512 = "qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg=="; 95 - }; 96 - }; 97 - "@types/node-18.11.7" = { 98 - name = "_at_types_slash_node"; 99 - packageName = "@types/node"; 100 - version = "18.11.7"; 101 - src = fetchurl { 102 - url = "https://registry.npmjs.org/@types/node/-/node-18.11.7.tgz"; 103 - sha512 = "LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ=="; 104 - }; 105 - }; 106 - "@types/vinyl-2.0.6" = { 107 - name = "_at_types_slash_vinyl"; 108 - packageName = "@types/vinyl"; 109 - version = "2.0.6"; 110 - src = fetchurl { 111 - url = "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.6.tgz"; 112 - sha512 = "ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g=="; 113 - }; 114 - }; 115 - "JSONStream-1.3.5" = { 116 - name = "JSONStream"; 117 - packageName = "JSONStream"; 118 - version = "1.3.5"; 119 - src = fetchurl { 120 - url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz"; 121 - sha512 = "E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ=="; 122 - }; 123 - }; 124 - "accepts-1.3.8" = { 125 - name = "accepts"; 126 - packageName = "accepts"; 127 - version = "1.3.8"; 128 - src = fetchurl { 129 - url = "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz"; 130 - sha512 = "PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="; 131 - }; 132 - }; 133 - "acorn-3.3.0" = { 134 - name = "acorn"; 135 - packageName = "acorn"; 136 - version = "3.3.0"; 137 - src = fetchurl { 138 - url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"; 139 - sha512 = "OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw=="; 140 - }; 141 - }; 142 - "acorn-5.7.4" = { 143 - name = "acorn"; 144 - packageName = "acorn"; 145 - version = "5.7.4"; 146 - src = fetchurl { 147 - url = "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz"; 148 - sha512 = "1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg=="; 149 - }; 150 - }; 151 - "acorn-6.4.2" = { 152 - name = "acorn"; 153 - packageName = "acorn"; 154 - version = "6.4.2"; 155 - src = fetchurl { 156 - url = "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz"; 157 - sha512 = "XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="; 158 - }; 159 - }; 160 - "acorn-7.4.1" = { 161 - name = "acorn"; 162 - packageName = "acorn"; 163 - version = "7.4.1"; 164 - src = fetchurl { 165 - url = "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"; 166 - sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 167 - }; 168 - }; 169 - "acorn-jsx-3.0.1" = { 170 - name = "acorn-jsx"; 171 - packageName = "acorn-jsx"; 172 - version = "3.0.1"; 173 - src = fetchurl { 174 - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz"; 175 - sha512 = "AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ=="; 176 - }; 177 - }; 178 - "acorn-node-1.8.2" = { 179 - name = "acorn-node"; 180 - packageName = "acorn-node"; 181 - version = "1.8.2"; 182 - src = fetchurl { 183 - url = "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz"; 184 - sha512 = "8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A=="; 185 - }; 186 - }; 187 - "acorn-walk-7.2.0" = { 188 - name = "acorn-walk"; 189 - packageName = "acorn-walk"; 190 - version = "7.2.0"; 191 - src = fetchurl { 192 - url = "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz"; 193 - sha512 = "OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="; 194 - }; 195 - }; 196 - "admin-lte-2.4.18" = { 197 - name = "admin-lte"; 198 - packageName = "admin-lte"; 199 - version = "2.4.18"; 200 - src = fetchurl { 201 - url = "https://registry.npmjs.org/admin-lte/-/admin-lte-2.4.18.tgz"; 202 - sha512 = "AfIdoUWdbQA0OmW7PnP8GJ3u6RMKNXefN3DRTBHCQXd7VeyJahUfZWtV62ppDxcdjpx0L08ypPV55ARmdGdOIw=="; 203 - }; 204 - }; 205 - "aggregate-error-3.1.0" = { 206 - name = "aggregate-error"; 207 - packageName = "aggregate-error"; 208 - version = "3.1.0"; 209 - src = fetchurl { 210 - url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"; 211 - sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="; 212 - }; 213 - }; 214 - "ajv-5.5.2" = { 215 - name = "ajv"; 216 - packageName = "ajv"; 217 - version = "5.5.2"; 218 - src = fetchurl { 219 - url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz"; 220 - sha512 = "Ajr4IcMXq/2QmMkEmSvxqfLN5zGmJ92gHXAeOXq1OekoH2rfDNsgdDoL2f7QaRCy7G/E6TpxBVdRuNraMztGHw=="; 221 - }; 222 - }; 223 - "ajv-keywords-2.1.1" = { 224 - name = "ajv-keywords"; 225 - packageName = "ajv-keywords"; 226 - version = "2.1.1"; 227 - src = fetchurl { 228 - url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz"; 229 - sha512 = "ZFztHzVRdGLAzJmpUT9LNFLe1YiVOEylcaNpEutM26PVTCtOD919IMfD01CgbRouB42Dd9atjx1HseC15DgOZA=="; 230 - }; 231 - }; 232 - "alphanum-sort-1.0.2" = { 233 - name = "alphanum-sort"; 234 - packageName = "alphanum-sort"; 235 - version = "1.0.2"; 236 - src = fetchurl { 237 - url = "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz"; 238 - sha512 = "0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ=="; 239 - }; 240 - }; 241 - "angular-1.6.10" = { 242 - name = "angular"; 243 - packageName = "angular"; 244 - version = "1.6.10"; 245 - src = fetchurl { 246 - url = "https://registry.npmjs.org/angular/-/angular-1.6.10.tgz"; 247 - sha512 = "PCZ5/hVdvPQiYyH0VwsPjrErPHRcITnaXxhksceOXgtJeesKHLA7KDu4X/yvcAi+1zdGgGF+9pDxkJvghXI9Wg=="; 248 - }; 249 - }; 250 - "angular-1.8.3" = { 251 - name = "angular"; 252 - packageName = "angular"; 253 - version = "1.8.3"; 254 - src = fetchurl { 255 - url = "https://registry.npmjs.org/angular/-/angular-1.8.3.tgz"; 256 - sha512 = "5qjkWIQQVsHj4Sb5TcEs4WZWpFeVFHXwxEBHUhrny41D8UrBAd6T/6nPPAsLngJCReIOqi95W3mxdveveutpZw=="; 257 - }; 258 - }; 259 - "angular-animate-1.6.10" = { 260 - name = "angular-animate"; 261 - packageName = "angular-animate"; 262 - version = "1.6.10"; 263 - src = fetchurl { 264 - url = "https://registry.npmjs.org/angular-animate/-/angular-animate-1.6.10.tgz"; 265 - sha512 = "RU9ZJbTspq0W0x675H5k1DeSgKbAFfp2aiYoNGdlD+wQNKvwwMR5ho+EkDKkx9zE02a5goe8Z6EhhYPQSff9dA=="; 266 - }; 267 - }; 268 - "angular-bittorrent-peerid-1.3.4" = { 269 - name = "angular-bittorrent-peerid"; 270 - packageName = "angular-bittorrent-peerid"; 271 - version = "1.3.4"; 272 - src = fetchurl { 273 - url = "https://registry.npmjs.org/angular-bittorrent-peerid/-/angular-bittorrent-peerid-1.3.4.tgz"; 274 - sha512 = "spq3Mi8nZYOcc6UiPCxPHatgOkDYg7CCBkrCx9GANEMnYYuZvmHZ4QjQa15VaENi02G1qv+JHB9a3Q/tqAyq3Q=="; 275 - }; 276 - }; 277 - "angular-busy-4.1.4" = { 278 - name = "angular-busy"; 279 - packageName = "angular-busy"; 280 - version = "4.1.4"; 281 - src = fetchurl { 282 - url = "https://registry.npmjs.org/angular-busy/-/angular-busy-4.1.4.tgz"; 283 - sha512 = "jTnsi619ARTQdD6Yy76Uip0LGMAqXx5ZTC892u6issq2e4f7Fh9mNzYP0pz+mdXnBlgdiN35Dbf45XMwdd0qUA=="; 284 - }; 285 - }; 286 - "angular-clipboard-1.7.0" = { 287 - name = "angular-clipboard"; 288 - packageName = "angular-clipboard"; 289 - version = "1.7.0"; 290 - src = fetchurl { 291 - url = "https://registry.npmjs.org/angular-clipboard/-/angular-clipboard-1.7.0.tgz"; 292 - sha512 = "4/eg3zZw1MJpIsMc+mWzeVNyWBu8YWpXPTdmbgyPRp/6f0xB6I3XR2iC6Mb4mg/5E9q6exCd0sX2yiIsw+ZLJw=="; 293 - }; 294 - }; 295 - "angular-cookies-1.6.10" = { 296 - name = "angular-cookies"; 297 - packageName = "angular-cookies"; 298 - version = "1.6.10"; 299 - src = fetchurl { 300 - url = "https://registry.npmjs.org/angular-cookies/-/angular-cookies-1.6.10.tgz"; 301 - sha512 = "ADfbqXLhwcaecAiWIaxpl8XWFJgWsrDl/ksSEkYm5dSoXHYlj3HKlAhPbjBv/foYS7pdI0apmSGHWrBPqdjF/g=="; 302 - }; 303 - }; 304 - "angular-input-dropdown-git+https://github.com/mayswind/angular-input-dropdown.git#68670e39816698b3eb98c0e740a0efe77d5fbdd1" = { 305 - name = "angular-input-dropdown"; 306 - packageName = "angular-input-dropdown"; 307 - version = "1.1.2"; 308 - src = fetchgit { 309 - url = "https://github.com/mayswind/angular-input-dropdown.git"; 310 - rev = "68670e39816698b3eb98c0e740a0efe77d5fbdd1"; 311 - sha256 = "3e29aa14f217dbaa06fd1618067d1431c6f3cce0a722f3f1dbe3e845f98dc9de"; 312 - }; 313 - }; 314 - "angular-local-storage-0.7.1" = { 315 - name = "angular-local-storage"; 316 - packageName = "angular-local-storage"; 317 - version = "0.7.1"; 318 - src = fetchurl { 319 - url = "https://registry.npmjs.org/angular-local-storage/-/angular-local-storage-0.7.1.tgz"; 320 - sha512 = "AJgX9+f8eWpsnSuPrNZ/G3TdH/iBtlEdOUgLohbddTrwJ+E0+tfHtXKNgYpYh7iN6aM6subYmn0KfvZBBaLdfw=="; 321 - }; 322 - }; 323 - "angular-messages-1.6.10" = { 324 - name = "angular-messages"; 325 - packageName = "angular-messages"; 326 - version = "1.6.10"; 327 - src = fetchurl { 328 - url = "https://registry.npmjs.org/angular-messages/-/angular-messages-1.6.10.tgz"; 329 - sha512 = "FpILIYqeBj2fP5U5txnO/cneeKZxdF+WqpBo7tgHXl2BmOVVWKUCEjMmByouYxwn9PFLeipBPjaaDs2/eB/m5A=="; 330 - }; 331 - }; 332 - "angular-moment-1.3.0" = { 333 - name = "angular-moment"; 334 - packageName = "angular-moment"; 335 - version = "1.3.0"; 336 - src = fetchurl { 337 - url = "https://registry.npmjs.org/angular-moment/-/angular-moment-1.3.0.tgz"; 338 - sha512 = "KG8rvO9MoaBLwtGnxTeUveSyNtrL+RNgGl1zqWN36+HDCCVGk2DGWOzqKWB6o+eTTbO3Opn4hupWKIElc8XETA=="; 339 - }; 340 - }; 341 - "angular-promise-buttons-0.1.23" = { 342 - name = "angular-promise-buttons"; 343 - packageName = "angular-promise-buttons"; 344 - version = "0.1.23"; 345 - src = fetchurl { 346 - url = "https://registry.npmjs.org/angular-promise-buttons/-/angular-promise-buttons-0.1.23.tgz"; 347 - sha512 = "LP57N1FgO9lybCDNJi6HrofSRpLnUtzsLgPg/k4LvFtSCiCZtFjf8uEsp274Q56w4lxXev4h5SGBhyuQ4uj7gw=="; 348 - }; 349 - }; 350 - "angular-route-1.6.10" = { 351 - name = "angular-route"; 352 - packageName = "angular-route"; 353 - version = "1.6.10"; 354 - src = fetchurl { 355 - url = "https://registry.npmjs.org/angular-route/-/angular-route-1.6.10.tgz"; 356 - sha512 = "BxjrjQNCbVqQKyB3nHjNI8zSUwhnQWFZnSBv5BZ336VbMKhWu74ad5xpFx5VMk6WyHlmMGDoRagzB6AKkRcvKA=="; 357 - }; 358 - }; 359 - "angular-sanitize-1.6.10" = { 360 - name = "angular-sanitize"; 361 - packageName = "angular-sanitize"; 362 - version = "1.6.10"; 363 - src = fetchurl { 364 - url = "https://registry.npmjs.org/angular-sanitize/-/angular-sanitize-1.6.10.tgz"; 365 - sha512 = "01i1Xoq9ykUrsoYQMSB6dWZmPp9Df5hfCqMAGGzJBWZ7L2WY0OtUphdI0YvR8ZF9lAsWtGNtsEFilObjq5nTgQ=="; 366 - }; 367 - }; 368 - "angular-sweetalert-1.1.2" = { 369 - name = "angular-sweetalert"; 370 - packageName = "angular-sweetalert"; 371 - version = "1.1.2"; 372 - src = fetchurl { 373 - url = "https://registry.npmjs.org/angular-sweetalert/-/angular-sweetalert-1.1.2.tgz"; 374 - sha512 = "7a+KUTMhqypSwtBUyt0YPKF/NwJ/zYrxoVauL6q13C76CXOu6aacWXPtxdEx3PXwb1yL5s9TMJ9vSdL74R+Q/g=="; 375 - }; 376 - }; 377 - "angular-touch-1.6.10" = { 378 - name = "angular-touch"; 379 - packageName = "angular-touch"; 380 - version = "1.6.10"; 381 - src = fetchurl { 382 - url = "https://registry.npmjs.org/angular-touch/-/angular-touch-1.6.10.tgz"; 383 - sha512 = "ZblW46aN5s7OOihpXDa0qzrJXdaVGE44jc+a8e1NpOjhCKZDQze+nBHh3xw3toAF1BIfDJIkRstadk4h2R/uLg=="; 384 - }; 385 - }; 386 - "angular-translate-2.19.0" = { 387 - name = "angular-translate"; 388 - packageName = "angular-translate"; 389 - version = "2.19.0"; 390 - src = fetchurl { 391 - url = "https://registry.npmjs.org/angular-translate/-/angular-translate-2.19.0.tgz"; 392 - sha512 = "Z/Fip5uUT2N85dPQ0sMEe1JdF5AehcDe4tg/9mWXNDVU531emHCg53ZND9Oe0dyNiGX5rWcJKmsL1Fujus1vGQ=="; 393 - }; 394 - }; 395 - "angular-ui-notification-0.3.6" = { 396 - name = "angular-ui-notification"; 397 - packageName = "angular-ui-notification"; 398 - version = "0.3.6"; 399 - src = fetchurl { 400 - url = "https://registry.npmjs.org/angular-ui-notification/-/angular-ui-notification-0.3.6.tgz"; 401 - sha512 = "Ki6MsFyTtA/8YCYnRd7COr55RC0AMoBorOoKHfLeZSOpk9UxrBv9wg077PiJgmGoCEkG7uun0zbp3bxOtKdD+w=="; 402 - }; 403 - }; 404 - "angular-utf8-base64-0.0.5" = { 405 - name = "angular-utf8-base64"; 406 - packageName = "angular-utf8-base64"; 407 - version = "0.0.5"; 408 - src = fetchurl { 409 - url = "https://registry.npmjs.org/angular-utf8-base64/-/angular-utf8-base64-0.0.5.tgz"; 410 - sha512 = "URBoz+DOM6/P7WpNL3JZRy/mlJmKrExou1CKzlgm1mupn3FRA5/VP4q+NUOp7bw+ylkPpOPNa53kosD+lqWtZw=="; 411 - }; 412 - }; 413 - "angular-websocket-2.0.1" = { 414 - name = "angular-websocket"; 415 - packageName = "angular-websocket"; 416 - version = "2.0.1"; 417 - src = fetchurl { 418 - url = "https://registry.npmjs.org/angular-websocket/-/angular-websocket-2.0.1.tgz"; 419 - sha512 = "MeMHf5X0cccSzETFj02QZ7x+1ij6DwWxdcm0zZNoxgIz6UxQcnOAajqFYlAP6k8X6MEfq1jhfzomyHkDDLm7IQ=="; 420 - }; 421 - }; 422 - "angularjs-dragula-2.0.0" = { 423 - name = "angularjs-dragula"; 424 - packageName = "angularjs-dragula"; 425 - version = "2.0.0"; 426 - src = fetchurl { 427 - url = "https://registry.npmjs.org/angularjs-dragula/-/angularjs-dragula-2.0.0.tgz"; 428 - sha512 = "TkBnvt130FTRj5+g8ly6H6BlvZoBS7lnVRD+92WL5uKqR7PmX+UYWaiMOtO5kEMcQfRCeDZ/62xOvbekvGetMA=="; 429 - }; 430 - }; 431 - "ansi-colors-1.1.0" = { 432 - name = "ansi-colors"; 433 - packageName = "ansi-colors"; 434 - version = "1.1.0"; 435 - src = fetchurl { 436 - url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz"; 437 - sha512 = "SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA=="; 438 - }; 439 - }; 440 - "ansi-cyan-0.1.1" = { 441 - name = "ansi-cyan"; 442 - packageName = "ansi-cyan"; 443 - version = "0.1.1"; 444 - src = fetchurl { 445 - url = "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz"; 446 - sha512 = "eCjan3AVo/SxZ0/MyIYRtkpxIu/H3xZN7URr1vXVrISxeyz8fUFz0FJziamK4sS8I+t35y4rHg1b2PklyBe/7A=="; 447 - }; 448 - }; 449 - "ansi-escapes-3.2.0" = { 450 - name = "ansi-escapes"; 451 - packageName = "ansi-escapes"; 452 - version = "3.2.0"; 453 - src = fetchurl { 454 - url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz"; 455 - sha512 = "cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ=="; 456 - }; 457 - }; 458 - "ansi-gray-0.1.1" = { 459 - name = "ansi-gray"; 460 - packageName = "ansi-gray"; 461 - version = "0.1.1"; 462 - src = fetchurl { 463 - url = "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz"; 464 - sha512 = "HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw=="; 465 - }; 466 - }; 467 - "ansi-red-0.1.1" = { 468 - name = "ansi-red"; 469 - packageName = "ansi-red"; 470 - version = "0.1.1"; 471 - src = fetchurl { 472 - url = "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz"; 473 - sha512 = "ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow=="; 474 - }; 475 - }; 476 - "ansi-regex-2.1.1" = { 477 - name = "ansi-regex"; 478 - packageName = "ansi-regex"; 479 - version = "2.1.1"; 480 - src = fetchurl { 481 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 482 - sha512 = "TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="; 483 - }; 484 - }; 485 - "ansi-regex-3.0.1" = { 486 - name = "ansi-regex"; 487 - packageName = "ansi-regex"; 488 - version = "3.0.1"; 489 - src = fetchurl { 490 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz"; 491 - sha512 = "+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="; 492 - }; 493 - }; 494 - "ansi-regex-5.0.1" = { 495 - name = "ansi-regex"; 496 - packageName = "ansi-regex"; 497 - version = "5.0.1"; 498 - src = fetchurl { 499 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"; 500 - sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 501 - }; 502 - }; 503 - "ansi-styles-2.2.1" = { 504 - name = "ansi-styles"; 505 - packageName = "ansi-styles"; 506 - version = "2.2.1"; 507 - src = fetchurl { 508 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; 509 - sha512 = "kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA=="; 510 - }; 511 - }; 512 - "ansi-styles-3.2.1" = { 513 - name = "ansi-styles"; 514 - packageName = "ansi-styles"; 515 - version = "3.2.1"; 516 - src = fetchurl { 517 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"; 518 - sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 519 - }; 520 - }; 521 - "ansi-styles-4.3.0" = { 522 - name = "ansi-styles"; 523 - packageName = "ansi-styles"; 524 - version = "4.3.0"; 525 - src = fetchurl { 526 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 527 - sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 528 - }; 529 - }; 530 - "ansi-wrap-0.1.0" = { 531 - name = "ansi-wrap"; 532 - packageName = "ansi-wrap"; 533 - version = "0.1.0"; 534 - src = fetchurl { 535 - url = "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz"; 536 - sha512 = "ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw=="; 537 - }; 538 - }; 539 - "anymatch-2.0.0" = { 540 - name = "anymatch"; 541 - packageName = "anymatch"; 542 - version = "2.0.0"; 543 - src = fetchurl { 544 - url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"; 545 - sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw=="; 546 - }; 547 - }; 548 - "anymatch-3.1.2" = { 549 - name = "anymatch"; 550 - packageName = "anymatch"; 551 - version = "3.1.2"; 552 - src = fetchurl { 553 - url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"; 554 - sha512 = "P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="; 555 - }; 556 - }; 557 - "append-buffer-1.0.2" = { 558 - name = "append-buffer"; 559 - packageName = "append-buffer"; 560 - version = "1.0.2"; 561 - src = fetchurl { 562 - url = "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz"; 563 - sha512 = "WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA=="; 564 - }; 565 - }; 566 - "archy-1.0.0" = { 567 - name = "archy"; 568 - packageName = "archy"; 569 - version = "1.0.0"; 570 - src = fetchurl { 571 - url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"; 572 - sha512 = "Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw=="; 573 - }; 574 - }; 575 - "argparse-1.0.10" = { 576 - name = "argparse"; 577 - packageName = "argparse"; 578 - version = "1.0.10"; 579 - src = fetchurl { 580 - url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"; 581 - sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; 582 - }; 583 - }; 584 - "arr-diff-1.1.0" = { 585 - name = "arr-diff"; 586 - packageName = "arr-diff"; 587 - version = "1.1.0"; 588 - src = fetchurl { 589 - url = "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz"; 590 - sha512 = "OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q=="; 591 - }; 592 - }; 593 - "arr-diff-4.0.0" = { 594 - name = "arr-diff"; 595 - packageName = "arr-diff"; 596 - version = "4.0.0"; 597 - src = fetchurl { 598 - url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"; 599 - sha512 = "YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA=="; 600 - }; 601 - }; 602 - "arr-filter-1.1.2" = { 603 - name = "arr-filter"; 604 - packageName = "arr-filter"; 605 - version = "1.1.2"; 606 - src = fetchurl { 607 - url = "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz"; 608 - sha512 = "A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA=="; 609 - }; 610 - }; 611 - "arr-flatten-1.1.0" = { 612 - name = "arr-flatten"; 613 - packageName = "arr-flatten"; 614 - version = "1.1.0"; 615 - src = fetchurl { 616 - url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"; 617 - sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="; 618 - }; 619 - }; 620 - "arr-map-2.0.2" = { 621 - name = "arr-map"; 622 - packageName = "arr-map"; 623 - version = "2.0.2"; 624 - src = fetchurl { 625 - url = "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz"; 626 - sha512 = "tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw=="; 627 - }; 628 - }; 629 - "arr-union-2.1.0" = { 630 - name = "arr-union"; 631 - packageName = "arr-union"; 632 - version = "2.1.0"; 633 - src = fetchurl { 634 - url = "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz"; 635 - sha512 = "t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA=="; 636 - }; 637 - }; 638 - "arr-union-3.1.0" = { 639 - name = "arr-union"; 640 - packageName = "arr-union"; 641 - version = "3.1.0"; 642 - src = fetchurl { 643 - url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"; 644 - sha512 = "sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q=="; 645 - }; 646 - }; 647 - "array-differ-1.0.0" = { 648 - name = "array-differ"; 649 - packageName = "array-differ"; 650 - version = "1.0.0"; 651 - src = fetchurl { 652 - url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz"; 653 - sha512 = "LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ=="; 654 - }; 655 - }; 656 - "array-each-1.0.1" = { 657 - name = "array-each"; 658 - packageName = "array-each"; 659 - version = "1.0.1"; 660 - src = fetchurl { 661 - url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz"; 662 - sha512 = "zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA=="; 663 - }; 664 - }; 665 - "array-initial-1.1.0" = { 666 - name = "array-initial"; 667 - packageName = "array-initial"; 668 - version = "1.1.0"; 669 - src = fetchurl { 670 - url = "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz"; 671 - sha512 = "BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw=="; 672 - }; 673 - }; 674 - "array-last-1.3.0" = { 675 - name = "array-last"; 676 - packageName = "array-last"; 677 - version = "1.3.0"; 678 - src = fetchurl { 679 - url = "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz"; 680 - sha512 = "eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg=="; 681 - }; 682 - }; 683 - "array-slice-0.2.3" = { 684 - name = "array-slice"; 685 - packageName = "array-slice"; 686 - version = "0.2.3"; 687 - src = fetchurl { 688 - url = "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz"; 689 - sha512 = "rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q=="; 690 - }; 691 - }; 692 - "array-slice-1.1.0" = { 693 - name = "array-slice"; 694 - packageName = "array-slice"; 695 - version = "1.1.0"; 696 - src = fetchurl { 697 - url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz"; 698 - sha512 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w=="; 699 - }; 700 - }; 701 - "array-sort-1.0.0" = { 702 - name = "array-sort"; 703 - packageName = "array-sort"; 704 - version = "1.0.0"; 705 - src = fetchurl { 706 - url = "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz"; 707 - sha512 = "ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg=="; 708 - }; 709 - }; 710 - "array-union-2.1.0" = { 711 - name = "array-union"; 712 - packageName = "array-union"; 713 - version = "2.1.0"; 714 - src = fetchurl { 715 - url = "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"; 716 - sha512 = "HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="; 717 - }; 718 - }; 719 - "array-uniq-1.0.3" = { 720 - name = "array-uniq"; 721 - packageName = "array-uniq"; 722 - version = "1.0.3"; 723 - src = fetchurl { 724 - url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"; 725 - sha512 = "MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q=="; 726 - }; 727 - }; 728 - "array-unique-0.3.2" = { 729 - name = "array-unique"; 730 - packageName = "array-unique"; 731 - version = "0.3.2"; 732 - src = fetchurl { 733 - url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"; 734 - sha512 = "SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ=="; 735 - }; 736 - }; 737 - "asn1.js-5.4.1" = { 738 - name = "asn1.js"; 739 - packageName = "asn1.js"; 740 - version = "5.4.1"; 741 - src = fetchurl { 742 - url = "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz"; 743 - sha512 = "+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA=="; 744 - }; 745 - }; 746 - "assert-1.5.0" = { 747 - name = "assert"; 748 - packageName = "assert"; 749 - version = "1.5.0"; 750 - src = fetchurl { 751 - url = "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz"; 752 - sha512 = "EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA=="; 753 - }; 754 - }; 755 - "assign-symbols-1.0.0" = { 756 - name = "assign-symbols"; 757 - packageName = "assign-symbols"; 758 - version = "1.0.0"; 759 - src = fetchurl { 760 - url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"; 761 - sha512 = "Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw=="; 762 - }; 763 - }; 764 - "async-2.6.4" = { 765 - name = "async"; 766 - packageName = "async"; 767 - version = "2.6.4"; 768 - src = fetchurl { 769 - url = "https://registry.npmjs.org/async/-/async-2.6.4.tgz"; 770 - sha512 = "mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="; 771 - }; 772 - }; 773 - "async-done-1.3.2" = { 774 - name = "async-done"; 775 - packageName = "async-done"; 776 - version = "1.3.2"; 777 - src = fetchurl { 778 - url = "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz"; 779 - sha512 = "uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw=="; 780 - }; 781 - }; 782 - "async-each-1.0.3" = { 783 - name = "async-each"; 784 - packageName = "async-each"; 785 - version = "1.0.3"; 786 - src = fetchurl { 787 - url = "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz"; 788 - sha512 = "z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ=="; 789 - }; 790 - }; 791 - "async-each-series-0.1.1" = { 792 - name = "async-each-series"; 793 - packageName = "async-each-series"; 794 - version = "0.1.1"; 795 - src = fetchurl { 796 - url = "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz"; 797 - sha512 = "p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ=="; 798 - }; 799 - }; 800 - "async-settle-1.0.0" = { 801 - name = "async-settle"; 802 - packageName = "async-settle"; 803 - version = "1.0.0"; 804 - src = fetchurl { 805 - url = "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz"; 806 - sha512 = "VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw=="; 807 - }; 808 - }; 809 - "atoa-1.0.0" = { 810 - name = "atoa"; 811 - packageName = "atoa"; 812 - version = "1.0.0"; 813 - src = fetchurl { 814 - url = "https://registry.npmjs.org/atoa/-/atoa-1.0.0.tgz"; 815 - sha512 = "VVE1H6cc4ai+ZXo/CRWoJiHXrA1qfA31DPnx6D20+kSI547hQN5Greh51LQ1baMRMfxO5K5M4ImMtZbZt2DODQ=="; 816 - }; 817 - }; 818 - "atob-2.1.2" = { 819 - name = "atob"; 820 - packageName = "atob"; 821 - version = "2.1.2"; 822 - src = fetchurl { 823 - url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"; 824 - sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="; 825 - }; 826 - }; 827 - "autoprefixer-10.4.13" = { 828 - name = "autoprefixer"; 829 - packageName = "autoprefixer"; 830 - version = "10.4.13"; 831 - src = fetchurl { 832 - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz"; 833 - sha512 = "49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg=="; 834 - }; 835 - }; 836 - "autoprefixer-6.7.7" = { 837 - name = "autoprefixer"; 838 - packageName = "autoprefixer"; 839 - version = "6.7.7"; 840 - src = fetchurl { 841 - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz"; 842 - sha512 = "WKExI/eSGgGAkWAO+wMVdFObZV7hQen54UpD1kCCTN3tvlL3W1jL4+lPP/M7MwoP7Q4RHzKtO3JQ4HxYEcd+xQ=="; 843 - }; 844 - }; 845 - "available-typed-arrays-1.0.5" = { 846 - name = "available-typed-arrays"; 847 - packageName = "available-typed-arrays"; 848 - version = "1.0.5"; 849 - src = fetchurl { 850 - url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"; 851 - sha512 = "DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="; 852 - }; 853 - }; 854 - "awesome-bootstrap-checkbox-0.3.7" = { 855 - name = "awesome-bootstrap-checkbox"; 856 - packageName = "awesome-bootstrap-checkbox"; 857 - version = "0.3.7"; 858 - src = fetchurl { 859 - url = "https://registry.npmjs.org/awesome-bootstrap-checkbox/-/awesome-bootstrap-checkbox-0.3.7.tgz"; 860 - sha512 = "W67P0YIPPxN5vg6uuGRrz/rVGqaATFiE3O8/YepssFBXVyMoO8AkfhNMOoHEVJk7m/O5OQ/9n64uXlTZjXiiFw=="; 861 - }; 862 - }; 863 - "axios-0.21.4" = { 864 - name = "axios"; 865 - packageName = "axios"; 866 - version = "0.21.4"; 867 - src = fetchurl { 868 - url = "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz"; 869 - sha512 = "ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg=="; 870 - }; 871 - }; 872 - "babel-code-frame-6.26.0" = { 873 - name = "babel-code-frame"; 874 - packageName = "babel-code-frame"; 875 - version = "6.26.0"; 876 - src = fetchurl { 877 - url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; 878 - sha512 = "XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g=="; 879 - }; 880 - }; 881 - "bach-1.2.0" = { 882 - name = "bach"; 883 - packageName = "bach"; 884 - version = "1.2.0"; 885 - src = fetchurl { 886 - url = "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz"; 887 - sha512 = "bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg=="; 888 - }; 889 - }; 890 - "balanced-match-0.4.2" = { 891 - name = "balanced-match"; 892 - packageName = "balanced-match"; 893 - version = "0.4.2"; 894 - src = fetchurl { 895 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz"; 896 - sha512 = "STw03mQKnGUYtoNjmowo4F2cRmIIxYEGiMsjjwla/u5P1lxadj/05WkNaFjNiKTgJkj8KiXbgAiRTmcQRwQNtg=="; 897 - }; 898 - }; 899 - "balanced-match-1.0.2" = { 900 - name = "balanced-match"; 901 - packageName = "balanced-match"; 902 - version = "1.0.2"; 903 - src = fetchurl { 904 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"; 905 - sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; 906 - }; 907 - }; 908 - "base-0.11.2" = { 909 - name = "base"; 910 - packageName = "base"; 911 - version = "0.11.2"; 912 - src = fetchurl { 913 - url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz"; 914 - sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg=="; 915 - }; 916 - }; 917 - "base64-js-1.5.1" = { 918 - name = "base64-js"; 919 - packageName = "base64-js"; 920 - version = "1.5.1"; 921 - src = fetchurl { 922 - url = "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"; 923 - sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="; 924 - }; 925 - }; 926 - "base64id-2.0.0" = { 927 - name = "base64id"; 928 - packageName = "base64id"; 929 - version = "2.0.0"; 930 - src = fetchurl { 931 - url = "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz"; 932 - sha512 = "lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog=="; 933 - }; 934 - }; 935 - "batch-0.6.1" = { 936 - name = "batch"; 937 - packageName = "batch"; 938 - version = "0.6.1"; 939 - src = fetchurl { 940 - url = "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz"; 941 - sha512 = "x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw=="; 942 - }; 943 - }; 944 - "beeper-1.1.1" = { 945 - name = "beeper"; 946 - packageName = "beeper"; 947 - version = "1.1.1"; 948 - src = fetchurl { 949 - url = "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz"; 950 - sha512 = "3vqtKL1N45I5dV0RdssXZG7X6pCqQrWPNOlBPZPrd+QkE2HEhR57Z04m0KtpbsZH73j+a3F8UD1TQnn+ExTvIA=="; 951 - }; 952 - }; 953 - "binary-extensions-1.13.1" = { 954 - name = "binary-extensions"; 955 - packageName = "binary-extensions"; 956 - version = "1.13.1"; 957 - src = fetchurl { 958 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz"; 959 - sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; 960 - }; 961 - }; 962 - "binary-extensions-2.2.0" = { 963 - name = "binary-extensions"; 964 - packageName = "binary-extensions"; 965 - version = "2.2.0"; 966 - src = fetchurl { 967 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; 968 - sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; 969 - }; 970 - }; 971 - "binaryextensions-2.3.0" = { 972 - name = "binaryextensions"; 973 - packageName = "binaryextensions"; 974 - version = "2.3.0"; 975 - src = fetchurl { 976 - url = "https://registry.npmjs.org/binaryextensions/-/binaryextensions-2.3.0.tgz"; 977 - sha512 = "nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg=="; 978 - }; 979 - }; 980 - "bn.js-4.12.0" = { 981 - name = "bn.js"; 982 - packageName = "bn.js"; 983 - version = "4.12.0"; 984 - src = fetchurl { 985 - url = "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"; 986 - sha512 = "c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="; 987 - }; 988 - }; 989 - "bn.js-5.2.1" = { 990 - name = "bn.js"; 991 - packageName = "bn.js"; 992 - version = "5.2.1"; 993 - src = fetchurl { 994 - url = "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz"; 995 - sha512 = "eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="; 996 - }; 997 - }; 998 - "bootstrap-3.4.1" = { 999 - name = "bootstrap"; 1000 - packageName = "bootstrap"; 1001 - version = "3.4.1"; 1002 - src = fetchurl { 1003 - url = "https://registry.npmjs.org/bootstrap/-/bootstrap-3.4.1.tgz"; 1004 - sha512 = "yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA=="; 1005 - }; 1006 - }; 1007 - "bootstrap-colorpicker-2.5.3" = { 1008 - name = "bootstrap-colorpicker"; 1009 - packageName = "bootstrap-colorpicker"; 1010 - version = "2.5.3"; 1011 - src = fetchurl { 1012 - url = "https://registry.npmjs.org/bootstrap-colorpicker/-/bootstrap-colorpicker-2.5.3.tgz"; 1013 - sha512 = "xdllX8LSMvKULs3b8JrgRXTvyvjkSMHHHVuHjjN5FNMqr6kRe5NPiMHFmeAFjlgDF73MspikudLuEwR28LbzLw=="; 1014 - }; 1015 - }; 1016 - "bootstrap-contextmenu-1.0.0" = { 1017 - name = "bootstrap-contextmenu"; 1018 - packageName = "bootstrap-contextmenu"; 1019 - version = "1.0.0"; 1020 - src = fetchurl { 1021 - url = "https://registry.npmjs.org/bootstrap-contextmenu/-/bootstrap-contextmenu-1.0.0.tgz"; 1022 - sha512 = "3UuA2vRRhsOjkCKZOFG29NMIPwKlSHSo9bABtLIF9TI1ryvYwi1vgpQYAzzkjT61Lhv4hE6UP9JJjFkREn96hg=="; 1023 - }; 1024 - }; 1025 - "bootstrap-datepicker-1.9.0" = { 1026 - name = "bootstrap-datepicker"; 1027 - packageName = "bootstrap-datepicker"; 1028 - version = "1.9.0"; 1029 - src = fetchurl { 1030 - url = "https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.9.0.tgz"; 1031 - sha512 = "9rYYbaVOheGYxjOr/+bJCmRPihfy+LkLSg4fIFMT9Od8WwWB/MB50w0JO1eBgKUMbb7PFHQD5uAfI3ArAxZRXA=="; 1032 - }; 1033 - }; 1034 - "bootstrap-daterangepicker-2.1.30" = { 1035 - name = "bootstrap-daterangepicker"; 1036 - packageName = "bootstrap-daterangepicker"; 1037 - version = "2.1.30"; 1038 - src = fetchurl { 1039 - url = "https://registry.npmjs.org/bootstrap-daterangepicker/-/bootstrap-daterangepicker-2.1.30.tgz"; 1040 - sha512 = "lZAmyQxwsthEbsIBKl2KVcUca+b/O8uAJxxY8AvlsCYF9dQlIY7WjskuqMJ3b/1YdXUgxHN/R6HFdVVNFSgeVQ=="; 1041 - }; 1042 - }; 1043 - "bootstrap-slider-9.10.0" = { 1044 - name = "bootstrap-slider"; 1045 - packageName = "bootstrap-slider"; 1046 - version = "9.10.0"; 1047 - src = fetchurl { 1048 - url = "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-9.10.0.tgz"; 1049 - sha512 = "a9MtENtt4r3ttPW5mpIpOFmCaIsm37EGukOgw5cfHlxKvsUSN8AN9JtwKrKuqgEnxs86kUSsMvMn8kqewMorKw=="; 1050 - }; 1051 - }; 1052 - "brace-expansion-1.1.11" = { 1053 - name = "brace-expansion"; 1054 - packageName = "brace-expansion"; 1055 - version = "1.1.11"; 1056 - src = fetchurl { 1057 - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; 1058 - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; 1059 - }; 1060 - }; 1061 - "braces-2.3.2" = { 1062 - name = "braces"; 1063 - packageName = "braces"; 1064 - version = "2.3.2"; 1065 - src = fetchurl { 1066 - url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz"; 1067 - sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w=="; 1068 - }; 1069 - }; 1070 - "braces-3.0.2" = { 1071 - name = "braces"; 1072 - packageName = "braces"; 1073 - version = "3.0.2"; 1074 - src = fetchurl { 1075 - url = "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"; 1076 - sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; 1077 - }; 1078 - }; 1079 - "brorand-1.1.0" = { 1080 - name = "brorand"; 1081 - packageName = "brorand"; 1082 - version = "1.1.0"; 1083 - src = fetchurl { 1084 - url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz"; 1085 - sha512 = "cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w=="; 1086 - }; 1087 - }; 1088 - "brotli-size-4.0.0" = { 1089 - name = "brotli-size"; 1090 - packageName = "brotli-size"; 1091 - version = "4.0.0"; 1092 - src = fetchurl { 1093 - url = "https://registry.npmjs.org/brotli-size/-/brotli-size-4.0.0.tgz"; 1094 - sha512 = "uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA=="; 1095 - }; 1096 - }; 1097 - "browser-pack-6.1.0" = { 1098 - name = "browser-pack"; 1099 - packageName = "browser-pack"; 1100 - version = "6.1.0"; 1101 - src = fetchurl { 1102 - url = "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz"; 1103 - sha512 = "erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA=="; 1104 - }; 1105 - }; 1106 - "browser-resolve-2.0.0" = { 1107 - name = "browser-resolve"; 1108 - packageName = "browser-resolve"; 1109 - version = "2.0.0"; 1110 - src = fetchurl { 1111 - url = "https://registry.npmjs.org/browser-resolve/-/browser-resolve-2.0.0.tgz"; 1112 - sha512 = "7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ=="; 1113 - }; 1114 - }; 1115 - "browser-sync-2.27.10" = { 1116 - name = "browser-sync"; 1117 - packageName = "browser-sync"; 1118 - version = "2.27.10"; 1119 - src = fetchurl { 1120 - url = "https://registry.npmjs.org/browser-sync/-/browser-sync-2.27.10.tgz"; 1121 - sha512 = "xKm+6KJmJu6RuMWWbFkKwOCSqQOxYe3nOrFkKI5Tr/ZzjPxyU3pFShKK3tWnazBo/3lYQzN7fzjixG8fwJh1Xw=="; 1122 - }; 1123 - }; 1124 - "browser-sync-client-2.27.10" = { 1125 - name = "browser-sync-client"; 1126 - packageName = "browser-sync-client"; 1127 - version = "2.27.10"; 1128 - src = fetchurl { 1129 - url = "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.27.10.tgz"; 1130 - sha512 = "KCFKA1YDj6cNul0VsA28apohtBsdk5Wv8T82ClOZPZMZWxPj4Ny5AUbrj9UlAb/k6pdxE5HABrWDhP9+cjt4HQ=="; 1131 - }; 1132 - }; 1133 - "browser-sync-ui-2.27.10" = { 1134 - name = "browser-sync-ui"; 1135 - packageName = "browser-sync-ui"; 1136 - version = "2.27.10"; 1137 - src = fetchurl { 1138 - url = "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.27.10.tgz"; 1139 - sha512 = "elbJILq4Uo6OQv6gsvS3Y9vRAJlWu+h8j0JDkF0X/ua+3S6SVbbiWnZc8sNOFlG7yvVGIwBED3eaYQ0iBo1Dtw=="; 1140 - }; 1141 - }; 1142 - "browserify-17.0.0" = { 1143 - name = "browserify"; 1144 - packageName = "browserify"; 1145 - version = "17.0.0"; 1146 - src = fetchurl { 1147 - url = "https://registry.npmjs.org/browserify/-/browserify-17.0.0.tgz"; 1148 - sha512 = "SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w=="; 1149 - }; 1150 - }; 1151 - "browserify-aes-1.2.0" = { 1152 - name = "browserify-aes"; 1153 - packageName = "browserify-aes"; 1154 - version = "1.2.0"; 1155 - src = fetchurl { 1156 - url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz"; 1157 - sha512 = "+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA=="; 1158 - }; 1159 - }; 1160 - "browserify-cipher-1.0.1" = { 1161 - name = "browserify-cipher"; 1162 - packageName = "browserify-cipher"; 1163 - version = "1.0.1"; 1164 - src = fetchurl { 1165 - url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz"; 1166 - sha512 = "sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w=="; 1167 - }; 1168 - }; 1169 - "browserify-des-1.0.2" = { 1170 - name = "browserify-des"; 1171 - packageName = "browserify-des"; 1172 - version = "1.0.2"; 1173 - src = fetchurl { 1174 - url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz"; 1175 - sha512 = "BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A=="; 1176 - }; 1177 - }; 1178 - "browserify-rsa-4.1.0" = { 1179 - name = "browserify-rsa"; 1180 - packageName = "browserify-rsa"; 1181 - version = "4.1.0"; 1182 - src = fetchurl { 1183 - url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz"; 1184 - sha512 = "AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog=="; 1185 - }; 1186 - }; 1187 - "browserify-sign-4.2.1" = { 1188 - name = "browserify-sign"; 1189 - packageName = "browserify-sign"; 1190 - version = "4.2.1"; 1191 - src = fetchurl { 1192 - url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz"; 1193 - sha512 = "/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg=="; 1194 - }; 1195 - }; 1196 - "browserify-zlib-0.2.0" = { 1197 - name = "browserify-zlib"; 1198 - packageName = "browserify-zlib"; 1199 - version = "0.2.0"; 1200 - src = fetchurl { 1201 - url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz"; 1202 - sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA=="; 1203 - }; 1204 - }; 1205 - "browserslist-1.7.7" = { 1206 - name = "browserslist"; 1207 - packageName = "browserslist"; 1208 - version = "1.7.7"; 1209 - src = fetchurl { 1210 - url = "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz"; 1211 - sha512 = "qHJblDE2bXVRYzuDetv/wAeHOJyO97+9wxC1cdCtyzgNuSozOyRCiiLaCR1f71AN66lQdVVBipWm63V+a7bPOw=="; 1212 - }; 1213 - }; 1214 - "browserslist-4.21.4" = { 1215 - name = "browserslist"; 1216 - packageName = "browserslist"; 1217 - version = "4.21.4"; 1218 - src = fetchurl { 1219 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz"; 1220 - sha512 = "CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw=="; 1221 - }; 1222 - }; 1223 - "bs-recipes-1.3.4" = { 1224 - name = "bs-recipes"; 1225 - packageName = "bs-recipes"; 1226 - version = "1.3.4"; 1227 - src = fetchurl { 1228 - url = "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz"; 1229 - sha512 = "BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw=="; 1230 - }; 1231 - }; 1232 - "bs-snippet-injector-2.0.1" = { 1233 - name = "bs-snippet-injector"; 1234 - packageName = "bs-snippet-injector"; 1235 - version = "2.0.1"; 1236 - src = fetchurl { 1237 - url = "https://registry.npmjs.org/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz"; 1238 - sha512 = "4u8IgB+L9L+S5hknOj3ddNSb42436gsnGm1AuM15B7CdbkpQTyVWgIM5/JUBiKiRwGOR86uo0Lu/OsX+SAlJmw=="; 1239 - }; 1240 - }; 1241 - "buffer-5.2.1" = { 1242 - name = "buffer"; 1243 - packageName = "buffer"; 1244 - version = "5.2.1"; 1245 - src = fetchurl { 1246 - url = "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz"; 1247 - sha512 = "c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg=="; 1248 - }; 1249 - }; 1250 - "buffer-equal-1.0.1" = { 1251 - name = "buffer-equal"; 1252 - packageName = "buffer-equal"; 1253 - version = "1.0.1"; 1254 - src = fetchurl { 1255 - url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz"; 1256 - sha512 = "QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg=="; 1257 - }; 1258 - }; 1259 - "buffer-from-1.1.2" = { 1260 - name = "buffer-from"; 1261 - packageName = "buffer-from"; 1262 - version = "1.1.2"; 1263 - src = fetchurl { 1264 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"; 1265 - sha512 = "E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="; 1266 - }; 1267 - }; 1268 - "buffer-xor-1.0.3" = { 1269 - name = "buffer-xor"; 1270 - packageName = "buffer-xor"; 1271 - version = "1.0.3"; 1272 - src = fetchurl { 1273 - url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz"; 1274 - sha512 = "571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="; 1275 - }; 1276 - }; 1277 - "builtin-status-codes-3.0.0" = { 1278 - name = "builtin-status-codes"; 1279 - packageName = "builtin-status-codes"; 1280 - version = "3.0.0"; 1281 - src = fetchurl { 1282 - url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"; 1283 - sha512 = "HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ=="; 1284 - }; 1285 - }; 1286 - "bytes-3.1.2" = { 1287 - name = "bytes"; 1288 - packageName = "bytes"; 1289 - version = "3.1.2"; 1290 - src = fetchurl { 1291 - url = "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz"; 1292 - sha512 = "/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="; 1293 - }; 1294 - }; 1295 - "cache-base-1.0.1" = { 1296 - name = "cache-base"; 1297 - packageName = "cache-base"; 1298 - version = "1.0.1"; 1299 - src = fetchurl { 1300 - url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"; 1301 - sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; 1302 - }; 1303 - }; 1304 - "cached-path-relative-1.1.0" = { 1305 - name = "cached-path-relative"; 1306 - packageName = "cached-path-relative"; 1307 - version = "1.1.0"; 1308 - src = fetchurl { 1309 - url = "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.1.0.tgz"; 1310 - sha512 = "WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA=="; 1311 - }; 1312 - }; 1313 - "call-bind-1.0.2" = { 1314 - name = "call-bind"; 1315 - packageName = "call-bind"; 1316 - version = "1.0.2"; 1317 - src = fetchurl { 1318 - url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"; 1319 - sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="; 1320 - }; 1321 - }; 1322 - "caller-path-0.1.0" = { 1323 - name = "caller-path"; 1324 - packageName = "caller-path"; 1325 - version = "0.1.0"; 1326 - src = fetchurl { 1327 - url = "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz"; 1328 - sha512 = "UJiE1otjXPF5/x+T3zTnSFiTOEmJoGTD9HmBoxnCUwho61a2eSNn/VwtwuIBDAo2SEOv1AJ7ARI5gCmohFLu/g=="; 1329 - }; 1330 - }; 1331 - "callsites-0.2.0" = { 1332 - name = "callsites"; 1333 - packageName = "callsites"; 1334 - version = "0.2.0"; 1335 - src = fetchurl { 1336 - url = "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz"; 1337 - sha512 = "Zv4Dns9IbXXmPkgRRUjAaJQgfN4xX5p6+RQFhWUqscdvvK2xK/ZL8b3IXIJsj+4sD+f24NwnWy2BY8AJ82JB0A=="; 1338 - }; 1339 - }; 1340 - "camel-case-3.0.0" = { 1341 - name = "camel-case"; 1342 - packageName = "camel-case"; 1343 - version = "3.0.0"; 1344 - src = fetchurl { 1345 - url = "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz"; 1346 - sha512 = "+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w=="; 1347 - }; 1348 - }; 1349 - "camelcase-3.0.0" = { 1350 - name = "camelcase"; 1351 - packageName = "camelcase"; 1352 - version = "3.0.0"; 1353 - src = fetchurl { 1354 - url = "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz"; 1355 - sha512 = "4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg=="; 1356 - }; 1357 - }; 1358 - "caniuse-api-1.6.1" = { 1359 - name = "caniuse-api"; 1360 - packageName = "caniuse-api"; 1361 - version = "1.6.1"; 1362 - src = fetchurl { 1363 - url = "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz"; 1364 - sha512 = "SBTl70K0PkDUIebbkXrxWqZlHNs0wRgRD6QZ8guctShjbh63gEPfF+Wj0Yw+75f5Y8tSzqAI/NcisYv/cCah2Q=="; 1365 - }; 1366 - }; 1367 - "caniuse-db-1.0.30001426" = { 1368 - name = "caniuse-db"; 1369 - packageName = "caniuse-db"; 1370 - version = "1.0.30001426"; 1371 - src = fetchurl { 1372 - url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001426.tgz"; 1373 - sha512 = "TavCzxeIqAKxepRJlyhbDm1YPWMzmI9+yf+brSz9uHLk0G35dowpI/1oxaSDOvBuuJRPg2KYeqlSJDxfXKp9kw=="; 1374 - }; 1375 - }; 1376 - "caniuse-lite-1.0.30001426" = { 1377 - name = "caniuse-lite"; 1378 - packageName = "caniuse-lite"; 1379 - version = "1.0.30001426"; 1380 - src = fetchurl { 1381 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001426.tgz"; 1382 - sha512 = "n7cosrHLl8AWt0wwZw/PJZgUg3lV0gk9LMI7ikGJwhyhgsd2Nb65vKvmSexCqq/J7rbH3mFG6yZZiPR5dLPW5A=="; 1383 - }; 1384 - }; 1385 - "chalk-1.1.3" = { 1386 - name = "chalk"; 1387 - packageName = "chalk"; 1388 - version = "1.1.3"; 1389 - src = fetchurl { 1390 - url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; 1391 - sha512 = "U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A=="; 1392 - }; 1393 - }; 1394 - "chalk-2.4.2" = { 1395 - name = "chalk"; 1396 - packageName = "chalk"; 1397 - version = "2.4.2"; 1398 - src = fetchurl { 1399 - url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"; 1400 - sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 1401 - }; 1402 - }; 1403 - "chalk-4.1.2" = { 1404 - name = "chalk"; 1405 - packageName = "chalk"; 1406 - version = "4.1.2"; 1407 - src = fetchurl { 1408 - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"; 1409 - sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 1410 - }; 1411 - }; 1412 - "chardet-0.4.2" = { 1413 - name = "chardet"; 1414 - packageName = "chardet"; 1415 - version = "0.4.2"; 1416 - src = fetchurl { 1417 - url = "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz"; 1418 - sha512 = "j/Toj7f1z98Hh2cYo2BVr85EpIRWqUi7rtRSGxh/cqUjqrnJe9l9UE7IUGd2vQ2p+kSHLkSzObQPZPLUC6TQwg=="; 1419 - }; 1420 - }; 1421 - "charm-0.1.2" = { 1422 - name = "charm"; 1423 - packageName = "charm"; 1424 - version = "0.1.2"; 1425 - src = fetchurl { 1426 - url = "https://registry.npmjs.org/charm/-/charm-0.1.2.tgz"; 1427 - sha512 = "syedaZ9cPe7r3hoQA9twWYKu5AIyCswN5+szkmPBe9ccdLrj4bYaCnLVPTLd2kgVRc7+zoX4tyPgRnFKCj5YjQ=="; 1428 - }; 1429 - }; 1430 - "chart.js-1.1.1" = { 1431 - name = "chart.js"; 1432 - packageName = "chart.js"; 1433 - version = "1.1.1"; 1434 - src = fetchurl { 1435 - url = "https://registry.npmjs.org/chart.js/-/chart.js-1.1.1.tgz"; 1436 - sha512 = "1lcx4nsmYk3C50xMWFucOccdU7jh+RoHP25IiPlUoE6Qf317my+Nm48JOyPFrBRscqy6O4kkxif+omPKPkqWMA=="; 1437 - }; 1438 - }; 1439 - "chokidar-2.1.8" = { 1440 - name = "chokidar"; 1441 - packageName = "chokidar"; 1442 - version = "2.1.8"; 1443 - src = fetchurl { 1444 - url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz"; 1445 - sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg=="; 1446 - }; 1447 - }; 1448 - "chokidar-3.5.3" = { 1449 - name = "chokidar"; 1450 - packageName = "chokidar"; 1451 - version = "3.5.3"; 1452 - src = fetchurl { 1453 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"; 1454 - sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; 1455 - }; 1456 - }; 1457 - "cipher-base-1.0.4" = { 1458 - name = "cipher-base"; 1459 - packageName = "cipher-base"; 1460 - version = "1.0.4"; 1461 - src = fetchurl { 1462 - url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz"; 1463 - sha512 = "Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q=="; 1464 - }; 1465 - }; 1466 - "circular-json-0.3.3" = { 1467 - name = "circular-json"; 1468 - packageName = "circular-json"; 1469 - version = "0.3.3"; 1470 - src = fetchurl { 1471 - url = "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz"; 1472 - sha512 = "UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A=="; 1473 - }; 1474 - }; 1475 - "ckeditor-4.12.1" = { 1476 - name = "ckeditor"; 1477 - packageName = "ckeditor"; 1478 - version = "4.12.1"; 1479 - src = fetchurl { 1480 - url = "https://registry.npmjs.org/ckeditor/-/ckeditor-4.12.1.tgz"; 1481 - sha512 = "pH2Su4oi0D4iN/3U8nUcwI7/lXHoOJi0aiN8e2zxnm4Ow5kq8eZP2ZGmpYyuqRyKZ2tHaU8+OyYi7laXcjiq9Q=="; 1482 - }; 1483 - }; 1484 - "clap-1.2.3" = { 1485 - name = "clap"; 1486 - packageName = "clap"; 1487 - version = "1.2.3"; 1488 - src = fetchurl { 1489 - url = "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz"; 1490 - sha512 = "4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA=="; 1491 - }; 1492 - }; 1493 - "class-utils-0.3.6" = { 1494 - name = "class-utils"; 1495 - packageName = "class-utils"; 1496 - version = "0.3.6"; 1497 - src = fetchurl { 1498 - url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz"; 1499 - sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg=="; 1500 - }; 1501 - }; 1502 - "classie-1.0.0" = { 1503 - name = "classie"; 1504 - packageName = "classie"; 1505 - version = "1.0.0"; 1506 - src = fetchurl { 1507 - url = "https://registry.npmjs.org/classie/-/classie-1.0.0.tgz"; 1508 - sha512 = "r2RnvJXK9l5+NClh9exbgAdhJBl/nxGWFIhRhp2syqY1nT/Lt/ijELemTlGaoaFWVCrJ3eDDeDG6KM4WJw02NA=="; 1509 - }; 1510 - }; 1511 - "clean-css-4.2.4" = { 1512 - name = "clean-css"; 1513 - packageName = "clean-css"; 1514 - version = "4.2.4"; 1515 - src = fetchurl { 1516 - url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz"; 1517 - sha512 = "EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A=="; 1518 - }; 1519 - }; 1520 - "clean-stack-2.2.0" = { 1521 - name = "clean-stack"; 1522 - packageName = "clean-stack"; 1523 - version = "2.2.0"; 1524 - src = fetchurl { 1525 - url = "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"; 1526 - sha512 = "4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="; 1527 - }; 1528 - }; 1529 - "cli-cursor-2.1.0" = { 1530 - name = "cli-cursor"; 1531 - packageName = "cli-cursor"; 1532 - version = "2.1.0"; 1533 - src = fetchurl { 1534 - url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"; 1535 - sha512 = "8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw=="; 1536 - }; 1537 - }; 1538 - "cli-width-2.2.1" = { 1539 - name = "cli-width"; 1540 - packageName = "cli-width"; 1541 - version = "2.2.1"; 1542 - src = fetchurl { 1543 - url = "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz"; 1544 - sha512 = "GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw=="; 1545 - }; 1546 - }; 1547 - "cliui-3.2.0" = { 1548 - name = "cliui"; 1549 - packageName = "cliui"; 1550 - version = "3.2.0"; 1551 - src = fetchurl { 1552 - url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz"; 1553 - sha512 = "0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w=="; 1554 - }; 1555 - }; 1556 - "cliui-7.0.4" = { 1557 - name = "cliui"; 1558 - packageName = "cliui"; 1559 - version = "7.0.4"; 1560 - src = fetchurl { 1561 - url = "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz"; 1562 - sha512 = "OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="; 1563 - }; 1564 - }; 1565 - "cliui-8.0.1" = { 1566 - name = "cliui"; 1567 - packageName = "cliui"; 1568 - version = "8.0.1"; 1569 - src = fetchurl { 1570 - url = "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz"; 1571 - sha512 = "BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="; 1572 - }; 1573 - }; 1574 - "clone-1.0.4" = { 1575 - name = "clone"; 1576 - packageName = "clone"; 1577 - version = "1.0.4"; 1578 - src = fetchurl { 1579 - url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz"; 1580 - sha512 = "JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="; 1581 - }; 1582 - }; 1583 - "clone-2.1.2" = { 1584 - name = "clone"; 1585 - packageName = "clone"; 1586 - version = "2.1.2"; 1587 - src = fetchurl { 1588 - url = "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz"; 1589 - sha512 = "3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w=="; 1590 - }; 1591 - }; 1592 - "clone-buffer-1.0.0" = { 1593 - name = "clone-buffer"; 1594 - packageName = "clone-buffer"; 1595 - version = "1.0.0"; 1596 - src = fetchurl { 1597 - url = "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz"; 1598 - sha512 = "KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g=="; 1599 - }; 1600 - }; 1601 - "clone-stats-0.0.1" = { 1602 - name = "clone-stats"; 1603 - packageName = "clone-stats"; 1604 - version = "0.0.1"; 1605 - src = fetchurl { 1606 - url = "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz"; 1607 - sha512 = "dhUqc57gSMCo6TX85FLfe51eC/s+Im2MLkAgJwfaRRexR2tA4dd3eLEW4L6efzHc2iNorrRRXITifnDLlRrhaA=="; 1608 - }; 1609 - }; 1610 - "clone-stats-1.0.0" = { 1611 - name = "clone-stats"; 1612 - packageName = "clone-stats"; 1613 - version = "1.0.0"; 1614 - src = fetchurl { 1615 - url = "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz"; 1616 - sha512 = "au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag=="; 1617 - }; 1618 - }; 1619 - "cloneable-readable-1.1.3" = { 1620 - name = "cloneable-readable"; 1621 - packageName = "cloneable-readable"; 1622 - version = "1.1.3"; 1623 - src = fetchurl { 1624 - url = "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz"; 1625 - sha512 = "2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ=="; 1626 - }; 1627 - }; 1628 - "co-4.6.0" = { 1629 - name = "co"; 1630 - packageName = "co"; 1631 - version = "4.6.0"; 1632 - src = fetchurl { 1633 - url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz"; 1634 - sha512 = "QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ=="; 1635 - }; 1636 - }; 1637 - "coa-1.0.4" = { 1638 - name = "coa"; 1639 - packageName = "coa"; 1640 - version = "1.0.4"; 1641 - src = fetchurl { 1642 - url = "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz"; 1643 - sha512 = "KAGck/eNAmCL0dcT3BiuYwLbExK6lduR8DxM3C1TyDzaXhZHyZ8ooX5I5+na2e3dPFuibfxrGdorr0/Lr7RYCQ=="; 1644 - }; 1645 - }; 1646 - "code-point-at-1.1.0" = { 1647 - name = "code-point-at"; 1648 - packageName = "code-point-at"; 1649 - version = "1.1.0"; 1650 - src = fetchurl { 1651 - url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"; 1652 - sha512 = "RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA=="; 1653 - }; 1654 - }; 1655 - "collection-map-1.0.0" = { 1656 - name = "collection-map"; 1657 - packageName = "collection-map"; 1658 - version = "1.0.0"; 1659 - src = fetchurl { 1660 - url = "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz"; 1661 - sha512 = "5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA=="; 1662 - }; 1663 - }; 1664 - "collection-visit-1.0.0" = { 1665 - name = "collection-visit"; 1666 - packageName = "collection-visit"; 1667 - version = "1.0.0"; 1668 - src = fetchurl { 1669 - url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"; 1670 - sha512 = "lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw=="; 1671 - }; 1672 - }; 1673 - "color-0.11.4" = { 1674 - name = "color"; 1675 - packageName = "color"; 1676 - version = "0.11.4"; 1677 - src = fetchurl { 1678 - url = "https://registry.npmjs.org/color/-/color-0.11.4.tgz"; 1679 - sha512 = "Ajpjd8asqZ6EdxQeqGzU5WBhhTfJ/0cA4Wlbre7e5vXfmDSmda7Ov6jeKoru+b0vHcb1CqvuroTHp5zIWzhVMA=="; 1680 - }; 1681 - }; 1682 - "color-convert-1.9.3" = { 1683 - name = "color-convert"; 1684 - packageName = "color-convert"; 1685 - version = "1.9.3"; 1686 - src = fetchurl { 1687 - url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"; 1688 - sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 1689 - }; 1690 - }; 1691 - "color-convert-2.0.1" = { 1692 - name = "color-convert"; 1693 - packageName = "color-convert"; 1694 - version = "2.0.1"; 1695 - src = fetchurl { 1696 - url = "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"; 1697 - sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; 1698 - }; 1699 - }; 1700 - "color-name-1.1.3" = { 1701 - name = "color-name"; 1702 - packageName = "color-name"; 1703 - version = "1.1.3"; 1704 - src = fetchurl { 1705 - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; 1706 - sha512 = "72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="; 1707 - }; 1708 - }; 1709 - "color-name-1.1.4" = { 1710 - name = "color-name"; 1711 - packageName = "color-name"; 1712 - version = "1.1.4"; 1713 - src = fetchurl { 1714 - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"; 1715 - sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 1716 - }; 1717 - }; 1718 - "color-string-0.3.0" = { 1719 - name = "color-string"; 1720 - packageName = "color-string"; 1721 - version = "0.3.0"; 1722 - src = fetchurl { 1723 - url = "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz"; 1724 - sha512 = "sz29j1bmSDfoAxKIEU6zwoIZXN6BrFbAMIhfYCNyiZXBDuU/aiHlN84lp/xDzL2ubyFhLDobHIlU1X70XRrMDA=="; 1725 - }; 1726 - }; 1727 - "color-support-1.1.3" = { 1728 - name = "color-support"; 1729 - packageName = "color-support"; 1730 - version = "1.1.3"; 1731 - src = fetchurl { 1732 - url = "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz"; 1733 - sha512 = "qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="; 1734 - }; 1735 - }; 1736 - "colormin-1.1.2" = { 1737 - name = "colormin"; 1738 - packageName = "colormin"; 1739 - version = "1.1.2"; 1740 - src = fetchurl { 1741 - url = "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz"; 1742 - sha512 = "XSEQUUQUR/lXqGyddiNH3XYFUPYlYr1vXy9rTFMsSOw+J7Q6EQkdlQIrTlYn4TccpsOaUE1PYQNjBn20gwCdgQ=="; 1743 - }; 1744 - }; 1745 - "colors-1.1.2" = { 1746 - name = "colors"; 1747 - packageName = "colors"; 1748 - version = "1.1.2"; 1749 - src = fetchurl { 1750 - url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz"; 1751 - sha512 = "ENwblkFQpqqia6b++zLD/KUWafYlVY/UNnAp7oz7LY7E924wmpye416wBOmvv/HMWzl8gL1kJlfvId/1Dg176w=="; 1752 - }; 1753 - }; 1754 - "combine-source-map-0.8.0" = { 1755 - name = "combine-source-map"; 1756 - packageName = "combine-source-map"; 1757 - version = "0.8.0"; 1758 - src = fetchurl { 1759 - url = "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz"; 1760 - sha512 = "UlxQ9Vw0b/Bt/KYwCFqdEwsQ1eL8d1gibiFb7lxQJFdvTgc2hIZi6ugsg+kyhzhPV+QEpUiEIwInIAIrgoEkrg=="; 1761 - }; 1762 - }; 1763 - "commander-2.17.1" = { 1764 - name = "commander"; 1765 - packageName = "commander"; 1766 - version = "2.17.1"; 1767 - src = fetchurl { 1768 - url = "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz"; 1769 - sha512 = "wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg=="; 1770 - }; 1771 - }; 1772 - "commander-2.19.0" = { 1773 - name = "commander"; 1774 - packageName = "commander"; 1775 - version = "2.19.0"; 1776 - src = fetchurl { 1777 - url = "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz"; 1778 - sha512 = "6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg=="; 1779 - }; 1780 - }; 1781 - "commander-2.20.3" = { 1782 - name = "commander"; 1783 - packageName = "commander"; 1784 - version = "2.20.3"; 1785 - src = fetchurl { 1786 - url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"; 1787 - sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; 1788 - }; 1789 - }; 1790 - "component-emitter-1.3.0" = { 1791 - name = "component-emitter"; 1792 - packageName = "component-emitter"; 1793 - version = "1.3.0"; 1794 - src = fetchurl { 1795 - url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz"; 1796 - sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="; 1797 - }; 1798 - }; 1799 - "concat-map-0.0.1" = { 1800 - name = "concat-map"; 1801 - packageName = "concat-map"; 1802 - version = "0.0.1"; 1803 - src = fetchurl { 1804 - url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 1805 - sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="; 1806 - }; 1807 - }; 1808 - "concat-stream-1.6.2" = { 1809 - name = "concat-stream"; 1810 - packageName = "concat-stream"; 1811 - version = "1.6.2"; 1812 - src = fetchurl { 1813 - url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz"; 1814 - sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; 1815 - }; 1816 - }; 1817 - "concat-with-sourcemaps-1.1.0" = { 1818 - name = "concat-with-sourcemaps"; 1819 - packageName = "concat-with-sourcemaps"; 1820 - version = "1.1.0"; 1821 - src = fetchurl { 1822 - url = "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz"; 1823 - sha512 = "4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg=="; 1824 - }; 1825 - }; 1826 - "connect-3.6.6" = { 1827 - name = "connect"; 1828 - packageName = "connect"; 1829 - version = "3.6.6"; 1830 - src = fetchurl { 1831 - url = "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz"; 1832 - sha512 = "OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ=="; 1833 - }; 1834 - }; 1835 - "connect-history-api-fallback-1.6.0" = { 1836 - name = "connect-history-api-fallback"; 1837 - packageName = "connect-history-api-fallback"; 1838 - version = "1.6.0"; 1839 - src = fetchurl { 1840 - url = "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz"; 1841 - sha512 = "e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg=="; 1842 - }; 1843 - }; 1844 - "console-browserify-1.2.0" = { 1845 - name = "console-browserify"; 1846 - packageName = "console-browserify"; 1847 - version = "1.2.0"; 1848 - src = fetchurl { 1849 - url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz"; 1850 - sha512 = "ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA=="; 1851 - }; 1852 - }; 1853 - "constants-browserify-1.0.0" = { 1854 - name = "constants-browserify"; 1855 - packageName = "constants-browserify"; 1856 - version = "1.0.0"; 1857 - src = fetchurl { 1858 - url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz"; 1859 - sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; 1860 - }; 1861 - }; 1862 - "contra-1.9.4" = { 1863 - name = "contra"; 1864 - packageName = "contra"; 1865 - version = "1.9.4"; 1866 - src = fetchurl { 1867 - url = "https://registry.npmjs.org/contra/-/contra-1.9.4.tgz"; 1868 - sha512 = "N9ArHAqwR/lhPq4OdIAwH4e1btn6EIZMAz4TazjnzCiVECcWUPTma+dRAM38ERImEJBh8NiCCpjoQruSZ+agYg=="; 1869 - }; 1870 - }; 1871 - "convert-source-map-1.1.3" = { 1872 - name = "convert-source-map"; 1873 - packageName = "convert-source-map"; 1874 - version = "1.1.3"; 1875 - src = fetchurl { 1876 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz"; 1877 - sha512 = "Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg=="; 1878 - }; 1879 - }; 1880 - "convert-source-map-1.9.0" = { 1881 - name = "convert-source-map"; 1882 - packageName = "convert-source-map"; 1883 - version = "1.9.0"; 1884 - src = fetchurl { 1885 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz"; 1886 - sha512 = "ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="; 1887 - }; 1888 - }; 1889 - "cookie-0.4.2" = { 1890 - name = "cookie"; 1891 - packageName = "cookie"; 1892 - version = "0.4.2"; 1893 - src = fetchurl { 1894 - url = "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz"; 1895 - sha512 = "aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA=="; 1896 - }; 1897 - }; 1898 - "copy-descriptor-0.1.1" = { 1899 - name = "copy-descriptor"; 1900 - packageName = "copy-descriptor"; 1901 - version = "0.1.1"; 1902 - src = fetchurl { 1903 - url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; 1904 - sha512 = "XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw=="; 1905 - }; 1906 - }; 1907 - "copy-props-2.0.5" = { 1908 - name = "copy-props"; 1909 - packageName = "copy-props"; 1910 - version = "2.0.5"; 1911 - src = fetchurl { 1912 - url = "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz"; 1913 - sha512 = "XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw=="; 1914 - }; 1915 - }; 1916 - "core-util-is-1.0.3" = { 1917 - name = "core-util-is"; 1918 - packageName = "core-util-is"; 1919 - version = "1.0.3"; 1920 - src = fetchurl { 1921 - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"; 1922 - sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; 1923 - }; 1924 - }; 1925 - "cors-2.8.5" = { 1926 - name = "cors"; 1927 - packageName = "cors"; 1928 - version = "2.8.5"; 1929 - src = fetchurl { 1930 - url = "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz"; 1931 - sha512 = "KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g=="; 1932 - }; 1933 - }; 1934 - "create-ecdh-4.0.4" = { 1935 - name = "create-ecdh"; 1936 - packageName = "create-ecdh"; 1937 - version = "4.0.4"; 1938 - src = fetchurl { 1939 - url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz"; 1940 - sha512 = "mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A=="; 1941 - }; 1942 - }; 1943 - "create-hash-1.2.0" = { 1944 - name = "create-hash"; 1945 - packageName = "create-hash"; 1946 - version = "1.2.0"; 1947 - src = fetchurl { 1948 - url = "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz"; 1949 - sha512 = "z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg=="; 1950 - }; 1951 - }; 1952 - "create-hmac-1.1.7" = { 1953 - name = "create-hmac"; 1954 - packageName = "create-hmac"; 1955 - version = "1.1.7"; 1956 - src = fetchurl { 1957 - url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz"; 1958 - sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg=="; 1959 - }; 1960 - }; 1961 - "cross-spawn-5.1.0" = { 1962 - name = "cross-spawn"; 1963 - packageName = "cross-spawn"; 1964 - version = "5.1.0"; 1965 - src = fetchurl { 1966 - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"; 1967 - sha512 = "pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A=="; 1968 - }; 1969 - }; 1970 - "crossvent-1.5.4" = { 1971 - name = "crossvent"; 1972 - packageName = "crossvent"; 1973 - version = "1.5.4"; 1974 - src = fetchurl { 1975 - url = "https://registry.npmjs.org/crossvent/-/crossvent-1.5.4.tgz"; 1976 - sha512 = "b6gEmNAh3kemyfNJ0LQzA/29A+YeGwevlSkNp2x0TzLOMYc0b85qRAD06OUuLWLQpR7HdJHNZQTlD1cfwoTrzg=="; 1977 - }; 1978 - }; 1979 - "crypto-browserify-3.12.0" = { 1980 - name = "crypto-browserify"; 1981 - packageName = "crypto-browserify"; 1982 - version = "3.12.0"; 1983 - src = fetchurl { 1984 - url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz"; 1985 - sha512 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg=="; 1986 - }; 1987 - }; 1988 - "css-3.0.0" = { 1989 - name = "css"; 1990 - packageName = "css"; 1991 - version = "3.0.0"; 1992 - src = fetchurl { 1993 - url = "https://registry.npmjs.org/css/-/css-3.0.0.tgz"; 1994 - sha512 = "DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ=="; 1995 - }; 1996 - }; 1997 - "css-color-names-0.0.4" = { 1998 - name = "css-color-names"; 1999 - packageName = "css-color-names"; 2000 - version = "0.0.4"; 2001 - src = fetchurl { 2002 - url = "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz"; 2003 - sha512 = "zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q=="; 2004 - }; 2005 - }; 2006 - "cssnano-3.10.0" = { 2007 - name = "cssnano"; 2008 - packageName = "cssnano"; 2009 - version = "3.10.0"; 2010 - src = fetchurl { 2011 - url = "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz"; 2012 - sha512 = "0o0IMQE0Ezo4b41Yrm8U6Rp9/Ag81vNXY1gZMnT1XhO4DpjEf2utKERqWJbOoz3g1Wdc1d3QSta/cIuJ1wSTEg=="; 2013 - }; 2014 - }; 2015 - "csso-2.3.2" = { 2016 - name = "csso"; 2017 - packageName = "csso"; 2018 - version = "2.3.2"; 2019 - src = fetchurl { 2020 - url = "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz"; 2021 - sha512 = "FmCI/hmqDeHHLaIQckMhMZneS84yzUZdrWDAvJVVxOwcKE1P1LF9FGmzr1ktIQSxOw6fl3PaQsmfg+GN+VvR3w=="; 2022 - }; 2023 - }; 2024 - "custom-event-1.0.0" = { 2025 - name = "custom-event"; 2026 - packageName = "custom-event"; 2027 - version = "1.0.0"; 2028 - src = fetchurl { 2029 - url = "https://registry.npmjs.org/custom-event/-/custom-event-1.0.0.tgz"; 2030 - sha512 = "6nOXX3UitrmdvSJWoVR2dlzhbX5bEUqmqsMUyx1ypCLZkHHkcuYtdpW3p94RGvcFkTV7DkLo+Ilbwnlwi8L+jw=="; 2031 - }; 2032 - }; 2033 - "d-1.0.1" = { 2034 - name = "d"; 2035 - packageName = "d"; 2036 - version = "1.0.1"; 2037 - src = fetchurl { 2038 - url = "https://registry.npmjs.org/d/-/d-1.0.1.tgz"; 2039 - sha512 = "m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA=="; 2040 - }; 2041 - }; 2042 - "dash-ast-1.0.0" = { 2043 - name = "dash-ast"; 2044 - packageName = "dash-ast"; 2045 - version = "1.0.0"; 2046 - src = fetchurl { 2047 - url = "https://registry.npmjs.org/dash-ast/-/dash-ast-1.0.0.tgz"; 2048 - sha512 = "Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA=="; 2049 - }; 2050 - }; 2051 - "datatables.net-1.12.1" = { 2052 - name = "datatables.net"; 2053 - packageName = "datatables.net"; 2054 - version = "1.12.1"; 2055 - src = fetchurl { 2056 - url = "https://registry.npmjs.org/datatables.net/-/datatables.net-1.12.1.tgz"; 2057 - sha512 = "e6XAMUoV41JdQPS/r9YRfRcmTPcCVvyZbWI+xog1Zg+kjVliMQbEkvWK5XFItmi64Cvwg+IqsZbTUJ1KSY3umA=="; 2058 - }; 2059 - }; 2060 - "datatables.net-bs-1.12.1" = { 2061 - name = "datatables.net-bs"; 2062 - packageName = "datatables.net-bs"; 2063 - version = "1.12.1"; 2064 - src = fetchurl { 2065 - url = "https://registry.npmjs.org/datatables.net-bs/-/datatables.net-bs-1.12.1.tgz"; 2066 - sha512 = "oaX1mNhjnASo33mwv6QzgGxD3pAz69qAL+8YlCro3e7oMvszE6wJyprEt80vl8E/TiMp/UUvsaqsup1JZFfMBQ=="; 2067 - }; 2068 - }; 2069 - "dateformat-2.2.0" = { 2070 - name = "dateformat"; 2071 - packageName = "dateformat"; 2072 - version = "2.2.0"; 2073 - src = fetchurl { 2074 - url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"; 2075 - sha512 = "GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw=="; 2076 - }; 2077 - }; 2078 - "debug-2.6.9" = { 2079 - name = "debug"; 2080 - packageName = "debug"; 2081 - version = "2.6.9"; 2082 - src = fetchurl { 2083 - url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; 2084 - sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 2085 - }; 2086 - }; 2087 - "debug-3.2.7" = { 2088 - name = "debug"; 2089 - packageName = "debug"; 2090 - version = "3.2.7"; 2091 - src = fetchurl { 2092 - url = "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"; 2093 - sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 2094 - }; 2095 - }; 2096 - "debug-4.3.2" = { 2097 - name = "debug"; 2098 - packageName = "debug"; 2099 - version = "4.3.2"; 2100 - src = fetchurl { 2101 - url = "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz"; 2102 - sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="; 2103 - }; 2104 - }; 2105 - "debug-4.3.4" = { 2106 - name = "debug"; 2107 - packageName = "debug"; 2108 - version = "4.3.4"; 2109 - src = fetchurl { 2110 - url = "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"; 2111 - sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 2112 - }; 2113 - }; 2114 - "debug-fabulous-1.1.0" = { 2115 - name = "debug-fabulous"; 2116 - packageName = "debug-fabulous"; 2117 - version = "1.1.0"; 2118 - src = fetchurl { 2119 - url = "https://registry.npmjs.org/debug-fabulous/-/debug-fabulous-1.1.0.tgz"; 2120 - sha512 = "GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg=="; 2121 - }; 2122 - }; 2123 - "decamelize-1.2.0" = { 2124 - name = "decamelize"; 2125 - packageName = "decamelize"; 2126 - version = "1.2.0"; 2127 - src = fetchurl { 2128 - url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 2129 - sha512 = "z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="; 2130 - }; 2131 - }; 2132 - "decode-uri-component-0.2.0" = { 2133 - name = "decode-uri-component"; 2134 - packageName = "decode-uri-component"; 2135 - version = "0.2.0"; 2136 - src = fetchurl { 2137 - url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; 2138 - sha512 = "hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og=="; 2139 - }; 2140 - }; 2141 - "deep-is-0.1.4" = { 2142 - name = "deep-is"; 2143 - packageName = "deep-is"; 2144 - version = "0.1.4"; 2145 - src = fetchurl { 2146 - url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"; 2147 - sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 2148 - }; 2149 - }; 2150 - "default-compare-1.0.0" = { 2151 - name = "default-compare"; 2152 - packageName = "default-compare"; 2153 - version = "1.0.0"; 2154 - src = fetchurl { 2155 - url = "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz"; 2156 - sha512 = "QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ=="; 2157 - }; 2158 - }; 2159 - "default-resolution-2.0.0" = { 2160 - name = "default-resolution"; 2161 - packageName = "default-resolution"; 2162 - version = "2.0.0"; 2163 - src = fetchurl { 2164 - url = "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz"; 2165 - sha512 = "2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ=="; 2166 - }; 2167 - }; 2168 - "define-properties-1.1.4" = { 2169 - name = "define-properties"; 2170 - packageName = "define-properties"; 2171 - version = "1.1.4"; 2172 - src = fetchurl { 2173 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"; 2174 - sha512 = "uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="; 2175 - }; 2176 - }; 2177 - "define-property-0.2.5" = { 2178 - name = "define-property"; 2179 - packageName = "define-property"; 2180 - version = "0.2.5"; 2181 - src = fetchurl { 2182 - url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"; 2183 - sha512 = "Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA=="; 2184 - }; 2185 - }; 2186 - "define-property-1.0.0" = { 2187 - name = "define-property"; 2188 - packageName = "define-property"; 2189 - version = "1.0.0"; 2190 - src = fetchurl { 2191 - url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"; 2192 - sha512 = "cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA=="; 2193 - }; 2194 - }; 2195 - "define-property-2.0.2" = { 2196 - name = "define-property"; 2197 - packageName = "define-property"; 2198 - version = "2.0.2"; 2199 - src = fetchurl { 2200 - url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz"; 2201 - sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ=="; 2202 - }; 2203 - }; 2204 - "defined-1.0.1" = { 2205 - name = "defined"; 2206 - packageName = "defined"; 2207 - version = "1.0.1"; 2208 - src = fetchurl { 2209 - url = "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz"; 2210 - sha512 = "hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q=="; 2211 - }; 2212 - }; 2213 - "del-6.1.1" = { 2214 - name = "del"; 2215 - packageName = "del"; 2216 - version = "6.1.1"; 2217 - src = fetchurl { 2218 - url = "https://registry.npmjs.org/del/-/del-6.1.1.tgz"; 2219 - sha512 = "ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg=="; 2220 - }; 2221 - }; 2222 - "depd-1.1.2" = { 2223 - name = "depd"; 2224 - packageName = "depd"; 2225 - version = "1.1.2"; 2226 - src = fetchurl { 2227 - url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"; 2228 - sha512 = "7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ=="; 2229 - }; 2230 - }; 2231 - "depd-2.0.0" = { 2232 - name = "depd"; 2233 - packageName = "depd"; 2234 - version = "2.0.0"; 2235 - src = fetchurl { 2236 - url = "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"; 2237 - sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; 2238 - }; 2239 - }; 2240 - "deps-sort-2.0.1" = { 2241 - name = "deps-sort"; 2242 - packageName = "deps-sort"; 2243 - version = "2.0.1"; 2244 - src = fetchurl { 2245 - url = "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.1.tgz"; 2246 - sha512 = "1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw=="; 2247 - }; 2248 - }; 2249 - "des.js-1.0.1" = { 2250 - name = "des.js"; 2251 - packageName = "des.js"; 2252 - version = "1.0.1"; 2253 - src = fetchurl { 2254 - url = "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz"; 2255 - sha512 = "Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA=="; 2256 - }; 2257 - }; 2258 - "destroy-1.0.4" = { 2259 - name = "destroy"; 2260 - packageName = "destroy"; 2261 - version = "1.0.4"; 2262 - src = fetchurl { 2263 - url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"; 2264 - sha512 = "3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg=="; 2265 - }; 2266 - }; 2267 - "detect-file-1.0.0" = { 2268 - name = "detect-file"; 2269 - packageName = "detect-file"; 2270 - version = "1.0.0"; 2271 - src = fetchurl { 2272 - url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz"; 2273 - sha512 = "DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q=="; 2274 - }; 2275 - }; 2276 - "detect-newline-2.1.0" = { 2277 - name = "detect-newline"; 2278 - packageName = "detect-newline"; 2279 - version = "2.1.0"; 2280 - src = fetchurl { 2281 - url = "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz"; 2282 - sha512 = "CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg=="; 2283 - }; 2284 - }; 2285 - "detective-5.2.1" = { 2286 - name = "detective"; 2287 - packageName = "detective"; 2288 - version = "5.2.1"; 2289 - src = fetchurl { 2290 - url = "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz"; 2291 - sha512 = "v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw=="; 2292 - }; 2293 - }; 2294 - "dev-ip-1.0.1" = { 2295 - name = "dev-ip"; 2296 - packageName = "dev-ip"; 2297 - version = "1.0.1"; 2298 - src = fetchurl { 2299 - url = "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz"; 2300 - sha512 = "LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A=="; 2301 - }; 2302 - }; 2303 - "diffie-hellman-5.0.3" = { 2304 - name = "diffie-hellman"; 2305 - packageName = "diffie-hellman"; 2306 - version = "5.0.3"; 2307 - src = fetchurl { 2308 - url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz"; 2309 - sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg=="; 2310 - }; 2311 - }; 2312 - "dir-glob-3.0.1" = { 2313 - name = "dir-glob"; 2314 - packageName = "dir-glob"; 2315 - version = "3.0.1"; 2316 - src = fetchurl { 2317 - url = "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"; 2318 - sha512 = "WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="; 2319 - }; 2320 - }; 2321 - "dlv-1.1.3" = { 2322 - name = "dlv"; 2323 - packageName = "dlv"; 2324 - version = "1.1.3"; 2325 - src = fetchurl { 2326 - url = "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz"; 2327 - sha512 = "+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="; 2328 - }; 2329 - }; 2330 - "doctrine-2.1.0" = { 2331 - name = "doctrine"; 2332 - packageName = "doctrine"; 2333 - version = "2.1.0"; 2334 - src = fetchurl { 2335 - url = "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"; 2336 - sha512 = "35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="; 2337 - }; 2338 - }; 2339 - "domain-browser-1.2.0" = { 2340 - name = "domain-browser"; 2341 - packageName = "domain-browser"; 2342 - version = "1.2.0"; 2343 - src = fetchurl { 2344 - url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz"; 2345 - sha512 = "jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="; 2346 - }; 2347 - }; 2348 - "domhelper-0.9.1" = { 2349 - name = "domhelper"; 2350 - packageName = "domhelper"; 2351 - version = "0.9.1"; 2352 - src = fetchurl { 2353 - url = "https://registry.npmjs.org/domhelper/-/domhelper-0.9.1.tgz"; 2354 - sha512 = "TVyA6YHUnoMErPt1dGZ6vCwts+NzkIgHPTmYD1F9EcHebAlsQ3NSAsXLZh1oPMYlz4bPwptx/C8qF3pphMCyDw=="; 2355 - }; 2356 - }; 2357 - "dragula-3.7.2" = { 2358 - name = "dragula"; 2359 - packageName = "dragula"; 2360 - version = "3.7.2"; 2361 - src = fetchurl { 2362 - url = "https://registry.npmjs.org/dragula/-/dragula-3.7.2.tgz"; 2363 - sha512 = "iDPdNTPZY7P/l0CQ800QiX+PNA2XF9iC3ePLWfGxeb/j8iPPedRuQdfSOfZrazgSpmaShYvYQ/jx7keWb4YNzA=="; 2364 - }; 2365 - }; 2366 - "duplexer-0.1.1" = { 2367 - name = "duplexer"; 2368 - packageName = "duplexer"; 2369 - version = "0.1.1"; 2370 - src = fetchurl { 2371 - url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz"; 2372 - sha512 = "sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q=="; 2373 - }; 2374 - }; 2375 - "duplexer-0.1.2" = { 2376 - name = "duplexer"; 2377 - packageName = "duplexer"; 2378 - version = "0.1.2"; 2379 - src = fetchurl { 2380 - url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz"; 2381 - sha512 = "jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="; 2382 - }; 2383 - }; 2384 - "duplexer2-0.0.2" = { 2385 - name = "duplexer2"; 2386 - packageName = "duplexer2"; 2387 - version = "0.0.2"; 2388 - src = fetchurl { 2389 - url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz"; 2390 - sha512 = "+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g=="; 2391 - }; 2392 - }; 2393 - "duplexer2-0.1.4" = { 2394 - name = "duplexer2"; 2395 - packageName = "duplexer2"; 2396 - version = "0.1.4"; 2397 - src = fetchurl { 2398 - url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz"; 2399 - sha512 = "asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA=="; 2400 - }; 2401 - }; 2402 - "duplexify-3.7.1" = { 2403 - name = "duplexify"; 2404 - packageName = "duplexify"; 2405 - version = "3.7.1"; 2406 - src = fetchurl { 2407 - url = "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz"; 2408 - sha512 = "07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g=="; 2409 - }; 2410 - }; 2411 - "duplexify-4.1.2" = { 2412 - name = "duplexify"; 2413 - packageName = "duplexify"; 2414 - version = "4.1.2"; 2415 - src = fetchurl { 2416 - url = "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz"; 2417 - sha512 = "fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw=="; 2418 - }; 2419 - }; 2420 - "each-props-1.3.2" = { 2421 - name = "each-props"; 2422 - packageName = "each-props"; 2423 - version = "1.3.2"; 2424 - src = fetchurl { 2425 - url = "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz"; 2426 - sha512 = "vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA=="; 2427 - }; 2428 - }; 2429 - "easy-extender-2.3.4" = { 2430 - name = "easy-extender"; 2431 - packageName = "easy-extender"; 2432 - version = "2.3.4"; 2433 - src = fetchurl { 2434 - url = "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz"; 2435 - sha512 = "8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q=="; 2436 - }; 2437 - }; 2438 - "eazy-logger-3.1.0" = { 2439 - name = "eazy-logger"; 2440 - packageName = "eazy-logger"; 2441 - version = "3.1.0"; 2442 - src = fetchurl { 2443 - url = "https://registry.npmjs.org/eazy-logger/-/eazy-logger-3.1.0.tgz"; 2444 - sha512 = "/snsn2JqBtUSSstEl4R0RKjkisGHAhvYj89i7r3ytNUKW12y178KDZwXLXIgwDqLW6E/VRMT9qfld7wvFae8bQ=="; 2445 - }; 2446 - }; 2447 - "echarts-3.8.5" = { 2448 - name = "echarts"; 2449 - packageName = "echarts"; 2450 - version = "3.8.5"; 2451 - src = fetchurl { 2452 - url = "https://registry.npmjs.org/echarts/-/echarts-3.8.5.tgz"; 2453 - sha512 = "E+nnROMfCeiLeoT/fZyX8SE8mKzwkTjyemyoBF543oqjRtjTSKQAVDEihMXy4oC6pJS0tYGdMqCA2ATk8onyRg=="; 2454 - }; 2455 - }; 2456 - "ee-first-1.1.1" = { 2457 - name = "ee-first"; 2458 - packageName = "ee-first"; 2459 - version = "1.1.1"; 2460 - src = fetchurl { 2461 - url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"; 2462 - sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; 2463 - }; 2464 - }; 2465 - "electron-to-chromium-1.4.284" = { 2466 - name = "electron-to-chromium"; 2467 - packageName = "electron-to-chromium"; 2468 - version = "1.4.284"; 2469 - src = fetchurl { 2470 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz"; 2471 - sha512 = "M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA=="; 2472 - }; 2473 - }; 2474 - "elliptic-6.5.4" = { 2475 - name = "elliptic"; 2476 - packageName = "elliptic"; 2477 - version = "6.5.4"; 2478 - src = fetchurl { 2479 - url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz"; 2480 - sha512 = "iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ=="; 2481 - }; 2482 - }; 2483 - "emoji-regex-8.0.0" = { 2484 - name = "emoji-regex"; 2485 - packageName = "emoji-regex"; 2486 - version = "8.0.0"; 2487 - src = fetchurl { 2488 - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"; 2489 - sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; 2490 - }; 2491 - }; 2492 - "encodeurl-1.0.2" = { 2493 - name = "encodeurl"; 2494 - packageName = "encodeurl"; 2495 - version = "1.0.2"; 2496 - src = fetchurl { 2497 - url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; 2498 - sha512 = "TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="; 2499 - }; 2500 - }; 2501 - "end-of-stream-1.4.4" = { 2502 - name = "end-of-stream"; 2503 - packageName = "end-of-stream"; 2504 - version = "1.4.4"; 2505 - src = fetchurl { 2506 - url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"; 2507 - sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 2508 - }; 2509 - }; 2510 - "engine.io-6.2.0" = { 2511 - name = "engine.io"; 2512 - packageName = "engine.io"; 2513 - version = "6.2.0"; 2514 - src = fetchurl { 2515 - url = "https://registry.npmjs.org/engine.io/-/engine.io-6.2.0.tgz"; 2516 - sha512 = "4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg=="; 2517 - }; 2518 - }; 2519 - "engine.io-client-6.2.3" = { 2520 - name = "engine.io-client"; 2521 - packageName = "engine.io-client"; 2522 - version = "6.2.3"; 2523 - src = fetchurl { 2524 - url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz"; 2525 - sha512 = "aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw=="; 2526 - }; 2527 - }; 2528 - "engine.io-parser-5.0.4" = { 2529 - name = "engine.io-parser"; 2530 - packageName = "engine.io-parser"; 2531 - version = "5.0.4"; 2532 - src = fetchurl { 2533 - url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.4.tgz"; 2534 - sha512 = "+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg=="; 2535 - }; 2536 - }; 2537 - "error-ex-1.3.2" = { 2538 - name = "error-ex"; 2539 - packageName = "error-ex"; 2540 - version = "1.3.2"; 2541 - src = fetchurl { 2542 - url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"; 2543 - sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 2544 - }; 2545 - }; 2546 - "es-abstract-1.20.4" = { 2547 - name = "es-abstract"; 2548 - packageName = "es-abstract"; 2549 - version = "1.20.4"; 2550 - src = fetchurl { 2551 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz"; 2552 - sha512 = "0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA=="; 2553 - }; 2554 - }; 2555 - "es-to-primitive-1.2.1" = { 2556 - name = "es-to-primitive"; 2557 - packageName = "es-to-primitive"; 2558 - version = "1.2.1"; 2559 - src = fetchurl { 2560 - url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; 2561 - sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="; 2562 - }; 2563 - }; 2564 - "es5-ext-0.10.62" = { 2565 - name = "es5-ext"; 2566 - packageName = "es5-ext"; 2567 - version = "0.10.62"; 2568 - src = fetchurl { 2569 - url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz"; 2570 - sha512 = "BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA=="; 2571 - }; 2572 - }; 2573 - "es6-iterator-2.0.3" = { 2574 - name = "es6-iterator"; 2575 - packageName = "es6-iterator"; 2576 - version = "2.0.3"; 2577 - src = fetchurl { 2578 - url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz"; 2579 - sha512 = "zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g=="; 2580 - }; 2581 - }; 2582 - "es6-symbol-3.1.3" = { 2583 - name = "es6-symbol"; 2584 - packageName = "es6-symbol"; 2585 - version = "3.1.3"; 2586 - src = fetchurl { 2587 - url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz"; 2588 - sha512 = "NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA=="; 2589 - }; 2590 - }; 2591 - "es6-weak-map-2.0.3" = { 2592 - name = "es6-weak-map"; 2593 - packageName = "es6-weak-map"; 2594 - version = "2.0.3"; 2595 - src = fetchurl { 2596 - url = "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz"; 2597 - sha512 = "p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA=="; 2598 - }; 2599 - }; 2600 - "escalade-3.1.1" = { 2601 - name = "escalade"; 2602 - packageName = "escalade"; 2603 - version = "3.1.1"; 2604 - src = fetchurl { 2605 - url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"; 2606 - sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; 2607 - }; 2608 - }; 2609 - "escape-html-1.0.3" = { 2610 - name = "escape-html"; 2611 - packageName = "escape-html"; 2612 - version = "1.0.3"; 2613 - src = fetchurl { 2614 - url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"; 2615 - sha512 = "NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="; 2616 - }; 2617 - }; 2618 - "escape-string-regexp-1.0.5" = { 2619 - name = "escape-string-regexp"; 2620 - packageName = "escape-string-regexp"; 2621 - version = "1.0.5"; 2622 - src = fetchurl { 2623 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 2624 - sha512 = "vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="; 2625 - }; 2626 - }; 2627 - "eslint-4.19.1" = { 2628 - name = "eslint"; 2629 - packageName = "eslint"; 2630 - version = "4.19.1"; 2631 - src = fetchurl { 2632 - url = "https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz"; 2633 - sha512 = "bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ=="; 2634 - }; 2635 - }; 2636 - "eslint-config-angular-0.5.0" = { 2637 - name = "eslint-config-angular"; 2638 - packageName = "eslint-config-angular"; 2639 - version = "0.5.0"; 2640 - src = fetchurl { 2641 - url = "https://registry.npmjs.org/eslint-config-angular/-/eslint-config-angular-0.5.0.tgz"; 2642 - sha512 = "uRSdXjc+dXvf4Je2vQAgt39JWsbtBv87bhQkKUQ2gnActKOOix51uVMpxe6qenY+XFbQ2wswXto3Z1OVVP+zrA=="; 2643 - }; 2644 - }; 2645 - "eslint-plugin-angular-4.1.0" = { 2646 - name = "eslint-plugin-angular"; 2647 - packageName = "eslint-plugin-angular"; 2648 - version = "4.1.0"; 2649 - src = fetchurl { 2650 - url = "https://registry.npmjs.org/eslint-plugin-angular/-/eslint-plugin-angular-4.1.0.tgz"; 2651 - sha512 = "dacledMPxVOZA3T0xcYFuvrMCy5dHxg0ZTMWUaHqSBQef3/XLyXJ9s1LNj0NikJ/dYx6OhqlnnNpKmrJhEUB+Q=="; 2652 - }; 2653 - }; 2654 - "eslint-scope-3.7.3" = { 2655 - name = "eslint-scope"; 2656 - packageName = "eslint-scope"; 2657 - version = "3.7.3"; 2658 - src = fetchurl { 2659 - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz"; 2660 - sha512 = "W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA=="; 2661 - }; 2662 - }; 2663 - "eslint-visitor-keys-1.3.0" = { 2664 - name = "eslint-visitor-keys"; 2665 - packageName = "eslint-visitor-keys"; 2666 - version = "1.3.0"; 2667 - src = fetchurl { 2668 - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"; 2669 - sha512 = "6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ=="; 2670 - }; 2671 - }; 2672 - "espree-3.5.4" = { 2673 - name = "espree"; 2674 - packageName = "espree"; 2675 - version = "3.5.4"; 2676 - src = fetchurl { 2677 - url = "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz"; 2678 - sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A=="; 2679 - }; 2680 - }; 2681 - "esprima-2.7.3" = { 2682 - name = "esprima"; 2683 - packageName = "esprima"; 2684 - version = "2.7.3"; 2685 - src = fetchurl { 2686 - url = "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz"; 2687 - sha512 = "OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A=="; 2688 - }; 2689 - }; 2690 - "esprima-4.0.1" = { 2691 - name = "esprima"; 2692 - packageName = "esprima"; 2693 - version = "4.0.1"; 2694 - src = fetchurl { 2695 - url = "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"; 2696 - sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 2697 - }; 2698 - }; 2699 - "esquery-1.4.0" = { 2700 - name = "esquery"; 2701 - packageName = "esquery"; 2702 - version = "1.4.0"; 2703 - src = fetchurl { 2704 - url = "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"; 2705 - sha512 = "cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="; 2706 - }; 2707 - }; 2708 - "esrecurse-4.3.0" = { 2709 - name = "esrecurse"; 2710 - packageName = "esrecurse"; 2711 - version = "4.3.0"; 2712 - src = fetchurl { 2713 - url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"; 2714 - sha512 = "KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="; 2715 - }; 2716 - }; 2717 - "estraverse-4.3.0" = { 2718 - name = "estraverse"; 2719 - packageName = "estraverse"; 2720 - version = "4.3.0"; 2721 - src = fetchurl { 2722 - url = "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"; 2723 - sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="; 2724 - }; 2725 - }; 2726 - "estraverse-5.3.0" = { 2727 - name = "estraverse"; 2728 - packageName = "estraverse"; 2729 - version = "5.3.0"; 2730 - src = fetchurl { 2731 - url = "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"; 2732 - sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="; 2733 - }; 2734 - }; 2735 - "esutils-2.0.3" = { 2736 - name = "esutils"; 2737 - packageName = "esutils"; 2738 - version = "2.0.3"; 2739 - src = fetchurl { 2740 - url = "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"; 2741 - sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; 2742 - }; 2743 - }; 2744 - "etag-1.8.1" = { 2745 - name = "etag"; 2746 - packageName = "etag"; 2747 - version = "1.8.1"; 2748 - src = fetchurl { 2749 - url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; 2750 - sha512 = "aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="; 2751 - }; 2752 - }; 2753 - "eve-raphael-0.5.0" = { 2754 - name = "eve-raphael"; 2755 - packageName = "eve-raphael"; 2756 - version = "0.5.0"; 2757 - src = fetchurl { 2758 - url = "https://registry.npmjs.org/eve-raphael/-/eve-raphael-0.5.0.tgz"; 2759 - sha512 = "jrxnPsCGqng1UZuEp9DecX/AuSyAszATSjf4oEcRxvfxa1Oux4KkIPKBAAWWnpdwfARtr+Q0o9aPYWjsROD7ug=="; 2760 - }; 2761 - }; 2762 - "event-emitter-0.3.5" = { 2763 - name = "event-emitter"; 2764 - packageName = "event-emitter"; 2765 - version = "0.3.5"; 2766 - src = fetchurl { 2767 - url = "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz"; 2768 - sha512 = "D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA=="; 2769 - }; 2770 - }; 2771 - "event-stream-4.0.1" = { 2772 - name = "event-stream"; 2773 - packageName = "event-stream"; 2774 - version = "4.0.1"; 2775 - src = fetchurl { 2776 - url = "https://registry.npmjs.org/event-stream/-/event-stream-4.0.1.tgz"; 2777 - sha512 = "qACXdu/9VHPBzcyhdOWR5/IahhGMf0roTeZJfzz077GwylcDd90yOHLouhmv7GJ5XzPi6ekaQWd8AvPP2nOvpA=="; 2778 - }; 2779 - }; 2780 - "eventemitter3-4.0.7" = { 2781 - name = "eventemitter3"; 2782 - packageName = "eventemitter3"; 2783 - version = "4.0.7"; 2784 - src = fetchurl { 2785 - url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz"; 2786 - sha512 = "8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="; 2787 - }; 2788 - }; 2789 - "events-3.3.0" = { 2790 - name = "events"; 2791 - packageName = "events"; 2792 - version = "3.3.0"; 2793 - src = fetchurl { 2794 - url = "https://registry.npmjs.org/events/-/events-3.3.0.tgz"; 2795 - sha512 = "mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="; 2796 - }; 2797 - }; 2798 - "evp_bytestokey-1.0.3" = { 2799 - name = "evp_bytestokey"; 2800 - packageName = "evp_bytestokey"; 2801 - version = "1.0.3"; 2802 - src = fetchurl { 2803 - url = "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"; 2804 - sha512 = "/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA=="; 2805 - }; 2806 - }; 2807 - "expand-brackets-2.1.4" = { 2808 - name = "expand-brackets"; 2809 - packageName = "expand-brackets"; 2810 - version = "2.1.4"; 2811 - src = fetchurl { 2812 - url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"; 2813 - sha512 = "w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA=="; 2814 - }; 2815 - }; 2816 - "expand-tilde-2.0.2" = { 2817 - name = "expand-tilde"; 2818 - packageName = "expand-tilde"; 2819 - version = "2.0.2"; 2820 - src = fetchurl { 2821 - url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz"; 2822 - sha512 = "A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw=="; 2823 - }; 2824 - }; 2825 - "ext-1.7.0" = { 2826 - name = "ext"; 2827 - packageName = "ext"; 2828 - version = "1.7.0"; 2829 - src = fetchurl { 2830 - url = "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz"; 2831 - sha512 = "6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw=="; 2832 - }; 2833 - }; 2834 - "extend-3.0.2" = { 2835 - name = "extend"; 2836 - packageName = "extend"; 2837 - version = "3.0.2"; 2838 - src = fetchurl { 2839 - url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; 2840 - sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; 2841 - }; 2842 - }; 2843 - "extend-shallow-1.1.4" = { 2844 - name = "extend-shallow"; 2845 - packageName = "extend-shallow"; 2846 - version = "1.1.4"; 2847 - src = fetchurl { 2848 - url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz"; 2849 - sha512 = "L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw=="; 2850 - }; 2851 - }; 2852 - "extend-shallow-2.0.1" = { 2853 - name = "extend-shallow"; 2854 - packageName = "extend-shallow"; 2855 - version = "2.0.1"; 2856 - src = fetchurl { 2857 - url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"; 2858 - sha512 = "zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug=="; 2859 - }; 2860 - }; 2861 - "extend-shallow-3.0.2" = { 2862 - name = "extend-shallow"; 2863 - packageName = "extend-shallow"; 2864 - version = "3.0.2"; 2865 - src = fetchurl { 2866 - url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"; 2867 - sha512 = "BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q=="; 2868 - }; 2869 - }; 2870 - "external-editor-2.2.0" = { 2871 - name = "external-editor"; 2872 - packageName = "external-editor"; 2873 - version = "2.2.0"; 2874 - src = fetchurl { 2875 - url = "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz"; 2876 - sha512 = "bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A=="; 2877 - }; 2878 - }; 2879 - "extglob-2.0.4" = { 2880 - name = "extglob"; 2881 - packageName = "extglob"; 2882 - version = "2.0.4"; 2883 - src = fetchurl { 2884 - url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz"; 2885 - sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw=="; 2886 - }; 2887 - }; 2888 - "fancy-log-1.3.3" = { 2889 - name = "fancy-log"; 2890 - packageName = "fancy-log"; 2891 - version = "1.3.3"; 2892 - src = fetchurl { 2893 - url = "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz"; 2894 - sha512 = "k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw=="; 2895 - }; 2896 - }; 2897 - "fancy-log-2.0.0" = { 2898 - name = "fancy-log"; 2899 - packageName = "fancy-log"; 2900 - version = "2.0.0"; 2901 - src = fetchurl { 2902 - url = "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz"; 2903 - sha512 = "9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA=="; 2904 - }; 2905 - }; 2906 - "fast-deep-equal-1.1.0" = { 2907 - name = "fast-deep-equal"; 2908 - packageName = "fast-deep-equal"; 2909 - version = "1.1.0"; 2910 - src = fetchurl { 2911 - url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz"; 2912 - sha512 = "fueX787WZKCV0Is4/T2cyAdM4+x1S3MXXOAhavE1ys/W42SHAPacLTQhucja22QBYrfGw50M2sRiXPtTGv9Ymw=="; 2913 - }; 2914 - }; 2915 - "fast-glob-3.2.12" = { 2916 - name = "fast-glob"; 2917 - packageName = "fast-glob"; 2918 - version = "3.2.12"; 2919 - src = fetchurl { 2920 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz"; 2921 - sha512 = "DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w=="; 2922 - }; 2923 - }; 2924 - "fast-json-stable-stringify-2.1.0" = { 2925 - name = "fast-json-stable-stringify"; 2926 - packageName = "fast-json-stable-stringify"; 2927 - version = "2.1.0"; 2928 - src = fetchurl { 2929 - url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; 2930 - sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; 2931 - }; 2932 - }; 2933 - "fast-levenshtein-1.1.4" = { 2934 - name = "fast-levenshtein"; 2935 - packageName = "fast-levenshtein"; 2936 - version = "1.1.4"; 2937 - src = fetchurl { 2938 - url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz"; 2939 - sha512 = "Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw=="; 2940 - }; 2941 - }; 2942 - "fast-levenshtein-2.0.6" = { 2943 - name = "fast-levenshtein"; 2944 - packageName = "fast-levenshtein"; 2945 - version = "2.0.6"; 2946 - src = fetchurl { 2947 - url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; 2948 - sha512 = "DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="; 2949 - }; 2950 - }; 2951 - "fast-safe-stringify-2.1.1" = { 2952 - name = "fast-safe-stringify"; 2953 - packageName = "fast-safe-stringify"; 2954 - version = "2.1.1"; 2955 - src = fetchurl { 2956 - url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz"; 2957 - sha512 = "W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA=="; 2958 - }; 2959 - }; 2960 - "fastclick-1.0.6" = { 2961 - name = "fastclick"; 2962 - packageName = "fastclick"; 2963 - version = "1.0.6"; 2964 - src = fetchurl { 2965 - url = "https://registry.npmjs.org/fastclick/-/fastclick-1.0.6.tgz"; 2966 - sha512 = "cXyDBT4g0uWl/Xe75QspBDAgAWQ0lkPi/zgp6YFEUHj6WV6VIZl7R6TiDZhdOVU3W4ehp/8tG61Jev1jit+ztQ=="; 2967 - }; 2968 - }; 2969 - "fastq-1.13.0" = { 2970 - name = "fastq"; 2971 - packageName = "fastq"; 2972 - version = "1.13.0"; 2973 - src = fetchurl { 2974 - url = "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz"; 2975 - sha512 = "YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw=="; 2976 - }; 2977 - }; 2978 - "figures-2.0.0" = { 2979 - name = "figures"; 2980 - packageName = "figures"; 2981 - version = "2.0.0"; 2982 - src = fetchurl { 2983 - url = "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz"; 2984 - sha512 = "Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA=="; 2985 - }; 2986 - }; 2987 - "file-entry-cache-2.0.0" = { 2988 - name = "file-entry-cache"; 2989 - packageName = "file-entry-cache"; 2990 - version = "2.0.0"; 2991 - src = fetchurl { 2992 - url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz"; 2993 - sha512 = "uXP/zGzxxFvFfcZGgBIwotm+Tdc55ddPAzF7iHshP4YGaXMww7rSF9peD9D1sui5ebONg5UobsZv+FfgEpGv/w=="; 2994 - }; 2995 - }; 2996 - "fill-range-4.0.0" = { 2997 - name = "fill-range"; 2998 - packageName = "fill-range"; 2999 - version = "4.0.0"; 3000 - src = fetchurl { 3001 - url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"; 3002 - sha512 = "VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ=="; 3003 - }; 3004 - }; 3005 - "fill-range-7.0.1" = { 3006 - name = "fill-range"; 3007 - packageName = "fill-range"; 3008 - version = "7.0.1"; 3009 - src = fetchurl { 3010 - url = "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"; 3011 - sha512 = "qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="; 3012 - }; 3013 - }; 3014 - "finalhandler-1.1.0" = { 3015 - name = "finalhandler"; 3016 - packageName = "finalhandler"; 3017 - version = "1.1.0"; 3018 - src = fetchurl { 3019 - url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz"; 3020 - sha512 = "ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw=="; 3021 - }; 3022 - }; 3023 - "find-up-1.1.2" = { 3024 - name = "find-up"; 3025 - packageName = "find-up"; 3026 - version = "1.1.2"; 3027 - src = fetchurl { 3028 - url = "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz"; 3029 - sha512 = "jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA=="; 3030 - }; 3031 - }; 3032 - "findup-sync-2.0.0" = { 3033 - name = "findup-sync"; 3034 - packageName = "findup-sync"; 3035 - version = "2.0.0"; 3036 - src = fetchurl { 3037 - url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz"; 3038 - sha512 = "vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g=="; 3039 - }; 3040 - }; 3041 - "findup-sync-3.0.0" = { 3042 - name = "findup-sync"; 3043 - packageName = "findup-sync"; 3044 - version = "3.0.0"; 3045 - src = fetchurl { 3046 - url = "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz"; 3047 - sha512 = "YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg=="; 3048 - }; 3049 - }; 3050 - "findup-sync-5.0.0" = { 3051 - name = "findup-sync"; 3052 - packageName = "findup-sync"; 3053 - version = "5.0.0"; 3054 - src = fetchurl { 3055 - url = "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz"; 3056 - sha512 = "MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ=="; 3057 - }; 3058 - }; 3059 - "fined-1.2.0" = { 3060 - name = "fined"; 3061 - packageName = "fined"; 3062 - version = "1.2.0"; 3063 - src = fetchurl { 3064 - url = "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz"; 3065 - sha512 = "ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng=="; 3066 - }; 3067 - }; 3068 - "first-chunk-stream-2.0.0" = { 3069 - name = "first-chunk-stream"; 3070 - packageName = "first-chunk-stream"; 3071 - version = "2.0.0"; 3072 - src = fetchurl { 3073 - url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz"; 3074 - sha512 = "X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg=="; 3075 - }; 3076 - }; 3077 - "flagged-respawn-1.0.1" = { 3078 - name = "flagged-respawn"; 3079 - packageName = "flagged-respawn"; 3080 - version = "1.0.1"; 3081 - src = fetchurl { 3082 - url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz"; 3083 - sha512 = "lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q=="; 3084 - }; 3085 - }; 3086 - "flat-cache-1.3.4" = { 3087 - name = "flat-cache"; 3088 - packageName = "flat-cache"; 3089 - version = "1.3.4"; 3090 - src = fetchurl { 3091 - url = "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz"; 3092 - sha512 = "VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg=="; 3093 - }; 3094 - }; 3095 - "flatten-1.0.3" = { 3096 - name = "flatten"; 3097 - packageName = "flatten"; 3098 - version = "1.0.3"; 3099 - src = fetchurl { 3100 - url = "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz"; 3101 - sha512 = "dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg=="; 3102 - }; 3103 - }; 3104 - "flot-0.8.3" = { 3105 - name = "flot"; 3106 - packageName = "flot"; 3107 - version = "0.8.3"; 3108 - src = fetchurl { 3109 - url = "https://registry.npmjs.org/flot/-/flot-0.8.3.tgz"; 3110 - sha512 = "xg2otcTJDvS+ERK+my4wxG/ASq90QURXtoM4LhacCq0jQW2jbyjdttbRNqU2cPykrpMvJ6b2uSp6SAgYAzj9tQ=="; 3111 - }; 3112 - }; 3113 - "flush-write-stream-1.1.1" = { 3114 - name = "flush-write-stream"; 3115 - packageName = "flush-write-stream"; 3116 - version = "1.1.1"; 3117 - src = fetchurl { 3118 - url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz"; 3119 - sha512 = "3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w=="; 3120 - }; 3121 - }; 3122 - "follow-redirects-1.15.2" = { 3123 - name = "follow-redirects"; 3124 - packageName = "follow-redirects"; 3125 - version = "1.15.2"; 3126 - src = fetchurl { 3127 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"; 3128 - sha512 = "VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="; 3129 - }; 3130 - }; 3131 - "font-awesome-4.7.0" = { 3132 - name = "font-awesome"; 3133 - packageName = "font-awesome"; 3134 - version = "4.7.0"; 3135 - src = fetchurl { 3136 - url = "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz"; 3137 - sha512 = "U6kGnykA/6bFmg1M/oT9EkFeIYv7JlX3bozwQJWiiLz6L0w3F5vBVPxHlwyX/vtNq1ckcpRKOB9f2Qal/VtFpg=="; 3138 - }; 3139 - }; 3140 - "for-each-0.3.3" = { 3141 - name = "for-each"; 3142 - packageName = "for-each"; 3143 - version = "0.3.3"; 3144 - src = fetchurl { 3145 - url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz"; 3146 - sha512 = "jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw=="; 3147 - }; 3148 - }; 3149 - "for-in-1.0.2" = { 3150 - name = "for-in"; 3151 - packageName = "for-in"; 3152 - version = "1.0.2"; 3153 - src = fetchurl { 3154 - url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"; 3155 - sha512 = "7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ=="; 3156 - }; 3157 - }; 3158 - "for-own-1.0.0" = { 3159 - name = "for-own"; 3160 - packageName = "for-own"; 3161 - version = "1.0.0"; 3162 - src = fetchurl { 3163 - url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz"; 3164 - sha512 = "0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg=="; 3165 - }; 3166 - }; 3167 - "fork-stream-0.0.4" = { 3168 - name = "fork-stream"; 3169 - packageName = "fork-stream"; 3170 - version = "0.0.4"; 3171 - src = fetchurl { 3172 - url = "https://registry.npmjs.org/fork-stream/-/fork-stream-0.0.4.tgz"; 3173 - sha512 = "Pqq5NnT78ehvUnAk/We/Jr22vSvanRlFTpAmQ88xBY/M1TlHe+P0ILuEyXS595ysdGfaj22634LBkGMA2GTcpA=="; 3174 - }; 3175 - }; 3176 - "fraction.js-4.2.0" = { 3177 - name = "fraction.js"; 3178 - packageName = "fraction.js"; 3179 - version = "4.2.0"; 3180 - src = fetchurl { 3181 - url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz"; 3182 - sha512 = "MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA=="; 3183 - }; 3184 - }; 3185 - "fragment-cache-0.2.1" = { 3186 - name = "fragment-cache"; 3187 - packageName = "fragment-cache"; 3188 - version = "0.2.1"; 3189 - src = fetchurl { 3190 - url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"; 3191 - sha512 = "GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA=="; 3192 - }; 3193 - }; 3194 - "fresh-0.5.2" = { 3195 - name = "fresh"; 3196 - packageName = "fresh"; 3197 - version = "0.5.2"; 3198 - src = fetchurl { 3199 - url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"; 3200 - sha512 = "zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="; 3201 - }; 3202 - }; 3203 - "from-0.1.7" = { 3204 - name = "from"; 3205 - packageName = "from"; 3206 - version = "0.1.7"; 3207 - src = fetchurl { 3208 - url = "https://registry.npmjs.org/from/-/from-0.1.7.tgz"; 3209 - sha512 = "twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g=="; 3210 - }; 3211 - }; 3212 - "fs-extra-3.0.1" = { 3213 - name = "fs-extra"; 3214 - packageName = "fs-extra"; 3215 - version = "3.0.1"; 3216 - src = fetchurl { 3217 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz"; 3218 - sha512 = "V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg=="; 3219 - }; 3220 - }; 3221 - "fs-mkdirp-stream-1.0.0" = { 3222 - name = "fs-mkdirp-stream"; 3223 - packageName = "fs-mkdirp-stream"; 3224 - version = "1.0.0"; 3225 - src = fetchurl { 3226 - url = "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz"; 3227 - sha512 = "+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ=="; 3228 - }; 3229 - }; 3230 - "fs.realpath-1.0.0" = { 3231 - name = "fs.realpath"; 3232 - packageName = "fs.realpath"; 3233 - version = "1.0.0"; 3234 - src = fetchurl { 3235 - url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; 3236 - sha512 = "OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="; 3237 - }; 3238 - }; 3239 - "fsevents-1.2.13" = { 3240 - name = "fsevents"; 3241 - packageName = "fsevents"; 3242 - version = "1.2.13"; 3243 - src = fetchurl { 3244 - url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz"; 3245 - sha512 = "oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw=="; 3246 - }; 3247 - }; 3248 - "fsevents-2.3.2" = { 3249 - name = "fsevents"; 3250 - packageName = "fsevents"; 3251 - version = "2.3.2"; 3252 - src = fetchurl { 3253 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"; 3254 - sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; 3255 - }; 3256 - }; 3257 - "fullcalendar-3.10.5" = { 3258 - name = "fullcalendar"; 3259 - packageName = "fullcalendar"; 3260 - version = "3.10.5"; 3261 - src = fetchurl { 3262 - url = "https://registry.npmjs.org/fullcalendar/-/fullcalendar-3.10.5.tgz"; 3263 - sha512 = "JGWpECKgza/344bbF5QT0hBJpx04DZ/7QGPlR1ZbAwrG6Yz6mWEkQd+NnZUh1sK6HCBIPnPRW2x53aJxeLGvvQ=="; 3264 - }; 3265 - }; 3266 - "function-bind-1.1.1" = { 3267 - name = "function-bind"; 3268 - packageName = "function-bind"; 3269 - version = "1.1.1"; 3270 - src = fetchurl { 3271 - url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; 3272 - sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 3273 - }; 3274 - }; 3275 - "function.prototype.name-1.1.5" = { 3276 - name = "function.prototype.name"; 3277 - packageName = "function.prototype.name"; 3278 - version = "1.1.5"; 3279 - src = fetchurl { 3280 - url = "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz"; 3281 - sha512 = "uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA=="; 3282 - }; 3283 - }; 3284 - "functional-red-black-tree-1.0.1" = { 3285 - name = "functional-red-black-tree"; 3286 - packageName = "functional-red-black-tree"; 3287 - version = "1.0.1"; 3288 - src = fetchurl { 3289 - url = "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; 3290 - sha512 = "dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g=="; 3291 - }; 3292 - }; 3293 - "functions-have-names-1.2.3" = { 3294 - name = "functions-have-names"; 3295 - packageName = "functions-have-names"; 3296 - version = "1.2.3"; 3297 - src = fetchurl { 3298 - url = "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz"; 3299 - sha512 = "xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ=="; 3300 - }; 3301 - }; 3302 - "get-assigned-identifiers-1.2.0" = { 3303 - name = "get-assigned-identifiers"; 3304 - packageName = "get-assigned-identifiers"; 3305 - version = "1.2.0"; 3306 - src = fetchurl { 3307 - url = "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz"; 3308 - sha512 = "mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ=="; 3309 - }; 3310 - }; 3311 - "get-caller-file-1.0.3" = { 3312 - name = "get-caller-file"; 3313 - packageName = "get-caller-file"; 3314 - version = "1.0.3"; 3315 - src = fetchurl { 3316 - url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz"; 3317 - sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w=="; 3318 - }; 3319 - }; 3320 - "get-caller-file-2.0.5" = { 3321 - name = "get-caller-file"; 3322 - packageName = "get-caller-file"; 3323 - version = "2.0.5"; 3324 - src = fetchurl { 3325 - url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"; 3326 - sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 3327 - }; 3328 - }; 3329 - "get-intrinsic-1.1.3" = { 3330 - name = "get-intrinsic"; 3331 - packageName = "get-intrinsic"; 3332 - version = "1.1.3"; 3333 - src = fetchurl { 3334 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz"; 3335 - sha512 = "QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A=="; 3336 - }; 3337 - }; 3338 - "get-symbol-description-1.0.0" = { 3339 - name = "get-symbol-description"; 3340 - packageName = "get-symbol-description"; 3341 - version = "1.0.0"; 3342 - src = fetchurl { 3343 - url = "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz"; 3344 - sha512 = "2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw=="; 3345 - }; 3346 - }; 3347 - "get-value-2.0.6" = { 3348 - name = "get-value"; 3349 - packageName = "get-value"; 3350 - version = "2.0.6"; 3351 - src = fetchurl { 3352 - url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"; 3353 - sha512 = "Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA=="; 3354 - }; 3355 - }; 3356 - "git-rev-sync-3.0.2" = { 3357 - name = "git-rev-sync"; 3358 - packageName = "git-rev-sync"; 3359 - version = "3.0.2"; 3360 - src = fetchurl { 3361 - url = "https://registry.npmjs.org/git-rev-sync/-/git-rev-sync-3.0.2.tgz"; 3362 - sha512 = "Nd5RiYpyncjLv0j6IONy0lGzAqdRXUaBctuGBbrEA2m6Bn4iDrN/9MeQTXuiquw8AEKL9D2BW0nw5m/lQvxqnQ=="; 3363 - }; 3364 - }; 3365 - "glob-7.2.3" = { 3366 - name = "glob"; 3367 - packageName = "glob"; 3368 - version = "7.2.3"; 3369 - src = fetchurl { 3370 - url = "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"; 3371 - sha512 = "nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="; 3372 - }; 3373 - }; 3374 - "glob-parent-3.1.0" = { 3375 - name = "glob-parent"; 3376 - packageName = "glob-parent"; 3377 - version = "3.1.0"; 3378 - src = fetchurl { 3379 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz"; 3380 - sha512 = "E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA=="; 3381 - }; 3382 - }; 3383 - "glob-parent-5.1.2" = { 3384 - name = "glob-parent"; 3385 - packageName = "glob-parent"; 3386 - version = "5.1.2"; 3387 - src = fetchurl { 3388 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; 3389 - sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; 3390 - }; 3391 - }; 3392 - "glob-stream-6.1.0" = { 3393 - name = "glob-stream"; 3394 - packageName = "glob-stream"; 3395 - version = "6.1.0"; 3396 - src = fetchurl { 3397 - url = "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz"; 3398 - sha512 = "uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw=="; 3399 - }; 3400 - }; 3401 - "glob-watcher-5.0.5" = { 3402 - name = "glob-watcher"; 3403 - packageName = "glob-watcher"; 3404 - version = "5.0.5"; 3405 - src = fetchurl { 3406 - url = "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz"; 3407 - sha512 = "zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw=="; 3408 - }; 3409 - }; 3410 - "global-modules-1.0.0" = { 3411 - name = "global-modules"; 3412 - packageName = "global-modules"; 3413 - version = "1.0.0"; 3414 - src = fetchurl { 3415 - url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz"; 3416 - sha512 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg=="; 3417 - }; 3418 - }; 3419 - "global-prefix-1.0.2" = { 3420 - name = "global-prefix"; 3421 - packageName = "global-prefix"; 3422 - version = "1.0.2"; 3423 - src = fetchurl { 3424 - url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz"; 3425 - sha512 = "5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg=="; 3426 - }; 3427 - }; 3428 - "globals-11.12.0" = { 3429 - name = "globals"; 3430 - packageName = "globals"; 3431 - version = "11.12.0"; 3432 - src = fetchurl { 3433 - url = "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"; 3434 - sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 3435 - }; 3436 - }; 3437 - "globby-11.1.0" = { 3438 - name = "globby"; 3439 - packageName = "globby"; 3440 - version = "11.1.0"; 3441 - src = fetchurl { 3442 - url = "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"; 3443 - sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 3444 - }; 3445 - }; 3446 - "glogg-1.0.2" = { 3447 - name = "glogg"; 3448 - packageName = "glogg"; 3449 - version = "1.0.2"; 3450 - src = fetchurl { 3451 - url = "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz"; 3452 - sha512 = "5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA=="; 3453 - }; 3454 - }; 3455 - "glogg-2.0.0" = { 3456 - name = "glogg"; 3457 - packageName = "glogg"; 3458 - version = "2.0.0"; 3459 - src = fetchurl { 3460 - url = "https://registry.npmjs.org/glogg/-/glogg-2.0.0.tgz"; 3461 - sha512 = "YDtL/QX54MN8+GorvS9tnKI5HtqWrFW9bv5yPRmFBeofi5neWzqQN8X/0HmM5zMkDbB8OYvC3/Pj8UEJUZFeqA=="; 3462 - }; 3463 - }; 3464 - "graceful-fs-4.1.15" = { 3465 - name = "graceful-fs"; 3466 - packageName = "graceful-fs"; 3467 - version = "4.1.15"; 3468 - src = fetchurl { 3469 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz"; 3470 - sha512 = "6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA=="; 3471 - }; 3472 - }; 3473 - "graceful-fs-4.2.10" = { 3474 - name = "graceful-fs"; 3475 - packageName = "graceful-fs"; 3476 - version = "4.2.10"; 3477 - src = fetchurl { 3478 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"; 3479 - sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; 3480 - }; 3481 - }; 3482 - "gulp-4.0.2" = { 3483 - name = "gulp"; 3484 - packageName = "gulp"; 3485 - version = "4.0.2"; 3486 - src = fetchurl { 3487 - url = "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz"; 3488 - sha512 = "dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA=="; 3489 - }; 3490 - }; 3491 - "gulp-angular-templatecache-2.2.7" = { 3492 - name = "gulp-angular-templatecache"; 3493 - packageName = "gulp-angular-templatecache"; 3494 - version = "2.2.7"; 3495 - src = fetchurl { 3496 - url = "https://registry.npmjs.org/gulp-angular-templatecache/-/gulp-angular-templatecache-2.2.7.tgz"; 3497 - sha512 = "Tc+amGWfc2W8BxfCSikhQHWlaZdJppPyhSFFafwln2ExNOFuHCNdwT7HCf54cpHcXdzzFuC7c/rI/075CejmaQ=="; 3498 - }; 3499 - }; 3500 - "gulp-autoprefixer-8.0.0" = { 3501 - name = "gulp-autoprefixer"; 3502 - packageName = "gulp-autoprefixer"; 3503 - version = "8.0.0"; 3504 - src = fetchurl { 3505 - url = "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-8.0.0.tgz"; 3506 - sha512 = "sVR++PIaXpa81p52dmmA/jt50bw0egmylK5mjagfgOJ8uLDGaF9tHyzvetkY9Uo0gBZUS5sVqN3kX/GlUKOyog=="; 3507 - }; 3508 - }; 3509 - "gulp-cli-2.3.0" = { 3510 - name = "gulp-cli"; 3511 - packageName = "gulp-cli"; 3512 - version = "2.3.0"; 3513 - src = fetchurl { 3514 - url = "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz"; 3515 - sha512 = "zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A=="; 3516 - }; 3517 - }; 3518 - "gulp-concat-2.6.1" = { 3519 - name = "gulp-concat"; 3520 - packageName = "gulp-concat"; 3521 - version = "2.6.1"; 3522 - src = fetchurl { 3523 - url = "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz"; 3524 - sha512 = "a2scActrQrDBpBbR3WUZGyGS1JEPLg5PZJdIa7/Bi3GuKAmPYDK6SFhy/NZq5R8KsKKFvtfR0fakbUCcKGCCjg=="; 3525 - }; 3526 - }; 3527 - "gulp-cssnano-2.1.3" = { 3528 - name = "gulp-cssnano"; 3529 - packageName = "gulp-cssnano"; 3530 - version = "2.1.3"; 3531 - src = fetchurl { 3532 - url = "https://registry.npmjs.org/gulp-cssnano/-/gulp-cssnano-2.1.3.tgz"; 3533 - sha512 = "r8qdX5pTXsBb/IRm9loE8Ijz8UiPW/URMC/bKJe4FPNHRaz4aEx8Bev03L0FYHd/7BSGu/ebmfumAkpGuTdenA=="; 3534 - }; 3535 - }; 3536 - "gulp-eslint-4.0.2" = { 3537 - name = "gulp-eslint"; 3538 - packageName = "gulp-eslint"; 3539 - version = "4.0.2"; 3540 - src = fetchurl { 3541 - url = "https://registry.npmjs.org/gulp-eslint/-/gulp-eslint-4.0.2.tgz"; 3542 - sha512 = "fcFUQzFsN6dJ6KZlG+qPOEkqfcevRUXgztkYCvhNvJeSvOicC8ucutN4qR/ID8LmNZx9YPIkBzazTNnVvbh8wg=="; 3543 - }; 3544 - }; 3545 - "gulp-footer-2.0.2" = { 3546 - name = "gulp-footer"; 3547 - packageName = "gulp-footer"; 3548 - version = "2.0.2"; 3549 - src = fetchurl { 3550 - url = "https://registry.npmjs.org/gulp-footer/-/gulp-footer-2.0.2.tgz"; 3551 - sha512 = "HsG5VOgKHFRqZXnHGI6oGhPDg70p9pobM+dYOnjBZVLMQUHzLG6bfaPNRJ7XG707E+vWO3TfN0CND9UrYhk94g=="; 3552 - }; 3553 - }; 3554 - "gulp-header-2.0.7" = { 3555 - name = "gulp-header"; 3556 - packageName = "gulp-header"; 3557 - version = "2.0.7"; 3558 - src = fetchurl { 3559 - url = "https://registry.npmjs.org/gulp-header/-/gulp-header-2.0.7.tgz"; 3560 - sha512 = "qppGkYGQZnt/mRJiiR5wYZIUwNUn47Xpg4+6tHYDVeAW5IDLbHBQwbw7axfMLWGE+gKQpB+yXLeslHMw1/Haog=="; 3561 - }; 3562 - }; 3563 - "gulp-htmlmin-5.0.1" = { 3564 - name = "gulp-htmlmin"; 3565 - packageName = "gulp-htmlmin"; 3566 - version = "5.0.1"; 3567 - src = fetchurl { 3568 - url = "https://registry.npmjs.org/gulp-htmlmin/-/gulp-htmlmin-5.0.1.tgz"; 3569 - sha512 = "ASlyDPZOSKjHYUifYV0rf9JPDflN9IRIb8lw2vRqtYMC4ljU3zAmnnaVXwFQ3H+CfXxZSUesZ2x7jrnPJu93jA=="; 3570 - }; 3571 - }; 3572 - "gulp-if-3.0.0" = { 3573 - name = "gulp-if"; 3574 - packageName = "gulp-if"; 3575 - version = "3.0.0"; 3576 - src = fetchurl { 3577 - url = "https://registry.npmjs.org/gulp-if/-/gulp-if-3.0.0.tgz"; 3578 - sha512 = "fCUEngzNiEZEK2YuPm+sdMpO6ukb8+/qzbGfJBXyNOXz85bCG7yBI+pPSl+N90d7gnLvMsarthsAImx0qy7BAw=="; 3579 - }; 3580 - }; 3581 - "gulp-inject-version-1.0.1" = { 3582 - name = "gulp-inject-version"; 3583 - packageName = "gulp-inject-version"; 3584 - version = "1.0.1"; 3585 - src = fetchurl { 3586 - url = "https://registry.npmjs.org/gulp-inject-version/-/gulp-inject-version-1.0.1.tgz"; 3587 - sha512 = "SCHNI9s8mZU16zNbPZQyNdv9P4gwKm/OvIeIvFkYqD+YtFjars+KZu6Ts/Fv1g25XoNwVzMtMsafuAJ+5yw92w=="; 3588 - }; 3589 - }; 3590 - "gulp-load-plugins-2.0.8" = { 3591 - name = "gulp-load-plugins"; 3592 - packageName = "gulp-load-plugins"; 3593 - version = "2.0.8"; 3594 - src = fetchurl { 3595 - url = "https://registry.npmjs.org/gulp-load-plugins/-/gulp-load-plugins-2.0.8.tgz"; 3596 - sha512 = "BS0aRx67WnWPt8stEDvwt+biD2gQ1NwDMgxuUhX5+AQSujqlcSecbdL+U6g0zu2S3YjOuY+eGmnXjT2J3hRMIg=="; 3597 - }; 3598 - }; 3599 - "gulp-match-1.1.0" = { 3600 - name = "gulp-match"; 3601 - packageName = "gulp-match"; 3602 - version = "1.1.0"; 3603 - src = fetchurl { 3604 - url = "https://registry.npmjs.org/gulp-match/-/gulp-match-1.1.0.tgz"; 3605 - sha512 = "DlyVxa1Gj24DitY2OjEsS+X6tDpretuxD6wTfhXE/Rw2hweqc1f6D/XtsJmoiCwLWfXgR87W9ozEityPCVzGtQ=="; 3606 - }; 3607 - }; 3608 - "gulp-plumber-1.2.1" = { 3609 - name = "gulp-plumber"; 3610 - packageName = "gulp-plumber"; 3611 - version = "1.2.1"; 3612 - src = fetchurl { 3613 - url = "https://registry.npmjs.org/gulp-plumber/-/gulp-plumber-1.2.1.tgz"; 3614 - sha512 = "mctAi9msEAG7XzW5ytDVZ9PxWMzzi1pS2rBH7lA095DhMa6KEXjm+St0GOCc567pJKJ/oCvosVAZEpAey0q2eQ=="; 3615 - }; 3616 - }; 3617 - "gulp-replace-1.1.3" = { 3618 - name = "gulp-replace"; 3619 - packageName = "gulp-replace"; 3620 - version = "1.1.3"; 3621 - src = fetchurl { 3622 - url = "https://registry.npmjs.org/gulp-replace/-/gulp-replace-1.1.3.tgz"; 3623 - sha512 = "HcPHpWY4XdF8zxYkDODHnG2+7a3nD/Y8Mfu3aBgMiCFDW3X2GiOKXllsAmILcxe3KZT2BXoN18WrpEFm48KfLQ=="; 3624 - }; 3625 - }; 3626 - "gulp-rev-9.0.0" = { 3627 - name = "gulp-rev"; 3628 - packageName = "gulp-rev"; 3629 - version = "9.0.0"; 3630 - src = fetchurl { 3631 - url = "https://registry.npmjs.org/gulp-rev/-/gulp-rev-9.0.0.tgz"; 3632 - sha512 = "Ytx/uzDA2xNxHlPG8GReS1ut00msd0HlKDk9Ai/0xF2yvg+DAeGRAviCFlQzQmdZtqAoXznYspwWoGEoxDvhyA=="; 3633 - }; 3634 - }; 3635 - "gulp-rev-replace-0.4.4" = { 3636 - name = "gulp-rev-replace"; 3637 - packageName = "gulp-rev-replace"; 3638 - version = "0.4.4"; 3639 - src = fetchurl { 3640 - url = "https://registry.npmjs.org/gulp-rev-replace/-/gulp-rev-replace-0.4.4.tgz"; 3641 - sha512 = "2yiDel/TGamn/HgHyo8H1rYEEL2zLsOYODerItoX8batOo0gPAe7uX7t6NlaqB7FEHpS5tGzUr5CKUEmrgdHyQ=="; 3642 - }; 3643 - }; 3644 - "gulp-size-4.0.1" = { 3645 - name = "gulp-size"; 3646 - packageName = "gulp-size"; 3647 - version = "4.0.1"; 3648 - src = fetchurl { 3649 - url = "https://registry.npmjs.org/gulp-size/-/gulp-size-4.0.1.tgz"; 3650 - sha512 = "yNf5uGUKe2YAMZwHDFgnkp2o9fLp3WLUMZ+Gd23IIbav0TAVsr5Ek6So8gwjlSimPwR2p05Gg7zsjASYXZtt3g=="; 3651 - }; 3652 - }; 3653 - "gulp-sourcemaps-3.0.0" = { 3654 - name = "gulp-sourcemaps"; 3655 - packageName = "gulp-sourcemaps"; 3656 - version = "3.0.0"; 3657 - src = fetchurl { 3658 - url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-3.0.0.tgz"; 3659 - sha512 = "RqvUckJkuYqy4VaIH60RMal4ZtG0IbQ6PXMNkNsshEGJ9cldUPRb/YCgboYae+CLAs1HQNb4ADTKCx65HInquQ=="; 3660 - }; 3661 - }; 3662 - "gulp-uglify-3.0.2" = { 3663 - name = "gulp-uglify"; 3664 - packageName = "gulp-uglify"; 3665 - version = "3.0.2"; 3666 - src = fetchurl { 3667 - url = "https://registry.npmjs.org/gulp-uglify/-/gulp-uglify-3.0.2.tgz"; 3668 - sha512 = "gk1dhB74AkV2kzqPMQBLA3jPoIAPd/nlNzP2XMDSG8XZrqnlCiDGAqC+rZOumzFvB5zOphlFh6yr3lgcAb/OOg=="; 3669 - }; 3670 - }; 3671 - "gulp-useref-5.0.0" = { 3672 - name = "gulp-useref"; 3673 - packageName = "gulp-useref"; 3674 - version = "5.0.0"; 3675 - src = fetchurl { 3676 - url = "https://registry.npmjs.org/gulp-useref/-/gulp-useref-5.0.0.tgz"; 3677 - sha512 = "YNnc+DTMBBVoWXunT2RvWuUReZEjzS98XvLXrMLE3uoouQ9to8R4cfUuJzp9i1IJ6+DT0tBvyNVDrkz3NuXIiA=="; 3678 - }; 3679 - }; 3680 - "gulp-util-3.0.8" = { 3681 - name = "gulp-util"; 3682 - packageName = "gulp-util"; 3683 - version = "3.0.8"; 3684 - src = fetchurl { 3685 - url = "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz"; 3686 - sha512 = "q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw=="; 3687 - }; 3688 - }; 3689 - "gulplog-1.0.0" = { 3690 - name = "gulplog"; 3691 - packageName = "gulplog"; 3692 - version = "1.0.0"; 3693 - src = fetchurl { 3694 - url = "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz"; 3695 - sha512 = "hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw=="; 3696 - }; 3697 - }; 3698 - "gulplog-2.0.1" = { 3699 - name = "gulplog"; 3700 - packageName = "gulplog"; 3701 - version = "2.0.1"; 3702 - src = fetchurl { 3703 - url = "https://registry.npmjs.org/gulplog/-/gulplog-2.0.1.tgz"; 3704 - sha512 = "11IFA5ZwhFUjXPNYxrk9Z5FWGQIzJzxrBCE4qZC2elFkwt6oamM1ESwZVrhFMLl5IVlhnMwleFEWxiEyuMndIg=="; 3705 - }; 3706 - }; 3707 - "gzip-size-6.0.0" = { 3708 - name = "gzip-size"; 3709 - packageName = "gzip-size"; 3710 - version = "6.0.0"; 3711 - src = fetchurl { 3712 - url = "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz"; 3713 - sha512 = "ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q=="; 3714 - }; 3715 - }; 3716 - "has-1.0.3" = { 3717 - name = "has"; 3718 - packageName = "has"; 3719 - version = "1.0.3"; 3720 - src = fetchurl { 3721 - url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 3722 - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 3723 - }; 3724 - }; 3725 - "has-ansi-2.0.0" = { 3726 - name = "has-ansi"; 3727 - packageName = "has-ansi"; 3728 - version = "2.0.0"; 3729 - src = fetchurl { 3730 - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; 3731 - sha512 = "C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg=="; 3732 - }; 3733 - }; 3734 - "has-bigints-1.0.2" = { 3735 - name = "has-bigints"; 3736 - packageName = "has-bigints"; 3737 - version = "1.0.2"; 3738 - src = fetchurl { 3739 - url = "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"; 3740 - sha512 = "tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ=="; 3741 - }; 3742 - }; 3743 - "has-flag-1.0.0" = { 3744 - name = "has-flag"; 3745 - packageName = "has-flag"; 3746 - version = "1.0.0"; 3747 - src = fetchurl { 3748 - url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz"; 3749 - sha512 = "DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA=="; 3750 - }; 3751 - }; 3752 - "has-flag-3.0.0" = { 3753 - name = "has-flag"; 3754 - packageName = "has-flag"; 3755 - version = "3.0.0"; 3756 - src = fetchurl { 3757 - url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"; 3758 - sha512 = "sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="; 3759 - }; 3760 - }; 3761 - "has-flag-4.0.0" = { 3762 - name = "has-flag"; 3763 - packageName = "has-flag"; 3764 - version = "4.0.0"; 3765 - src = fetchurl { 3766 - url = "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"; 3767 - sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 3768 - }; 3769 - }; 3770 - "has-gulplog-0.1.0" = { 3771 - name = "has-gulplog"; 3772 - packageName = "has-gulplog"; 3773 - version = "0.1.0"; 3774 - src = fetchurl { 3775 - url = "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz"; 3776 - sha512 = "+F4GzLjwHNNDEAJW2DC1xXfEoPkRDmUdJ7CBYw4MpqtDwOnqdImJl7GWlpqx+Wko6//J8uKTnIe4wZSv7yCqmw=="; 3777 - }; 3778 - }; 3779 - "has-gulplog-1.0.0" = { 3780 - name = "has-gulplog"; 3781 - packageName = "has-gulplog"; 3782 - version = "1.0.0"; 3783 - src = fetchurl { 3784 - url = "https://registry.npmjs.org/has-gulplog/-/has-gulplog-1.0.0.tgz"; 3785 - sha512 = "3bRkTBls3EdDU9Aw9VyMjSeIfPTGZO9C/eDEr7wdnu9fP0I2Mli8eQlo+oN57Oog8rpByXFZeNXNs+pQwJF6ow=="; 3786 - }; 3787 - }; 3788 - "has-property-descriptors-1.0.0" = { 3789 - name = "has-property-descriptors"; 3790 - packageName = "has-property-descriptors"; 3791 - version = "1.0.0"; 3792 - src = fetchurl { 3793 - url = "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"; 3794 - sha512 = "62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="; 3795 - }; 3796 - }; 3797 - "has-symbols-1.0.3" = { 3798 - name = "has-symbols"; 3799 - packageName = "has-symbols"; 3800 - version = "1.0.3"; 3801 - src = fetchurl { 3802 - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"; 3803 - sha512 = "l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="; 3804 - }; 3805 - }; 3806 - "has-tostringtag-1.0.0" = { 3807 - name = "has-tostringtag"; 3808 - packageName = "has-tostringtag"; 3809 - version = "1.0.0"; 3810 - src = fetchurl { 3811 - url = "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; 3812 - sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="; 3813 - }; 3814 - }; 3815 - "has-value-0.3.1" = { 3816 - name = "has-value"; 3817 - packageName = "has-value"; 3818 - version = "0.3.1"; 3819 - src = fetchurl { 3820 - url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"; 3821 - sha512 = "gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q=="; 3822 - }; 3823 - }; 3824 - "has-value-1.0.0" = { 3825 - name = "has-value"; 3826 - packageName = "has-value"; 3827 - version = "1.0.0"; 3828 - src = fetchurl { 3829 - url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz"; 3830 - sha512 = "IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw=="; 3831 - }; 3832 - }; 3833 - "has-values-0.1.4" = { 3834 - name = "has-values"; 3835 - packageName = "has-values"; 3836 - version = "0.1.4"; 3837 - src = fetchurl { 3838 - url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"; 3839 - sha512 = "J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ=="; 3840 - }; 3841 - }; 3842 - "has-values-1.0.0" = { 3843 - name = "has-values"; 3844 - packageName = "has-values"; 3845 - version = "1.0.0"; 3846 - src = fetchurl { 3847 - url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz"; 3848 - sha512 = "ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ=="; 3849 - }; 3850 - }; 3851 - "hash-base-3.1.0" = { 3852 - name = "hash-base"; 3853 - packageName = "hash-base"; 3854 - version = "3.1.0"; 3855 - src = fetchurl { 3856 - url = "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz"; 3857 - sha512 = "1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA=="; 3858 - }; 3859 - }; 3860 - "hash.js-1.1.7" = { 3861 - name = "hash.js"; 3862 - packageName = "hash.js"; 3863 - version = "1.1.7"; 3864 - src = fetchurl { 3865 - url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz"; 3866 - sha512 = "taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA=="; 3867 - }; 3868 - }; 3869 - "he-1.2.0" = { 3870 - name = "he"; 3871 - packageName = "he"; 3872 - version = "1.2.0"; 3873 - src = fetchurl { 3874 - url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz"; 3875 - sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="; 3876 - }; 3877 - }; 3878 - "hmac-drbg-1.0.1" = { 3879 - name = "hmac-drbg"; 3880 - packageName = "hmac-drbg"; 3881 - version = "1.0.1"; 3882 - src = fetchurl { 3883 - url = "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz"; 3884 - sha512 = "Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg=="; 3885 - }; 3886 - }; 3887 - "homedir-polyfill-1.0.3" = { 3888 - name = "homedir-polyfill"; 3889 - packageName = "homedir-polyfill"; 3890 - version = "1.0.3"; 3891 - src = fetchurl { 3892 - url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz"; 3893 - sha512 = "eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA=="; 3894 - }; 3895 - }; 3896 - "hosted-git-info-2.8.9" = { 3897 - name = "hosted-git-info"; 3898 - packageName = "hosted-git-info"; 3899 - version = "2.8.9"; 3900 - src = fetchurl { 3901 - url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"; 3902 - sha512 = "mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw=="; 3903 - }; 3904 - }; 3905 - "html-comment-regex-1.1.2" = { 3906 - name = "html-comment-regex"; 3907 - packageName = "html-comment-regex"; 3908 - version = "1.1.2"; 3909 - src = fetchurl { 3910 - url = "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz"; 3911 - sha512 = "P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ=="; 3912 - }; 3913 - }; 3914 - "html-minifier-3.5.21" = { 3915 - name = "html-minifier"; 3916 - packageName = "html-minifier"; 3917 - version = "3.5.21"; 3918 - src = fetchurl { 3919 - url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz"; 3920 - sha512 = "LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA=="; 3921 - }; 3922 - }; 3923 - "htmlescape-1.1.1" = { 3924 - name = "htmlescape"; 3925 - packageName = "htmlescape"; 3926 - version = "1.1.1"; 3927 - src = fetchurl { 3928 - url = "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz"; 3929 - sha512 = "eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg=="; 3930 - }; 3931 - }; 3932 - "http-errors-1.6.3" = { 3933 - name = "http-errors"; 3934 - packageName = "http-errors"; 3935 - version = "1.6.3"; 3936 - src = fetchurl { 3937 - url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz"; 3938 - sha512 = "lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A=="; 3939 - }; 3940 - }; 3941 - "http-errors-2.0.0" = { 3942 - name = "http-errors"; 3943 - packageName = "http-errors"; 3944 - version = "2.0.0"; 3945 - src = fetchurl { 3946 - url = "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz"; 3947 - sha512 = "FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="; 3948 - }; 3949 - }; 3950 - "http-proxy-1.18.1" = { 3951 - name = "http-proxy"; 3952 - packageName = "http-proxy"; 3953 - version = "1.18.1"; 3954 - src = fetchurl { 3955 - url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz"; 3956 - sha512 = "7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ=="; 3957 - }; 3958 - }; 3959 - "https-browserify-1.0.0" = { 3960 - name = "https-browserify"; 3961 - packageName = "https-browserify"; 3962 - version = "1.0.0"; 3963 - src = fetchurl { 3964 - url = "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz"; 3965 - sha512 = "J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg=="; 3966 - }; 3967 - }; 3968 - "iconv-lite-0.4.24" = { 3969 - name = "iconv-lite"; 3970 - packageName = "iconv-lite"; 3971 - version = "0.4.24"; 3972 - src = fetchurl { 3973 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; 3974 - sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 3975 - }; 3976 - }; 3977 - "ieee754-1.2.1" = { 3978 - name = "ieee754"; 3979 - packageName = "ieee754"; 3980 - version = "1.2.1"; 3981 - src = fetchurl { 3982 - url = "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"; 3983 - sha512 = "dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="; 3984 - }; 3985 - }; 3986 - "ignore-3.3.10" = { 3987 - name = "ignore"; 3988 - packageName = "ignore"; 3989 - version = "3.3.10"; 3990 - src = fetchurl { 3991 - url = "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz"; 3992 - sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug=="; 3993 - }; 3994 - }; 3995 - "ignore-5.2.0" = { 3996 - name = "ignore"; 3997 - packageName = "ignore"; 3998 - version = "5.2.0"; 3999 - src = fetchurl { 4000 - url = "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz"; 4001 - sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="; 4002 - }; 4003 - }; 4004 - "immutable-3.8.2" = { 4005 - name = "immutable"; 4006 - packageName = "immutable"; 4007 - version = "3.8.2"; 4008 - src = fetchurl { 4009 - url = "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz"; 4010 - sha512 = "15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg=="; 4011 - }; 4012 - }; 4013 - "imurmurhash-0.1.4" = { 4014 - name = "imurmurhash"; 4015 - packageName = "imurmurhash"; 4016 - version = "0.1.4"; 4017 - src = fetchurl { 4018 - url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"; 4019 - sha512 = "JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="; 4020 - }; 4021 - }; 4022 - "indent-string-4.0.0" = { 4023 - name = "indent-string"; 4024 - packageName = "indent-string"; 4025 - version = "4.0.0"; 4026 - src = fetchurl { 4027 - url = "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"; 4028 - sha512 = "EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="; 4029 - }; 4030 - }; 4031 - "indexes-of-1.0.1" = { 4032 - name = "indexes-of"; 4033 - packageName = "indexes-of"; 4034 - version = "1.0.1"; 4035 - src = fetchurl { 4036 - url = "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz"; 4037 - sha512 = "bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA=="; 4038 - }; 4039 - }; 4040 - "inflight-1.0.6" = { 4041 - name = "inflight"; 4042 - packageName = "inflight"; 4043 - version = "1.0.6"; 4044 - src = fetchurl { 4045 - url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; 4046 - sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; 4047 - }; 4048 - }; 4049 - "inherits-2.0.1" = { 4050 - name = "inherits"; 4051 - packageName = "inherits"; 4052 - version = "2.0.1"; 4053 - src = fetchurl { 4054 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"; 4055 - sha512 = "8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA=="; 4056 - }; 4057 - }; 4058 - "inherits-2.0.3" = { 4059 - name = "inherits"; 4060 - packageName = "inherits"; 4061 - version = "2.0.3"; 4062 - src = fetchurl { 4063 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"; 4064 - sha512 = "x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="; 4065 - }; 4066 - }; 4067 - "inherits-2.0.4" = { 4068 - name = "inherits"; 4069 - packageName = "inherits"; 4070 - version = "2.0.4"; 4071 - src = fetchurl { 4072 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; 4073 - sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 4074 - }; 4075 - }; 4076 - "ini-1.3.8" = { 4077 - name = "ini"; 4078 - packageName = "ini"; 4079 - version = "1.3.8"; 4080 - src = fetchurl { 4081 - url = "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"; 4082 - sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 4083 - }; 4084 - }; 4085 - "inline-source-map-0.6.2" = { 4086 - name = "inline-source-map"; 4087 - packageName = "inline-source-map"; 4088 - version = "0.6.2"; 4089 - src = fetchurl { 4090 - url = "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz"; 4091 - sha512 = "0mVWSSbNDvedDWIN4wxLsdPM4a7cIPcpyMxj3QZ406QRwQ6ePGB1YIHxVPjqpcUGbWQ5C+nHTwGNWAGvt7ggVA=="; 4092 - }; 4093 - }; 4094 - "inputmask-3.3.11" = { 4095 - name = "inputmask"; 4096 - packageName = "inputmask"; 4097 - version = "3.3.11"; 4098 - src = fetchurl { 4099 - url = "https://registry.npmjs.org/inputmask/-/inputmask-3.3.11.tgz"; 4100 - sha512 = "qyqC+MmJjOZrqojwY5T6KvWbdlPW3BO+1W7+2Y5bdSmwv//gkF8A5nXjPpZHD+rk1KRRBvsZ5oNGpJAKfVnqjw=="; 4101 - }; 4102 - }; 4103 - "inquirer-3.3.0" = { 4104 - name = "inquirer"; 4105 - packageName = "inquirer"; 4106 - version = "3.3.0"; 4107 - src = fetchurl { 4108 - url = "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz"; 4109 - sha512 = "h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ=="; 4110 - }; 4111 - }; 4112 - "insert-module-globals-7.2.1" = { 4113 - name = "insert-module-globals"; 4114 - packageName = "insert-module-globals"; 4115 - version = "7.2.1"; 4116 - src = fetchurl { 4117 - url = "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.1.tgz"; 4118 - sha512 = "ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg=="; 4119 - }; 4120 - }; 4121 - "internal-slot-1.0.3" = { 4122 - name = "internal-slot"; 4123 - packageName = "internal-slot"; 4124 - version = "1.0.3"; 4125 - src = fetchurl { 4126 - url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz"; 4127 - sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="; 4128 - }; 4129 - }; 4130 - "interpret-1.4.0" = { 4131 - name = "interpret"; 4132 - packageName = "interpret"; 4133 - version = "1.4.0"; 4134 - src = fetchurl { 4135 - url = "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz"; 4136 - sha512 = "agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA=="; 4137 - }; 4138 - }; 4139 - "invert-kv-1.0.0" = { 4140 - name = "invert-kv"; 4141 - packageName = "invert-kv"; 4142 - version = "1.0.0"; 4143 - src = fetchurl { 4144 - url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz"; 4145 - sha512 = "xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ=="; 4146 - }; 4147 - }; 4148 - "ion-rangeslider-2.3.1" = { 4149 - name = "ion-rangeslider"; 4150 - packageName = "ion-rangeslider"; 4151 - version = "2.3.1"; 4152 - src = fetchurl { 4153 - url = "https://registry.npmjs.org/ion-rangeslider/-/ion-rangeslider-2.3.1.tgz"; 4154 - sha512 = "6V+24FD13/feliI485gnRHZYD9Ev64M5NAFTxnVib516ATHa9PlXQrC+nOiPngouRYTCLPJyokAJEi3e1Umi5g=="; 4155 - }; 4156 - }; 4157 - "ionicons-3.0.0" = { 4158 - name = "ionicons"; 4159 - packageName = "ionicons"; 4160 - version = "3.0.0"; 4161 - src = fetchurl { 4162 - url = "https://registry.npmjs.org/ionicons/-/ionicons-3.0.0.tgz"; 4163 - sha512 = "aAxjhc681QPsjVPwar2CtbcOiw6SMI2zT21eoBIWrmCi8ZXc+thL3vdQU9eVfG9XPeHXri/XVjv/ydKkORb6+Q=="; 4164 - }; 4165 - }; 4166 - "is-absolute-1.0.0" = { 4167 - name = "is-absolute"; 4168 - packageName = "is-absolute"; 4169 - version = "1.0.0"; 4170 - src = fetchurl { 4171 - url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz"; 4172 - sha512 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA=="; 4173 - }; 4174 - }; 4175 - "is-absolute-url-2.1.0" = { 4176 - name = "is-absolute-url"; 4177 - packageName = "is-absolute-url"; 4178 - version = "2.1.0"; 4179 - src = fetchurl { 4180 - url = "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz"; 4181 - sha512 = "vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg=="; 4182 - }; 4183 - }; 4184 - "is-accessor-descriptor-0.1.6" = { 4185 - name = "is-accessor-descriptor"; 4186 - packageName = "is-accessor-descriptor"; 4187 - version = "0.1.6"; 4188 - src = fetchurl { 4189 - url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; 4190 - sha512 = "e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A=="; 4191 - }; 4192 - }; 4193 - "is-accessor-descriptor-1.0.0" = { 4194 - name = "is-accessor-descriptor"; 4195 - packageName = "is-accessor-descriptor"; 4196 - version = "1.0.0"; 4197 - src = fetchurl { 4198 - url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; 4199 - sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ=="; 4200 - }; 4201 - }; 4202 - "is-arguments-1.1.1" = { 4203 - name = "is-arguments"; 4204 - packageName = "is-arguments"; 4205 - version = "1.1.1"; 4206 - src = fetchurl { 4207 - url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz"; 4208 - sha512 = "8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA=="; 4209 - }; 4210 - }; 4211 - "is-arrayish-0.2.1" = { 4212 - name = "is-arrayish"; 4213 - packageName = "is-arrayish"; 4214 - version = "0.2.1"; 4215 - src = fetchurl { 4216 - url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"; 4217 - sha512 = "zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg=="; 4218 - }; 4219 - }; 4220 - "is-bigint-1.0.4" = { 4221 - name = "is-bigint"; 4222 - packageName = "is-bigint"; 4223 - version = "1.0.4"; 4224 - src = fetchurl { 4225 - url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"; 4226 - sha512 = "zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="; 4227 - }; 4228 - }; 4229 - "is-binary-path-1.0.1" = { 4230 - name = "is-binary-path"; 4231 - packageName = "is-binary-path"; 4232 - version = "1.0.1"; 4233 - src = fetchurl { 4234 - url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz"; 4235 - sha512 = "9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q=="; 4236 - }; 4237 - }; 4238 - "is-binary-path-2.1.0" = { 4239 - name = "is-binary-path"; 4240 - packageName = "is-binary-path"; 4241 - version = "2.1.0"; 4242 - src = fetchurl { 4243 - url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"; 4244 - sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 4245 - }; 4246 - }; 4247 - "is-boolean-object-1.1.2" = { 4248 - name = "is-boolean-object"; 4249 - packageName = "is-boolean-object"; 4250 - version = "1.1.2"; 4251 - src = fetchurl { 4252 - url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; 4253 - sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="; 4254 - }; 4255 - }; 4256 - "is-buffer-1.1.6" = { 4257 - name = "is-buffer"; 4258 - packageName = "is-buffer"; 4259 - version = "1.1.6"; 4260 - src = fetchurl { 4261 - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"; 4262 - sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; 4263 - }; 4264 - }; 4265 - "is-callable-1.2.7" = { 4266 - name = "is-callable"; 4267 - packageName = "is-callable"; 4268 - version = "1.2.7"; 4269 - src = fetchurl { 4270 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz"; 4271 - sha512 = "1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="; 4272 - }; 4273 - }; 4274 - "is-core-module-2.11.0" = { 4275 - name = "is-core-module"; 4276 - packageName = "is-core-module"; 4277 - version = "2.11.0"; 4278 - src = fetchurl { 4279 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"; 4280 - sha512 = "RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="; 4281 - }; 4282 - }; 4283 - "is-data-descriptor-0.1.4" = { 4284 - name = "is-data-descriptor"; 4285 - packageName = "is-data-descriptor"; 4286 - version = "0.1.4"; 4287 - src = fetchurl { 4288 - url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; 4289 - sha512 = "+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg=="; 4290 - }; 4291 - }; 4292 - "is-data-descriptor-1.0.0" = { 4293 - name = "is-data-descriptor"; 4294 - packageName = "is-data-descriptor"; 4295 - version = "1.0.0"; 4296 - src = fetchurl { 4297 - url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; 4298 - sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; 4299 - }; 4300 - }; 4301 - "is-date-object-1.0.5" = { 4302 - name = "is-date-object"; 4303 - packageName = "is-date-object"; 4304 - version = "1.0.5"; 4305 - src = fetchurl { 4306 - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"; 4307 - sha512 = "9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="; 4308 - }; 4309 - }; 4310 - "is-descriptor-0.1.6" = { 4311 - name = "is-descriptor"; 4312 - packageName = "is-descriptor"; 4313 - version = "0.1.6"; 4314 - src = fetchurl { 4315 - url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz"; 4316 - sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg=="; 4317 - }; 4318 - }; 4319 - "is-descriptor-1.0.2" = { 4320 - name = "is-descriptor"; 4321 - packageName = "is-descriptor"; 4322 - version = "1.0.2"; 4323 - src = fetchurl { 4324 - url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz"; 4325 - sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="; 4326 - }; 4327 - }; 4328 - "is-extendable-0.1.1" = { 4329 - name = "is-extendable"; 4330 - packageName = "is-extendable"; 4331 - version = "0.1.1"; 4332 - src = fetchurl { 4333 - url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"; 4334 - sha512 = "5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw=="; 4335 - }; 4336 - }; 4337 - "is-extendable-1.0.1" = { 4338 - name = "is-extendable"; 4339 - packageName = "is-extendable"; 4340 - version = "1.0.1"; 4341 - src = fetchurl { 4342 - url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz"; 4343 - sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA=="; 4344 - }; 4345 - }; 4346 - "is-extglob-2.1.1" = { 4347 - name = "is-extglob"; 4348 - packageName = "is-extglob"; 4349 - version = "2.1.1"; 4350 - src = fetchurl { 4351 - url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; 4352 - sha512 = "SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="; 4353 - }; 4354 - }; 4355 - "is-fullwidth-code-point-1.0.0" = { 4356 - name = "is-fullwidth-code-point"; 4357 - packageName = "is-fullwidth-code-point"; 4358 - version = "1.0.0"; 4359 - src = fetchurl { 4360 - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; 4361 - sha512 = "1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw=="; 4362 - }; 4363 - }; 4364 - "is-fullwidth-code-point-2.0.0" = { 4365 - name = "is-fullwidth-code-point"; 4366 - packageName = "is-fullwidth-code-point"; 4367 - version = "2.0.0"; 4368 - src = fetchurl { 4369 - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 4370 - sha512 = "VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="; 4371 - }; 4372 - }; 4373 - "is-fullwidth-code-point-3.0.0" = { 4374 - name = "is-fullwidth-code-point"; 4375 - packageName = "is-fullwidth-code-point"; 4376 - version = "3.0.0"; 4377 - src = fetchurl { 4378 - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; 4379 - sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; 4380 - }; 4381 - }; 4382 - "is-generator-function-1.0.10" = { 4383 - name = "is-generator-function"; 4384 - packageName = "is-generator-function"; 4385 - version = "1.0.10"; 4386 - src = fetchurl { 4387 - url = "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz"; 4388 - sha512 = "jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A=="; 4389 - }; 4390 - }; 4391 - "is-glob-3.1.0" = { 4392 - name = "is-glob"; 4393 - packageName = "is-glob"; 4394 - version = "3.1.0"; 4395 - src = fetchurl { 4396 - url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz"; 4397 - sha512 = "UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw=="; 4398 - }; 4399 - }; 4400 - "is-glob-4.0.3" = { 4401 - name = "is-glob"; 4402 - packageName = "is-glob"; 4403 - version = "4.0.3"; 4404 - src = fetchurl { 4405 - url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"; 4406 - sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; 4407 - }; 4408 - }; 4409 - "is-negated-glob-1.0.0" = { 4410 - name = "is-negated-glob"; 4411 - packageName = "is-negated-glob"; 4412 - version = "1.0.0"; 4413 - src = fetchurl { 4414 - url = "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz"; 4415 - sha512 = "czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug=="; 4416 - }; 4417 - }; 4418 - "is-negative-zero-2.0.2" = { 4419 - name = "is-negative-zero"; 4420 - packageName = "is-negative-zero"; 4421 - version = "2.0.2"; 4422 - src = fetchurl { 4423 - url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"; 4424 - sha512 = "dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA=="; 4425 - }; 4426 - }; 4427 - "is-number-3.0.0" = { 4428 - name = "is-number"; 4429 - packageName = "is-number"; 4430 - version = "3.0.0"; 4431 - src = fetchurl { 4432 - url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz"; 4433 - sha512 = "4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg=="; 4434 - }; 4435 - }; 4436 - "is-number-4.0.0" = { 4437 - name = "is-number"; 4438 - packageName = "is-number"; 4439 - version = "4.0.0"; 4440 - src = fetchurl { 4441 - url = "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz"; 4442 - sha512 = "rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ=="; 4443 - }; 4444 - }; 4445 - "is-number-7.0.0" = { 4446 - name = "is-number"; 4447 - packageName = "is-number"; 4448 - version = "7.0.0"; 4449 - src = fetchurl { 4450 - url = "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"; 4451 - sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 4452 - }; 4453 - }; 4454 - "is-number-like-1.0.8" = { 4455 - name = "is-number-like"; 4456 - packageName = "is-number-like"; 4457 - version = "1.0.8"; 4458 - src = fetchurl { 4459 - url = "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz"; 4460 - sha512 = "6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA=="; 4461 - }; 4462 - }; 4463 - "is-number-object-1.0.7" = { 4464 - name = "is-number-object"; 4465 - packageName = "is-number-object"; 4466 - version = "1.0.7"; 4467 - src = fetchurl { 4468 - url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"; 4469 - sha512 = "k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ=="; 4470 - }; 4471 - }; 4472 - "is-path-cwd-2.2.0" = { 4473 - name = "is-path-cwd"; 4474 - packageName = "is-path-cwd"; 4475 - version = "2.2.0"; 4476 - src = fetchurl { 4477 - url = "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz"; 4478 - sha512 = "w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ=="; 4479 - }; 4480 - }; 4481 - "is-path-inside-3.0.3" = { 4482 - name = "is-path-inside"; 4483 - packageName = "is-path-inside"; 4484 - version = "3.0.3"; 4485 - src = fetchurl { 4486 - url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"; 4487 - sha512 = "Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="; 4488 - }; 4489 - }; 4490 - "is-plain-obj-1.1.0" = { 4491 - name = "is-plain-obj"; 4492 - packageName = "is-plain-obj"; 4493 - version = "1.1.0"; 4494 - src = fetchurl { 4495 - url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"; 4496 - sha512 = "yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg=="; 4497 - }; 4498 - }; 4499 - "is-plain-object-2.0.4" = { 4500 - name = "is-plain-object"; 4501 - packageName = "is-plain-object"; 4502 - version = "2.0.4"; 4503 - src = fetchurl { 4504 - url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"; 4505 - sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; 4506 - }; 4507 - }; 4508 - "is-plain-object-5.0.0" = { 4509 - name = "is-plain-object"; 4510 - packageName = "is-plain-object"; 4511 - version = "5.0.0"; 4512 - src = fetchurl { 4513 - url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz"; 4514 - sha512 = "VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q=="; 4515 - }; 4516 - }; 4517 - "is-promise-2.2.2" = { 4518 - name = "is-promise"; 4519 - packageName = "is-promise"; 4520 - version = "2.2.2"; 4521 - src = fetchurl { 4522 - url = "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz"; 4523 - sha512 = "+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ=="; 4524 - }; 4525 - }; 4526 - "is-regex-1.1.4" = { 4527 - name = "is-regex"; 4528 - packageName = "is-regex"; 4529 - version = "1.1.4"; 4530 - src = fetchurl { 4531 - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"; 4532 - sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="; 4533 - }; 4534 - }; 4535 - "is-relative-1.0.0" = { 4536 - name = "is-relative"; 4537 - packageName = "is-relative"; 4538 - version = "1.0.0"; 4539 - src = fetchurl { 4540 - url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz"; 4541 - sha512 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA=="; 4542 - }; 4543 - }; 4544 - "is-resolvable-1.1.0" = { 4545 - name = "is-resolvable"; 4546 - packageName = "is-resolvable"; 4547 - version = "1.1.0"; 4548 - src = fetchurl { 4549 - url = "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz"; 4550 - sha512 = "qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg=="; 4551 - }; 4552 - }; 4553 - "is-shared-array-buffer-1.0.2" = { 4554 - name = "is-shared-array-buffer"; 4555 - packageName = "is-shared-array-buffer"; 4556 - version = "1.0.2"; 4557 - src = fetchurl { 4558 - url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"; 4559 - sha512 = "sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA=="; 4560 - }; 4561 - }; 4562 - "is-string-1.0.7" = { 4563 - name = "is-string"; 4564 - packageName = "is-string"; 4565 - version = "1.0.7"; 4566 - src = fetchurl { 4567 - url = "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"; 4568 - sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="; 4569 - }; 4570 - }; 4571 - "is-svg-2.1.0" = { 4572 - name = "is-svg"; 4573 - packageName = "is-svg"; 4574 - version = "2.1.0"; 4575 - src = fetchurl { 4576 - url = "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz"; 4577 - sha512 = "Ya1giYJUkcL/94quj0+XGcmts6cETPBW1MiFz1ReJrnDJ680F52qpAEGAEGU0nq96FRGIGPx6Yo1CyPXcOoyGw=="; 4578 - }; 4579 - }; 4580 - "is-symbol-1.0.4" = { 4581 - name = "is-symbol"; 4582 - packageName = "is-symbol"; 4583 - version = "1.0.4"; 4584 - src = fetchurl { 4585 - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"; 4586 - sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 4587 - }; 4588 - }; 4589 - "is-typed-array-1.1.9" = { 4590 - name = "is-typed-array"; 4591 - packageName = "is-typed-array"; 4592 - version = "1.1.9"; 4593 - src = fetchurl { 4594 - url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz"; 4595 - sha512 = "kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A=="; 4596 - }; 4597 - }; 4598 - "is-unc-path-1.0.0" = { 4599 - name = "is-unc-path"; 4600 - packageName = "is-unc-path"; 4601 - version = "1.0.0"; 4602 - src = fetchurl { 4603 - url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz"; 4604 - sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ=="; 4605 - }; 4606 - }; 4607 - "is-utf8-0.2.1" = { 4608 - name = "is-utf8"; 4609 - packageName = "is-utf8"; 4610 - version = "0.2.1"; 4611 - src = fetchurl { 4612 - url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"; 4613 - sha512 = "rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q=="; 4614 - }; 4615 - }; 4616 - "is-valid-glob-1.0.0" = { 4617 - name = "is-valid-glob"; 4618 - packageName = "is-valid-glob"; 4619 - version = "1.0.0"; 4620 - src = fetchurl { 4621 - url = "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz"; 4622 - sha512 = "AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA=="; 4623 - }; 4624 - }; 4625 - "is-weakref-1.0.2" = { 4626 - name = "is-weakref"; 4627 - packageName = "is-weakref"; 4628 - version = "1.0.2"; 4629 - src = fetchurl { 4630 - url = "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"; 4631 - sha512 = "qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="; 4632 - }; 4633 - }; 4634 - "is-windows-1.0.2" = { 4635 - name = "is-windows"; 4636 - packageName = "is-windows"; 4637 - version = "1.0.2"; 4638 - src = fetchurl { 4639 - url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"; 4640 - sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="; 4641 - }; 4642 - }; 4643 - "is-wsl-1.1.0" = { 4644 - name = "is-wsl"; 4645 - packageName = "is-wsl"; 4646 - version = "1.1.0"; 4647 - src = fetchurl { 4648 - url = "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz"; 4649 - sha512 = "gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw=="; 4650 - }; 4651 - }; 4652 - "isarray-0.0.1" = { 4653 - name = "isarray"; 4654 - packageName = "isarray"; 4655 - version = "0.0.1"; 4656 - src = fetchurl { 4657 - url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; 4658 - sha512 = "D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="; 4659 - }; 4660 - }; 4661 - "isarray-1.0.0" = { 4662 - name = "isarray"; 4663 - packageName = "isarray"; 4664 - version = "1.0.0"; 4665 - src = fetchurl { 4666 - url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; 4667 - sha512 = "VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="; 4668 - }; 4669 - }; 4670 - "isexe-2.0.0" = { 4671 - name = "isexe"; 4672 - packageName = "isexe"; 4673 - version = "2.0.0"; 4674 - src = fetchurl { 4675 - url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; 4676 - sha512 = "RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="; 4677 - }; 4678 - }; 4679 - "isobject-2.1.0" = { 4680 - name = "isobject"; 4681 - packageName = "isobject"; 4682 - version = "2.1.0"; 4683 - src = fetchurl { 4684 - url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz"; 4685 - sha512 = "+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA=="; 4686 - }; 4687 - }; 4688 - "isobject-3.0.1" = { 4689 - name = "isobject"; 4690 - packageName = "isobject"; 4691 - version = "3.0.1"; 4692 - src = fetchurl { 4693 - url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"; 4694 - sha512 = "WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg=="; 4695 - }; 4696 - }; 4697 - "istextorbinary-3.3.0" = { 4698 - name = "istextorbinary"; 4699 - packageName = "istextorbinary"; 4700 - version = "3.3.0"; 4701 - src = fetchurl { 4702 - url = "https://registry.npmjs.org/istextorbinary/-/istextorbinary-3.3.0.tgz"; 4703 - sha512 = "Tvq1W6NAcZeJ8op+Hq7tdZ434rqnMx4CCZ7H0ff83uEloDvVbqAwaMTZcafKGJT0VHkYzuXUiCY4hlXQg6WfoQ=="; 4704 - }; 4705 - }; 4706 - "jquery-3.4.1" = { 4707 - name = "jquery"; 4708 - packageName = "jquery"; 4709 - version = "3.4.1"; 4710 - src = fetchurl { 4711 - url = "https://registry.npmjs.org/jquery/-/jquery-3.4.1.tgz"; 4712 - sha512 = "36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw=="; 4713 - }; 4714 - }; 4715 - "jquery-knob-1.2.11" = { 4716 - name = "jquery-knob"; 4717 - packageName = "jquery-knob"; 4718 - version = "1.2.11"; 4719 - src = fetchurl { 4720 - url = "https://registry.npmjs.org/jquery-knob/-/jquery-knob-1.2.11.tgz"; 4721 - sha512 = "gyeWDmtr2x8XJLSNS2JGNYDUNmfmMrwmFcGPDJ074jnPPvMYf3PJFud4/6AubCT8ahOY7UL4YvALtSwCrxtBBQ=="; 4722 - }; 4723 - }; 4724 - "jquery-slimscroll-1.3.8" = { 4725 - name = "jquery-slimscroll"; 4726 - packageName = "jquery-slimscroll"; 4727 - version = "1.3.8"; 4728 - src = fetchurl { 4729 - url = "https://registry.npmjs.org/jquery-slimscroll/-/jquery-slimscroll-1.3.8.tgz"; 4730 - sha512 = "3cNGNCq6i3b+rZQOx1tSBlSFewk4X35eUuQmoRVSA4MSytw3rGPvCw6cEB2oEHf+u15RVzgfh4hN+/3dDNzwiQ=="; 4731 - }; 4732 - }; 4733 - "jquery-sparkline-2.4.0" = { 4734 - name = "jquery-sparkline"; 4735 - packageName = "jquery-sparkline"; 4736 - version = "2.4.0"; 4737 - src = fetchurl { 4738 - url = "https://registry.npmjs.org/jquery-sparkline/-/jquery-sparkline-2.4.0.tgz"; 4739 - sha512 = "SzjpMkOwlnqZpH4Ni2UbdRU5GxDl/BljgN8Smlun7CXUDqRhjPf2eolJ37KKcaG0/ufsMKY+XDERfPTV1hIcjg=="; 4740 - }; 4741 - }; 4742 - "jquery-ui-1.13.2" = { 4743 - name = "jquery-ui"; 4744 - packageName = "jquery-ui"; 4745 - version = "1.13.2"; 4746 - src = fetchurl { 4747 - url = "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.13.2.tgz"; 4748 - sha512 = "wBZPnqWs5GaYJmo1Jj0k/mrSkzdQzKDwhXNtHKcBdAcKVxMM3KNYFq+iJ2i1rwiG53Z8M4mTn3Qxrm17uH1D4Q=="; 4749 - }; 4750 - }; 4751 - "js-base64-2.6.4" = { 4752 - name = "js-base64"; 4753 - packageName = "js-base64"; 4754 - version = "2.6.4"; 4755 - src = fetchurl { 4756 - url = "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz"; 4757 - sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ=="; 4758 - }; 4759 - }; 4760 - "js-tokens-3.0.2" = { 4761 - name = "js-tokens"; 4762 - packageName = "js-tokens"; 4763 - version = "3.0.2"; 4764 - src = fetchurl { 4765 - url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz"; 4766 - sha512 = "RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg=="; 4767 - }; 4768 - }; 4769 - "js-yaml-3.14.1" = { 4770 - name = "js-yaml"; 4771 - packageName = "js-yaml"; 4772 - version = "3.14.1"; 4773 - src = fetchurl { 4774 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"; 4775 - sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="; 4776 - }; 4777 - }; 4778 - "js-yaml-3.7.0" = { 4779 - name = "js-yaml"; 4780 - packageName = "js-yaml"; 4781 - version = "3.7.0"; 4782 - src = fetchurl { 4783 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz"; 4784 - sha512 = "eIlkGty7HGmntbV6P/ZlAsoncFLGsNoM27lkTzS+oneY/EiNhj+geqD9ezg/ip+SW6Var0BJU2JtV0vEUZpWVQ=="; 4785 - }; 4786 - }; 4787 - "jsesc-2.5.1" = { 4788 - name = "jsesc"; 4789 - packageName = "jsesc"; 4790 - version = "2.5.1"; 4791 - src = fetchurl { 4792 - url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.1.tgz"; 4793 - sha512 = "Bl0oKW/TMSVifAQLbupbpOrssQ3CC+lyhZZjofI19OuKtwq8/A9KtxDA22wppbeiFqAQdTnVkDR8ymtRFAxtYw=="; 4794 - }; 4795 - }; 4796 - "json-schema-traverse-0.3.1" = { 4797 - name = "json-schema-traverse"; 4798 - packageName = "json-schema-traverse"; 4799 - version = "0.3.1"; 4800 - src = fetchurl { 4801 - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz"; 4802 - sha512 = "4JD/Ivzg7PoW8NzdrBSr3UFwC9mHgvI7Z6z3QGBsSHgKaRTUDmyZAAKJo2UbG1kUVfS9WS8bi36N49U1xw43DA=="; 4803 - }; 4804 - }; 4805 - "json-stable-stringify-without-jsonify-1.0.1" = { 4806 - name = "json-stable-stringify-without-jsonify"; 4807 - packageName = "json-stable-stringify-without-jsonify"; 4808 - version = "1.0.1"; 4809 - src = fetchurl { 4810 - url = "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; 4811 - sha512 = "Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="; 4812 - }; 4813 - }; 4814 - "jsonfile-3.0.1" = { 4815 - name = "jsonfile"; 4816 - packageName = "jsonfile"; 4817 - version = "3.0.1"; 4818 - src = fetchurl { 4819 - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz"; 4820 - sha512 = "oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w=="; 4821 - }; 4822 - }; 4823 - "jsonparse-1.3.1" = { 4824 - name = "jsonparse"; 4825 - packageName = "jsonparse"; 4826 - version = "1.3.1"; 4827 - src = fetchurl { 4828 - url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"; 4829 - sha512 = "POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg=="; 4830 - }; 4831 - }; 4832 - "just-debounce-1.1.0" = { 4833 - name = "just-debounce"; 4834 - packageName = "just-debounce"; 4835 - version = "1.1.0"; 4836 - src = fetchurl { 4837 - url = "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz"; 4838 - sha512 = "qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ=="; 4839 - }; 4840 - }; 4841 - "jvectormap-1.2.2" = { 4842 - name = "jvectormap"; 4843 - packageName = "jvectormap"; 4844 - version = "1.2.2"; 4845 - src = fetchurl { 4846 - url = "https://registry.npmjs.org/jvectormap/-/jvectormap-1.2.2.tgz"; 4847 - sha512 = "rSNE/z2umGcDURvGgnE5Tgwxszw9CkgWQY/NY1LyM+CKGSui11mGTZf/zGrX4WxPwcietgWwMqIV67EJxmU0wQ=="; 4848 - }; 4849 - }; 4850 - "kind-of-1.1.0" = { 4851 - name = "kind-of"; 4852 - packageName = "kind-of"; 4853 - version = "1.1.0"; 4854 - src = fetchurl { 4855 - url = "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz"; 4856 - sha512 = "aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g=="; 4857 - }; 4858 - }; 4859 - "kind-of-3.2.2" = { 4860 - name = "kind-of"; 4861 - packageName = "kind-of"; 4862 - version = "3.2.2"; 4863 - src = fetchurl { 4864 - url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"; 4865 - sha512 = "NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ=="; 4866 - }; 4867 - }; 4868 - "kind-of-4.0.0" = { 4869 - name = "kind-of"; 4870 - packageName = "kind-of"; 4871 - version = "4.0.0"; 4872 - src = fetchurl { 4873 - url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz"; 4874 - sha512 = "24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw=="; 4875 - }; 4876 - }; 4877 - "kind-of-5.1.0" = { 4878 - name = "kind-of"; 4879 - packageName = "kind-of"; 4880 - version = "5.1.0"; 4881 - src = fetchurl { 4882 - url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz"; 4883 - sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="; 4884 - }; 4885 - }; 4886 - "kind-of-6.0.3" = { 4887 - name = "kind-of"; 4888 - packageName = "kind-of"; 4889 - version = "6.0.3"; 4890 - src = fetchurl { 4891 - url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"; 4892 - sha512 = "dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="; 4893 - }; 4894 - }; 4895 - "labeled-stream-splicer-2.0.2" = { 4896 - name = "labeled-stream-splicer"; 4897 - packageName = "labeled-stream-splicer"; 4898 - version = "2.0.2"; 4899 - src = fetchurl { 4900 - url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz"; 4901 - sha512 = "Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw=="; 4902 - }; 4903 - }; 4904 - "last-run-1.1.1" = { 4905 - name = "last-run"; 4906 - packageName = "last-run"; 4907 - version = "1.1.1"; 4908 - src = fetchurl { 4909 - url = "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz"; 4910 - sha512 = "U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ=="; 4911 - }; 4912 - }; 4913 - "lazystream-1.0.1" = { 4914 - name = "lazystream"; 4915 - packageName = "lazystream"; 4916 - version = "1.0.1"; 4917 - src = fetchurl { 4918 - url = "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz"; 4919 - sha512 = "b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw=="; 4920 - }; 4921 - }; 4922 - "lcid-1.0.0" = { 4923 - name = "lcid"; 4924 - packageName = "lcid"; 4925 - version = "1.0.0"; 4926 - src = fetchurl { 4927 - url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz"; 4928 - sha512 = "YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw=="; 4929 - }; 4930 - }; 4931 - "lead-1.0.0" = { 4932 - name = "lead"; 4933 - packageName = "lead"; 4934 - version = "1.0.0"; 4935 - src = fetchurl { 4936 - url = "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz"; 4937 - sha512 = "IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow=="; 4938 - }; 4939 - }; 4940 - "levn-0.3.0" = { 4941 - name = "levn"; 4942 - packageName = "levn"; 4943 - version = "0.3.0"; 4944 - src = fetchurl { 4945 - url = "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz"; 4946 - sha512 = "0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA=="; 4947 - }; 4948 - }; 4949 - "liftoff-3.1.0" = { 4950 - name = "liftoff"; 4951 - packageName = "liftoff"; 4952 - version = "3.1.0"; 4953 - src = fetchurl { 4954 - url = "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz"; 4955 - sha512 = "DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog=="; 4956 - }; 4957 - }; 4958 - "limiter-1.1.5" = { 4959 - name = "limiter"; 4960 - packageName = "limiter"; 4961 - version = "1.1.5"; 4962 - src = fetchurl { 4963 - url = "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz"; 4964 - sha512 = "FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA=="; 4965 - }; 4966 - }; 4967 - "load-json-file-1.1.0" = { 4968 - name = "load-json-file"; 4969 - packageName = "load-json-file"; 4970 - version = "1.1.0"; 4971 - src = fetchurl { 4972 - url = "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"; 4973 - sha512 = "cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A=="; 4974 - }; 4975 - }; 4976 - "localtunnel-2.0.2" = { 4977 - name = "localtunnel"; 4978 - packageName = "localtunnel"; 4979 - version = "2.0.2"; 4980 - src = fetchurl { 4981 - url = "https://registry.npmjs.org/localtunnel/-/localtunnel-2.0.2.tgz"; 4982 - sha512 = "n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug=="; 4983 - }; 4984 - }; 4985 - "lodash-4.17.21" = { 4986 - name = "lodash"; 4987 - packageName = "lodash"; 4988 - version = "4.17.21"; 4989 - src = fetchurl { 4990 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"; 4991 - sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 4992 - }; 4993 - }; 4994 - "lodash._basecopy-3.0.1" = { 4995 - name = "lodash._basecopy"; 4996 - packageName = "lodash._basecopy"; 4997 - version = "3.0.1"; 4998 - src = fetchurl { 4999 - url = "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz"; 5000 - sha512 = "rFR6Vpm4HeCK1WPGvjZSJ+7yik8d8PVUdCJx5rT2pogG4Ve/2ZS7kfmO5l5T2o5V2mqlNIfSF5MZlr1+xOoYQQ=="; 5001 - }; 5002 - }; 5003 - "lodash._basetostring-3.0.1" = { 5004 - name = "lodash._basetostring"; 5005 - packageName = "lodash._basetostring"; 5006 - version = "3.0.1"; 5007 - src = fetchurl { 5008 - url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz"; 5009 - sha512 = "mTzAr1aNAv/i7W43vOR/uD/aJ4ngbtsRaCubp2BfZhlGU/eORUjg/7F6X0orNMdv33JOrdgGybtvMN/po3EWrA=="; 5010 - }; 5011 - }; 5012 - "lodash._basevalues-3.0.0" = { 5013 - name = "lodash._basevalues"; 5014 - packageName = "lodash._basevalues"; 5015 - version = "3.0.0"; 5016 - src = fetchurl { 5017 - url = "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz"; 5018 - sha512 = "H94wl5P13uEqlCg7OcNNhMQ8KvWSIyqXzOPusRgHC9DK3o54P6P3xtbXlVbRABG4q5gSmp7EDdJ0MSuW9HX6Mg=="; 5019 - }; 5020 - }; 5021 - "lodash._getnative-3.9.1" = { 5022 - name = "lodash._getnative"; 5023 - packageName = "lodash._getnative"; 5024 - version = "3.9.1"; 5025 - src = fetchurl { 5026 - url = "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz"; 5027 - sha512 = "RrL9VxMEPyDMHOd9uFbvMe8X55X16/cGM5IgOKgRElQZutpX89iS6vwl64duTV1/16w5JY7tuFNXqoekmh1EmA=="; 5028 - }; 5029 - }; 5030 - "lodash._isiterateecall-3.0.9" = { 5031 - name = "lodash._isiterateecall"; 5032 - packageName = "lodash._isiterateecall"; 5033 - version = "3.0.9"; 5034 - src = fetchurl { 5035 - url = "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz"; 5036 - sha512 = "De+ZbrMu6eThFti/CSzhRvTKMgQToLxbij58LMfM8JnYDNSOjkjTCIaa8ixglOeGh2nyPlakbt5bJWJ7gvpYlQ=="; 5037 - }; 5038 - }; 5039 - "lodash._reescape-3.0.0" = { 5040 - name = "lodash._reescape"; 5041 - packageName = "lodash._reescape"; 5042 - version = "3.0.0"; 5043 - src = fetchurl { 5044 - url = "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz"; 5045 - sha512 = "Sjlavm5y+FUVIF3vF3B75GyXrzsfYV8Dlv3L4mEpuB9leg8N6yf/7rU06iLPx9fY0Mv3khVp9p7Dx0mGV6V5OQ=="; 5046 - }; 5047 - }; 5048 - "lodash._reevaluate-3.0.0" = { 5049 - name = "lodash._reevaluate"; 5050 - packageName = "lodash._reevaluate"; 5051 - version = "3.0.0"; 5052 - src = fetchurl { 5053 - url = "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz"; 5054 - sha512 = "OrPwdDc65iJiBeUe5n/LIjd7Viy99bKwDdk7Z5ljfZg0uFRFlfQaCy9tZ4YMAag9WAZmlVpe1iZrkIMMSMHD3w=="; 5055 - }; 5056 - }; 5057 - "lodash._reinterpolate-3.0.0" = { 5058 - name = "lodash._reinterpolate"; 5059 - packageName = "lodash._reinterpolate"; 5060 - version = "3.0.0"; 5061 - src = fetchurl { 5062 - url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"; 5063 - sha512 = "xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA=="; 5064 - }; 5065 - }; 5066 - "lodash._root-3.0.1" = { 5067 - name = "lodash._root"; 5068 - packageName = "lodash._root"; 5069 - version = "3.0.1"; 5070 - src = fetchurl { 5071 - url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz"; 5072 - sha512 = "O0pWuFSK6x4EXhM1dhZ8gchNtG7JMqBtrHdoUFUWXD7dJnNSUze1GuyQr5sOs0aCvgGeI3o/OJW8f4ca7FDxmQ=="; 5073 - }; 5074 - }; 5075 - "lodash.escape-3.2.0" = { 5076 - name = "lodash.escape"; 5077 - packageName = "lodash.escape"; 5078 - version = "3.2.0"; 5079 - src = fetchurl { 5080 - url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz"; 5081 - sha512 = "n1PZMXgaaDWZDSvuNZ/8XOcYO2hOKDqZel5adtR30VKQAtoWs/5AOeFA0vPV8moiPzlqe7F4cP2tzpFewQyelQ=="; 5082 - }; 5083 - }; 5084 - "lodash.isarguments-3.1.0" = { 5085 - name = "lodash.isarguments"; 5086 - packageName = "lodash.isarguments"; 5087 - version = "3.1.0"; 5088 - src = fetchurl { 5089 - url = "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz"; 5090 - sha512 = "chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg=="; 5091 - }; 5092 - }; 5093 - "lodash.isarray-3.0.4" = { 5094 - name = "lodash.isarray"; 5095 - packageName = "lodash.isarray"; 5096 - version = "3.0.4"; 5097 - src = fetchurl { 5098 - url = "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz"; 5099 - sha512 = "JwObCrNJuT0Nnbuecmqr5DgtuBppuCvGD9lxjFpAzwnVtdGoDQ1zig+5W8k5/6Gcn0gZ3936HDAlGd28i7sOGQ=="; 5100 - }; 5101 - }; 5102 - "lodash.isfinite-3.3.2" = { 5103 - name = "lodash.isfinite"; 5104 - packageName = "lodash.isfinite"; 5105 - version = "3.3.2"; 5106 - src = fetchurl { 5107 - url = "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz"; 5108 - sha512 = "7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA=="; 5109 - }; 5110 - }; 5111 - "lodash.keys-3.1.2" = { 5112 - name = "lodash.keys"; 5113 - packageName = "lodash.keys"; 5114 - version = "3.1.2"; 5115 - src = fetchurl { 5116 - url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz"; 5117 - sha512 = "CuBsapFjcubOGMn3VD+24HOAPxM79tH+V6ivJL3CHYjtrawauDJHUk//Yew9Hvc6e9rbCrURGk8z6PC+8WJBfQ=="; 5118 - }; 5119 - }; 5120 - "lodash.memoize-3.0.4" = { 5121 - name = "lodash.memoize"; 5122 - packageName = "lodash.memoize"; 5123 - version = "3.0.4"; 5124 - src = fetchurl { 5125 - url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz"; 5126 - sha512 = "eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A=="; 5127 - }; 5128 - }; 5129 - "lodash.memoize-4.1.2" = { 5130 - name = "lodash.memoize"; 5131 - packageName = "lodash.memoize"; 5132 - version = "4.1.2"; 5133 - src = fetchurl { 5134 - url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; 5135 - sha512 = "t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag=="; 5136 - }; 5137 - }; 5138 - "lodash.restparam-3.6.1" = { 5139 - name = "lodash.restparam"; 5140 - packageName = "lodash.restparam"; 5141 - version = "3.6.1"; 5142 - src = fetchurl { 5143 - url = "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz"; 5144 - sha512 = "L4/arjjuq4noiUJpt3yS6KIKDtJwNe2fIYgMqyYYKoeIfV1iEqvPwhCx23o+R9dzouGihDAPN1dTIRWa7zk8tw=="; 5145 - }; 5146 - }; 5147 - "lodash.template-3.6.2" = { 5148 - name = "lodash.template"; 5149 - packageName = "lodash.template"; 5150 - version = "3.6.2"; 5151 - src = fetchurl { 5152 - url = "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz"; 5153 - sha512 = "0B4Y53I0OgHUJkt+7RmlDFWKjVAI/YUpWNiL9GQz5ORDr4ttgfQGo+phBWKFLJbBdtOwgMuUkdOHOnPg45jKmQ=="; 5154 - }; 5155 - }; 5156 - "lodash.template-4.5.0" = { 5157 - name = "lodash.template"; 5158 - packageName = "lodash.template"; 5159 - version = "4.5.0"; 5160 - src = fetchurl { 5161 - url = "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz"; 5162 - sha512 = "84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A=="; 5163 - }; 5164 - }; 5165 - "lodash.templatesettings-3.1.1" = { 5166 - name = "lodash.templatesettings"; 5167 - packageName = "lodash.templatesettings"; 5168 - version = "3.1.1"; 5169 - src = fetchurl { 5170 - url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz"; 5171 - sha512 = "TcrlEr31tDYnWkHFWDCV3dHYroKEXpJZ2YJYvJdhN+y4AkWMDZ5I4I8XDtUKqSAyG81N7w+I1mFEJtcED+tGqQ=="; 5172 - }; 5173 - }; 5174 - "lodash.templatesettings-4.2.0" = { 5175 - name = "lodash.templatesettings"; 5176 - packageName = "lodash.templatesettings"; 5177 - version = "4.2.0"; 5178 - src = fetchurl { 5179 - url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz"; 5180 - sha512 = "stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ=="; 5181 - }; 5182 - }; 5183 - "lodash.uniq-4.5.0" = { 5184 - name = "lodash.uniq"; 5185 - packageName = "lodash.uniq"; 5186 - version = "4.5.0"; 5187 - src = fetchurl { 5188 - url = "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz"; 5189 - sha512 = "xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="; 5190 - }; 5191 - }; 5192 - "lower-case-1.1.4" = { 5193 - name = "lower-case"; 5194 - packageName = "lower-case"; 5195 - version = "1.1.4"; 5196 - src = fetchurl { 5197 - url = "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz"; 5198 - sha512 = "2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA=="; 5199 - }; 5200 - }; 5201 - "lru-cache-4.1.5" = { 5202 - name = "lru-cache"; 5203 - packageName = "lru-cache"; 5204 - version = "4.1.5"; 5205 - src = fetchurl { 5206 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"; 5207 - sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="; 5208 - }; 5209 - }; 5210 - "lru-queue-0.1.0" = { 5211 - name = "lru-queue"; 5212 - packageName = "lru-queue"; 5213 - version = "0.1.0"; 5214 - src = fetchurl { 5215 - url = "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz"; 5216 - sha512 = "BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ=="; 5217 - }; 5218 - }; 5219 - "make-error-1.3.6" = { 5220 - name = "make-error"; 5221 - packageName = "make-error"; 5222 - version = "1.3.6"; 5223 - src = fetchurl { 5224 - url = "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz"; 5225 - sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="; 5226 - }; 5227 - }; 5228 - "make-error-cause-1.2.2" = { 5229 - name = "make-error-cause"; 5230 - packageName = "make-error-cause"; 5231 - version = "1.2.2"; 5232 - src = fetchurl { 5233 - url = "https://registry.npmjs.org/make-error-cause/-/make-error-cause-1.2.2.tgz"; 5234 - sha512 = "4TO2Y3HkBnis4c0dxhAgD/jprySYLACf7nwN6V0HAHDx59g12WlRpUmFy1bRHamjGUEEBrEvCq6SUpsEE2lhUg=="; 5235 - }; 5236 - }; 5237 - "make-iterator-1.0.1" = { 5238 - name = "make-iterator"; 5239 - packageName = "make-iterator"; 5240 - version = "1.0.1"; 5241 - src = fetchurl { 5242 - url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz"; 5243 - sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw=="; 5244 - }; 5245 - }; 5246 - "map-cache-0.2.2" = { 5247 - name = "map-cache"; 5248 - packageName = "map-cache"; 5249 - version = "0.2.2"; 5250 - src = fetchurl { 5251 - url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"; 5252 - sha512 = "8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg=="; 5253 - }; 5254 - }; 5255 - "map-stream-0.0.7" = { 5256 - name = "map-stream"; 5257 - packageName = "map-stream"; 5258 - version = "0.0.7"; 5259 - src = fetchurl { 5260 - url = "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz"; 5261 - sha512 = "C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ=="; 5262 - }; 5263 - }; 5264 - "map-visit-1.0.0" = { 5265 - name = "map-visit"; 5266 - packageName = "map-visit"; 5267 - version = "1.0.0"; 5268 - src = fetchurl { 5269 - url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"; 5270 - sha512 = "4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w=="; 5271 - }; 5272 - }; 5273 - "matchdep-2.0.0" = { 5274 - name = "matchdep"; 5275 - packageName = "matchdep"; 5276 - version = "2.0.0"; 5277 - src = fetchurl { 5278 - url = "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz"; 5279 - sha512 = "LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA=="; 5280 - }; 5281 - }; 5282 - "math-expression-evaluator-1.4.0" = { 5283 - name = "math-expression-evaluator"; 5284 - packageName = "math-expression-evaluator"; 5285 - version = "1.4.0"; 5286 - src = fetchurl { 5287 - url = "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.4.0.tgz"; 5288 - sha512 = "4vRUvPyxdO8cWULGTh9dZWL2tZK6LDBvj+OGHBER7poH9Qdt7kXEoj20wiz4lQUbUXQZFjPbe5mVDo9nutizCw=="; 5289 - }; 5290 - }; 5291 - "md5.js-1.3.5" = { 5292 - name = "md5.js"; 5293 - packageName = "md5.js"; 5294 - version = "1.3.5"; 5295 - src = fetchurl { 5296 - url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz"; 5297 - sha512 = "xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg=="; 5298 - }; 5299 - }; 5300 - "memoizee-0.4.15" = { 5301 - name = "memoizee"; 5302 - packageName = "memoizee"; 5303 - version = "0.4.15"; 5304 - src = fetchurl { 5305 - url = "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz"; 5306 - sha512 = "UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ=="; 5307 - }; 5308 - }; 5309 - "merge-stream-2.0.0" = { 5310 - name = "merge-stream"; 5311 - packageName = "merge-stream"; 5312 - version = "2.0.0"; 5313 - src = fetchurl { 5314 - url = "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"; 5315 - sha512 = "abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="; 5316 - }; 5317 - }; 5318 - "merge2-1.4.1" = { 5319 - name = "merge2"; 5320 - packageName = "merge2"; 5321 - version = "1.4.1"; 5322 - src = fetchurl { 5323 - url = "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"; 5324 - sha512 = "8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="; 5325 - }; 5326 - }; 5327 - "micromatch-3.1.10" = { 5328 - name = "micromatch"; 5329 - packageName = "micromatch"; 5330 - version = "3.1.10"; 5331 - src = fetchurl { 5332 - url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz"; 5333 - sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="; 5334 - }; 5335 - }; 5336 - "micromatch-4.0.5" = { 5337 - name = "micromatch"; 5338 - packageName = "micromatch"; 5339 - version = "4.0.5"; 5340 - src = fetchurl { 5341 - url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"; 5342 - sha512 = "DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA=="; 5343 - }; 5344 - }; 5345 - "miller-rabin-4.0.1" = { 5346 - name = "miller-rabin"; 5347 - packageName = "miller-rabin"; 5348 - version = "4.0.1"; 5349 - src = fetchurl { 5350 - url = "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz"; 5351 - sha512 = "115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA=="; 5352 - }; 5353 - }; 5354 - "mime-1.4.1" = { 5355 - name = "mime"; 5356 - packageName = "mime"; 5357 - version = "1.4.1"; 5358 - src = fetchurl { 5359 - url = "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz"; 5360 - sha512 = "KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ=="; 5361 - }; 5362 - }; 5363 - "mime-db-1.52.0" = { 5364 - name = "mime-db"; 5365 - packageName = "mime-db"; 5366 - version = "1.52.0"; 5367 - src = fetchurl { 5368 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz"; 5369 - sha512 = "sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="; 5370 - }; 5371 - }; 5372 - "mime-types-2.1.35" = { 5373 - name = "mime-types"; 5374 - packageName = "mime-types"; 5375 - version = "2.1.35"; 5376 - src = fetchurl { 5377 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz"; 5378 - sha512 = "ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="; 5379 - }; 5380 - }; 5381 - "mimic-fn-1.2.0" = { 5382 - name = "mimic-fn"; 5383 - packageName = "mimic-fn"; 5384 - version = "1.2.0"; 5385 - src = fetchurl { 5386 - url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz"; 5387 - sha512 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="; 5388 - }; 5389 - }; 5390 - "minimalistic-assert-1.0.1" = { 5391 - name = "minimalistic-assert"; 5392 - packageName = "minimalistic-assert"; 5393 - version = "1.0.1"; 5394 - src = fetchurl { 5395 - url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"; 5396 - sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="; 5397 - }; 5398 - }; 5399 - "minimalistic-crypto-utils-1.0.1" = { 5400 - name = "minimalistic-crypto-utils"; 5401 - packageName = "minimalistic-crypto-utils"; 5402 - version = "1.0.1"; 5403 - src = fetchurl { 5404 - url = "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"; 5405 - sha512 = "JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg=="; 5406 - }; 5407 - }; 5408 - "minimatch-3.1.2" = { 5409 - name = "minimatch"; 5410 - packageName = "minimatch"; 5411 - version = "3.1.2"; 5412 - src = fetchurl { 5413 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"; 5414 - sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 5415 - }; 5416 - }; 5417 - "minimist-1.2.7" = { 5418 - name = "minimist"; 5419 - packageName = "minimist"; 5420 - version = "1.2.7"; 5421 - src = fetchurl { 5422 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"; 5423 - sha512 = "bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="; 5424 - }; 5425 - }; 5426 - "mitt-1.2.0" = { 5427 - name = "mitt"; 5428 - packageName = "mitt"; 5429 - version = "1.2.0"; 5430 - src = fetchurl { 5431 - url = "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz"; 5432 - sha512 = "r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw=="; 5433 - }; 5434 - }; 5435 - "mixin-deep-1.3.2" = { 5436 - name = "mixin-deep"; 5437 - packageName = "mixin-deep"; 5438 - version = "1.3.2"; 5439 - src = fetchurl { 5440 - url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz"; 5441 - sha512 = "WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA=="; 5442 - }; 5443 - }; 5444 - "mkdirp-0.5.6" = { 5445 - name = "mkdirp"; 5446 - packageName = "mkdirp"; 5447 - version = "0.5.6"; 5448 - src = fetchurl { 5449 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"; 5450 - sha512 = "FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="; 5451 - }; 5452 - }; 5453 - "mkdirp-classic-0.5.3" = { 5454 - name = "mkdirp-classic"; 5455 - packageName = "mkdirp-classic"; 5456 - version = "0.5.3"; 5457 - src = fetchurl { 5458 - url = "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz"; 5459 - sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="; 5460 - }; 5461 - }; 5462 - "modify-filename-1.1.0" = { 5463 - name = "modify-filename"; 5464 - packageName = "modify-filename"; 5465 - version = "1.1.0"; 5466 - src = fetchurl { 5467 - url = "https://registry.npmjs.org/modify-filename/-/modify-filename-1.1.0.tgz"; 5468 - sha512 = "EickqnKq3kVVaZisYuCxhtKbZjInCuwgwZWyAmRIp1NTMhri7r3380/uqwrUHfaDiPzLVTuoNy4whX66bxPVog=="; 5469 - }; 5470 - }; 5471 - "module-deps-6.2.3" = { 5472 - name = "module-deps"; 5473 - packageName = "module-deps"; 5474 - version = "6.2.3"; 5475 - src = fetchurl { 5476 - url = "https://registry.npmjs.org/module-deps/-/module-deps-6.2.3.tgz"; 5477 - sha512 = "fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA=="; 5478 - }; 5479 - }; 5480 - "moment-2.29.4" = { 5481 - name = "moment"; 5482 - packageName = "moment"; 5483 - version = "2.29.4"; 5484 - src = fetchurl { 5485 - url = "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz"; 5486 - sha512 = "5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w=="; 5487 - }; 5488 - }; 5489 - "morris.js-0.5.0" = { 5490 - name = "morris.js"; 5491 - packageName = "morris.js"; 5492 - version = "0.5.0"; 5493 - src = fetchurl { 5494 - url = "https://registry.npmjs.org/morris.js/-/morris.js-0.5.0.tgz"; 5495 - sha512 = "qNJUNEcJKzsQoE1OZNzJqmxsFVsuzgN72GUAcwfe6bBl7w381IzOYorRk0jsq2zEgCXC4DYnqQdYwzKjtvU1gg=="; 5496 - }; 5497 - }; 5498 - "ms-2.0.0" = { 5499 - name = "ms"; 5500 - packageName = "ms"; 5501 - version = "2.0.0"; 5502 - src = fetchurl { 5503 - url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; 5504 - sha512 = "Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="; 5505 - }; 5506 - }; 5507 - "ms-2.1.2" = { 5508 - name = "ms"; 5509 - packageName = "ms"; 5510 - version = "2.1.2"; 5511 - src = fetchurl { 5512 - url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; 5513 - sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 5514 - }; 5515 - }; 5516 - "multipipe-0.1.2" = { 5517 - name = "multipipe"; 5518 - packageName = "multipipe"; 5519 - version = "0.1.2"; 5520 - src = fetchurl { 5521 - url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz"; 5522 - sha512 = "7ZxrUybYv9NonoXgwoOqtStIu18D1c3eFZj27hqgf5kBrBF8Q+tE8V0MW8dKM5QLkQPh1JhhbKgHLY9kifov4Q=="; 5523 - }; 5524 - }; 5525 - "mute-stdout-1.0.1" = { 5526 - name = "mute-stdout"; 5527 - packageName = "mute-stdout"; 5528 - version = "1.0.1"; 5529 - src = fetchurl { 5530 - url = "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz"; 5531 - sha512 = "kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg=="; 5532 - }; 5533 - }; 5534 - "mute-stream-0.0.7" = { 5535 - name = "mute-stream"; 5536 - packageName = "mute-stream"; 5537 - version = "0.0.7"; 5538 - src = fetchurl { 5539 - url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz"; 5540 - sha512 = "r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ=="; 5541 - }; 5542 - }; 5543 - "nanoid-3.3.4" = { 5544 - name = "nanoid"; 5545 - packageName = "nanoid"; 5546 - version = "3.3.4"; 5547 - src = fetchurl { 5548 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz"; 5549 - sha512 = "MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="; 5550 - }; 5551 - }; 5552 - "nanomatch-1.2.13" = { 5553 - name = "nanomatch"; 5554 - packageName = "nanomatch"; 5555 - version = "1.2.13"; 5556 - src = fetchurl { 5557 - url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz"; 5558 - sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA=="; 5559 - }; 5560 - }; 5561 - "natural-compare-1.4.0" = { 5562 - name = "natural-compare"; 5563 - packageName = "natural-compare"; 5564 - version = "1.4.0"; 5565 - src = fetchurl { 5566 - url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"; 5567 - sha512 = "OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="; 5568 - }; 5569 - }; 5570 - "negotiator-0.6.3" = { 5571 - name = "negotiator"; 5572 - packageName = "negotiator"; 5573 - version = "0.6.3"; 5574 - src = fetchurl { 5575 - url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"; 5576 - sha512 = "+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="; 5577 - }; 5578 - }; 5579 - "next-tick-1.1.0" = { 5580 - name = "next-tick"; 5581 - packageName = "next-tick"; 5582 - version = "1.1.0"; 5583 - src = fetchurl { 5584 - url = "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz"; 5585 - sha512 = "CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ=="; 5586 - }; 5587 - }; 5588 - "nice-try-3.0.1" = { 5589 - name = "nice-try"; 5590 - packageName = "nice-try"; 5591 - version = "3.0.1"; 5592 - src = fetchurl { 5593 - url = "https://registry.npmjs.org/nice-try/-/nice-try-3.0.1.tgz"; 5594 - sha512 = "Fge6ClHO5v/z/tN31B2wlCPfRm289/ag1O2oi+EWNdAhxOZqGW1fWsisROvUuXaE7UEAYdd+upiAMvz57bK2MQ=="; 5595 - }; 5596 - }; 5597 - "no-case-2.3.2" = { 5598 - name = "no-case"; 5599 - packageName = "no-case"; 5600 - version = "2.3.2"; 5601 - src = fetchurl { 5602 - url = "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz"; 5603 - sha512 = "rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ=="; 5604 - }; 5605 - }; 5606 - "node-releases-2.0.6" = { 5607 - name = "node-releases"; 5608 - packageName = "node-releases"; 5609 - version = "2.0.6"; 5610 - src = fetchurl { 5611 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz"; 5612 - sha512 = "PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg=="; 5613 - }; 5614 - }; 5615 - "normalize-package-data-2.5.0" = { 5616 - name = "normalize-package-data"; 5617 - packageName = "normalize-package-data"; 5618 - version = "2.5.0"; 5619 - src = fetchurl { 5620 - url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"; 5621 - sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="; 5622 - }; 5623 - }; 5624 - "normalize-path-2.1.1" = { 5625 - name = "normalize-path"; 5626 - packageName = "normalize-path"; 5627 - version = "2.1.1"; 5628 - src = fetchurl { 5629 - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"; 5630 - sha512 = "3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w=="; 5631 - }; 5632 - }; 5633 - "normalize-path-3.0.0" = { 5634 - name = "normalize-path"; 5635 - packageName = "normalize-path"; 5636 - version = "3.0.0"; 5637 - src = fetchurl { 5638 - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"; 5639 - sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; 5640 - }; 5641 - }; 5642 - "normalize-range-0.1.2" = { 5643 - name = "normalize-range"; 5644 - packageName = "normalize-range"; 5645 - version = "0.1.2"; 5646 - src = fetchurl { 5647 - url = "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz"; 5648 - sha512 = "bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA=="; 5649 - }; 5650 - }; 5651 - "normalize-url-1.9.1" = { 5652 - name = "normalize-url"; 5653 - packageName = "normalize-url"; 5654 - version = "1.9.1"; 5655 - src = fetchurl { 5656 - url = "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz"; 5657 - sha512 = "A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ=="; 5658 - }; 5659 - }; 5660 - "now-and-later-2.0.1" = { 5661 - name = "now-and-later"; 5662 - packageName = "now-and-later"; 5663 - version = "2.0.1"; 5664 - src = fetchurl { 5665 - url = "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz"; 5666 - sha512 = "KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ=="; 5667 - }; 5668 - }; 5669 - "num2fraction-1.2.2" = { 5670 - name = "num2fraction"; 5671 - packageName = "num2fraction"; 5672 - version = "1.2.2"; 5673 - src = fetchurl { 5674 - url = "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz"; 5675 - sha512 = "Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg=="; 5676 - }; 5677 - }; 5678 - "number-is-nan-1.0.1" = { 5679 - name = "number-is-nan"; 5680 - packageName = "number-is-nan"; 5681 - version = "1.0.1"; 5682 - src = fetchurl { 5683 - url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"; 5684 - sha512 = "4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ=="; 5685 - }; 5686 - }; 5687 - "object-assign-3.0.0" = { 5688 - name = "object-assign"; 5689 - packageName = "object-assign"; 5690 - version = "3.0.0"; 5691 - src = fetchurl { 5692 - url = "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz"; 5693 - sha512 = "jHP15vXVGeVh1HuaA2wY6lxk+whK/x4KBG88VXeRma7CCun7iGD5qPc4eYykQ9sdQvg8jkwFKsSxHln2ybW3xQ=="; 5694 - }; 5695 - }; 5696 - "object-assign-4.1.1" = { 5697 - name = "object-assign"; 5698 - packageName = "object-assign"; 5699 - version = "4.1.1"; 5700 - src = fetchurl { 5701 - url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"; 5702 - sha512 = "rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="; 5703 - }; 5704 - }; 5705 - "object-copy-0.1.0" = { 5706 - name = "object-copy"; 5707 - packageName = "object-copy"; 5708 - version = "0.1.0"; 5709 - src = fetchurl { 5710 - url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"; 5711 - sha512 = "79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ=="; 5712 - }; 5713 - }; 5714 - "object-inspect-1.12.2" = { 5715 - name = "object-inspect"; 5716 - packageName = "object-inspect"; 5717 - version = "1.12.2"; 5718 - src = fetchurl { 5719 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"; 5720 - sha512 = "z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="; 5721 - }; 5722 - }; 5723 - "object-keys-1.1.1" = { 5724 - name = "object-keys"; 5725 - packageName = "object-keys"; 5726 - version = "1.1.1"; 5727 - src = fetchurl { 5728 - url = "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"; 5729 - sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; 5730 - }; 5731 - }; 5732 - "object-visit-1.0.1" = { 5733 - name = "object-visit"; 5734 - packageName = "object-visit"; 5735 - version = "1.0.1"; 5736 - src = fetchurl { 5737 - url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz"; 5738 - sha512 = "GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA=="; 5739 - }; 5740 - }; 5741 - "object.assign-4.1.4" = { 5742 - name = "object.assign"; 5743 - packageName = "object.assign"; 5744 - version = "4.1.4"; 5745 - src = fetchurl { 5746 - url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz"; 5747 - sha512 = "1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ=="; 5748 - }; 5749 - }; 5750 - "object.defaults-1.1.0" = { 5751 - name = "object.defaults"; 5752 - packageName = "object.defaults"; 5753 - version = "1.1.0"; 5754 - src = fetchurl { 5755 - url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz"; 5756 - sha512 = "c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA=="; 5757 - }; 5758 - }; 5759 - "object.map-1.0.1" = { 5760 - name = "object.map"; 5761 - packageName = "object.map"; 5762 - version = "1.0.1"; 5763 - src = fetchurl { 5764 - url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz"; 5765 - sha512 = "3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w=="; 5766 - }; 5767 - }; 5768 - "object.pick-1.3.0" = { 5769 - name = "object.pick"; 5770 - packageName = "object.pick"; 5771 - version = "1.3.0"; 5772 - src = fetchurl { 5773 - url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"; 5774 - sha512 = "tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ=="; 5775 - }; 5776 - }; 5777 - "object.reduce-1.0.1" = { 5778 - name = "object.reduce"; 5779 - packageName = "object.reduce"; 5780 - version = "1.0.1"; 5781 - src = fetchurl { 5782 - url = "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz"; 5783 - sha512 = "naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw=="; 5784 - }; 5785 - }; 5786 - "on-finished-2.3.0" = { 5787 - name = "on-finished"; 5788 - packageName = "on-finished"; 5789 - version = "2.3.0"; 5790 - src = fetchurl { 5791 - url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"; 5792 - sha512 = "ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww=="; 5793 - }; 5794 - }; 5795 - "once-1.4.0" = { 5796 - name = "once"; 5797 - packageName = "once"; 5798 - version = "1.4.0"; 5799 - src = fetchurl { 5800 - url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 5801 - sha512 = "lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="; 5802 - }; 5803 - }; 5804 - "onetime-2.0.1" = { 5805 - name = "onetime"; 5806 - packageName = "onetime"; 5807 - version = "2.0.1"; 5808 - src = fetchurl { 5809 - url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz"; 5810 - sha512 = "oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ=="; 5811 - }; 5812 - }; 5813 - "openurl-1.1.1" = { 5814 - name = "openurl"; 5815 - packageName = "openurl"; 5816 - version = "1.1.1"; 5817 - src = fetchurl { 5818 - url = "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz"; 5819 - sha512 = "d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA=="; 5820 - }; 5821 - }; 5822 - "opn-5.3.0" = { 5823 - name = "opn"; 5824 - packageName = "opn"; 5825 - version = "5.3.0"; 5826 - src = fetchurl { 5827 - url = "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz"; 5828 - sha512 = "bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g=="; 5829 - }; 5830 - }; 5831 - "optionator-0.8.3" = { 5832 - name = "optionator"; 5833 - packageName = "optionator"; 5834 - version = "0.8.3"; 5835 - src = fetchurl { 5836 - url = "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz"; 5837 - sha512 = "+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA=="; 5838 - }; 5839 - }; 5840 - "options-0.0.6" = { 5841 - name = "options"; 5842 - packageName = "options"; 5843 - version = "0.0.6"; 5844 - src = fetchurl { 5845 - url = "https://registry.npmjs.org/options/-/options-0.0.6.tgz"; 5846 - sha512 = "bOj3L1ypm++N+n7CEbbe473A414AB7z+amKYshRb//iuL3MpdDCLhPnw6aVTdKB9g5ZRVHIEp8eUln6L2NUStg=="; 5847 - }; 5848 - }; 5849 - "ordered-read-streams-1.0.1" = { 5850 - name = "ordered-read-streams"; 5851 - packageName = "ordered-read-streams"; 5852 - version = "1.0.1"; 5853 - src = fetchurl { 5854 - url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz"; 5855 - sha512 = "Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw=="; 5856 - }; 5857 - }; 5858 - "os-browserify-0.3.0" = { 5859 - name = "os-browserify"; 5860 - packageName = "os-browserify"; 5861 - version = "0.3.0"; 5862 - src = fetchurl { 5863 - url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz"; 5864 - sha512 = "gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A=="; 5865 - }; 5866 - }; 5867 - "os-locale-1.4.0" = { 5868 - name = "os-locale"; 5869 - packageName = "os-locale"; 5870 - version = "1.4.0"; 5871 - src = fetchurl { 5872 - url = "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz"; 5873 - sha512 = "PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g=="; 5874 - }; 5875 - }; 5876 - "os-tmpdir-1.0.2" = { 5877 - name = "os-tmpdir"; 5878 - packageName = "os-tmpdir"; 5879 - version = "1.0.2"; 5880 - src = fetchurl { 5881 - url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 5882 - sha512 = "D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g=="; 5883 - }; 5884 - }; 5885 - "p-map-4.0.0" = { 5886 - name = "p-map"; 5887 - packageName = "p-map"; 5888 - version = "4.0.0"; 5889 - src = fetchurl { 5890 - url = "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz"; 5891 - sha512 = "/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ=="; 5892 - }; 5893 - }; 5894 - "pace-0.0.4" = { 5895 - name = "pace"; 5896 - packageName = "pace"; 5897 - version = "0.0.4"; 5898 - src = fetchurl { 5899 - url = "https://registry.npmjs.org/pace/-/pace-0.0.4.tgz"; 5900 - sha512 = "B1tKMCrHnTmMxaZTzK5+4HRisYaeH8WHMjeg21dbBXB9eFnrZ5uw9+grRnLmLzTcL4R4A8v/XDCnP2Qf+37rPw=="; 5901 - }; 5902 - }; 5903 - "pako-1.0.11" = { 5904 - name = "pako"; 5905 - packageName = "pako"; 5906 - version = "1.0.11"; 5907 - src = fetchurl { 5908 - url = "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz"; 5909 - sha512 = "4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="; 5910 - }; 5911 - }; 5912 - "param-case-2.1.1" = { 5913 - name = "param-case"; 5914 - packageName = "param-case"; 5915 - version = "2.1.1"; 5916 - src = fetchurl { 5917 - url = "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz"; 5918 - sha512 = "eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w=="; 5919 - }; 5920 - }; 5921 - "parents-1.0.1" = { 5922 - name = "parents"; 5923 - packageName = "parents"; 5924 - version = "1.0.1"; 5925 - src = fetchurl { 5926 - url = "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz"; 5927 - sha512 = "mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg=="; 5928 - }; 5929 - }; 5930 - "parse-asn1-5.1.6" = { 5931 - name = "parse-asn1"; 5932 - packageName = "parse-asn1"; 5933 - version = "5.1.6"; 5934 - src = fetchurl { 5935 - url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz"; 5936 - sha512 = "RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw=="; 5937 - }; 5938 - }; 5939 - "parse-filepath-1.0.2" = { 5940 - name = "parse-filepath"; 5941 - packageName = "parse-filepath"; 5942 - version = "1.0.2"; 5943 - src = fetchurl { 5944 - url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz"; 5945 - sha512 = "FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q=="; 5946 - }; 5947 - }; 5948 - "parse-json-2.2.0" = { 5949 - name = "parse-json"; 5950 - packageName = "parse-json"; 5951 - version = "2.2.0"; 5952 - src = fetchurl { 5953 - url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"; 5954 - sha512 = "QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ=="; 5955 - }; 5956 - }; 5957 - "parse-node-version-1.0.1" = { 5958 - name = "parse-node-version"; 5959 - packageName = "parse-node-version"; 5960 - version = "1.0.1"; 5961 - src = fetchurl { 5962 - url = "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz"; 5963 - sha512 = "3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA=="; 5964 - }; 5965 - }; 5966 - "parse-passwd-1.0.0" = { 5967 - name = "parse-passwd"; 5968 - packageName = "parse-passwd"; 5969 - version = "1.0.0"; 5970 - src = fetchurl { 5971 - url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz"; 5972 - sha512 = "1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q=="; 5973 - }; 5974 - }; 5975 - "parseurl-1.3.3" = { 5976 - name = "parseurl"; 5977 - packageName = "parseurl"; 5978 - version = "1.3.3"; 5979 - src = fetchurl { 5980 - url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"; 5981 - sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="; 5982 - }; 5983 - }; 5984 - "pascalcase-0.1.1" = { 5985 - name = "pascalcase"; 5986 - packageName = "pascalcase"; 5987 - version = "0.1.1"; 5988 - src = fetchurl { 5989 - url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"; 5990 - sha512 = "XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw=="; 5991 - }; 5992 - }; 5993 - "path-browserify-1.0.1" = { 5994 - name = "path-browserify"; 5995 - packageName = "path-browserify"; 5996 - version = "1.0.1"; 5997 - src = fetchurl { 5998 - url = "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz"; 5999 - sha512 = "b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="; 6000 - }; 6001 - }; 6002 - "path-dirname-1.0.2" = { 6003 - name = "path-dirname"; 6004 - packageName = "path-dirname"; 6005 - version = "1.0.2"; 6006 - src = fetchurl { 6007 - url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz"; 6008 - sha512 = "ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q=="; 6009 - }; 6010 - }; 6011 - "path-exists-2.1.0" = { 6012 - name = "path-exists"; 6013 - packageName = "path-exists"; 6014 - version = "2.1.0"; 6015 - src = fetchurl { 6016 - url = "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz"; 6017 - sha512 = "yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ=="; 6018 - }; 6019 - }; 6020 - "path-is-absolute-1.0.1" = { 6021 - name = "path-is-absolute"; 6022 - packageName = "path-is-absolute"; 6023 - version = "1.0.1"; 6024 - src = fetchurl { 6025 - url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 6026 - sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="; 6027 - }; 6028 - }; 6029 - "path-is-inside-1.0.2" = { 6030 - name = "path-is-inside"; 6031 - packageName = "path-is-inside"; 6032 - version = "1.0.2"; 6033 - src = fetchurl { 6034 - url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz"; 6035 - sha512 = "DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w=="; 6036 - }; 6037 - }; 6038 - "path-parse-1.0.7" = { 6039 - name = "path-parse"; 6040 - packageName = "path-parse"; 6041 - version = "1.0.7"; 6042 - src = fetchurl { 6043 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"; 6044 - sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 6045 - }; 6046 - }; 6047 - "path-platform-0.11.15" = { 6048 - name = "path-platform"; 6049 - packageName = "path-platform"; 6050 - version = "0.11.15"; 6051 - src = fetchurl { 6052 - url = "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz"; 6053 - sha512 = "Y30dB6rab1A/nfEKsZxmr01nUotHX0c/ZiIAsCTatEe1CmS5Pm5He7fZ195bPT7RdquoaL8lLxFCMQi/bS7IJg=="; 6054 - }; 6055 - }; 6056 - "path-root-0.1.1" = { 6057 - name = "path-root"; 6058 - packageName = "path-root"; 6059 - version = "0.1.1"; 6060 - src = fetchurl { 6061 - url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz"; 6062 - sha512 = "QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg=="; 6063 - }; 6064 - }; 6065 - "path-root-regex-0.1.2" = { 6066 - name = "path-root-regex"; 6067 - packageName = "path-root-regex"; 6068 - version = "0.1.2"; 6069 - src = fetchurl { 6070 - url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz"; 6071 - sha512 = "4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ=="; 6072 - }; 6073 - }; 6074 - "path-type-1.1.0" = { 6075 - name = "path-type"; 6076 - packageName = "path-type"; 6077 - version = "1.1.0"; 6078 - src = fetchurl { 6079 - url = "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz"; 6080 - sha512 = "S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg=="; 6081 - }; 6082 - }; 6083 - "path-type-4.0.0" = { 6084 - name = "path-type"; 6085 - packageName = "path-type"; 6086 - version = "4.0.0"; 6087 - src = fetchurl { 6088 - url = "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"; 6089 - sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="; 6090 - }; 6091 - }; 6092 - "pause-stream-0.0.11" = { 6093 - name = "pause-stream"; 6094 - packageName = "pause-stream"; 6095 - version = "0.0.11"; 6096 - src = fetchurl { 6097 - url = "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz"; 6098 - sha512 = "e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A=="; 6099 - }; 6100 - }; 6101 - "pbkdf2-3.1.2" = { 6102 - name = "pbkdf2"; 6103 - packageName = "pbkdf2"; 6104 - version = "3.1.2"; 6105 - src = fetchurl { 6106 - url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz"; 6107 - sha512 = "iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA=="; 6108 - }; 6109 - }; 6110 - "picocolors-0.2.1" = { 6111 - name = "picocolors"; 6112 - packageName = "picocolors"; 6113 - version = "0.2.1"; 6114 - src = fetchurl { 6115 - url = "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz"; 6116 - sha512 = "cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA=="; 6117 - }; 6118 - }; 6119 - "picocolors-1.0.0" = { 6120 - name = "picocolors"; 6121 - packageName = "picocolors"; 6122 - version = "1.0.0"; 6123 - src = fetchurl { 6124 - url = "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"; 6125 - sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; 6126 - }; 6127 - }; 6128 - "picomatch-2.3.1" = { 6129 - name = "picomatch"; 6130 - packageName = "picomatch"; 6131 - version = "2.3.1"; 6132 - src = fetchurl { 6133 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"; 6134 - sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; 6135 - }; 6136 - }; 6137 - "pify-2.3.0" = { 6138 - name = "pify"; 6139 - packageName = "pify"; 6140 - version = "2.3.0"; 6141 - src = fetchurl { 6142 - url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"; 6143 - sha512 = "udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="; 6144 - }; 6145 - }; 6146 - "pinkie-2.0.4" = { 6147 - name = "pinkie"; 6148 - packageName = "pinkie"; 6149 - version = "2.0.4"; 6150 - src = fetchurl { 6151 - url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"; 6152 - sha512 = "MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg=="; 6153 - }; 6154 - }; 6155 - "pinkie-promise-2.0.1" = { 6156 - name = "pinkie-promise"; 6157 - packageName = "pinkie-promise"; 6158 - version = "2.0.1"; 6159 - src = fetchurl { 6160 - url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; 6161 - sha512 = "0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw=="; 6162 - }; 6163 - }; 6164 - "plugin-error-0.1.2" = { 6165 - name = "plugin-error"; 6166 - packageName = "plugin-error"; 6167 - version = "0.1.2"; 6168 - src = fetchurl { 6169 - url = "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz"; 6170 - sha512 = "WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw=="; 6171 - }; 6172 - }; 6173 - "plugin-error-1.0.1" = { 6174 - name = "plugin-error"; 6175 - packageName = "plugin-error"; 6176 - version = "1.0.1"; 6177 - src = fetchurl { 6178 - url = "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz"; 6179 - sha512 = "L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA=="; 6180 - }; 6181 - }; 6182 - "pluralize-7.0.0" = { 6183 - name = "pluralize"; 6184 - packageName = "pluralize"; 6185 - version = "7.0.0"; 6186 - src = fetchurl { 6187 - url = "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz"; 6188 - sha512 = "ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow=="; 6189 - }; 6190 - }; 6191 - "portscanner-2.2.0" = { 6192 - name = "portscanner"; 6193 - packageName = "portscanner"; 6194 - version = "2.2.0"; 6195 - src = fetchurl { 6196 - url = "https://registry.npmjs.org/portscanner/-/portscanner-2.2.0.tgz"; 6197 - sha512 = "IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw=="; 6198 - }; 6199 - }; 6200 - "posix-character-classes-0.1.1" = { 6201 - name = "posix-character-classes"; 6202 - packageName = "posix-character-classes"; 6203 - version = "0.1.1"; 6204 - src = fetchurl { 6205 - url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; 6206 - sha512 = "xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg=="; 6207 - }; 6208 - }; 6209 - "postcss-5.2.18" = { 6210 - name = "postcss"; 6211 - packageName = "postcss"; 6212 - version = "5.2.18"; 6213 - src = fetchurl { 6214 - url = "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz"; 6215 - sha512 = "zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg=="; 6216 - }; 6217 - }; 6218 - "postcss-7.0.39" = { 6219 - name = "postcss"; 6220 - packageName = "postcss"; 6221 - version = "7.0.39"; 6222 - src = fetchurl { 6223 - url = "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz"; 6224 - sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 6225 - }; 6226 - }; 6227 - "postcss-8.4.18" = { 6228 - name = "postcss"; 6229 - packageName = "postcss"; 6230 - version = "8.4.18"; 6231 - src = fetchurl { 6232 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz"; 6233 - sha512 = "Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA=="; 6234 - }; 6235 - }; 6236 - "postcss-calc-5.3.1" = { 6237 - name = "postcss-calc"; 6238 - packageName = "postcss-calc"; 6239 - version = "5.3.1"; 6240 - src = fetchurl { 6241 - url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz"; 6242 - sha512 = "iBcptYFq+QUh9gzP7ta2btw50o40s4uLI4UDVgd5yRAZtUDWc5APdl5yQDd2h/TyiZNbJrv0HiYhT102CMgN7Q=="; 6243 - }; 6244 - }; 6245 - "postcss-colormin-2.2.2" = { 6246 - name = "postcss-colormin"; 6247 - packageName = "postcss-colormin"; 6248 - version = "2.2.2"; 6249 - src = fetchurl { 6250 - url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz"; 6251 - sha512 = "XXitQe+jNNPf+vxvQXIQ1+pvdQKWKgkx8zlJNltcMEmLma1ypDRDQwlLt+6cP26fBreihNhZxohh1rcgCH2W5w=="; 6252 - }; 6253 - }; 6254 - "postcss-convert-values-2.6.1" = { 6255 - name = "postcss-convert-values"; 6256 - packageName = "postcss-convert-values"; 6257 - version = "2.6.1"; 6258 - src = fetchurl { 6259 - url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz"; 6260 - sha512 = "SE7mf25D3ORUEXpu3WUqQqy0nCbMuM5BEny+ULE/FXdS/0UMA58OdzwvzuHJRpIFlk1uojt16JhaEogtP6W2oA=="; 6261 - }; 6262 - }; 6263 - "postcss-discard-comments-2.0.4" = { 6264 - name = "postcss-discard-comments"; 6265 - packageName = "postcss-discard-comments"; 6266 - version = "2.0.4"; 6267 - src = fetchurl { 6268 - url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz"; 6269 - sha512 = "yGbyBDo5FxsImE90LD8C87vgnNlweQkODMkUZlDVM/CBgLr9C5RasLGJxxh9GjVOBeG8NcCMatoqI1pXg8JNXg=="; 6270 - }; 6271 - }; 6272 - "postcss-discard-duplicates-2.1.0" = { 6273 - name = "postcss-discard-duplicates"; 6274 - packageName = "postcss-discard-duplicates"; 6275 - version = "2.1.0"; 6276 - src = fetchurl { 6277 - url = "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz"; 6278 - sha512 = "+lk5W1uqO8qIUTET+UETgj9GWykLC3LOldr7EehmymV0Wu36kyoHimC4cILrAAYpHQ+fr4ypKcWcVNaGzm0reA=="; 6279 - }; 6280 - }; 6281 - "postcss-discard-empty-2.1.0" = { 6282 - name = "postcss-discard-empty"; 6283 - packageName = "postcss-discard-empty"; 6284 - version = "2.1.0"; 6285 - src = fetchurl { 6286 - url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz"; 6287 - sha512 = "IBFoyrwk52dhF+5z/ZAbzq5Jy7Wq0aLUsOn69JNS+7YeuyHaNzJwBIYE0QlUH/p5d3L+OON72Fsexyb7OK/3og=="; 6288 - }; 6289 - }; 6290 - "postcss-discard-overridden-0.1.1" = { 6291 - name = "postcss-discard-overridden"; 6292 - packageName = "postcss-discard-overridden"; 6293 - version = "0.1.1"; 6294 - src = fetchurl { 6295 - url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz"; 6296 - sha512 = "IyKoDL8QNObOiUc6eBw8kMxBHCfxUaERYTUe2QF8k7j/xiirayDzzkmlR6lMQjrAM1p1DDRTvWrS7Aa8lp6/uA=="; 6297 - }; 6298 - }; 6299 - "postcss-discard-unused-2.2.3" = { 6300 - name = "postcss-discard-unused"; 6301 - packageName = "postcss-discard-unused"; 6302 - version = "2.2.3"; 6303 - src = fetchurl { 6304 - url = "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz"; 6305 - sha512 = "nCbFNfqYAbKCw9J6PSJubpN9asnrwVLkRDFc4KCwyUEdOtM5XDE/eTW3OpqHrYY1L4fZxgan7LLRAAYYBzwzrg=="; 6306 - }; 6307 - }; 6308 - "postcss-filter-plugins-2.0.3" = { 6309 - name = "postcss-filter-plugins"; 6310 - packageName = "postcss-filter-plugins"; 6311 - version = "2.0.3"; 6312 - src = fetchurl { 6313 - url = "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz"; 6314 - sha512 = "T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ=="; 6315 - }; 6316 - }; 6317 - "postcss-merge-idents-2.1.7" = { 6318 - name = "postcss-merge-idents"; 6319 - packageName = "postcss-merge-idents"; 6320 - version = "2.1.7"; 6321 - src = fetchurl { 6322 - url = "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz"; 6323 - sha512 = "9DHmfCZ7/hNHhIKnNkz4CU0ejtGen5BbTRJc13Z2uHfCedeCUsK2WEQoAJRBL+phs68iWK6Qf8Jze71anuysWA=="; 6324 - }; 6325 - }; 6326 - "postcss-merge-longhand-2.0.2" = { 6327 - name = "postcss-merge-longhand"; 6328 - packageName = "postcss-merge-longhand"; 6329 - version = "2.0.2"; 6330 - src = fetchurl { 6331 - url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz"; 6332 - sha512 = "ma7YvxjdLQdifnc1HFsW/AW6fVfubGyR+X4bE3FOSdBVMY9bZjKVdklHT+odknKBB7FSCfKIHC3yHK7RUAqRPg=="; 6333 - }; 6334 - }; 6335 - "postcss-merge-rules-2.1.2" = { 6336 - name = "postcss-merge-rules"; 6337 - packageName = "postcss-merge-rules"; 6338 - version = "2.1.2"; 6339 - src = fetchurl { 6340 - url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz"; 6341 - sha512 = "Wgg2FS6W3AYBl+5L9poL6ZUISi5YzL+sDCJfM7zNw/Q1qsyVQXXZ2cbVui6mu2cYJpt1hOKCGj1xA4mq/obz/Q=="; 6342 - }; 6343 - }; 6344 - "postcss-message-helpers-2.0.0" = { 6345 - name = "postcss-message-helpers"; 6346 - packageName = "postcss-message-helpers"; 6347 - version = "2.0.0"; 6348 - src = fetchurl { 6349 - url = "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz"; 6350 - sha512 = "tPLZzVAiIJp46TBbpXtrUAKqedXSyW5xDEo1sikrfEfnTs+49SBZR/xDdqCiJvSSbtr615xDsaMF3RrxS2jZlA=="; 6351 - }; 6352 - }; 6353 - "postcss-minify-font-values-1.0.5" = { 6354 - name = "postcss-minify-font-values"; 6355 - packageName = "postcss-minify-font-values"; 6356 - version = "1.0.5"; 6357 - src = fetchurl { 6358 - url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz"; 6359 - sha512 = "vFSPzrJhNe6/8McOLU13XIsERohBJiIFFuC1PolgajOZdRWqRgKITP/A4Z/n4GQhEmtbxmO9NDw3QLaFfE1dFQ=="; 6360 - }; 6361 - }; 6362 - "postcss-minify-gradients-1.0.5" = { 6363 - name = "postcss-minify-gradients"; 6364 - packageName = "postcss-minify-gradients"; 6365 - version = "1.0.5"; 6366 - src = fetchurl { 6367 - url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz"; 6368 - sha512 = "DZhT0OE+RbVqVyGsTIKx84rU/5cury1jmwPa19bViqYPQu499ZU831yMzzsyC8EhiZVd73+h5Z9xb/DdaBpw7Q=="; 6369 - }; 6370 - }; 6371 - "postcss-minify-params-1.2.2" = { 6372 - name = "postcss-minify-params"; 6373 - packageName = "postcss-minify-params"; 6374 - version = "1.2.2"; 6375 - src = fetchurl { 6376 - url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz"; 6377 - sha512 = "hhJdMVgP8vasrHbkKAk+ab28vEmPYgyuDzRl31V3BEB3QOR3L5TTIVEWLDNnZZ3+fiTi9d6Ker8GM8S1h8p2Ow=="; 6378 - }; 6379 - }; 6380 - "postcss-minify-selectors-2.1.1" = { 6381 - name = "postcss-minify-selectors"; 6382 - packageName = "postcss-minify-selectors"; 6383 - version = "2.1.1"; 6384 - src = fetchurl { 6385 - url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz"; 6386 - sha512 = "e13vxPBSo3ZaPne43KVgM+UETkx3Bs4/Qvm6yXI9HQpQp4nyb7HZ0gKpkF+Wn2x+/dbQ+swNpCdZSbMOT7+TIA=="; 6387 - }; 6388 - }; 6389 - "postcss-normalize-charset-1.1.1" = { 6390 - name = "postcss-normalize-charset"; 6391 - packageName = "postcss-normalize-charset"; 6392 - version = "1.1.1"; 6393 - src = fetchurl { 6394 - url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz"; 6395 - sha512 = "RKgjEks83l8w4yEhztOwNZ+nLSrJ+NvPNhpS+mVDzoaiRHZQVoG7NF2TP5qjwnaN9YswUhj6m1E0S0Z+WDCgEQ=="; 6396 - }; 6397 - }; 6398 - "postcss-normalize-url-3.0.8" = { 6399 - name = "postcss-normalize-url"; 6400 - packageName = "postcss-normalize-url"; 6401 - version = "3.0.8"; 6402 - src = fetchurl { 6403 - url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz"; 6404 - sha512 = "WqtWG6GV2nELsQEFES0RzfL2ebVwmGl/M8VmMbshKto/UClBo+mznX8Zi4/hkThdqx7ijwv+O8HWPdpK7nH/Ig=="; 6405 - }; 6406 - }; 6407 - "postcss-ordered-values-2.2.3" = { 6408 - name = "postcss-ordered-values"; 6409 - packageName = "postcss-ordered-values"; 6410 - version = "2.2.3"; 6411 - src = fetchurl { 6412 - url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz"; 6413 - sha512 = "5RB1IUZhkxDCfa5fx/ogp/A82mtq+r7USqS+7zt0e428HJ7+BHCxyeY39ClmkkUtxdOd3mk8gD6d9bjH2BECMg=="; 6414 - }; 6415 - }; 6416 - "postcss-reduce-idents-2.4.0" = { 6417 - name = "postcss-reduce-idents"; 6418 - packageName = "postcss-reduce-idents"; 6419 - version = "2.4.0"; 6420 - src = fetchurl { 6421 - url = "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz"; 6422 - sha512 = "0+Ow9e8JLtffjumJJFPqvN4qAvokVbdQPnijUDSOX8tfTwrILLP4ETvrZcXZxAtpFLh/U0c+q8oRMJLr1Kiu4w=="; 6423 - }; 6424 - }; 6425 - "postcss-reduce-initial-1.0.1" = { 6426 - name = "postcss-reduce-initial"; 6427 - packageName = "postcss-reduce-initial"; 6428 - version = "1.0.1"; 6429 - src = fetchurl { 6430 - url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz"; 6431 - sha512 = "jJFrV1vWOPCQsIVitawGesRgMgunbclERQ/IRGW7r93uHrVzNQQmHQ7znsOIjJPZ4yWMzs5A8NFhp3AkPHPbDA=="; 6432 - }; 6433 - }; 6434 - "postcss-reduce-transforms-1.0.4" = { 6435 - name = "postcss-reduce-transforms"; 6436 - packageName = "postcss-reduce-transforms"; 6437 - version = "1.0.4"; 6438 - src = fetchurl { 6439 - url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz"; 6440 - sha512 = "lGgRqnSuAR5i5uUg1TA33r9UngfTadWxOyL2qx1KuPoCQzfmtaHjp9PuwX7yVyRxG3BWBzeFUaS5uV9eVgnEgQ=="; 6441 - }; 6442 - }; 6443 - "postcss-selector-parser-2.2.3" = { 6444 - name = "postcss-selector-parser"; 6445 - packageName = "postcss-selector-parser"; 6446 - version = "2.2.3"; 6447 - src = fetchurl { 6448 - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz"; 6449 - sha512 = "3pqyakeGhrO0BQ5+/tGTfvi5IAUAhHRayGK8WFSu06aEv2BmHoXw/Mhb+w7VY5HERIuC+QoUI7wgrCcq2hqCVA=="; 6450 - }; 6451 - }; 6452 - "postcss-svgo-2.1.6" = { 6453 - name = "postcss-svgo"; 6454 - packageName = "postcss-svgo"; 6455 - version = "2.1.6"; 6456 - src = fetchurl { 6457 - url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz"; 6458 - sha512 = "y5AdQdgBoF4rbpdbeWAJuxE953g/ylRfVNp6mvAi61VCN/Y25Tu9p5mh3CyI42WbTRIiwR9a1GdFtmDnNPeskQ=="; 6459 - }; 6460 - }; 6461 - "postcss-unique-selectors-2.0.2" = { 6462 - name = "postcss-unique-selectors"; 6463 - packageName = "postcss-unique-selectors"; 6464 - version = "2.0.2"; 6465 - src = fetchurl { 6466 - url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz"; 6467 - sha512 = "WZX8r1M0+IyljoJOJleg3kYm10hxNYF9scqAT7v/xeSX1IdehutOM85SNO0gP9K+bgs86XERr7Ud5u3ch4+D8g=="; 6468 - }; 6469 - }; 6470 - "postcss-value-parser-3.3.1" = { 6471 - name = "postcss-value-parser"; 6472 - packageName = "postcss-value-parser"; 6473 - version = "3.3.1"; 6474 - src = fetchurl { 6475 - url = "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz"; 6476 - sha512 = "pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ=="; 6477 - }; 6478 - }; 6479 - "postcss-value-parser-4.2.0" = { 6480 - name = "postcss-value-parser"; 6481 - packageName = "postcss-value-parser"; 6482 - version = "4.2.0"; 6483 - src = fetchurl { 6484 - url = "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"; 6485 - sha512 = "1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="; 6486 - }; 6487 - }; 6488 - "postcss-zindex-2.2.0" = { 6489 - name = "postcss-zindex"; 6490 - packageName = "postcss-zindex"; 6491 - version = "2.2.0"; 6492 - src = fetchurl { 6493 - url = "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz"; 6494 - sha512 = "uhRZ2hRgj0lorxm9cr62B01YzpUe63h0RXMXQ4gWW3oa2rpJh+FJAiEAytaFCPU/VgaBS+uW2SJ1XKyDNz1h4w=="; 6495 - }; 6496 - }; 6497 - "prelude-ls-1.1.2" = { 6498 - name = "prelude-ls"; 6499 - packageName = "prelude-ls"; 6500 - version = "1.1.2"; 6501 - src = fetchurl { 6502 - url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz"; 6503 - sha512 = "ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w=="; 6504 - }; 6505 - }; 6506 - "prepend-http-1.0.4" = { 6507 - name = "prepend-http"; 6508 - packageName = "prepend-http"; 6509 - version = "1.0.4"; 6510 - src = fetchurl { 6511 - url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz"; 6512 - sha512 = "PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg=="; 6513 - }; 6514 - }; 6515 - "pretty-bytes-5.6.0" = { 6516 - name = "pretty-bytes"; 6517 - packageName = "pretty-bytes"; 6518 - version = "5.6.0"; 6519 - src = fetchurl { 6520 - url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz"; 6521 - sha512 = "FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg=="; 6522 - }; 6523 - }; 6524 - "pretty-hrtime-1.0.3" = { 6525 - name = "pretty-hrtime"; 6526 - packageName = "pretty-hrtime"; 6527 - version = "1.0.3"; 6528 - src = fetchurl { 6529 - url = "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz"; 6530 - sha512 = "66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A=="; 6531 - }; 6532 - }; 6533 - "process-0.11.10" = { 6534 - name = "process"; 6535 - packageName = "process"; 6536 - version = "0.11.10"; 6537 - src = fetchurl { 6538 - url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz"; 6539 - sha512 = "cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="; 6540 - }; 6541 - }; 6542 - "process-nextick-args-2.0.1" = { 6543 - name = "process-nextick-args"; 6544 - packageName = "process-nextick-args"; 6545 - version = "2.0.1"; 6546 - src = fetchurl { 6547 - url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 6548 - sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 6549 - }; 6550 - }; 6551 - "progress-2.0.3" = { 6552 - name = "progress"; 6553 - packageName = "progress"; 6554 - version = "2.0.3"; 6555 - src = fetchurl { 6556 - url = "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"; 6557 - sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="; 6558 - }; 6559 - }; 6560 - "pseudomap-1.0.2" = { 6561 - name = "pseudomap"; 6562 - packageName = "pseudomap"; 6563 - version = "1.0.2"; 6564 - src = fetchurl { 6565 - url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; 6566 - sha512 = "b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ=="; 6567 - }; 6568 - }; 6569 - "public-encrypt-4.0.3" = { 6570 - name = "public-encrypt"; 6571 - packageName = "public-encrypt"; 6572 - version = "4.0.3"; 6573 - src = fetchurl { 6574 - url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz"; 6575 - sha512 = "zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q=="; 6576 - }; 6577 - }; 6578 - "pump-2.0.1" = { 6579 - name = "pump"; 6580 - packageName = "pump"; 6581 - version = "2.0.1"; 6582 - src = fetchurl { 6583 - url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz"; 6584 - sha512 = "ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA=="; 6585 - }; 6586 - }; 6587 - "pumpify-1.5.1" = { 6588 - name = "pumpify"; 6589 - packageName = "pumpify"; 6590 - version = "1.5.1"; 6591 - src = fetchurl { 6592 - url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz"; 6593 - sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ=="; 6594 - }; 6595 - }; 6596 - "punycode-1.3.2" = { 6597 - name = "punycode"; 6598 - packageName = "punycode"; 6599 - version = "1.3.2"; 6600 - src = fetchurl { 6601 - url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"; 6602 - sha512 = "RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw=="; 6603 - }; 6604 - }; 6605 - "punycode-1.4.1" = { 6606 - name = "punycode"; 6607 - packageName = "punycode"; 6608 - version = "1.4.1"; 6609 - src = fetchurl { 6610 - url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"; 6611 - sha512 = "jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ=="; 6612 - }; 6613 - }; 6614 - "q-1.5.1" = { 6615 - name = "q"; 6616 - packageName = "q"; 6617 - version = "1.5.1"; 6618 - src = fetchurl { 6619 - url = "https://registry.npmjs.org/q/-/q-1.5.1.tgz"; 6620 - sha512 = "kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw=="; 6621 - }; 6622 - }; 6623 - "qs-6.2.3" = { 6624 - name = "qs"; 6625 - packageName = "qs"; 6626 - version = "6.2.3"; 6627 - src = fetchurl { 6628 - url = "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz"; 6629 - sha512 = "AY4g8t3LMboim0t6XWFdz6J5OuJ1ZNYu54SXihS/OMpgyCqYmcAJnWqkNSOjSjWmq3xxy+GF9uWQI2lI/7tKIA=="; 6630 - }; 6631 - }; 6632 - "query-string-4.3.4" = { 6633 - name = "query-string"; 6634 - packageName = "query-string"; 6635 - version = "4.3.4"; 6636 - src = fetchurl { 6637 - url = "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz"; 6638 - sha512 = "O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q=="; 6639 - }; 6640 - }; 6641 - "querystring-0.2.0" = { 6642 - name = "querystring"; 6643 - packageName = "querystring"; 6644 - version = "0.2.0"; 6645 - src = fetchurl { 6646 - url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"; 6647 - sha512 = "X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g=="; 6648 - }; 6649 - }; 6650 - "querystring-es3-0.2.1" = { 6651 - name = "querystring-es3"; 6652 - packageName = "querystring-es3"; 6653 - version = "0.2.1"; 6654 - src = fetchurl { 6655 - url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz"; 6656 - sha512 = "773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA=="; 6657 - }; 6658 - }; 6659 - "queue-microtask-1.2.3" = { 6660 - name = "queue-microtask"; 6661 - packageName = "queue-microtask"; 6662 - version = "1.2.3"; 6663 - src = fetchurl { 6664 - url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"; 6665 - sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 6666 - }; 6667 - }; 6668 - "randombytes-2.1.0" = { 6669 - name = "randombytes"; 6670 - packageName = "randombytes"; 6671 - version = "2.1.0"; 6672 - src = fetchurl { 6673 - url = "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"; 6674 - sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="; 6675 - }; 6676 - }; 6677 - "randomfill-1.0.4" = { 6678 - name = "randomfill"; 6679 - packageName = "randomfill"; 6680 - version = "1.0.4"; 6681 - src = fetchurl { 6682 - url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz"; 6683 - sha512 = "87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw=="; 6684 - }; 6685 - }; 6686 - "range-parser-1.2.1" = { 6687 - name = "range-parser"; 6688 - packageName = "range-parser"; 6689 - version = "1.2.1"; 6690 - src = fetchurl { 6691 - url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"; 6692 - sha512 = "Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="; 6693 - }; 6694 - }; 6695 - "raphael-2.3.0" = { 6696 - name = "raphael"; 6697 - packageName = "raphael"; 6698 - version = "2.3.0"; 6699 - src = fetchurl { 6700 - url = "https://registry.npmjs.org/raphael/-/raphael-2.3.0.tgz"; 6701 - sha512 = "w2yIenZAQnp257XUWGni4bLMVxpUpcIl7qgxEgDIXtmSypYtlNxfXWpOBxs7LBTps5sDwhRnrToJrMUrivqNTQ=="; 6702 - }; 6703 - }; 6704 - "raw-body-2.5.1" = { 6705 - name = "raw-body"; 6706 - packageName = "raw-body"; 6707 - version = "2.5.1"; 6708 - src = fetchurl { 6709 - url = "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz"; 6710 - sha512 = "qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig=="; 6711 - }; 6712 - }; 6713 - "read-only-stream-2.0.0" = { 6714 - name = "read-only-stream"; 6715 - packageName = "read-only-stream"; 6716 - version = "2.0.0"; 6717 - src = fetchurl { 6718 - url = "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz"; 6719 - sha512 = "3ALe0bjBVZtkdWKIcThYpQCLbBMd/+Tbh2CDSrAIDO3UsZ4Xs+tnyjv2MjCOMMgBG+AsUOeuP1cgtY1INISc8w=="; 6720 - }; 6721 - }; 6722 - "read-pkg-1.1.0" = { 6723 - name = "read-pkg"; 6724 - packageName = "read-pkg"; 6725 - version = "1.1.0"; 6726 - src = fetchurl { 6727 - url = "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz"; 6728 - sha512 = "7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ=="; 6729 - }; 6730 - }; 6731 - "read-pkg-up-1.0.1" = { 6732 - name = "read-pkg-up"; 6733 - packageName = "read-pkg-up"; 6734 - version = "1.0.1"; 6735 - src = fetchurl { 6736 - url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz"; 6737 - sha512 = "WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A=="; 6738 - }; 6739 - }; 6740 - "readable-stream-1.0.34" = { 6741 - name = "readable-stream"; 6742 - packageName = "readable-stream"; 6743 - version = "1.0.34"; 6744 - src = fetchurl { 6745 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz"; 6746 - sha512 = "ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg=="; 6747 - }; 6748 - }; 6749 - "readable-stream-1.1.14" = { 6750 - name = "readable-stream"; 6751 - packageName = "readable-stream"; 6752 - version = "1.1.14"; 6753 - src = fetchurl { 6754 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"; 6755 - sha512 = "+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ=="; 6756 - }; 6757 - }; 6758 - "readable-stream-2.3.7" = { 6759 - name = "readable-stream"; 6760 - packageName = "readable-stream"; 6761 - version = "2.3.7"; 6762 - src = fetchurl { 6763 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; 6764 - sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 6765 - }; 6766 - }; 6767 - "readable-stream-3.6.0" = { 6768 - name = "readable-stream"; 6769 - packageName = "readable-stream"; 6770 - version = "3.6.0"; 6771 - src = fetchurl { 6772 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; 6773 - sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 6774 - }; 6775 - }; 6776 - "readdirp-2.2.1" = { 6777 - name = "readdirp"; 6778 - packageName = "readdirp"; 6779 - version = "2.2.1"; 6780 - src = fetchurl { 6781 - url = "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz"; 6782 - sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; 6783 - }; 6784 - }; 6785 - "readdirp-3.6.0" = { 6786 - name = "readdirp"; 6787 - packageName = "readdirp"; 6788 - version = "3.6.0"; 6789 - src = fetchurl { 6790 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"; 6791 - sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; 6792 - }; 6793 - }; 6794 - "rechoir-0.6.2" = { 6795 - name = "rechoir"; 6796 - packageName = "rechoir"; 6797 - version = "0.6.2"; 6798 - src = fetchurl { 6799 - url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz"; 6800 - sha512 = "HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw=="; 6801 - }; 6802 - }; 6803 - "reduce-css-calc-1.3.0" = { 6804 - name = "reduce-css-calc"; 6805 - packageName = "reduce-css-calc"; 6806 - version = "1.3.0"; 6807 - src = fetchurl { 6808 - url = "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz"; 6809 - sha512 = "0dVfwYVOlf/LBA2ec4OwQ6p3X9mYxn/wOl2xTcLwjnPYrkgEfPx3VI4eGCH3rQLlPISG5v9I9bkZosKsNRTRKA=="; 6810 - }; 6811 - }; 6812 - "reduce-function-call-1.0.3" = { 6813 - name = "reduce-function-call"; 6814 - packageName = "reduce-function-call"; 6815 - version = "1.0.3"; 6816 - src = fetchurl { 6817 - url = "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.3.tgz"; 6818 - sha512 = "Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ=="; 6819 - }; 6820 - }; 6821 - "regex-not-1.0.2" = { 6822 - name = "regex-not"; 6823 - packageName = "regex-not"; 6824 - version = "1.0.2"; 6825 - src = fetchurl { 6826 - url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz"; 6827 - sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; 6828 - }; 6829 - }; 6830 - "regexp.prototype.flags-1.4.3" = { 6831 - name = "regexp.prototype.flags"; 6832 - packageName = "regexp.prototype.flags"; 6833 - version = "1.4.3"; 6834 - src = fetchurl { 6835 - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"; 6836 - sha512 = "fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="; 6837 - }; 6838 - }; 6839 - "regexpp-1.1.0" = { 6840 - name = "regexpp"; 6841 - packageName = "regexpp"; 6842 - version = "1.1.0"; 6843 - src = fetchurl { 6844 - url = "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz"; 6845 - sha512 = "LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw=="; 6846 - }; 6847 - }; 6848 - "relateurl-0.2.7" = { 6849 - name = "relateurl"; 6850 - packageName = "relateurl"; 6851 - version = "0.2.7"; 6852 - src = fetchurl { 6853 - url = "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz"; 6854 - sha512 = "G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog=="; 6855 - }; 6856 - }; 6857 - "remove-bom-buffer-3.0.0" = { 6858 - name = "remove-bom-buffer"; 6859 - packageName = "remove-bom-buffer"; 6860 - version = "3.0.0"; 6861 - src = fetchurl { 6862 - url = "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz"; 6863 - sha512 = "8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ=="; 6864 - }; 6865 - }; 6866 - "remove-bom-stream-1.2.0" = { 6867 - name = "remove-bom-stream"; 6868 - packageName = "remove-bom-stream"; 6869 - version = "1.2.0"; 6870 - src = fetchurl { 6871 - url = "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz"; 6872 - sha512 = "wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA=="; 6873 - }; 6874 - }; 6875 - "remove-trailing-separator-1.1.0" = { 6876 - name = "remove-trailing-separator"; 6877 - packageName = "remove-trailing-separator"; 6878 - version = "1.1.0"; 6879 - src = fetchurl { 6880 - url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; 6881 - sha512 = "/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw=="; 6882 - }; 6883 - }; 6884 - "repeat-element-1.1.4" = { 6885 - name = "repeat-element"; 6886 - packageName = "repeat-element"; 6887 - version = "1.1.4"; 6888 - src = fetchurl { 6889 - url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz"; 6890 - sha512 = "LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ=="; 6891 - }; 6892 - }; 6893 - "repeat-string-1.6.1" = { 6894 - name = "repeat-string"; 6895 - packageName = "repeat-string"; 6896 - version = "1.6.1"; 6897 - src = fetchurl { 6898 - url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"; 6899 - sha512 = "PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w=="; 6900 - }; 6901 - }; 6902 - "replace-ext-0.0.1" = { 6903 - name = "replace-ext"; 6904 - packageName = "replace-ext"; 6905 - version = "0.0.1"; 6906 - src = fetchurl { 6907 - url = "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz"; 6908 - sha512 = "AFBWBy9EVRTa/LhEcG8QDP3FvpwZqmvN2QFDuJswFeaVhWnZMp8q3E6Zd90SR04PlIwfGdyVjNyLPyen/ek5CQ=="; 6909 - }; 6910 - }; 6911 - "replace-ext-1.0.1" = { 6912 - name = "replace-ext"; 6913 - packageName = "replace-ext"; 6914 - version = "1.0.1"; 6915 - src = fetchurl { 6916 - url = "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz"; 6917 - sha512 = "yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw=="; 6918 - }; 6919 - }; 6920 - "replace-homedir-1.0.0" = { 6921 - name = "replace-homedir"; 6922 - packageName = "replace-homedir"; 6923 - version = "1.0.0"; 6924 - src = fetchurl { 6925 - url = "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz"; 6926 - sha512 = "CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg=="; 6927 - }; 6928 - }; 6929 - "replacestream-4.0.3" = { 6930 - name = "replacestream"; 6931 - packageName = "replacestream"; 6932 - version = "4.0.3"; 6933 - src = fetchurl { 6934 - url = "https://registry.npmjs.org/replacestream/-/replacestream-4.0.3.tgz"; 6935 - sha512 = "AC0FiLS352pBBiZhd4VXB1Ab/lh0lEgpP+GGvZqbQh8a5cmXVoTe5EX/YeTFArnp4SRGTHh1qCHu9lGs1qG8sA=="; 6936 - }; 6937 - }; 6938 - "require-directory-2.1.1" = { 6939 - name = "require-directory"; 6940 - packageName = "require-directory"; 6941 - version = "2.1.1"; 6942 - src = fetchurl { 6943 - url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; 6944 - sha512 = "fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="; 6945 - }; 6946 - }; 6947 - "require-main-filename-1.0.1" = { 6948 - name = "require-main-filename"; 6949 - packageName = "require-main-filename"; 6950 - version = "1.0.1"; 6951 - src = fetchurl { 6952 - url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz"; 6953 - sha512 = "IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug=="; 6954 - }; 6955 - }; 6956 - "require-uncached-1.0.3" = { 6957 - name = "require-uncached"; 6958 - packageName = "require-uncached"; 6959 - version = "1.0.3"; 6960 - src = fetchurl { 6961 - url = "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz"; 6962 - sha512 = "Xct+41K3twrbBHdxAgMoOS+cNcoqIjfM2/VxBF4LL2hVph7YsF8VSKyQ3BDFZwEVbok9yeDl2le/qo0S77WG2w=="; 6963 - }; 6964 - }; 6965 - "requires-port-1.0.0" = { 6966 - name = "requires-port"; 6967 - packageName = "requires-port"; 6968 - version = "1.0.0"; 6969 - src = fetchurl { 6970 - url = "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"; 6971 - sha512 = "KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="; 6972 - }; 6973 - }; 6974 - "resolve-1.22.1" = { 6975 - name = "resolve"; 6976 - packageName = "resolve"; 6977 - version = "1.22.1"; 6978 - src = fetchurl { 6979 - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"; 6980 - sha512 = "nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="; 6981 - }; 6982 - }; 6983 - "resolve-dir-1.0.1" = { 6984 - name = "resolve-dir"; 6985 - packageName = "resolve-dir"; 6986 - version = "1.0.1"; 6987 - src = fetchurl { 6988 - url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz"; 6989 - sha512 = "R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg=="; 6990 - }; 6991 - }; 6992 - "resolve-from-1.0.1" = { 6993 - name = "resolve-from"; 6994 - packageName = "resolve-from"; 6995 - version = "1.0.1"; 6996 - src = fetchurl { 6997 - url = "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz"; 6998 - sha512 = "kT10v4dhrlLNcnO084hEjvXCI1wUG9qZLoz2RogxqDQQYy7IxjI/iMUkOtQTNEh6rzHxvdQWHsJyel1pKOVCxg=="; 6999 - }; 7000 - }; 7001 - "resolve-options-1.1.0" = { 7002 - name = "resolve-options"; 7003 - packageName = "resolve-options"; 7004 - version = "1.1.0"; 7005 - src = fetchurl { 7006 - url = "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz"; 7007 - sha512 = "NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A=="; 7008 - }; 7009 - }; 7010 - "resolve-url-0.2.1" = { 7011 - name = "resolve-url"; 7012 - packageName = "resolve-url"; 7013 - version = "0.2.1"; 7014 - src = fetchurl { 7015 - url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"; 7016 - sha512 = "ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg=="; 7017 - }; 7018 - }; 7019 - "resp-modifier-6.0.2" = { 7020 - name = "resp-modifier"; 7021 - packageName = "resp-modifier"; 7022 - version = "6.0.2"; 7023 - src = fetchurl { 7024 - url = "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz"; 7025 - sha512 = "U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw=="; 7026 - }; 7027 - }; 7028 - "restore-cursor-2.0.0" = { 7029 - name = "restore-cursor"; 7030 - packageName = "restore-cursor"; 7031 - version = "2.0.0"; 7032 - src = fetchurl { 7033 - url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz"; 7034 - sha512 = "6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q=="; 7035 - }; 7036 - }; 7037 - "ret-0.1.15" = { 7038 - name = "ret"; 7039 - packageName = "ret"; 7040 - version = "0.1.15"; 7041 - src = fetchurl { 7042 - url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"; 7043 - sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="; 7044 - }; 7045 - }; 7046 - "reusify-1.0.4" = { 7047 - name = "reusify"; 7048 - packageName = "reusify"; 7049 - version = "1.0.4"; 7050 - src = fetchurl { 7051 - url = "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"; 7052 - sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 7053 - }; 7054 - }; 7055 - "rev-hash-2.0.0" = { 7056 - name = "rev-hash"; 7057 - packageName = "rev-hash"; 7058 - version = "2.0.0"; 7059 - src = fetchurl { 7060 - url = "https://registry.npmjs.org/rev-hash/-/rev-hash-2.0.0.tgz"; 7061 - sha512 = "U6EkYZI87C3B5KS46HAEy+g+rtueIdfF9Zb6XBlGe3R/RaF3V8drN7nRFm7/swHOK1zQLGvIYwQ4Q6WDAAlynw=="; 7062 - }; 7063 - }; 7064 - "rev-path-2.0.0" = { 7065 - name = "rev-path"; 7066 - packageName = "rev-path"; 7067 - version = "2.0.0"; 7068 - src = fetchurl { 7069 - url = "https://registry.npmjs.org/rev-path/-/rev-path-2.0.0.tgz"; 7070 - sha512 = "G5R2L9gYu9kEuqPfIFgO9gO+OhBWOAT83HyauOQmGHO6y9Fsa4acv+XsmNhNDrod0HDh1/VxJRmsffThzeHJlQ=="; 7071 - }; 7072 - }; 7073 - "rimraf-2.6.3" = { 7074 - name = "rimraf"; 7075 - packageName = "rimraf"; 7076 - version = "2.6.3"; 7077 - src = fetchurl { 7078 - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"; 7079 - sha512 = "mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA=="; 7080 - }; 7081 - }; 7082 - "rimraf-3.0.2" = { 7083 - name = "rimraf"; 7084 - packageName = "rimraf"; 7085 - version = "3.0.2"; 7086 - src = fetchurl { 7087 - url = "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"; 7088 - sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 7089 - }; 7090 - }; 7091 - "ripemd160-2.0.2" = { 7092 - name = "ripemd160"; 7093 - packageName = "ripemd160"; 7094 - version = "2.0.2"; 7095 - src = fetchurl { 7096 - url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz"; 7097 - sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="; 7098 - }; 7099 - }; 7100 - "run-async-2.4.1" = { 7101 - name = "run-async"; 7102 - packageName = "run-async"; 7103 - version = "2.4.1"; 7104 - src = fetchurl { 7105 - url = "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz"; 7106 - sha512 = "tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ=="; 7107 - }; 7108 - }; 7109 - "run-parallel-1.2.0" = { 7110 - name = "run-parallel"; 7111 - packageName = "run-parallel"; 7112 - version = "1.2.0"; 7113 - src = fetchurl { 7114 - url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"; 7115 - sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; 7116 - }; 7117 - }; 7118 - "rx-4.1.0" = { 7119 - name = "rx"; 7120 - packageName = "rx"; 7121 - version = "4.1.0"; 7122 - src = fetchurl { 7123 - url = "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz"; 7124 - sha512 = "CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug=="; 7125 - }; 7126 - }; 7127 - "rx-lite-4.0.8" = { 7128 - name = "rx-lite"; 7129 - packageName = "rx-lite"; 7130 - version = "4.0.8"; 7131 - src = fetchurl { 7132 - url = "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz"; 7133 - sha512 = "Cun9QucwK6MIrp3mry/Y7hqD1oFqTYLQ4pGxaHTjIdaFDWRGGLikqp6u8LcWJnzpoALg9hap+JGk8sFIUuEGNA=="; 7134 - }; 7135 - }; 7136 - "rx-lite-aggregates-4.0.8" = { 7137 - name = "rx-lite-aggregates"; 7138 - packageName = "rx-lite-aggregates"; 7139 - version = "4.0.8"; 7140 - src = fetchurl { 7141 - url = "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz"; 7142 - sha512 = "3xPNZGW93oCjiO7PtKxRK6iOVYBWBvtf9QHDfU23Oc+dLIQmAV//UnyXV/yihv81VS/UqoQPk4NegS8EFi55Hg=="; 7143 - }; 7144 - }; 7145 - "rxjs-5.5.12" = { 7146 - name = "rxjs"; 7147 - packageName = "rxjs"; 7148 - version = "5.5.12"; 7149 - src = fetchurl { 7150 - url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.12.tgz"; 7151 - sha512 = "xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw=="; 7152 - }; 7153 - }; 7154 - "safe-buffer-5.1.2" = { 7155 - name = "safe-buffer"; 7156 - packageName = "safe-buffer"; 7157 - version = "5.1.2"; 7158 - src = fetchurl { 7159 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; 7160 - sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 7161 - }; 7162 - }; 7163 - "safe-buffer-5.2.1" = { 7164 - name = "safe-buffer"; 7165 - packageName = "safe-buffer"; 7166 - version = "5.2.1"; 7167 - src = fetchurl { 7168 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"; 7169 - sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 7170 - }; 7171 - }; 7172 - "safe-regex-1.1.0" = { 7173 - name = "safe-regex"; 7174 - packageName = "safe-regex"; 7175 - version = "1.1.0"; 7176 - src = fetchurl { 7177 - url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"; 7178 - sha512 = "aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg=="; 7179 - }; 7180 - }; 7181 - "safe-regex-test-1.0.0" = { 7182 - name = "safe-regex-test"; 7183 - packageName = "safe-regex-test"; 7184 - version = "1.0.0"; 7185 - src = fetchurl { 7186 - url = "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz"; 7187 - sha512 = "JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA=="; 7188 - }; 7189 - }; 7190 - "safer-buffer-2.1.2" = { 7191 - name = "safer-buffer"; 7192 - packageName = "safer-buffer"; 7193 - version = "2.1.2"; 7194 - src = fetchurl { 7195 - url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; 7196 - sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 7197 - }; 7198 - }; 7199 - "sax-1.2.4" = { 7200 - name = "sax"; 7201 - packageName = "sax"; 7202 - version = "1.2.4"; 7203 - src = fetchurl { 7204 - url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"; 7205 - sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; 7206 - }; 7207 - }; 7208 - "select2-4.0.13" = { 7209 - name = "select2"; 7210 - packageName = "select2"; 7211 - version = "4.0.13"; 7212 - src = fetchurl { 7213 - url = "https://registry.npmjs.org/select2/-/select2-4.0.13.tgz"; 7214 - sha512 = "1JeB87s6oN/TDxQQYCvS5EFoQyvV6eYMZZ0AeA4tdFDYWN3BAGZ8npr17UBFddU0lgAt3H0yjX3X6/ekOj1yjw=="; 7215 - }; 7216 - }; 7217 - "semver-5.7.1" = { 7218 - name = "semver"; 7219 - packageName = "semver"; 7220 - version = "5.7.1"; 7221 - src = fetchurl { 7222 - url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"; 7223 - sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 7224 - }; 7225 - }; 7226 - "semver-greatest-satisfied-range-1.1.0" = { 7227 - name = "semver-greatest-satisfied-range"; 7228 - packageName = "semver-greatest-satisfied-range"; 7229 - version = "1.1.0"; 7230 - src = fetchurl { 7231 - url = "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz"; 7232 - sha512 = "Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ=="; 7233 - }; 7234 - }; 7235 - "send-0.16.2" = { 7236 - name = "send"; 7237 - packageName = "send"; 7238 - version = "0.16.2"; 7239 - src = fetchurl { 7240 - url = "https://registry.npmjs.org/send/-/send-0.16.2.tgz"; 7241 - sha512 = "E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw=="; 7242 - }; 7243 - }; 7244 - "serve-index-1.9.1" = { 7245 - name = "serve-index"; 7246 - packageName = "serve-index"; 7247 - version = "1.9.1"; 7248 - src = fetchurl { 7249 - url = "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz"; 7250 - sha512 = "pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw=="; 7251 - }; 7252 - }; 7253 - "serve-static-1.13.2" = { 7254 - name = "serve-static"; 7255 - packageName = "serve-static"; 7256 - version = "1.13.2"; 7257 - src = fetchurl { 7258 - url = "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz"; 7259 - sha512 = "p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw=="; 7260 - }; 7261 - }; 7262 - "server-destroy-1.0.1" = { 7263 - name = "server-destroy"; 7264 - packageName = "server-destroy"; 7265 - version = "1.0.1"; 7266 - src = fetchurl { 7267 - url = "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz"; 7268 - sha512 = "rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ=="; 7269 - }; 7270 - }; 7271 - "set-blocking-2.0.0" = { 7272 - name = "set-blocking"; 7273 - packageName = "set-blocking"; 7274 - version = "2.0.0"; 7275 - src = fetchurl { 7276 - url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; 7277 - sha512 = "KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="; 7278 - }; 7279 - }; 7280 - "set-value-2.0.1" = { 7281 - name = "set-value"; 7282 - packageName = "set-value"; 7283 - version = "2.0.1"; 7284 - src = fetchurl { 7285 - url = "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz"; 7286 - sha512 = "JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw=="; 7287 - }; 7288 - }; 7289 - "setprototypeof-1.1.0" = { 7290 - name = "setprototypeof"; 7291 - packageName = "setprototypeof"; 7292 - version = "1.1.0"; 7293 - src = fetchurl { 7294 - url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz"; 7295 - sha512 = "BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="; 7296 - }; 7297 - }; 7298 - "setprototypeof-1.2.0" = { 7299 - name = "setprototypeof"; 7300 - packageName = "setprototypeof"; 7301 - version = "1.2.0"; 7302 - src = fetchurl { 7303 - url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz"; 7304 - sha512 = "E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="; 7305 - }; 7306 - }; 7307 - "sha.js-2.4.11" = { 7308 - name = "sha.js"; 7309 - packageName = "sha.js"; 7310 - version = "2.4.11"; 7311 - src = fetchurl { 7312 - url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz"; 7313 - sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ=="; 7314 - }; 7315 - }; 7316 - "shasum-object-1.0.0" = { 7317 - name = "shasum-object"; 7318 - packageName = "shasum-object"; 7319 - version = "1.0.0"; 7320 - src = fetchurl { 7321 - url = "https://registry.npmjs.org/shasum-object/-/shasum-object-1.0.0.tgz"; 7322 - sha512 = "Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg=="; 7323 - }; 7324 - }; 7325 - "shebang-command-1.2.0" = { 7326 - name = "shebang-command"; 7327 - packageName = "shebang-command"; 7328 - version = "1.2.0"; 7329 - src = fetchurl { 7330 - url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"; 7331 - sha512 = "EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg=="; 7332 - }; 7333 - }; 7334 - "shebang-regex-1.0.0" = { 7335 - name = "shebang-regex"; 7336 - packageName = "shebang-regex"; 7337 - version = "1.0.0"; 7338 - src = fetchurl { 7339 - url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"; 7340 - sha512 = "wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ=="; 7341 - }; 7342 - }; 7343 - "shell-quote-1.7.4" = { 7344 - name = "shell-quote"; 7345 - packageName = "shell-quote"; 7346 - version = "1.7.4"; 7347 - src = fetchurl { 7348 - url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.4.tgz"; 7349 - sha512 = "8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw=="; 7350 - }; 7351 - }; 7352 - "shelljs-0.8.5" = { 7353 - name = "shelljs"; 7354 - packageName = "shelljs"; 7355 - version = "0.8.5"; 7356 - src = fetchurl { 7357 - url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz"; 7358 - sha512 = "TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow=="; 7359 - }; 7360 - }; 7361 - "side-channel-1.0.4" = { 7362 - name = "side-channel"; 7363 - packageName = "side-channel"; 7364 - version = "1.0.4"; 7365 - src = fetchurl { 7366 - url = "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"; 7367 - sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 7368 - }; 7369 - }; 7370 - "signal-exit-3.0.7" = { 7371 - name = "signal-exit"; 7372 - packageName = "signal-exit"; 7373 - version = "3.0.7"; 7374 - src = fetchurl { 7375 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"; 7376 - sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 7377 - }; 7378 - }; 7379 - "simple-concat-1.0.1" = { 7380 - name = "simple-concat"; 7381 - packageName = "simple-concat"; 7382 - version = "1.0.1"; 7383 - src = fetchurl { 7384 - url = "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz"; 7385 - sha512 = "cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="; 7386 - }; 7387 - }; 7388 - "slash-3.0.0" = { 7389 - name = "slash"; 7390 - packageName = "slash"; 7391 - version = "3.0.0"; 7392 - src = fetchurl { 7393 - url = "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"; 7394 - sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 7395 - }; 7396 - }; 7397 - "slice-ansi-1.0.0" = { 7398 - name = "slice-ansi"; 7399 - packageName = "slice-ansi"; 7400 - version = "1.0.0"; 7401 - src = fetchurl { 7402 - url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz"; 7403 - sha512 = "POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg=="; 7404 - }; 7405 - }; 7406 - "slimscroll-0.9.1" = { 7407 - name = "slimscroll"; 7408 - packageName = "slimscroll"; 7409 - version = "0.9.1"; 7410 - src = fetchurl { 7411 - url = "https://registry.npmjs.org/slimscroll/-/slimscroll-0.9.1.tgz"; 7412 - sha512 = "3j8F/QCsJpuhPE1yZte3876WIYZ0WfhhzYLS1464hq4mSdQ9kQ4fcDXjLz2/vhwNv7Y9pKX+GzX3udTHKpR9Pw=="; 7413 - }; 7414 - }; 7415 - "snapdragon-0.8.2" = { 7416 - name = "snapdragon"; 7417 - packageName = "snapdragon"; 7418 - version = "0.8.2"; 7419 - src = fetchurl { 7420 - url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz"; 7421 - sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg=="; 7422 - }; 7423 - }; 7424 - "snapdragon-node-2.1.1" = { 7425 - name = "snapdragon-node"; 7426 - packageName = "snapdragon-node"; 7427 - version = "2.1.1"; 7428 - src = fetchurl { 7429 - url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; 7430 - sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw=="; 7431 - }; 7432 - }; 7433 - "snapdragon-util-3.0.1" = { 7434 - name = "snapdragon-util"; 7435 - packageName = "snapdragon-util"; 7436 - version = "3.0.1"; 7437 - src = fetchurl { 7438 - url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; 7439 - sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ=="; 7440 - }; 7441 - }; 7442 - "socket.io-4.5.3" = { 7443 - name = "socket.io"; 7444 - packageName = "socket.io"; 7445 - version = "4.5.3"; 7446 - src = fetchurl { 7447 - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.5.3.tgz"; 7448 - sha512 = "zdpnnKU+H6mOp7nYRXH4GNv1ux6HL6+lHL8g7Ds7Lj8CkdK1jJK/dlwsKDculbyOHifcJ0Pr/yeXnZQ5GeFrcg=="; 7449 - }; 7450 - }; 7451 - "socket.io-adapter-2.4.0" = { 7452 - name = "socket.io-adapter"; 7453 - packageName = "socket.io-adapter"; 7454 - version = "2.4.0"; 7455 - src = fetchurl { 7456 - url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz"; 7457 - sha512 = "W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg=="; 7458 - }; 7459 - }; 7460 - "socket.io-client-4.5.3" = { 7461 - name = "socket.io-client"; 7462 - packageName = "socket.io-client"; 7463 - version = "4.5.3"; 7464 - src = fetchurl { 7465 - url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.3.tgz"; 7466 - sha512 = "I/hqDYpQ6JKwtJOf5ikM+Qz+YujZPMEl6qBLhxiP0nX+TfXKhW4KZZG8lamrD6Y5ngjmYHreESVasVCgi5Kl3A=="; 7467 - }; 7468 - }; 7469 - "socket.io-parser-4.2.1" = { 7470 - name = "socket.io-parser"; 7471 - packageName = "socket.io-parser"; 7472 - version = "4.2.1"; 7473 - src = fetchurl { 7474 - url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.1.tgz"; 7475 - sha512 = "V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g=="; 7476 - }; 7477 - }; 7478 - "sort-keys-1.1.2" = { 7479 - name = "sort-keys"; 7480 - packageName = "sort-keys"; 7481 - version = "1.1.2"; 7482 - src = fetchurl { 7483 - url = "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz"; 7484 - sha512 = "vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg=="; 7485 - }; 7486 - }; 7487 - "sort-keys-2.0.0" = { 7488 - name = "sort-keys"; 7489 - packageName = "sort-keys"; 7490 - version = "2.0.0"; 7491 - src = fetchurl { 7492 - url = "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz"; 7493 - sha512 = "/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg=="; 7494 - }; 7495 - }; 7496 - "source-map-0.5.7" = { 7497 - name = "source-map"; 7498 - packageName = "source-map"; 7499 - version = "0.5.7"; 7500 - src = fetchurl { 7501 - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; 7502 - sha512 = "LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ=="; 7503 - }; 7504 - }; 7505 - "source-map-0.6.1" = { 7506 - name = "source-map"; 7507 - packageName = "source-map"; 7508 - version = "0.6.1"; 7509 - src = fetchurl { 7510 - url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; 7511 - sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; 7512 - }; 7513 - }; 7514 - "source-map-js-1.0.2" = { 7515 - name = "source-map-js"; 7516 - packageName = "source-map-js"; 7517 - version = "1.0.2"; 7518 - src = fetchurl { 7519 - url = "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"; 7520 - sha512 = "R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="; 7521 - }; 7522 - }; 7523 - "source-map-resolve-0.5.3" = { 7524 - name = "source-map-resolve"; 7525 - packageName = "source-map-resolve"; 7526 - version = "0.5.3"; 7527 - src = fetchurl { 7528 - url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz"; 7529 - sha512 = "Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw=="; 7530 - }; 7531 - }; 7532 - "source-map-resolve-0.6.0" = { 7533 - name = "source-map-resolve"; 7534 - packageName = "source-map-resolve"; 7535 - version = "0.6.0"; 7536 - src = fetchurl { 7537 - url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz"; 7538 - sha512 = "KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w=="; 7539 - }; 7540 - }; 7541 - "source-map-url-0.4.1" = { 7542 - name = "source-map-url"; 7543 - packageName = "source-map-url"; 7544 - version = "0.4.1"; 7545 - src = fetchurl { 7546 - url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz"; 7547 - sha512 = "cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw=="; 7548 - }; 7549 - }; 7550 - "sparkles-1.0.1" = { 7551 - name = "sparkles"; 7552 - packageName = "sparkles"; 7553 - version = "1.0.1"; 7554 - src = fetchurl { 7555 - url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz"; 7556 - sha512 = "dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw=="; 7557 - }; 7558 - }; 7559 - "sparkles-2.0.0" = { 7560 - name = "sparkles"; 7561 - packageName = "sparkles"; 7562 - version = "2.0.0"; 7563 - src = fetchurl { 7564 - url = "https://registry.npmjs.org/sparkles/-/sparkles-2.0.0.tgz"; 7565 - sha512 = "rqUsosNTLY8KIT6qhuJlXzIUjYJNHTDoHmPnJwfnD7bEvSSvhUOMKuPMCsmLR3vDhyTGi0oAqAbLjgiIXnL2wQ=="; 7566 - }; 7567 - }; 7568 - "spdx-correct-3.1.1" = { 7569 - name = "spdx-correct"; 7570 - packageName = "spdx-correct"; 7571 - version = "3.1.1"; 7572 - src = fetchurl { 7573 - url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz"; 7574 - sha512 = "cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w=="; 7575 - }; 7576 - }; 7577 - "spdx-exceptions-2.3.0" = { 7578 - name = "spdx-exceptions"; 7579 - packageName = "spdx-exceptions"; 7580 - version = "2.3.0"; 7581 - src = fetchurl { 7582 - url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"; 7583 - sha512 = "/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A=="; 7584 - }; 7585 - }; 7586 - "spdx-expression-parse-3.0.1" = { 7587 - name = "spdx-expression-parse"; 7588 - packageName = "spdx-expression-parse"; 7589 - version = "3.0.1"; 7590 - src = fetchurl { 7591 - url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"; 7592 - sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 7593 - }; 7594 - }; 7595 - "spdx-license-ids-3.0.12" = { 7596 - name = "spdx-license-ids"; 7597 - packageName = "spdx-license-ids"; 7598 - version = "3.0.12"; 7599 - src = fetchurl { 7600 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz"; 7601 - sha512 = "rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA=="; 7602 - }; 7603 - }; 7604 - "split-1.0.1" = { 7605 - name = "split"; 7606 - packageName = "split"; 7607 - version = "1.0.1"; 7608 - src = fetchurl { 7609 - url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz"; 7610 - sha512 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg=="; 7611 - }; 7612 - }; 7613 - "split-string-3.1.0" = { 7614 - name = "split-string"; 7615 - packageName = "split-string"; 7616 - version = "3.1.0"; 7617 - src = fetchurl { 7618 - url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"; 7619 - sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw=="; 7620 - }; 7621 - }; 7622 - "sprintf-js-1.0.3" = { 7623 - name = "sprintf-js"; 7624 - packageName = "sprintf-js"; 7625 - version = "1.0.3"; 7626 - src = fetchurl { 7627 - url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; 7628 - sha512 = "D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g=="; 7629 - }; 7630 - }; 7631 - "stack-trace-0.0.10" = { 7632 - name = "stack-trace"; 7633 - packageName = "stack-trace"; 7634 - version = "0.0.10"; 7635 - src = fetchurl { 7636 - url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz"; 7637 - sha512 = "KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg=="; 7638 - }; 7639 - }; 7640 - "static-extend-0.1.2" = { 7641 - name = "static-extend"; 7642 - packageName = "static-extend"; 7643 - version = "0.1.2"; 7644 - src = fetchurl { 7645 - url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"; 7646 - sha512 = "72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g=="; 7647 - }; 7648 - }; 7649 - "statuses-1.3.1" = { 7650 - name = "statuses"; 7651 - packageName = "statuses"; 7652 - version = "1.3.1"; 7653 - src = fetchurl { 7654 - url = "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz"; 7655 - sha512 = "wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg=="; 7656 - }; 7657 - }; 7658 - "statuses-1.4.0" = { 7659 - name = "statuses"; 7660 - packageName = "statuses"; 7661 - version = "1.4.0"; 7662 - src = fetchurl { 7663 - url = "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz"; 7664 - sha512 = "zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew=="; 7665 - }; 7666 - }; 7667 - "statuses-1.5.0" = { 7668 - name = "statuses"; 7669 - packageName = "statuses"; 7670 - version = "1.5.0"; 7671 - src = fetchurl { 7672 - url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"; 7673 - sha512 = "OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="; 7674 - }; 7675 - }; 7676 - "statuses-2.0.1" = { 7677 - name = "statuses"; 7678 - packageName = "statuses"; 7679 - version = "2.0.1"; 7680 - src = fetchurl { 7681 - url = "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz"; 7682 - sha512 = "RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="; 7683 - }; 7684 - }; 7685 - "stream-browserify-3.0.0" = { 7686 - name = "stream-browserify"; 7687 - packageName = "stream-browserify"; 7688 - version = "3.0.0"; 7689 - src = fetchurl { 7690 - url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz"; 7691 - sha512 = "H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA=="; 7692 - }; 7693 - }; 7694 - "stream-combiner-0.2.2" = { 7695 - name = "stream-combiner"; 7696 - packageName = "stream-combiner"; 7697 - version = "0.2.2"; 7698 - src = fetchurl { 7699 - url = "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz"; 7700 - sha512 = "6yHMqgLYDzQDcAkL+tjJDC5nSNuNIx0vZtRZeiPh7Saef7VHX9H5Ijn9l2VIol2zaNYlYEX6KyuT/237A58qEQ=="; 7701 - }; 7702 - }; 7703 - "stream-combiner2-1.1.1" = { 7704 - name = "stream-combiner2"; 7705 - packageName = "stream-combiner2"; 7706 - version = "1.1.1"; 7707 - src = fetchurl { 7708 - url = "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz"; 7709 - sha512 = "3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw=="; 7710 - }; 7711 - }; 7712 - "stream-counter-1.0.0" = { 7713 - name = "stream-counter"; 7714 - packageName = "stream-counter"; 7715 - version = "1.0.0"; 7716 - src = fetchurl { 7717 - url = "https://registry.npmjs.org/stream-counter/-/stream-counter-1.0.0.tgz"; 7718 - sha512 = "4nfHc1016AhNOs0CFDR3S0FNeqnYbT7xZ408coajcx2Msj8malNNjvFHzWYIfIAXNK5i0eaKIVfgBYPOkyOTIg=="; 7719 - }; 7720 - }; 7721 - "stream-exhaust-1.0.2" = { 7722 - name = "stream-exhaust"; 7723 - packageName = "stream-exhaust"; 7724 - version = "1.0.2"; 7725 - src = fetchurl { 7726 - url = "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz"; 7727 - sha512 = "b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw=="; 7728 - }; 7729 - }; 7730 - "stream-http-3.2.0" = { 7731 - name = "stream-http"; 7732 - packageName = "stream-http"; 7733 - version = "3.2.0"; 7734 - src = fetchurl { 7735 - url = "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz"; 7736 - sha512 = "Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A=="; 7737 - }; 7738 - }; 7739 - "stream-shift-1.0.1" = { 7740 - name = "stream-shift"; 7741 - packageName = "stream-shift"; 7742 - version = "1.0.1"; 7743 - src = fetchurl { 7744 - url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz"; 7745 - sha512 = "AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ=="; 7746 - }; 7747 - }; 7748 - "stream-splicer-2.0.1" = { 7749 - name = "stream-splicer"; 7750 - packageName = "stream-splicer"; 7751 - version = "2.0.1"; 7752 - src = fetchurl { 7753 - url = "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.1.tgz"; 7754 - sha512 = "Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg=="; 7755 - }; 7756 - }; 7757 - "stream-throttle-0.1.3" = { 7758 - name = "stream-throttle"; 7759 - packageName = "stream-throttle"; 7760 - version = "0.1.3"; 7761 - src = fetchurl { 7762 - url = "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz"; 7763 - sha512 = "889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ=="; 7764 - }; 7765 - }; 7766 - "strict-uri-encode-1.1.0" = { 7767 - name = "strict-uri-encode"; 7768 - packageName = "strict-uri-encode"; 7769 - version = "1.1.0"; 7770 - src = fetchurl { 7771 - url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz"; 7772 - sha512 = "R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ=="; 7773 - }; 7774 - }; 7775 - "string-width-1.0.2" = { 7776 - name = "string-width"; 7777 - packageName = "string-width"; 7778 - version = "1.0.2"; 7779 - src = fetchurl { 7780 - url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"; 7781 - sha512 = "0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw=="; 7782 - }; 7783 - }; 7784 - "string-width-2.1.1" = { 7785 - name = "string-width"; 7786 - packageName = "string-width"; 7787 - version = "2.1.1"; 7788 - src = fetchurl { 7789 - url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; 7790 - sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; 7791 - }; 7792 - }; 7793 - "string-width-4.2.3" = { 7794 - name = "string-width"; 7795 - packageName = "string-width"; 7796 - version = "4.2.3"; 7797 - src = fetchurl { 7798 - url = "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"; 7799 - sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 7800 - }; 7801 - }; 7802 - "string.prototype.trimend-1.0.5" = { 7803 - name = "string.prototype.trimend"; 7804 - packageName = "string.prototype.trimend"; 7805 - version = "1.0.5"; 7806 - src = fetchurl { 7807 - url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz"; 7808 - sha512 = "I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog=="; 7809 - }; 7810 - }; 7811 - "string.prototype.trimstart-1.0.5" = { 7812 - name = "string.prototype.trimstart"; 7813 - packageName = "string.prototype.trimstart"; 7814 - version = "1.0.5"; 7815 - src = fetchurl { 7816 - url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz"; 7817 - sha512 = "THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg=="; 7818 - }; 7819 - }; 7820 - "string_decoder-0.10.31" = { 7821 - name = "string_decoder"; 7822 - packageName = "string_decoder"; 7823 - version = "0.10.31"; 7824 - src = fetchurl { 7825 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; 7826 - sha512 = "ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ=="; 7827 - }; 7828 - }; 7829 - "string_decoder-1.1.1" = { 7830 - name = "string_decoder"; 7831 - packageName = "string_decoder"; 7832 - version = "1.1.1"; 7833 - src = fetchurl { 7834 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; 7835 - sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 7836 - }; 7837 - }; 7838 - "string_decoder-1.3.0" = { 7839 - name = "string_decoder"; 7840 - packageName = "string_decoder"; 7841 - version = "1.3.0"; 7842 - src = fetchurl { 7843 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"; 7844 - sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; 7845 - }; 7846 - }; 7847 - "strip-ansi-3.0.1" = { 7848 - name = "strip-ansi"; 7849 - packageName = "strip-ansi"; 7850 - version = "3.0.1"; 7851 - src = fetchurl { 7852 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 7853 - sha512 = "VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg=="; 7854 - }; 7855 - }; 7856 - "strip-ansi-4.0.0" = { 7857 - name = "strip-ansi"; 7858 - packageName = "strip-ansi"; 7859 - version = "4.0.0"; 7860 - src = fetchurl { 7861 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"; 7862 - sha512 = "4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow=="; 7863 - }; 7864 - }; 7865 - "strip-ansi-6.0.1" = { 7866 - name = "strip-ansi"; 7867 - packageName = "strip-ansi"; 7868 - version = "6.0.1"; 7869 - src = fetchurl { 7870 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"; 7871 - sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 7872 - }; 7873 - }; 7874 - "strip-bom-2.0.0" = { 7875 - name = "strip-bom"; 7876 - packageName = "strip-bom"; 7877 - version = "2.0.0"; 7878 - src = fetchurl { 7879 - url = "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz"; 7880 - sha512 = "kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g=="; 7881 - }; 7882 - }; 7883 - "strip-bom-buf-1.0.0" = { 7884 - name = "strip-bom-buf"; 7885 - packageName = "strip-bom-buf"; 7886 - version = "1.0.0"; 7887 - src = fetchurl { 7888 - url = "https://registry.npmjs.org/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz"; 7889 - sha512 = "1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ=="; 7890 - }; 7891 - }; 7892 - "strip-bom-stream-2.0.0" = { 7893 - name = "strip-bom-stream"; 7894 - packageName = "strip-bom-stream"; 7895 - version = "2.0.0"; 7896 - src = fetchurl { 7897 - url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz"; 7898 - sha512 = "yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w=="; 7899 - }; 7900 - }; 7901 - "strip-bom-string-1.0.0" = { 7902 - name = "strip-bom-string"; 7903 - packageName = "strip-bom-string"; 7904 - version = "1.0.0"; 7905 - src = fetchurl { 7906 - url = "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz"; 7907 - sha512 = "uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g=="; 7908 - }; 7909 - }; 7910 - "strip-json-comments-2.0.1" = { 7911 - name = "strip-json-comments"; 7912 - packageName = "strip-json-comments"; 7913 - version = "2.0.1"; 7914 - src = fetchurl { 7915 - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; 7916 - sha512 = "4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="; 7917 - }; 7918 - }; 7919 - "subarg-1.0.0" = { 7920 - name = "subarg"; 7921 - packageName = "subarg"; 7922 - version = "1.0.0"; 7923 - src = fetchurl { 7924 - url = "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz"; 7925 - sha512 = "RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg=="; 7926 - }; 7927 - }; 7928 - "supports-color-2.0.0" = { 7929 - name = "supports-color"; 7930 - packageName = "supports-color"; 7931 - version = "2.0.0"; 7932 - src = fetchurl { 7933 - url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; 7934 - sha512 = "KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g=="; 7935 - }; 7936 - }; 7937 - "supports-color-3.2.3" = { 7938 - name = "supports-color"; 7939 - packageName = "supports-color"; 7940 - version = "3.2.3"; 7941 - src = fetchurl { 7942 - url = "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz"; 7943 - sha512 = "Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A=="; 7944 - }; 7945 - }; 7946 - "supports-color-5.5.0" = { 7947 - name = "supports-color"; 7948 - packageName = "supports-color"; 7949 - version = "5.5.0"; 7950 - src = fetchurl { 7951 - url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"; 7952 - sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 7953 - }; 7954 - }; 7955 - "supports-color-7.2.0" = { 7956 - name = "supports-color"; 7957 - packageName = "supports-color"; 7958 - version = "7.2.0"; 7959 - src = fetchurl { 7960 - url = "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"; 7961 - sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 7962 - }; 7963 - }; 7964 - "supports-preserve-symlinks-flag-1.0.0" = { 7965 - name = "supports-preserve-symlinks-flag"; 7966 - packageName = "supports-preserve-symlinks-flag"; 7967 - version = "1.0.0"; 7968 - src = fetchurl { 7969 - url = "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; 7970 - sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 7971 - }; 7972 - }; 7973 - "sver-compat-1.5.0" = { 7974 - name = "sver-compat"; 7975 - packageName = "sver-compat"; 7976 - version = "1.5.0"; 7977 - src = fetchurl { 7978 - url = "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz"; 7979 - sha512 = "aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg=="; 7980 - }; 7981 - }; 7982 - "svgo-0.7.2" = { 7983 - name = "svgo"; 7984 - packageName = "svgo"; 7985 - version = "0.7.2"; 7986 - src = fetchurl { 7987 - url = "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz"; 7988 - sha512 = "jT/g9FFMoe9lu2IT6HtAxTA7RR2XOrmcrmCtGnyB/+GQnV6ZjNn+KOHZbZ35yL81+1F/aB6OeEsJztzBQ2EEwA=="; 7989 - }; 7990 - }; 7991 - "sweetalert-0.4.2" = { 7992 - name = "sweetalert"; 7993 - packageName = "sweetalert"; 7994 - version = "0.4.2"; 7995 - src = fetchurl { 7996 - url = "https://registry.npmjs.org/sweetalert/-/sweetalert-0.4.2.tgz"; 7997 - sha512 = "ZqjrUIm1ouCcLZD4VXonOKdMHh+HUurGwQf5Drlb/LTtHuRVpfh7C90U43kmjFNUuiHo7gvQniw3gn1yhQpOtQ=="; 7998 - }; 7999 - }; 8000 - "sweetalert-1.1.3" = { 8001 - name = "sweetalert"; 8002 - packageName = "sweetalert"; 8003 - version = "1.1.3"; 8004 - src = fetchurl { 8005 - url = "https://registry.npmjs.org/sweetalert/-/sweetalert-1.1.3.tgz"; 8006 - sha512 = "qRyiD2XvkXY6nJxAkYIZhE5072Rz05mJsQJxV9FYYKMljCrjGjga9bKdDKljyB715JRaKmeXvICVTMfimsQ0Ww=="; 8007 - }; 8008 - }; 8009 - "symbol-observable-1.0.1" = { 8010 - name = "symbol-observable"; 8011 - packageName = "symbol-observable"; 8012 - version = "1.0.1"; 8013 - src = fetchurl { 8014 - url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz"; 8015 - sha512 = "Kb3PrPYz4HanVF1LVGuAdW6LoVgIwjUYJGzFe7NDrBLCN4lsV/5J0MFurV+ygS4bRVwrCEt2c7MQ1R2a72oJDw=="; 8016 - }; 8017 - }; 8018 - "syntax-error-1.4.0" = { 8019 - name = "syntax-error"; 8020 - packageName = "syntax-error"; 8021 - version = "1.4.0"; 8022 - src = fetchurl { 8023 - url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz"; 8024 - sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; 8025 - }; 8026 - }; 8027 - "table-4.0.2" = { 8028 - name = "table"; 8029 - packageName = "table"; 8030 - version = "4.0.2"; 8031 - src = fetchurl { 8032 - url = "https://registry.npmjs.org/table/-/table-4.0.2.tgz"; 8033 - sha512 = "UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA=="; 8034 - }; 8035 - }; 8036 - "ternary-stream-3.0.0" = { 8037 - name = "ternary-stream"; 8038 - packageName = "ternary-stream"; 8039 - version = "3.0.0"; 8040 - src = fetchurl { 8041 - url = "https://registry.npmjs.org/ternary-stream/-/ternary-stream-3.0.0.tgz"; 8042 - sha512 = "oIzdi+UL/JdktkT+7KU5tSIQjj8pbShj3OASuvDEhm0NT5lppsm7aXWAmAq4/QMaBIyfuEcNLbAQA+HpaISobQ=="; 8043 - }; 8044 - }; 8045 - "text-table-0.2.0" = { 8046 - name = "text-table"; 8047 - packageName = "text-table"; 8048 - version = "0.2.0"; 8049 - src = fetchurl { 8050 - url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"; 8051 - sha512 = "N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="; 8052 - }; 8053 - }; 8054 - "textextensions-3.3.0" = { 8055 - name = "textextensions"; 8056 - packageName = "textextensions"; 8057 - version = "3.3.0"; 8058 - src = fetchurl { 8059 - url = "https://registry.npmjs.org/textextensions/-/textextensions-3.3.0.tgz"; 8060 - sha512 = "mk82dS8eRABNbeVJrEiN5/UMSCliINAuz8mkUwH4SwslkNP//gbEzlWNS5au0z5Dpx40SQxzqZevZkn+WYJ9Dw=="; 8061 - }; 8062 - }; 8063 - "tfunk-4.0.0" = { 8064 - name = "tfunk"; 8065 - packageName = "tfunk"; 8066 - version = "4.0.0"; 8067 - src = fetchurl { 8068 - url = "https://registry.npmjs.org/tfunk/-/tfunk-4.0.0.tgz"; 8069 - sha512 = "eJQ0dGfDIzWNiFNYFVjJ+Ezl/GmwHaFTBTjrtqNPW0S7cuVDBrZrmzUz6VkMeCR4DZFqhd4YtLwsw3i2wYHswQ=="; 8070 - }; 8071 - }; 8072 - "through-2.3.8" = { 8073 - name = "through"; 8074 - packageName = "through"; 8075 - version = "2.3.8"; 8076 - src = fetchurl { 8077 - url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; 8078 - sha512 = "w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="; 8079 - }; 8080 - }; 8081 - "through2-0.6.5" = { 8082 - name = "through2"; 8083 - packageName = "through2"; 8084 - version = "0.6.5"; 8085 - src = fetchurl { 8086 - url = "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz"; 8087 - sha512 = "RkK/CCESdTKQZHdmKICijdKKsCRVHs5KsLZ6pACAmF/1GPUQhonHSXWNERctxEp7RmvjdNbZTL5z9V7nSCXKcg=="; 8088 - }; 8089 - }; 8090 - "through2-2.0.5" = { 8091 - name = "through2"; 8092 - packageName = "through2"; 8093 - version = "2.0.5"; 8094 - src = fetchurl { 8095 - url = "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz"; 8096 - sha512 = "/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ=="; 8097 - }; 8098 - }; 8099 - "through2-3.0.2" = { 8100 - name = "through2"; 8101 - packageName = "through2"; 8102 - version = "3.0.2"; 8103 - src = fetchurl { 8104 - url = "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz"; 8105 - sha512 = "enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ=="; 8106 - }; 8107 - }; 8108 - "through2-4.0.2" = { 8109 - name = "through2"; 8110 - packageName = "through2"; 8111 - version = "4.0.2"; 8112 - src = fetchurl { 8113 - url = "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz"; 8114 - sha512 = "iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw=="; 8115 - }; 8116 - }; 8117 - "through2-filter-3.0.0" = { 8118 - name = "through2-filter"; 8119 - packageName = "through2-filter"; 8120 - version = "3.0.0"; 8121 - src = fetchurl { 8122 - url = "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz"; 8123 - sha512 = "jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA=="; 8124 - }; 8125 - }; 8126 - "ticky-1.0.1" = { 8127 - name = "ticky"; 8128 - packageName = "ticky"; 8129 - version = "1.0.1"; 8130 - src = fetchurl { 8131 - url = "https://registry.npmjs.org/ticky/-/ticky-1.0.1.tgz"; 8132 - sha512 = "RX35iq/D+lrsqhcPWIazM9ELkjOe30MSeoBHQHSsRwd1YuhJO5ui1K1/R0r7N3mFvbLBs33idw+eR6j+w6i/DA=="; 8133 - }; 8134 - }; 8135 - "time-stamp-1.1.0" = { 8136 - name = "time-stamp"; 8137 - packageName = "time-stamp"; 8138 - version = "1.1.0"; 8139 - src = fetchurl { 8140 - url = "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz"; 8141 - sha512 = "gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw=="; 8142 - }; 8143 - }; 8144 - "timers-browserify-1.4.2" = { 8145 - name = "timers-browserify"; 8146 - packageName = "timers-browserify"; 8147 - version = "1.4.2"; 8148 - src = fetchurl { 8149 - url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz"; 8150 - sha512 = "PIxwAupJZiYU4JmVZYwXp9FKsHMXb5h0ZEFyuXTAn8WLHOlcij+FEcbrvDsom1o5dr1YggEtFbECvGCW2sT53Q=="; 8151 - }; 8152 - }; 8153 - "timers-ext-0.1.7" = { 8154 - name = "timers-ext"; 8155 - packageName = "timers-ext"; 8156 - version = "0.1.7"; 8157 - src = fetchurl { 8158 - url = "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz"; 8159 - sha512 = "b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ=="; 8160 - }; 8161 - }; 8162 - "tmp-0.0.33" = { 8163 - name = "tmp"; 8164 - packageName = "tmp"; 8165 - version = "0.0.33"; 8166 - src = fetchurl { 8167 - url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"; 8168 - sha512 = "jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="; 8169 - }; 8170 - }; 8171 - "to-absolute-glob-2.0.2" = { 8172 - name = "to-absolute-glob"; 8173 - packageName = "to-absolute-glob"; 8174 - version = "2.0.2"; 8175 - src = fetchurl { 8176 - url = "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz"; 8177 - sha512 = "rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA=="; 8178 - }; 8179 - }; 8180 - "to-object-path-0.3.0" = { 8181 - name = "to-object-path"; 8182 - packageName = "to-object-path"; 8183 - version = "0.3.0"; 8184 - src = fetchurl { 8185 - url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"; 8186 - sha512 = "9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg=="; 8187 - }; 8188 - }; 8189 - "to-regex-3.0.2" = { 8190 - name = "to-regex"; 8191 - packageName = "to-regex"; 8192 - version = "3.0.2"; 8193 - src = fetchurl { 8194 - url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz"; 8195 - sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw=="; 8196 - }; 8197 - }; 8198 - "to-regex-range-2.1.1" = { 8199 - name = "to-regex-range"; 8200 - packageName = "to-regex-range"; 8201 - version = "2.1.1"; 8202 - src = fetchurl { 8203 - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"; 8204 - sha512 = "ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg=="; 8205 - }; 8206 - }; 8207 - "to-regex-range-5.0.1" = { 8208 - name = "to-regex-range"; 8209 - packageName = "to-regex-range"; 8210 - version = "5.0.1"; 8211 - src = fetchurl { 8212 - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"; 8213 - sha512 = "65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="; 8214 - }; 8215 - }; 8216 - "to-through-2.0.0" = { 8217 - name = "to-through"; 8218 - packageName = "to-through"; 8219 - version = "2.0.0"; 8220 - src = fetchurl { 8221 - url = "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz"; 8222 - sha512 = "+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q=="; 8223 - }; 8224 - }; 8225 - "toidentifier-1.0.1" = { 8226 - name = "toidentifier"; 8227 - packageName = "toidentifier"; 8228 - version = "1.0.1"; 8229 - src = fetchurl { 8230 - url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz"; 8231 - sha512 = "o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="; 8232 - }; 8233 - }; 8234 - "tty-browserify-0.0.1" = { 8235 - name = "tty-browserify"; 8236 - packageName = "tty-browserify"; 8237 - version = "0.0.1"; 8238 - src = fetchurl { 8239 - url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz"; 8240 - sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="; 8241 - }; 8242 - }; 8243 - "type-1.2.0" = { 8244 - name = "type"; 8245 - packageName = "type"; 8246 - version = "1.2.0"; 8247 - src = fetchurl { 8248 - url = "https://registry.npmjs.org/type/-/type-1.2.0.tgz"; 8249 - sha512 = "+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg=="; 8250 - }; 8251 - }; 8252 - "type-2.7.2" = { 8253 - name = "type"; 8254 - packageName = "type"; 8255 - version = "2.7.2"; 8256 - src = fetchurl { 8257 - url = "https://registry.npmjs.org/type/-/type-2.7.2.tgz"; 8258 - sha512 = "dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw=="; 8259 - }; 8260 - }; 8261 - "type-check-0.3.2" = { 8262 - name = "type-check"; 8263 - packageName = "type-check"; 8264 - version = "0.3.2"; 8265 - src = fetchurl { 8266 - url = "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz"; 8267 - sha512 = "ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg=="; 8268 - }; 8269 - }; 8270 - "typedarray-0.0.6" = { 8271 - name = "typedarray"; 8272 - packageName = "typedarray"; 8273 - version = "0.0.6"; 8274 - src = fetchurl { 8275 - url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"; 8276 - sha512 = "/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="; 8277 - }; 8278 - }; 8279 - "typescript-4.8.4" = { 8280 - name = "typescript"; 8281 - packageName = "typescript"; 8282 - version = "4.8.4"; 8283 - src = fetchurl { 8284 - url = "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz"; 8285 - sha512 = "QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ=="; 8286 - }; 8287 - }; 8288 - "ua-parser-js-1.0.2" = { 8289 - name = "ua-parser-js"; 8290 - packageName = "ua-parser-js"; 8291 - version = "1.0.2"; 8292 - src = fetchurl { 8293 - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.2.tgz"; 8294 - sha512 = "00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg=="; 8295 - }; 8296 - }; 8297 - "uglify-js-3.4.10" = { 8298 - name = "uglify-js"; 8299 - packageName = "uglify-js"; 8300 - version = "3.4.10"; 8301 - src = fetchurl { 8302 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz"; 8303 - sha512 = "Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw=="; 8304 - }; 8305 - }; 8306 - "uglify-save-license-0.4.1" = { 8307 - name = "uglify-save-license"; 8308 - packageName = "uglify-save-license"; 8309 - version = "0.4.1"; 8310 - src = fetchurl { 8311 - url = "https://registry.npmjs.org/uglify-save-license/-/uglify-save-license-0.4.1.tgz"; 8312 - sha512 = "ErJczQkCvQKoEk7xxIfJTGp2JHtbKr8lEPtTgeJqm3PVCdF930Ba7x+wwtj3dZKwVu7lDy2nTOwncm3qCD+RMw=="; 8313 - }; 8314 - }; 8315 - "ultron-1.0.2" = { 8316 - name = "ultron"; 8317 - packageName = "ultron"; 8318 - version = "1.0.2"; 8319 - src = fetchurl { 8320 - url = "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz"; 8321 - sha512 = "QMpnpVtYaWEeY+MwKDN/UdKlE/LsFZXM5lO1u7GaZzNgmIbGixHEmVMIKT+vqYOALu3m5GYQy9kz4Xu4IVn7Ow=="; 8322 - }; 8323 - }; 8324 - "umd-3.0.3" = { 8325 - name = "umd"; 8326 - packageName = "umd"; 8327 - version = "3.0.3"; 8328 - src = fetchurl { 8329 - url = "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz"; 8330 - sha512 = "4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow=="; 8331 - }; 8332 - }; 8333 - "unbox-primitive-1.0.2" = { 8334 - name = "unbox-primitive"; 8335 - packageName = "unbox-primitive"; 8336 - version = "1.0.2"; 8337 - src = fetchurl { 8338 - url = "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"; 8339 - sha512 = "61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="; 8340 - }; 8341 - }; 8342 - "unc-path-regex-0.1.2" = { 8343 - name = "unc-path-regex"; 8344 - packageName = "unc-path-regex"; 8345 - version = "0.1.2"; 8346 - src = fetchurl { 8347 - url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz"; 8348 - sha512 = "eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg=="; 8349 - }; 8350 - }; 8351 - "undeclared-identifiers-1.1.3" = { 8352 - name = "undeclared-identifiers"; 8353 - packageName = "undeclared-identifiers"; 8354 - version = "1.1.3"; 8355 - src = fetchurl { 8356 - url = "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz"; 8357 - sha512 = "pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw=="; 8358 - }; 8359 - }; 8360 - "undertaker-1.3.0" = { 8361 - name = "undertaker"; 8362 - packageName = "undertaker"; 8363 - version = "1.3.0"; 8364 - src = fetchurl { 8365 - url = "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz"; 8366 - sha512 = "/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg=="; 8367 - }; 8368 - }; 8369 - "undertaker-registry-1.0.1" = { 8370 - name = "undertaker-registry"; 8371 - packageName = "undertaker-registry"; 8372 - version = "1.0.1"; 8373 - src = fetchurl { 8374 - url = "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz"; 8375 - sha512 = "UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw=="; 8376 - }; 8377 - }; 8378 - "union-value-1.0.1" = { 8379 - name = "union-value"; 8380 - packageName = "union-value"; 8381 - version = "1.0.1"; 8382 - src = fetchurl { 8383 - url = "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz"; 8384 - sha512 = "tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg=="; 8385 - }; 8386 - }; 8387 - "uniq-1.0.1" = { 8388 - name = "uniq"; 8389 - packageName = "uniq"; 8390 - version = "1.0.1"; 8391 - src = fetchurl { 8392 - url = "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz"; 8393 - sha512 = "Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA=="; 8394 - }; 8395 - }; 8396 - "uniqs-2.0.0" = { 8397 - name = "uniqs"; 8398 - packageName = "uniqs"; 8399 - version = "2.0.0"; 8400 - src = fetchurl { 8401 - url = "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz"; 8402 - sha512 = "mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ=="; 8403 - }; 8404 - }; 8405 - "unique-stream-2.3.1" = { 8406 - name = "unique-stream"; 8407 - packageName = "unique-stream"; 8408 - version = "2.3.1"; 8409 - src = fetchurl { 8410 - url = "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz"; 8411 - sha512 = "2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A=="; 8412 - }; 8413 - }; 8414 - "universalify-0.1.2" = { 8415 - name = "universalify"; 8416 - packageName = "universalify"; 8417 - version = "0.1.2"; 8418 - src = fetchurl { 8419 - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; 8420 - sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; 8421 - }; 8422 - }; 8423 - "unpipe-1.0.0" = { 8424 - name = "unpipe"; 8425 - packageName = "unpipe"; 8426 - version = "1.0.0"; 8427 - src = fetchurl { 8428 - url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"; 8429 - sha512 = "pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="; 8430 - }; 8431 - }; 8432 - "unset-value-1.0.0" = { 8433 - name = "unset-value"; 8434 - packageName = "unset-value"; 8435 - version = "1.0.0"; 8436 - src = fetchurl { 8437 - url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz"; 8438 - sha512 = "PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ=="; 8439 - }; 8440 - }; 8441 - "upath-1.2.0" = { 8442 - name = "upath"; 8443 - packageName = "upath"; 8444 - version = "1.2.0"; 8445 - src = fetchurl { 8446 - url = "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz"; 8447 - sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 8448 - }; 8449 - }; 8450 - "update-browserslist-db-1.0.10" = { 8451 - name = "update-browserslist-db"; 8452 - packageName = "update-browserslist-db"; 8453 - version = "1.0.10"; 8454 - src = fetchurl { 8455 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz"; 8456 - sha512 = "OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ=="; 8457 - }; 8458 - }; 8459 - "upper-case-1.1.3" = { 8460 - name = "upper-case"; 8461 - packageName = "upper-case"; 8462 - version = "1.1.3"; 8463 - src = fetchurl { 8464 - url = "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz"; 8465 - sha512 = "WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA=="; 8466 - }; 8467 - }; 8468 - "urix-0.1.0" = { 8469 - name = "urix"; 8470 - packageName = "urix"; 8471 - version = "0.1.0"; 8472 - src = fetchurl { 8473 - url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"; 8474 - sha512 = "Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg=="; 8475 - }; 8476 - }; 8477 - "url-0.11.0" = { 8478 - name = "url"; 8479 - packageName = "url"; 8480 - version = "0.11.0"; 8481 - src = fetchurl { 8482 - url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz"; 8483 - sha512 = "kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ=="; 8484 - }; 8485 - }; 8486 - "use-3.1.1" = { 8487 - name = "use"; 8488 - packageName = "use"; 8489 - version = "3.1.1"; 8490 - src = fetchurl { 8491 - url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz"; 8492 - sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="; 8493 - }; 8494 - }; 8495 - "useref-1.4.4" = { 8496 - name = "useref"; 8497 - packageName = "useref"; 8498 - version = "1.4.4"; 8499 - src = fetchurl { 8500 - url = "https://registry.npmjs.org/useref/-/useref-1.4.4.tgz"; 8501 - sha512 = "Hcr9SSq1OsLSa9VAVtA28j8HrpFB2AdbRAkFPbBArDe6y54jQmgulQRxphdi5TAjVPj0mmEJfjBUuZArsmfsqQ=="; 8502 - }; 8503 - }; 8504 - "util-0.10.3" = { 8505 - name = "util"; 8506 - packageName = "util"; 8507 - version = "0.10.3"; 8508 - src = fetchurl { 8509 - url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz"; 8510 - sha512 = "5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ=="; 8511 - }; 8512 - }; 8513 - "util-0.12.5" = { 8514 - name = "util"; 8515 - packageName = "util"; 8516 - version = "0.12.5"; 8517 - src = fetchurl { 8518 - url = "https://registry.npmjs.org/util/-/util-0.12.5.tgz"; 8519 - sha512 = "kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA=="; 8520 - }; 8521 - }; 8522 - "util-deprecate-1.0.2" = { 8523 - name = "util-deprecate"; 8524 - packageName = "util-deprecate"; 8525 - version = "1.0.2"; 8526 - src = fetchurl { 8527 - url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; 8528 - sha512 = "EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="; 8529 - }; 8530 - }; 8531 - "util-extend-1.0.3" = { 8532 - name = "util-extend"; 8533 - packageName = "util-extend"; 8534 - version = "1.0.3"; 8535 - src = fetchurl { 8536 - url = "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz"; 8537 - sha512 = "mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA=="; 8538 - }; 8539 - }; 8540 - "utils-merge-1.0.1" = { 8541 - name = "utils-merge"; 8542 - packageName = "utils-merge"; 8543 - version = "1.0.1"; 8544 - src = fetchurl { 8545 - url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"; 8546 - sha512 = "pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="; 8547 - }; 8548 - }; 8549 - "v8flags-3.2.0" = { 8550 - name = "v8flags"; 8551 - packageName = "v8flags"; 8552 - version = "3.2.0"; 8553 - src = fetchurl { 8554 - url = "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz"; 8555 - sha512 = "mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg=="; 8556 - }; 8557 - }; 8558 - "validate-npm-package-license-3.0.4" = { 8559 - name = "validate-npm-package-license"; 8560 - packageName = "validate-npm-package-license"; 8561 - version = "3.0.4"; 8562 - src = fetchurl { 8563 - url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; 8564 - sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="; 8565 - }; 8566 - }; 8567 - "value-or-function-3.0.0" = { 8568 - name = "value-or-function"; 8569 - packageName = "value-or-function"; 8570 - version = "3.0.0"; 8571 - src = fetchurl { 8572 - url = "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz"; 8573 - sha512 = "jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg=="; 8574 - }; 8575 - }; 8576 - "vary-1.1.2" = { 8577 - name = "vary"; 8578 - packageName = "vary"; 8579 - version = "1.1.2"; 8580 - src = fetchurl { 8581 - url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"; 8582 - sha512 = "BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="; 8583 - }; 8584 - }; 8585 - "vendors-1.0.4" = { 8586 - name = "vendors"; 8587 - packageName = "vendors"; 8588 - version = "1.0.4"; 8589 - src = fetchurl { 8590 - url = "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz"; 8591 - sha512 = "/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w=="; 8592 - }; 8593 - }; 8594 - "vinyl-0.5.3" = { 8595 - name = "vinyl"; 8596 - packageName = "vinyl"; 8597 - version = "0.5.3"; 8598 - src = fetchurl { 8599 - url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz"; 8600 - sha512 = "P5zdf3WB9uzr7IFoVQ2wZTmUwHL8cMZWJGzLBNCHNZ3NB6HTMsYABtt7z8tAGIINLXyAob9B9a1yzVGMFOYKEA=="; 8601 - }; 8602 - }; 8603 - "vinyl-2.2.1" = { 8604 - name = "vinyl"; 8605 - packageName = "vinyl"; 8606 - version = "2.2.1"; 8607 - src = fetchurl { 8608 - url = "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz"; 8609 - sha512 = "LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw=="; 8610 - }; 8611 - }; 8612 - "vinyl-file-3.0.0" = { 8613 - name = "vinyl-file"; 8614 - packageName = "vinyl-file"; 8615 - version = "3.0.0"; 8616 - src = fetchurl { 8617 - url = "https://registry.npmjs.org/vinyl-file/-/vinyl-file-3.0.0.tgz"; 8618 - sha512 = "BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg=="; 8619 - }; 8620 - }; 8621 - "vinyl-fs-3.0.3" = { 8622 - name = "vinyl-fs"; 8623 - packageName = "vinyl-fs"; 8624 - version = "3.0.3"; 8625 - src = fetchurl { 8626 - url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz"; 8627 - sha512 = "vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng=="; 8628 - }; 8629 - }; 8630 - "vinyl-sourcemap-1.1.0" = { 8631 - name = "vinyl-sourcemap"; 8632 - packageName = "vinyl-sourcemap"; 8633 - version = "1.1.0"; 8634 - src = fetchurl { 8635 - url = "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz"; 8636 - sha512 = "NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA=="; 8637 - }; 8638 - }; 8639 - "vinyl-sourcemaps-apply-0.2.1" = { 8640 - name = "vinyl-sourcemaps-apply"; 8641 - packageName = "vinyl-sourcemaps-apply"; 8642 - version = "0.2.1"; 8643 - src = fetchurl { 8644 - url = "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz"; 8645 - sha512 = "+oDh3KYZBoZC8hfocrbrxbLUeaYtQK7J5WU5Br9VqWqmCll3tFJqKp97GC9GmMsVIL0qnx2DgEDVxdo5EZ5sSw=="; 8646 - }; 8647 - }; 8648 - "vm-browserify-1.1.2" = { 8649 - name = "vm-browserify"; 8650 - packageName = "vm-browserify"; 8651 - version = "1.1.2"; 8652 - src = fetchurl { 8653 - url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz"; 8654 - sha512 = "2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="; 8655 - }; 8656 - }; 8657 - "whet.extend-0.9.9" = { 8658 - name = "whet.extend"; 8659 - packageName = "whet.extend"; 8660 - version = "0.9.9"; 8661 - src = fetchurl { 8662 - url = "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz"; 8663 - sha512 = "mmIPAft2vTgEILgPeZFqE/wWh24SEsR/k+N9fJ3Jxrz44iDFy9aemCxdksfURSHYFCLmvs/d/7Iso5XjPpNfrA=="; 8664 - }; 8665 - }; 8666 - "which-1.3.1" = { 8667 - name = "which"; 8668 - packageName = "which"; 8669 - version = "1.3.1"; 8670 - src = fetchurl { 8671 - url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz"; 8672 - sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="; 8673 - }; 8674 - }; 8675 - "which-boxed-primitive-1.0.2" = { 8676 - name = "which-boxed-primitive"; 8677 - packageName = "which-boxed-primitive"; 8678 - version = "1.0.2"; 8679 - src = fetchurl { 8680 - url = "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"; 8681 - sha512 = "bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="; 8682 - }; 8683 - }; 8684 - "which-module-1.0.0" = { 8685 - name = "which-module"; 8686 - packageName = "which-module"; 8687 - version = "1.0.0"; 8688 - src = fetchurl { 8689 - url = "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz"; 8690 - sha512 = "F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ=="; 8691 - }; 8692 - }; 8693 - "which-typed-array-1.1.8" = { 8694 - name = "which-typed-array"; 8695 - packageName = "which-typed-array"; 8696 - version = "1.1.8"; 8697 - src = fetchurl { 8698 - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz"; 8699 - sha512 = "Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw=="; 8700 - }; 8701 - }; 8702 - "word-wrap-1.2.3" = { 8703 - name = "word-wrap"; 8704 - packageName = "word-wrap"; 8705 - version = "1.2.3"; 8706 - src = fetchurl { 8707 - url = "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"; 8708 - sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 8709 - }; 8710 - }; 8711 - "wrap-ansi-2.1.0" = { 8712 - name = "wrap-ansi"; 8713 - packageName = "wrap-ansi"; 8714 - version = "2.1.0"; 8715 - src = fetchurl { 8716 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; 8717 - sha512 = "vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw=="; 8718 - }; 8719 - }; 8720 - "wrap-ansi-7.0.0" = { 8721 - name = "wrap-ansi"; 8722 - packageName = "wrap-ansi"; 8723 - version = "7.0.0"; 8724 - src = fetchurl { 8725 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; 8726 - sha512 = "YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="; 8727 - }; 8728 - }; 8729 - "wrappy-1.0.2" = { 8730 - name = "wrappy"; 8731 - packageName = "wrappy"; 8732 - version = "1.0.2"; 8733 - src = fetchurl { 8734 - url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; 8735 - sha512 = "l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="; 8736 - }; 8737 - }; 8738 - "write-0.2.1" = { 8739 - name = "write"; 8740 - packageName = "write"; 8741 - version = "0.2.1"; 8742 - src = fetchurl { 8743 - url = "https://registry.npmjs.org/write/-/write-0.2.1.tgz"; 8744 - sha512 = "CJ17OoULEKXpA5pef3qLj5AxTJ6mSt7g84he2WIskKwqFO4T97d5V7Tadl0DYDk7qyUOQD5WlUlOMChaYrhxeA=="; 8745 - }; 8746 - }; 8747 - "ws-1.1.5" = { 8748 - name = "ws"; 8749 - packageName = "ws"; 8750 - version = "1.1.5"; 8751 - src = fetchurl { 8752 - url = "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz"; 8753 - sha512 = "o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w=="; 8754 - }; 8755 - }; 8756 - "ws-8.2.3" = { 8757 - name = "ws"; 8758 - packageName = "ws"; 8759 - version = "8.2.3"; 8760 - src = fetchurl { 8761 - url = "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz"; 8762 - sha512 = "wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA=="; 8763 - }; 8764 - }; 8765 - "xmlhttprequest-ssl-2.0.0" = { 8766 - name = "xmlhttprequest-ssl"; 8767 - packageName = "xmlhttprequest-ssl"; 8768 - version = "2.0.0"; 8769 - src = fetchurl { 8770 - url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz"; 8771 - sha512 = "QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A=="; 8772 - }; 8773 - }; 8774 - "xtend-4.0.2" = { 8775 - name = "xtend"; 8776 - packageName = "xtend"; 8777 - version = "4.0.2"; 8778 - src = fetchurl { 8779 - url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; 8780 - sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 8781 - }; 8782 - }; 8783 - "y18n-3.2.2" = { 8784 - name = "y18n"; 8785 - packageName = "y18n"; 8786 - version = "3.2.2"; 8787 - src = fetchurl { 8788 - url = "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz"; 8789 - sha512 = "uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ=="; 8790 - }; 8791 - }; 8792 - "y18n-5.0.8" = { 8793 - name = "y18n"; 8794 - packageName = "y18n"; 8795 - version = "5.0.8"; 8796 - src = fetchurl { 8797 - url = "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz"; 8798 - sha512 = "0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="; 8799 - }; 8800 - }; 8801 - "yallist-2.1.2" = { 8802 - name = "yallist"; 8803 - packageName = "yallist"; 8804 - version = "2.1.2"; 8805 - src = fetchurl { 8806 - url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; 8807 - sha512 = "ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A=="; 8808 - }; 8809 - }; 8810 - "yargs-17.1.1" = { 8811 - name = "yargs"; 8812 - packageName = "yargs"; 8813 - version = "17.1.1"; 8814 - src = fetchurl { 8815 - url = "https://registry.npmjs.org/yargs/-/yargs-17.1.1.tgz"; 8816 - sha512 = "c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ=="; 8817 - }; 8818 - }; 8819 - "yargs-17.6.0" = { 8820 - name = "yargs"; 8821 - packageName = "yargs"; 8822 - version = "17.6.0"; 8823 - src = fetchurl { 8824 - url = "https://registry.npmjs.org/yargs/-/yargs-17.6.0.tgz"; 8825 - sha512 = "8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g=="; 8826 - }; 8827 - }; 8828 - "yargs-7.1.2" = { 8829 - name = "yargs"; 8830 - packageName = "yargs"; 8831 - version = "7.1.2"; 8832 - src = fetchurl { 8833 - url = "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz"; 8834 - sha512 = "ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA=="; 8835 - }; 8836 - }; 8837 - "yargs-parser-20.2.9" = { 8838 - name = "yargs-parser"; 8839 - packageName = "yargs-parser"; 8840 - version = "20.2.9"; 8841 - src = fetchurl { 8842 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz"; 8843 - sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 8844 - }; 8845 - }; 8846 - "yargs-parser-21.1.1" = { 8847 - name = "yargs-parser"; 8848 - packageName = "yargs-parser"; 8849 - version = "21.1.1"; 8850 - src = fetchurl { 8851 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz"; 8852 - sha512 = "tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="; 8853 - }; 8854 - }; 8855 - "yargs-parser-5.0.1" = { 8856 - name = "yargs-parser"; 8857 - packageName = "yargs-parser"; 8858 - version = "5.0.1"; 8859 - src = fetchurl { 8860 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz"; 8861 - sha512 = "wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA=="; 8862 - }; 8863 - }; 8864 - "zrender-3.7.4" = { 8865 - name = "zrender"; 8866 - packageName = "zrender"; 8867 - version = "3.7.4"; 8868 - src = fetchurl { 8869 - url = "https://registry.npmjs.org/zrender/-/zrender-3.7.4.tgz"; 8870 - sha512 = "5Nz7+L1wIoL0+Pp/iOP56jD6eD017qC9VRSgUBheXBiAHgOBJZ4uh4/g6e83acIwa8RKSyZf/FlceKu5ntUuxQ=="; 8871 - }; 8872 - }; 8873 - }; 8874 - args = { 8875 - name = "ariang"; 8876 - packageName = "ariang"; 8877 - version = "1.3.4"; 8878 - src = ../../../../../../../../nix/store/rhbjvs607bgp8gcyp2czg18r5ygwjpl6-source; 8879 - dependencies = [ 8880 - (sources."@gulp-sourcemaps/identity-map-2.0.1" // { 8881 - dependencies = [ 8882 - sources."acorn-6.4.2" 8883 - sources."picocolors-0.2.1" 8884 - sources."postcss-7.0.39" 8885 - sources."source-map-0.6.1" 8886 - sources."through2-3.0.2" 8887 - ]; 8888 - }) 8889 - (sources."@gulp-sourcemaps/map-sources-1.0.0" // { 8890 - dependencies = [ 8891 - sources."normalize-path-2.1.1" 8892 - ]; 8893 - }) 8894 - sources."@nodelib/fs.scandir-2.1.5" 8895 - sources."@nodelib/fs.stat-2.0.5" 8896 - sources."@nodelib/fs.walk-1.2.8" 8897 - sources."@socket.io/component-emitter-3.1.0" 8898 - sources."@types/cookie-0.4.1" 8899 - sources."@types/cors-2.8.12" 8900 - sources."@types/expect-1.20.4" 8901 - sources."@types/node-18.11.7" 8902 - sources."@types/vinyl-2.0.6" 8903 - sources."JSONStream-1.3.5" 8904 - sources."accepts-1.3.8" 8905 - sources."acorn-7.4.1" 8906 - (sources."acorn-jsx-3.0.1" // { 8907 - dependencies = [ 8908 - sources."acorn-3.3.0" 8909 - ]; 8910 - }) 8911 - sources."acorn-node-1.8.2" 8912 - sources."acorn-walk-7.2.0" 8913 - sources."admin-lte-2.4.18" 8914 - sources."aggregate-error-3.1.0" 8915 - sources."ajv-5.5.2" 8916 - sources."ajv-keywords-2.1.1" 8917 - sources."alphanum-sort-1.0.2" 8918 - sources."angular-1.6.10" 8919 - sources."angular-animate-1.6.10" 8920 - sources."angular-bittorrent-peerid-1.3.4" 8921 - sources."angular-busy-4.1.4" 8922 - sources."angular-clipboard-1.7.0" 8923 - sources."angular-cookies-1.6.10" 8924 - sources."angular-input-dropdown-git+https://github.com/mayswind/angular-input-dropdown.git#68670e39816698b3eb98c0e740a0efe77d5fbdd1" 8925 - sources."angular-local-storage-0.7.1" 8926 - sources."angular-messages-1.6.10" 8927 - sources."angular-moment-1.3.0" 8928 - sources."angular-promise-buttons-0.1.23" 8929 - sources."angular-route-1.6.10" 8930 - sources."angular-sanitize-1.6.10" 8931 - (sources."angular-sweetalert-1.1.2" // { 8932 - dependencies = [ 8933 - sources."sweetalert-0.4.2" 8934 - ]; 8935 - }) 8936 - sources."angular-touch-1.6.10" 8937 - (sources."angular-translate-2.19.0" // { 8938 - dependencies = [ 8939 - sources."angular-1.8.3" 8940 - ]; 8941 - }) 8942 - sources."angular-ui-notification-0.3.6" 8943 - sources."angular-utf8-base64-0.0.5" 8944 - sources."angular-websocket-2.0.1" 8945 - sources."angularjs-dragula-2.0.0" 8946 - sources."ansi-colors-1.1.0" 8947 - sources."ansi-cyan-0.1.1" 8948 - sources."ansi-escapes-3.2.0" 8949 - sources."ansi-gray-0.1.1" 8950 - sources."ansi-red-0.1.1" 8951 - sources."ansi-regex-2.1.1" 8952 - sources."ansi-styles-2.2.1" 8953 - sources."ansi-wrap-0.1.0" 8954 - sources."anymatch-3.1.2" 8955 - sources."append-buffer-1.0.2" 8956 - sources."archy-1.0.0" 8957 - sources."argparse-1.0.10" 8958 - sources."arr-diff-4.0.0" 8959 - sources."arr-filter-1.1.2" 8960 - sources."arr-flatten-1.1.0" 8961 - sources."arr-map-2.0.2" 8962 - sources."arr-union-3.1.0" 8963 - sources."array-differ-1.0.0" 8964 - sources."array-each-1.0.1" 8965 - (sources."array-initial-1.1.0" // { 8966 - dependencies = [ 8967 - sources."is-number-4.0.0" 8968 - ]; 8969 - }) 8970 - (sources."array-last-1.3.0" // { 8971 - dependencies = [ 8972 - sources."is-number-4.0.0" 8973 - ]; 8974 - }) 8975 - sources."array-slice-1.1.0" 8976 - (sources."array-sort-1.0.0" // { 8977 - dependencies = [ 8978 - sources."kind-of-5.1.0" 8979 - ]; 8980 - }) 8981 - sources."array-union-2.1.0" 8982 - sources."array-uniq-1.0.3" 8983 - sources."array-unique-0.3.2" 8984 - (sources."asn1.js-5.4.1" // { 8985 - dependencies = [ 8986 - sources."bn.js-4.12.0" 8987 - ]; 8988 - }) 8989 - (sources."assert-1.5.0" // { 8990 - dependencies = [ 8991 - sources."inherits-2.0.1" 8992 - sources."util-0.10.3" 8993 - ]; 8994 - }) 8995 - sources."assign-symbols-1.0.0" 8996 - sources."async-2.6.4" 8997 - sources."async-done-1.3.2" 8998 - sources."async-each-1.0.3" 8999 - sources."async-each-series-0.1.1" 9000 - sources."async-settle-1.0.0" 9001 - sources."atoa-1.0.0" 9002 - sources."atob-2.1.2" 9003 - sources."autoprefixer-10.4.13" 9004 - sources."available-typed-arrays-1.0.5" 9005 - sources."awesome-bootstrap-checkbox-0.3.7" 9006 - sources."axios-0.21.4" 9007 - sources."babel-code-frame-6.26.0" 9008 - sources."bach-1.2.0" 9009 - sources."balanced-match-1.0.2" 9010 - (sources."base-0.11.2" // { 9011 - dependencies = [ 9012 - sources."define-property-1.0.0" 9013 - sources."is-accessor-descriptor-1.0.0" 9014 - sources."is-data-descriptor-1.0.0" 9015 - sources."is-descriptor-1.0.2" 9016 - ]; 9017 - }) 9018 - sources."base64-js-1.5.1" 9019 - sources."base64id-2.0.0" 9020 - sources."batch-0.6.1" 9021 - sources."beeper-1.1.1" 9022 - sources."binary-extensions-2.2.0" 9023 - sources."binaryextensions-2.3.0" 9024 - sources."bn.js-5.2.1" 9025 - sources."bootstrap-3.4.1" 9026 - sources."bootstrap-colorpicker-2.5.3" 9027 - sources."bootstrap-contextmenu-1.0.0" 9028 - sources."bootstrap-datepicker-1.9.0" 9029 - sources."bootstrap-daterangepicker-2.1.30" 9030 - sources."bootstrap-slider-9.10.0" 9031 - sources."brace-expansion-1.1.11" 9032 - sources."braces-3.0.2" 9033 - sources."brorand-1.1.0" 9034 - (sources."brotli-size-4.0.0" // { 9035 - dependencies = [ 9036 - sources."duplexer-0.1.1" 9037 - ]; 9038 - }) 9039 - sources."browser-pack-6.1.0" 9040 - sources."browser-resolve-2.0.0" 9041 - sources."browser-sync-2.27.10" 9042 - sources."browser-sync-client-2.27.10" 9043 - sources."browser-sync-ui-2.27.10" 9044 - sources."browserify-17.0.0" 9045 - sources."browserify-aes-1.2.0" 9046 - sources."browserify-cipher-1.0.1" 9047 - sources."browserify-des-1.0.2" 9048 - sources."browserify-rsa-4.1.0" 9049 - (sources."browserify-sign-4.2.1" // { 9050 - dependencies = [ 9051 - sources."readable-stream-3.6.0" 9052 - ]; 9053 - }) 9054 - sources."browserify-zlib-0.2.0" 9055 - sources."browserslist-4.21.4" 9056 - sources."bs-recipes-1.3.4" 9057 - sources."bs-snippet-injector-2.0.1" 9058 - sources."buffer-5.2.1" 9059 - sources."buffer-equal-1.0.1" 9060 - sources."buffer-from-1.1.2" 9061 - sources."buffer-xor-1.0.3" 9062 - sources."builtin-status-codes-3.0.0" 9063 - sources."bytes-3.1.2" 9064 - sources."cache-base-1.0.1" 9065 - sources."cached-path-relative-1.1.0" 9066 - sources."call-bind-1.0.2" 9067 - sources."caller-path-0.1.0" 9068 - sources."callsites-0.2.0" 9069 - sources."camel-case-3.0.0" 9070 - sources."camelcase-3.0.0" 9071 - (sources."caniuse-api-1.6.1" // { 9072 - dependencies = [ 9073 - sources."browserslist-1.7.7" 9074 - sources."lodash.memoize-4.1.2" 9075 - ]; 9076 - }) 9077 - sources."caniuse-db-1.0.30001426" 9078 - sources."caniuse-lite-1.0.30001426" 9079 - sources."chalk-1.1.3" 9080 - sources."chardet-0.4.2" 9081 - sources."charm-0.1.2" 9082 - sources."chart.js-1.1.1" 9083 - sources."chokidar-3.5.3" 9084 - sources."cipher-base-1.0.4" 9085 - sources."circular-json-0.3.3" 9086 - sources."ckeditor-4.12.1" 9087 - sources."clap-1.2.3" 9088 - (sources."class-utils-0.3.6" // { 9089 - dependencies = [ 9090 - sources."define-property-0.2.5" 9091 - ]; 9092 - }) 9093 - sources."classie-1.0.0" 9094 - (sources."clean-css-4.2.4" // { 9095 - dependencies = [ 9096 - sources."source-map-0.6.1" 9097 - ]; 9098 - }) 9099 - sources."clean-stack-2.2.0" 9100 - sources."cli-cursor-2.1.0" 9101 - sources."cli-width-2.2.1" 9102 - (sources."cliui-7.0.4" // { 9103 - dependencies = [ 9104 - sources."ansi-regex-5.0.1" 9105 - sources."strip-ansi-6.0.1" 9106 - ]; 9107 - }) 9108 - sources."clone-2.1.2" 9109 - sources."clone-buffer-1.0.0" 9110 - sources."clone-stats-1.0.0" 9111 - sources."cloneable-readable-1.1.3" 9112 - sources."co-4.6.0" 9113 - sources."coa-1.0.4" 9114 - sources."code-point-at-1.1.0" 9115 - sources."collection-map-1.0.0" 9116 - sources."collection-visit-1.0.0" 9117 - (sources."color-0.11.4" // { 9118 - dependencies = [ 9119 - sources."clone-1.0.4" 9120 - sources."color-convert-1.9.3" 9121 - sources."color-name-1.1.3" 9122 - ]; 9123 - }) 9124 - sources."color-convert-2.0.1" 9125 - sources."color-name-1.1.4" 9126 - sources."color-string-0.3.0" 9127 - sources."color-support-1.1.3" 9128 - sources."colormin-1.1.2" 9129 - sources."colors-1.1.2" 9130 - sources."combine-source-map-0.8.0" 9131 - sources."commander-2.20.3" 9132 - sources."component-emitter-1.3.0" 9133 - sources."concat-map-0.0.1" 9134 - sources."concat-stream-1.6.2" 9135 - (sources."concat-with-sourcemaps-1.1.0" // { 9136 - dependencies = [ 9137 - sources."source-map-0.6.1" 9138 - ]; 9139 - }) 9140 - (sources."connect-3.6.6" // { 9141 - dependencies = [ 9142 - sources."debug-2.6.9" 9143 - sources."ms-2.0.0" 9144 - ]; 9145 - }) 9146 - sources."connect-history-api-fallback-1.6.0" 9147 - sources."console-browserify-1.2.0" 9148 - sources."constants-browserify-1.0.0" 9149 - sources."contra-1.9.4" 9150 - sources."convert-source-map-1.1.3" 9151 - sources."cookie-0.4.2" 9152 - sources."copy-descriptor-0.1.1" 9153 - (sources."copy-props-2.0.5" // { 9154 - dependencies = [ 9155 - sources."is-plain-object-5.0.0" 9156 - ]; 9157 - }) 9158 - sources."core-util-is-1.0.3" 9159 - sources."cors-2.8.5" 9160 - (sources."create-ecdh-4.0.4" // { 9161 - dependencies = [ 9162 - sources."bn.js-4.12.0" 9163 - ]; 9164 - }) 9165 - sources."create-hash-1.2.0" 9166 - sources."create-hmac-1.1.7" 9167 - sources."cross-spawn-5.1.0" 9168 - sources."crossvent-1.5.4" 9169 - sources."crypto-browserify-3.12.0" 9170 - (sources."css-3.0.0" // { 9171 - dependencies = [ 9172 - sources."source-map-0.6.1" 9173 - sources."source-map-resolve-0.6.0" 9174 - ]; 9175 - }) 9176 - sources."css-color-names-0.0.4" 9177 - (sources."cssnano-3.10.0" // { 9178 - dependencies = [ 9179 - sources."autoprefixer-6.7.7" 9180 - sources."browserslist-1.7.7" 9181 - sources."postcss-5.2.18" 9182 - sources."postcss-value-parser-3.3.1" 9183 - sources."supports-color-3.2.3" 9184 - ]; 9185 - }) 9186 - sources."csso-2.3.2" 9187 - sources."custom-event-1.0.0" 9188 - sources."d-1.0.1" 9189 - sources."dash-ast-1.0.0" 9190 - sources."datatables.net-1.12.1" 9191 - sources."datatables.net-bs-1.12.1" 9192 - sources."dateformat-2.2.0" 9193 - sources."debug-4.3.4" 9194 - (sources."debug-fabulous-1.1.0" // { 9195 - dependencies = [ 9196 - sources."debug-3.2.7" 9197 - ]; 9198 - }) 9199 - sources."decamelize-1.2.0" 9200 - sources."decode-uri-component-0.2.0" 9201 - sources."deep-is-0.1.4" 9202 - (sources."default-compare-1.0.0" // { 9203 - dependencies = [ 9204 - sources."kind-of-5.1.0" 9205 - ]; 9206 - }) 9207 - sources."default-resolution-2.0.0" 9208 - sources."define-properties-1.1.4" 9209 - (sources."define-property-2.0.2" // { 9210 - dependencies = [ 9211 - sources."is-accessor-descriptor-1.0.0" 9212 - sources."is-data-descriptor-1.0.0" 9213 - sources."is-descriptor-1.0.2" 9214 - ]; 9215 - }) 9216 - sources."defined-1.0.1" 9217 - sources."del-6.1.1" 9218 - sources."depd-2.0.0" 9219 - sources."deps-sort-2.0.1" 9220 - sources."des.js-1.0.1" 9221 - sources."destroy-1.0.4" 9222 - sources."detect-file-1.0.0" 9223 - sources."detect-newline-2.1.0" 9224 - sources."detective-5.2.1" 9225 - sources."dev-ip-1.0.1" 9226 - (sources."diffie-hellman-5.0.3" // { 9227 - dependencies = [ 9228 - sources."bn.js-4.12.0" 9229 - ]; 9230 - }) 9231 - sources."dir-glob-3.0.1" 9232 - sources."dlv-1.1.3" 9233 - sources."doctrine-2.1.0" 9234 - sources."domain-browser-1.2.0" 9235 - sources."domhelper-0.9.1" 9236 - sources."dragula-3.7.2" 9237 - sources."duplexer-0.1.2" 9238 - sources."duplexer2-0.1.4" 9239 - sources."duplexify-3.7.1" 9240 - sources."each-props-1.3.2" 9241 - sources."easy-extender-2.3.4" 9242 - sources."eazy-logger-3.1.0" 9243 - sources."echarts-3.8.5" 9244 - sources."ee-first-1.1.1" 9245 - sources."electron-to-chromium-1.4.284" 9246 - (sources."elliptic-6.5.4" // { 9247 - dependencies = [ 9248 - sources."bn.js-4.12.0" 9249 - ]; 9250 - }) 9251 - sources."emoji-regex-8.0.0" 9252 - sources."encodeurl-1.0.2" 9253 - sources."end-of-stream-1.4.4" 9254 - (sources."engine.io-6.2.0" // { 9255 - dependencies = [ 9256 - sources."ws-8.2.3" 9257 - ]; 9258 - }) 9259 - (sources."engine.io-client-6.2.3" // { 9260 - dependencies = [ 9261 - sources."ws-8.2.3" 9262 - ]; 9263 - }) 9264 - sources."engine.io-parser-5.0.4" 9265 - sources."error-ex-1.3.2" 9266 - sources."es-abstract-1.20.4" 9267 - sources."es-to-primitive-1.2.1" 9268 - sources."es5-ext-0.10.62" 9269 - sources."es6-iterator-2.0.3" 9270 - sources."es6-symbol-3.1.3" 9271 - sources."es6-weak-map-2.0.3" 9272 - sources."escalade-3.1.1" 9273 - sources."escape-html-1.0.3" 9274 - sources."escape-string-regexp-1.0.5" 9275 - (sources."eslint-4.19.1" // { 9276 - dependencies = [ 9277 - sources."ansi-regex-3.0.1" 9278 - sources."ansi-styles-3.2.1" 9279 - sources."chalk-2.4.2" 9280 - sources."color-convert-1.9.3" 9281 - sources."color-name-1.1.3" 9282 - sources."debug-3.2.7" 9283 - sources."esprima-4.0.1" 9284 - sources."has-flag-3.0.0" 9285 - sources."ignore-3.3.10" 9286 - sources."js-yaml-3.14.1" 9287 - sources."strip-ansi-4.0.0" 9288 - sources."supports-color-5.5.0" 9289 - ]; 9290 - }) 9291 - sources."eslint-config-angular-0.5.0" 9292 - sources."eslint-plugin-angular-4.1.0" 9293 - sources."eslint-scope-3.7.3" 9294 - sources."eslint-visitor-keys-1.3.0" 9295 - (sources."espree-3.5.4" // { 9296 - dependencies = [ 9297 - sources."acorn-5.7.4" 9298 - ]; 9299 - }) 9300 - sources."esprima-2.7.3" 9301 - (sources."esquery-1.4.0" // { 9302 - dependencies = [ 9303 - sources."estraverse-5.3.0" 9304 - ]; 9305 - }) 9306 - (sources."esrecurse-4.3.0" // { 9307 - dependencies = [ 9308 - sources."estraverse-5.3.0" 9309 - ]; 9310 - }) 9311 - sources."estraverse-4.3.0" 9312 - sources."esutils-2.0.3" 9313 - sources."etag-1.8.1" 9314 - sources."eve-raphael-0.5.0" 9315 - sources."event-emitter-0.3.5" 9316 - sources."event-stream-4.0.1" 9317 - sources."eventemitter3-4.0.7" 9318 - sources."events-3.3.0" 9319 - sources."evp_bytestokey-1.0.3" 9320 - (sources."expand-brackets-2.1.4" // { 9321 - dependencies = [ 9322 - sources."debug-2.6.9" 9323 - sources."define-property-0.2.5" 9324 - sources."extend-shallow-2.0.1" 9325 - sources."ms-2.0.0" 9326 - ]; 9327 - }) 9328 - sources."expand-tilde-2.0.2" 9329 - (sources."ext-1.7.0" // { 9330 - dependencies = [ 9331 - sources."type-2.7.2" 9332 - ]; 9333 - }) 9334 - sources."extend-3.0.2" 9335 - (sources."extend-shallow-3.0.2" // { 9336 - dependencies = [ 9337 - sources."is-extendable-1.0.1" 9338 - ]; 9339 - }) 9340 - sources."external-editor-2.2.0" 9341 - (sources."extglob-2.0.4" // { 9342 - dependencies = [ 9343 - sources."define-property-1.0.0" 9344 - sources."extend-shallow-2.0.1" 9345 - sources."is-accessor-descriptor-1.0.0" 9346 - sources."is-data-descriptor-1.0.0" 9347 - sources."is-descriptor-1.0.2" 9348 - ]; 9349 - }) 9350 - sources."fancy-log-1.3.3" 9351 - sources."fast-deep-equal-1.1.0" 9352 - sources."fast-glob-3.2.12" 9353 - sources."fast-json-stable-stringify-2.1.0" 9354 - sources."fast-levenshtein-1.1.4" 9355 - sources."fast-safe-stringify-2.1.1" 9356 - sources."fastclick-1.0.6" 9357 - sources."fastq-1.13.0" 9358 - sources."figures-2.0.0" 9359 - sources."file-entry-cache-2.0.0" 9360 - sources."fill-range-7.0.1" 9361 - (sources."finalhandler-1.1.0" // { 9362 - dependencies = [ 9363 - sources."debug-2.6.9" 9364 - sources."ms-2.0.0" 9365 - ]; 9366 - }) 9367 - sources."find-up-1.1.2" 9368 - (sources."findup-sync-3.0.0" // { 9369 - dependencies = [ 9370 - (sources."braces-2.3.2" // { 9371 - dependencies = [ 9372 - sources."extend-shallow-2.0.1" 9373 - ]; 9374 - }) 9375 - (sources."fill-range-4.0.0" // { 9376 - dependencies = [ 9377 - sources."extend-shallow-2.0.1" 9378 - ]; 9379 - }) 9380 - (sources."is-number-3.0.0" // { 9381 - dependencies = [ 9382 - sources."kind-of-3.2.2" 9383 - ]; 9384 - }) 9385 - sources."micromatch-3.1.10" 9386 - sources."to-regex-range-2.1.1" 9387 - ]; 9388 - }) 9389 - sources."fined-1.2.0" 9390 - sources."first-chunk-stream-2.0.0" 9391 - sources."flagged-respawn-1.0.1" 9392 - (sources."flat-cache-1.3.4" // { 9393 - dependencies = [ 9394 - sources."rimraf-2.6.3" 9395 - ]; 9396 - }) 9397 - sources."flatten-1.0.3" 9398 - sources."flot-0.8.3" 9399 - sources."flush-write-stream-1.1.1" 9400 - sources."follow-redirects-1.15.2" 9401 - sources."font-awesome-4.7.0" 9402 - sources."for-each-0.3.3" 9403 - sources."for-in-1.0.2" 9404 - sources."for-own-1.0.0" 9405 - sources."fork-stream-0.0.4" 9406 - sources."fraction.js-4.2.0" 9407 - sources."fragment-cache-0.2.1" 9408 - sources."fresh-0.5.2" 9409 - sources."from-0.1.7" 9410 - sources."fs-extra-3.0.1" 9411 - sources."fs-mkdirp-stream-1.0.0" 9412 - sources."fs.realpath-1.0.0" 9413 - sources."fsevents-2.3.2" 9414 - sources."fullcalendar-3.10.5" 9415 - sources."function-bind-1.1.1" 9416 - sources."function.prototype.name-1.1.5" 9417 - sources."functional-red-black-tree-1.0.1" 9418 - sources."functions-have-names-1.2.3" 9419 - sources."get-assigned-identifiers-1.2.0" 9420 - sources."get-caller-file-2.0.5" 9421 - sources."get-intrinsic-1.1.3" 9422 - sources."get-symbol-description-1.0.0" 9423 - sources."get-value-2.0.6" 9424 - (sources."git-rev-sync-3.0.2" // { 9425 - dependencies = [ 9426 - sources."graceful-fs-4.1.15" 9427 - ]; 9428 - }) 9429 - sources."glob-7.2.3" 9430 - sources."glob-parent-5.1.2" 9431 - (sources."glob-stream-6.1.0" // { 9432 - dependencies = [ 9433 - sources."glob-parent-3.1.0" 9434 - sources."is-glob-3.1.0" 9435 - ]; 9436 - }) 9437 - (sources."glob-watcher-5.0.5" // { 9438 - dependencies = [ 9439 - (sources."anymatch-2.0.0" // { 9440 - dependencies = [ 9441 - sources."normalize-path-2.1.1" 9442 - ]; 9443 - }) 9444 - sources."binary-extensions-1.13.1" 9445 - (sources."braces-2.3.2" // { 9446 - dependencies = [ 9447 - sources."extend-shallow-2.0.1" 9448 - ]; 9449 - }) 9450 - sources."chokidar-2.1.8" 9451 - (sources."fill-range-4.0.0" // { 9452 - dependencies = [ 9453 - sources."extend-shallow-2.0.1" 9454 - ]; 9455 - }) 9456 - sources."fsevents-1.2.13" 9457 - (sources."glob-parent-3.1.0" // { 9458 - dependencies = [ 9459 - sources."is-glob-3.1.0" 9460 - ]; 9461 - }) 9462 - sources."is-binary-path-1.0.1" 9463 - (sources."is-number-3.0.0" // { 9464 - dependencies = [ 9465 - sources."kind-of-3.2.2" 9466 - ]; 9467 - }) 9468 - sources."micromatch-3.1.10" 9469 - sources."readdirp-2.2.1" 9470 - sources."to-regex-range-2.1.1" 9471 - ]; 9472 - }) 9473 - sources."global-modules-1.0.0" 9474 - sources."global-prefix-1.0.2" 9475 - sources."globals-11.12.0" 9476 - sources."globby-11.1.0" 9477 - sources."glogg-1.0.2" 9478 - sources."graceful-fs-4.2.10" 9479 - (sources."gulp-4.0.2" // { 9480 - dependencies = [ 9481 - sources."cliui-3.2.0" 9482 - sources."get-caller-file-1.0.3" 9483 - sources."gulp-cli-2.3.0" 9484 - sources."is-fullwidth-code-point-1.0.0" 9485 - sources."string-width-1.0.2" 9486 - sources."wrap-ansi-2.1.0" 9487 - sources."y18n-3.2.2" 9488 - sources."yargs-7.1.2" 9489 - sources."yargs-parser-5.0.1" 9490 - ]; 9491 - }) 9492 - sources."gulp-angular-templatecache-2.2.7" 9493 - (sources."gulp-autoprefixer-8.0.0" // { 9494 - dependencies = [ 9495 - sources."readable-stream-3.6.0" 9496 - sources."through2-4.0.2" 9497 - ]; 9498 - }) 9499 - sources."gulp-concat-2.6.1" 9500 - sources."gulp-cssnano-2.1.3" 9501 - sources."gulp-eslint-4.0.2" 9502 - (sources."gulp-footer-2.0.2" // { 9503 - dependencies = [ 9504 - sources."lodash.template-3.6.2" 9505 - ]; 9506 - }) 9507 - sources."gulp-header-2.0.7" 9508 - sources."gulp-htmlmin-5.0.1" 9509 - (sources."gulp-if-3.0.0" // { 9510 - dependencies = [ 9511 - sources."through2-3.0.2" 9512 - ]; 9513 - }) 9514 - (sources."gulp-inject-version-1.0.1" // { 9515 - dependencies = [ 9516 - sources."isarray-0.0.1" 9517 - sources."readable-stream-1.0.34" 9518 - sources."string_decoder-0.10.31" 9519 - sources."through2-0.6.5" 9520 - ]; 9521 - }) 9522 - (sources."gulp-load-plugins-2.0.8" // { 9523 - dependencies = [ 9524 - sources."fancy-log-2.0.0" 9525 - sources."findup-sync-5.0.0" 9526 - sources."glogg-2.0.0" 9527 - sources."gulplog-2.0.1" 9528 - sources."has-gulplog-1.0.0" 9529 - sources."sparkles-2.0.0" 9530 - ]; 9531 - }) 9532 - sources."gulp-match-1.1.0" 9533 - (sources."gulp-plumber-1.2.1" // { 9534 - dependencies = [ 9535 - sources."arr-diff-1.1.0" 9536 - sources."arr-union-2.1.0" 9537 - sources."array-slice-0.2.3" 9538 - sources."extend-shallow-1.1.4" 9539 - sources."kind-of-1.1.0" 9540 - sources."plugin-error-0.1.2" 9541 - ]; 9542 - }) 9543 - (sources."gulp-replace-1.1.3" // { 9544 - dependencies = [ 9545 - sources."@types/node-14.18.33" 9546 - ]; 9547 - }) 9548 - (sources."gulp-rev-9.0.0" // { 9549 - dependencies = [ 9550 - sources."sort-keys-2.0.0" 9551 - ]; 9552 - }) 9553 - (sources."gulp-rev-replace-0.4.4" // { 9554 - dependencies = [ 9555 - sources."arr-diff-1.1.0" 9556 - sources."arr-union-2.1.0" 9557 - sources."array-slice-0.2.3" 9558 - sources."extend-shallow-1.1.4" 9559 - sources."kind-of-1.1.0" 9560 - sources."plugin-error-0.1.2" 9561 - ]; 9562 - }) 9563 - (sources."gulp-size-4.0.1" // { 9564 - dependencies = [ 9565 - sources."ansi-styles-4.3.0" 9566 - sources."chalk-4.1.2" 9567 - sources."has-flag-4.0.0" 9568 - sources."readable-stream-3.6.0" 9569 - sources."supports-color-7.2.0" 9570 - sources."through2-4.0.2" 9571 - ]; 9572 - }) 9573 - (sources."gulp-sourcemaps-3.0.0" // { 9574 - dependencies = [ 9575 - sources."acorn-6.4.2" 9576 - sources."source-map-0.6.1" 9577 - ]; 9578 - }) 9579 - sources."gulp-uglify-3.0.2" 9580 - (sources."gulp-useref-5.0.0" // { 9581 - dependencies = [ 9582 - sources."readable-stream-3.6.0" 9583 - sources."through2-4.0.2" 9584 - ]; 9585 - }) 9586 - (sources."gulp-util-3.0.8" // { 9587 - dependencies = [ 9588 - sources."clone-1.0.4" 9589 - sources."clone-stats-0.0.1" 9590 - sources."lodash.template-3.6.2" 9591 - sources."object-assign-3.0.0" 9592 - sources."replace-ext-0.0.1" 9593 - sources."vinyl-0.5.3" 9594 - ]; 9595 - }) 9596 - sources."gulplog-1.0.0" 9597 - sources."gzip-size-6.0.0" 9598 - sources."has-1.0.3" 9599 - sources."has-ansi-2.0.0" 9600 - sources."has-bigints-1.0.2" 9601 - sources."has-flag-1.0.0" 9602 - sources."has-gulplog-0.1.0" 9603 - sources."has-property-descriptors-1.0.0" 9604 - sources."has-symbols-1.0.3" 9605 - sources."has-tostringtag-1.0.0" 9606 - sources."has-value-1.0.0" 9607 - (sources."has-values-1.0.0" // { 9608 - dependencies = [ 9609 - (sources."is-number-3.0.0" // { 9610 - dependencies = [ 9611 - sources."kind-of-3.2.2" 9612 - ]; 9613 - }) 9614 - sources."kind-of-4.0.0" 9615 - ]; 9616 - }) 9617 - (sources."hash-base-3.1.0" // { 9618 - dependencies = [ 9619 - sources."readable-stream-3.6.0" 9620 - ]; 9621 - }) 9622 - sources."hash.js-1.1.7" 9623 - sources."he-1.2.0" 9624 - sources."hmac-drbg-1.0.1" 9625 - sources."homedir-polyfill-1.0.3" 9626 - sources."hosted-git-info-2.8.9" 9627 - sources."html-comment-regex-1.1.2" 9628 - (sources."html-minifier-3.5.21" // { 9629 - dependencies = [ 9630 - sources."commander-2.17.1" 9631 - ]; 9632 - }) 9633 - sources."htmlescape-1.1.1" 9634 - (sources."http-errors-2.0.0" // { 9635 - dependencies = [ 9636 - sources."statuses-2.0.1" 9637 - ]; 9638 - }) 9639 - sources."http-proxy-1.18.1" 9640 - sources."https-browserify-1.0.0" 9641 - sources."iconv-lite-0.4.24" 9642 - sources."ieee754-1.2.1" 9643 - sources."ignore-5.2.0" 9644 - sources."immutable-3.8.2" 9645 - sources."imurmurhash-0.1.4" 9646 - sources."indent-string-4.0.0" 9647 - sources."indexes-of-1.0.1" 9648 - sources."inflight-1.0.6" 9649 - sources."inherits-2.0.4" 9650 - sources."ini-1.3.8" 9651 - sources."inline-source-map-0.6.2" 9652 - sources."inputmask-3.3.11" 9653 - (sources."inquirer-3.3.0" // { 9654 - dependencies = [ 9655 - sources."ansi-regex-3.0.1" 9656 - sources."ansi-styles-3.2.1" 9657 - sources."chalk-2.4.2" 9658 - sources."color-convert-1.9.3" 9659 - sources."color-name-1.1.3" 9660 - sources."has-flag-3.0.0" 9661 - sources."is-fullwidth-code-point-2.0.0" 9662 - sources."string-width-2.1.1" 9663 - sources."strip-ansi-4.0.0" 9664 - sources."supports-color-5.5.0" 9665 - ]; 9666 - }) 9667 - sources."insert-module-globals-7.2.1" 9668 - sources."internal-slot-1.0.3" 9669 - sources."interpret-1.4.0" 9670 - sources."invert-kv-1.0.0" 9671 - sources."ion-rangeslider-2.3.1" 9672 - sources."ionicons-3.0.0" 9673 - sources."is-absolute-1.0.0" 9674 - sources."is-absolute-url-2.1.0" 9675 - (sources."is-accessor-descriptor-0.1.6" // { 9676 - dependencies = [ 9677 - sources."kind-of-3.2.2" 9678 - ]; 9679 - }) 9680 - sources."is-arguments-1.1.1" 9681 - sources."is-arrayish-0.2.1" 9682 - sources."is-bigint-1.0.4" 9683 - sources."is-binary-path-2.1.0" 9684 - sources."is-boolean-object-1.1.2" 9685 - sources."is-buffer-1.1.6" 9686 - sources."is-callable-1.2.7" 9687 - sources."is-core-module-2.11.0" 9688 - (sources."is-data-descriptor-0.1.4" // { 9689 - dependencies = [ 9690 - sources."kind-of-3.2.2" 9691 - ]; 9692 - }) 9693 - sources."is-date-object-1.0.5" 9694 - (sources."is-descriptor-0.1.6" // { 9695 - dependencies = [ 9696 - sources."kind-of-5.1.0" 9697 - ]; 9698 - }) 9699 - sources."is-extendable-0.1.1" 9700 - sources."is-extglob-2.1.1" 9701 - sources."is-fullwidth-code-point-3.0.0" 9702 - sources."is-generator-function-1.0.10" 9703 - sources."is-glob-4.0.3" 9704 - sources."is-negated-glob-1.0.0" 9705 - sources."is-negative-zero-2.0.2" 9706 - sources."is-number-7.0.0" 9707 - sources."is-number-like-1.0.8" 9708 - sources."is-number-object-1.0.7" 9709 - sources."is-path-cwd-2.2.0" 9710 - sources."is-path-inside-3.0.3" 9711 - sources."is-plain-obj-1.1.0" 9712 - sources."is-plain-object-2.0.4" 9713 - sources."is-promise-2.2.2" 9714 - sources."is-regex-1.1.4" 9715 - sources."is-relative-1.0.0" 9716 - sources."is-resolvable-1.1.0" 9717 - sources."is-shared-array-buffer-1.0.2" 9718 - sources."is-string-1.0.7" 9719 - sources."is-svg-2.1.0" 9720 - sources."is-symbol-1.0.4" 9721 - sources."is-typed-array-1.1.9" 9722 - sources."is-unc-path-1.0.0" 9723 - sources."is-utf8-0.2.1" 9724 - sources."is-valid-glob-1.0.0" 9725 - sources."is-weakref-1.0.2" 9726 - sources."is-windows-1.0.2" 9727 - sources."is-wsl-1.1.0" 9728 - sources."isarray-1.0.0" 9729 - sources."isexe-2.0.0" 9730 - sources."isobject-3.0.1" 9731 - sources."istextorbinary-3.3.0" 9732 - sources."jquery-3.4.1" 9733 - sources."jquery-knob-1.2.11" 9734 - sources."jquery-slimscroll-1.3.8" 9735 - sources."jquery-sparkline-2.4.0" 9736 - sources."jquery-ui-1.13.2" 9737 - sources."js-base64-2.6.4" 9738 - sources."js-tokens-3.0.2" 9739 - sources."js-yaml-3.7.0" 9740 - sources."jsesc-2.5.1" 9741 - sources."json-schema-traverse-0.3.1" 9742 - sources."json-stable-stringify-without-jsonify-1.0.1" 9743 - sources."jsonfile-3.0.1" 9744 - sources."jsonparse-1.3.1" 9745 - sources."just-debounce-1.1.0" 9746 - sources."jvectormap-1.2.2" 9747 - sources."kind-of-6.0.3" 9748 - sources."labeled-stream-splicer-2.0.2" 9749 - sources."last-run-1.1.1" 9750 - sources."lazystream-1.0.1" 9751 - sources."lcid-1.0.0" 9752 - sources."lead-1.0.0" 9753 - sources."levn-0.3.0" 9754 - sources."liftoff-3.1.0" 9755 - sources."limiter-1.1.5" 9756 - sources."load-json-file-1.1.0" 9757 - (sources."localtunnel-2.0.2" // { 9758 - dependencies = [ 9759 - sources."debug-4.3.2" 9760 - sources."yargs-17.1.1" 9761 - ]; 9762 - }) 9763 - sources."lodash-4.17.21" 9764 - sources."lodash._basecopy-3.0.1" 9765 - sources."lodash._basetostring-3.0.1" 9766 - sources."lodash._basevalues-3.0.0" 9767 - sources."lodash._getnative-3.9.1" 9768 - sources."lodash._isiterateecall-3.0.9" 9769 - sources."lodash._reescape-3.0.0" 9770 - sources."lodash._reevaluate-3.0.0" 9771 - sources."lodash._reinterpolate-3.0.0" 9772 - sources."lodash._root-3.0.1" 9773 - sources."lodash.escape-3.2.0" 9774 - sources."lodash.isarguments-3.1.0" 9775 - sources."lodash.isarray-3.0.4" 9776 - sources."lodash.isfinite-3.3.2" 9777 - sources."lodash.keys-3.1.2" 9778 - sources."lodash.memoize-3.0.4" 9779 - sources."lodash.restparam-3.6.1" 9780 - (sources."lodash.template-4.5.0" // { 9781 - dependencies = [ 9782 - sources."lodash.templatesettings-4.2.0" 9783 - ]; 9784 - }) 9785 - sources."lodash.templatesettings-3.1.1" 9786 - sources."lodash.uniq-4.5.0" 9787 - sources."lower-case-1.1.4" 9788 - sources."lru-cache-4.1.5" 9789 - sources."lru-queue-0.1.0" 9790 - sources."make-error-1.3.6" 9791 - sources."make-error-cause-1.2.2" 9792 - sources."make-iterator-1.0.1" 9793 - sources."map-cache-0.2.2" 9794 - sources."map-stream-0.0.7" 9795 - sources."map-visit-1.0.0" 9796 - (sources."matchdep-2.0.0" // { 9797 - dependencies = [ 9798 - (sources."braces-2.3.2" // { 9799 - dependencies = [ 9800 - sources."extend-shallow-2.0.1" 9801 - ]; 9802 - }) 9803 - (sources."fill-range-4.0.0" // { 9804 - dependencies = [ 9805 - sources."extend-shallow-2.0.1" 9806 - ]; 9807 - }) 9808 - sources."findup-sync-2.0.0" 9809 - sources."is-glob-3.1.0" 9810 - (sources."is-number-3.0.0" // { 9811 - dependencies = [ 9812 - sources."kind-of-3.2.2" 9813 - ]; 9814 - }) 9815 - sources."micromatch-3.1.10" 9816 - sources."to-regex-range-2.1.1" 9817 - ]; 9818 - }) 9819 - sources."math-expression-evaluator-1.4.0" 9820 - sources."md5.js-1.3.5" 9821 - sources."memoizee-0.4.15" 9822 - sources."merge-stream-2.0.0" 9823 - sources."merge2-1.4.1" 9824 - sources."micromatch-4.0.5" 9825 - (sources."miller-rabin-4.0.1" // { 9826 - dependencies = [ 9827 - sources."bn.js-4.12.0" 9828 - ]; 9829 - }) 9830 - sources."mime-1.4.1" 9831 - sources."mime-db-1.52.0" 9832 - sources."mime-types-2.1.35" 9833 - sources."mimic-fn-1.2.0" 9834 - sources."minimalistic-assert-1.0.1" 9835 - sources."minimalistic-crypto-utils-1.0.1" 9836 - sources."minimatch-3.1.2" 9837 - sources."minimist-1.2.7" 9838 - sources."mitt-1.2.0" 9839 - (sources."mixin-deep-1.3.2" // { 9840 - dependencies = [ 9841 - sources."is-extendable-1.0.1" 9842 - ]; 9843 - }) 9844 - sources."mkdirp-0.5.6" 9845 - sources."mkdirp-classic-0.5.3" 9846 - sources."modify-filename-1.1.0" 9847 - sources."module-deps-6.2.3" 9848 - sources."moment-2.29.4" 9849 - sources."morris.js-0.5.0" 9850 - sources."ms-2.1.2" 9851 - (sources."multipipe-0.1.2" // { 9852 - dependencies = [ 9853 - sources."duplexer2-0.0.2" 9854 - sources."isarray-0.0.1" 9855 - sources."readable-stream-1.1.14" 9856 - sources."string_decoder-0.10.31" 9857 - ]; 9858 - }) 9859 - sources."mute-stdout-1.0.1" 9860 - sources."mute-stream-0.0.7" 9861 - sources."nanoid-3.3.4" 9862 - sources."nanomatch-1.2.13" 9863 - sources."natural-compare-1.4.0" 9864 - sources."negotiator-0.6.3" 9865 - sources."next-tick-1.1.0" 9866 - sources."nice-try-3.0.1" 9867 - sources."no-case-2.3.2" 9868 - sources."node-releases-2.0.6" 9869 - sources."normalize-package-data-2.5.0" 9870 - sources."normalize-path-3.0.0" 9871 - sources."normalize-range-0.1.2" 9872 - sources."normalize-url-1.9.1" 9873 - sources."now-and-later-2.0.1" 9874 - sources."num2fraction-1.2.2" 9875 - sources."number-is-nan-1.0.1" 9876 - sources."object-assign-4.1.1" 9877 - (sources."object-copy-0.1.0" // { 9878 - dependencies = [ 9879 - sources."define-property-0.2.5" 9880 - sources."kind-of-3.2.2" 9881 - ]; 9882 - }) 9883 - sources."object-inspect-1.12.2" 9884 - sources."object-keys-1.1.1" 9885 - sources."object-visit-1.0.1" 9886 - sources."object.assign-4.1.4" 9887 - sources."object.defaults-1.1.0" 9888 - sources."object.map-1.0.1" 9889 - sources."object.pick-1.3.0" 9890 - sources."object.reduce-1.0.1" 9891 - sources."on-finished-2.3.0" 9892 - sources."once-1.4.0" 9893 - sources."onetime-2.0.1" 9894 - sources."openurl-1.1.1" 9895 - sources."opn-5.3.0" 9896 - (sources."optionator-0.8.3" // { 9897 - dependencies = [ 9898 - sources."fast-levenshtein-2.0.6" 9899 - ]; 9900 - }) 9901 - sources."options-0.0.6" 9902 - sources."ordered-read-streams-1.0.1" 9903 - sources."os-browserify-0.3.0" 9904 - sources."os-locale-1.4.0" 9905 - sources."os-tmpdir-1.0.2" 9906 - sources."p-map-4.0.0" 9907 - sources."pace-0.0.4" 9908 - sources."pako-1.0.11" 9909 - sources."param-case-2.1.1" 9910 - sources."parents-1.0.1" 9911 - sources."parse-asn1-5.1.6" 9912 - sources."parse-filepath-1.0.2" 9913 - sources."parse-json-2.2.0" 9914 - sources."parse-node-version-1.0.1" 9915 - sources."parse-passwd-1.0.0" 9916 - sources."parseurl-1.3.3" 9917 - sources."pascalcase-0.1.1" 9918 - sources."path-browserify-1.0.1" 9919 - sources."path-dirname-1.0.2" 9920 - sources."path-exists-2.1.0" 9921 - sources."path-is-absolute-1.0.1" 9922 - sources."path-is-inside-1.0.2" 9923 - sources."path-parse-1.0.7" 9924 - sources."path-platform-0.11.15" 9925 - sources."path-root-0.1.1" 9926 - sources."path-root-regex-0.1.2" 9927 - sources."path-type-4.0.0" 9928 - sources."pause-stream-0.0.11" 9929 - sources."pbkdf2-3.1.2" 9930 - sources."picocolors-1.0.0" 9931 - sources."picomatch-2.3.1" 9932 - sources."pify-2.3.0" 9933 - sources."pinkie-2.0.4" 9934 - sources."pinkie-promise-2.0.1" 9935 - sources."plugin-error-1.0.1" 9936 - sources."pluralize-7.0.0" 9937 - sources."portscanner-2.2.0" 9938 - sources."posix-character-classes-0.1.1" 9939 - sources."postcss-8.4.18" 9940 - (sources."postcss-calc-5.3.1" // { 9941 - dependencies = [ 9942 - sources."postcss-5.2.18" 9943 - sources."supports-color-3.2.3" 9944 - ]; 9945 - }) 9946 - (sources."postcss-colormin-2.2.2" // { 9947 - dependencies = [ 9948 - sources."postcss-5.2.18" 9949 - sources."postcss-value-parser-3.3.1" 9950 - sources."supports-color-3.2.3" 9951 - ]; 9952 - }) 9953 - (sources."postcss-convert-values-2.6.1" // { 9954 - dependencies = [ 9955 - sources."postcss-5.2.18" 9956 - sources."postcss-value-parser-3.3.1" 9957 - sources."supports-color-3.2.3" 9958 - ]; 9959 - }) 9960 - (sources."postcss-discard-comments-2.0.4" // { 9961 - dependencies = [ 9962 - sources."postcss-5.2.18" 9963 - sources."supports-color-3.2.3" 9964 - ]; 9965 - }) 9966 - (sources."postcss-discard-duplicates-2.1.0" // { 9967 - dependencies = [ 9968 - sources."postcss-5.2.18" 9969 - sources."supports-color-3.2.3" 9970 - ]; 9971 - }) 9972 - (sources."postcss-discard-empty-2.1.0" // { 9973 - dependencies = [ 9974 - sources."postcss-5.2.18" 9975 - sources."supports-color-3.2.3" 9976 - ]; 9977 - }) 9978 - (sources."postcss-discard-overridden-0.1.1" // { 9979 - dependencies = [ 9980 - sources."postcss-5.2.18" 9981 - sources."supports-color-3.2.3" 9982 - ]; 9983 - }) 9984 - (sources."postcss-discard-unused-2.2.3" // { 9985 - dependencies = [ 9986 - sources."postcss-5.2.18" 9987 - sources."supports-color-3.2.3" 9988 - ]; 9989 - }) 9990 - (sources."postcss-filter-plugins-2.0.3" // { 9991 - dependencies = [ 9992 - sources."postcss-5.2.18" 9993 - sources."supports-color-3.2.3" 9994 - ]; 9995 - }) 9996 - (sources."postcss-merge-idents-2.1.7" // { 9997 - dependencies = [ 9998 - sources."postcss-5.2.18" 9999 - sources."postcss-value-parser-3.3.1" 10000 - sources."supports-color-3.2.3" 10001 - ]; 10002 - }) 10003 - (sources."postcss-merge-longhand-2.0.2" // { 10004 - dependencies = [ 10005 - sources."postcss-5.2.18" 10006 - sources."supports-color-3.2.3" 10007 - ]; 10008 - }) 10009 - (sources."postcss-merge-rules-2.1.2" // { 10010 - dependencies = [ 10011 - sources."browserslist-1.7.7" 10012 - sources."postcss-5.2.18" 10013 - sources."supports-color-3.2.3" 10014 - ]; 10015 - }) 10016 - sources."postcss-message-helpers-2.0.0" 10017 - (sources."postcss-minify-font-values-1.0.5" // { 10018 - dependencies = [ 10019 - sources."postcss-5.2.18" 10020 - sources."postcss-value-parser-3.3.1" 10021 - sources."supports-color-3.2.3" 10022 - ]; 10023 - }) 10024 - (sources."postcss-minify-gradients-1.0.5" // { 10025 - dependencies = [ 10026 - sources."postcss-5.2.18" 10027 - sources."postcss-value-parser-3.3.1" 10028 - sources."supports-color-3.2.3" 10029 - ]; 10030 - }) 10031 - (sources."postcss-minify-params-1.2.2" // { 10032 - dependencies = [ 10033 - sources."postcss-5.2.18" 10034 - sources."postcss-value-parser-3.3.1" 10035 - sources."supports-color-3.2.3" 10036 - ]; 10037 - }) 10038 - (sources."postcss-minify-selectors-2.1.1" // { 10039 - dependencies = [ 10040 - sources."postcss-5.2.18" 10041 - sources."supports-color-3.2.3" 10042 - ]; 10043 - }) 10044 - (sources."postcss-normalize-charset-1.1.1" // { 10045 - dependencies = [ 10046 - sources."postcss-5.2.18" 10047 - sources."supports-color-3.2.3" 10048 - ]; 10049 - }) 10050 - (sources."postcss-normalize-url-3.0.8" // { 10051 - dependencies = [ 10052 - sources."postcss-5.2.18" 10053 - sources."postcss-value-parser-3.3.1" 10054 - sources."supports-color-3.2.3" 10055 - ]; 10056 - }) 10057 - (sources."postcss-ordered-values-2.2.3" // { 10058 - dependencies = [ 10059 - sources."postcss-5.2.18" 10060 - sources."postcss-value-parser-3.3.1" 10061 - sources."supports-color-3.2.3" 10062 - ]; 10063 - }) 10064 - (sources."postcss-reduce-idents-2.4.0" // { 10065 - dependencies = [ 10066 - sources."postcss-5.2.18" 10067 - sources."postcss-value-parser-3.3.1" 10068 - sources."supports-color-3.2.3" 10069 - ]; 10070 - }) 10071 - (sources."postcss-reduce-initial-1.0.1" // { 10072 - dependencies = [ 10073 - sources."postcss-5.2.18" 10074 - sources."supports-color-3.2.3" 10075 - ]; 10076 - }) 10077 - (sources."postcss-reduce-transforms-1.0.4" // { 10078 - dependencies = [ 10079 - sources."postcss-5.2.18" 10080 - sources."postcss-value-parser-3.3.1" 10081 - sources."supports-color-3.2.3" 10082 - ]; 10083 - }) 10084 - sources."postcss-selector-parser-2.2.3" 10085 - (sources."postcss-svgo-2.1.6" // { 10086 - dependencies = [ 10087 - sources."postcss-5.2.18" 10088 - sources."postcss-value-parser-3.3.1" 10089 - sources."supports-color-3.2.3" 10090 - ]; 10091 - }) 10092 - (sources."postcss-unique-selectors-2.0.2" // { 10093 - dependencies = [ 10094 - sources."postcss-5.2.18" 10095 - sources."supports-color-3.2.3" 10096 - ]; 10097 - }) 10098 - sources."postcss-value-parser-4.2.0" 10099 - (sources."postcss-zindex-2.2.0" // { 10100 - dependencies = [ 10101 - sources."postcss-5.2.18" 10102 - sources."supports-color-3.2.3" 10103 - ]; 10104 - }) 10105 - sources."prelude-ls-1.1.2" 10106 - sources."prepend-http-1.0.4" 10107 - sources."pretty-bytes-5.6.0" 10108 - sources."pretty-hrtime-1.0.3" 10109 - sources."process-0.11.10" 10110 - sources."process-nextick-args-2.0.1" 10111 - sources."progress-2.0.3" 10112 - sources."pseudomap-1.0.2" 10113 - (sources."public-encrypt-4.0.3" // { 10114 - dependencies = [ 10115 - sources."bn.js-4.12.0" 10116 - ]; 10117 - }) 10118 - sources."pump-2.0.1" 10119 - sources."pumpify-1.5.1" 10120 - sources."punycode-1.4.1" 10121 - sources."q-1.5.1" 10122 - sources."qs-6.2.3" 10123 - sources."query-string-4.3.4" 10124 - sources."querystring-0.2.0" 10125 - sources."querystring-es3-0.2.1" 10126 - sources."queue-microtask-1.2.3" 10127 - sources."randombytes-2.1.0" 10128 - sources."randomfill-1.0.4" 10129 - sources."range-parser-1.2.1" 10130 - sources."raphael-2.3.0" 10131 - sources."raw-body-2.5.1" 10132 - sources."read-only-stream-2.0.0" 10133 - (sources."read-pkg-1.1.0" // { 10134 - dependencies = [ 10135 - sources."path-type-1.1.0" 10136 - ]; 10137 - }) 10138 - sources."read-pkg-up-1.0.1" 10139 - (sources."readable-stream-2.3.7" // { 10140 - dependencies = [ 10141 - sources."safe-buffer-5.1.2" 10142 - sources."string_decoder-1.1.1" 10143 - ]; 10144 - }) 10145 - sources."readdirp-3.6.0" 10146 - sources."rechoir-0.6.2" 10147 - (sources."reduce-css-calc-1.3.0" // { 10148 - dependencies = [ 10149 - sources."balanced-match-0.4.2" 10150 - ]; 10151 - }) 10152 - sources."reduce-function-call-1.0.3" 10153 - sources."regex-not-1.0.2" 10154 - sources."regexp.prototype.flags-1.4.3" 10155 - sources."regexpp-1.1.0" 10156 - sources."relateurl-0.2.7" 10157 - sources."remove-bom-buffer-3.0.0" 10158 - sources."remove-bom-stream-1.2.0" 10159 - sources."remove-trailing-separator-1.1.0" 10160 - sources."repeat-element-1.1.4" 10161 - sources."repeat-string-1.6.1" 10162 - sources."replace-ext-1.0.1" 10163 - sources."replace-homedir-1.0.0" 10164 - sources."replacestream-4.0.3" 10165 - sources."require-directory-2.1.1" 10166 - sources."require-main-filename-1.0.1" 10167 - sources."require-uncached-1.0.3" 10168 - sources."requires-port-1.0.0" 10169 - sources."resolve-1.22.1" 10170 - sources."resolve-dir-1.0.1" 10171 - sources."resolve-from-1.0.1" 10172 - sources."resolve-options-1.1.0" 10173 - sources."resolve-url-0.2.1" 10174 - (sources."resp-modifier-6.0.2" // { 10175 - dependencies = [ 10176 - sources."debug-2.6.9" 10177 - sources."ms-2.0.0" 10178 - ]; 10179 - }) 10180 - sources."restore-cursor-2.0.0" 10181 - sources."ret-0.1.15" 10182 - sources."reusify-1.0.4" 10183 - sources."rev-hash-2.0.0" 10184 - sources."rev-path-2.0.0" 10185 - sources."rimraf-3.0.2" 10186 - sources."ripemd160-2.0.2" 10187 - sources."run-async-2.4.1" 10188 - sources."run-parallel-1.2.0" 10189 - sources."rx-4.1.0" 10190 - sources."rx-lite-4.0.8" 10191 - sources."rx-lite-aggregates-4.0.8" 10192 - sources."rxjs-5.5.12" 10193 - sources."safe-buffer-5.2.1" 10194 - sources."safe-regex-1.1.0" 10195 - sources."safe-regex-test-1.0.0" 10196 - sources."safer-buffer-2.1.2" 10197 - sources."sax-1.2.4" 10198 - sources."select2-4.0.13" 10199 - sources."semver-5.7.1" 10200 - sources."semver-greatest-satisfied-range-1.1.0" 10201 - (sources."send-0.16.2" // { 10202 - dependencies = [ 10203 - sources."debug-2.6.9" 10204 - sources."depd-1.1.2" 10205 - sources."http-errors-1.6.3" 10206 - sources."inherits-2.0.3" 10207 - sources."ms-2.0.0" 10208 - sources."setprototypeof-1.1.0" 10209 - sources."statuses-1.4.0" 10210 - ]; 10211 - }) 10212 - (sources."serve-index-1.9.1" // { 10213 - dependencies = [ 10214 - sources."debug-2.6.9" 10215 - sources."depd-1.1.2" 10216 - sources."http-errors-1.6.3" 10217 - sources."inherits-2.0.3" 10218 - sources."ms-2.0.0" 10219 - sources."setprototypeof-1.1.0" 10220 - sources."statuses-1.5.0" 10221 - ]; 10222 - }) 10223 - sources."serve-static-1.13.2" 10224 - sources."server-destroy-1.0.1" 10225 - sources."set-blocking-2.0.0" 10226 - (sources."set-value-2.0.1" // { 10227 - dependencies = [ 10228 - sources."extend-shallow-2.0.1" 10229 - ]; 10230 - }) 10231 - sources."setprototypeof-1.2.0" 10232 - sources."sha.js-2.4.11" 10233 - sources."shasum-object-1.0.0" 10234 - sources."shebang-command-1.2.0" 10235 - sources."shebang-regex-1.0.0" 10236 - sources."shell-quote-1.7.4" 10237 - sources."shelljs-0.8.5" 10238 - sources."side-channel-1.0.4" 10239 - sources."signal-exit-3.0.7" 10240 - sources."simple-concat-1.0.1" 10241 - sources."slash-3.0.0" 10242 - (sources."slice-ansi-1.0.0" // { 10243 - dependencies = [ 10244 - sources."is-fullwidth-code-point-2.0.0" 10245 - ]; 10246 - }) 10247 - sources."slimscroll-0.9.1" 10248 - (sources."snapdragon-0.8.2" // { 10249 - dependencies = [ 10250 - sources."debug-2.6.9" 10251 - sources."define-property-0.2.5" 10252 - sources."extend-shallow-2.0.1" 10253 - sources."ms-2.0.0" 10254 - ]; 10255 - }) 10256 - (sources."snapdragon-node-2.1.1" // { 10257 - dependencies = [ 10258 - sources."define-property-1.0.0" 10259 - sources."is-accessor-descriptor-1.0.0" 10260 - sources."is-data-descriptor-1.0.0" 10261 - sources."is-descriptor-1.0.2" 10262 - ]; 10263 - }) 10264 - (sources."snapdragon-util-3.0.1" // { 10265 - dependencies = [ 10266 - sources."kind-of-3.2.2" 10267 - ]; 10268 - }) 10269 - sources."socket.io-4.5.3" 10270 - sources."socket.io-adapter-2.4.0" 10271 - sources."socket.io-client-4.5.3" 10272 - sources."socket.io-parser-4.2.1" 10273 - sources."sort-keys-1.1.2" 10274 - sources."source-map-0.5.7" 10275 - sources."source-map-js-1.0.2" 10276 - sources."source-map-resolve-0.5.3" 10277 - sources."source-map-url-0.4.1" 10278 - sources."sparkles-1.0.1" 10279 - sources."spdx-correct-3.1.1" 10280 - sources."spdx-exceptions-2.3.0" 10281 - sources."spdx-expression-parse-3.0.1" 10282 - sources."spdx-license-ids-3.0.12" 10283 - sources."split-1.0.1" 10284 - sources."split-string-3.1.0" 10285 - sources."sprintf-js-1.0.3" 10286 - sources."stack-trace-0.0.10" 10287 - (sources."static-extend-0.1.2" // { 10288 - dependencies = [ 10289 - sources."define-property-0.2.5" 10290 - ]; 10291 - }) 10292 - sources."statuses-1.3.1" 10293 - (sources."stream-browserify-3.0.0" // { 10294 - dependencies = [ 10295 - sources."readable-stream-3.6.0" 10296 - ]; 10297 - }) 10298 - sources."stream-combiner-0.2.2" 10299 - sources."stream-combiner2-1.1.1" 10300 - sources."stream-counter-1.0.0" 10301 - sources."stream-exhaust-1.0.2" 10302 - (sources."stream-http-3.2.0" // { 10303 - dependencies = [ 10304 - sources."readable-stream-3.6.0" 10305 - ]; 10306 - }) 10307 - sources."stream-shift-1.0.1" 10308 - sources."stream-splicer-2.0.1" 10309 - sources."stream-throttle-0.1.3" 10310 - sources."strict-uri-encode-1.1.0" 10311 - (sources."string-width-4.2.3" // { 10312 - dependencies = [ 10313 - sources."ansi-regex-5.0.1" 10314 - sources."strip-ansi-6.0.1" 10315 - ]; 10316 - }) 10317 - sources."string.prototype.trimend-1.0.5" 10318 - sources."string.prototype.trimstart-1.0.5" 10319 - sources."string_decoder-1.3.0" 10320 - sources."strip-ansi-3.0.1" 10321 - sources."strip-bom-2.0.0" 10322 - sources."strip-bom-buf-1.0.0" 10323 - sources."strip-bom-stream-2.0.0" 10324 - sources."strip-bom-string-1.0.0" 10325 - sources."strip-json-comments-2.0.1" 10326 - sources."subarg-1.0.0" 10327 - sources."supports-color-2.0.0" 10328 - sources."supports-preserve-symlinks-flag-1.0.0" 10329 - sources."sver-compat-1.5.0" 10330 - sources."svgo-0.7.2" 10331 - sources."sweetalert-1.1.3" 10332 - sources."symbol-observable-1.0.1" 10333 - sources."syntax-error-1.4.0" 10334 - (sources."table-4.0.2" // { 10335 - dependencies = [ 10336 - sources."ansi-regex-3.0.1" 10337 - sources."ansi-styles-3.2.1" 10338 - sources."chalk-2.4.2" 10339 - sources."color-convert-1.9.3" 10340 - sources."color-name-1.1.3" 10341 - sources."has-flag-3.0.0" 10342 - sources."is-fullwidth-code-point-2.0.0" 10343 - sources."string-width-2.1.1" 10344 - sources."strip-ansi-4.0.0" 10345 - sources."supports-color-5.5.0" 10346 - ]; 10347 - }) 10348 - (sources."ternary-stream-3.0.0" // { 10349 - dependencies = [ 10350 - sources."duplexify-4.1.2" 10351 - sources."readable-stream-3.6.0" 10352 - sources."through2-3.0.2" 10353 - ]; 10354 - }) 10355 - sources."text-table-0.2.0" 10356 - sources."textextensions-3.3.0" 10357 - sources."tfunk-4.0.0" 10358 - sources."through-2.3.8" 10359 - sources."through2-2.0.5" 10360 - sources."through2-filter-3.0.0" 10361 - sources."ticky-1.0.1" 10362 - sources."time-stamp-1.1.0" 10363 - sources."timers-browserify-1.4.2" 10364 - sources."timers-ext-0.1.7" 10365 - sources."tmp-0.0.33" 10366 - sources."to-absolute-glob-2.0.2" 10367 - (sources."to-object-path-0.3.0" // { 10368 - dependencies = [ 10369 - sources."kind-of-3.2.2" 10370 - ]; 10371 - }) 10372 - sources."to-regex-3.0.2" 10373 - sources."to-regex-range-5.0.1" 10374 - sources."to-through-2.0.0" 10375 - sources."toidentifier-1.0.1" 10376 - sources."tty-browserify-0.0.1" 10377 - sources."type-1.2.0" 10378 - sources."type-check-0.3.2" 10379 - sources."typedarray-0.0.6" 10380 - sources."typescript-4.8.4" 10381 - sources."ua-parser-js-1.0.2" 10382 - (sources."uglify-js-3.4.10" // { 10383 - dependencies = [ 10384 - sources."commander-2.19.0" 10385 - sources."source-map-0.6.1" 10386 - ]; 10387 - }) 10388 - sources."uglify-save-license-0.4.1" 10389 - sources."ultron-1.0.2" 10390 - sources."umd-3.0.3" 10391 - sources."unbox-primitive-1.0.2" 10392 - sources."unc-path-regex-0.1.2" 10393 - sources."undeclared-identifiers-1.1.3" 10394 - sources."undertaker-1.3.0" 10395 - sources."undertaker-registry-1.0.1" 10396 - sources."union-value-1.0.1" 10397 - sources."uniq-1.0.1" 10398 - sources."uniqs-2.0.0" 10399 - sources."unique-stream-2.3.1" 10400 - sources."universalify-0.1.2" 10401 - sources."unpipe-1.0.0" 10402 - (sources."unset-value-1.0.0" // { 10403 - dependencies = [ 10404 - (sources."has-value-0.3.1" // { 10405 - dependencies = [ 10406 - sources."isobject-2.1.0" 10407 - ]; 10408 - }) 10409 - sources."has-values-0.1.4" 10410 - ]; 10411 - }) 10412 - sources."upath-1.2.0" 10413 - sources."update-browserslist-db-1.0.10" 10414 - sources."upper-case-1.1.3" 10415 - sources."urix-0.1.0" 10416 - (sources."url-0.11.0" // { 10417 - dependencies = [ 10418 - sources."punycode-1.3.2" 10419 - ]; 10420 - }) 10421 - sources."use-3.1.1" 10422 - sources."useref-1.4.4" 10423 - sources."util-0.12.5" 10424 - sources."util-deprecate-1.0.2" 10425 - sources."util-extend-1.0.3" 10426 - sources."utils-merge-1.0.1" 10427 - sources."v8flags-3.2.0" 10428 - sources."validate-npm-package-license-3.0.4" 10429 - sources."value-or-function-3.0.0" 10430 - sources."vary-1.1.2" 10431 - sources."vendors-1.0.4" 10432 - sources."vinyl-2.2.1" 10433 - sources."vinyl-file-3.0.0" 10434 - sources."vinyl-fs-3.0.3" 10435 - (sources."vinyl-sourcemap-1.1.0" // { 10436 - dependencies = [ 10437 - sources."convert-source-map-1.9.0" 10438 - sources."normalize-path-2.1.1" 10439 - ]; 10440 - }) 10441 - sources."vinyl-sourcemaps-apply-0.2.1" 10442 - sources."vm-browserify-1.1.2" 10443 - sources."whet.extend-0.9.9" 10444 - sources."which-1.3.1" 10445 - sources."which-boxed-primitive-1.0.2" 10446 - sources."which-module-1.0.0" 10447 - sources."which-typed-array-1.1.8" 10448 - sources."word-wrap-1.2.3" 10449 - (sources."wrap-ansi-7.0.0" // { 10450 - dependencies = [ 10451 - sources."ansi-regex-5.0.1" 10452 - sources."ansi-styles-4.3.0" 10453 - sources."strip-ansi-6.0.1" 10454 - ]; 10455 - }) 10456 - sources."wrappy-1.0.2" 10457 - sources."write-0.2.1" 10458 - sources."ws-1.1.5" 10459 - sources."xmlhttprequest-ssl-2.0.0" 10460 - sources."xtend-4.0.2" 10461 - sources."y18n-5.0.8" 10462 - sources."yallist-2.1.2" 10463 - (sources."yargs-17.6.0" // { 10464 - dependencies = [ 10465 - sources."ansi-regex-5.0.1" 10466 - sources."cliui-8.0.1" 10467 - sources."strip-ansi-6.0.1" 10468 - sources."yargs-parser-21.1.1" 10469 - ]; 10470 - }) 10471 - sources."yargs-parser-20.2.9" 10472 - sources."zrender-3.7.4" 10473 - ]; 10474 - buildInputs = globalBuildInputs; 10475 - meta = { 10476 - description = "AriaNg, a modern web frontend making aria2 easier to use."; 10477 - homepage = "http://ariang.mayswind.net/"; 10478 - license = "MIT"; 10479 - }; 10480 - production = false; 10481 - bypassCache = true; 10482 - reconstructLock = false; 10483 - }; 10484 - in 10485 - { 10486 - args = args; 10487 - sources = sources; 10488 - tarball = nodeEnv.buildNodeSourceDist args; 10489 - package = nodeEnv.buildNodePackage args; 10490 - shell = nodeEnv.buildNodeShell args; 10491 - nodeDependencies = nodeEnv.buildNodeDependencies (lib.overrideExisting args { 10492 - src = stdenv.mkDerivation { 10493 - name = args.name + "-package-json"; 10494 - src = nix-gitignore.gitignoreSourcePure [ 10495 - "*" 10496 - "!package.json" 10497 - "!package-lock.json" 10498 - ] args.src; 10499 - dontBuild = true; 10500 - installPhase = "mkdir -p $out; cp -r ./* $out;"; 10501 - }; 10502 - }); 10503 - }
-29
pkgs/servers/ariang/update.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p curl common-updater-scripts nodePackages.node2nix gnused nix coreutils jq 3 - 4 - set -euo pipefail 5 - 6 - latestVersion="$(curl -s "https://api.github.com/repos/mayswind/ariang/releases?per_page=1" | jq -r ".[0].tag_name" | sed 's/^v//')" 7 - currentVersion=$(nix-instantiate --eval -E "with import ./. {}; ariang.version or (lib.getVersion ariang)" | tr -d '"') 8 - 9 - if [[ "$currentVersion" == "$latestVersion" ]]; then 10 - echo "ariang is up-to-date: $currentVersion" 11 - exit 0 12 - fi 13 - 14 - update-source-version ariang 0 sha256-0000000000000000000000000000000000000000000= 15 - update-source-version ariang "$latestVersion" 16 - 17 - # use patched source 18 - store_src="$(nix-build . -A ariang.src --no-out-link)" 19 - 20 - cd "$(dirname "${BASH_SOURCE[0]}")" 21 - 22 - node2nix \ 23 - --nodejs-18 \ 24 - --development \ 25 - --node-env ../../development/node-packages/node-env.nix \ 26 - --output ./node-deps.nix \ 27 - --input "$store_src/package.json" \ 28 - --lock "$store_src/package-lock.json" \ 29 - --composition ./node-composition.nix
+6 -6
pkgs/servers/audiobookshelf/default.nix
··· 1 - { lib, stdenv, pkgs, fetchFromGitHub, runCommand, buildNpmPackage, nodejs_16, tone, ffmpeg-full, util-linux, libwebp }: 1 + { lib, stdenv, pkgs, fetchFromGitHub, runCommand, buildNpmPackage, nodejs_18, tone, ffmpeg-full, util-linux, libwebp }: 2 2 3 3 let 4 - nodejs = nodejs_16; 4 + nodejs = nodejs_18; 5 5 6 6 pname = "audiobookshelf"; 7 - version = "2.2.18"; 7 + version = "2.2.20"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "advplyr"; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-Ar+OK6HiKf2/47HE+1iTw8MVz9A6qZg1hpZQdZ/40UM="; 13 + sha256 = "sha256-nQHWmBMPBPgIe1YQi8wFmZGnwHcmYFxzfWPxyTo16zk="; 14 14 }; 15 15 16 16 client = buildNpmPackage { ··· 24 24 NODE_OPTIONS = "--openssl-legacy-provider"; 25 25 26 26 npmBuildScript = "generate"; 27 - npmDepsHash = "sha256-Hsa7ZauUTtYQcCxw1cpuxQ/RfdRvBIh3PO1DXDUbELk="; 27 + npmDepsHash = "sha256-gCeLDYuC8uK8lEWTPCxr9NlOS6ADP+1oukYR7/xZ0aA="; 28 28 }; 29 29 30 30 wrapper = import ./wrapper.nix { ··· 38 38 39 39 dontNpmBuild = true; 40 40 npmInstallFlags = [ "--only-production" ]; 41 - npmDepsHash = "sha256-0PFeXiS8RSffhrocrHODNpb6d9+nbpulCW5qYIrytDI="; 41 + npmDepsHash = "sha256-LYvI+7KXXXyH6UuWEc2YdqoSdvljclLr8LlG7Cm2Pv8="; 42 42 43 43 installPhase = '' 44 44 mkdir -p $out/opt/client
+2 -2
pkgs/servers/home-automation/evcc/default.nix
··· 16 16 17 17 buildGoModule rec { 18 18 pname = "evcc"; 19 - version = "0.116.7"; 19 + version = "0.117.0"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "evcc-io"; 23 23 repo = pname; 24 24 rev = version; 25 - hash = "sha256-+HyCQGX5apv4eXsqFykoRBxTpbEx5v1zXft9UCs7kVU="; 25 + hash = "sha256-tvZh6yBzasR4GMEfzLQlvfe8UDpS4rBmm5Ww6GX//xI="; 26 26 }; 27 27 28 28 vendorHash = "sha256-+KygZ2aa6JB8uZLrDjoDhxvLHstMmfaV+loVFtEG3Xo=";
+3 -3
pkgs/servers/nosql/apache-jena/binary.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "apache-jena"; 5 - version = "4.7.0"; 5 + version = "4.8.0"; 6 6 src = fetchurl { 7 - url = "https://dlcdn.apache.org/jena/binaries/apache-jena-${version}.tar.gz"; 8 - sha256 = "sha256-3tJRJ9UHsOYfWvwPZHp+hkRZxb0RODchJjQMAZ3lkuY="; 7 + url = "mirror://apache/jena/binaries/apache-jena-${version}.tar.gz"; 8 + hash = "sha256-kAbhH0E2C1ToxDQgFUqWxvknCeFZbtqFhOmiSJ//ciU="; 9 9 }; 10 10 nativeBuildInputs = [ 11 11 makeWrapper
+3 -3
pkgs/servers/nosql/apache-jena/fuseki-binary.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "apache-jena-fuseki"; 5 - version = "4.3.1"; 5 + version = "4.8.0"; 6 6 src = fetchurl { 7 - url = "https://dlcdn.apache.org/jena/binaries/apache-jena-fuseki-${version}.tar.gz"; 8 - sha256 = "1r0vfa7d55lzw22yfx46mxxmz8x8pkr666vggqw2m1rzzj52z9nx"; 7 + url = "mirror://apache/jena/binaries/apache-jena-fuseki-${version}.tar.gz"; 8 + hash = "sha256-rJCY8vG1vfEGGA0gsIqNFXKl75O2Zp4zUIWSDfplpVE="; 9 9 }; 10 10 nativeBuildInputs = [ 11 11 makeWrapper
+3 -3
pkgs/servers/nosql/ferretdb/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "ferretdb"; 8 - version = "1.0.0"; 8 + version = "1.1.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "FerretDB"; 12 12 repo = "FerretDB"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-WFGVQWEYQBUzZAc8yHvD3C3bYbH0hVGoz28nVMV1IP8="; 14 + sha256 = "sha256-V06NIjiT+uxN39vGhwvrU4hbrNezWReEtJdbW6BHIzE="; 15 15 }; 16 16 17 17 postPatch = '' ··· 19 19 echo nixpkgs > build/version/package.txt 20 20 ''; 21 21 22 - vendorSha256 = "sha256-jxo8QXw9Ca27VPjC7GYIm8SVxvhSZBQLnW2Kuthu5Rk="; 22 + vendorSha256 = "sha256-/lM98VTQc6glhnpETW9XbxgN2fP6dBexueByFWwv5sk="; 23 23 24 24 CGO_ENABLED = 0; 25 25
+7 -5
pkgs/tools/admin/iredis/default.nix
··· 12 12 sha256 = "d1e4e7936d0be456f70a39abeb1c97d931f66ccd60e891f4fd796ffb06dfeaf9"; 13 13 }; 14 14 15 - postPatch = '' 16 - substituteInPlace pyproject.toml \ 17 - --replace 'click = "^7.0"' 'click = "*"' \ 18 - --replace 'wcwidth = "0.1.9"' 'wcwidth = "*"' 19 - ''; 15 + pythonRelaxDeps = [ 16 + "configobj" 17 + "wcwidth" 18 + "click" 19 + "packaging" 20 + ]; 20 21 21 22 nativeBuildInputs = [ 22 23 poetry-core 24 + pythonRelaxDepsHook 23 25 ]; 24 26 25 27 propagatedBuildInputs = [
+2 -2
pkgs/tools/filesystems/btrfs-progs/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "btrfs-progs"; 12 - version = "6.2.2"; 12 + version = "6.3"; 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; 16 - sha256 = "sha256-5IiNuGN9kuZnRIOGmS0IVrlUzyUVuY05tmfaQ8SC1pM="; 16 + sha256 = "sha256-QKC9/3h+y0kOVTPbzv1IUhdtrxKq5aEVggPbQ9itan0="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+59
pkgs/tools/misc/alarm-clock-applet/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , cmake 6 + , pkg-config 7 + , wrapGAppsHook 8 + , gst_all_1 9 + , libnotify 10 + , libayatana-appindicator 11 + }: 12 + 13 + stdenv.mkDerivation rec { 14 + pname = "alarm-clock-applet"; 15 + version = "0.4.1"; 16 + 17 + src = fetchFromGitHub { 18 + owner = pname; 19 + repo = "alarm-clock"; 20 + rev = version; 21 + hash = "sha256-10hkWWEsAUJnGeu35bR5d0RFKd9CKDZI7WGMzmEM3rI="; 22 + }; 23 + 24 + patches = [ 25 + (fetchpatch { 26 + url = "https://github.com/alarm-clock-applet/alarm-clock/commit/6a11003099660dfae0e3d5800f49880d3a26f5ec.patch"; 27 + hash = "sha256-NP1PlEw5AFWZgywvppIs2e+5EfMSPbU4Pq2tIfwODrQ="; 28 + }) 29 + (fetchpatch { 30 + url = "https://github.com/alarm-clock-applet/alarm-clock/commit/cbcf22fac5b45ab251ade2e7e993f422f33f926e.patch"; 31 + hash = "sha256-xKaaNfXsv9Ckwy73r1n93kOWIZ01fU5GDqYSQCch1Kc="; 32 + }) 33 + ]; 34 + 35 + nativeBuildInputs = [ 36 + cmake 37 + pkg-config 38 + wrapGAppsHook 39 + ]; 40 + 41 + buildInputs = [ 42 + gst_all_1.gstreamer 43 + libnotify 44 + libayatana-appindicator 45 + ]; 46 + 47 + cmakeFlags = [ 48 + # gconf is already deprecated 49 + "-DENABLE_GCONF_MIGRATION=OFF" 50 + ]; 51 + 52 + meta = with lib; { 53 + description = "A fully-featured alarm clock with an indicator"; 54 + homepage = "https://alarm-clock-applet.github.io"; 55 + license = licenses.gpl2Plus; 56 + maintainers = with maintainers; [ aleksana ]; 57 + platforms = platforms.linux; 58 + }; 59 + }
+5 -1
pkgs/tools/misc/copier/default.nix
··· 9 9 owner = "copier-org"; 10 10 repo = "copier"; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-8lTvyyKfAkvnUvw3e+r9C/49QASR8Zeokm509jxGK2g="; 12 + # Conflict on APFS on darwin 13 + postFetch = '' 14 + rm $out/tests/demo/doc/ma*ana.txt 15 + ''; 16 + hash = "sha256-i8HqMW36YtRxu/DLJWNiCfw6+ce3Gw8r8VBBo9l9aDI="; 13 17 }; 14 18 15 19 POETRY_DYNAMIC_VERSIONING_BYPASS = version;
+12 -4
pkgs/tools/misc/hdf4/default.nix
··· 12 12 , szip 13 13 , javaSupport ? false 14 14 , jdk 15 + , fortranSupport ? false 16 + , gfortran 17 + , netcdfSupport ? false 15 18 }: 16 19 stdenv.mkDerivation rec { 17 20 pname = "hdf"; ··· 50 53 cmake 51 54 ] ++ lib.optionals stdenv.isDarwin [ 52 55 fixDarwinDylibNames 53 - ]; 56 + ] ++ lib.optional fortranSupport gfortran; 54 57 55 58 buildInputs = [ 56 59 libjpeg ··· 75 78 "-DHDF4_BUILD_UTILS=ON" 76 79 "-DHDF4_BUILD_WITH_INSTALL_NAME=OFF" 77 80 "-DHDF4_ENABLE_JPEG_LIB_SUPPORT=ON" 78 - "-DHDF4_ENABLE_NETCDF=OFF" 81 + "-DHDF4_ENABLE_NETCDF=${if netcdfSupport then "ON" else "OFF"}" 79 82 "-DHDF4_ENABLE_Z_LIB_SUPPORT=ON" 80 - "-DHDF4_BUILD_FORTRAN=OFF" 81 83 "-DJPEG_DIR=${libjpeg}" 82 84 ] ++ lib.optionals javaSupport [ 83 85 "-DHDF4_BUILD_JAVA=ON" ··· 85 87 ] ++ lib.optionals szipSupport [ 86 88 "-DHDF4_ENABLE_SZIP_ENCODING=ON" 87 89 "-DHDF4_ENABLE_SZIP_SUPPORT=ON" 88 - ]; 90 + ] ++ (if fortranSupport 91 + then [ 92 + "-DHDF4_BUILD_FORTRAN=ON" 93 + "-DCMAKE_Fortran_FLAGS=-fallow-argument-mismatch" 94 + ] 95 + else [ "-DHDF4_BUILD_FORTRAN=OFF" ] 96 + ); 89 97 90 98 doCheck = true; 91 99
+12 -17
pkgs/tools/misc/opentelemetry-collector/default.nix
··· 1 - { buildGoModule 1 + { lib 2 + , buildGoModule 2 3 , fetchFromGitHub 3 - , lib 4 - , writeScript 5 4 }: 6 5 7 - let 8 - otelcontribcol = writeScript "otelcontribcol" '' 9 - echo 'ERROR: otelcontribcol is now in `pkgs.opentelemetry-collector-contrib`, call the collector with `otelcorecol` or move to `pkgs.opentelemetry-collector-contrib`' >&2 10 - exit 1 11 - ''; 12 - in 13 6 buildGoModule rec { 14 7 pname = "opentelemetry-collector"; 15 - version = "0.76.1"; 8 + version = "0.77.0"; 16 9 17 10 src = fetchFromGitHub { 18 11 owner = "open-telemetry"; 19 12 repo = "opentelemetry-collector"; 20 13 rev = "v${version}"; 21 - sha256 = "sha256-e+IdEGrJzDRUaAViUSyXdkYv9Hfub0ytmh3pl1f/nGM="; 14 + hash = "sha256-koPkEOtB5KnePdx67hJ/WNBojNDqKvf9kqYb59bwh8k="; 22 15 }; 23 16 # there is a nested go.mod 24 17 sourceRoot = "source/cmd/otelcorecol"; 25 - vendorHash = "sha256-8OkKPrK0xLWK5hIPaI7hgCGY0g7sWbaS/1HHqoTuqxk="; 18 + vendorHash = "sha256-M1fLrQFrcfCRCcunkgEzUicVfi5Mz/Or6tFpcGfWf4E="; 19 + 20 + patches = [ 21 + # remove when fixed upstream 22 + # https://github.com/open-telemetry/opentelemetry-collector/issues/7668 23 + ./update_go-m1cpu_fix_aarch64-darwin.patch 24 + ]; 26 25 27 26 preBuild = '' 28 27 # set the build version, can't be done via ldflags ··· 31 30 32 31 ldflags = [ "-s" "-w" ]; 33 32 34 - postInstall = '' 35 - cp ${otelcontribcol} $out/bin/otelcontribcol 36 - ''; 37 - 38 33 meta = with lib; { 39 34 homepage = "https://github.com/open-telemetry/opentelemetry-collector"; 40 35 changelog = "https://github.com/open-telemetry/opentelemetry-collector/blob/v${version}/CHANGELOG.md"; 41 - description = "OpenTelemetry Collector offers a vendor-agnostic implementation on how to receive, process and export telemetry data"; 36 + description = "A vendor-agnostic implementation on how to receive, process and export telemetry data"; 42 37 longDescription = '' 43 38 The OpenTelemetry Collector offers a vendor-agnostic implementation on how 44 39 to receive, process and export telemetry data. In addition, it removes the
+52
pkgs/tools/misc/opentelemetry-collector/update_go-m1cpu_fix_aarch64-darwin.patch
··· 1 + --- a/go.mod 2 + +++ b/go.mod 3 + @@ -19,7 +19,7 @@ require ( 4 + go.opentelemetry.io/collector/processor/memorylimiterprocessor v0.77.0 5 + go.opentelemetry.io/collector/receiver v0.77.0 6 + go.opentelemetry.io/collector/receiver/otlpreceiver v0.77.0 7 + - golang.org/x/sys v0.7.0 8 + + golang.org/x/sys v0.8.0 9 + ) 10 + 11 + require ( 12 + @@ -60,8 +60,8 @@ require ( 13 + github.com/prometheus/procfs v0.9.0 // indirect 14 + github.com/prometheus/statsd_exporter v0.22.7 // indirect 15 + github.com/rs/cors v1.9.0 // indirect 16 + - github.com/shirou/gopsutil/v3 v3.23.3 // indirect 17 + - github.com/shoenig/go-m1cpu v0.1.4 // indirect 18 + + github.com/shirou/gopsutil/v3 v3.23.5-0.20230505121632-e045dc75ca1c // indirect 19 + + github.com/shoenig/go-m1cpu v0.1.6 // indirect 20 + github.com/spf13/cobra v1.7.0 // indirect 21 + github.com/spf13/pflag v1.0.5 // indirect 22 + github.com/tklauser/go-sysconf v0.3.11 // indirect 23 + --- a/go.sum 24 + +++ b/go.sum 25 + @@ -383,10 +383,18 @@ github.com/ryanuber/go-glob v1.0.0/go.mod h1:807d1WSdnB0XRJzKNil9Om6lcp/3a0v4qIH 26 + github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= 27 + github.com/shirou/gopsutil/v3 v3.23.3 h1:Syt5vVZXUDXPEXpIBt5ziWsJ4LdSAAxF4l/xZeQgSEE= 28 + github.com/shirou/gopsutil/v3 v3.23.3/go.mod h1:lSBNN6t3+D6W5e5nXTxc8KIMMVxAcS+6IJlffjRRlMU= 29 + +github.com/shirou/gopsutil/v3 v3.23.4 h1:hZwmDxZs7Ewt75DV81r4pFMqbq+di2cbt9FsQBqLD2o= 30 + +github.com/shirou/gopsutil/v3 v3.23.4/go.mod h1:ZcGxyfzAMRevhUR2+cfhXDH6gQdFYE/t8j1nsU4mPI8= 31 + +github.com/shirou/gopsutil/v3 v3.23.5-0.20230505121632-e045dc75ca1c h1:ZYIGwnQEbcRHlzQRm/ns8iJQgJU+drtg4cX39shs9lE= 32 + +github.com/shirou/gopsutil/v3 v3.23.5-0.20230505121632-e045dc75ca1c/go.mod h1:LIiQgnFqJnplML7ahhMDo0wRqv6xMPNGNxGRDObehQ0= 33 + github.com/shoenig/go-m1cpu v0.1.4 h1:SZPIgRM2sEF9NJy50mRHu9PKGwxyyTTJIWvCtgVbozs= 34 + github.com/shoenig/go-m1cpu v0.1.4/go.mod h1:Wwvst4LR89UxjeFtLRMrpgRiyY4xPsejnVZym39dbAQ= 35 + +github.com/shoenig/go-m1cpu v0.1.5/go.mod h1:Wwvst4LR89UxjeFtLRMrpgRiyY4xPsejnVZym39dbAQ= 36 + +github.com/shoenig/go-m1cpu v0.1.6 h1:nxdKQNcEB6vzgA2E2bvzKIYRuNj7XNJ4S/aRSwKzFtM= 37 + +github.com/shoenig/go-m1cpu v0.1.6/go.mod h1:1JJMcUBvfNwpq05QDQVAnx3gUHr9IYF7GNg9SUEw2VQ= 38 + github.com/shoenig/test v0.6.3 h1:GVXWJFk9PiOjN0KoJ7VrJGH6uLPnqxR7/fe3HUPfE0c= 39 + github.com/shoenig/test v0.6.3/go.mod h1:byHiCGXqrVaflBLAMq/srcZIHynQPQgeyvkvXnjqq0k= 40 + +github.com/shoenig/test v0.6.4/go.mod h1:byHiCGXqrVaflBLAMq/srcZIHynQPQgeyvkvXnjqq0k= 41 + github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= 42 + github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= 43 + github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= 44 + @@ -627,6 +635,8 @@ golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 45 + golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 46 + golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU= 47 + golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 48 + +golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= 49 + +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 50 + golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= 51 + golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= 52 + golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
+9
pkgs/tools/misc/silicon/default.nix
··· 2 2 , stdenv 3 3 , rustPlatform 4 4 , fetchFromGitHub 5 + , fetchpatch 5 6 , pkg-config 6 7 , cmake 7 8 , llvmPackages ··· 28 29 rev = "v${version}"; 29 30 sha256 = "sha256-RuzaRJr1n21MbHSeHBt8CjEm5AwbDbvX9Nw5PeBTl+w="; 30 31 }; 32 + 33 + patches = [ 34 + # fix build on aarch64-linux, see https://github.com/Aloxaf/silicon/pull/210 35 + (fetchpatch { 36 + url = "https://github.com/Aloxaf/silicon/commit/f666c95d3dab85a81d60067e2f25d29ee8ab59e7.patch"; 37 + hash = "sha256-L6tF9ndC38yVn5ZNof1TMxSImmaqZ6bJ/NYhb0Ebji4="; 38 + }) 39 + ]; 31 40 32 41 cargoLock = { 33 42 lockFile = ./Cargo.lock;
+3 -3
pkgs/tools/networking/amass/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "amass"; 8 - version = "3.23.1"; 8 + version = "3.23.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "OWASP"; 12 12 repo = "Amass"; 13 13 rev = "v${version}"; 14 - hash = "sha256-cU4PFuVzmHPZDboZXyPUA+MMra+rUhTxjaIrx91qzes="; 14 + hash = "sha256-u8ARJZYd+25g3G2MoLWHZd5fgxPsj7Mtx7cROa8VvUA="; 15 15 }; 16 16 17 - vendorHash = "sha256-om7tiYZn8nAOZ3jjAmF0Ncs1OPjiY8v7QW0RSY1Tv6o="; 17 + vendorHash = "sha256-zUl1q6rRjX958VXKnVB2YmLUpKMUtFvdh+hkIrTomes="; 18 18 19 19 outputs = [ 20 20 "out"
+2 -2
pkgs/tools/networking/dnstwist/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "dnstwist"; 8 - version = "20230413"; 8 + version = "20230509"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "elceef"; 13 13 repo = pname; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-YYERI+GNRP2wGWhYAy6m8QI4alFZniCSWp9/fdb9mpM="; 15 + hash = "sha256-dJ/LI5mQJAYsqlOk2vP6h8Iz6ZdqTi9i4fgtjVaBkuE="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [
+22
pkgs/tools/networking/oui/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "oui"; 5 + version = "0.1.8"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "thatmattlove"; 9 + repo = "oui"; 10 + rev = "v${version}"; 11 + hash = "sha256-RLm8V2fLFvOwjnnq16ZmhwVdtgXPaehan7JTX3Xz30w="; 12 + }; 13 + 14 + vendorHash = "sha256-TLVw4tnfvgK2h/Xj5LNNjDG4WQ83Bw8yBhZc16Tjmws="; 15 + 16 + meta = with lib; { 17 + description = "MAC Address CLI Toolkit"; 18 + homepage = "https://github.com/thatmattlove/oui"; 19 + license = with licenses; [ bsd3 ]; 20 + maintainers = [ maintainers.netali ]; 21 + }; 22 + }
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "exploitdb"; 9 - version = "2023-05-08"; 9 + version = "2023-05-10"; 10 10 11 11 src = fetchFromGitLab { 12 12 owner = "exploit-database"; 13 13 repo = pname; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-MbSPBlepTQXCnPT9Yl/mB3N7HzJj8HwV3+ENOKdfYHo="; 15 + hash = "sha256-09Z4RKLwJGcM11sD5gGBRRJ6ccSJuzDqoPYcr3I4Plg="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+3 -3
pkgs/tools/security/httpx/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "httpx"; 8 - version = "1.3.0"; 8 + version = "1.3.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "projectdiscovery"; 12 12 repo = "httpx"; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-u4nftveDvwco5sZa21z4MHf/5F+M0cQUGffueeJpyL4="; 14 + hash = "sha256-QTD8aPpsqfMcCWT+b4V5z6dIrVW86sVi5WqShN055P0="; 15 15 }; 16 16 17 - vendorHash = "sha256-i/Fvuy9wzXot114BI0rIbLWDW70VEaDKGThTcTZLx1M="; 17 + vendorHash = "sha256-rXzAZTJtX9RhUjqo+Xllnh00fBaQH1Yne+gKqmxLXUU="; 18 18 19 19 subPackages = [ "cmd/httpx" ]; 20 20
+2 -2
pkgs/tools/security/mitmproxy2swagger/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "mitmproxy2swagger"; 8 - version = "0.8.2"; 8 + version = "0.9.0"; 9 9 format = "pyproject"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "alufers"; 13 13 repo = pname; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-w9Jbtf/BFkr2qEVqpxkRkQ1ve5o77Mhs0kGwdG5ucKI="; 15 + hash = "sha256-P+Gw4D+G76gifYY2OghXRzrlPiYk4KggoVMgzJbm6Is="; 16 16 }; 17 17 18 18 nativeBuildInputs = with python3.pkgs; [
+42 -13
pkgs/tools/security/onioncircuits/default.nix
··· 1 - { stdenv, lib, fetchgit, python3, intltool, gtk3, gobject-introspection, gnome }: 1 + { stdenv 2 + , lib 3 + , fetchFromGitLab 4 + , fetchpatch 5 + , gnome 6 + , gobject-introspection 7 + , gtk3 8 + , intltool 9 + , python3 10 + , wrapGAppsHook 11 + }: 2 12 3 13 python3.pkgs.buildPythonApplication rec { 4 14 pname = "onioncircuits"; 5 - version = "0.5"; 15 + version = "0.7"; 6 16 7 - src = fetchgit { 8 - url = "https://git-tails.immerda.ch/onioncircuits/"; 17 + src = fetchFromGitLab { 18 + domain = "gitlab.tails.boum.org"; 19 + owner = "tails"; 20 + repo = "onioncircuits"; 9 21 rev = version; 10 - sha256 = "13mqif9b9iajpkrl9ijspdnvy82kxhprxd5mw3njk68rcn4z2pcm"; 22 + sha256 = "sha256-O4tSbKBTmve4u8bXVg128RLyuxvTbU224JV8tQ+aDAQ="; 11 23 }; 12 24 13 - nativeBuildInputs = [ intltool ]; 14 - buildInputs = [ gtk3 gobject-introspection ]; 15 - propagatedBuildInputs = with python3.pkgs; [ stem distutils_extra pygobject3 ]; 25 + nativeBuildInputs = [ 26 + gobject-introspection 27 + intltool 28 + wrapGAppsHook 29 + python3.pkgs.distutils_extra 30 + ]; 31 + 32 + propagatedBuildInputs = with python3.pkgs; [ 33 + pygobject3 34 + stem 35 + ]; 36 + 37 + patches = [ 38 + # Fix https://gitlab.tails.boum.org/tails/onioncircuits/-/merge_requests/4 39 + (fetchpatch { 40 + name = "fix-setuptool-package-discovery.patch"; 41 + url = "https://gitlab.tails.boum.org/tails/onioncircuits/-/commit/4c620c77f36f540fa27041fcbdeaf05c9f57826c.patch"; 42 + sha256 = "sha256-WXqyDa2meRMMHkHLO5Xl7x43KUGtlsai+eOVzUGUPpo="; 43 + }) 44 + ]; 45 + 46 + postInstall = '' 47 + mkdir -p $out/etc/apparmor.d 16 48 17 - postFixup = '' 18 - wrapProgram "$out/bin/onioncircuits" \ 19 - --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ 20 - --prefix XDG_DATA_DIRS : "$out/share:${gnome.adwaita-icon-theme}/share" 49 + cp apparmor/usr.bin.onioncircuits $out/etc/apparmor.d 21 50 ''; 22 51 23 52 meta = with lib; { ··· 25 54 homepage = "https://tails.boum.org"; 26 55 description = "GTK application to display Tor circuits and streams"; 27 56 license = licenses.gpl3; 28 - maintainers = [ ]; 57 + maintainers = with maintainers; [ milran ]; 29 58 }; 30 59 } 31 60
+3 -3
pkgs/tools/security/saml2aws/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "saml2aws"; 5 - version = "2.36.6"; 5 + version = "2.36.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Versent"; 9 9 repo = "saml2aws"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-llEdO19TvHzvH4sV1c+1dHqowG2fVLOqMOqCrH6Urws="; 11 + sha256 = "sha256-Z+rudexDydpM/pExs6TvVTm03qIATf7uLRTQZKgBnLw="; 12 12 }; 13 13 14 - vendorHash = "sha256-MXm1V8GrjZn/x0Q6fW8zJN351zVsPGME4eFg6f8cEX8="; 14 + vendorHash = "sha256-h4jPaST15EsoWLsnTkO0GQDC+cTySMCyVnWFrdXeVDg="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ AppKit ]; 17 17
+55
pkgs/tools/security/sbomnix/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , coreutils 4 + , curl 5 + , gnugrep 6 + , gnused 7 + , gzip 8 + , nix 9 + , python 10 + # python libs 11 + , colorlog 12 + , graphviz 13 + , numpy 14 + , packageurl-python 15 + , pandas 16 + , requests 17 + , reuse 18 + , tabulate 19 + }: 20 + 21 + python.pkgs.buildPythonApplication rec { 22 + pname = "sbomnix"; 23 + version = "1.4.5"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "tiiuae"; 27 + repo = pname; 28 + rev = "refs/tags/v${version}"; 29 + hash = "sha256-RxDFxVGivVBw2uhtzf231Q2HHTBFKSqGrknr2Es/ygM="; 30 + }; 31 + 32 + makeWrapperArgs = [ 33 + "--prefix PATH : ${lib.makeBinPath [ coreutils curl gnugrep gnused gzip graphviz nix ]}" 34 + ]; 35 + 36 + propagatedBuildInputs = [ 37 + colorlog 38 + graphviz 39 + numpy 40 + packageurl-python 41 + pandas 42 + requests 43 + reuse 44 + tabulate 45 + ]; 46 + 47 + pythonImportsCheck = [ "sbomnix" ]; 48 + 49 + meta = with lib; { 50 + description = "Generate SBOMs for nix targets"; 51 + homepage = "https://github.com/tiiuae/sbomnix"; 52 + license = with licenses; [ asl20 bsd3 cc-by-30 ]; 53 + maintainers = with maintainers; [ henrirosten jk ]; 54 + }; 55 + }
+2 -2
pkgs/tools/security/tessen/default.nix
··· 12 12 13 13 stdenvNoCC.mkDerivation rec { 14 14 pname = "tessen"; 15 - version = "2.2.0"; 15 + version = "2.2.1"; 16 16 17 17 src = fetchFromSourcehut { 18 18 owner = "~ayushnix"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - sha256 = "sha256-7hiH1il9vFkrld5wFU+jT7IuudKwigO7ggFuwVbkvYw="; 21 + sha256 = "sha256-8hhYOd5h55kl7ChqdyRzsaxzWLpX41aqG8LfznmbFWw="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ makeWrapper installShellFiles scdoc ];
+3 -3
pkgs/tools/security/trufflehog/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "trufflehog"; 10 - version = "3.33.0"; 10 + version = "3.34.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "trufflesecurity"; 14 14 repo = "trufflehog"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-ZbsWPyLPN6qTMyEuisLA589B5JgYV9LixuRV91G/6oY="; 16 + hash = "sha256-n/IzfVB40Ufr46L83WCxIyCwB9/jYVsw/J5F34/bDLg="; 17 17 }; 18 18 19 - vendorHash = "sha256-sSpRu6zLIvllrDYdtrj3oD3pCVs9ucSXbu3IYTqjT+k="; 19 + vendorHash = "sha256-wzBJjJVBT0mGJx0WQbs2D4n7ovfz1lA2NCEpz6xuqpg="; 20 20 21 21 ldflags = [ 22 22 "-s"
+25
pkgs/tools/text/hcledit/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "hcledit"; 8 + version = "0.2.7"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "minamijoyo"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + hash = "sha256-hunM29K6RgeVkY8nNNIYigCh2sTCR1OyPE+k3cmIJTU="; 15 + }; 16 + 17 + vendorHash = "sha256-KwoauyXeDMMTUgtLvz6m28nvFSl5fptZzEvwFVC3n8g="; 18 + 19 + meta = with lib; { 20 + description = "A command line editor for HCL"; 21 + homepage = "https://github.com/minamijoyo/hcledit"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ aleksana ]; 24 + }; 25 + }
+2 -2
pkgs/tools/typesetting/asciidoctorj/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "asciidoctorj"; 5 - version = "2.5.7"; 5 + version = "2.5.8"; 6 6 7 7 src = fetchzip { 8 8 url = "mirror://maven/org/asciidoctor/${pname}/${version}/${pname}-${version}-bin.zip"; 9 - sha256 = "sha256-LUbzS2XYSsSPyJmyvitS5or0S4o9SB2ycMkuAWyVB8w="; 9 + sha256 = "sha256-Xn6uIHEsyIXA9ls0bZZHdW7aKcgdub9C6g7lQ853tiQ="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/tools/wayland/gtklock/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "gtklock"; 17 - version = "2.0.1"; 17 + version = "2.1.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "jovanlanik"; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-W+GyeGxlfp1YZtSFEZYXuHmvTVZ8mU1oBcsrWN1yvjU="; 23 + sha256 = "sha256-Jh+BmtKGaLgAcTXc44ydV83dp/W4wzByehUWyeyBoFI="; 24 24 }; 25 25 26 26 strictDeps = true;
+4 -1
pkgs/top-level/aliases.nix
··· 66 66 ag = throw "'ag' has been renamed to/replaced by 'silver-searcher'"; # Converted to throw 2022-02-22 67 67 aircrackng = throw "'aircrackng' has been renamed to/replaced by 'aircrack-ng'"; # Converted to throw 2022-02-22 68 68 airtame = throw "airtame has been removed due to being unmaintained"; # Added 2022-01-19 69 - alarm-clock-applet = throw "'alarm-clock-applet' has been abandoned upstream and depends on deprecated GNOME2/GTK2"; # Added 2022-06-16 70 69 aleth = throw "aleth (previously packaged as cpp_ethereum) has been removed; abandoned upstream"; # Added 2020-11-30 71 70 alsaLib = alsa-lib; # Added 2021-06-09 72 71 alsaOss = alsa-oss; # Added 2021-06-10 ··· 1517 1516 soldat-unstable = opensoldat; # Added 2022-07-02 1518 1517 solr_8 = throw "'solr' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-03-16 1519 1518 solr = throw "'solr' has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2023-03-16 1519 + spark2 = throw "'spark2' is no longer supported nixpkgs, please use 'spark'"; # Added 2023-05-08 1520 + spark_2_4 = throw "'spark_2_4' is no longer supported nixpkgs, please use 'spark'"; # Added 2023-05-08 1521 + spark_3_1 = throw "'spark_3_1' is no longer supported nixpkgs, please use 'spark'"; # Added 2023-05-08 1522 + spark_3_2 = throw "'spark_3_2' is no longer supported nixpkgs, please use 'spark'"; # Added 2023-05-08 1520 1523 1521 1524 # Added 2020-02-10 1522 1525 sourceHanSansPackages = {
+35 -28
pkgs/top-level/all-packages.nix
··· 2467 2467 2468 2468 ### APPLICATIONS/EMULATORS/YUZU 2469 2469 2470 - yuzu-mainline = import ../applications/emulators/yuzu { 2470 + yuzu-mainline = qt6Packages.callPackage ../applications/emulators/yuzu { 2471 2471 branch = "mainline"; 2472 - inherit libsForQt5 fetchFromGitHub fetchurl; 2473 2472 }; 2474 2473 2475 - yuzu-early-access = import ../applications/emulators/yuzu { 2474 + yuzu-early-access = qt6Packages.callPackage ../applications/emulators/yuzu { 2476 2475 branch = "early-access"; 2477 - inherit libsForQt5 fetchFromGitHub fetchurl; 2478 2476 }; 2479 2477 2480 2478 ### APPLICATIONS/EMULATORS/COMMANDERX16 ··· 3681 3679 3682 3680 abootimg = callPackage ../development/mobile/abootimg { }; 3683 3681 3684 - adbfs-rootless = callPackage ../development/mobile/adbfs-rootless { 3685 - adb = androidenv.androidPkgs_9_0.platform-tools; 3686 - }; 3682 + adbfs-rootless = callPackage ../development/mobile/adbfs-rootless { }; 3687 3683 3688 3684 adb-sync = callPackage ../development/mobile/adb-sync { 3689 3685 inherit (androidenv.androidPkgs_9_0) platform-tools; ··· 5117 5113 cairo = cairo.override { xcbSupport = true; }; }; 5118 5114 5119 5115 hyprland = callPackage ../applications/window-managers/hyprwm/hyprland { 5120 - stdenv = gcc12Stdenv; 5121 5116 wlroots = pkgs.callPackage ../applications/window-managers/hyprwm/hyprland/wlroots.nix { }; 5122 5117 udis86 = pkgs.callPackage ../applications/window-managers/hyprwm/hyprland/udis86.nix { }; 5123 5118 }; ··· 5126 5121 5127 5122 hyprland-share-picker = libsForQt5.callPackage ../applications/window-managers/hyprwm/xdg-desktop-portal-hyprland/hyprland-share-picker.nix { }; 5128 5123 5129 - hyprpaper = callPackage ../applications/window-managers/hyprwm/hyprpaper { 5130 - stdenv = gcc12Stdenv; 5131 - }; 5124 + hyprpaper = callPackage ../applications/window-managers/hyprwm/hyprpaper { }; 5132 5125 5133 5126 hyprpicker = callPackage ../applications/window-managers/hyprwm/hyprpicker { }; 5134 5127 ··· 6838 6831 6839 6832 dleyna-server = callPackage ../development/libraries/dleyna-server { }; 6840 6833 6841 - dmd = callPackage ../development/compilers/dmd { 6834 + dmd = callPackage ../development/compilers/dmd ({ 6842 6835 inherit (darwin.apple_sdk.frameworks) Foundation; 6843 - }; 6836 + } // lib.optionalAttrs stdenv.isLinux { 6837 + # https://github.com/NixOS/nixpkgs/pull/206907#issuecomment-1527034123 6838 + stdenv = gcc11Stdenv; 6839 + }); 6844 6840 6845 6841 dmg2img = callPackage ../tools/misc/dmg2img { }; 6846 6842 ··· 8394 8390 hayagriva = callPackage ../tools/typesetting/hayagriva { }; 8395 8391 8396 8392 hcl2json = callPackage ../applications/misc/hcl2json { }; 8393 + 8394 + hcledit = callPackage ../tools/text/hcledit { }; 8397 8395 8398 8396 hcxtools = callPackage ../tools/security/hcxtools { }; 8399 8397 ··· 8438 8436 8439 8437 headscale = callPackage ../servers/headscale { }; 8440 8438 8439 + health = callPackage ../applications/misc/health { }; 8440 + 8441 8441 healthchecks = callPackage ../servers/web-apps/healthchecks { }; 8442 8442 8443 8443 heisenbridge = callPackage ../servers/heisenbridge { }; ··· 10819 10819 operator-sdk = callPackage ../development/tools/operator-sdk { }; 10820 10820 10821 10821 oscclip = callPackage ../tools/misc/oscclip { }; 10822 + 10823 + oui = callPackage ../tools/networking/oui { }; 10822 10824 10823 10825 owncast = callPackage ../servers/owncast { }; 10824 10826 ··· 14453 14455 14454 14456 alan_2 = callPackage ../development/compilers/alan/2.nix { }; 14455 14457 14458 + alarm-clock-applet = callPackage ../tools/misc/alarm-clock-applet { }; 14459 + 14456 14460 algol68g = callPackage ../development/compilers/algol68g { }; 14457 14461 14458 14462 ante = callPackage ../development/compilers/ante { }; ··· 15510 15514 juniper = callPackage ../development/compilers/juniper { }; 15511 15515 15512 15516 julia-lts = julia_16-bin; 15513 - julia-stable = julia_18; 15517 + julia-stable = julia_19; 15514 15518 julia = julia-stable; 15515 15519 15516 15520 julia_16-bin = callPackage ../development/compilers/julia/1.6-bin.nix { }; ··· 15742 15746 15743 15747 mitama-cpp-result = callPackage ../development/libraries/mitama-cpp-result { }; 15744 15748 15745 - mitscheme = callPackage ../development/compilers/mit-scheme 15746 - { texLive = texlive.combine { inherit (texlive) scheme-small epsf texinfo; }; }; 15749 + mitscheme = callPackage ../development/compilers/mit-scheme { 15750 + texLive = texlive.combine { inherit (texlive) scheme-small epsf texinfo; }; 15751 + texinfo = texinfo6; 15752 + }; 15747 15753 15748 15754 mitschemeX11 = mitscheme.override { 15749 15755 enableX11 = true; ··· 16451 16457 16452 16458 squirrel-sql = callPackage ../development/tools/database/squirrel-sql { 16453 16459 drivers = [ jtds_jdbc mssql_jdbc mysql_jdbc postgresql_jdbc ]; 16460 + }; 16461 + 16462 + surrealdb-migrations = callPackage ../development/tools/database/surrealdb-migrations { 16463 + inherit (darwin.apple_sdk.frameworks) Security; 16454 16464 }; 16455 16465 16456 16466 stalin = callPackage ../development/compilers/stalin { }; ··· 17178 17188 smiley-sans = callPackage ../data/fonts/smiley-sans { }; 17179 17189 17180 17190 inherit (callPackages ../applications/networking/cluster/spark { }) 17181 - spark_3_2 17182 - spark_3_1 17183 - spark_2_4; 17184 - spark3 = spark_3_2; 17185 - spark2 = spark_2_4; 17191 + spark_3_4; 17192 + spark3 = spark_3_4; 17186 17193 spark = spark3; 17187 17194 17188 17195 sparkleshare = callPackage ../applications/version-management/sparkleshare { }; ··· 18980 18987 sauce-connect = callPackage ../development/tools/sauce-connect { }; 18981 18988 18982 18989 sawjap = callPackage ../development/tools/java/sawjap { }; 18990 + 18991 + sbomnix = python3.pkgs.callPackage ../tools/security/sbomnix { }; 18983 18992 18984 18993 sd-local = callPackage ../development/tools/sd-local { }; 18985 18994 ··· 21185 21194 21186 21195 lmdbxx = callPackage ../development/libraries/lmdbxx { }; 21187 21196 21188 - lemon-graph = callPackage ../development/libraries/lemon-graph { 21189 - stdenv = if stdenv.isLinux then gcc12Stdenv else stdenv; 21190 - }; 21197 + lemon-graph = callPackage ../development/libraries/lemon-graph { }; 21191 21198 21192 21199 levmar = callPackage ../development/libraries/levmar { }; 21193 21200 ··· 31189 31196 swaybg = callPackage ../applications/window-managers/sway/bg.nix { }; 31190 31197 swayidle = callPackage ../applications/window-managers/sway/idle.nix { }; 31191 31198 swaylock = callPackage ../applications/window-managers/sway/lock.nix { }; 31199 + swayosd = callPackage ../applications/window-managers/sway/osd.nix { }; 31192 31200 swayws = callPackage ../applications/window-managers/sway/ws.nix { }; 31193 31201 swaywsr = callPackage ../applications/window-managers/sway/wsr.nix { }; 31194 31202 sway-contrib = recurseIntoAttrs (callPackages ../applications/window-managers/sway/contrib.nix { }); ··· 31437 31445 31438 31446 inkscape-extensions = recurseIntoAttrs (callPackages ../applications/graphics/inkscape/extensions.nix {}); 31439 31447 31440 - inlyne = callPackage ../applications/misc/inlyne { 31441 - inherit (darwin) libobjc; 31442 - inherit (darwin.apple_sdk.frameworks) AppKit ApplicationServices CoreFoundation CoreGraphics CoreServices CoreText CoreVideo Foundation Metal QuartzCore Security; 31443 - }; 31448 + inlyne = darwin.apple_sdk_11_0.callPackage ../applications/misc/inlyne { }; 31444 31449 31445 31450 inspectrum = callPackage ../applications/radio/inspectrum { }; 31446 31451 ··· 33015 33020 osmctools = callPackage ../applications/misc/osmctools { }; 33016 33021 33017 33022 osmium-tool = callPackage ../applications/misc/osmium-tool { }; 33023 + 33024 + osmtogeojson = callPackage ../applications/misc/osmtogeojson { }; 33018 33025 33019 33026 owamp = callPackage ../applications/networking/owamp { }; 33020 33027
+10
pkgs/top-level/linux-kernels.nix
··· 115 115 [ kernelPatches.bridge_stp_helper 116 116 kernelPatches.request_key_helper 117 117 kernelPatches.modinst_arg_list_too_long 118 + kernelPatches.CVE-2023-32233 118 119 ]; 119 120 }; 120 121 ··· 123 124 kernelPatches.bridge_stp_helper 124 125 kernelPatches.request_key_helper 125 126 kernelPatches.rtl8761b_support 127 + kernelPatches.CVE-2023-32233 126 128 ]; 127 129 }; 128 130 ··· 130 132 kernelPatches = [ 131 133 kernelPatches.bridge_stp_helper 132 134 kernelPatches.request_key_helper 135 + kernelPatches.CVE-2023-32233 133 136 ]; 134 137 }; 135 138 ··· 137 140 kernelPatches = [ 138 141 kernelPatches.bridge_stp_helper 139 142 kernelPatches.request_key_helper 143 + kernelPatches.CVE-2023-32233 140 144 ]; 141 145 }; 142 146 ··· 145 149 kernelPatches.bridge_stp_helper 146 150 kernelPatches.request_key_helper 147 151 kernelPatches.export-rt-sched-migrate 152 + kernelPatches.CVE-2023-32233 148 153 ]; 149 154 }; 150 155 ··· 153 158 kernelPatches.bridge_stp_helper 154 159 kernelPatches.request_key_helper 155 160 kernelPatches.fix-em-ice-bonding 161 + kernelPatches.CVE-2023-32233 156 162 ]; 157 163 }; 158 164 ··· 169 175 kernelPatches.bridge_stp_helper 170 176 kernelPatches.request_key_helper 171 177 kernelPatches.fix-em-ice-bonding 178 + kernelPatches.CVE-2023-32233 172 179 ]; 173 180 }; 174 181 ··· 178 185 kernelPatches.request_key_helper 179 186 kernelPatches.fix-em-ice-bonding 180 187 kernelPatches.export-rt-sched-migrate 188 + kernelPatches.CVE-2023-32233 181 189 ]; 182 190 }; 183 191 ··· 186 194 kernelPatches.bridge_stp_helper 187 195 kernelPatches.request_key_helper 188 196 kernelPatches.fix-em-ice-bonding 197 + kernelPatches.CVE-2023-32233 189 198 ]; 190 199 }; 191 200 ··· 194 203 kernelPatches.bridge_stp_helper 195 204 kernelPatches.request_key_helper 196 205 kernelPatches.fix-em-ice-bonding 206 + kernelPatches.CVE-2023-32233 197 207 ]; 198 208 }; 199 209
+2 -2
pkgs/top-level/perl-packages.nix
··· 25878 25878 url = "mirror://cpan/authors/id/K/KU/KUBOTA/Text-WrapI18N-0.06.tar.gz"; 25879 25879 hash = "sha256-S9KaF/DCx5LRLBAFs8J28qsPrjnACFmuF0HXlBhGpIg="; 25880 25880 }; 25881 - buildInputs = [ pkgs.glibcLocales ]; 25881 + buildInputs = lib.optionals (!stdenv.isDarwin) [ pkgs.glibcLocales ]; 25882 25882 propagatedBuildInputs = [ TextCharWidth ]; 25883 25883 preConfigure = '' 25884 - substituteInPlace WrapI18N.pm --replace '/usr/bin/locale' '${pkgs.glibc.bin}/bin/locale' 25884 + substituteInPlace WrapI18N.pm --replace '/usr/bin/locale' '${if stdenv.isDarwin then pkgs.darwin.adv_cmds else pkgs.glibc.bin}/bin/locale' 25885 25885 ''; 25886 25886 meta = { 25887 25887 description = "Line wrapping module with support for multibyte, fullwidth, and combining characters and languages without whitespaces between words";
+2
pkgs/top-level/python-packages.nix
··· 10550 10550 10551 10551 ropper = callPackage ../development/python-modules/ropper { }; 10552 10552 10553 + rouge-score = callPackage ../development/python-modules/rouge-score { }; 10554 + 10553 10555 routes = callPackage ../development/python-modules/routes { }; 10554 10556 10555 10557 rova = callPackage ../development/python-modules/rova { };